[Checkins] SVN: topia.postag/trunk/ This package implements text keyword extraction by making use of a

Stephan Richter srichter at gmail.com
Sat May 30 02:56:05 EDT 2009


Log message for revision 100547:
  This package implements text keyword extraction by making use of a 
  simple Parts-Of-Speech (POS) tagging algorithm.
  
  

Changed:
  A   topia.postag/trunk/
  A   topia.postag/trunk/CHANGES.txt
  A   topia.postag/trunk/README.txt
  A   topia.postag/trunk/bootstrap.py
  A   topia.postag/trunk/buildout.cfg
  A   topia.postag/trunk/setup.py
  A   topia.postag/trunk/src/
  A   topia.postag/trunk/src/topia/
  A   topia.postag/trunk/src/topia/__init__.py
  A   topia.postag/trunk/src/topia/postag/
  A   topia.postag/trunk/src/topia/postag/README.txt
  A   topia.postag/trunk/src/topia/postag/__init__.py
  A   topia.postag/trunk/src/topia/postag/data/
  A   topia.postag/trunk/src/topia/postag/data/english-lexicon.txt
  A   topia.postag/trunk/src/topia/postag/example.txt
  A   topia.postag/trunk/src/topia/postag/extract.py
  A   topia.postag/trunk/src/topia/postag/interfaces.py
  A   topia.postag/trunk/src/topia/postag/tag.py
  A   topia.postag/trunk/src/topia/postag/tests.py
  A   topia.postag/trunk/src/topia.postag.egg-info/
  A   topia.postag/trunk/src/topia.postag.egg-info/PKG-INFO
  A   topia.postag/trunk/src/topia.postag.egg-info/SOURCES.txt
  A   topia.postag/trunk/src/topia.postag.egg-info/dependency_links.txt
  A   topia.postag/trunk/src/topia.postag.egg-info/namespace_packages.txt
  A   topia.postag/trunk/src/topia.postag.egg-info/not-zip-safe
  A   topia.postag/trunk/src/topia.postag.egg-info/requires.txt
  A   topia.postag/trunk/src/topia.postag.egg-info/top_level.txt

-=-
Added: topia.postag/trunk/CHANGES.txt
===================================================================
--- topia.postag/trunk/CHANGES.txt	                        (rev 0)
+++ topia.postag/trunk/CHANGES.txt	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+0.1.0 (2009-05-30)
+------------------
+
+- Initial Release


Property changes on: topia.postag/trunk/CHANGES.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: topia.postag/trunk/README.txt
===================================================================
--- topia.postag/trunk/README.txt	                        (rev 0)
+++ topia.postag/trunk/README.txt	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,3 @@
+This package determines important terms within a given piece of content. It
+uses linguistic tools such as Parts-Of-Speech (POS) and some simple
+statistical analysis to determine the terms and their strength.


Property changes on: topia.postag/trunk/README.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: topia.postag/trunk/bootstrap.py
===================================================================
--- topia.postag/trunk/bootstrap.py	                        (rev 0)
+++ topia.postag/trunk/bootstrap.py	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,52 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Bootstrap a buildout-based project
+
+Simply run this script in a directory containing a buildout.cfg.
+The script accepts buildout command-line options, so you can
+use the -c option to specify an alternate configuration file.
+
+$Id$
+"""
+
+import os, shutil, sys, tempfile, urllib2
+
+tmpeggs = tempfile.mkdtemp()
+
+ez = {}
+exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
+                     ).read() in ez
+ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
+
+import pkg_resources
+
+cmd = 'from setuptools.command.easy_install import main; main()'
+if sys.platform == 'win32':
+    cmd = '"%s"' % cmd # work around spawn lamosity on windows
+
+ws = pkg_resources.working_set
+assert os.spawnle(
+    os.P_WAIT, sys.executable, sys.executable,
+    '-c', cmd, '-mqNxd', tmpeggs, 'zc.buildout',
+    dict(os.environ,
+         PYTHONPATH=
+         ws.find(pkg_resources.Requirement.parse('setuptools')).location
+         ),
+    ) == 0
+
+ws.add_entry(tmpeggs)
+ws.require('zc.buildout')
+import zc.buildout.buildout
+zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap'])
+shutil.rmtree(tmpeggs)


Property changes on: topia.postag/trunk/bootstrap.py
___________________________________________________________________
Added: svn:keywords
   + Id

Added: topia.postag/trunk/buildout.cfg
===================================================================
--- topia.postag/trunk/buildout.cfg	                        (rev 0)
+++ topia.postag/trunk/buildout.cfg	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,23 @@
+[buildout]
+develop = .
+parts = test coverage-test coverage-report python
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = topia.postag [test]
+
+[coverage-test]
+recipe = zc.recipe.testrunner
+eggs = topia.postag [test]
+defaults = ['--coverage', '../../coverage']
+
+[coverage-report]
+recipe = zc.recipe.egg
+eggs = z3c.coverage
+scripts = coverage=coverage-report
+arguments = ('coverage', 'coverage/report')
+
+[python]
+recipe = zc.recipe.egg
+eggs = topia.postag
+interpreter = python

Added: topia.postag/trunk/setup.py
===================================================================
--- topia.postag/trunk/setup.py	                        (rev 0)
+++ topia.postag/trunk/setup.py	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,63 @@
+##############################################################################
+#
+# Copyright (c) 2009 Zope Foundation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Setup
+
+$Id$
+"""
+import os
+from setuptools import setup, find_packages
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+setup (
+    name='topia.postag',
+    version='0.1.0dev',
+    author = "Stephan Richter, Russ Ferriday and the Zope Community",
+    author_email = "zope3-dev at zope.org",
+    description = "A Part-Of-Speech (POS) Content Tagger",
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n' +
+        read('src', 'topia', 'postag', 'README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    license = "ZPL 2.1",
+    keywords = "pos taggerlinguistics",
+    classifiers = [
+        'Development Status :: 4 - Beta',
+        'Environment :: Web Environment',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Natural Language :: English',
+        'Operating System :: OS Independent'],
+    url = 'http://pypi.python.org/pypi/topia.postag',
+    packages = find_packages('src'),
+    include_package_data = True,
+    package_dir = {'':'src'},
+    namespace_packages = ['topia'],
+    extras_require = dict(
+        test = ['zope.testing'],
+        ),
+    install_requires = [
+        'setuptools',
+        'zope.interface',
+        ],
+    zip_safe = False,
+    )


Property changes on: topia.postag/trunk/setup.py
___________________________________________________________________
Added: svn:keywords
   + Id

Added: topia.postag/trunk/src/topia/__init__.py
===================================================================
--- topia.postag/trunk/src/topia/__init__.py	                        (rev 0)
+++ topia.postag/trunk/src/topia/__init__.py	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,3 @@
+import pkg_resources
+pkg_resources.declare_namespace(__name__)
+


Property changes on: topia.postag/trunk/src/topia/__init__.py
___________________________________________________________________
Added: svn:keywords
   + Id

Added: topia.postag/trunk/src/topia/postag/README.txt
===================================================================
--- topia.postag/trunk/src/topia/postag/README.txt	                        (rev 0)
+++ topia.postag/trunk/src/topia/postag/README.txt	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,167 @@
+==================
+Keyword Extraction
+==================
+
+This package implements text keyword extraction by making use of a simple
+Parts-Of-Speech (POS) tagging algorithm.
+
+http://bioie.ldc.upenn.edu/wiki/index.php/Part-of-Speech
+
+
+The POS Tagger
+--------------
+
+POS Taggers use a lexicon to mark words with a tag. A list of available tags
+can be found at:
+
+http://bioie.ldc.upenn.edu/wiki/index.php/POS_tags
+
+Since words can have multiple tags, the determination of the correct tag is
+not always simple. This implementation, however, does not try to infer
+linguistic use and simply chooses the first tag in the lexicon.
+
+  >>> from topia.postag import tag
+  >>> tagger = tag.Tagger()
+  >>> tagger
+  <Tagger for english>
+
+To get the tagger ready for its work, we need to initialize it. In this
+implementation the lexicon is loaded.
+
+  >>> tagger.initialize()
+
+Now we are ready to rock and roll.
+
+Tokenizing
+~~~~~~~~~~
+
+The first step of tagging is to tokenize the text into terms.
+
+  >>> tagger.tokenize('This is a simple example.')
+  ['This', 'is', 'a', 'simple', 'example', '.']
+
+While most tokenizers ignore punctuation, it is important for us to keep it,
+since we need it later for the keyword extraction. Let's now look at some more
+complex cases:
+
+- Quoted Text
+
+  >>> tagger.tokenize('This is a "simple" example.')
+  ['This', 'is', 'a', '"', 'simple', '"', 'example', '.']
+
+  >>> tagger.tokenize('"This is a simple example."')
+  ['"', 'This', 'is', 'a', 'simple', 'example', '."']
+
+- Non-letters within words.
+
+  >>> tagger.tokenize('Parts-Of-Speech')
+  ['Parts-Of-Speech']
+
+  >>> tagger.tokenize('amazon.com')
+  ['amazon.com']
+
+  >>> tagger.tokenize('Go to amazon.com.')
+  ['Go', 'to', 'amazon.com', '.']
+
+- Various punctuation.
+
+  >>> tagger.tokenize('Quick, go to amazon.com.')
+  ['Quick', ',', 'go', 'to', 'amazon.com', '.']
+
+  >>> tagger.tokenize('Live free; or die?')
+  ['Live', 'free', ';', 'or', 'die', '?']
+
+- Tolerance to incorrect punctuation.
+
+  >>> tagger.tokenize('Hi , I am here.')
+  ['Hi', ',', 'I', 'am', 'here', '.']
+
+- Possessive structures.
+
+  >>> tagger.tokenize("my parents' car")
+  ['my', 'parents', "'", 'car']
+  >>> tagger.tokenize("my father's car")
+  ['my', 'father', "'s", 'car']
+
+- Numbers.
+
+  >>> tagger.tokenize("12.4")
+  ['12.4']
+  >>> tagger.tokenize("-12.4")
+  ['-12.4']
+  >>> tagger.tokenize("$12.40")
+  ['$12.40']
+
+- Dates.
+
+  >>> tagger.tokenize("10/3/2009")
+  ['10/3/2009']
+  >>> tagger.tokenize("3.10.2009")
+  ['3.10.2009']
+
+Okay, that's it.
+
+
+Tagging
+-------
+
+The next step is tagging. Tagging is done in two phases. During the first
+phase terms are assigned a tag by looking at the lexicon and the normalized
+form is set to the term itself. In the second phase, a set of rules is applied
+to each tagged term and the tagging and normalization is tweaked.
+
+  >>> tagger('This is a simple example.')
+  [['This', 'DT', 'This'],
+   ['is', 'VBZ', 'is'],
+   ['a', 'DT', 'a'],
+   ['simple', 'JJ', 'simple'],
+   ['example', 'NN', 'example'],
+   ['.', '.', '.']]
+
+So wow, this determination was dead on. Let's try a plural form noun and see
+what happens:
+
+  >>> tagger('These are simple examples.')
+  [['These', 'DT', 'These'],
+   ['are', 'VBP', 'are'],
+   ['simple', 'JJ', 'simple'],
+   ['examples', 'NNS', 'example'],
+   ['.', '.', '.']]
+
+So far so good. Let's now test the phase 2 rules.
+
+
+Rules
+~~~~~
+
+- Correct Default Noun Tag
+
+    >>> tagger('Ikea')
+    [['Ikea', 'NN', 'Ikea']]
+    >>> tagger('Ikeas')
+    [['Ikeas', 'NNS', 'Ikea']]
+
+- Verify proper nouns at beginning of sentence.
+
+    >>> tagger('. Police')
+    [['.', '.', '.'], ['police', 'NN', 'police']]
+    >>> tagger('Police')
+    [['police', 'NN', 'police']]
+    >>> tagger('. Stephan')
+    [['.', '.', '.'], ['Stephan', 'NNP', 'Stephan']]
+
+- Normalize Plural Forms
+
+    >>> tagger('examples')
+    [['examples', 'NNS', 'example']]
+    >>> tagger('stresses')
+    [['stresses', 'NNS', 'stress']]
+    >>> tagger('cherries')
+    [['cherries', 'NNS', 'cherry']]
+
+  Some cases that do not work:
+
+    >>> tagger('men')
+    [['men', 'NNS', 'men']]
+    >>> tagger('feet')
+    [['feet', 'NNS', 'feet']]


Property changes on: topia.postag/trunk/src/topia/postag/README.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: topia.postag/trunk/src/topia/postag/__init__.py
===================================================================
--- topia.postag/trunk/src/topia/postag/__init__.py	                        (rev 0)
+++ topia.postag/trunk/src/topia/postag/__init__.py	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1 @@
+# Make a package.


Property changes on: topia.postag/trunk/src/topia/postag/__init__.py
___________________________________________________________________
Added: svn:keywords
   + Id

Added: topia.postag/trunk/src/topia/postag/data/english-lexicon.txt
===================================================================
--- topia.postag/trunk/src/topia/postag/data/english-lexicon.txt	                        (rev 0)
+++ topia.postag/trunk/src/topia/postag/data/english-lexicon.txt	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,93707 @@
+, ,
+; ,
+," ,
+,' ,
+. .
+." .
+.' .
+? .
+! .
+" "
+' "
+( (
+) )
+] )
+[ (
+{ (
+} )
+# #
+$ $
+Prizm NNP
+shakeup NN
+Laurance NNP
+mg NN JJ
+expressing VBG
+citybred JJ
+Brestowe NNP
+STARS NNP NNS
+negative JJ NN
+investors NNS NNPS
+mountain NN
+mavens NNS
+performing-arts NNS
+car-care JJ
+Athabascan NNP
+founding NN VBG JJ
+oversold VBN JJ VB
+Sepulveda NNP
+competency NN
+'82 CD
+largely-silent JJ
+ICL-GE NNP
+cf. NN FW
+stretch NN VBP JJ VB
+Lehder NNP
+scavenger NN
+Lebanese JJ NNPS NNP
+sinkt FW
+chorus NN
+common-carrier NN
+Bowles NNP
+Cabbage NNP NN
+Bremner NNP
+IC NNP
+fleetest JJS
+studio-quality JJ NN
+Marriage NNP NN
+Enid NNP
+Gummi-Werke NNP
+Bonds-b NNP NNPS
+acquaint VB
+Carnegey NNP
+rigueur FW
+self-deprecation NN
+Reeve NNP
+Conn.based JJ
+ill-mannered JJ
+uncompensated JJ
+HIRING NN VBG
+logistics NNS
+propsed VBN
+glass-like JJ
+interactive JJ
+port-shopping NN
+knuckle-duster NN
+glass-making NN JJ
+casually RB
+Champs NNP NNS
+Beatles NNPS NNP
+Tator NNP
+Branching NNP
+sterility NN
+gate-post NN
+introspection NN
+probation NN
+Takashi NNP
+Kirin NNP
+bank-teller NN
+Tonal JJ
+Pale NNP RB
+ex-brother-in-law NN
+unnavigable JJ
+abstraction NN
+union-owned JJ
+air-traffic NN
+S.D. NNP
+Partecipazioni NNP
+bullies VBZ NNS
+evinced VBN VBD
+Copernican JJ NNP
+debtholders NNS
+start VB VBP NN RP
+MLR NNP
+Secondly RB
+Alumina NNP
+Forte NNP
+considerin VBG
+France-Presse NNP
+Shlaes NNP
+freeways NNS
+stepmothers NNS
+fire-crackers NNS
+addict NN
+tempering VBG
+gizmos NNS
+Ham NNP
+Debating NNP
+Aldrin NNP
+generalization NN
+bad-smelling JJ
+motions NNS VBZ
+sacked VBD VBN
+weirs NNS
+Teagan NNP
+sketchy JJ
+traffic NN
+suspensor NN
+slows VBZ NNS
+playable JJ
+Denis NNP
+leafy JJ
+Plummer NNP
+elegy NN
+happily RB
+torments VBZ NNS
+jingles NNS
+lucidity NN
+preliminary JJ NN
+throngs NNS
+boat-rocker... :
+NT&SA-run JJ
+nonelectrical JJ
+respected VBN JJ VBD
+Mondrian NNP
+Casanova NNP
+cross-cultural JJ NN
+Trifari NNP
+firing VBG JJ NN NN|VBG
+jelled VBD
+Koenig NNP
+wearing VBG
+owe VBP VB
+stimulators NNS
+Face NNP VBP
+midafternoon NN
+Liqueur NNP
+Casino NNP NN
+foreclosed VBN JJ VBN|JJ VBD
+disconnected VBN JJ
+ads NNS
+earth-orbiting JJ
+Yamada NNP
+Basf NNP
+Dream-Miss NNP
+Smaller-stock JJR
+S.A.F.E. NNP
+Evolving VBG
+introjected VBN
+barren JJ
+China-watcher NN
+Fla. NNP
+blunt VB JJ
+honored VBN JJ VBD
+protein-bound JJ
+then-senior JJ
+quality-control NN JJ
+newer JJR
+Epp NNP
+Rossi NNP
+enflamed VBN
+ways NNS
+EX NNP
+abacuses NNS
+Taber NNP
+wounding VBG
+bag NN VB
+in-patient JJ
+Illuminating NNP
+dressing NN VBG JJ
+Oji NNP
+Disquisition NNP
+Ottoni NNP
+unmalicious JJ
+rankles VBZ
+astride IN
+'78 CD
+Wilm NNP
+puttering VBG
+kidney-stone NN
+Cross-border JJ
+toe-tips NNS
+bitee NN
+Toyobo NNP
+Tower NNP
+cofounder NN
+round-tripping NN
+dazzler NN
+Morgart NNP
+pre-war JJ NN
+omitting VBG
+crumbling VBG JJ
+steered VBD VBN
+incubi NNS
+mulling VBG NN
+out-migrants NNS
+well-organized JJ
+two-timed VBN
+Prolonged VBN JJ
+regrettable JJ
+reworked VBD VBN
+Chausson NNP
+feasted VBN
+lead-exposure JJ
+HiPro NNP
+Medal NNP
+Implements NNS
+ruin NN VBP VB
+Fielder NNP
+schoolgirls NNS
+shiny JJ
+rehabilitated VBN
+Presbyterian-St JJ|NP
+saccharin NN
+chains NNS
+maps NNS
+Manly NNP
+Pappy NNP
+paymaster NN
+Volvo NNP
+C&W NNP
+Distribution NNP NN
+trackage NN
+Bollinger NNP
+Void NN
+brownies NNS
+Bombay NNP NN
+adapted VBN VBD
+make... :
+Tristars NNPS
+building-related JJ
+FRINGE-BENEFIT JJ
+Weisner NNP
+-aminometha NN
+sardines NNS
+Stallkamp NNP
+non-telephone JJ
+Belli NNP
+muddle NN VB
+Lunday NNP
+linebackers NNS
+asceticism NN
+Campbell-Mithun-Esty NNP
+Petersburg NNP
+Amazonian JJ
+Them PRP NNP DT
+toffee NN
+bacteria NNS
+Chalidale NNP
+placated VBN
+owners NNS
+takeover-driven JJ
+Grolier NNP
+Neo-Popularism NNP
+breakwaters NNS
+Cirino NNP
+R/NNP.C/NNP.A. NN
+M.D.C. NNP NN
+escorted VBD VBN
+sizzling JJ VBG
+Reinforcing VBG
+McCarver NNP
+afghan NN
+Spouse NN
+Laverty NNP
+villains NNS
+Guest NNP NN
+savaged VBD
+bayed VBD VBN
+Hoijer NNP
+Greener JJR
+compares VBZ NNS
+altogether RB
+Scwhab NNP
+epitomize VB VBP
+merchant-banking JJ NN
+see-lective JJ
+Edith NNP
+able JJ
+types NNS
+Groat NNP
+pendulum NN
+Straub NNP
+Farmland NNP
+NHL NNP
+Get VB NNP VBP
+Linwood NNP
+separable JJ
+Humboldt NNP
+calamitous JJ
+prescription-drug NN JJ
+waxy JJ
+Afrique NNP
+Fretting VBG
+D'Amico NNP
+Proler NNP
+four-cylinder JJ
+CST NNP
+CANDIDATES NNS
+Golda NNP
+tamp VB
+oiled JJ
+reissue NN
+Stromeyer NNP
+Sandifer NNP
+Hope NNP NN VB VBP
+Am NNP VBP
+Hirano NNP
+mortification NN
+rustler NN
+Siena NNP
+psychiatric JJ
+elimination NN
+socialite NN
+NUMBERS NNS
+images NNS
+ectoplasmic JJ
+Minikes NNP
+Clemenceau NNP
+START NNP
+liable JJ
+leaderless JJ
+Pulliam NNP
+climbable JJ
+egos NNS
+over-price VB
+super-high JJ
+Capital NNP NN
+Newsstands NNS
+anion NN
+Accrued VBN
+CR103 NNP
+battery-powered JJ
+tipoff NN
+Spaulding NNP
+testers NNS
+Humphrey NNP
+Compeyson NNP
+drug-funding NN
+overpressure NN
+shocked VBN VBD JJ
+minuses NNS
+neurologists NNS
+playoffs NNS
+truck-refrigeration NN
+debt-equity JJ NN
+high-power JJ
+Spook VBP
+scourges NNS
+double-jeopardy NN
+Sheinberg NNP
+plastic-covered JJ
+Dickinson NNP
+decks NNS
+clipping NN
+frightened VBN JJ VBD
+Trenton NNP
+Taviani NNP
+Alexia NNP
+newsprints NNS
+MOB NNP
+higher-than-normal JJ
+Slider NNP
+Lanin NNP
+Valais NNP
+keying VBG
+Lumumba NNP
+Foresight NN
+Norman NNP
+Certification NNP
+database NN
+supervisors NNS
+Clays NNP
+dwells VBZ
+slickers NNS
+locates VBZ
+sterilizing VBG
+autumns NNS
+headsman NN
+participatory JJ
+rope-sight NN
+Ardmore NNP
+HI NNP
+improving VBG NN
+punted VBD
+Owned NNP
+personalize VB
+bespeak VBP
+municipals NNS
+Intercollegiate NNP
+unspecified JJ
+interchangeable JJ
+recitals NNS
+read VB NN VBP|VBD VBD VBN VBP VBD|VBP
+relation-back JJ
+propels VBZ
+Dingwall NNP
+trusting JJ VBG
+Elkins NNP
+Gewirtz NNP
+Styron NNP
+word'boom NN
+hurler NN
+Pagni NNP
+Vesoft NNP
+still-to-be-named JJ
+muff NN VB
+Kornreich NNP
+humankind NN
+mouth-to-mouth JJ
+Jeroboam NN
+--Bordeaux NNP
+itemize VB
+shed VB VBD VBN VBP NN
+overlooked VBN VBD
+FARGO NNP
+coaxing JJ VBG
+Lansbury NNP
+Chairperson NNP
+hoteliers NNS
+Flexicokers NNS
+engulf VB
+Garryowen NNP
+ARTICLE NN
+tirelessly RB
+Fosback NNP
+practising VBG
+Marquez NNP
+Washizu NNP
+Porterhouse NN
+identifying VBG
+honoree NN
+eventful JJ
+Hook NNP
+Michelle NNP NN
+large-capitalization JJ NN
+soared VBD VBN
+reveals VBZ
+drug-related JJ
+Rumors NNS NNP
+Lever NNP
+oil-slicked JJ
+willingly RB
+mid-1890 CD
+throw-away JJ
+abortion-funding JJ
+airdrops NNS
+gestures NNS VBZ
+intimating VBG
+Barre-Montpelier NNP
+beachhead NN
+sodium NN
+photographic JJ
+scandal-tripped JJ
+AIChE NNP
+typists NNS
+murder NN VB
+abhorred VBD
+Machineries NNP NNS
+hearers NNS
+Lenygon NNP
+Fourtou NNP
+Wafaa NNP
+junkie NN
+Millers NNPS NNP
+Burnett NNP
+cholesterol-reduction NN
+Broomfield NNP
+dazzles VBZ
+raccoon NN
+form-creating JJ
+humaine NN
+methodology NN
+Kuniji NNP
+reinforces VBZ
+COMMITTEE NNP
+hassled VBN
+overdoses NNS
+ailments NNS
+MANY JJ
+Resuming VBG
+limited-partner JJ
+Rempsberger NNP
+Deciding VBG
+harbor NN VB VBP
+valleys NNS
+Halsted NNP
+Han NNP
+siphon VB
+Forester NNP
+machinery-trading JJ
+Boucherie NNP
+deglycerolized VBN
+pattered VBD
+Golar NNP
+Dell'Arca NNP
+millenniums NNS
+Clandestine JJ
+Mathues NNP
+Southam NNP NN
+computer-system-design JJ
+quirky JJ
+Haislmaier NNP
+infinitely RB
+denuded VBN
+Honolulu-based JJ
+bugaboo NN
+DAMAGES NNS
+bioequivalence-therapeutic-equivalence JJ
+Brut NNP
+off-level JJ
+Chrysler-brand JJ
+shantytowns NNS
+paltry JJ
+striven VBN
+Lupe NNP
+potential JJ NN
+jay NN
+Schall NNP
+Confindustria NNP
+attest VB VBP
+nibbling VBG NN
+tank NN VB
+Shirer NNP
+Alcarria NNP
+diffuses VBZ
+film-making JJ
+Snowmass NNP
+Renaissance NNP NN
+maligned VBN
+Privatize VB
+Honduras NNP NNS
+Charities NNS NNPS
+abusing VBG
+Pei NNP
+Malpede NNP
+Jurisdiction NNP
+Charming JJ NNP
+Outwardly RB
+LSI NNP
+Attwood NNP
+key-financial JJ
+multi-year JJ
+yarn NN
+Siemens NNP
+Highest JJS
+reminded VBD VBN
+Kurtanjek NNP
+less-traveled JJ
+lasers NNS
+powered VBN JJ
+Conversely RB NNP
+Sealey NNP
+Mendelsohn NNP
+Cleburne NNP
+drugstores NNS
+Sieckman NNP
+respiration NN
+UKRAINIANS NNS
+'79 CD
+magical JJ
+Sixteen CD
+Flusser NNP
+Hepatitis NNP
+Sean NNP
+ownerships NNS
+Survivors NNS
+Alvin NNP
+travelogue NN
+IT'S VBZ
+Taksim NNP
+island NN
+frayed JJ VBN
+crime NN
+Mort NNP
+holstered VBD VBN JJ
+multilingual JJ
+raping VBG NN
+rhapsody NN
+Esther NNP
+sketchbook NN
+centenarians NNS
+galleries NNS
+Dalton NNP
+fin-syn JJ
+Then RB
+tripping VBG
+pitchers NNS
+York-Pennsylvania NNP
+builder NN
+Quelle NNP
+unharmed JJ
+SONG NNP NN
+Chadha NNP
+well-planned JJ
+Popular NNP JJ
+non-business JJ
+ducks NNS VBZ
+among IN
+Cambridge NNP NN
+jammed-together JJ
+FDR NNP
+Diseases NNPS
+Garcia NNP
+Alligood NNP
+assault NN VBP
+kayo VB
+Autocoder NN
+lose VB VBP
+Versicherung NNP
+Sound NNP JJ NN VB VBZ
+Al-Chalabi NNP
+decamped VBD
+multi-disciplinary JJ
+Harty NNP
+sucess NN
+appoints VBZ
+behynde IN
+Systematically RB
+insurrections NNS
+mucked VBN
+bogeys NNS
+price-driven JJ
+GAF NNP
+oily JJ
+keeled VBD
+anionic JJ
+rejoining VBG
+steeply RB
+clean-air JJ NN
+background NN JJ
+motional JJ
+tracked VBN VBD JJ
+Incapable JJ
+slowest JJS
+Sangallo NNP
+Slides NNS
+countryman NN
+eloquent JJ
+logging NN VBG JJ
+tariff-reduction NN
+porous JJ
+airwaves NNS
+Enichem NNP
+dull-gray JJ
+cooling NN VBG
+Pressure-happy JJ
+FT NNP
+streetfighter NN
+Asset-Backed JJ NNP
+Daggs NNP
+Giveaways NNS
+overreacting VBG
+Bornholm NNP
+verso NN
+under-owned JJ
+Nightwatch NNP
+Solid JJ NNP NN
+Druin NNP
+highbrow-furrowing NN
+thermostat NN
+Framework NNP
+top-priority JJ
+airliner NN
+Clayt NNP
+Braille NNP
+rewritten VBN
+Hardwick NNP
+videodisks NNS
+vile JJ
+curator NN
+Betty NNP
+Rates NNS NNP
+heat-using JJ
+Yost NNP
+Anthropology NNP
+Thant NNP
+whitely RB
+vacations NNS
+tiffs NNS
+Ethyl NNP
+aromatics NNS
+postwar JJ
+Kerson NNP
+deactivates VBZ
+Colorocs NNP
+rumpled JJ
+Shiflett NNP
+Poupin NNP
+ABCs NNS
+semifinals NNS
+housebroken JJ
+veiled VBN JJ
+ideas NNS
+pledges NNS VBZ
+Fuhrer NNP
+selfdamaging JJ
+extrema NNS
+Associations NNP NNS NNPS
+upright RB JJ
+treatises NNS
+HOME-SALE JJ
+Mahler NNP
+fugures NNS
+adore VBP VB
+Imelda NNP
+Clyde NNP
+rebalanced VBN
+Solidarity-led JJ
+staccato NN FW
+Multnomah NNP
+ascribe VBP VB
+Ascii NNP
+Barnaba NNP
+Grover NNP
+Gorillas NNP NNS
+An DT NNP CC
+XRAL NNP
+Salter NNP
+NORAD NNP
+improve VB VBP
+Downstairs NN RB
+harden VB
+Investment NNP NN
+health-products NNS
+GO VB
+unkempt JJ
+J.P. NNP
+lice NNS
+Relationship NNP
+Moonies NNPS NNS
+purring VBG NN
+Smallwood NNP
+maximize VB VBP
+Confederation NNP
+Tibetan-like JJ
+Kiko NNP
+Alternative-operator NN
+Restaurant NNP NN
+reverberate VB
+rewards NNS VBZ
+LTD NNP
+Psychical JJ
+aghast JJ
+slide NN VBP VB
+disappearances NNS
+letterhead NN
+ozone-damaging JJ
+sails NNS VBZ
+Fatal NNP
+Helsinki-based JJ
+Heidi NNP
+kitchens NNS
+overeat VBP
+hot-selling JJ
+higher-income JJ
+realestate NN VB
+Undaunted JJ
+Montvale NNP
+handicapped JJ VBN NNS
+Azlant NNP
+George-Creque NNP
+growing VBG JJ NN
+automated-pit-trading NN
+tip-toe NN
+idyllic JJ
+Guardini NNP
+Hartman NNP
+Paix NNP
+Bonham NNP
+engrossing JJ
+thighs NNS
+whirred VBD
+Health-Chem NNP
+redirect VB
+naturalism NN
+commercial-property NN
+sunburnt JJ
+measurable JJ
+recounted VBD VBN
+illustrated VBN JJ VBD
+humour NN
+Jones NNP
+telecommunications NNS JJ NN NNS|NN
+channelled VBN
+understudied VBD
+Greekfest NNP
+substantially RB
+Midi NNP
+Overbuilding VBG NN
+Encompassing VBG
+Jackson-Vanick JJ
+elapse VB
+Unpaid JJ
+Curiosity NN NNP
+misjudged VBD VBN
+controllable JJ
+Tiger NNP NN
+Shires NNP
+CRIME NN
+neophyte JJ NN
+heroically RB
+quasi-federal JJ
+falloff NN
+Bowman NNP
+accepts VBZ
+announcements NNS
+five-hundred-dollar JJ
+Fret VB
+mattresses NNS
+ballroom NN
+clanged VBD
+trodding VBG
+Geraldo NNP
+bureaucrats NNS
+unease NN
+AMONG IN
+nine-thirty CD RB
+Geoffrion NNP
+conflict NN VB VBP
+dusted VBN VBD
+Disappointing JJ
+telegraphed VBD
+phosphorus NN
+our PRP$
+Emulex NNP
+Dartmouth NNP
+Braddock NNP
+ex-singer NN
+Bleckley NNP
+Capitan NNP
+PERIPATETIC JJ
+O'Banion NNP
+charge-card JJ
+exonerate VB
+lands NNS VBZ
+Rumford NNP
+C415 CD
+socialism NN
+philharmonic NN
+Cassell NNP
+stimulatory JJ
+Deafening VBG
+usage NN
+Complementing VBG
+funny JJ
+Sheremetyevo NNP
+also-ran NN
+Athlete NNP
+ten-hour JJ
+Leobardo NNP
+isolation... :
+knocking VBG NN
+chestnut NN
+GLITTERS VBZ
+DEFECT VBP
+NIH NNP
+Splendor NN
+sellers NNS
+completeness NN
+Erskin NNP
+okay JJ RB VB UH
+Linage NN
+fronted VBD
+Conference NNP NN
+POLICE NN
+blackmailing VBG
+Crumley NNP
+argues VBZ
+Euro NNP
+acknowledge VBP VB
+inhabit VBP
+airlines NNS
+Overseeing VBG
+impure JJ
+Anglo\/Dutch NNP
+post-census NN
+IOCS NN
+U.S.-donated JJ
+sacrificed VBN
+Carnegie NNP
+L.H. NNP
+Twice RB
+perfectly RB
+front-back JJ
+rodent NN
+Whiteleaf NNP
+heat-absorbing JJ
+Pinar NNP
+Luang NNP
+Preferred-dividend JJ
+seismograph NN
+Homemade NNP VBN
+decease NN
+carpeting NN
+Watertown NNP
+food-services NNS
+runup NN
+potent JJ
+ex-employee NN
+Seventeenth JJ
+tenacious JJ
+companies... :
+agency-dealing JJ
+Profits NNS NNPS
+Llewellyn NNP
+humidity NN
+RESIGNED VBD
+Payson NNP
+flimflam NN
+Nath NNP
+totaled VBD VBN VBP
+Theo NNP
+to-day NN JJ RB
+Discounts NNS
+slick JJ NN
+nd CC
+small-equipment NN
+Tertre NNP
+years NNS
+staple NN JJ
+Hartz NNP
+impeded VBN VBD
+five-column JJ
+herbal JJ
+roosting VBG
+Aligning VBG
+wetness NN
+pop'lar JJ
+clinical JJ
+Barn NNP
+single-class JJ
+adept JJ
+encompass VB
+imprisoning VBG
+Cold NNP JJ NN
+vivacious JJ
+golfer NN
+amounts NNS VBZ
+beer-related JJ
+Wind NNP NN
+scathing JJ
+inferential JJ
+ARMs NNS NN
+Durakon NNP
+cometary JJ
+happening VBG NN
+phosphates NNS
+rights NNS
+socially RB
+mortgaged VBN
+Leucadia NNP
+Hyena NN
+hang VB JJ VBP NN
+Tora NNP
+equivocal JJ
+anti-discriminatory JJ
+carry-forwards NNS
+bestiary NN
+Oyajima NNP
+Lamon NNP
+bradykinin NN
+acculturated VBN
+override VB NN
+tufts NNS
+BankAmerica NNP
+inexpressibly RB
+Narrow-gauged JJ
+Cuneo NNP
+Mapco NNP
+Centralia NNP
+committing VBG
+theological JJ
+railcar NN
+documented VBN VBD
+sliver NN
+Orben NNP
+abjection NN
+contempt NN
+Deminex NNP
+Surrounding VBG
+zestfully RB
+plunderers NNS
+uppon IN NN
+subhumanity NN
+worshipped NN
+Hillsdown NNP
+assortment NN
+machinist NN
+drowns VBZ
+a-wing NN
+benefits-for-all JJ
+blizzards NNS
+Lyn NNP
+Dartboard NN NNP
+zip NN VBP VB
+carbide NN
+bandstand NN
+inefficiencies NNS
+Starling NNP
+Gesangverein NNP
+Indo-China NNP
+bewilderingly RB
+Raine NNP
+Zappa NNP
+pea-green JJ
+indicating VBG
+non-recourse JJ
+saga-like JJ
+EZ NNP
+Investigations NNS NNPS NNP
+Hound NNP
+dunes NNS
+whiskies NNS
+GAG NNP
+wriggled VBD
+solace NN VBP
+Stricken NNP
+Groves NNP
+Selena NNP
+kisses NNS VBZ
+Grapefruit NNP
+Colleen NNP
+emergency-room NN
+Loevner NNP
+electro-optics NNS
+justifying VBG
+exceeding VBG JJ
+Intangibles NNS
+recoated VBN
+Klawitter NNP
+nonfinancial JJ
+Divorced NNP
+roustabouts NNS
+fats NNS
+malnutrition NN
+warship NN
+mouldering VBG
+Pantyhose NN
+accrues VBZ
+Fingered NNP
+artists NNS
+Crosbys NNPS
+grilled JJ VBN
+Colorama NN
+festooning VBG
+appraise VB
+CSV NNP
+clincher NN
+admittance NN
+Elavil NNP
+Snellville NNP
+Superconductors NNS
+buckled VBD VBN JJ
+Trac NNP
+fairways NNS
+low-grossing JJ
+Boulez NNP
+pace-setter NN
+subside VB VBP
+counterbidders NNS
+Greed NN NNP
+childcare NN
+Polyakova NNP
+justices NNS
+cash*/NN-flow JJ
+helmeted JJ
+Friend NNP NN
+Motown NNP
+mudguard NN
+undercover JJ
+Lightly RB
+pumps NNS
+Shioya NNP
+specializing VBG
+thankfulness NN
+bearish JJ
+liberal-conservative JJ
+groove NN
+chloride NN
+Gates NNP
+trample VB
+Greco NNP
+leagued VBN
+stay-at-home JJ
+dogma NN
+harsh JJ
+Marvin NNP
+canon NN
+supervisory JJ
+Unitours NNPS
+Afranio NNP
+incumbents NNS
+Haskell NNP
+Elizabethan JJ NNP
+SYSTEMS NNP NNPS
+sideways RB JJ
+payment-system NN
+foreshadowed VBN
+persisted VBD VBN
+Panamanian JJ NNP
+isolate VB VBP
+traipsing VBG
+frenetic JJ
+coordinators NNS
+stringed JJ
+pristine JJ
+Arkansas-based JJ
+impeached VBN
+Experiencing VBG
+phosphorescent JJ
+drivers NNS
+pretax JJ NN
+sprouted VBD VBN
+blood-and-guts JJ
+invitees NNS
+Ingot NN
+unobtainable JJ
+Handzlik NNP
+prematurely RB
+boil VB NN
+Murmann NNP
+remanding VBG
+Tee-wah NNP
+fountainhead NN
+Backyard NN
+continual JJ
+miraculously RB
+Garrison NNP
+puissant JJ
+blinding JJ VBG
+MICROSYSTEMS NNP
+Venneboerger NNP
+childlike JJ
+Scholastic NNP
+hiding VBG NN
+hazardous JJ
+businesspeople NN
+cross-writing NN
+Co-optation NN
+footpath NN
+demagoguery NN
+home-mortgage JJ
+brazil NN
+hoppled VBN
+Terrace NNP
+Hashing NN NNP
+informal JJ
+subsidies NNS
+GP NNP
+'85 CD
+YEARS NNS
+single-shot JJ
+hails VBZ
+Biotech NNP
+lower-volume JJ
+re-used VBN
+protozoan JJ NN
+Inc. NNP NNPS NN
+infielders NNS
+dwarf NN VBP VB
+Improper JJ
+whooping JJ VBG
+age NN VBP
+Nintendos NNPS
+bookstore NN
+Europeanized VBN
+Nikka NNP
+NatWest NNP
+migration NN
+Robec NNP
+Steinberg NNP
+irksome JJ
+Czestochwa NNP
+Sunbury NNP
+wide-open JJ
+brynge VBP
+chiefly RB
+meat-wagon NN
+Profitt NNP
+corroding VBG
+reined VBD VBN
+five-and-a-half NN
+radical JJ NN
+Familia NNP
+bobby-soxer NN
+Whitfield NNP
+individually RB
+culminate VB VBP
+canneries NNS
+roamed VBD
+look-alike JJ NN
+blanche JJ NN
+business-interruption JJ
+lo UH
+corresponded VBD
+seven-thirty RB
+half-implemented JJ
+done-and CC
+omelets NNS
+eminences NNS
+conflicting VBG JJ
+presences NNS
+conclusion NN
+sharpened VBN VBD
+stabilize VB VBP
+blasphemers NNS
+Remove VB
+Ranzer NNP
+metro NN
+B.B.C. NNP
+proclaim VB VBP
+evangelical JJ
+Guidelines NNS
+imperiling VBG
+entering VBG
+theses NNS
+HK NNP
+preprepared VBN
+fancy'shvartzer NN
+Lavoro NNP NN
+Longevity NN
+uniramous JJ
+Dion NNP
+stiffening NN JJ
+tortoises NNS
+Hap NNP
+Carrollton NNP
+L&N NNP
+ACCEPTANCES NNS NNPS
+Cerf NNP
+Triton NNP
+neonatal JJ
+calluses NNS
+moderator NN
+Aide NNP
+floppy-disk NN
+dispersement NN
+limbic JJ
+golden-share NN
+Papua NNP
+OGURA NNP
+Castor JJ
+burden NN VB VBP
+paterollers NNS
+extremely RB
+copyright NN JJ
+denyin VBG
+Liverpudlians NNPS
+Cuddihy NNP
+undifferentiated JJ
+good JJ NN RB
+interweaving VBG
+Spoon NNP
+Attorneys NNS NNP NNPS
+Partisanship NN
+Demanded VBD
+restorer NN
+Documentation NNP
+tumbledown JJ
+painful JJ
+effected VBN VBD
+Vassiliades NNP
+Shale NNP
+Conchita NNP
+cedar NN
+harpy JJ
+decision NN
+affair NN
+clinches NNS
+REALTY NNP
+gamesmen NNS
+Carols NNPS
+Henderson NNP
+levy NN VBP VB
+Fiesta NNP
+base-price NN
+surfaces NNS VBZ
+Walesa NNP
+five-party JJ
+Cole NNP
+Harnick NNP
+Sevigli NNP
+accordance NN
+Trumplane NNP
+beasts NNS
+Wine NNP NN
+Gianni NNP FW
+discharging VBG
+vistas NNS
+fiber-related JJ
+Unleaded JJ
+blacked-out JJ
+end-of-model-year JJ
+Christos NNP
+Handguns NNS
+snug JJ
+IF IN
+lastest JJS
+screws NNS
+mucilage NN
+Junction NNP
+cinematographer NN
+welcomes VBZ
+Einar NNP
+sauce NN
+Stolley NNP
+inroad NN
+Hanover-Supermarket NNP
+stubbornly RB
+crankcase NN
+long-chain NN
+Prop NN
+patience NN
+urged VBD VBN
+Fiberall NNP
+Oceanside NNP
+residual JJ NN
+string NN VB
+typhoid NN
+liar NN
+heretical JJ
+Esquivel NNP
+Slightly RB
+expedient JJ NN
+Shanyun NNP
+Venn NNP
+nears VBZ NNS
+pillared JJ VBN
+Demand NN VB NNP
+No-Name NNP
+mark NN VBP VB
+debt-financing JJ
+gasped VBD
+Tilted NNP
+Leichtman NNP
+Chiodo NNP
+Fuentes NNP
+Definition NN
+flipped VBD
+Senators NNS NNP NNPS
+yells VBZ
+conceded VBD VBN
+belie VBP VB
+shady JJ
+cathedrals NNS
+questionably RB
+procedure NN
+ne FW
+Defining VBG
+here-for JJ
+Barcelona-based JJ
+auto-safety JJ
+Lilley NNP
+sublime JJ NN
+number-crunchers NNS
+Ritter NNP
+noir FW
+aspirants NNS
+uncluttered JJ
+updated VBN JJ
+pox NN
+Baileefe NNP
+Caucasian NNP
+drips VBZ
+JA NNP
+audio-visual JJ NN
+joys NNS
+cutter NN
+one-step JJ
+lashed VBD VBN
+stopping-point NN
+more-level JJ
+Pp. NN NNS
+anti-freeze JJ NN
+Landry NNP
+Asteria NNP
+Kitamura NNP
+scandalizes VBZ
+waited VBD VBN
+Stertz NNP
+imprudent JJ
+re-runs NNS
+Driesell NNP
+Shardlow NNP
+seven-iron NN
+Capt. NNP
+rescued VBN VBD
+Crimean NNP
+Methodist NNP JJ
+'Why WRB VB
+Philosophical NNP
+anti-virus JJ
+Optimists NNS
+Maryland NNP NN
+Stettin NNP
+hog NN NNS
+Burghley NNP
+Penny NNP NN
+eccentricities NNS
+Wall-Tex NN
+devastation NN
+postmarked VBN
+behold VB
+SHEA NNP
+Sundor NNP
+Kingston NNP
+aseptically RB
+Dong-A NNP
+maudlin JJ
+boondoggler NN
+happiness NN
+Pavlovsky NNP
+Dineen NNP
+parish NN
+tonally RB
+whether IN CC
+family-entertainment JJ
+cocotte NN
+metal-processing JJ
+Escobar NNP
+CBS-Turner NNP
+mothered VBN
+fracas NN
+Earlier RBR JJR RB
+complained VBD VBN
+archaism NN
+stock-fund JJ NN
+city-owned JJ
+Prevot NNP
+suvivors NNS
+squalid JJ
+PC9801LX5C NNP
+Tony NNP
+Guinness NNP
+coproducer NN
+arts NNS
+irresponsibly RB
+OEC NNP
+squealed VBD VBN
+undercapitalized JJ
+Regis NNP
+bird-brain NN
+bargen VBP
+Measures NNS
+dictate VB VBP
+wallop NN
+AUDITS NNS
+crossed VBD VBN
+swallows NNS VBZ
+acquisitions NNS
+frontage NN
+deducting VBG
+Havisham NNP
+confusion NN
+wonders NNS VBZ
+transaction-entry NN
+Sailors NNS
+surgery NN
+Philosophies NNP
+crossover NN
+Kreisler NNP
+pegs NNS VBZ
+flip JJ VB
+meticulous JJ
+legal-ethics NNS
+restores VBZ
+delta NN JJ
+author NN
+free-blown JJ
+Simplex JJ
+Sawyer NNP
+crumpled JJ VBD VBN
+establishment NN
+rabbit-test JJ
+Combatting VBG
+FAST NNP
+frozen-pizza NN
+standard JJ NN
+Cougar NNP
+crutch NN
+Tales NNS NNP NNPS
+synthesize VB
+keyhole NN
+Joey NNP NN
+l'activite FW
+glassware NN
+Barfield NNP
+maquiladoras NNS FW
+deported VBN VBD
+slingers NNS
+target-hunting JJ
+aldermen NNS
+molding NN VBG
+sap VB NN
+Briscoe NNP
+Sharecropping NN
+Exclusion NN
+smaller-than-expected JJ
+Heimers NNP
+pantry NN
+Bargain NN
+Fokker NNP
+blood-stained JJ
+Yvette NNP
+basking VBG
+Rey-controlled JJ
+CWA NNP
+renaturation NN
+intrastate JJ
+satisfactorily RB
+'86 CD
+applied VBN VBD VBD|VBN JJ
+halt NN JJ VB VBP
+spokesperson NN
+tripod NN
+companionway NN
+URGED VBD VBN
+boondoggles NNS
+manmade-fiber JJ
+Trainer NNP
+securities-price JJ
+Fitting VBG
+classmates NNS
+steadily RB
+bent VBD VBN JJ NN
+Anhwei NNP
+countering VBG
+Sandhurst NNP
+rings NNS VBZ
+Academicianship NN
+Arch NNP VB
+banjo NN
+Relational NNP
+tumor-necrosis JJ
+overseers NNS
+Terms NNS NNP
+Python NNP
+approaches NNS VBZ
+Detroit-area JJ
+PHILADELPHIA NNP
+hands-down JJ
+derivatives NNS
+low-concept JJ
+productivity-based JJ
+Corresponding VBG
+quell VB
+GLASNOST NNP FW
+roundness NN
+burdock NN
+College NNP NN
+structural JJ
+GQ NNP
+Russian-dominated JJ
+cleanups NNS
+Rinsing VBG
+M2 CD
+pleasure-seeking NN
+Melies NNP
+Ervin NNP
+Appeal NNP NN VBP
+Wedtech NNP
+Artkino NNP
+nontransferable JJ
+fetching VBG JJ
+UNFLUORIDATED JJ
+theatregoer NN
+lange FW
+Jolliffe NNP
+lesson-learning NN
+out IN JJ NN RB RP
+admissible JJ
+Valmet NN
+raring JJ
+pared VBN VBD
+redesigning VBG
+Stadium NNP NN
+helpful JJ
+under-represented JJ
+Mauve-colored JJ
+tendered VBN JJ VBD
+UNIX NNP
+covers VBZ NNS
+creativity-oriented JJ
+supergiants NNS
+ODI NNP
+CTCA NNP
+glycol NN
+Agency NNP NN
+overcoming VBG
+insolence NN
+Regret NN
+Bolsheviks NNPS NNP NNS
+mosque NN
+eight-hour JJ
+Hans-Dietrich NNP
+protection NN
+right-field NN
+waxen JJ
+prosecutions NNS
+Copersucar NNP
+Leumi NNP
+Darryl NNP
+center-right JJ
+Moslems NNPS NNP NNS
+Newspapers NNPS NNP NNS
+timidly RB
+films NNS
+Continental NNP JJ
+Writing VBG NN NNP
+Oxnard NNP
+Kill VB NNP
+opinionmakers NNS
+inhibiting VBG JJ
+padding NN VBG
+mealy JJ
+Yesterday NN RB NNP
+impact NN VB
+Hartlib NNP
+plant-modernization JJ
+revelry NN
+defused VBN
+computer-services NNS
+pro-Iranian JJ
+meaningfully RB
+wooden-leg NN
+ranked VBD VBN JJ
+Hopi NNP
+directive NN
+write-downs NNS NN
+supra RB
+disreputable JJ
+deficiencies NNS
+transporters NNS
+predisposed VBN
+Toot NNP UH
+Amram NNP
+Lotteries NNS
+management-pilot JJ NN
+insurer NN
+Corby NNP
+looking VBG JJ NN
+whereon NN
+Chai NNP
+Keith NNP
+medieval JJ NN
+Detachment NNP
+disease-resistant JJ
+colonists NNS
+baffled VBN JJ VBD
+Maj. NNP
+Soft-spoken JJ
+intuitive JJ
+bungled VBD VBN
+Influenced NNP
+Boslego NNP
+Yujobo NNP
+Hauer NNP
+scimitar-wielding JJ
+Ordinarily RB
+liters NNS
+honorarium NN
+Shannon NNP
+Mello NNP
+beaches NNS
+acccounting NN
+pre-eminence NN
+Lucas NNP
+Pavlovitch NNP
+eight-and-a-half-foot JJ
+blends NNS
+Boswell NNP
+springing VBG
+Cunha NNP
+hydrido NN
+Moulin NNP
+holed VBN VBD
+pronouncements NNS
+low-altitude NN
+Hans-Peter NNP
+Non FW
+bogy NN
+deft JJ
+underlines VBZ
+perishables NNS
+then-GOP NNP
+dived VBD VBN
+dry-dock NN
+foolproof JJ
+IG NNP
+unerring JJ
+progeny NN
+above-market JJ
+Mobilization NNP
+ethnicity NN
+L-5-vinyl-2-thio-oxazolidone NN
+tax-deferred JJ
+blue-eyed JJ
+civic-lunch JJ
+foundation NN
+A.K.C. NNP
+hoist VB
+moderns NNS
+ships NNS VBZ
+musuem NN
+Nameless NNP
+operationally RB
+Chevalier NNP
+tax-and-spending JJ
+oldsters NNS
+Translocations NNS
+unissued JJ
+Ambroise NNP
+backward RB JJ
+countercharged VBD
+Meltex NNP
+newfangled JJ
+bodegas NNS
+Aguais NNP
+unconventional JJ
+nonbinding JJ
+pretense NN
+stabilization NN
+Exch NN
+bustin VBG
+Wisely RB
+backpacks NNS
+Mikado NNP
+immoral JJ
+consultant NN
+AZT-treated JJ
+decompose VB
+charcoaled VBN
+extreme JJ NN
+Tolls NNS VBZ
+week NN
+Ortegas NNPS
+allegedly RB
+Wetherell NNP
+Fed-bashing NN
+spacesuits NNS
+Castro-Medellin NNP
+boardrooms NNS
+Erjun NNP
+Repligen NNP
+industrially RB
+macrocrystals NNS
+proving VBG NN
+creaked VBD
+Da NNP
+revivified VBN
+chests NNS
+Flushing NNP
+Liberian JJ
+representational JJ NN
+St-story NN
+Novalta NNP
+rebounding VBG
+medium-haul JJ
+waggling VBG
+observances NNS
+Minutemen NNPS
+filly NN
+self-aggrandizing JJ
+Delaware NNP
+tombs NNS
+attache NN
+Nunes NNP
+Lezovich NNP
+Salisbury NNP
+three-fourths JJ NNS
+CSX NNP
+rose-pink JJ
+mom-and-pop JJ
+agility NN
+Winking VBG
+Legislatures NNS
+McAllister NNP
+Gulf NNP
+pizazz NN
+romance NN
+new-styled JJ
+muscle-flexing JJ
+Vandiver NNP
+abjectly RB
+assails VBZ
+Caravaggio. NNP
+push VB VBP NN
+strives VBZ
+Copperweld NNP NN
+Expenses NNS
+offersey NNS
+arias NNS
+Solovyov NNP
+goutte FW
+four-letter JJ
+misdirectors NNS
+DPL NNP
+Kadane NNP
+large-ticket JJ
+resale NN
+mineralized JJ
+common-stock JJ NN
+foreign-bank JJ
+Bosworth NNP
+blowing VBG VBG|NN NN
+shatter VB
+capitalists NNS
+commended VBN VBD
+Lincoln NNP VBP NN
+dismounted VBD VBN
+rampart NN
+banquets NNS
+Yoshiaki NNP
+offend VB
+Kriz NNP
+unclean JJ
+minstrel NN
+Hartley NNP
+donated VBN VBD
+Vyas NNP
+wineries NNS
+Dale NNP NN
+headlinese NN
+toy-store NN
+Quitslund NNP
+beams NNS VBZ
+radiochlorine NN
+G.D. NNP
+Oklahoman NNP
+booted VBN VBD JJ
+longerterm JJ
+obstructionism NN
+Manon NNP
+Westside NNP
+Overvalued JJ
+Retired NNP JJ VBN
+titanate NN
+Cruel JJ
+levi-clad JJ
+poor-quality JJ
+resource-intensive JJ
+bayleefe NN
+stand-up JJ
+Isabel NNP
+sapped VBN VBD
+Visually RB
+Massicotte NNP
+Bookman NNP
+gruesome JJ
+thousand-person JJ
+trundle NN VBP
+harder JJR RBR JJ RB
+Helionetics NNP
+covert JJ
+blase JJ NN
+cosmic JJ
+alluding VBG
+Quintet NNP
+Crippling JJ NNP
+eclectically RB
+Technologies NNP NNPS
+dance-theatre JJ
+near-maddened JJ
+subroutine NN
+knotted JJ VBD VBN
+quadripartite JJ
+Sear VB
+Oncotech NNP
+'87 CD
+empowering VBG
+exploit VB NN VBP
+DM10,000 CD
+Feuermann NNP
+Yea UH
+MH-60K NN
+hundreds-of-billions-of-yen JJ
+Donors NNS
+overreaction NN
+outbreak NN
+USA NNP
+insures VBZ
+first-phase JJ
+deadened VBN
+naturalist NN
+dissipating VBG
+surcharge NN
+anti-Christian JJ
+federalists NNS
+veins NNS
+evicting VBG
+Islander NNP
+fence-sit VB
+Perched VBN
+Rails NNPS
+Moliere NNP
+accredited VBD VBN
+nursing NN VBG
+spell VB NN VBP
+expressiveness NN
+defiling VBG
+Wing NNP
+biracial JJ
+left-handed JJ
+nerd NN
+adopt VB VBP
+Frampton NNP
+ingrates NNS
+wearily RB
+constituent NN JJ
+flashier JJR
+doan VBP
+Magoun NNP
+biases NNS
+intoxicated JJ
+oldest JJS
+rejection NN
+letting VBG NN
+Tyranny NNP
+Haugh NNP
+genus NN
+no-more-nonsense JJ
+pan-tribal JJ
+unpremeditated JJ
+formalized JJ VBN
+mumbo NN
+Property\ JJ
+autumnal JJ
+Hesse-Darmstadt NNP
+yon RB
+Coeur NNP
+Miglia NNP
+growth-and-income JJ
+Packer NNP
+conquering VBG
+Retailing NN
+eared JJ
+Munster NNP
+repaying VBG
+earthquake-triggered JJ
+hotly RB
+newly-appointed JJ
+lengthiest JJS
+Vader NNP
+spin VB NN
+homogeneously RB
+M3 CD NNP NN
+disintegrated VBD
+Earning NN
+Rosso NNP
+bruises NNS
+hyper-inflation NN
+castling VBG
+Industrial NNP JJ
+pillows NNS
+Acting NNP NN VBG
+Geller NNP
+ice-core NN
+Waslic NNP
+garbage-in JJ
+Enhance NNP
+french JJ NN NNS
+CTS NNP
+hundred-odd JJ
+initial'well NN
+rocketed VBD VBN
+sensors NNS
+raspberry JJ NN
+immensities NNS
+crime-busting JJ
+Trygve NNP
+whitens VBZ
+bottoms NNS
+Angell NNP
+emptiness NN
+WORLDLY JJ
+rhythmical JJ
+thermometric JJ
+refusing VBG NN
+regiment NN VB
+quota-breakers NNS
+world-affairs NNS
+Well-educated JJ
+freaks NNS
+kronor NNS FW NN
+cleaning NN VBG
+Needless JJ NNP
+ATLANTIC NNP
+Califano NNP
+upturn NN
+purposeful JJ
+schematic JJ
+Ground NNP NN
+kindest JJS
+pilot-seniority NN
+soft-hearted JJ
+Toufexis NNP
+sculptural JJ
+more-than-ordinary JJ
+symmetry NN
+Charles NNP
+double-coupon NN
+Solemnly RB
+terminal NN JJ
+testimonials NNS
+HM NNP
+Distillers NNPS NNP NNS
+anti-choice JJ
+mid-December NNP NN
+conspired VBD VBN
+deliverable JJ
+chomp NN VBP
+sylvan JJ
+Gimpy NNP
+couriers NNS
+tragi-comic JJ
+strictest JJS
+actives NNS
+terminating VBG
+N. NNP JJ
+idiotically RB
+Hemweg NNP
+provenance NN
+Meadowland NNP
+Larimer NNP
+Bello NNP
+Shelagh NNP
+bare-bones JJ
+hacked VBD VBN
+ripened VBD VBN
+Underwoods NNPS
+Ordinary JJ NNP
+escalation NN
+encourage VB VBP
+germaneness NN
+allayed VBN
+resonance NN
+snacked VBD
+hobby NN
+fondness NN
+checkbooks NNS
+Guardino NNP
+one-sixteenth NN
+Faulding NNP
+Duclos NNP
+Skelly NNP
+re-enactments NNS NN
+Schang NNP
+ml NN
+Gilborn NNP
+Charleston NNP NN
+Pritikin NNP
+luring VBG
+illegitimate JJ
+'92 CD
+lacks VBZ
+Corp. NNP NN
+universal JJ
+printed VBN VBD JJ
+ethically RB
+Arau NNP
+cells NNS
+Warren NNP
+Revisited NNP
+lobbies NNS
+half-conscious JJ
+troops NNS
+hit-and-run JJ
+North-Central JJ
+Moore NNP
+Moss NNP
+eight-foot-high JJ
+shorting VBG NN
+Goodis NNP
+tutors NNS
+disposals NNS
+Venetian NNP JJ
+whole-egg JJ
+punks NNS
+sociology NN
+wanes VBZ NNS
+Pork-barrel JJ
+Direct JJ NNP
+rodeos NNS
+c-Translated VBN NNP
+Jordan NNP
+Leponex NNP
+rewarding JJ VBG
+grandmas NNS
+statistic NN
+subcompacts NNS
+Retiree NN
+theologians NNS
+Gatherer NNP
+blanketed VBD
+reorganized VBN JJ VBD
+Isodine NNP
+SIZING NNP
+Accord NNP
+endorsement NN
+bureaucraticized JJ
+Turkmenia NNP
+watershed NN JJ
+pitons NNS
+Wrongs NNS
+wine-buying JJ
+Delaunay NNP
+Refiners NNS
+flowed VBD VBN
+twigged VBD
+Gallon-Loren NNP
+DNX NNP
+disgusting JJ
+strengthen VB VBP
+A.-controlled JJ
+Monty NNP
+Southwestern NNP JJ
+Co-sponsoring NNP
+less-visible JJ
+boycotts NNS
+rib NN
+sanctum FW
+essayish JJ
+hearest VBP
+anisotropy NN
+Feders NNP
+boxcar NN
+bipartisanship NN
+chiefdoms NNS
+Cluggish NNP
+succumbing VBG
+antiredeposition NN
+Krzywy-Rog NNP
+Ogden NNP
+Load NN
+petted VBN
+Specialty NNP NN
+Ligget NNP
+well-polished JJ
+wholeheartedly RB
+patrolling VBG NN
+Verbatim JJ
+expression NN
+co-host VBP VB
+stave VB
+corporate-related JJ
+produced VBN VBD
+smells VBZ NNS
+Octobers NNPS
+Curling NNP
+Qatar NNP
+Kassal NNP
+Georgescu NNP
+Wolters-Kluwer NNP
+mash NN VB
+MUMBO NN
+amniotic JJ
+unauthentic JJ
+steeples NNS
+freelancing NN
+megawatt NN
+authority NN
+automatically RB
+snorting NN
+Feelers NNS
+discrepencies NNS
+obstructionist NN
+six-year JJ
+mini-vans NNS
+Stoneridge NNP
+scanning NN VBG
+Howda WRB
+sets NNS VBZ
+Brill NNP
+aging VBG JJ NN
+assessment NN
+black-balled VBN
+constants NNS
+Dorena NNP
+EMA NNP
+emoted VBD
+Denko NNP
+Seas NNP NNPS
+A.I.D. NN
+once-grumpy JJ
+executing VBG
+unconnected JJ
+market-driven JJ
+Ameaux NNP
+Ulrich NNP
+finishing VBG JJ NN
+ceremony NN
+Petfoods NNPS
+Cairo-sponsored JJ
+Mory NNP
+wood-encased JJ
+Griston NNP
+aces NNS VBZ
+stratagems NNS
+flagged VBD
+hairyknuckled JJ
+Hasse NNP
+ballerinas NNS
+Finkelsteins NNPS
+On-Broadway NNP
+Bartoli NNP
+Sperandeo NNP
+Third-Quarter JJ NN
+Rotonda NNP
+Bradford NNP
+enlisted VBD JJ VBN
+Tanner NNP
+reconfirming VBG
+Rosenau NNP
+silvas FW
+Homestead NNP
+Sahjunt NNP
+Barr NNP NN
+Gallup NNP NN
+tape NN VB VBP
+plugugly JJ NN
+coops NNS
+Elmira NNP
+drought-related JJ
+undiminished JJ
+ancestral JJ
+Copley NNP
+Cyanamid NNP
+theory-and NN
+Permanente NNP
+Klemperer NNP
+bourgeois-bashing JJ
+Cohen NNP
+hank NN
+farmers NNS
+Leopard NNP
+encephalographic JJ
+roads NNS
+vicelike JJ
+Holstein NNP
+Gelles NNP
+vanished VBD VBN
+Jansen NNP
+Contracting VBG NN
+'What WP
+WEFA NNP
+socialist JJ NN
+abide VB VBP
+amassing NN VBG
+Argiento NNP
+consortiums NNS
+encores NNS
+Pros NNS
+Loper NNP
+shoehorned VBN
+Understandably RB
+Charlet NNP
+Borges NNP
+sh-ts NN
+Skinnerish JJ
+middle-priced JJ
+plumbed VBD
+refusal NN
+W/NNP.B/NNP.I. NN
+HOBBY NN
+rip-off NN
+Neurotron NNP
+hoodwinked VBN
+falconers NNS
+nine-digit JJ
+perpendicular JJ
+Neece NNP
+cadre NN
+detained VBN VBD
+gloss VB NN VBP
+Ekman NNP
+Blaggs NNP
+Skipjack NNP
+Millicent NNP
+reputedly RB
+propelled VBN VBD
+misdemeanants NNS
+manhunts NNS
+Finder NNP
+camera NN
+English-Danish NNP
+more-pressing JJ
+time-&-motion JJ
+illiquid JJ
+Stoltenberg NNP
+employee-bonus JJ NN
+studio NN
+lineup NN
+x-ray NN
+Regains VBZ
+shoals NNS
+taste NN VB VBP
+MLX NNP
+Pemberton NNP
+Corporal NNP
+QUARTER NN
+Lambda NNP
+wetly RB
+Has VBZ NNP
+CAE-Link NNP
+malfunction NN
+metal-workers NNS
+foot-loose JJ
+WANES VBZ
+junk-mail NN JJ
+Kimmel NNP
+Libyan JJ NN NNP
+vendor NN
+Tassinari NNP
+DOS NNP
+banker-editor NN
+Ayob NNP
+Saylor NNP
+proceed VB VBP
+boarding-home NN
+Dating NNP
+simple-minded JJ
+appellate-court NN
+debtor-nation NN
+godlike JJ
+facade NN
+odyssey NN
+inconvenient JJ
+cain MD
+Non-callable JJ
+hickory NN
+providers NNS
+Skills NNS
+nanny NN
+whoppers NNS
+interstitial JJ
+amusingly RB
+single-day JJ
+Kader NNP
+comparable JJ
+Temple NNP NN
+Bonus NNP
+hackles NNS
+Gladiator NNP
+skeletons NNS
+water-purification NN
+Bordens NNPS
+rhyming VBG
+Roxanne NNP
+Fairmont NNP
+wittiness NN
+cost-consciousness NN
+Co.`` ``
+analysts NNS
+enticed VBD
+GS NNP
+UPS NNP
+Hanford NNP
+rooftop NN
+Errors NNS NNP
+Lipman NNP
+Cosmopulos NNP
+Wogan NNP
+M4 NNP
+Pen NNP NN
+Gerby NNP
+InterMarket NNP
+Almagest NNP
+chowders NNS
+Pall NNP NN
+Organic NNP
+radish NN
+warned VBD VBN
+nestled VBN VBD
+reimbursements NNS
+topcoat NN
+Malabar NNP
+Violeta NNP
+multi-state JJ
+media-buying JJ NN NNP
+Hessian JJ
+hunting-gear JJ
+Xanadu NNP
+ruined VBN JJ VBD
+ready-to-eat JJ
+books NNS NN|POS
+subsidiary NN JJ
+debated VBN VBD
+bam UH
+Authenticated VBN
+hurley NN
+experiment NN VBP VB
+Sibyls NNPS
+abstrusenesses NNS
+expensive-to-produce JJ
+reinvigorate VB
+abounds VBZ
+underbelly NN
+Goldscheider NNP
+centerstage NN
+Ferguson NNP
+still-uncalculated JJ
+juxtaposed VBN
+Nesbitt NNP
+reorganizations NNS
+lifted VBD VBN
+run-up NN
+difficulties NNS
+Shvartzer NNP
+eies NNS
+mid-1950 CD
+tax-freedom NN
+Sudikoff NNP
+Most JJS NNP RBS RB
+lotter NN
+wiser JJR RBR
+microscopical JJ
+Makinac NNP
+ineffable JJ
+prevail VB VBP
+Acquirer NN
+vertical JJ NN
+Westin NNP
+Beckman NNP
+Feldene NNP
+premonitory JJ
+Witman NNP
+berated VBN VBD
+Schrager NNP
+blackbirds NNS
+grapple VB
+throwing VBG NN
+Kinnevik NNP
+HN NNP
+guarded VBN JJ VBD
+Concord NNP
+ex-employer NN
+clearness NN
+Connoisseurs NNS
+countercharges NNS
+Old NNP JJ
+Message NN NNP
+Frey NNP
+Seife NNP
+phrase'coffee NN
+Lamos NNP
+Prieska NNP
+Tracing VBG
+unsteadiness NN
+flatteringly RB
+care. NN
+Hydro NNP
+Glick NNP
+bonnet NN
+timepiece NN
+glory NN
+capital-gains-cut JJ
+Mears NNP
+contains VBZ
+product-launch NN
+Stetson NNP
+flaming JJ VBG
+late-in-the-day JJ
+arrogant JJ
+elution NN
+wildlife NN
+coolly RB
+well-publicized JJ
+bestseller NN
+Publicis NNP
+Polyconomics NNP
+Resort NNP
+Husker NNP
+torpid JJ
+Nachman NNP
+fined VBN VBD
+charmed VBN VBD
+Healey NNP
+labor-intensive JJ
+diameter NN
+takeing VBG
+cyanide NN
+de-emphasize VB
+telegrapher NN
+Shoppsers NNS
+electronic-information NN
+Rapture NN
+Anti-nuclear JJ
+mm NN
+Anyone NN
+vasorum NN
+lanes NNS
+Davison NNP
+Folding VBG
+Inhalation NNP
+insufficiently RB
+Thomae NNP
+JUDICIAL JJ
+seating NN VBG
+disappears VBZ
+disgraceful JJ
+Gazdag NNP
+impound VB
+Marvis NNP
+Ch NNP
+different JJ
+Saratoga NNP
+estate... :
+gaping VBG JJ
+aboriginal JJ
+weds VBZ
+housing-policy NN
+II NNP CD
+integrated-steel NN
+Wanger NNP
+beautiful JJ
+Howorth NNP
+&0C. NN
+adjournment NN
+sterilize VB
+wayward JJ
+Dior NNP
+Veronique NNP
+tax-writers NNS
+--wines NN
+Quizzical NNP
+wife-to-be NN
+ogress NN
+Charity NN NNP
+forearm NN
+British JJ NNP NNS NNPS
+MMS NNP
+Dickey NNP
+Democrats NNPS NNP NNS VBP
+Packet NN
+Seat NN
+temporary JJ
+Drugstore NNP NN
+Hindelong NNP
+Seiler NNP
+plain-spoken JJ
+Ownership NNP NN
+tinder NN
+three-hour-long JJ
+Yoshihisa NNP
+realities NNS
+high-stakes JJ
+stating VBG
+Whippet NNP
+GSD&M NNP
+drunken JJ
+Maurier NNP
+Corestates NNP
+multilayered JJ
+Seeley NNP
+gerbera NN
+Grabski NNP
+Krasnoyarsk NNP
+oilman NN
+Equifax NNP
+FHA NNP
+grindings NNS
+Missile NNP
+admired VBD VBN JJ
+adjustables NNS
+indefinable JJ
+twiggy-looking JJ
+YMCA NNP
+Inorganic JJ
+retires VBZ
+individualism NN
+illustrates VBZ
+Exercise NN
+five-pound JJ
+onrushing JJ
+consciousness NN
+broaden VB VBP
+transient JJ
+sons NNS
+bucked VBD VBN
+leviathan JJ NN
+introspective JJ
+Likewise RB
+Underground JJ
+Financieros NNP
+novelists NNS
+singlehandedly RB
+Bars NNP
+experimentation NN
+rating NN VBG
+KWU NNP
+flat-panel JJ
+intimation NN
+exacerbating VBG
+noose NN
+available JJ
+verve NN
+hoopla NN
+Bank\/IMF NNP
+depressingly RB
+racketeer NN
+shirk VB
+obdurate JJ
+anxiety-released NN
+regrettably RB
+Gesell NNP
+squandered VBN VBD
+paraphernalia NNS NN
+coloratura NN
+fascicles NNS
+ministering VBG
+Pisa NNP
+unconscious JJ NN
+Qualls NNP
+tubers NNS
+Stallone NNP
+closeups NNS
+Gavrilov NNP
+Kandu NNP
+views NNS VBZ
+Ford-Kissinger NNP
+'89 CD
+city-states NNS
+Shippers NNS NNP
+traditionally RB
+wholesaler NN
+Blatz NNP
+Misubishi NNP
+Wickhams NNP
+revolutionists NNS
+dragger NN
+earnings-growth NN JJ
+usable JJ
+Claudio NNP NN
+tasteful JJ
+Lazy NNP
+USC NNP
+three-to-five JJ
+Moto NNP
+privation NN
+headlands NNS
+long-format JJ
+fracturing VBG
+interests NNS VBZ
+Marmalstein NNP
+Gilmartin NNP
+stirrin VBG
+wheel NN VBP
+Nummi NNP
+reconfiguration NN
+debugged VBN
+Sighting VBG
+inaccuracies NNS
+prolong VB
+blonde JJ NN
+puddings NNS
+nationwide JJ RB
+veteran NN JJ
+anti-depressant JJ NN
+undervalued VBN VBD JJ
+Committees NNS NNP
+livers NNS
+Farmwife NNP
+gallows NN NNS
+Bath NNP
+Rushdie NNP
+bridge NN JJ VB
+financial JJ
+three-sentence JJ
+right-angled JJ
+Woe NN
+toying VBG
+Marist NNP
+differentiability NN
+Genius NN
+charcoal NN
+accelerometer NN
+Fichte NNP
+cement-making JJ
+vodka NN
+streaked VBD VBN
+chillingly RB
+recombinant JJ
+systematized VBN
+antipathies NNS
+Kind NN NNP
+rising VBG NN JJ
+suppressors NNS
+Steppenwolf NNP
+knee NN
+Kolstad NNP
+ancestors NNS
+subcommittees NNS
+globulin NN
+microphones NNS
+three-boiler JJ
+imagines VBZ
+heaving VBG
+physician-patient JJ
+Hat NNP
+toolmaker NN
+punditry NN
+Bul'ba NNP
+forty-seven JJ CD
+Input NN NNP
+generalized JJ VBN
+herds NNS
+lick VB
+tryin NN VBG
+still-ticking JJ
+three-snake JJ
+DOT NNP
+hardcover NN
+Polytechnic NNP
+one-eighth NN JJ
+inferred VBD VBN
+Palm NNP NN
+factory-like JJ
+proceedings NNS
+Yarnell NNP
+geese NNS
+Makoto NNP
+pressure-measurement NN
+squirmed VBD VBN
+paradoxically RB
+strolled VBD VBN
+Regular NNP JJ
+Brighton NNP
+flushed VBN VBD
+solicit VB VBP
+Urielites NNPS
+citizenship NN
+diabolical JJ
+owl NN
+twenty CD
+nonresidential JJ
+sounder JJR
+repaired VBN VBD
+Zamora NNP
+template NN
+canny JJ
+favorite JJ NN
+adduce VB
+Kassan NNP
+Barriers NNS
+Ukranians NNPS
+Bataan NNP
+recapitalize VB
+draft NN JJ VB VBP
+cafeteria NN
+exerts VBZ
+sales-conscious JJ
+horseman NN
+planking NN
+squat JJ NN VB
+paper-products NNS JJ
+scrutiny NN
+Butterfinger NNP
+James NNP
+LSO NNP
+missing VBG JJ NN
+Artesia NNP
+surprise NN JJ RB VB
+jolly JJ
+antibiotic NN JJ
+emerald JJ NN
+Legg NNP
+acquisitive JJ
+Logan NNP
+K-H NNP
+flit VBP
+apocalypse NN
+Seven-Up NNP
+ban NN VB VBP
+soon RB
+Concluding VBG
+persuasiveness NN
+Kisen NNP
+mini-mill NN
+child-oriented JJ
+good-driver JJ
+As IN RB
+delinking NN
+ignition NN
+Unconsciously RB
+GT NNP
+Wamre NNP
+plantation NN
+consensus-seeker NN
+Pro-rated JJ
+Nary NNP
+Forfeiture NNP
+Well-intentioned JJ
+spend VB VBP
+small-lot JJ
+Sections NNS
+Bozicevich NNP
+gungho JJ
+Lukassen NNP
+light-headedness JJ
+Testaments NNP
+Dickie NNP
+bristling VBG JJ
+Resolved VBN
+Knowledge NN
+building-society JJ
+amphobiles NNS
+Pysllium NN
+Angrily RB
+Notable NNP JJ
+Dorgan NNP
+misgauged VBN
+Anti-Jones JJ
+Voluntary NNP JJ
+corpus NN FW
+reliably RB
+Ole JJ NNP
+rule NN VBP VB
+crimsoning VBG
+thumb NN VB
+swoon NN
+more-volatile JJR
+red-blooded JJ
+property-price JJ
+chug VBP
+paired VBN JJ VBD
+Donoghue NNP NN VB
+Arrested VBN
+embellish VB
+unmarked JJ
+Brace NNP NN VB
+Trabold NNP
+Lys NNP
+remediation NN
+white-spirits JJ
+dispatched VBD VBN
+Vantage NNP
+Robby NNP
+State-controlled JJ
+combatted VBN
+Recherche NNP
+doctrines NNS
+splices VBZ
+deja FW NN RB
+Heisbourg NNP
+Olenegorsk NNP
+Bears NNPS NNP NNS
+takeover-related JJ
+sniggered VBD
+Angelo NNP
+var. NN
+ablaze JJ RB
+Ruthlessness NN
+yeast NN
+Eta NNP
+OCR NNP
+electro-optical JJ
+longneck JJ
+unclear JJ
+DuComb NNP
+upswing NN
+tenacity NN
+barges NNS VBZ
+Mounted NNP
+mid-1948 JJ
+wooden JJ
+Japanese-supplied JJ
+Pickfair NNP
+Cadwalader NNP
+forbad VBD
+heavier-than-normal JJ
+string-of-pearls JJ
+trousers NNS
+rid JJ VBN|JJ VBD VBN RB VB
+Courthouse NN
+fenced JJ VBN
+incidentals NNS
+cash-flush JJ
+thruways RB
+Lutte NNP
+askance RB
+ignorant JJ
+hampering VBG
+posting VBG NN
+anti-gay JJ
+Sterlings NNPS
+oil-depletion JJ
+Barclay NNP
+Shame NNP VB
+immunized VBN
+bigotry NN
+irrigating VBG
+Nagorski NNP
+Lura NNP
+tedious JJ
+N.A. NNP NN
+Bart NNP
+bio-medical JJ
+so-called JJ NNP NN
+fourteenth JJ
+ouster NN
+Rocking NNP
+Sun-3\ NNP
+offensives NNS
+Regulation NN NNP
+pastries NNS
+Swan NNP NN
+Skilton NNP
+no-walls-no-doors JJ
+generalizations NNS
+Origin NN
+tempted VBN VBD
+surtaxes NNS
+Chairman NNP NN
+Diametric JJ
+Commerce NNP NN
+Cygnus NNP
+liquids NNS
+Carisbrook NNP
+food-canning NN
+Stanislas NNP
+Carletonian NNP
+forestry NN
+meaning NN VBG
+Area NNP NN
+Fredrikshall NNP
+apparatchiks FW
+Popkin NNP
+Helena NNP
+bloodhounds NNS
+instructional JJ
+malicious JJ
+Scaring VBG
+Crombie NNP
+EMC NNP
+laughs VBZ NNS
+Hemphill NNP
+Nastro NNP
+sinners\/Who NN
+Tewksbury NNP
+pastry-lined JJ
+Rudolph NNP
+staunchest JJS
+ticking VBG
+land-idling JJ
+duplicated VBN
+franchisers NNS
+despise VBP VB
+budgeting NN VBG
+humanists NNS
+Oldenburg NNP
+white'suits NN
+planners NNS
+cameos NNS
+Yale-New NNP
+Advertiser NNP
+Forst NNP
+quicksilver JJ NN
+non-contract JJ
+Kozak NNP
+Acoustic NNP
+Doris NNP NNS
+Wholesome JJ
+sluicing VBG
+Minors NNS
+thematic JJ
+sat VBD VBN
+roadhouse NN
+buzzword NN
+faltered VBD VBN
+Rosenblatt NNP
+Aussedat NNP
+Discoveries NNS
+investment-promotion NN
+Gie NNP
+Bonaventure NNP
+Wholesale JJ NNP
+intends VBZ
+arm-elevation NN
+oversimplified VBN JJ
+hatched VBN VBD
+Clairson NNP
+Maecker NNP
+Dodger NNP NN
+risking VBG
+septation NN
+Infirmary NNP
+Today NN NNP RB
+Ind. NNP
+accolades NNS
+groundball NN
+policy-coordination NN
+Nast NNP
+Tortoriello NNP
+Lees NNP
+Dancers NNP NNS
+Lemuel NNP
+yassuhs UH
+constructs VBZ
+Dummkopf NN
+Spurred VBN
+Thirty-eighth NNP
+Piping NN
+market-inspired JJ
+Saucer NNP
+urban-development NN
+aerospace NN JJ
+inter-industry JJ
+Meyner NNP
+Gospel NNP
+real JJ NN RB
+glove NN
+Switchgear NNP
+Quantum NNP
+Lender NNP
+low-fat JJ
+withstood VBD VBN
+pencil-pusher NN
+resemblance NN
+calmed VBD VBN
+dissolutions NNS
+pulleys NNS
+mandating VBG
+serge NN
+hams NNS
+Eubank NNP
+Gelman NNP
+mate NN VBP VB UH
+third-rate JJ
+Hatching NNP
+expressionists NNS
+Environment NNP NN
+Drop VB NNP VBP NN
+well-kept JJ
+wage-price JJ
+withstand VB VBP
+Colavito NNP
+Mencken NNP
+sleepless JJ
+dispute-settlement JJ NN
+WEEI NNP
+exotic JJ
+Maltese NNP JJ
+Yavapai NNP
+Bfree NNP
+oat-bran NN
+howitzer NN
+countersuing VBG
+shrugged VBD
+Manor NNP
+stifling VBG JJ
+Seeming VBG
+Caulfield NNP
+sedative NN
+Appleseed NNP
+Move VB NN NNP VBP
+rescinding VBG
+good-size JJ
+gobbledygook NN
+travelin VBG
+MUBARAK'S NNP
+nebula NN
+hand-holding NN JJ
+exploding-wire JJ
+unrolls VBZ
+stickler NN
+high-gloss JJ
+Bateman NNP
+Tailback NNP
+Lopatnikoff NNP
+critic NN
+Connecting NNP
+de-Americanization NN
+ability... :
+market-sharing JJ
+piggyback NN VB
+Madre NNP
+beaver NN
+corn-based JJ
+smooth-speaking JJ
+Schwarzen FW
+stats NNS
+dust-up NN
+Discontinue VB
+fresher JJR
+part-timers NNS
+Moonan NNP
+shrewd JJ
+Rheinstahl NNP
+cleanly RB
+wherefores NNS
+airlifted VBN
+Somay NNP
+bikers NNS
+cake NN
+means VBZ NNS NN
+individualist NN
+analytical JJ
+articulate JJ VB
+tuck VBP VB
+six-day JJ
+sooo RB
+Industrias NNP
+shaft NN
+firsts NNS
+ruckus NN
+super-Herculean JJ
+inside IN JJ NN RB
+ex-aides NNS
+Istituto NNP
+Gaza NNP
+David-Weill NNP
+D&B NNP VBP NN
+Come VB VBN VBP NNP
+saddling VBG
+equityholders NNS
+closed VBD VBN|VBD VBN JJ NN VB VBN|JJ
+porpoise NN
+fleawort NN
+heartbeat NN
+monaural JJ
+die-hard JJ
+festivus FW
+Montero NNP
+Akerfeldt NNP
+Malenkov NNP
+postage-prepaid JJ
+incisive JJ
+Melodramatic JJ
+marketin NN
+fixing VBG NN
+pilote FW
+imitate VB VBP
+Cedars NNPS
+file-those NN
+LEHMAN NNP
+indication NN
+churchmen NNS
+non-intellectual JJ
+Ciardi NNP
+tans NNS
+francs NNS
+air-passenger NN
+varied VBN VBD JJ
+nonreactors NNS
+Pollen NNP
+yourselves PRP
+unsavory JJ
+well-armed JJ
+Commercants NNP
+discus NN
+dominant JJ
+boites NNS
+Greek NNP JJ
+Dali NNP
+Graphics NNP NNS NNPS
+Duy NNP
+glaciers NNS
+Kaminsky NNP
+shelving NN
+overused VBN JJ
+mask NN VBP VB
+Eurocops NNPS
+Holynskyj NNP
+quotas NNS
+MPD NNP
+McRae NNP
+Adaptec NNP
+rush-hour JJ
+non-pathogenic JJ
+second-place JJ
+postdoctoral JJ
+Amerman NNP
+Nor CC
+frozen-food NN
+Afrikaner JJ NNP
+non-vested JJ
+Halda NNP
+Looks VBZ
+Rodriquez NNP
+Immune NNP
+Notitia NNS
+flunked VBD VBN
+Dental NNP
+Inflation NN
+Transcaucasian JJ
+untried JJ
+ache NN VB VBP
+Seduction NN NNP
+misleads VBZ
+infected VBN VBD JJ VBN|JJ
+hatbox NN
+bombings NNS
+towed VBD VBN
+At IN NNP
+jolting VBG
+two-for-one JJ
+worshiped VBN
+Foxboro NNP
+Tenite NNP
+Electrochemical NNP
+vanilla NN
+Lisle NNP
+prospects NNS
+regrouping NN VBG
+bone-weary JJ
+GOOD JJ
+Stretch NNP JJ
+walkout NN
+Belier NNP
+gastro-intestinal JJ
+diocese NN
+contraceptives NNS
+viscera NNS
+prefuh VB
+Berrellez NNP
+overplayed VBD VBN
+super-empirical JJ
+'50s NNS CD
+drumbeating NN
+clerks NNS
+Benda NNP
+centigrade JJ
+AIDS-prevention JJ
+Ozal NNP
+worshipper NN
+afraid JJ
+negotatiators NNS
+Mutuelles NNP
+Johanson NNP
+Sonoma NNP
+take-it-or-leave JJ
+reflectance NN
+creditworthy NN
+stock-manipulation NN JJ
+Wink NNP
+Wesson NNP
+death-benefit JJ
+harmlessly RB
+Headlines NNS
+playpen NN
+Nagel NNP
+most-watched JJ
+helicopter NN
+chauffeur NN VB
+motorcyle NN
+Testifying VBG
+Bells NNPS NNP NNS
+grounded VBN VBD JJ
+seismic JJ
+complexity NN
+ribbing NN
+enclosure NN
+Bo NNP
+unadulterated JJ
+Kemchenjunga NNP
+lithium NN
+Grattan NNP
+Heublein NNP
+Petrini NNP
+Suisse-First NNP
+Geographic NNP JJ
+HP NNP
+Youngblood NNP
+Lieberthal NNP
+phenolic NN JJ
+Formica NNP
+MARK NNP
+Vent NN
+Toast NNP
+Gitter NNP
+harrowed VBN
+door-fronted VBN
+Alzheimer NNP
+irregularly RB
+surge NN VB
+Appear VBP
+mayoralty NN
+Eckart NNP
+most-indebted JJS
+coral JJ
+Arbs NNS
+Chan NNP
+Disk\/Trend NNP
+Interference NNP
+focussed VBN VBD
+buys VBZ NNS
+Traffic NNP NN
+business-partners NNS
+sacrifices NNS VBZ
+Cotman NNP
+marbleized VBN
+ComFed NNP
+fireproofing NN VBG
+Happily RB
+Hochiminh NNP
+refashioning VBG
+Kiwanis NNP
+Alessio NNP
+bloodshed NN
+consular JJ
+debt-servicing NN
+Racine NNP
+vuhranduh NN
+Stockman NNP
+dollies NNS
+Wearing VBG NNP
+mo NN
+backwoods-and-sand-hill JJ
+WFAA NNP
+Menas NNP
+softens VBZ
+Heavenly NNP JJ
+Minoso NNP
+defy VB VBP
+Tours NNPS
+harping VBG NN
+stressed VBD JJ VBN
+shish NN
+historical-claims NNS
+famille FW
+perverted VBN JJ VBD
+Leet NNP
+foment VB
+cleanliness NN
+best-gaited JJ
+Doxiadis NNP
+WIC NNP
+splenetic JJ
+reinstated VBD VBN
+Eskenazi NNP
+bull-market NN
+Honored VBN
+Sammartini NNP
+demand-related JJ
+unitholders NNS
+larger-than-anticipated JJ
+pedaled VBN
+libido NN
+Rauch NNP
+English-Scottish-French NNP
+growth... :
+Succasunna NNP
+loneliness NN
+ozone NN
+hummable JJ
+Manos NNP
+DEVELOPMENTS NNPS
+Shall MD NNP
+opto-electronic JJ
+struggling VBG JJ
+SS-18s NNS
+paralinguistic JJ
+MARCHED VBD
+death-trap NN
+Watanabe NNP
+benzene NN
+salacious JJ
+Waldbaum NNP
+pre-production JJ
+Coincidentally RB
+bicarbonate NN
+Mobilfunk NNP
+Recession NN
+Palo NNP
+rated VBN JJ VBD
+received VBD VBN JJ
+night-coach JJ
+Apocalyptic NNP JJ
+six-week-long JJ
+putted VBD
+REBUFF NN
+weep VB NN
+Zosen NNP
+bedroom NN
+Costner NNP
+Hoot NNP
+mishap NN
+Anton NNP
+radioed JJ VBD
+explanatory JJ
+prisons NNS
+JVC\/Victor NNP
+incisions NNS
+orgasm NN
+arty JJ
+Mexico NNP
+Explorer NNP
+meant VBD VBN
+Bradstreet NNP
+boiler-burner NN
+Seelig NNP
+Byrum NNP
+Giustiniani NNP
+De NNP FW
+Islandia NN
+Borglum NNP
+correspondence NN
+pavilions NNS
+chromium NN
+curtseyed VBD
+neglects VBZ
+counter-trade JJ
+adorn VB VBP
+Discouraged VBN
+rental JJ NN
+Lindbergh NN
+filmy JJ
+contradicted VBD VBN
+bois FW
+Europe-based JJ
+SALARIES NNS
+creators NNS
+astral JJ
+Adapted VBN
+Turns VBZ
+transfusions NNS
+serenely RB
+John NNP NNPS
+Buried VBN
+Shakarchi NNP
+Refinery NN NNP
+mystical JJ
+inks NNS
+bogies NNS
+ECU-denominated JJ
+swoop NN
+non-Catholic NNP JJ
+Infinite JJ NN
+washer NN
+Managers NNS NNP NNPS
+sunshine NN
+Titian NNP
+once-strong JJ
+one-way JJ
+glutamic JJ
+anemia NN
+twisting VBG NN
+Covitz NNP
+mail-processing JJ
+wallow VB
+playfully RB
+Unveiling VBG
+Goyette NNP
+wreathed VBN
+Norge NNP
+Lysle NNP
+Beresford NNP
+retinoblastoma NN FW
+BUYING NN
+yellow-dwarf JJ NN
+Hollander NNP
+D.,Texas NNS
+Krick NNP
+Trinitarians NNP
+disentangling VBG
+sandalwood NN
+exhibitions NNS
+cinq FW
+progressions NNS
+Stern-faced JJ
+Marlboros NNPS
+million-ton JJ
+careerism NN
+capital-spending JJ NN
+Floss NNP
+polyurethane NN
+hangman NN
+hateful JJ
+tensional JJ
+bad-debt JJ
+guinea NN
+Zupan NNP
+own JJ VBN VBP VB
+crack NN JJ VB VBP
+grownups NNS
+wilted JJ VBN
+interstellar JJ
+Hungerfords NNP
+olive-flushed JJ
+HALT NNP
+Gioconda NNP
+fixed VBN JJ VBD VBD|VBN
+beans NNS
+Americana NNS NNP NN
+LS400 NNP NN
+Medea NNP
+memorandums NNS
+parental-consent JJ
+whipsawed VBN
+Twentieth-Century NNP
+inconsistencies NNS
+Indian NNP JJ
+wood-paneled JJ
+Technological NNP
+Duplicate NN
+boarded VBD VBN JJ
+researchable JJ
+culpa FW
+mishandled VBD JJ VBN
+Bulls NNS NNPS
+eagle NN
+manna NN
+cherish VB VBP
+wacky JJ
+Sakellariadises NNS
+professional-level JJ
+Cornerback NN
+Pulaski NNP
+alley NN
+overheated VBN
+needle NN VB
+showings NNS
+Shocked VBN JJ
+Limerick NNP
+Minuses NNS
+knife-edge NN
+Manny NNP NN
+Paracchini NNP
+Battle-tested JJ
+Financing NNP VBG NN
+pre-register VB
+Trent NNP
+immodest JJ
+Journalism NN NNP
+all-options JJ
+thoughts NNS
+Giovanni NNP
+anthems NNS
+coast-to-coast JJ
+Kaskaskia NNP
+shoe-string NN
+without,`` ``
+innovation NN
+Stanislav NNP
+E.M. NNP
+fitness-promoting JJ
+limp-looking JJ
+extremists NNS
+combat-inflicted JJ
+parent-company JJ NN
+Indosuez NNP
+intercede VB
+sensory JJ
+Minoru NNP
+true JJ
+sympathetic JJ
+layers NNS
+yearningly RB
+apron NN
+orchestrate VB
+Lately RB NNP
+thatches NNS
+Joyce NNP
+playmates NNS
+mergers-and-acquisitions NNS JJ
+kerchiefs NNS
+jiggling VBG
+rejuvenation NN
+seashores NNS
+snowflakes NNS
+Cheetham NNP
+Jocelyn NNP
+surreys NNS
+preemptive JJ
+piglet NN
+ingenuity NN
+Strangler NNP
+timbers NNS
+Octave NNP
+Nostalgia NN
+eco-evangelists NNS
+additive NN
+Reciprocal NNP
+half-hearted JJ
+raving VBG JJ
+Jerry NNP
+Barakat NNP
+uncharged JJ
+MIPs NNP NNS
+FORMER JJ
+richest JJS
+penning VBG
+Charley NNP
+Distributive NNP
+CORTES NNP
+drunker JJR
+reminder NN
+momentwhen NN|WRB
+reassignment NN
+tinkered VBN
+detergent NN
+victim NN
+caseworkers NNS
+bushwhacked VBD
+Babylonian JJ NNP
+inkblots NNS
+Stock NNP NN
+heightened VBN VBD JJ
+broader JJR
+devious JJ
+depart VB VBP
+lanced VBN
+Inouye NNP
+Confucianism NNP
+carport NN
+fontanel NN
+frostbite NN
+Au FW NNP
+Reveals VBZ
+befallen VBN
+three-bedroom JJ
+evidential JJ
+erotica NNS
+grape-arbor NN
+Parenthesis NN
+reclassification NN
+no'junk JJ
+ceded VBD VBN
+diatoms NNS
+Jarrodsville NNP
+balanced-budget JJ NN
+accepting VBG JJ
+flora NNS NN
+Cooperman NNP
+theater-exhibition NN
+fewest JJS
+Chao NNP
+Sen. NNP
+Flory NNP
+pro-Western JJ NNP
+man-hours NNS NN
+molars NNS
+more-muscular JJ
+land-disposal NN
+prominent JJ
+currencny NN
+Square NNP JJ NN VB
+Gear NNP NN
+penalty-lending JJ
+Raccoon NNP
+M&Ms NNS
+noticeable JJ
+incarnation NN
+Estonia NNP
+concurring VBG
+Elmsford NNP
+India-Pakistan NNP
+Daughter NN
+Katonah NNP
+individuate VB
+pay-movie JJ
+well-positioned JJ
+Halas NNP
+squaw NN
+Michelob NNP
+eyebrows NNS
+bustle NN
+jackdaws NNS
+vacationland NN
+Sokol NNP
+chuck-a-luck NN
+non-Tories NNS
+Dilip NNP
+yearbooks NNS
+Mohan NNP
+durn JJ
+examination NN
+Unificationists NNS
+revert VB VBP
+infant-mortality JJ NN
+split-up NN
+Coupon NN NNP
+brides NNS
+feverishly RB
+prosperity NN
+blinds NNS VBZ
+King NNP NN
+Magnusson NNP
+watercolor NN
+termination NN
+Mid-Century NNP
+militarism NN
+discerns VBZ
+cafes NNS
+Senshukai NNP
+training-wage JJ
+first-half JJ NN
+fourth-hand JJ
+glassless JJ
+statu FW
+Hord NNP
+now-legal JJ
+CommerceBancorp NNP
+dimly-outlined JJ
+Lowery NNP
+Katutura NNP
+Dame NNP
+Willis NNP
+Bench NNP
+clean JJ VBP RB VB
+Catastrophic NNP
+snort VB NN
+sibilant JJ NN
+Rostagno NNP
+callin VBG
+G.E. NNP
+Roald NNP
+extraterritorial JJ
+Irish-made JJ
+mortgage-industry NN
+Chargeurs NNP
+stools NNS
+corset NN
+quoting VBG
+unpatronizing VBG
+WEEK NN
+Voegtli NNP
+cash-and-stock JJ
+Ishiguro NNP
+illegal JJ
+underlings NNS
+ELECTRIC NNP
+bare-armed JJ
+miter VB
+vacuum-packed JJ
+antagonistic JJ
+washes NNS VBZ
+disorder NN VB
+mid-1960 CD
+juggling VBG NN
+Margulies NNP
+Demographics NNS
+big-fee JJ
+Bessemer NNP
+Your PRP$ NNP
+CULPA NNP
+propulsions NNS
+levee NN
+immorality NN
+cavity NN
+chaise NN
+stripe NN
+instructing VBG
+mistletoe NN
+catalog NN
+property-management NN
+clarify VB VBP
+Stanislaw NNP
+radiator NN
+Grannies NNPS
+Oakwood NNP
+breathing NN VBG
+cytokine NN|JJ
+helplessly RB
+Horsely NNP
+beat-up JJ
+generalship NN
+commit VB JJ VBP
+fee-per-day NN
+protein-1 NN
+smash NN VB VBP
+Servive NNP
+vitamin-and-iron JJ
+inhibition NN
+Aliber NNP
+Caldor NNP
+Bardell NNP
+Fin-syn JJ
+stopped VBD VBN
+ivory-inlay NN
+V-shaped JJ
+Builder NNP NN
+cudgels NNS
+cabana NN
+plantain NN
+disaffiliate VBP
+luxury-suite NN
+inflations NNS
+three-inch-wide JJ
+tongue-lashing NN
+Air-freight NN
+pool-owners NNS
+tabula NN
+unionized JJ VBD VBN
+ceding VBG
+Wattenberg NNP
+DELAYS VBZ
+myrrh NN
+co-sponsors NNS
+Telepictures NNPS NNP
+Andover NNP
+cloak NN VBP
+Spanish-language JJ NN NNP
+feels VBZ NNS
+Cadillac NNP NN
+infamous JJ
+Lupo NNP
+zero CD NN VB VBP
+itinerary NN
+solvable JJ
+Shores NNP
+Alarm NNP NN
+floor NN
+Kisha FW
+winsome JJ
+Prof. NNP
+Louis-based JJ
+Losses NNS NNP
+wrecking VBG
+Belgrade NNP
+Wildbad NNP
+Pachelbel NNP
+partnership NN
+Boeings NNPS
+exacerbation NN
+Haw UH
+Dire JJ
+Tiao NNP
+HIV-infected JJ VBN
+gun-carrying JJ
+intellectual-literary JJ
+patent-sharing JJ
+keel NN VB
+compacts NNS
+DOW NNP
+Neo-Classicists NNPS
+boilerplate NN
+trillion-plus NN
+Jachmann NNP
+pectoralis NN
+blazed VBD
+pre-try VB
+Logging NN
+computer-store NN
+buzzer NN
+disease-fighting JJ
+Arco NNP
+eighty-nine NN
+Cooling NN NNP
+loadin VBG
+continued VBD JJ VBN
+tree-farming JJ
+sincerest JJS
+lubricants NNS
+fission NN
+McMillen NNP
+day-care NN JJ
+PAC NNP NN
+antiquarians NNS
+scrubbers NNS
+babbino FW
+ex-officers NNS
+transistors NNS
+slow-moving JJ
+Durgin NNP
+membership NN
+signal-processing JJ NN
+IBM-oriented JJ
+baroque JJ NN
+misread VBD
+Detailed VBN
+employ VB NN VBP
+backroom NN
+out-of-repair NN
+employment NN
+excised VBD VBN
+dammed-up VBN
+overhearing VBG
+Holocaust NNP NN
+Wiesel NNP
+Postwar RB
+price-moving JJ
+Sandusky NNP
+debt-reduction NN JJ
+untimely JJ
+Per IN
+Tamar NNP
+adapter NN
+Ackroyd NNP
+repetition NN
+r.p.m. NN
+indigation NN
+ostrich JJ NN
+of IN RB RP NNP
+Haste NN
+damage NN VBP VB
+glared VBD
+serenaded VBN VBD
+violets NNS
+outscoring VBG
+Ransomes NNP
+Garth NNP
+Boersen-Zeitung NNP
+tubs NNS
+Klinger NNP
+resentment NN
+emigre NN
+crimp VB NN
+market-watchers NNS
+Supposing VBG
+speculations NNS
+smelly JJ
+Racing NNP VBG
+gorup NN
+mid-air NN
+broods NNS
+Kassar NNP
+Michelangelos NNPS
+ruffians NNS
+impute VBP
+KB NNP
+Schwarzer NNP
+helsq'iyokom FW
+rural JJ
+DOCTORS NNS
+formal JJ
+specter NN
+EGA-VGA JJ
+Lothario NN
+transfering VBG
+levelled VBN
+reorganizes VBZ
+Improve VB
+fennel NN
+mutated VBN
+protector NN
+Formally RB
+attendants NNS
+Not RB NNP DT
+Dilantin NNP
+Contraction NN
+Craft NN NNP
+Ditto NN
+parade NN VBP
+punky JJ
+out-migration NN
+'Happy NNP
+bereavement NN
+Freddie NNP
+social-class JJ
+Zemlinsky NNP
+McCall NNP
+sanhedrin NN
+telegraphic JJ
+Rewards NNS
+Marketplace NNP
+ASSOCIATION NNP NN
+front-loaded JJ
+puckish JJ
+panicky JJ
+Godfather NNP
+inconclusively RB
+synagogues NNS
+mars VBZ
+four-crate JJ
+Bunch NN
+individuality NN
+tolerating VBG JJ
+icing NN
+noli NNS
+increment NN
+pa NN
+spit VB NN VBD
+Susumu NNP
+censor VBP VB
+Vevay NNP
+Growing VBG
+takeover-stock JJ NN
+semi-city JJ
+gets VBZ
+deduction NN
+contract-steering JJ
+lustrous JJ
+Leninism-Marxism NNP
+Bleak NNP
+timeless JJ
+Pedro NNP
+UTA NNP
+F\ NN
+shocker NN
+fourth-flight JJ
+fragmentations NNS
+raptor NN
+shines VBZ
+rate-IRA NN
+chatte FW
+freeze-out JJ NN
+investment-tax JJ
+analog NN JJ
+dairyland NN
+GAO NNP
+Nonconformist NNP
+eye-strain NN
+qualitative JJ
+gelding NN
+idolized JJ
+forage NN JJ
+Alasdair NNP
+express VB VBP JJ NN
+Crandall NNP
+GNP-based JJ
+Nostalgic JJ
+Secretary-designate NNP
+Defenders NNS
+Freshmen NNS
+Cranes NNPS NNS
+KICKING VBG
+Donizetti NNP
+hon NN
+Bring VB
+composition NN
+Goodfellow NNP
+mortgages NNS VBZ
+pre-conscious JJ
+Repeated VBN JJ
+onlooker NN
+diversion NN
+certin NN
+loud JJ RB
+ammonia NN
+juror NN
+Sponsors NNS
+Gentleman NN NNP
+Socialization NN
+rig NN VBP VB
+Nomenklatura NN
+Metter NNP
+measurably RB
+wayward-looking JJ
+discourteous JJ
+Sculley NNP
+Kahn NNP
+Potemkin NNP
+sprang VBD
+plug NN VBP VB
+Criticism NN NNP
+Nostradamus NNP
+Angels NNPS NNP NNS
+minber NN
+Geren NNP
+fact-finder NN
+Chronicle NNP
+Gennaro NNP
+socially-oriented JJ
+anemic JJ
+long-delayed JJ
+Isselbacher NNP
+Ladehoff NNP
+I.A.P/NNP.A. NN
+fastball NN
+OUTRAGE NN
+clients NNS
+oracle NN
+Tarzan NNP
+mites NNS
+elementary JJ
+repurchased VBN VBD
+Karlis NNP
+arbitrators NNS
+appropriated VBN VBD
+Av NNP
+enormity NN
+Donnelley NNP
+carbon-impregnated JJ
+buckboard NN
+case... :
+Shaw-Crier NNP
+deforestation NN
+WGP NNP
+Carters NNPS
+math NN
+lowprofile JJ
+groceries NNS
+Privileged NNP JJ
+Projecting VBG
+Simmons NNP NNS
+breakdowns NNS
+painteresque JJ
+Analysis NNP NN
+flamboyant JJ
+psi NNS
+toiling VBG NN
+sharpener NN
+Koshland NNP
+fuels NNS VBZ
+devotions NNS
+circuitry NN
+reappraisals NNS
+unnecessary JJ
+centrex NN
+gourmets NNS
+headstones NNS
+Emmy NN NNP
+Checks NNS
+sub-underwriting VBG
+hosts NNS VBZ
+non-EC JJ
+quake-inflicted JJ
+quilted JJ
+Sellers NNP NNS
+bold JJ
+Farms NNP NNPS
+obsoleting VBG
+unflagging JJ
+originators NNS
+Green NNP JJ NN
+Bantus NNPS
+dry-gulchin NN
+necessitated VBN VBD
+canned-foods NNS JJ
+personage NN
+crude-oil NN JJ
+warlords NNS
+primacy NN
+muskets NNS
+Moral NNP JJ
+Jerome NNP
+pollinate VB VBP
+Sung NNP
+workhorse NN
+Haiti NNP
+monetary-stroke-military JJ
+DRG NNP
+Af. NNP NN
+motioned VBD
+potatoes NNS
+forestall VB
+entrapment NN
+engine-assembly NN
+Tomoshige NNP
+terror-filled JJ
+rat-holes NNS
+averred VBD
+saw VBD NN
+racehorse NN
+Hunsucker NNP
+stop-work JJ
+TVS NNP
+Helene NNP
+drags VBZ
+Creston NNP
+a\/k\/a NN
+usurping VBG
+twin-rotor JJ
+obliteration NN
+rough-sanded JJ
+multistate NN
+events NNS
+churchgoing JJ NN
+Wain NNP
+biter NN
+ex-wife NN
+setting VBG NN
+Woong NNP
+Vasilievitch NNP
+lied VBD
+poses VBZ
+propositions NNS
+chromium-substituted JJ
+Villalobos NNP
+casualty-loss JJ
+Conlin NNP
+Amounts NNS
+Tose NNP
+buzzes NNS VBZ
+demonstrable JJ
+reprehensible JJ
+USG NNP
+manifold NN JJ
+ruthless JJ
+leftists NNS
+biplanes NNS
+ecologically RB
+uncorked VBD VBN
+Southerner NNP JJ NN
+wrists NNS
+peasanthood NN
+Rhenish JJ
+escutcheon NN
+freshborn NN
+blueberries NNS
+d'art FW
+henpecked JJ
+highbrows NNS
+lurked VBD
+compounded VBN JJ VBD
+sacker NN
+import-incentive JJ
+coincide VB VBP
+Computerworld NNP
+publicized VBN JJ
+Charlie NNP
+Trempler NNP
+Buckingham NNP
+bank-embezzlement JJ
+Cartoonist NN
+despoiling VBG
+Railcar NNP
+head-hunting NN
+Kirsch NNP
+Forum NNP
+Al-Seyassah NNP
+savages NNS
+Hidden VBN JJ
+Borak NNP
+Operating NN NNP VBG
+Javert NNP
+cinematic JJ
+assist VB NN VBP
+Tymnet NNP
+Nicandra NNP
+enroll VB VBP
+Raimu NNP
+mid-1958 NN
+Vermont-based JJ
+Soconoco NNP
+Creditbank NNP
+Carbide NNP NN
+finalizing VBG
+Flotilla NNP
+promotions NNS
+masquerading VBG
+anti-acne NN
+fugitives NNS
+Tillery NNP
+O. NNP
+Kuala NNP
+infallible JJ NN
+dishonor NN VB
+Diego-area JJ
+pre-existing JJ
+perversions NNS
+sea NN VB VBP
+drummers NNS
+steel-casting JJ
+pneumocystis NN
+SOFTWARE NNP
+interpenetrate VBP
+C.C.B. NNP
+Bronston NNP
+stickman NN
+contact-lens NN
+barkeep NN
+anise NN
+persuade VB VBP
+temperamental JJ
+pro FW IN JJ NN
+anti-tax JJ
+Logsdon NNP
+Amityville NNP
+Kheel NNP
+They PRP NNP
+Wallace NNP
+Sojuzpushnina NNP
+Avowed JJ
+re-acquire VB
+Dienbienphu NNP
+material-formal JJ
+Proust NNP
+biches NNS
+Artists NNPS NNP NNS
+Lure VBP
+triple-A JJ NNP NN
+October-March NNP
+speeches NNS
+Ignorance NN
+one-color JJ
+Respiratory NNP JJ
+cyclical JJ
+charter-boat NN
+Winn NNP
+month NN
+Dana NNP
+oblige VB NN
+stock-ownership JJ
+frills NNS
+shingles NNS
+no-bunkum JJ
+JH NNP
+Socialist-led JJ
+crabs NNS
+each DT
+Economique NNP
+Bleaching VBG
+rent-subsidy JJ
+Britches NNS
+hand-covered JJ
+Revolutionibus FW
+NKF NNP
+marshalling NN
+bar NN VB VBP
+Call-In NN
+under-achievement NN
+journeying VBG
+privy JJ NN
+Iard NNP
+Chevrolet-Pontiac-GM NNP
+CVN NNP
+gloomy JJ
+administrator-general NN
+Murrow NNP
+Tennyson NNP
+mart NNP NN
+disk-drive NN JJ
+nightmares NNS
+mechanization NN
+clotheshorse NN
+responsiblilty NN
+governmental JJ
+light-activated JJ
+pollings NNS
+interrogate VB
+naivete NN
+experimentalism NN
+Wanna VB NNP VBP
+basic-cable JJ
+Exploracion NNP
+glutamate NN
+Mott NNP
+advantages NNS
+Drivers NNS
+Barkin NNP
+claws NNS
+implying VBG
+Groff NNP
+sanitize VBP
+Scrooge-like JJ
+Appropriately RB
+vehement JJ
+computers NNS
+DePugh NNP
+collateralized JJ VBN
+Radnor NNP
+Infiniti NNP
+overregulation NN
+floodlight NN
+diagnose VB VBP
+mourns VBZ
+Ab63711-r CD
+quarters NNS
+Jotaro NNP
+KC NNP
+VOA NNP
+Raleigh NNP
+duplicable JJ
+Dhuu NNP
+electroshock NN
+Kurile NNP
+faintest JJS
+remarrying NN
+Mesnil NNP
+structured VBN JJ VBD
+Bearishness NN
+supply-demand JJ NN
+male-headed JJ
+mewed VBD
+rumblings NNS
+Paquin NNP
+imitation-caning JJ
+Naderite NNP|JJ
+Hadson NNP
+otter NN
+Dohnanyi NNP
+tempers NNS
+telepathic JJ
+Paris-based JJ
+GAP NNP
+Terra NNP
+grade-school JJ
+reap VB VBP
+A-12 NNP
+saint NN
+centric JJ
+Heymann NNP
+Chiefly RB
+mooncursers NNS
+protrude VB
+hassles NNS
+spurning VBG
+Marquis NNP
+mellowed VBN
+Radical NNP
+stock-holding JJ
+blocking VBG JJ NN
+self-regulatory JJ
+beaker NN
+EFPs NNS
+retrenchment NN
+miscalculated VBD VBN
+McNaughton NNP
+Blanche NNP
+Caere NNP
+formalizes VBZ
+Pa.-based JJ
+clotheslines NNS
+Asia\/Pacific JJ
+fellow-craftsmen NNS
+demobilizing VBG
+eclipsed VBD VBN
+musicality NN
+mid-1963 CD
+sociality NN
+Anheuser-Busch NNP
+convalescence NN
+Hellene NNP
+banks NNS VBZ
+Dunne NNP
+caper NN
+Premner NNP
+Starzl NNP
+maintaining VBG
+lasses NNS
+vine NN
+Vue NNP
+livery NN
+five-mile JJ
+SKr1.5 NNS
+Wickliffe NNP
+archness NN
+previous-year JJ
+infusions NNS
+despite IN
+diclosed VBN
+fuel-distribution NN
+long-established JJ
+STOCK-INDEX NN
+locutions NNS
+volunteering VBG NN
+debt-ceiling JJ NN
+fraternized VBD
+euphemisms NNS
+Helpline NNP
+Motoren-und NNP
+foamed-in-place JJ
+underwritten VBN JJ NN
+boisterous JJ
+DPS NNP
+Rolfe NNP
+post-Revolutionary JJ
+bites NNS VBZ
+misapplying VBG
+picnicked VBD
+Jefferies NNP NNS
+drug-treatment NN JJ
+d-c NN
+Bexar NNP
+Medco NNP
+stead NN
+mid-19th JJ
+discourage VB VBP
+page-one JJ NN
+upper-deck JJ
+richness NN
+Wrecks VBZ
+Enquirer NNP
+sackes NNS
+Lombarde NNP
+Alar-style JJ
+Jamaican JJ NN NNP
+Euthanasia NN
+swum VBN
+Painful JJ
+starved VBN
+Bass NNP NN
+triple-B JJ
+Factions NNS
+Zodiacal JJ
+molded VBN JJ VBD
+computer-network NN
+prank NN
+Aw UH RB
+going-home JJ
+Coordinating NNP
+J.R. NNP
+bifurcated JJ
+assault-weapons JJ
+crouching VBG
+passenger-reservation NN
+undetected JJ
+haystack NN
+Vera NNP
+program-maker NN
+Feringa NNP
+abject JJ
+balletomane NN
+shags VBZ
+vestiges NNS
+CROWDED JJ
+Pita NNP
+sax NN
+Langer NNP
+analeptic JJ
+Ferrer NNP
+Bensten NNP
+Plan NNP NN
+mistaking VBG NN
+BOEING NNP
+Terg-O-Tometer NNP
+EL-10 NNP
+cost-saving JJ
+squished VBN
+Monets NNPS
+kiloton NN
+fingerprints NNS
+keen JJ NN VB
+bricks NNS
+Yeh NNP
+Vital JJ NN
+Roasters NNS
+epicyclically RB
+well-financed JJ
+superconcentrated JJ
+Hydro-Quebec NNP
+short-sale JJ
+takin VBG
+heavily RB
+Ormsby NNP
+Haut-Brion NNP
+prophetic JJ
+conservationist NN
+specially-designed JJ
+FARMER'S NN
+ardently RB
+estimate NN VB VBP
+Rifkinesque JJ
+joust NN
+cabinet-level JJ
+polystyrene NN
+height NN
+bargelike JJ
+Electron NNP NN
+tradition NN
+sober JJ
+scalpels NNS
+half-point JJ
+Accounts-a NNP NNPS
+extended-wear JJ
+cents-off JJ
+Darby NNP
+internally RB
+automotive-lighting JJ NN
+girlishly RB
+de-worse-ification NN
+oiler NN
+Expressway NNP NN
+muddied VBN JJ
+stints NNS VBZ
+MINORITY NN
+faux FW JJ
+up-to-date JJ
+visas NNS
+Polycast NNP
+visualizations NNS
+hyped VBD NN
+Boveri NNP
+walloped VBD
+inheres VBZ
+thanking VBG
+Parke NNP
+infuriate VB
+anti-white JJ
+motor-home NN
+dusk NN
+futures-exchange NN
+Shane NNP
+Esselte NNP
+indigents NNS
+Turchin NNP
+wardrobe NN
+harry VB
+fantastic JJ
+monolithically RB
+Anglo-French JJ NNP
+Convinced VBN
+mixtures NNS
+wither VB VBP
+you'uns NNS
+Colo NNP
+Kaisha NNP
+danged VBN
+holds VBZ NNS
+dilute VB JJ
+you PRP VBP RP
+--they PRP
+vitality NN
+Hay NNP NN
+Rescued VBN
+regard NN VB VBP
+tabby JJ NN
+discussions NNS
+spot-news NNS
+eleventh JJ
+Euromark NN
+Uyl NNP
+SAINT NNP
+proceeded VBD VBN
+payloads NNS
+Bertha NNP
+contrite JJ
+SalFininistas NNP
+benefits-consulting JJ
+concedes VBZ
+blood-bought JJ
+Schmotter NNP
+informed VBN VBD JJ
+Talmadge NNP
+IN IN RB RP
+lifelike JJ
+Whether IN NNP
+zone NN
+highpoint NN
+visitors NNS
+Reggie NNP NN
+satin NN
+fuel-cost JJ
+Collinsville NNP
+Antonovich NNP
+non-diva-like JJ
+covets VBZ
+self-screening JJ
+'I'd VB
+non-utility JJ
+Echeandia NNP
+L.J. NNP
+Owner NN NNP
+tagline NN
+BANKS NNS NNPS
+Seco NNP
+Twentieth NNP
+SbCs-type JJ
+renovations NNS
+longue NN
+granary NN
+doused VBD VBN
+betel-stained JJ
+Pet NNP
+Tambo NNP
+occur VB VBP
+lidless JJ
+Appealing VBG
+pari-mutuel JJ
+midmonth RB
+Beware VB
+mis-reading VBG
+midpriced JJ
+jeopardize VB VBP
+build-ups NNS
+Gradually RB
+basting NN
+prune NN VB
+flamed VBD VBN
+System NNP NN
+Rumpelstiltskin NNP
+Gumi NNP
+maneuvering NN VBG JJ
+Denshi NNP
+authorize VB
+Surgery NNP
+Century-Fox NNP
+store-front JJ
+minimal JJ
+coasters NNS
+seated VBN VBD JJ
+recentralizing VBG
+relinquished VBD VBN
+playroom NN
+Floodlights NNP
+strangeness NN
+notoriety NN
+Ruidoso NNP
+uninformative JJ
+Lopid NNP
+mucker NN
+MPH NNP
+triple-C JJ NNP NN
+Germantown NNP NN
+Portuguese JJ NNP
+aft JJ NN RB
+salvation NN
+double-A\/single-A-plus JJ
+essayed VBD VBN
+abstractive JJ
+Nov NNP
+bytes NNS
+Taurog NNP
+B.A. NNP
+evaluated VBN VBD
+activate VBP VB
+Journalist NNP
+sparse JJ
+assistant NN JJ
+tyrosine NN
+Weizsaecker NNP
+dock NN VB
+fierce JJ
+Nazis NNPS NNP NNS
+fellow NN JJ
+Riverwalk NNP
+coup-proof JJ
+septa NNS
+Treadway NNP
+Moran NNP
+Molding NN NNP
+percentage-point JJ
+no-brainer NN
+congested JJ VBN
+tax-department JJ
+TWO CD
+advisor NN
+soon-to-expire JJ
+Tetrameron NNP
+sing-song NN
+Egad UH
+Americanized VBD
+stupidest JJS
+Cimflex NNP
+capes NNS
+starch NN
+back-dating VBG
+Basking NNP
+short-skirted JJ
+Lopez NNP
+prouder RBR
+dissecting VBG
+missed VBD VBN JJ
+Wachovia NNP
+Seger-Elvekrog NNP
+Applied NNP VBN
+desert-battle JJ
+Post-Serialism NNP
+Territorial NNP JJ
+associate-label JJ
+Seed NN
+leaguer NN
+Foe NNP
+oh UH
+Jens NNP
+stupidities NNS
+state-level JJ
+countrymen NNS
+legal-services NNS JJ
+glorification NN
+trade-deficit NN
+acid NN JJ
+Foiled VBN
+execution NN
+rumored VBN VBD JJ
+attractant NN
+Maritime NNP
+justify VB VBP
+decimating VBG
+excellences NNS
+vaccine-vendor JJ
+Kuiper NNP
+Guerbet NNP
+Penang NNP
+errand NN
+antithesis NN
+ordering VBG NN
+recessions NNS
+hop NN VB
+TAINTS VBZ
+ticked VBD VBN JJ
+business-promotion NN
+nastiest JJS
+dropouts NNS
+bullying VBG
+haint VBZ
+disastrous JJ
+Return NN NNP VB
+begins VBZ
+risked VBD VBN
+crude-steel NN
+unachievable JJ
+Lutsenko NNP
+abberations NNS
+Alsthom NNP
+vacuous JJ
+Fulham NNP
+Kennedy NNP
+arbitrage-related JJ
+Cr--spe NNP
+essayist NN
+diethylstilbestrol NN
+psychopharmacological JJ
+lawmaking JJ NN
+blue-eyes NNS
+lebensraum NN
+Biagi NNP
+succeed VB VBP
+gilts NNS
+soot NN
+Friedreich NNP
+beef-feeding JJ
+sword NN
+Prabang NNP
+pickier JJR
+rightness NN
+thereunder RB
+Bast NNP
+genital JJ
+looting NN VBG
+marijuana NN
+Christsake NN
+OEL NNP
+hydroxyl-rich JJ
+derring-do NN
+maniac NN
+neoplasia FW
+fifth-generation JJ
+innate JJ
+disturb VB VBP
+relinquish VB VBP
+commencements NNS
+DPT NNP
+blush NN VB
+argon NN
+summers NNS
+pressure NN VB VBP
+railway-based JJ
+stereotypical JJ
+kibbutzniks NNS
+sailboats NNS
+Short-term JJ NNP
+insecurities NNS
+Gustafson NNP
+Timidly RB
+advice NN
+Mennonite JJ NNP
+Garrett NNP
+Hurrah UH NNP
+care-adviser NN
+ponytails NNS
+RULE VBP
+sculptured VBN JJ
+it'so UH
+Taxpayer NN NNP
+Beast NNP
+most-valuable JJ
+harped VBD
+Hegelian NNP
+electric-driven JJ
+skeptics NNS
+splotch NN
+chum NN
+impedes VBZ
+nicotine NN
+I.C.H NNP
+militarist NN
+unify VB
+Chinese JJ NNPS NNP NNS NN
+Belmont NNP
+Lupatkin NNP
+paralegals NNS
+locatin NN
+ASSOCIATION-COLLEGE NNP
+lower-cut JJ
+prize NN JJ VBP
+Dolmabahce NNP
+notably RB
+Looking VBG NNP
+changed... :
+sniping NN VBG
+Travelers NNP NNS NNPS
+Manute NNP
+Lopukhov NNP
+governed VBN JJ VBD
+DRI NNP
+Barsuki NNP
+Incentives NNS
+outlining VBG
+Same-store JJ
+say VBP FW NN NNP VB UH
+foldable JJ
+upholding VBG
+juxtaposes VBZ
+Sister NN NNP
+ultramodern JJ
+withes NNS
+Bruce NNP
+trimming VBG NN
+takeaways NNS
+dream-ridden JJ
+syntactic JJ
+Skywalker NNP
+Hebraic JJ
+Ax NNP
+Wake VB NNP
+Sumo NN
+Dreiser NNP
+anti-ulcer JJ
+informational JJ
+bombardments NNS
+self-restraint NN
+ago RB IN
+ping-pong NN
+electro-magnetic JJ
+Kunste NNP
+Palumbo NNP
+pushing VBG JJ NN
+larkspur NN
+reviewers NNS
+east-west JJ
+USI NNP
+steel-service-center NN
+Graduate NNP JJ NN
+deferred-maintenance JJ
+Circumstances NNS
+na/TO NNP
+cholorfluorocarbons NNS
+stormier JJR
+Exitosa NNP
+Devery NNP
+shanties NNS
+quoted VBN VBN|JJ VBD
+vocabulary NN
+Liter NN
+sullying VBG
+crucible NN
+liability NN
+rigatoni NN
+Speculation NN
+Characteristically RB
+paternalism NN JJ
+preparers NNS
+rate-tightening JJ
+Castro NNP NN
+shipwrecked JJ
+M-19 NN
+wadded VBD
+Imasdounian NNP
+anchovy NN
+fusses VBZ
+sized VBD JJ VBN
+Societies NNS
+draughts NN NNS
+alia FW
+clear JJ RB|JJ RB VB VBP
+Cataracts NNS
+Oncor NNP
+Fixed-income JJ NN
+colonel NN
+aid NN VB VBP
+distinguished VBN JJ VBD
+Trivia NNP
+fiddling NN JJ VBG
+Europeans NNPS NNP NNS
+Sept.30 CD
+Extreme JJ NNP
+regaled VBD VBN
+Claude-Eric NNP
+Kaiser NNP
+DOLLARS NNPS
+Buchwald NNP
+Jenrette NNP
+center-vented JJ
+GBL NNP
+rotogravures NNS
+AGREED VBD
+Worriers NNS
+Dorrance NNP
+Renoirs NNPS
+buckles NNS
+borders NNS VBZ
+plebeian JJ
+rededicating VBG
+oceanthermal JJ
+codewords NNS
+Craig NNP JJ
+spacecraft NN
+Proving NNP
+glandular JJ
+combat-ready JJ
+developmental JJ
+haulage JJ NN
+underwater JJ NN RB
+toiled VBD VBN
+fawn NN
+heritages NNS
+introducing VBG
+esophagus NN
+low-crime JJ
+Bruser NNP
+grain-storage NN
+Kubek NNP
+flattened VBN VBD JJ
+inflexible JJ
+Suspicion NN
+leagues NNS
+notice NN VB VBP
+cohesive JJ
+Rieke NNP
+circumstance NN
+downplayed VBD
+cherubim NN
+unadorned JJ
+quacked VBD
+antiques NNS
+Cattleguard NNP
+Ikle NNP
+snake-rail JJ
+directorial JJ
+already RB
+reinvented VBD VBN
+helmet NN
+U.N.F.P./NNP. JJ
+Troop NNP
+Output NN
+Cone NNP
+hunting NN NN|VBG VBG|NN VBG
+Roxy NNP
+omnipresence NN
+couponing NN VBG|NN VBG
+interviewed VBN VBD
+Wipe VB
+freshness NN
+deal-blocker NN
+Seattlite NNP
+similitude NN
+dictionaries NNS
+Synthetic JJ NNP
+Josephus NNP
+Looky VB
+fiction NN
+Wallach NNP NN
+embody VBP
+Delphine NNP
+Posix NNP
+rouge FW NN
+Freres NNP
+LSU NNP
+over-rewarding JJ
+Pastiche NN
+connotes VBZ
+REAL JJ NNP
+Lawrenson NNP
+rear JJ NN VB
+sensationalism NN
+bat NN VB
+Comsat NNP
+continent NN
+Blowing NN
+Prence NNP
+dissembling VBG
+Tomonggong NNP
+Insurance-reform NN
+Riding VBG NNP
+probing VBG JJ NN
+transcendent JJ
+blood-lust NN
+reserve... :
+Sixth NNP JJ
+pronoun NN
+rustlin NN
+Disc NNP
+near-recession NN
+international JJ NN
+detente NN
+Metrecal NNP
+shoestrings NNS
+Shi'ite NNP
+Weaver NNP
+mid-1970 NN
+MPI NNP
+hiss NNS
+PRISON NN
+hopples NNS
+Now RB NNP
+space-buying NN
+buffets NNS
+trendiest JJS
+extorting VBG
+watermelon NN
+Markowitz NNP
+Superstition NN
+three-night JJ
+surrender NN VBP VB
+Fresca NNP
+chamois NN
+parentis FW
+vermilion JJ NN
+Radioing VBG
+Err VB
+underachievers NNS
+irrigation NN
+lusts NNS
+pfffted VBD
+entrench VB
+Smelting NNP
+religion NN
+ANTHEM NNP
+elephants NNS
+erythroid NN
+erembal NNP
+megahertz NN
+untapped JJ
+ever-dying JJ
+swore VBD
+Kohnstamm-positive JJ NNP
+terry-cloth NN
+Subsidiaries NNS
+mini-fiestas NNS
+Trinitron NNP
+Episcopal NNP JJ
+Di NNP
+grossly RB
+nominated VBN VBD
+XRELEASE NN
+Cunard NNP
+unworkable JJ
+dismantle VB
+hilltops NNS
+nocturnal JJ
+Microsoft-Apple NNP
+Fountain NNP
+nouveau JJ
+nowhere RB NN
+epiphysis NN
+roundups NNS
+piazzas NNS
+change-over NN
+household-products NNS
+Ending VBG
+national-policy NN
+IRS-HHS JJ
+outpost NN
+joint-research JJ
+less-binding JJ
+voice-altering JJ
+abolished VBN VBD
+citation NN
+innovate VB
+conspires VBZ
+GAR NNP
+information-service NN
+hamming VBG NN
+HIGH-SCHOOL NN
+Basu NNP
+oneself PRP
+volume-decliner JJ
+hovel NN
+quadrupling VBG NN
+Morris NNP
+Economically RB
+interviewee NN
+anatomical JJ NN
+divinely RB
+NESB NNP
+repressed VBN JJ
+Intan NNP
+computer-controlled JJ
+Nursing NNP VBG
+sniped VBD NN
+grinning VBG JJ
+revery NN
+Lancaster NNP
+credit-tightening NN
+then-City JJ
+actors NNS
+soundtrack NN
+crystalline JJ
+rhenium NN
+Jane\ NNP
+shading NN VBG
+Kool-Aid NNP
+Apartheid NNP
+drug-enforcement JJ
+well-trained JJ
+Letting VBG
+tits NNS
+Lorelei NNPS
+ajury NN
+always-present JJ
+Shanghai-born JJ
+Vesole NNP
+Jamie NNP
+Ed NNP
+Bio-Technology NNP
+university-wide JJ
+mitigates VBZ
+cistern NN
+Leonidas NNP
+demented JJ VBN
+hard-surface NN JJ
+blood-sport JJ
+keep VB NN VBP
+High-tech JJ NN
+disappearing VBG
+aggregates NNS
+funnel VB NN
+Danville NNP
+Missa NNP
+Forecasts NNPS NNP NNS
+quick-handling JJ
+Weaken VB
+AMERICA'S NNP
+bellyaching NN
+sentiment NN
+comparable-store JJ
+woodcarver NN
+propeller NN
+Serene NNP
+engravings NNS
+Yardumian NNP
+Bruises NNS
+Dwellers NNS
+ego-adaptive JJ
+Amerace NNP
+shaded VBN VBD JJ
+flatters VBZ
+archival JJ
+trudging VBG
+Charlestonians NNPS NNS
+zealously RB
+drones NNS
+non-financial JJ
+long-necked JJ
+Straus NNP
+hoards NNS
+litters NNS
+recognitions NNS
+Bugs NNP NNS
+Marketers NNS NNPS
+EMI NNP
+Gorton NNP
+help-me-make-it-through-the-fiscal-nigh JJ
+vertigo NN
+cumin NN
+Percival NNP
+Bottoms NNS
+spotchecks NNS
+Quota NNP
+Lesson NN
+stabled VBD
+thank VB VBP
+original-issue JJ
+philologists NNS
+Appropriate JJ
+Brink NNP
+Callahan NNP
+loincloth NN
+upended JJ
+Left NNP VBD VBN JJ NN RB
+flavoring NN VBG
+hand-written JJ
+handcuff VBP
+Celso NNP
+prams NNS
+Alfieri NNP
+self-described JJ
+Pettersson NNP
+acrobats NNS
+producer NN
+magicians NNS
+eroding VBG
+business NN NNP
+diGenova NNP
+inmates NNS
+Recess NN VB
+foreign-exchange-rate JJ NN
+highest-volume JJ
+necropsy NN
+summarize VB
+westward RB JJ NN
+Connection NN
+Premarin NNP
+favorable JJ
+seraphim NN
+Ballet NNP NN
+succeeding VBG JJ NN
+industrial-production JJ
+loss NN
+Courcy NNP
+outgrew VBD
+evaporate VB VBP
+Graedel NNP
+Decisionline NNP
+self-deceiving JJ
+knack NN
+father-murder NN
+Islam NNP
+SunCor NNP
+silicates NNS
+July-September JJ
+debt-service JJ NN
+Weltanschauung NN
+Diebold NNP
+updates NNS VBZ
+Maryann NNP
+Lanham NNP
+preflight NN JJ
+lemon-meringue NN
+authored VBN
+money-back JJ
+Geiger NNP NN
+carefulness NN
+Smeal NNP
+vacationed VBD
+Gregg NNP
+pro-active JJ
+eloquence NN
+Rockhall NNP
+splintered JJ VBD VBN
+destroys VBZ
+Eurobonds NNS NNPS
+free-choice JJ
+bomb NN VB
+Commodity NNP NN
+murderous JJ
+Duzan NNP
+advantageously RB
+Lorrain NNP
+instrumentalists NNS
+Becht NNP
+deep-tendon NN
+Colosseum NNP
+dispatches NNS
+unevenly RB
+Greer NNP
+rescues NNS VBZ
+double-billing VBG
+Zanzibar JJ
+daylight NN
+unpredictable JJ
+clean-bank JJ
+Arby NNP NN
+botany NN
+Rafi NNP
+Amusements NNPS NNP
+purgatory NN
+Metier NNP
+pitcher-coach NN
+Printed JJ NNP
+lemons NNS
+resuscitated VBN
+title-holder NN
+Jarrell NNP
+loped VBD
+iffy JJ
+overran VBD
+swept VBD JJ VBN
+anti-Phnom NNP
+reopened VBD VBN VB
+South-Asian NNP
+goblins NNS
+Join VB NNP VBP
+submit VB VBP
+calf NN
+economic-development NN
+neutrons NNS
+gas-pipeline JJ
+annihilate VB
+promise NN VB VBP
+Lombardi NNP
+Juanita NNP
+ecologists NNS
+buildin VBG
+weighed VBD VBN
+failed VBD VBN JJ
+absoluteness NN
+wind-driven JJ
+wakeful JJ
+Prostitutes NNS
+Eclectic JJ
+yow NN PRP
+girdle NN
+shirt NN
+sed VBD
+assure VB VBP
+Labeling VBG
+crusading VBG
+specialization NN
+erupts VBZ
+sledding NN VBG
+Geissinger NNP
+Arabist JJ
+Pfaff NNP
+Bully VB
+deterrant JJ
+non-recurring JJ
+Cyber NNP
+bullyboys NNS
+Ziari NNP
+Wieland NNP
+Groupe NNP
+Gospel-singer NN
+crude NN JJ
+Demodocus NNP
+Airman NNP
+Trap NNP
+LaWare NNP
+Richert NNP
+crosses VBZ NNS
+gum NN VB
+slingshot NN
+rainbow NN
+prevalance NN
+Hori NNP
+adventurous JJ
+ten-month JJ
+sedans NNS
+Chipmunks NNPS
+USDA-sponsored JJ
+causative JJ
+ad-agency NN
+BRIEFS NNS NNPS
+D&H NNP
+Nekoosa NNP NN
+Econometric NNP
+embarking VBG
+Taiyo NNP
+restraining VBG JJ NN
+Lanese NNP
+major-frauds JJ
+panders NNS
+lay-up JJ
+flexed VBD
+Acapulco NNP
+Szabad NNP
+jurist NN
+metallurgical JJ
+volts NNS
+finds VBZ NNS
+Asquith NNP
+Mississippians NNS
+trending VBG
+funneled VBD VBN
+Baucus NNP
+forehead NN
+defeatism NN
+depress VB VBP
+mafias NNS
+relativism NN
+Medicus NNP
+steel-recycling JJ
+Spence NNP
+Scituate NNP
+tranquilizers NNS
+Matsing NNP
+Tryon NNP
+Gregorio NNP
+duplicates VBZ
+PCST NNP
+Fidis NNP
+ARTY NNP
+Nikko NNP
+urgency NN
+citrated VBN
+notching VBG
+Euro-products NNS
+instruction NN
+jesting VBG
+gouge VB VBP
+Bio-Products NNP
+commandments NNS
+Gen. NNP
+three-minute JJ
+circumvent VB
+sore JJ NN
+Bard\/EMS NNP
+Phillipines NNS
+manslaughter NN
+resentful JJ
+nonprescription NN
+Amory NNP
+waiter NN
+do-it-yourself JJ
+Datsun NNP
+Post-Newsweek NNP
+beveling VBG
+appropriates VBZ
+memorialist NN
+Rosewood NNP
+hashish NN
+pre-Fair JJ
+Hallowell NNP
+Vaughn NNP
+Kroc NNP
+going-private JJ
+first-hand JJ RB
+assemblies NNS
+wildflowers NNS
+Tomorrow NN NNP RB
+Hee UH NNP
+applies VBZ
+dentures NNS
+foot-tall JJ
+socal JJ
+oil-rig NN
+Lego NNP
+high-octane JJ
+improvise VB
+Co NNP NN
+frankly RB
+Masonic NNP
+brainstorm NN
+staffs NNS VBZ
+currant NN
+witch NN
+jeopardy NN
+Kimpton NNP
+Rossini NNP
+market-corporate JJ
+Populace NN
+Methuselah NNP VB
+Frenzy NNP
+capable JJ
+produces VBZ
+oration NN
+Bondholder NN
+necessitates VBZ
+unsprayed VBN
+MacSharry NNP
+gangsterish JJ
+Says VBZ
+Lizzy NNP
+Place-names NNS
+clutched VBD VBN
+vanquish VB
+gangling JJ
+Fog NN
+ethical JJ
+cascading VBG JJ
+Virgil NNP
+management... :
+Satoh NNP
+Loan NNP NN
+bibliographies NNS
+Farmers NNP NNS NNPS
+gravy NN
+independently RB
+industrialism NN
+network-buying JJ
+triamcinolone NN
+UNIFIRST NNP
+bureau NN
+pallet NN
+Ben-Gurion NNP
+co-director NN
+GAS NNP NN
+development NN
+government-bond NN JJ
+no DT JJ NN RB UH
+Rothschilds NNPS
+Paris NNP
+Commission NNP FW NN
+Marinaro NNP
+psychopomp NN
+professorship NN
+Miyazaki NNP
+impulse NN JJ
+applicants NNS
+hollyhocks NNS
+feathered JJ VBN
+temperatures NNS
+Cascaded VBN
+sterilization NN
+laurels NNS
+Niven NNP
+defaulting VBG
+redeemable JJ
+Eurocrat NN
+Specific JJ
+Canfield NNP
+easiest JJS
+Kemper NNP
+chronicled VBD VBN
+establishing VBG
+husbands NNS
+boorish JJ
+biopharmaceutical JJ
+Filmstar NNP
+Benzell NNP
+Quince NN
+stainless-steel JJ
+financings NNS
+intramuscularly RB
+Millenbruch NNP
+Saito NNP
+Action NNP NN
+Bayanihan NNP
+mournful JJ
+directed VBN VBD JJ
+instructs VBZ
+crassness NN
+cleat NN
+treks VBZ
+prefabricated VBN
+Griffith-Joyner NNP
+strikebreakers NNS
+educators NNS
+Intergraph NNP
+margin NN JJ
+Lewco NNP
+Maguires NNPS
+fifty-three CD
+Exchnage NNP
+TRUE JJ
+Alexis NNP
+Uzi NNP
+simulations NNS
+nymphomaniacs NNS
+treason NN
+touring VBG JJ NN
+roughnecks NNS
+vanishes VBZ
+coupled VBN VBD
+rounding VBG NN
+Pinion NNP
+go-to-war JJ
+daybreak NN
+Odyssey NNP NN
+assemble VB VBP
+Edmonton NNP
+IIci NNP
+-300 CD
+non-Tagalog JJ
+Remembering VBG
+Hickory NNP
+copyright-infringement NN
+worse-than-expected JJ
+drinking NN JJ VBG
+modernists NNS
+Thames NNP NNS
+brunches NNS
+Dane NNP
+lost VBD VBN JJ
+subsidizing VBG
+Watchmen NNP
+Stendhal NNP
+BUFFALO NNP
+splashed VBD VBN
+beard NN
+Seattle-based JJ
+Toro NNP NN
+recognized VBN JJ VBD
+Boulle NNP
+Ateliers NNP
+Extinction NNP
+Amerada NNP
+Packard NNP
+Burke-Rostagno NNP
+rhapsodic JJ
+restrains VBZ
+SS-24s NNPS
+Pedroli NNP
+unsubordinated JJ
+pub NN
+Weckel NNP
+Nestled VBN
+MacNeil-Lehrer NNP
+O'Rourke NNP
+Coulson NNP
+razing VBG
+DJS\/Inverness NNP NN
+presumed VBN JJ VBD
+Gil NNP
+NLD NNP
+deferring VBG
+WATKINS-JOHNSON NNP
+Methanol NN
+comparably RB
+Shearman NNP
+special JJ NN
+interfered VBD VBN
+destroyers NNS
+brokering VBG NN
+summoning VBG
+Especially RB
+grab VB JJ NN VBP
+Latour NNP
+reclaim VB VBP
+speed-up JJ
+EXPECT VBP
+slide-lock NN
+rhino NN
+rearrangements NNS
+reinstituting VBG
+excellently RB
+additions NNS
+O'Hanlon NNP
+Gains NNS
+BioVentures NNP
+tradition-bound JJ
+enthusiasm NN
+Exteriors NNS
+Champion NNP NN
+Depending VBG
+towel NN
+VaxSyn NNP
+co-ordinated JJ
+serfs NNS
+neo-fascist JJ
+Effect NN
+Wilmer NNP
+relieving VBG
+Trepp NNP
+backup NN JJ
+bruited VBN
+broody JJ
+Dependency NNP
+across IN RB RP
+LA NNP
+Haake NNP
+Mafia NNP
+accompli NN
+lumberjack NN
+Widmark NNP
+Schumacher NNP
+Deltec NNP
+one-quarter NN JJ
+Chambers NNP NNS NNPS
+Cecelia NNP
+Palmero NNP
+unauthorized JJ
+de-iodinating VBG JJ
+unflatteringly RB
+re-election NN JJ
+Cong NNP
+sweat-soaked JJ
+Stuckey NNP
+coalesce VB VBP
+broker-dealers NNS
+weapon NN
+hubs NNS
+Foreigners NNS
+Sludge NNP
+new-home JJ
+KCRA NNP
+Approaching VBG
+suppositions NNS
+Wheeling-Pittsburgh NNP
+microsomal JJ
+time-share JJ
+pant-legs NNS
+protein-making JJ
+Sweeping VBG
+disquietude NN
+Baltimorean NNP
+Coronation NNP
+Optics NNP
+Flaming NNP
+Juvenile NNP JJ
+Ismail NNP
+S.G. NNP
+comestibles NNS
+CTBS NNP
+revealed VBD JJ VBN
+Groep NNP
+T'ien NNP
+lashes NNS
+better-than-expected JJ NN
+Sabina NNP
+thirty-one CD
+loose-loaded JJ
+histochemical JJ
+Streak NNP
+overrule VB
+ANACOMP NNP
+Coordination NN
+outdoorsman\ NN
+host-specific JJ
+see VB UH VBP
+Pinel NNP
+contingents NNS
+foregoing NN JJ VBG
+Hammacher NNP
+Zurich NNP NN
+dreadfully RB
+dual-ladder JJ
+Pattison NNP
+Jogjakarta NN
+pressing VBG JJ
+tormented VBN JJ
+precedent NN JJ
+uncanny JJ
+N-no UH
+digger NN
+Gander NNP
+Piersee NNP
+caressing VBG NN
+groan NN
+beholden JJ
+two-career JJ
+booms NNS VBZ
+Competent JJ
+Harrow NNP
+Newsday NNP
+scientist NN
+incremental JJ
+metal-cutting JJ
+Hollandale NNP
+gun NN VB
+overspending NN VBG
+Abstract NNP JJ NN
+Israeli-born JJ
+uptight JJ
+bellwether NN JJ
+specially RB
+nondescript JJ
+ELP NNP
+Garry NNP
+B.V NNP
+willowy JJ
+impulse-related JJ
+sojourner NN
+mystified VBN
+capitulated VBD VBN
+hastens VBZ
+Manley NNP
+tropics NNS
+Mutual NNP JJ
+A.M.E. NNP
+Wakako NNP
+hotdogs NNS
+Librium NNP
+abandonment NN
+donates VBZ
+lash-up JJ
+stipulation NN
+printer NN
+smart JJ NN RB
+ratifying VBG
+paternalist JJ
+interdicting VBG
+Pew NNP
+WHO WP
+hemophiliacs NNS
+Okamoto NNP
+Drunken JJ
+co-developers NNS
+Neoax NNP
+Bridewell NNP
+the'called JJ
+canned-mushroom JJ
+Creek-Turn JJ
+Hakim NNP
+handicap NN VB
+Wansee NNP
+Least-cost JJ
+Bruch NNP
+hoofmarks NNS
+accorded VBN VBD
+excreted VBN
+flops VBZ NNS
+weakening VBG JJ NN
+Conmel NNP
+Dooley NNP
+Mifepristone NNP
+agnomen NN
+suit-and-tie JJ
+Keshtmand NNP
+tigress NN
+promoted VBN VBD
+Meats NNS NNPS NNP
+precipitously RB
+Ximenez-Vargas NNP
+Vere NNP
+elderly JJ NN
+first-place JJ
+restraint NN
+Kims NNPS NNP
+failing VBG NN
+rupiah NN
+Douglass NNP
+Rubber NNP JJ
+Hersant NNP
+left-front JJ
+underestimate VB
+Sheller-Globe NNP
+toddlers NNS
+three-week-old JJ
+Blomdahl NNP
+Dirk NNP
+Bethle NN
+Scenario NN NNP
+overland RB
+mediumistic JJ
+mass NN JJ RB VB
+station NN
+imprudence NN
+standup JJ NN
+hallucinatory JJ
+Perches NNP
+Umpire NN
+impaling VBG
+monuments NNS
+racking VBG
+repurchases NNS
+thrall NN
+Yff IN
+post-electoral JJ
+Redevelopment NNP
+Levin NNP
+urges VBZ NNS
+Rage NN
+confluent JJ
+soles NNS
+Purchasing NNP VBG NN
+electrolysis-of-water JJ
+oranges NNS
+tyrants NNS
+Benedictine JJ
+Pia NNP
+whosoever WP
+IQ NNP
+Myra NNP
+choked VBD VBN
+Tiempo NNP
+McFarlan NNP
+reprints NNS VBZ
+Aids NNS VBZ
+excitement NN
+co-existence NN
+Fike NNP
+mortgage-interest JJ
+lesson... :
+level NN VBP JJ VB
+Auvil NNP
+Veteran JJ NNP
+Chemical NNP JJ NN
+hand-operated JJ
+Whole JJ
+fermions NNS
+homilies NNS
+monetary-policy NN
+agglomerate NN VB
+DeTomaso NNP
+Increased VBN JJ
+Ptolemaic JJ NNP
+Week-end NN
+bundling VBG
+wheel-making JJ
+irreplaceable JJ
+arsenic NN
+fraud NN
+chives NNS
+Weatherly NNP
+Court-packing JJ
+two-note JJ
+donned VBD
+Sotun NNP
+Bronzavia-Air NNP
+sell-order JJ
+Rotondo NNP
+cut-and-paste VB
+dungeon NN
+beef-jerky NN
+Lifestyle NNP
+Heredity NN
+Cols NNP
+hardliners NNS
+Hose NNP
+Sunkist NNP
+turbine-generators NNS
+drain NN VBP VB
+rosy-fingered JJ
+pollution-reduction NN
+debts NNS
+relocations NNS
+save-the-universe JJ
+Hoare NNP
+Norex NNP
+property-claims-service NN
+prejudging VBG
+narrow-bodied JJ
+Gnu-Emacs NNP
+Woodwards NNP
+DPW NNP
+Caneli NNP
+Niggertown NNP
+Hebrew NNP
+rough JJ RB
+two-lane JJ
+begonia NN
+Sokolov NNP
+subsistence NN
+burping VBG
+Kankakee NNP
+discursiveness NN
+flannels NNS
+international-defense NN
+bailiff NN
+commend VB VBP
+Eloise NNP
+diver NN
+Lithe JJ
+assuaging VBG
+adverbial JJ
+perturbation NN
+musician NN
+pummeled VBD VBN
+trobles NNS
+Kelton NNP
+Alpers NNP
+Polished JJ
+in\ JJ
+Ba2 JJ
+waggled VBD
+nolo FW
+Aoun NNP
+plumber NN
+incandescent JJ
+sea-turtle-saving JJ
+Chiharu NNP
+Sounder NNP
+Arizona-related JJ
+Caskey NNP
+Fly VB
+Kans. NNP
+breathless JJ
+defeat NN VB VBP
+Examiners NNP NNS
+photographers NNS
+trend NN VB
+tragic JJ NN
+Pilipino NN
+fast-vanishing JJ
+fanciest JJS
+ventricles NNS
+Dali-esque JJ
+genetics NNS
+Smoak NNP
+starry-eyed JJ
+Philippians NNS
+Better NNP RBR RB JJR
+Bryn NNP
+demonstrably RB
+game-shows NNS
+break-the-rules JJ
+mutts NNS
+Yarchoan NNP
+Charade NNP
+Motorola NNP
+judgeship NN
+Missing JJ
+Zacharias NNP
+sweet-smelling JJ
+SMART JJ
+Emerald NNP
+condiments NNS
+TVX NNP
+finish VB NN VBP
+counter-attack NN
+chasers NNS
+overestimated VBD VBN
+oaks NNS
+guaranteed VBN JJ VBD
+novice NN JJ
+delve VB
+cushions NNS
+frilly JJ
+refused VBD VBN
+thickened VBN VBD
+treasure NN VBP
+case-to-case JJ
+chilling VBG JJ
+Haynes NNP
+salad NN
+Nederland NNP
+painkillers NNS
+specialties NNS
+motherland NN
+flavor NN
+ASPR NNP
+assemblages NNS
+teasers NNS
+recalculating VBG
+Caldwell NNP
+hive NN
+Pilot NN
+plum NN
+KANEB NNP
+Niles NNP
+microsurgery NN
+supinely RB
+ample JJ
+marvelous JJ
+industrialist NN
+Salinger NNP
+dialogue NN
+Leavitt NNP
+ALCEE NNP
+ultra-fast JJ
+VICTOR NNP
+Equalizer NNP
+insignificant JJ
+tuition NN
+Thurday NNP
+U.S.-European JJ
+Kieffer NNP
+Glassell NNP
+graze VBP VB
+casualty-insurance NN JJ
+Videoway NNP
+anxiously RB
+Kortunov NNP
+Autry NNP
+SPECIALIZED JJ
+Siepi NNP
+Anand NNP
+Won NNP
+One-Step NNP
+adherence NN
+mission NN
+Goldinger NNP
+Virgin NNP JJ
+peaches NNS
+turmoil NN
+worthy JJ
+unmoved JJ
+calcification NN
+OK. UH
+PROPERTY NN
+Kneale NNP
+enticingly RB
+tempest NN
+mild-mannered JJ
+Connell NNP
+capitalmarket NN
+undecideds NNS
+fortress NN
+Hackman NNP
+Alexandria NNP
+unbundled VBN
+economy NN
+gerrymandering NN
+force-level JJ
+person-to-person JJ
+farm-equipment NN JJ
+German JJ NN NNP
+Neglecting VBG
+Industriel FW
+hypermarket NN
+watercolorist NN
+jewelery-related JJ
+Montpelier NNP
+six-cylinder JJ
+disembark VBP
+clad VBN JJ
+spoof NN VB
+Explosion NN
+lingers VBZ
+gratuitously RB
+Turkey NNP NN
+Cardenas NNP
+uninhibited JJ
+Tharp NNP
+Stains NNS
+strongman NN
+Three-day JJ
+Tokuo NNP
+distinguishes VBZ
+Rianta NNP
+disadvantaged JJ
+AMCA NNP
+smokescreens NNS
+Resolves NNPS
+wearisome JJ
+Idrocarburi NNP
+imprecates VBZ
+positivists NNS
+hacker NN
+vibratory JJ
+evangelist-industrialist NN
+nyet UH
+woolens NNS
+announced. VBN
+filmstrips NNS
+Wait VB NN NNP
+Travis NNP
+faier RB
+non-bearing JJ
+impracticality NN
+coloreds NNS
+languages NNS VBZ
+desirable JJ
+un-Swiss JJ
+toleration NN
+Redhook NNP
+Gould NNP
+Yoshitoki NNP
+long-bubbling JJ
+ration NN
+flexing VBG
+sanitation NN
+drugs NNS
+Tide NNP NN
+unavoidable JJ
+scented JJ VBN
+Treasury-bond JJ
+Businesses NNS
+Daytonas NNP
+LSX NNP
+stagewhispers VBZ
+Inter-Canadian NNP
+Czarina NNP
+husband-stealer NN
+and'divine JJ
+non-insurance JJ NN
+experienced VBN JJ VBD
+fast-acting JJ
+Neibart NNP
+NKK NNP
+reconstruct VB VBP
+tankers NNS
+stupid JJ
+off-the-record JJ
+Meaning NN NNP
+stimuli NNS
+relaxing VBG JJ
+charmer NN
+ROUGH JJ
+banditos NNS
+sewn VBN
+Tactically RB
+vitiated VBN
+Forty CD NNP
+mast NN
+Psychologically RB
+abhorrently RB
+freeze-drying NN
+tremolo NN
+Karnak NNP
+barbarian NN
+neuronal JJ
+Rolodex NNP
+flower NN VBP
+sportif FW
+DSG NNP
+Commission-controlled JJ
+eight-bit JJ
+Loathing NN
+tag-team JJ
+streets NNS
+fair-trade-related JJ
+right-wing JJ NN
+re-invested JJ VBN
+showcasing VBG
+Boggs NNP
+regularity NN
+Batavia NNP
+Darcy NNP
+tints NNS
+glass-fiber JJ
+belittled JJ
+crop NN RP VB VBP
+plowing VBG NN
+vertically RB
+Baum NNP
+unceasing JJ
+econometrics NN
+Celanese NNP
+Trabants NNPS
+TELESIS NNP
+foreign-trading JJ
+Hatched VBN
+Reptilian NNP
+alternated VBD VBN
+stifled VBD VBN
+vulgar JJ
+Patriarchy NNP
+sensitized VBN
+Risking NNP
+sub-therapeutic JJ
+Selectol NNP
+love NN NNP VB VBP
+stand-still JJ
+poignant JJ
+MRA NNP
+Janice NNP
+Landonne NNP
+Waldron NNP
+real-time JJ
+admirer NN
+forbears NNS
+circumvent... :
+Knightsbridge NNP
+Chapel NNP NN
+Podolia NNP
+welled VBD
+Foodmaker NNP
+Papa NNP NN
+Steel NNP NN
+Thelma NNP
+non-affiliate NN
+format NN
+Colt NNP NN
+holes NNS
+Hilary NNP
+Telzrow NNP
+counselors NNS
+draughty JJ
+Yitzhak NNP
+Sheets NNP
+Cioffi NNP
+Alpert NNP
+dives NNS VBZ
+computer-chip NN JJ
+Dang NNP
+unfleshed VBN
+detective-story NN
+Cinnamon NNP
+sheath NN
+emotionally RB
+accelerators NNS
+hot JJ
+once-over NN
+Zionists NNPS
+assailants NNS
+mahogany NN
+Heidenstam NNP
+leavened VBD VBN JJ
+Zellers NNP
+price-earnings JJ NN NNS
+Spectator NNP
+Dyk NNP
+Machines NNPS NNP NNS
+rim NN VBP
+flaxen JJ
+subsidy NN
+drib-drool NN
+fiscal-year JJ NN
+graphite NN
+Lapham NNP
+Sombrotto NNP
+discharge NN VB
+Interspersed VBN
+ghilianii FW
+Schramm NNP
+third-consecutive JJ
+expects VBZ
+George NNP
+Placentia NNP
+Riunitie NNP
+away-from-home JJ
+Glenham NNP
+Stream NNP
+Acoustical JJ
+Argyll NNP
+Spurgeon NNP
+crossborder JJ
+grad NN
+fauteuil FW
+fishbowl NN
+chairs NNS VBZ
+OEP NNP
+subzero JJ
+timidity NN
+Detention NNP
+Naiman NNP
+-78-degrees CD|NN
+Godiva NNP
+business-telephone JJ
+Granath NNP
+politically RB
+belle FW NN
+Arabians NNPS
+Pawtucket NNP
+Orthodoxy NNP
+chaffing VBG
+Layman NNP
+specialty-metals NNS
+in-fighting NN
+Punitive JJ NNP
+co-editor NN
+Milan NNP
+anti-switching JJ
+sops NNS VBZ
+dreary JJ
+threaded VBN
+Hindemith NN NNP
+capacitors NNS
+Arteries NN NNS
+kibbutzim NNS FW
+Putnam NNP
+Ba3 JJ NN
+debates NNS VBZ
+regions NNS
+topple VB
+product-monoclonal JJ
+WTVJ NNP
+Bebop NNP
+frighten VB VBP
+shattering VBG JJ
+insubstantial JJ
+scholastically RB
+life NN RB
+grounder NN
+face-to-face JJ RB
+Barshop NNP
+Intar NNP
+upward-mobile JJ
+Interpoint NNP
+oddities NNS
+anti-dumping JJ
+P. NNP NN
+REAP VBP
+third-tier JJ
+Moors NNPS
+discography NN
+five-star JJ
+America\/International NNP
+DRUGS NNPS
+Prosopopoeia NNP
+stature NN
+Apaches NNPS
+Ahold NNP
+Gin NNP
+upper-echelon JJ
+butts NNS VBZ
+Americano NNP
+peacemaking NN JJ
+Idal NNP
+Jesuit NNP
+Tight JJ
+Droz NNP
+Saved NNP
+none NN
+suitcase-sized JJ
+Wayland NNP
+Tyne NNP
+Next-Most-Remarkable JJ
+oil-trading NN
+twittering VBG
+Lying VBG
+Journal\/NBC NNP
+Shank NNP
+business-services JJ
+subtypes NNS
+a'skip-a-month JJ
+Outrageous NNP
+ol JJ NN UH
+half-aloud RB
+Ungaretti NNP
+open-shelf JJ
+aimlessly RB
+obstructing VBG
+Krapels NNP
+overreached VBD
+Furillo NNP
+Poppenberg NNP
+Electrostatic JJ
+bleeders NNS
+Chimanbhai NNP
+HOLLYWOOD NNP
+wasted VBN VBD JJ
+insurance-holding JJ
+Finis NNP
+Highly RB NNP
+Virginians NNPS
+Chiappa NNP
+Fila NNP
+flesh NN VB
+battling VBG NN
+harnessing VBG
+tetrahalides NNS
+haunting JJ VBG NN
+Globally RB
+subterfuges NNS
+stalwarts NNS
+introduce VB VBP
+Wald NNP
+Woo NNP
+Quote NN
+fascimile-machine NN
+blast NN VB
+Ashurst NNP
+furloughs NNS
+cricket NN
+Diocese NNP
+physique NN
+Foxx NNP
+Viscera NNPS
+auctioned VBN VBD
+Marchand NNP
+windbag NN
+Consistently RB
+beta NN JJ
+ultimatum NN
+military-service JJ
+wide-awake JJ
+Perelman NNP
+Valuable NNP JJ
+tentacles NNS
+half-darkness NN
+Continuing VBG NNP
+receiver NN
+Oleanders NNS
+patsies NNS
+anti-smokers NNS
+CHICAGO NNP
+Again RB NNP
+ranging VBG
+multi-media NNS
+d'affaires NN
+Perfumes NNPS
+grandparents NNS
+CRAF-Cassini NNP
+turne VB
+mega-hit JJ NN
+demon NN
+lilting JJ JJ|VBG VBG
+bleakly RB
+postulated VBN JJ
+one-story JJ
+blocked VBN JJ VBD
+haughtiness NN
+funds-service JJ
+Lespinasse NNP
+CFM56-3C NN
+Depositary NNP JJ
+president-finance NN
+admires VBZ
+madly RB
+breeders NNS
+dials NNS VBZ
+compound NN JJ VB VBP
+forward RB JJ NN VB
+refinement NN
+recontamination NN
+multimedia NNS
+Tangible JJ
+secularized VBN
+Scrub VB
+influx NN
+gravitational JJ
+design... :
+O'Brien's NNP
+indelible JJ
+Flour NN
+Elcotel NNP
+Larger JJR
+nurture... :
+Principals NNS
+flattery NN
+seven-week JJ
+undiluted JJ
+barrio NN
+knockoffs NNS
+Circulations NNP
+significant JJ
+devising VBG
+Gupta NNP
+dissatisfactions NNS
+Nautilus NNP JJ
+Colmer NNP
+Rima NNP
+Ormat NNP
+setbacks NNS
+tipped VBD VBN
+divergent JJ
+LEADERS NNS
+enthalpy NN
+COLOGNE NNP
+autos NNS
+unsatisfied JJ
+installing VBG
+piteous JJ
+Operating-system JJ
+Cerv NNP
+wholes NNS
+relativist NN
+electronic-measuring JJ
+reparations NNS
+feuding VBG NN
+Moniuszko NNP
+Primaxin NNP
+ineffably RB
+Mullins NNP
+norske NNP
+Gar-Dene NNP
+great JJ RB
+ENG NNP
+midwestern JJ
+Beverages NNP NNS NNPS
+puffers NNS
+ozone-exposed JJ
+physiotherapist NN
+window-shopping NN
+turret NN JJ
+easygoing JJ
+coconut-containing JJ
+ennumerated VBD
+Volgograd NNP
+bluntly RB
+McGinley NNP
+B.B. NNP
+Southlake NNP
+symbolists NNS
+ologies NNS
+Ungrateful JJ
+Cincinnati-based JJ
+Icahn NNP
+minarets NNS
+campaign-finance JJ
+Mylan NNP
+methanol-powered JJ
+solitude NN
+Imai NNP
+steak NN
+Thomas NNP NNPS
+huckstering VBG
+Patmore NNP
+Arkhipov NNP
+sinuousness NN
+Cresswell NNP
+mid-1981 CD
+Zeal NNP
+traffic-systems NNS
+SCHWAB NNP
+reaffirms VBZ
+mugs NNS
+J/NNP.A. NN VB
+Immediately RB
+cross-examination NN
+Garden NNP
+Declines NNS
+Saleh NNP
+luncheon-meat NN
+aflame JJ
+leaks NNS
+Glocester NNP
+Crisp NNP
+unmask VB
+Catskills NNPS
+fillies NNS
+Hettinger NNP
+stared VBD VBN
+scurrilous JJ
+brooding VBG JJ NN
+profiling VBG
+Praxis NNP
+chastity NN
+agleam JJ
+Airlie NNP
+punctually RB
+requiring VBG
+beholder NN
+Marxists NNPS
+pooched VBD
+less-than-alarming JJ
+catapulting VBG
+uneasy JJ
+binuclear JJ
+ebulliently RB
+Pic NNP
+RJR-Macdonald NNP
+Hovis NNP
+shooters NNS
+therapist NN
+safety-related JJ
+'Tahiti NNP
+bloodthirsty JJ
+Earle NNP
+Female JJ
+fisherman NN
+graft-riddled JJ
+trading-fraud NN
+untenanted JJ
+greets VBZ
+Corey NNP
+MD-80s NNS
+Kilduff NNP
+two-mile JJ
+Godfrey NNP
+Kensington NNP
+Newly RB
+heated VBN JJ VBD
+postcard NN
+Erath NNP
+Rowlands NNP
+athletics NNS
+Malaysia NNP NN
+musing VBG
+argot NN
+grinned VBD
+multiple-column JJ
+chlorpromazine NN
+Matsunaga NNP
+reinstitution NN
+stresses NNS VBZ
+Lombardo NNP
+telecast NN
+finite JJ NN
+apology NN
+Dennison NNP
+Greeniaus NNP
+Tech-Sym NNP
+car-parking JJ
+Fads NNS
+uncommitted JJ
+BLAST NN
+world-oriented JJ
+N.C. NNP
+flushes VBZ
+Aegis-class JJ
+Kawasaki NNP
+POLICY NNP
+Jericho NNP
+de-iodination NN
+Exhibited VBN
+Teter NNP
+Monica NNP
+\*\*\* SYM
+pictorially RB
+KEEPING VBG
+Inventor NNP
+reattached VBN
+consulting-firm NN
+Rosty NNP
+decor NN
+genial JJ
+receives VBZ
+hatchet-faced JJ
+striking JJ VBG
+chassis NN NNS
+gangplank NN
+Lobl NNP
+Settlements NNP NNS
+Cr NNP
+crewmen NNS
+pliers NNS
+Luehrs NNP
+interviewer NN
+Bruck NNP
+steadfastly RB
+A321s NNS
+high-profit JJ
+launder VB
+Sancken NNP
+publishing NN JJ VBG
+Lydall NNP
+chitchat NN
+IS VBZ
+two-percentage-point JJ
+applicability NN
+chord NN
+Hangman NNP
+overemphasize VB
+plain-vanilla NN
+officials NNS
+PW-4000 NN
+Damn VB JJ
+Wooten NNP
+Exploration NNP NN
+Dish NNP
+reincorporated VBN
+Operation NNP NN
+console VB VBP
+Barstow NNP
+posture NN VBP
+Ovcharenko NNP
+Pittenger NNP
+songwriters NNS
+said'let's NNS
+Jacobs NNP
+Epicurean JJ
+non-discrimination NN
+aftershocks NNS
+flattest JJS
+yen-denominated JJ
+Psyche NNP
+happen VB VBP
+Fiedler NNP
+picture-postcard NN
+AARP NNP
+chrome NN
+handle VB NN VBP
+civility NN
+MHz NNS
+soprano NN JJ
+Triggering VBG
+Booth NNP
+boll NN
+argues... :
+superieure NN
+Trackdown NNP
+dummy JJ NN
+predators NNS
+mythologies NNS
+Brasstown NNP
+mistrust NN VB
+PENALTY NNP NN
+pressed VBN VBD
+lacheln FW
+debonair JJ
+crouch NN VB
+Bonett NNP
+finer JJR
+nonunion JJ
+Ciriaco NNP
+special-purpose JJ
+well-stated JJ VBN
+videocassette NN
+extricate VB
+broached VBN
+rousing JJ NN
+glacial JJ
+Vescos NNPS
+tomes NNS
+Yen NNP
+alternative... :
+Grannon NNP
+SCHLOSS NNP
+sales. NNS
+squires NNS
+Regency NNP NN
+Sticking NNP
+grander JJR RBR
+Legs NNS
+USN NNP
+GREAT NNP JJ
+unobserved JJ
+enthusiast NN
+Pissocra NNP
+Phi NNP
+attactive JJ
+Lvovna NNP
+White-haired JJ
+lagging VBG JJ NN
+LVI NNP
+Dual JJ
+survive VB VBP
+Regarded VBN
+baseball NN
+structures NNS VBZ
+TXO NNP
+Arrington NNP
+Herrick NNP
+facsimiles NNS
+artistas NNS
+standardized JJ VBN
+blurt NN VBP
+rebated VBN
+cigarette-vending JJ
+Adjusters NNS
+Timbers NNP
+Auditorium NNP
+Tribunal NNP
+design NN VB VBP
+fear NN VB VBP
+scratch NN VB VBP
+Harperner NNP
+HCFA NNP
+propounded VBD
+Konheim NNP
+vaccine-related JJ
+Shopping NNP VBG NN
+tippee NN
+Darlene NNP
+Beginners NNS
+bulldoze VB
+Mace NNP
+willling VBG
+Discrimination NNP
+lunched VBN
+Hirschey NNP
+Stocks\/Mutual NNP
+counsels VBZ
+Stallings NNP
+hard-to-fit JJ
+bona FW JJ
+reposition VB
+Differ VBP
+factors NNS VBZ
+Declaration NNP NN
+Broader JJR
+evangelists NNS
+tobacco-growing JJ
+Eh UH NNP
+benevolent JJ
+Friday-the-13th JJ NN
+arrearages NNS
+Bangemann NNP
+proteases NNS
+trifle NN JJ RB VB
+government-securities NNS JJ
+passenger-mile NN
+Zimet NNP
+government-managed JJ
+Balinese NNP
+Steen NNP
+Chanos NNP
+Celsius NNP
+brilliantly RB
+M\/A-Com NNP
+self-prescribed JJ
+condescending JJ VBG
+Mich. NNP
+vine-crisscrossed JJ
+murmur NN VB
+plotting VBG NN
+Reich NNP
+CORNFELD NNP
+megaquestions NNS
+less-indomitable JJ
+unpredictably RB
+bracing VBG NN
+Hoaps NNP
+Lousie NNP
+volition NN
+hostess NN
+Lefevre NNP
+South-East NNP
+came VBD
+Sabine NNP
+worn-faced JJ
+high-coupon JJ
+shake VB NN VBP
+equally RB
+rigidity NN
+steal VB VBP
+bronzy-green-gold JJ
+Grenfell NNP
+do-gooder JJ NN
+mainframe NN JJ
+thereafter RB
+socialize VB
+most-owned JJ
+trial-book JJ
+Falmouth NNP
+Value NNP NN
+over-spent JJ
+Text NN
+badly RB
+non-publishers NNS
+dissection NN
+alarmism NN
+mirth NN
+emission-control JJ
+relaunch VB
+rate-making JJ
+intimidated VBN
+independence NN
+three-spoked JJ
+partially RB
+amounting VBG
+Supply NNP NN
+Suemeg NNP
+Dongen NNP
+Schreyer NNP
+magnates NNS
+Survanta NNP
+bowling-league NN
+FIG NNP
+R.,Iowa NNP
+lusty JJ
+radiant JJ
+precipice NN
+tuberculosis NN
+playboy NN
+bridgework NN
+conclusive JJ
+Poach VB
+Appraisers NNPS
+mysticism NN
+taps NNS VBZ
+unhocked VBN
+bay NN
+Description NNP
+devised VBN VBD
+Dain-sponsored JJ
+Farra NNP
+LD NN
+Tired JJ VBN
+Sirowitz NNP
+noticeably RB
+ably RB
+listings NNS
+excoriated VBD VBN
+inequity NN
+near-left NN
+left-centerfield JJ
+effluent NN JJ
+seventy-five-foot JJ
+miasma NN
+Godkin NNP
+memory-expansion JJ
+hits NNS VBZ
+rotationally RB
+trademarks NNS
+pallid JJ
+concentrating VBG
+muffed VBD VBN
+parishes NNS
+positive JJ NN
+misery NN
+unventilated VBN
+full JJ RB
+continues VBZ
+Porta NNP
+Warsaw NNP
+Enthusiastically RB
+Wilber NNP
+untied VBD
+Tallchief NNP
+masterminding VBG NN
+chained VBD VBN JJ
+beetles NNS
+Quoting VBG
+Beheading VBG
+Reeves-type JJ
+devalued VBD VBN
+fish... :
+conspiracy NN
+Bazaar NNP
+thyroidal JJ
+Paying VBG
+hover VB VBP
+Dallas NNP
+quartets NNS
+Vibrometer NN
+non-itemized JJ
+NMB NNP
+hardness NN
+transversus NN
+tensed VBD
+package-delivery JJ
+dollop NN
+Powell NNP
+affirmative-action NN
+self-definition NN
+quietly RB
+RICOing NN
+positionsthat NN
+jet NN VBP
+renews VBZ
+puckering VBG
+Kenton NNP
+manicured VBN
+prevailed VBD VBN
+pay-out NN
+commoditize VB
+robotic JJ
+Catalog NNP NN
+biopesticide NN
+intelligentsia NN NNS
+Zhitzhakli NNP
+MRC NNP
+Stopping VBG
+Italtel NN
+Springerville NNP
+Loantech NNP
+Lehn NNP
+venture NN VBP JJ VB
+ecology NN
+proto-oncogenes NN
+apace RB
+amorphously RB
+dessert NN
+literalness NN
+recorders NNS
+Gauchos NNS
+minor-sport NN
+Figlewski NNP
+Gump NNP
+Housman NNP
+sentient JJ NN
+sparsely RB
+microtonal JJ
+repayments NNS
+Shotgun-type JJ
+cemeteries NNS
+hallway NN
+Fresenius NNP
+Stopped VBN
+Upset VBN
+Cuoco NNP
+moons NNS
+Oneita NNP
+midfield NN
+sobbed VBD VBN
+dervish-like JJ
+chore NN
+Stedt NNP
+head-on RB JJ NN
+ignite VB
+Bubenik NNP
+end-zone NN
+top-heavy JJ
+hurricane-ravaged JJ
+One CD NNP CC PRP LS NN
+interdiction NN
+arbitrarily RB
+herald VB VBP
+Czar NNP
+pulpits NNS
+Toth NNP
+balance NN VBP JJ RB VB
+presidential-primary NN
+co-ordinates VBZ
+fishing NN VBG JJ
+tab NN
+mid-1979 NN
+DC-10 NNP CD NN NNS
+second-worst JJ
+recalculation NN
+Definitive JJ
+probability NN
+Roles NNS
+consolidations NNS
+Horn NNP NN
+brown-edged JJ
+Pivot NNP
+samurai FW NN
+Trying VBG NNP
+non-residents NNS
+waltzing VBG
+outguessing VBG
+Denison NNP
+sausage-grinder NN
+world-amid IN
+anti-Soviet JJ
+judgements NNS
+arrogate VB
+Taizo NNP
+proprieties NNS
+semesters NNS
+recycle VB
+Reynolds NNP
+conceit NN
+Seek NNP VBP
+Prince NNP NN
+Femmes NNP
+Long-term JJ NNP
+fines NNS NN
+drive NN VBP VB
+Lyceum NNP
+Reunification NN NNP
+Pacemakers NNPS
+revenue-raisers NNS
+half-faced JJ
+chemotherapy NN
+fiercely RB
+Retirement NNP NN
+Response NNP NN
+resignations NNS
+Rainy NNP
+gasolines NNS
+Loesser NNP
+business... :
+eighty-three CD
+Hedges NNP
+manganese NN
+pastime NN
+stairwells NNS
+quarry NN
+arrangements NNS
+fitness NN
+pinhead NN
+MATTEL NNP
+action-packed JJ
+Vortex NNP NN
+arming NN
+anti-lock JJ
+falsifying VBG
+Sainted NNP
+polyols NNS NN
+Baroque JJ NNP
+multi-agency JJ NN
+adjustable-rate JJ
+sleep-disorder JJ
+Crain NNP
+SHAKE VB
+thump NN VB
+Swed NNP
+Jubal NNP
+Vadim NNP
+three-dimensional JJ
+high-priced JJ
+Cozumel NNP
+riverside NN
+biopsy NN
+Guardsmen NNPS
+calmer JJR
+eight-times JJ
+remanded VBD VBN
+Veltri NNP
+co-major NN
+Intouch NNP
+pro-tem JJ
+academics NNS
+January-March NNP
+co-star NN
+IT PRP
+arms-export JJ
+carcass NN
+asbestosis NN
+un-aided JJ
+nudge VB NN
+Barberton NNP
+Mazzera NNP
+Succession NN NNP
+honeymooning NN
+CWP NNP
+M&A NNP NN
+arguably RB
+SS-25s NNPS
+lots NNS
+retching VBG NN
+Prudhoe NNP
+tax-free. JJ
+shelve VB
+parts-suppliers NNS
+clock NN VBP
+Specter NNP NN
+menstruation JJ
+flying-mount NN
+Raymond NNP
+private-sector JJ NN
+Christrian NNP
+shipped VBN JJ VBD
+USO NNP
+C.W. NNP
+model-year JJ
+allocating VBG NN
+deflationist NN
+Schnitz NNP
+well-baby JJ
+valued VBN JJ VBD
+bureaucratic JJ
+Aptitude NNP
+one-product NN
+Toubro NNP
+fieldmice NN
+criteria NNS
+budget-reduction JJ
+Fatima NNP
+epilogue NN
+overestimates VBZ
+Sansom NNP
+wide-grip JJ
+reply NN VB VBP
+Langeland NNP
+Guppy NNP
+purging VBG NN
+devisee NN
+Mysterious JJ NNP
+Unitarians NNPS NNP
+Honotassa NNP
+Cybex NNP
+gunbarrel NN
+obey VB VBP
+straight-talking JJ
+steam NN
+fracases NNS
+boarder NN
+Nylev NNP
+to'women's NNS
+smuggle VB
+Eskridge NNP
+soft-looking JJ
+Naftalis NNP
+hatchet NN
+advancements NNS
+gore VB
+closer JJR JJ RB RBR
+refining NN VBG
+encyclopedias NNS
+rented VBN JJ VBD
+Americans NNPS NNP NNS VBP
+Madama NNP
+one-month-old JJ
+Rolette NNP
+Tenure NN
+Gholamreza NNP
+arrogantly RB
+centrifugal JJ
+push-offs NNS
+hairier JJR
+pie-in-the-sky JJ NN
+cultivated VBN JJ VBD
+saber-toothed JJ
+pilots NNS
+Macintosh NNP
+Express NNP JJ NN
+astray RB
+Danish JJ NNP
+Freudenberger NNP
+intentionally RB
+straw-and-mud JJ
+all-exclusive JJ
+Interstate\/Johnson NNP
+reapportion VBP
+Rajiv NNP
+bucket NN
+syllables NNS
+gene-copying JJ
+headings NNS
+a.k.a. JJ
+contrive VB
+Lung-cancer NN
+botanist NN
+eyelid NN
+Fence-line JJ
+EXPENSIVE JJ
+Hahnemann NNP
+Butter NN
+Industries NNPS NNP NNS
+airline-acquisition JJ
+bachelors NNS
+Often RB NNP
+four-stroke JJ
+collectivization NN
+Inheritance NN
+custom-die NN
+mealie-meal NN
+on IN NNP RBR JJ RB RP
+guess VBP NN VB
+Goldfein NNP
+openers NNS
+second-grader NN
+thunk NN
+Gays NNS
+siting NN
+warrant NN VBP VB
+privacy NN
+bundle NN VB
+Korn\/Ferry NNP
+nepotism NN
+fences NNS
+rung VBN NN
+DevelopMate NNP
+lids NNS
+Eagleton-Newark NNP
+Eldred NNP
+Tort NNP
+BOTTLED VBN
+Hydrogen NN
+grumble VBP VB
+Clients NNS
+roemer NN
+goodnight NN
+maul VB
+SPENDING NN
+impracticable JJ
+guideposts NNS
+cowering VBG
+Sanjay NNP
+sculptures NNS
+variously RB
+Vocational NNP JJ
+technology-transfer NN
+litigious JJ
+briquettes NNS
+disadvantages NNS
+Konowitch NNP
+birth NN
+vain JJ RB
+concretistic JJ
+McElroy NNP
+hearths NNS
+mainframe-manufacturing NN
+Centrex NNP
+Bertie NNP
+Solloway NNP
+thesis NN
+knock-out JJ
+sighing VBG
+Urstadt NNP
+Quilted NNP
+Geo. NNP
+Shultis NNP
+macaroni NNS NN
+ebullient JJ
+Soundview NNP
+re-assumed VBN
+busload NN
+Elements NNS NNPS
+ENI NNP
+Cunin NNP
+scouting VBG
+fluorescein-labeled JJ
+Leaves NNS
+pickings NNS NN
+Maggie NNP
+pi NN
+anti-cancer JJ
+Awake NNP
+Naturally RB
+E.O. NNP
+Thomson NNP NN
+Shann NNP
+Cumbancheros NNP
+rewarded VBN VBD
+interwoven VBN VBD
+gibe NN
+Leopold NNP
+uninspired JJ
+Inquisitor-General NNP
+call VB JJ NN VBP
+protective JJ NN
+catastrophic-health JJ NN
+unlatch VB
+monoclonal-antibody NN
+computer-assisted JJ
+Exclusive JJ
+silkily RB
+Takushoku NNP
+pre-crash JJ
+belong VB VBP JJ
+non-party JJ
+isotropic JJ
+Dimes NNP
+lecturers NNS
+unmistakable JJ
+Sorbus NNP
+Persianesque JJ
+tarpaulins NNS
+puts VBZ NNS
+recently RB
+poem NN
+piston-brake NN
+bodyworkers NNS
+Vaikule NNP
+Richter NNP JJR
+measurements NNS
+bondsman NN
+causal JJ
+--including IN VBG
+SENATE NNP
+Soliz NNP
+fixations NNS
+Pastor NNP
+maddening JJ VBG
+locus NN
+worthier JJR
+recover VB VBP
+Setting VBG
+broadening VBG NN
+zest NN
+change-ringing NN
+tonal JJ
+electricals NNS
+plug-in JJ
+Government-owned JJ
+Progress NN NNP
+single-cell JJ
+superior JJ NN
+Mundo NNP
+homelands NNS
+saucy JJ
+Pie NNP
+Minera NNP
+hisself PRP
+Arseneault NNP
+Parella NNP
+blossom VB JJ NN
+editorialist NN
+non-communists NNS
+Damp JJ
+forte NN
+Transatlantic NNP
+Wondering VBG
+Iveco NNP
+progess NN
+two-record JJ
+environmentally RB
+fugual JJ
+how WRB
+Reserved NNP VBN
+jubilantly RB
+Brizola NNP
+bed NN VB VBP
+bemoaning VBG
+lawlessness NN
+refocusing NN VBG
+monologues NNS
+smog-ridden JJ
+rip-roaring JJ
+FFr1 NNP
+Willows NNS
+rip VB NN
+tobacco-product JJ
+chelas NNS
+sitters NNS
+Seattle-Northwest NNP
+brown-coal NN
+Bloch NNP
+decelerated VBN
+yearlings NNS
+block-trading NN
+immoralities NNS
+selectivity NN
+ilk NN
+Sosuke NNP
+malice NN
+roaring VBG JJ NN
+Tabit NNP
+outcast NN
+towering JJ VBG
+segments NNS
+Group-of-Seven NN
+likened VBD VBN
+Spaced NNP
+curriculum NN
+SOCIAL JJ
+lopsided JJ
+Mutchin NNP
+Beretta NNP
+Dorens NNP
+Lessing NNP
+unpegged JJ
+Picks VBZ
+bonded VBN JJ
+two-year-old JJ NN
+McGroarty NNP
+searchers NNS
+Musically RB
+hard JJ RB
+Desheng NNP
+take-out NN
+deeds NNS VBZ
+residents NNS
+Georgi NNP
+Jurong NNP
+maturation NN
+toconsolidated VBN
+survivals NNS
+stopper NN
+napkins NNS
+pods NNS
+Steep NNP
+Sanson NNP
+By IN RB NNP UH
+displacement NN
+Augustine NNP
+putter NN
+ever-greater JJ
+lien NN
+Bead NN
+persevere VB VBP
+shudder VB VBP
+Sainte-Chapelle NNP
+escaping VBG
+filled VBN JJ VBD
+disappoints VBZ
+tower NN VB
+retail-sized JJ
+feat NN
+Differential JJ
+millon NN
+Officers NNS NNPS NN NNP
+midshipmen NNS
+customization NN
+relied VBN VB VBD
+PageAmerica NNP
+magnet NN
+Sega NNP
+WIN NNP
+Elizabeth NNP
+mother-of-pearl JJ NN
+Teschner NNP
+closes VBZ NNS NN
+LTV NNP
+Mizell NNP
+noncontract JJ
+Shawmut NNP
+Lennon NNP
+Horsham NNP
+medal NN
+discomfited JJ
+impromptu JJ NN
+Lafayette NNP NN
+arousing VBG
+mandated VBN VBD
+litigated VBN
+Bellini NNP NNS
+Komsomol NNP
+manly JJ
+reflectors NNS
+conventioneers NNS
+but... :
+buy-outs NNS
+Mikie NNP
+ill-advised JJ
+converters NNS
+varies VBZ
+my PRP$ UH PRP JJ
+fluoropolymer NN
+handmaiden NN
+bloodbath NN
+Volvo-Renault NNP
+Nuit NNP
+collects VBZ
+Jukes NNP
+mismatch NN
+buzz NN JJ VB
+Traits NNP
+USP NNP
+inter-company JJ
+Graciela NNP
+Ct NNP
+receded VBD VBN
+Approach NNP
+outstrip VB
+legend NN
+Hooked VBD
+volatile JJ
+Amarillo NNP
+guest NN JJ
+BOARD'S NNP
+Ligachev NNP
+Blankenship NNP
+convicted VBN VBD
+visual JJ
+roadbed NN
+stairway NN
+vacationer NN
+Disapproval NN
+Hackettstown NNP
+chemical-arms-control JJ
+Intra-European JJ
+Willowbridge NNP
+crushing VBG JJ NN
+mouthful NN
+dust NN VB VBP
+port-side JJ
+occasionally RB
+Lumbera NNP
+Ex-Cub JJ
+Hockey NNP
+Associate NNP JJ NN
+flower-inscribed JJ
+schematically RB
+Rosalco NNP
+old-line JJ NN
+McCann NNP
+conforms VBZ
+low-moisture JJ
+Parliamentarians NNP
+Northbrook NNP
+entrant NN
+Feng-hsiung NNP
+gazing VBG
+IMEDE NNP
+A-26 CD
+dropoff NN
+Mechanicsburg NNP
+pre-World-War JJ
+wrestling VBG NN
+directionally RB
+wanders VBZ
+ratios NNS
+second-consecutive JJ
+dammed VBD
+Ponkob NNP
+Test-preparation JJ
+Canadian-U.S. JJ
+Manigat NNP
+extortion NN
+one-of-a-kind JJ
+toymakers NNS
+Do VBP VB NNP
+supremacy NN
+Raheem NNP
+Cahners NNP
+Robertsons NNPS
+JP NNP
+flood-control JJ
+unrealized JJ
+Austin NNP
+Hollins NNP
+faze VB
+Integraph NNP
+Moines NNP
+newsboy NN
+Illusion NNP
+spook VBP
+befouled VBN
+Priestess NNP
+Beecham NNP
+before-tax JJ
+accepted VBN VBN|JJ VBD JJ
+schemes NNS
+bonkers JJ
+teammate NN
+exchanged VBN VBD
+GRAB NNP
+Eppner NNP
+Currently RB NNP
+'I'm VBP NN
+Moeller NNP
+facility NN
+Spendthrift NNP
+intactible JJ
+spread-out JJ
+thermometer NN
+R-Bergen NNP
+Wickcliffe NNP
+Practice NNP NN
+Significantly RB
+Severence NNP
+country NN
+Despite IN
+Robles NNP
+stop-payment NN
+stationary JJ
+addiction NN
+sloping VBG JJ
+clays NNS
+Sattig NNP
+Krasnik NNP
+Bershad NNP
+sea-horses NNS
+non-Swedish JJ
+licentiousness NN
+less-perfectly RBR
+calm JJ NN VB
+Savimbi NNP
+FII NNP
+caches NNS
+pre-Punic JJ
+jocks NNS
+roofing NN
+agendas NNS
+Levki NNP
+unhusked VBN
+dwelled VBN
+Teach VBP
+owned VBN VBD JJ
+putt NN VB
+tomato-red NN
+PIPELINE NNP
+fully-diluted JJ
+non-contact JJ
+December NNP
+self-perceived JJ
+half-starved JJ
+extrapolate VB
+Plea NN
+Wirth NNP
+mid-1990 CD NN
+Asean JJ
+Farina NNP
+Asarco NNP
+creditworthiness NN
+Canelo NNP
+spirituals NNS
+kick-offs NNS
+KK NNP
+mid-1986 NN
+electroreality NN
+LaSalle NNP
+copied VBN VBD
+So-Ho NNP
+showgirls NNS
+spent VBD JJ VBN
+informer JJ
+CLOROX NNP
+Gandhi NNP
+bear-like JJ
+do-or-die JJ
+formed VBN VBD JJ
+Lobo NNP
+nectaries NNS
+eclipses NNS
+nosedived VBD
+uncertainties NNS
+shipping VBG NN
+'' '' VBD SYM NN
+Christ-like JJ
+stephanotis NN
+sapling NN
+name-plating JJ
+prohibit VB VBP
+Dares NNP
+Salamander NNP
+lever NN
+riddled VBN JJ
+reduce VB VBP
+matinals FW
+housing-construction NN
+Disk NN
+rustler-hunter NN
+bumming VBG
+mats NNS
+one-liners NNS
+polishing VBG NN VBG|NN
+Nucor NNP
+gut-flattening JJ
+clattering VBG
+value-story JJ
+topography NN
+oughta MD NN
+Kinnock NNP
+Evans-Black NNP
+Metrocorp NNP
+off-the-shelf JJ
+Strobel NNP
+MicroAge NNP
+Publicly RB
+scholar-businessman NN
+stonemason NN
+dominate VB VBP
+bolo NN
+hindering VBG JJ
+Fixit NNP
+refugee NN
+Pasha NNP
+inserts NNS
+Heavily RB
+Rover NNP
+motorists NNS
+fifty-nine CD
+skipping VBG
+Fe NNP
+Lumina NNP
+timing NN VBG
+bio-assay NN
+Maitland NNP
+erasable JJ
+File NN VB
+Facilitatory JJ
+bee NN
+Benediction NNP
+unleavened JJ
+Reacting VBG
+McChicken NNP
+manhours NNS
+Unused JJ
+Ong NNP
+source NN
+inescapable JJ
+firewater NN
+radiomen NNS
+evaluates VBZ
+non-warranty NN
+Disaffiliation NN
+aborigines NNS
+Goodbody NNP
+treasurers NNS
+unabatingly RB
+relentlessly RB
+vigor NN
+Cracklin NNP
+hare NN
+supercolliding VBG
+entails VBZ
+Fooled VBN
+Nibelungenlied NNP
+Schroeder NNP
+variable-rate JJ
+closet NN
+unblemished JJ
+Hints NNS
+Shamu NNP
+Marley NNP
+tad NN RB
+Scottish NNP JJ
+waterside NN
+Unconstitutional JJ
+illustrations NNS
+license NN VBP VB
+McInroy NNP
+bete JJ
+Dryfoos NNP
+ill JJ NNS NN RB
+interpret VB VBP
+Mylar NNP
+Stalag NNP
+bishopry NN
+shifters NNS
+Fogler NNP
+Buries VBZ
+Detectives NNP
+AgResource NNP
+powertrain NN
+evenutally RB
+liquefied VBN
+Palatine NNP
+Analytic NNP
+ostinatos NNS
+chronicler NN
+dislodge VB
+operator NN
+jewel-bright RB
+Baltimore-Washington NNP
+ellipses NNS
+strips NNS VBZ
+soldering JJ VBG
+death-backed JJ
+Andrena NNP
+derelicts NNS
+Mach NN
+Stena-Tiphook NNP
+Bante NNP
+out-group NN
+Sutermeister NNP
+Annualized VBN JJ
+annoys VBZ
+bond NN JJ
+Scotia-McLeod NNP
+sews VBZ
+casino-hotel NN NN|JJ
+quill-pen JJ
+sworn VBN JJ
+oil-covered JJ
+airlock NN
+considerable JJ
+revenue-losing JJ
+Polyphosphates NNS
+blander JJR
+flng VB
+Mayne NNP
+month-earlier JJ
+sunshiny JJ
+barest JJS
+vigorous JJ
+Table NN NNP
+Colzani NNP
+chewed VBD VBN
+Sinkula NNP
+GEC NNP
+Pines NNP
+traffickers NNS
+Hammerton NNP
+turbans NNS
+Source:New NNP
+parity NN
+Heller\ NNP
+bathed VBN VBD
+Congratulations NNS UH
+non-direct JJ
+fast-forward JJ
+mutates VBZ
+CityFed NNP
+Goldwyn NNP
+Legislating VBG
+accelerated VBN JJ VBD
+Computer-generated JJ
+pullback NN
+Towle NNP
+Stockhausen NNP
+half-owned JJ
+EVEREX NNP
+madrigaling NN
+teachings NNS
+Goldenthal NNP
+Hoenlein NNP
+Francaise NNP
+Crunch VB NN
+cryptic JJ
+platforms NNS
+afterthought NN
+expressive JJ
+all-over IN
+marionettes NNS
+Chorrillos NNP
+longitudinal JJ
+staged VBD VBN
+DEAE-cellulose-treated NN
+ship-to-surface NN
+Revivals NNS
+aspens NNS
+sound NN JJ RB VB VBP VBZ
+mid-1991 CD NN
+debut NN VB VBP
+hero-worship NN
+Cosmetic NNP
+rancher NN
+Shape NNP NN
+mid-1987 NN CD
+raw-sugar JJ
+wheellike JJ
+previous-month JJ
+domicile NN
+Sternenberg NNP
+preisolated VBN
+Imam NNP
+many-bodied JJ
+Durrell NNP
+SPENT VBD
+DTF NN
+salt-fractionation NN
+disturbing JJ VBG
+Mail-order NN
+Ballhaus NNP
+availabilities NNS
+credit-services NNS
+blazer NN
+WNET NNP
+global-funds JJ
+roughish JJ
+look-see NN
+Mayors NNS
+Advisor NNP
+Althea NNP
+Agri NNP
+Scot NNP NN
+fault-tolerant JJ
+Pershare JJ
+minutes NNS
+mechanics NNS
+Kleinwort NNP
+Sassy NNP JJ
+a'show VB
+light-bulb NN
+imperilled VBN
+year-'round JJ NN
+Lippmann NNP
+full-banded JJ
+sausage NN
+spasms NNS
+turning VBG JJ NN
+Swinging VBG
+concentration NN
+circumscribed JJ
+gentian NN
+cheap-wine JJ
+clerics NNS
+repackage VB
+chops NNS
+solid JJ NN RB
+bastion NN
+operina NN
+appetizer NN
+Pantasaph NNP
+cachet NN
+sewers NNS
+IV NNP
+criticisms NNS
+rates NNS VBZ
+experiences NNS VBZ
+ethyl NN
+Micelles NNS
+Rawson NNP
+Laurene NNP
+yelps NNS
+gelatin-like JJ
+chronicles VBZ NNS
+uptake NN
+kedgeree NN
+monkeys NNS
+accounting-rules JJ
+Telesystems NNP NNS
+holiday-season JJ NN
+--forcing JJ
+pry VB
+dovetails VBZ
+The'lock-in JJ
+Smith-Kline NNP
+predatory JJ
+Diligence NNP
+lances NNS
+Purloined NNP
+volunteerism NN
+contingencies NNS
+Nagelvoort NNP
+Gums NNS
+PAN NNP
+lonelier RBR
+gut NN VB
+SEVEN-UP NNP
+maddeningly RB
+multiplicity NN
+mantlepiece NN
+Succeed NNP
+Carreon NNP
+Forerunner NNP
+horsemen NNS
+Conn NNP
+Sousa NNP
+subjecting VBG
+taunted VBD VBN
+Ohbayashi NNP NNS
+Anlage NNP
+elastomers NNS
+Orthopedic NNP
+cafeteria-style JJ
+unleashing VBG NN
+perpetuated VBN
+Senorita NNP
+'`` ``
+AFRICAN-AMERICAN JJ
+Konzerthaus NNP
+mutterings NNS
+Movements NNS
+mailing NN VBG
+deferred VBN VBD JJ
+brokered JJ VBD VBN
+riveting VBG JJ
+summoned VBN VBD
+Centennial NNP
+pupated VBN
+prelude NN
+polarization NN
+yardage NN
+operator-services NNS
+Gyllensten NNP
+fuel-guzzling JJ
+sidelining VBG
+Lazar NNP
+blubber NN
+plus CC IN JJ NN RB
+Randall NNP
+relieved VBN VBD JJ
+homogenized VBN
+Homeric NNP JJ
+ineffectiveness NN
+pills NNS
+rubies NNS
+surveillance NN
+calculating VBG JJ NN
+soybean-meal NN
+Summers NNP
+gurgle NN
+Alamein NNP
+Homer NNP
+fund NN VBP VB
+recreational-vehicle NN JJ
+Scotch NNP JJ NN
+cleanse VB
+Caspita NNP
+engagingly RB
+hindsight NN
+melt-textured JJ
+romancers NNS
+peering VBG
+eighty-four CD
+defecting VBG
+fatal JJ
+Oil-field NN
+subscribers NNS
+recognizes VBZ
+Egan NNP
+Haynie NNP
+emigrating VBG
+adventurously RB
+antisocial JJ
+silver NN JJ JJR
+Finalists NNS
+overtures NNS
+philosophized VBD
+CANADIAN JJ
+paradigm NN
+matt NN
+saw-horse NN
+dismembering VBG
+hedonistic JJ
+sobered VBN VBD
+Ripplemeyer NNP
+Sport NNP NN
+Seen VBN
+Solna NNP
+greenhouses NNS
+Drunk JJ NNP
+nudes NNS
+relief NN
+clamshells NNS
+Easily RB
+Peaceable NNP JJ
+extra-thick JJ
+Steer VB
+joyless JJ
+permission NN
+mortgage-securities JJ
+unnerving VBG JJ
+residues NNS
+obstruction NN
+GOVERNMENT NN
+emancipate VB
+interferes VBZ
+print-out JJ
+Iverson NNP
+Notably RB
+fixes NNS
+DSL NNP
+Important JJ NNP
+infestation NN
+Thin JJ NNP
+poignantly RB
+op NNP NN
+bushwhackin JJ
+Ichi NNP
+Container NNP
+Painters NNS
+tiger NN
+Welko NNP
+Varani NNP
+TWX NNP
+NME NNP
+Raisa NNP
+industrialize VB
+franchisor NN
+surrealistic JJ
+hermeneutics NN
+Ek NNP
+acute JJ NN
+mind-numbing JJ
+Canada-U.S. NNP
+Suns NNPS NNS
+Philistines NNPS
+Napoleonic JJ
+participant NN
+widowhood NN
+Yin-Yang NNP
+implant NN VB
+MacWeek NNP
+lower-priority JJ
+berserk JJ RB
+Teller NNP NN
+jocose JJ
+horrified VBN JJ
+Montaigne NNP
+Calpers NNP
+afflictions NNS
+Heart-measuring JJ
+clique NN
+non-Mexican JJ
+forklifts NNS
+UTL JJ
+car-parts JJ
+mid-1992 NN
+Pushing VBG
+medical-practice NN
+Clapping VBG
+Salem NNP
+beauty-idiom NN
+meritless JJ
+Pupil NN
+mid-1988 CD NN
+Nahas NNP
+puffery NN
+enticements NNS
+price-cutting NN JJ
+superimpose VB VBP
+Manzanec NNP
+professedly RB
+Lonnie NNP
+skirts NNS VBZ
+Guerin NNP
+deliver VB VBP
+Borax NNP
+Kikuyu NNP
+sawing NN
+internationalizing VBG
+lion's-head NN
+Dworkin NNP
+Polyanka NNP
+Forgoing VBG
+ostentatious JJ
+pharmacist NN
+aping VBG
+Easton NNP
+idleness NN
+Blue-chips NNS
+Method NN
+Chef NNP
+intellectus FW
+Angelina NNP
+f'ovuh VB
+seisho FW
+valor NN
+tae FW
+Play NNP NN VB
+registrant NN
+Wednesdays NNS NNPS
+vulture NN
+institutional JJ
+republics NNS
+LaFalce NNP
+bone NN
+ranches NNS
+Colonel NNP NN
+Dingell-Waxman NNP
+Feess NNP
+corporates NNS
+dispossessed VBN JJ
+record-keeping NN JJ
+Judeo-Christian JJ
+order-processing JJ
+once-distinct JJ
+silken JJ
+Menem NNP
+self-dictate NN
+Chairmen NNS
+leered VBD
+hurdled VBD
+twice RB JJ
+Cagayan NNP
+toxicology NN
+Euphoria NNP
+queued JJ
+amelioration NN
+Volk NNP
+Monroe NNP
+international-operations NNS
+Buckles NNP
+matrix NN
+Philippine-studies NN
+histrionics NNS
+middle-range JJ
+RATES NNS NNPS NNP
+reverential JJ
+in-office JJ
+Ababa NNP
+FHP NNP
+indifference NN
+TV-Cable NNP
+hiring VBG NN
+bakeries NNS
+Cavalli NNP
+Squadron NNP
+courage NN
+upland JJ RB
+car-owners NNS
+morass NN
+Leagues NNPS
+GERMANS NNPS NNS NN
+Selkirkers NNS
+reoffering VBG NN
+non-violent JJ
+Wako NNP
+gorged VBD
+Already RB
+Beacon NNP
+overreaches VBZ
+Chilmark NNP
+the'magic JJ
+newsroom NN
+Goldang UH
+OLYMPIA NNP
+J.T. NNP
+appointed VBN JJ VBD
+Hunting NN
+inversion NN
+billionnaire NN
+ghastly JJ
+spirited JJ VBN
+kolkhozes NNS
+Stock-market NN
+Ga NNP
+Bayne NNP
+stirringly RB
+Needs NNS
+pre-consumption NN
+Lock NNP
+Roman NNP JJ NNPS
+crime\/comedy NN
+Peebles NNP
+Garrick NNP
+waffled VBD VBN
+MB NNP
+Purnick NNP
+Leming NNP
+prophesied VBD VBN
+erected VBN VBD
+Goriot NNP
+instrument NN
+DM100 CD
+slowed VBD VBN
+Guide NNP NN
+raiding VBG NN
+near-Balkanization NN
+glares VBZ
+Steamship NNP
+roomed VBD
+Superstate NNP
+Seimei NNP
+Denied VBN
+exclamation NN
+undergirding NN
+modus FW
+Probing VBG
+drought-seared JJ
+sonny-boy NN
+Sanraku NNP
+Holleran NNP
+Tack-solder VB
+aforementioned JJ VBN
+TUMBLE JJ
+Sophias NNP
+Braunreuther NNP
+Sushi NN
+Maxxam NNP
+amounted VBD VBN
+Detente NN
+breathe VB VBP
+lesions NNS
+Bogner NNP
+Buffets NNS
+nausea NN
+steels NNS
+Unitas NNP
+pavement NN
+alleviates VBZ
+Taster NNP
+Northfield NNP
+hound NN
+non-market NN
+Underberg NNP
+Laundered VBN
+forth RB RP
+department\/office NN
+pre-marital JJ
+minced VBN
+sportin VBG
+partook VBP
+singers NNS
+JONES NNP
+Zurkuhlen NNP
+Soapy JJ
+financier NN
+Latham NNP
+passageway NN
+disputable JJ
+U.S.-SOVIET JJ
+Greif NNP
+Marlborough NNP
+Mudge NNP
+Twinsburg NNP
+half-brothers NNS
+Transportation NNP NN
+Physician NN NNP
+Kucharski NNP
+interprovincial JJ
+clockwork NN
+slighting VBG
+Rill NNP
+Ten-year JJ
+butchering NN
+cancellations NNS
+gweilos FW
+Block NNP NN
+Crosser NNP
+negligent JJ
+panorama NN
+aim NN VBP VB
+strung VBN VBD
+Cyclades NNS
+agriculturals NNS
+InterVoice NNP
+ganglion NN
+portray VB VBP
+Steven NNP
+Nowhere RB
+impugning VBG
+chambre FW
+dollar-related JJ
+great-grandfather NN
+Quest NNP
+DM2,300 CD
+Cabria NNP
+million-member JJ
+smoke-filled JJ
+greed NN
+Homes NNP NNS NNPS
+Consolidation NN
+mid-1989 NN
+Rolled VBN
+Kroller-Muller NNP
+rumble NN VBP
+Lease NNP NN
+CPTs NNS
+Schraffts NNP
+Modrow NNP
+unburned JJ
+unlovely JJ
+societal JJ
+gates NNS VBZ
+thallium NN
+P\/E NNP
+Sevigny NNP
+initiatiors NNS
+Capote NNP
+confidante NN
+Neal NNP
+Anselm NNP
+Tray NNP
+cheated VBN JJ VBD
+mulatto NN
+treacherous JJ
+apparition NN
+Madame NNP NN
+prominently RB
+horrifyingly RB
+slow-building JJ
+Dams NNS
+softball NN
+rump NN JJ
+repositories NNS
+linking VBG NN
+Klamath NNP
+indisposed JJ
+FDIC NNP
+lasted VBD VBN
+widths NNS
+co-worker NN
+inpatient NN
+lower-growth JJ
+L.L. NNP
+relativity NN
+Mrads NNS
+quarts NNS
+floc NN
+seventy-foot JJ
+Dennehy NNP
+cookbooks NNS
+Avondale NNP
+readjust VB
+Chiba NNP
+gynecology NN
+jail NN VB
+Schlossberg NNP
+colonic JJ
+light-industrial JJ
+Atherton NNP
+ingot NN
+rubber-stamped JJ
+Kabul NNP
+market-making NN JJ
+Instructors NNS
+persuasion NN
+Kloske NNP
+baptisms NNS
+plight NN
+Geocentricism NN
+Skeoch NNP
+autobiography NN
+factory NN JJ
+yeah UH NN
+technologically RB
+joints NNS
+Bacchus NNP
+Temple-Inland NNP
+Feralloys NNP
+Gentlemen NNS NNP
+necks NNS
+Robie NNP
+nothin NN VBG
+bewilders VBZ
+tasty JJ
+amphetamines NNS
+self-crimination NN
+Dec. NNP NN VB
+leaky JJ
+quick-service JJ
+Tillich NNP
+alarmist JJ
+afflict VB
+Anti-Ballistic-Missile JJ
+appointee NN
+morning-frightened JJ
+divan-like JJ
+Skulls NNS
+hyping VBG NN
+Greensboro NNP
+now-shuttered JJ
+dosed VBN VBD
+negroes NNPS
+decisive JJ
+importance NN
+Oooo UH
+B.C. NN FW NNP
+Ruanda-Urundi NNP
+guarantees NNS VBZ
+Connaught NNP NN
+Sabha NNP
+DSM NNP
+Packaging NNP NN
+already-strained JJ
+Nykvist NNP
+hometown NN JJ
+tamper VB
+Sequa NNP
+BELEAGUERED JJ
+policymaking JJ
+Ibaraki NNP
+fullbacking VBG
+unsalted JJ
+self-righteousness NN
+Inmates NNS NNPS
+Malacca NNP
+Egalitarianism NNP
+kilobytes NNS
+Fellowship NNP NN
+conditioners NNS
+preying VBG
+pinch NN VB
+deleted VBN VBD
+hyper-trader NN
+earnings-forecast JJ
+too-naked JJ
+punnished VBD VBN
+Jacoby NNP
+question NN VB VBP
+Ohga NNP
+magisterially RB
+Catching VBG
+Plumrose NNP
+breeds NNS VBZ
+aryl NN
+mainline JJ NN
+EPA NNP
+MAPCO NNP
+aboveground JJ
+Invest VB NNP VBP
+holler VB
+Bottega NNP
+ahs UH
+transaminase NN
+thermocouples NNS
+businessman NN
+remote-control JJ
+Satisfying VBG
+Sherren NNP
+go-around NN
+stock-option NN JJ
+Daly NNP
+color-field JJ
+Soups NNP
+arsenals NNS
+defected VBD VBN
+foolhardy JJ
+S.S.R. NNP
+controversy-prone JJ
+Keane NNP
+predominately RB
+Hubbard NNP
+El NNP
+Kippur NNP
+deficit-ridden JJ
+Soothing VBG
+Arbogast NNP
+beg VBP VB
+Dictation NN
+choking VBG JJ NN
+Rescues NNS
+caged VBN
+FAXM NNP
+surfactants NNS
+Chemcat NNP
+managing VBG JJ NN
+HANNIFIN NNP
+Nogol NNP
+Q. NNP
+shirtsleeve NN
+sprinkle VB NN VBP
+Compaore NNP
+Peterhouse NNP
+spoon NN
+othe JJ
+less-than-altruistic JJ
+talents NNS
+UVB NN
+quelling NN VBG
+Katzenjammer NNP
+debt-relief NN
+slicing VBG
+outcome NN
+coltish JJ
+SERVICES NNP NNPS NNS
+lobule NN
+analogues NNS
+bobbles NNS
+swiftly RB
+Buffett NNP
+worth-while JJ
+too-shiny JJ
+crow NN VB
+sugar-coated JJ
+absentmindedly RB
+subsiding VBG
+lifeline NN
+N.D. NNP
+Promise NNP
+GFSA NNP
+Prayer NNP NN
+reef NN
+translator NN
+Heyford NNP
+Corrections NNP NNPS NNS
+unavoidably RB
+Sentelle NNP
+Mortimer NNP
+Eve NNP
+Jesse NNP
+autobiographical JJ
+sailorly RB
+Rolex NNP
+Kassem NNP
+impugned VBN
+electrosurgical JJ
+Gas-cooled JJ
+Peeter NNP
+Hornung NNP
+X-rays NNS
+razor-thin JJ
+Inauguration NNP NN
+half-staff JJ
+Shepherds NNPS
+muscle-shaping JJ
+Entrekin NNP
+greatcoat NN
+Kyzyl NNP
+cigaret NN
+Gallitzin NNP
+Tastes NNPS NNS
+winter NN
+footballs NNS
+DowBrands NNP
+Southdown NNP
+paide VBN
+molasses NN
+diplomatic JJ
+Rainbow NNP
+sweethearts NNS
+Galanter NNP
+NMTBA NNP
+expenditure NN
+MacDonald NNP
+clipboard NN
+conferring VBG
+sharkskin NN
+Lovingly RB
+strafing VBG
+busing VBG
+vicissitudes NNS
+shrouding VBG
+Endeavor VB NNP
+water-balance NN
+pacers NNS
+eternity NN
+headstands NNS
+full-on JJ
+shrouded VBN VBD
+Lamy-Lutti NNP
+Strident JJ
+trawler NN
+Pierce NNP VB
+Ala. NNP
+IFIL NNP
+Reduction NNP NN
+ex-Tory NN
+autocracy NN
+Poachers NNS
+drama NN
+Git VB
+Edley NNP
+VISUALIZING VBG
+rays NNS
+one-half NN CD JJ
+Mendell NNP
+viz. NN
+VNR NNP
+faultlines NNS
+fiscally RB
+Brahms NNP
+complainant NN
+psychologist NN
+radius NN
+air-tickets NNS
+koan FW
+unstimulated JJ
+bootlegging NN
+EOG NNP
+Yes UH NN RB NNP
+taping NN VBG
+borough NN
+Vihon NNP
+Regulative JJ
+Milford NNP
+TASTY JJ
+Okuma NNP
+bandied VBN
+danger NN
+USS NNP
+Delicious NNP
+Opposite IN JJ
+Preparation NN NNP
+grays NNS
+magnification NN
+sparking VBG
+Gansevoort NNP
+Early-retirement NN
+Weekes NNP
+MC NNP
+Eichler NNP
+Villard NNP
+fall-outs NNS
+gregarious JJ
+DTH NNP
+Frankly RB NNP
+KangaROOS NNP
+limited-partnership NN JJ
+S$ $
+Korean-American JJ NNP
+alternates VBZ NNS
+Marathon NNP
+reacquire VB
+turboprop NN
+unencumbered JJ
+vegetation NN
+chose VBD
+Whittlesey NNP
+Buckman NNP
+Capable JJ
+Haworth NNP
+Friendly NNP
+penny NN
+Carena NNP
+Goals NNPS
+Palestinians NNPS
+transmogrified VBD VBN
+thefts NNS
+gluttons NNS
+outfits NN NNS
+talked VBD VBN
+profligate JJ
+self-expression NN
+Doolin NNP
+sidesteps VBZ
+officialdom NN
+check-ups NNS
+Benson NNP
+knew VBD
+rim-fires NNS NN
+Pergolesi NNP
+pitilessly RB
+Money-fund NN JJ
+Ethical NNP
+Made VBN NNP VB
+intimidates VBZ
+confront VB VBP
+rail-car NN
+Jacki NNP
+Kai-shek NNP
+donning VBG
+Porta-Potti NNP
+reminisced VBD VBN
+Glendora NNP
+Hendry NNP
+Dakota NNP
+hard-to-get JJ
+citric JJ
+snout NN
+platted VBN
+Coronado NNP
+Susie NNP NN
+pre-selected VBN JJ
+Sihanouk NNP
+blacked-in JJ
+overweighted VBN
+extinguished VBN
+butlers NNS
+resettable JJ
+COMMENTS NNS
+STUDENTS NNS
+Journal\/Europe NNP
+Boost VB VBP NNP
+Toodle NNP
+degrees NNS
+shutters NNS
+recast VB
+husband-wife JJ
+four-page JJ
+Definite JJ
+cane NN
+PAP NNP
+non-deductible JJ
+eight-inch JJ
+irremediable JJ
+uneconomic JJ
+robed VBN
+high-fiber JJ
+cockpits NNS
+high-current JJ
+untarnished JJ
+respiration... :
+humilation NN
+inter-American JJ
+sunbaked JJ
+Maximilian NNP
+fertilizations NNS
+expediency NN
+Walk VB VBP NN
+spy-chasing NN
+Donaghy NNP
+Legion NNP
+Hugoton NNP
+WTXF NNP
+Crossman NNP
+tales NNS
+Wire NNP NN
+clutches NNS VBZ
+Kennametal NNP
+pounce VB
+freeman NN
+summer-holiday JJ
+arms-sales JJ
+unsuspected JJ
+mid-1995 NN
+escheat NN
+ethers NNS
+barometer NN
+muzzle NN VB
+Duty-Free NNP
+Fights NNS
+perspiring JJ
+guitar-twanging JJ
+larger-than-expected JJ
+narcotics NNS NN
+epicycles NNS
+Martyn NNP
+areaways NNS
+Thyroglobulin NN
+Touring VBG NN
+unequally RB
+mini-studio NN
+Whipple NNP
+pinch-hitter NN
+Populaire NNP
+general JJ NN
+Coupled VBN
+Meinders NNP
+twitched VBD
+regulators NNS VBZ
+relics NNS
+IX CD
+meditating VBG
+corpses NNS
+endorsing VBG NN
+DiCara NNP
+BRIDGEPORT NNP
+hasps NNS
+first-period JJ
+FEAR VBP NN
+Vern NNP
+anti-abortion JJ NN
+Toss VB
+Cascades NNP
+WestAir NNP
+Impose VB
+wonderful JJ
+test-marketed VBD VBN JJ
+Leche NNP
+clozapine NN
+Galipault NNP
+searchlight NN
+micrograms NNS
+respite NN
+Hen NN
+Kanin NNP
+decoy NN
+Mack NNP
+Lichtenstein NNP
+non-staple JJ
+Thence RB
+echelon NN
+dietary JJ
+Tiphook NNP
+hyper JJ
+homosexuals NNS
+ticker NN
+uneconomical JJ
+terms NNS VBZ
+dealership NN
+Territories NNP NNPS
+communal JJ
+nosebag NN
+Drums NNS
+Parks NNP NNPS NNS
+unreconstructed JJ
+Bolshevism NNP
+oratorical JJ
+Dirt NN
+Odetics NNP
+clarifications NNS
+tar-soaked JJ
+detached VBN JJ VBD
+Metruh NNP
+animized VBN
+don't's NNS
+Capitalism NN NNP
+anaconda NN
+Theaters NNS
+Suominen NNP
+dreamlike JJ
+Somewhere RB NNP NN
+Special JJ NNP
+kingpin NN
+Scarface NNP
+Vries NNP
+impounded VBN
+crutches NNS
+inflationary JJ
+Tones NNPS
+anciently RB
+Samba NNP
+styling NN VBG
+sales-building JJ
+jewels NNS
+Dr NNP
+sharpness NN
+Fontainbleau NNP
+League-sponsored JJ
+January NNP
+pyschiatrist NN
+high-protein JJ
+maggot-covered JJ
+Wheelock NNP
+specially-designated JJ
+alerts VBZ NNS
+Toronado NNP
+antibody-based JJ
+Gienow NNP
+Annuities NNS
+three-meter-high JJ
+Discovering VBG
+Aljian NNP
+promoter NN
+multi-colored JJ
+indicative JJ
+Markoe NNP
+Azoff NNP
+Sochi NNP
+ladle NN
+malted VBN
+Northerners NNPS NNS
+Cook NNP NN VB
+sync NN
+influenza-pneumonia JJ
+Archbishop NNP
+Bledsoe NNP
+hounded VBD
+splashes VBZ NNS
+Mundt NNP
+implementing VBG
+computer-aided-software-engineering NN
+Campeau-unit JJ
+influent JJ NN
+McLoughlin NNP
+specification NN
+Boucheron NNP
+splash NN
+Domitian NNP
+enterprises NNS
+self-referential JJ
+Floyd NNP
+Benjamin NNP
+Takakura NNP
+luxury-car NN JJ
+tag NN VB
+teleology NN
+Korneyeva NNP
+cupboard NN
+Renaissance-style JJ
+doctor-originated JJ
+or CC NNP
+charlatans NNS
+metamorphic JJ
+Jeri NNP
+presumes VBZ
+unpopular JJ
+daintily RB
+claptrap NN
+tailspin NN
+mc. NN
+Chevaline NNP
+seekingly RB
+Bayreuth NNP
+Dorgen NNP
+Nonsmokers NNP
+postulates NNS
+three-front JJ
+Christopoulos NNP
+Tory NNP JJ
+circulatory JJ
+CW-capable JJ
+ceasing VBG
+extrovert NN
+recalls VBZ NNS
+Fragin NNP
+Nofzinger NNP
+KN NNP
+floppy-tie JJ
+etymological JJ
+Ares NNP
+beseech VBP
+logically RB
+bar-buddy NN
+popularized VBN VBD
+newspaper NN
+Brightman NNP
+Bramante NNP
+thumb-sucking NN
+misapprehension NN
+H.M.S. NNP
+householder NN
+whitetail NN
+rollickingly RB
+Ciba-Geigy\ JJ
+creditcard NN
+Linvure NNP
+side-step VBP
+Soleil NNP
+Unruh NNP
+Tammany NNP
+Broadcasters NNS NNP NNPS
+EMS NNP
+glows NNS
+barnsful NN
+Thaxters NNPS
+Ultra NNP
+Raft NN NNP
+looped VBD
+Issue NN NNP VB
+Czerny NNP
+elasticity NN
+Until IN NNP
+Tropics NNPS
+at-bats NNS
+pre-cast JJ
+durables NNS
+terrain NN
+Increases NNS VBZ
+bogeyed VBD
+Houston-Dallas JJ
+sagging VBG JJ NN VBG|JJ
+payroll-paring JJ
+vincit FW
+Hashimoto NNP
+Chabrier NNP
+Voyagers. NNPS
+Superslim NNP
+pretty-much JJ
+constituting VBG
+Chadli NNP
+Kahiltna NNP
+Luth NNP
+Caffedrine NNP
+off-road JJ
+Loeb NNP
+cash-hungry JJ
+Aquitaine NNP
+by-election NN JJ
+bioequivalent JJ
+intendant NN
+Unemployment NN NNP
+unacquainted VBN
+Waters NNP
+Euronotes NNS
+TRACY-LOCKE NNP
+super-headache NN
+circuit NN
+Bearings NNP
+Castlegar NNP
+Berridge NNP
+after-dinner JJ
+Gastineau NNP
+supplied VBN VBD
+defect NN VB
+Gaisman NNP
+riverfront NN
+magnetism NN
+flames NNS
+Yet RB RB|CC CC
+orchard NN
+anti-Turkish JJ
+Haber NNP
+Argus NNP
+Foamed NNP
+last-gasp JJ
+Ghoreyeb NNP
+coziness NN
+Alsagoray NNP
+Sarason NNP
+UST NNP
+FreudToy NNP
+police NN VB NNS
+Elderly JJ
+delphic JJ
+Hattie NNP
+wittingly RB
+greenly RB
+Handling VBG
+Orvil NNP
+tolls NNS
+Watling NNP
+Numb JJ
+trembled VBD
+Eurocommercial JJ
+year-over-year JJ
+Failing VBG
+constitutionality NN
+judiciary NN JJ
+D-marks NNS
+louder JJR RB RBR
+Mediterranean-inspired JJ
+trampling VBG NN
+dual-trading NN
+Diaghileff NNP
+Stakes NNP NNS
+Caracas NNP
+well-behaved JJ
+SESCO NNP
+disorderliness NN
+floe NN
+frowns VBZ
+pasting VBG NN
+Souphanouvong NNP
+Scotland NNP
+minibars NNS
+exasperate VB
+Beethoven NNP
+Station NNP
+winners NNS
+new-found JJ
+quarterbacks NNS
+roomful NN
+showman NN
+overinsistent JJ
+lunging VBG
+Berthold NNP
+complementary JJ
+Sary-Shagan NNP
+school-age JJ
+repentant JJ
+Credietbank NNP
+Round NNP JJ NN
+higher-level JJ
+remittances NNS
+caveats NNS
+inns NNS
+misses VBZ NNS
+cab NN
+relict NN
+sequence NN
+Oranges NNPS NNS
+facilitate VB VBP
+references NNS
+three-body JJ
+likening VBG
+mailgram NN
+Lowndes NNP
+clam NN VBP
+sputter VB VBP
+preferred-dividend JJ
+entourage NN
+triple-Crated JJ
+impressively RB
+contract-food NN
+Kron NNP
+Pay-Per-View NNP
+Wall NNP NN NNS
+anomic JJ
+promotes VBZ
+shopkeeper NN
+directories NNS
+Foiles NNP
+burying VBG
+merchantbanking NN
+telecommunication NN
+recommendatons NNS
+McMillin NNP
+lawns NNS
+Messner NNP
+Industrialistes NNP
+over-ambition NN
+Suckow NNP
+overseas JJ NN RB
+Tesoro NNP
+Zalles NNP
+attics NNS
+semiannually RB
+wood-grained JJ
+fund-raising NN JJ
+Frisch NNP
+nest NN VBP
+mail-sorting VBG
+impacted VBN JJ
+lies VBZ NNS
+pennystock NN
+souls NNS
+longitudes NNS
+third-largest JJ
+Beesemyers NNP
+GDL NNP
+mismanagement NN
+Vero NNP
+tootley-toot-tootled VBN
+Fryar NNP
+n'th JJ
+Anchorite NN
+Orbis NNP
+perfect JJ
+Guerrillas NNS NNPS
+WHX NNP
+Thankful JJ
+Parental JJ
+scenery NN
+stables NNS
+Gotta VB NNP
+saying VBG NN
+Roomberg NNP
+IgG NNP
+zoom VB
+Ventura NNP
+cruel JJ
+Herod NNP
+bulks VBZ
+mistakenly RB
+Burroughs-Wellcome NNP
+W-2s NNS
+metal-products NNS
+solvent JJ NN
+Coeditors NNS
+palmed VBD
+Volatility NN
+cannisters NNS
+unambiguity NN
+Langner NNP
+way-out JJ
+Relatively RB
+Fahd NNP
+tax-driven JJ
+unmistakably RB
+multibilliondollar JJ
+emigrants NNS
+Podgers NNS
+three-game JJ
+velour NN
+proportionately RB
+Union NNP JJ NN
+Centrally RB
+microscope NN
+aerogenes NNS
+HDTVs NNS
+bridgeheads NNS
+federal-formula JJ
+Excluded VBN
+ambiance NN
+lecture NN VBP VB
+heavy-handed JJ
+E.P. NN
+royalty-free JJ
+narrow-minded JJ
+unfetter VB
+Fireside NNP
+sharers NNS
+Stanger NNP
+SPORTS NNS
+Surely RB
+strippers NNS
+sniper NN
+Tree NNP NN
+Kira NNP
+Falwell-like JJ
+grandchildren NNS
+candles NNS
+ministers NNS
+Duffus NNP
+Abiomed NNP
+bonzes NNS
+twenty-five-year-old JJ
+Fremont NNP
+publications NNS
+Cool JJ VB NNP
+rails NNS VBZ
+Havel NNP
+Civic NNP JJ
+Yaklin NNP
+Glowering VBG
+undulate VB VBP
+two-seat JJ
+Adaptation NN
+square-mile JJ
+Edmar NNP
+Payton NNP
+bleacher-type JJ
+rhythms NNS
+EPC NNP
+SUSPENDED VBD
+fringe NN JJ
+outgrip VB
+gether VB
+plutonium-based JJ
+MRI NNP
+Kazakh NNP
+lower-cost JJ JJR
+faster-growing JJR
+Resignedly RB
+Communist-led JJ
+cladding NN
+coupler NN
+benefactors NNS
+yawl NN
+Cho-Liang NNP
+Rowan NNP
+National NNP NNPS JJ
+shrewish JJ
+Pollin NNP
+inter-relationships NNS
+U.S.-Soviet JJ NNP
+income-tax NN JJ
+consderations NNS
+aqueducts NNS
+instrument-jammed JJ
+Rosalind NNP
+butcher NN
+last-second JJ
+ostracized VBN
+quotes NNS VBZ
+woodwork NN
+Bio-Response NNP
+bureacracy NN
+Visibility NN
+interment NN
+Insinuations NNS
+statute NN
+Frawley NNP
+Yokich NNP
+Ds NNS
+Mission NNP NN
+innovative JJ
+deli NNS
+Lyphomed NNP
+Y-gyro NN
+treasury-management NN
+anti-Noriega JJ
+home-shopping NN
+iconoclasm NN
+Biochemistry NNP
+myths NNS
+Bisiewicz NNP
+Hymn NN NNP
+Stirling NNP
+marketing-data NNS
+Supporting VBG
+fractured VBN JJ VBD
+yearend NN
+McCutchen NNP
+gram NN
+Wacoal NNP
+Sergei NNP
+turgid JJ
+News\/Retrieval NNP
+Kurland NNP
+side NN VBP JJ RB VB
+Schoch NNP
+Tempest NNP
+Cairoli NNP
+Mortar NNP NN
+OEX NNP
+radiopharmaceutical JJ
+Maged NNP
+disciplined VBN VBD JJ
+Haldeman NNP
+Raise VB NNP
+Economy NNP NN
+liquor-crazed JJ
+Django NNP
+Uh-huh UH
+vaccinating VBG
+Kornick NNP
+Mitsukoshi NNP
+morally RB
+proneness NN
+AGREES VBZ
+academies NNS
+CALL NN JJ VB NNP NN|JJ
+rewrite VB NN
+tongue-in-cheek JJ RB
+re-enact VB
+Hironaka NNP
+zealous JJ
+Texas-Louisiana NNP
+allocation NN
+mawkish JJ
+blemishes NNS
+Scrivener NNP
+PUTS NNPS
+os NN
+Bacarella NNP
+Providing VBG
+Axioms NNS
+nimbler JJR
+linguistically RB
+crabapple NN
+En NNP IN
+retraining NN VBG
+alongside IN RB
+declaring VBG
+Toto NNP
+demoted VBN VBD
+pleadings NNS
+traditionalism NN
+stealthy JJ
+mammary JJ
+Beadle NNP
+Poorer JJR
+X-MP NNP
+crazing VBG
+Preferably RB
+Vancouver NNP
+invalids NNS
+favorably RB
+Tumazos NNP
+nominees NNS
+uni-directional JJ
+Orchestral NNP
+Lloyds NNP
+Stokely NNP
+Standard-Times NNP
+Rabbi NNP
+pantomime NN VBP
+Jolivet NNP
+Creditors NNS
+unpicturesque JJ
+catfish NN
+birthrate NN
+OUTSIDE JJ
+indulging VBG
+plucking VBG
+precincts NNS
+Mother NNP NN
+public-audit JJ
+firestorm NN
+Mendoza NNP
+calligraphy NN
+Tankers NNS
+browning VBG
+tragedies NNS
+compensated VBN VBD
+downside NN JJ
+Charmer NNP
+rawhide NN
+Corollas NNPS
+Beaux NNP
+bleary JJ
+stain-resistant JJ
+Geico NNP
+Morover JJR
+Confederations NNPS
+Hilder NNP
+sprinting VBG
+Wildenstein NNP
+ripple NN VB VBP JJ
+rimless JJ
+dilatation NN
+Barletta NNP
+errant JJ
+leather-hard JJ
+bolt NN VB
+consultancy NN
+grated VBD JJ
+weeknight NN
+ticket NN
+investigative-reporting NN
+realty NN
+communists NNS
+subsequently RB
+Muffling VBG
+decked VBN
+Aral'sk NNP
+outnumber VBP
+Gephardtian JJ
+sick JJ
+Streets NNP NNPS
+Southey NNP
+Hanson NNP
+Venezuelan JJ NNP
+Muscle NN NNP
+Benninger NNP
+clan NN
+Groups NNS NNPS NNP
+Sharpe NNP
+luxuriosly-upholstered JJ
+low-sudsing JJ
+Learn VB NNP
+lipsticks NNS
+caricatured VBN
+Ivan NNP
+Rodman NNP
+tooth-paste NN
+stores. NN
+Wow UH
+billon NN
+dimensioning JJ VBG
+HARD JJ
+susceptors NNS
+Bronfmans NNP NNS
+pre-Reagan JJ
+pontificate VB
+forefathers NNS
+lulled VBN
+manias NNS
+well-capitalized JJ
+enrollment NN
+Matsushita NNP
+Create VB
+throughout IN RB
+unresponsive JJ
+S.I. NNP
+minimums NNS
+Beauclerk NNP
+Macaulay NNP
+vitiates VBZ
+tidiness NN
+untenured VBN
+seeking VBG
+elfin JJ
+Banerian NNP
+Sa-Duk NNP
+Part-time JJ
+Guidi NNP
+surface-analyzer NN
+Anwar NN
+pushups NNS
+Newbury NNP
+Grohl NNP
+high-VAT JJ
+evils NNS
+ansuh VB
+Norall NNP
+Plaumann NNP
+LEBANESE JJ
+copra NN
+Pelican NNP
+Rapoport NNP
+Below IN RB
+Consideration NN
+scabbed VBN
+whispering VBG NN
+stiffs NNS
+cube NN
+relevance NN
+bettered VBD
+ME PRP
+Statements NNS
+snipes VBZ
+Sievers NNP
+Fra NNP
+twitching VBG
+Spotlight NNP
+Rattigan NNP
+impassioned JJ
+maestro NN
+sizes NNS VBZ
+couples NNS
+PERIOD NN
+centrifuged VBN
+lower-income JJ JJR
+SEAGATE NNP
+Expects NNS VBZ
+Lucia NNP
+gypsies NNS
+Hebert NNP
+Howdy UH
+Beebe NNP
+within IN RB
+breakthrough NN
+Freed VBN JJ NNP
+Moscow-allied JJ
+classiest JJS
+nonconvertible JJ
+fern-like JJ
+reinforcements NNS
+arm-rise NN
+DON'T NNP VB
+fourteen CD
+Aziz NNP
+delegations NNS
+Legislation NN NNP
+WHY WRB
+falsehood NN
+Collections NNS
+reprisals NNS
+lefthanders NNS
+gas-tax-increasing JJ
+bustling JJ VBG
+energizing VBG
+Princeton\/Newport-like JJ
+heelsthe DT
+frequencies NNS
+swiftest JJS
+Mathematically RB
+Gliedman NNP
+Chrysler NNP
+Cuisinarts NNPS
+MacLean NNP
+verifiable JJ
+outscored VBD
+Honan NNP
+Speculative JJ
+Ghiberti NNP
+Boston-based JJ
+Norwell NNP
+extractors NNS
+sidled VBD
+recreate VB VBP
+Device NN NNP
+domestic-made JJ
+Uzi-model JJ
+shades NNS
+Debates NNS
+more-powerful JJR
+crowbait NN
+Regions NNS NNPS
+Loosli NNP
+grillework NN
+ham-handed JJ
+pre-suspension JJ
+secants NNS
+Austrian-Argentine JJ
+authoritative JJ
+manuals NNS
+Loco NNP
+re-investment NN
+Telefonica NNP
+Jansenist NNP
+four-week JJ
+Dahlen NNP
+obsoleted VBN
+ANNOUNCED VBD
+DSP NNP
+CANCER NNP
+unmolested JJ
+Textbook NN
+salons NNS
+Bolivian JJ
+protesters NNS
+Declares VBZ
+Grandsire NNP
+Machine-vision JJ
+disillusionment NN
+pulverize VB
+tax-fraud NN
+Stature NN
+urethane NN
+apologetic JJ
+Herdman NNP
+shimmy VB VBP
+birthcontrol NN
+ALII NNP
+audits NN NNS
+despoiled VBN
+Abdullah NNP
+Pringle NNP
+McGann NNP
+subjectively RB
+cloth-of-gold NN
+cerebrated VBN
+Changyi NNP
+producin VBG
+Seabrook NNP
+sixty-day JJ
+outraged VBN JJ VBD
+glide VB VBP
+sharecrop NN
+brotherism NN
+Swiveling VBG
+Magee NNP
+tax-reduction NN
+For IN CC NNP
+TROs NNS
+president-engineering NN|NN
+gemlike JJ
+Exocet NNP
+identifiers NNS
+Wallingford NNP
+repetitive JJ
+House NNP JJ NN
+Millstein NNP
+subtlety NN
+Propriety NN
+Cy NNP
+receding VBG
+smashing JJ NN VBG
+toilet NN
+point-spread JJ
+burglar NN
+examine VB VBP
+Dixieland NNP NN
+recorded-music JJ
+producer-price JJ NN
+Milstar NNP
+failure NN
+nicotine-free JJ
+semblance NN
+Suor FW
+killings NNS
+Neodata NNP
+attending VBG
+impatience NN
+rehabilitations NNS
+moontrack NN
+inhomogeneous JJ
+saloon NN
+drug-dealing JJ NN
+editions NNS
+Southland NNP
+syndicator NN
+electricity-industry NN
+cultivates VBZ
+Jalaalwalikraam NNP
+Nigger NN
+remark NN VB
+feed NN VB VBD VBP
+evade VB
+compulsively RB
+dissidents NNS
+Greenback NNP
+altitudes NNS
+bonus NN
+Cricket NNP
+Stanford NNP NN
+campmate NN
+redo VB
+poet NN
+accelerates VBZ
+journal NN
+Chicago-centric JJ
+MD-82s NNPS
+pianists NNS
+considerably RB
+anomie FW
+OGDEN NNP
+Requiem NNP
+Bebe NNP
+diagnostics NNS
+vitae NN
+scrimmaged VBD
+Representatives NNPS NNP NNS
+Gargery NNP
+calculation NN
+unwieldy JJ
+Supervisor NNP
+Cal-Neva NNP
+constrictor NN
+Communication NNP NN
+Glavin NNP
+Ranging VBG
+Sometime RB
+Attali NNP
+perilla NN
+canto FW NN
+pressure-sensing JJ
+arrays NNS
+Shaevitz NNP
+Af-inch JJ
+squalls NNS
+tanked VBN
+session NN
+U-2 NNP
+traditionalist NN JJ
+lionesses NNS
+Sweathouse NN
+dissected VBD VBN
+Canepa NNP
+Blocked VBN
+Longtime JJ NN
+travel-services NNS
+inconsiderable JJ
+Pt. NN
+Unique JJ
+drapers NNS
+Retail JJ NNP
+woodworm NN
+decimated VBN VBD
+Deanna NNP
+integrators NNS
+intervened VBD VBN
+federal JJ
+Faustian JJ
+guiltless JJ
+flog VB
+monicker JJR
+Forward NNP
+maximum JJ NN
+Hakko NNP
+Frequency NNP
+Heeding VBG
+sirloin NN
+technocrats NNS
+Sees VBZ NNP
+frambesia NN
+auto-market NN
+Espre NNP
+Pothier NNP
+sightseers NNS
+hastily-summoned JJ
+iron-rod JJ
+minority-internship JJ
+avec NNP FW
+seasons NNS
+barnyard NN
+Migs NNS
+Pancrazio NNP
+Soba FW
+insurance-company NN JJ
+audivi FW
+Excellent JJ
+Bulow NNP
+Steinhart NNP
+interpretations NNS
+Schroer NNP
+growled VBD
+This DT NNP
+crippled VBN JJ VBD
+againt NN
+Equipment NNP NN
+McCurry NNP
+slangy-confidential JJ
+Jessye NNP
+NLO NNP
+Finks NNP
+zero-sum JJ
+Defections NNS
+re-open VB
+buy-and-hold JJ CD
+vowing VBG
+Buckley NNP
+concessionaires NNS
+Apartment NN NNP
+dementia NN
+portal NN
+customer-account NN
+priestly JJ
+M&H NNP
+forecasters NNS
+vindicate VB
+retailed VBN
+Hurray NNP
+Hillary NNP
+out-of-step JJ
+regulatory JJ
+rice-processing JJ
+Intelligent NNP JJ
+Cavallo NNP
+tektite NN
+hark VBP
+segregated VBN VBD JJ
+touched VBD VBN
+Bluntly RB
+B.t.u. NN
+clouding NN
+GERMANY NNP
+pitiful JJ
+Batman NNP
+near-Communists NNS
+humanizing VBG
+repress VB
+Buddy NNP
+Voell NNP
+chatty JJ
+disinclination NN
+Parkways NNP NNPS
+attacks NNS VBZ
+lieu NN FW IN
+--how WRB
+before IN RB RP
+praising VBG
+Esher NNP
+Cristiani NNP
+wariness NN
+dustin VBG
+deductive JJ
+Harbanse NNP
+Southmark-sponsored JJ
+Hillerich NNP
+Jelinski NNP
+televisions NNS
+Executives NNS NNP NNPS
+parquet NN
+MacReady NNP
+U.S.-grown JJ
+isolating VBG JJ
+perpetuates VBZ
+corpsman NN
+Tempter NNP
+CRs NNS
+Ameritas NNP
+full-bodied JJ
+BOND NN
+Haven NNP
+Perritt NNP
+zillions NNS
+Richstone NNP
+Getulio NNP
+Embryogen NNP
+anthropological JJ
+particularity NN
+punning VBG
+Carat NNP
+most-influential JJ
+wellknown JJ NN
+Momentum NN
+homely JJ
+Griffith NNP
+Norio NNP
+Eagleburger NNP
+delineated VBN
+kiddie NN
+Grinned VBD
+erratic JJ
+Scrum NNP
+semantics NNS
+holiday NN
+Demagogues NNS
+disastrously RB
+hosannas NNS
+innately RB
+Alagoas NNP
+Enjoying VBG
+Pebworth NNP
+Apology NNP
+Euro-consumers NNPS
+Kali VBP
+Guns NNS NNP
+money-wise JJ
+guy NN
+STORES NNP NNPS
+Dividend NN NNP
+unobtrusively RB
+task NN VB
+unexamined JJ
+Macmillan\/McGraw-Hill NNP
+firefighting NN
+discussant NN
+Appellate NNP
+we-Japanese JJ
+occupation-as NN|IN
+craved VBN VBD
+First-section JJ
+drive-yourself JJ
+Koyata NNP
+lopes VBZ
+customer-cost NN
+bull-roaring JJ
+Mertle NNP
+Pratt NNP
+REVIEW NNP
+hopefully RB
+c-reflects VBZ
+quasi-parliamentary\/judicial JJ
+networks NNS VBZ
+bystander NN
+WCRS NNP
+Bertin NNP
+airstrips NNS
+indeed RB UH
+--which WDT IN
+deformed JJ VBN
+weakness NN
+weirdo NN
+yawn NN VB
+filth NN
+Bridgewater NNP
+reauthorized VBN
+Hintz NNP
+MF NNP
+victory NN
+patrons... :
+supply-sider NN
+dumps VBZ NNS
+dashing VBG JJ
+pigeons NNS
+clefts NNS
+Strongheart NNP
+Launder NNP
+carbines NNS
+Shupe NNP
+emergency-medical JJ
+Semmelman NNP
+direct-sum NN
+brainchild NN
+defiles VBZ
+Agro NNP
+Finkbiner NNP
+kegs NNS
+billets NNS
+Naess NNP
+Kochola NNP
+irrespective RB
+one-two JJ
+Taxation NNP NN
+disabling VBG
+Alwin NNP
+immigrant NN JJ
+Omaha NNP NN
+refuses VBZ
+Metronic NNP
+Torrence NNP
+underscoring VBG
+Sales NNS NNP NNPS
+Statehood NNP NN
+rallied VBD VBN
+hushed JJ
+distinguishable JJ
+yellowed VBN
+durable-goods NNS
+Puddingstone NNP
+BMEWS NNP
+neurasthenic NN
+re NN
+uncombable JJ
+suited VBN VBD
+assembly NN
+reedbuck NN
+SHUTTLE NN
+Cessna NNP
+pitiless JJ
+Permit VB
+isolationism NN
+absented VBD
+ensured VBD
+Veblen NNP
+Schechter NNP
+regalia NNS
+true-false JJ
+Pressed VBN
+Lattimer NNP
+cheesecloth NN
+poured-in-place VBN
+parley NN VB
+lace NN
+thyroid NN
+consumers NNS
+Neglected NNP
+Menderes NNP
+gold-mining-company JJ
+oil-producing JJ NN
+Capitalist NNP
+objected VBD VBN
+Sverdlovsk NNP
+germinated JJ
+extracurricular JJ
+Investcorp NNP
+judicious JJ
+Dragon NNP
+undressing VBG NN
+red-flag VB
+mistaken VBN JJ
+Squires NNP
+mollycoddle NN
+die-up NN
+Snelling NNP
+targeted VBN VBD JJ
+per-year JJ
+entomologist NN
+relabeling VBG
+Fleckenstein NNP
+Federalist NNP JJ
+DUF NN
+Ai- NNP
+Gonzales NNP
+Al-Faqih NNP
+rearguard NN
+redemption NN
+hand-level JJ
+counter-apparatus NN
+Oh-the-pain-of-it UH
+Persuading VBG
+gluttony NN
+Talbot NNP
+Evegeni NNP
+whimsical JJ
+extinguisher NN
+diesel NN JJ
+Survive VB
+top-of-the-line JJ
+flatlands NNS
+input NN
+customer-inventory JJ
+Pan-American JJ
+stop-gap JJ
+United NNP VBN JJ
+nonfarm JJ
+non-GM JJ
+FUND NNP
+Estonian-language JJ
+steely JJ
+seagulls NNS
+Scratch NN
+Russell NNP
+injects VBZ
+eradicating VBG
+prolixity NN
+scuba NN
+Junk-Bond NN
+prepping VBG
+instructive JJ
+skeet NN
+crystallite NN
+verged VBD
+Brigantine NNP
+shipments NNS
+Hewitt NNP
+Oregon NNP NN
+quickening VBG
+Factors NNS NNP
+manicures VBZ
+Chica NNP
+Montgolfier NNP
+Pyszkiewicz NNP
+infants NNS
+unveiled VBD JJ VBN
+country-development NN
+Needy NNP NNS
+Scrapiron NNP
+installed VBN JJ VBD
+candidacy NN
+gosh UH
+big-large NN
+telegrams NNS VBZ
+Consortium NNP NN
+around... :
+aflatoxin NN
+descending VBG
+Westhampton NNP
+Euro-playing JJ
+Plainview NNP
+Descendants NNS
+cowhands NNS
+eye-filling JJ
+foxholes NNS
+scorecard NN
+bartering NN
+miswritten JJ
+REACTOR NN
+Liberties NNPS NNP
+Fill VB VBP
+Hostess NNP
+Denver-based JJ NNP
+Boots NNP NNS
+clap NN
+IL-2 NNP
+archaeological JJ
+Itoiz NNP
+Zagaria NNP
+Equally RB
+Reinstatement NN
+Shipyards NNP NNPS
+Raptopoulos NNP
+out-of-bounds JJ
+Africans NNPS NNP
+zero-gravity JJ
+court... :
+basketball NN
+yrs NNS
+hawing VBG
+anaplasmosis NN
+top-rated JJ
+coolheaded JJ
+Du NNP
+low-end JJ NN
+no-good-bums NNS
+ornithologist NN
+Swelling JJ VBG
+Schlemmer NNP
+Bragg NNP
+insubordinate JJ
+Slow JJ VB
+pun NN
+queasiness NN
+Year-to-date JJ
+ten-foot JJ
+Radiant JJ
+Playboy NNP
+Macmillan NNP
+aerobics NN NNS
+megalomania NN
+nonflammable JJ
+Beal NNP
+elegant JJ
+Sea-road NN
+Gauer NNP
+Kinsey NNP
+Milbank NNP
+XFI NNP
+sq. JJ
+jacked VBD VBN
+Goupil NNP
+student NN
+off-key JJ
+comment VB VBP NN
+radiation-protection JJ
+bilevel JJ
+d'Avignon NNP
+Yew NNP NN
+obtaining VBG
+soloists NNS
+brace NN VB VBP
+fine-point JJ
+whisking VBG
+plowshares NNS
+Type NN NNP
+overdrawn JJ
+shorthand NN
+supposed VBN JJ VBD
+wood-products NNS
+USW NNP
+blocker NN
+stifles VBZ
+ciphers NNS
+simplest JJS
+foundering VBG JJ
+debilitating JJ
+preconditioned VBD VBN
+particulate JJ
+balance-of-payments NNS JJ
+pointedly RB
+Bearman NNP
+Proceeding VBG
+bears VBZ NNS
+resented VBD VBN
+Media NNP NN NNS NNPS
+say'wow VB
+impair VB NN
+spur-of-the-moment JJ
+baguette FW
+Jennings NNP
+bison NN
+Shrinking VBG
+Bumblebees NNS NNPS
+numinous JJ
+ocarina NN
+Conyers NNP
+inescapably RB
+bartender NN
+Probes NNPS
+Fina NNP
+million-plus JJ NNS NN
+barbell NN
+unformed JJ
+Sierras NNPS
+plaque NN
+overstraining NN
+disembodied JJ
+Quietly RB
+Gannon NNP
+Sewage NNP
+somnambulism NN
+absentee JJ NN
+preliminaries NNS
+battery-operated JJ NN
+fuselage NN
+Distances NNS
+Aeronautics NNP
+cholecystokinin NN
+shivers NNS
+air NN VB VBN VBP
+HEXCEL NNP
+sacraments NNS
+Skrunda NNP
+mini-mafia NN
+civilize VB
+leukemia NN
+portends VBZ
+thirsted VBN
+Venture NNP NN
+fielders NNS
+'Does VBZ
+Ecology NN NNP
+shame NN VB
+art-filled JJ
+editorialize VB
+Anheuser NNP
+hierarchies NNS
+emigration NN
+burnings NNS
+Agius NNP
+reek VBP NN
+parochial JJ
+drubbing NN
+McCarthyite JJ
+Duck NNP NN
+tailing VBG
+mannerisms NNS
+self-managing JJ
+particulars NNS
+Weisbord NNP
+seq NN
+foulest JJS
+Sixty CD
+mismeasurement NN
+Glossy JJ
+Burgeoning VBG
+broadened VBN VBD
+towards IN
+Idea FW NN
+Kleiman NNP
+ABG-Semca NNP
+Vorontsov NNP
+Wheels NNP
+Bucks NNP
+constitution NN
+worst-performing JJ
+Kossuth NNP
+triglycerides NNS
+Canada-Newfoundland NNP
+Balance NNP
+elucidation NN
+outlived VBN VBD
+ghostlike JJ
+overgenerous JJ
+incompetent JJ
+single-home JJ
+downplay VB
+roomier JJR
+reluctant JJ
+Fishing NNP NN
+irradiation NN
+Glazer-Fine NNP
+insurance-claims NNS
+Denny NNP
+blue-chip JJ NNP NN
+road-shy JJ
+present JJ VBP RB|JJ NN RB VB
+documentary NN JJ
+Ebury NNP
+grading VBG NN
+Samurai NNP
+luckily RB
+shuld MD
+military-electronics NNS
+L.M. NNP
+Wiseman NNP
+Cocktail NN
+Clairton NNP
+instigator NN
+nook NN
+Iosola NNP
+summer-long JJ
+Referring VBG
+Bogle NNP
+dwelling NN VBG
+Literary NNP JJ
+debt-repayment NN
+state-chartered JJ
+Culvers NNPS
+soft-drink NN JJ
+services-repair NN
+groggy JJ
+spots... :
+last-resort JJ
+dell NN
+Wyser-Pratte NNP
+sizing NN
+convenants NNS
+Maruwa NNP
+radar. NN
+rearranging VBG
+bridle NN
+bank-looting JJ
+B70 NN
+monosyllables NNS
+pencils NNS VBZ
+Mach't FW
+securites NNS
+Marmee NNP
+JAMES NNP
+RLLY NNP
+offshoot NN
+Fitness NNP
+concurrence NN
+Menet NNP
+Shietz NNP
+divided VBN VBD JJ
+Kestner NNP
+today NN JJ RB
+Ridgefield NNP
+outsized JJ
+blanks NNS
+Navy NNP NN
+Converts NNS
+Deloitte-Touche NNP
+Hoover NNP
+Traviata NNP
+Schotter NNP
+Her PRP$ PRP PRP$R
+B.D. NNP
+Feedlots NNS
+smaller JJR RBR
+Soupy JJ
+Topton NNP
+brutalized VBN JJ
+inshore JJ RB
+Excision NN
+motionless JJ
+drowsy JJ
+Alastor NNP
+Spinco NNP
+MG NNP
+twopoint NN
+millstones NNS
+hyperemia NN
+longhorns NNS
+inaccurate JJ
+utopia NN
+Teachers NNPS NNP NNS
+secretly RB
+Evenings RB
+schedule NN VB VBP
+Kunkel NNP
+Reiser NNP
+unviable JJ
+transferrable JJ
+fair-use JJ
+secession NN
+parallels NNS VBZ
+Famous-Barr NNP
+folksongs NNS
+Bankhead NNP
+welling VBG
+Paos NNPS
+Near IN JJ NNP
+waitin NN
+Avery NNP
+hormone NN
+once-indomitable JJ
+lewdly RB
+take-away JJ
+Mesirov NNP
+Tuscany NNP
+Sonar NN
+shacks NNS
+endearment NN
+manor NN
+castings NNS
+hiccup NN
+Concordes NNP
+Oher NNP
+anti-inflationary JJ
+rf NN
+meteoric JJ
+mingled VBD VBN JJ
+simmering VBG
+aquifers NNS
+Argonauts NNPS
+fossilized JJ
+Japanese-style JJ
+Harrity NNP
+show-down NN
+alveolar NN JJ
+Chaseman NNP
+phoenix NN
+bel FW
+BEARS NNP
+small-investor NN
+Paulah NNP
+Benes NNP
+Ha NNP UH
+deep-space JJ
+toll-road NN
+bureau-sponsored JJ
+Sweeneys NNPS NNP
+Crafton-Preyer NNP
+Lennox NNP
+NB NNP
+Ring NNP NN
+Tandem NNP
+treasury NN
+huge JJ
+sweatshirt NN
+clubhouse NN
+job-hunting JJ
+Fitzgerald NNP
+draped VBD JJ VBN
+brown-paper JJ
+Star-Spangled NNP JJ
+Ptachia NNP
+Chodorow NNP
+Hatchet NNP
+once-unprofitable JJ
+Pomham NNP
+snoring VBG NN
+sort NN RB VB VBP
+post-game JJ
+Film NNP
+Trusthouse NNP
+quartz NN
+N.E. NNP
+motivate VB VBP
+foreshortening VBG
+presser NN
+iconoclast NN
+vaults NNS
+coppery JJ NN
+soybeans NNS
+Henrietta NNP
+mulls VBZ
+Ottoman NNP
+cords NNS
+penurious JJ
+Johnny NNP
+Newkirk NNP
+Invercalt NNP
+paper-littered JJ
+centralization NN
+waltz NN VB
+dared VBD VBN
+Somebody NN NNP
+harm NN VB VBP
+competitive-analysis JJ
+forthrightly RB
+straight JJ RB
+Furthermore RB
+Benchmark JJ
+jig NN
+bestubbled JJ
+Simpkins NNP
+Brinson NNP
+sedate JJ
+Kipp NNP
+foreign-entry-limit JJ
+wallflower NN
+diatribe NN
+Makers NNPS NNP NNS
+brutally RB
+Stephan NNP
+I\ NNP
+Beam NNP
+Aruba NNP
+Pinkie NN
+James-the-Less NNP
+launch-vehicle NN
+Privacy NN
+ugliness NN
+Street-inspired JJ
+forsaken VBN
+Mrs. NNP
+Cornell-Dubilier NNP
+audiophiles NNS
+legged JJ
+Hanauer NNP
+apologies NNS
+startups NNS
+sha MD
+Grumble NNP
+international-money-markets NN
+cleverly RB
+tenets NNS
+Chem NNP
+looks VBZ NNS NN
+cartoons NNS
+family-oriented JJ
+Carnochan NNP
+bolder JJR
+computer-distributed JJ
+humorists NNS
+Restructure VBP
+wing-shooting NN
+plated VBN
+exchanger NN
+securities-industry NN JJ
+affectation NN
+Comenico NNP
+plunging VBG NN
+Sighing VBG
+literal JJ
+importunities NNS
+SRELEASE NN
+ritorno FW
+riddling VBG
+Sharon NNP
+Lumia NNP
+Hasseltine NNP
+meditated VBD
+reclamation NN
+caregivers NNS
+soured VBD VBN JJ
+Gillespie NNP
+lob-scuse NN
+USX NNP
+higher-caliber JJR
+laundromat NN
+camp NN VB
+half-full JJ
+Gardiner NNP
+chumminess NN
+Martoche NNP
+Nagin NNP
+casualty NN
+ever-so-Oxonian JJ
+fundraising VBG NN
+mistrusted VBD VBN JJ
+shipsets NNS
+legislature NN
+TODAY NNP
+elections NNS
+alter-ego NN
+Whittier NNP
+beach-head NN
+periscopes NNS
+Amazon NNP
+prudence NN
+favore FW
+mailrooms NNS
+misunderstood VBN VBD
+tartly RB
+reel NN VBP VB
+offences NNS
+Joneses NNPS
+tensile JJ
+Hoxan NNP
+sleuth NN
+Ica NN
+Tallahassee NNP
+battle-shattered JJ
+vainly RB
+Euro-watches NNS
+Gtech NNP
+Concertante NNP
+self-deceptions NNS
+correctional JJ
+Tatzel NNP
+righted VBN
+Residential NNP JJ
+Blackberry NNP
+beauteous JJ
+IIcx NNP
+low-interest JJ
+paperboy NN
+Espectador NNP
+Tache NNP
+defection NN
+Mosnier NN
+sinking VBG VBG|NN JJ NN
+bells NNS
+Honda NNP NN
+goitrogens NNS
+disobey VB
+woefully RB
+safe-driving JJ
+Poised NNP
+Plug-in JJ
+Mulligatawny NNP
+outlast VB
+Sha. NNP
+executive NN JJ
+waterflows NNS
+product-inspection JJ
+confiscatory JJ
+five-and-twenty JJ
+Blossom NNP
+tonight RB NN
+Oglethorpe NNP
+amortization NN
+text-ordered JJ
+toast NN VB
+tipper NN
+illustrator NN
+Shylockian JJ
+Arbeitskommando NNP
+Lysol NNP
+Pfiefer NNP
+extra-sensory JJ
+hairline NN
+Become VB
+minincomputer JJR
+credit-card NN JJ
+constituency NN
+Evaluating VBG
+low-back-pain JJ
+Brady NNP
+quintuple RB VB
+Pantasote NNP
+outdistanced VBD VBN
+self-tilth NN
+now-famous JJ
+Reaction NN
+Q3 CD
+Ulyate NNP
+sweet-shrub NN
+signals NNS VBZ
+indelibly RB
+loss-plagued JJ
+inflation-wary JJ
+symbols NNS
+Kolakowski NNP
+stunts NNS
+Toalster NNP
+racists NNS
+Starpointe NNP
+Policeman NNP
+Vevey NNP
+Stenhachs NNPS
+pagers NNS
+Galan NNP
+esteem NN
+carnal JJ
+child-bearing NN
+inherit VB VBP
+Thomson-CSF NNP
+Roaring NNP
+GDP NNP
+Bogdan NNP
+confidants NNS
+president\/national-government NN
+occured VBD
+wrong-headed JJ
+XRESERVE NN
+Alden NNP
+sucking VBG NN
+discourses NNS
+Gorbachev NNP
+Ewe NNP
+Goverman NNP
+Wise NNP JJ
+Framingham NNP
+tours NNS VBZ
+Urich NNP
+Arrow NNP
+pinstripe-suited JJ
+Lanston NNP
+Tabb NNP
+marksman NN
+McManus NNP
+Fruehauf NNP
+non-advertising JJ
+X-rated JJ
+enlightenment NN
+hash NN VB VBP
+ontologically RB
+cronyism NN
+pro-investment JJ
+Parc NNP
+ducked VBD
+invasion NN
+I'm-coming-down-your-throat JJ
+decapitalize VBP
+Tredyffrin NNP
+Diversification NN
+Periodically RB
+long-banned JJ
+entrepreneurship NN
+Cichan NNP
+foreign-affairs NNS
+pre-trading JJ
+HAD VBD
+U.K.-based JJ
+populations NNS
+Carmichael NNP
+Ruhnau NNP
+shall MD
+Napkins NNS
+nets NNS VBZ
+rat-a-tat-tat JJ
+Forty-three CD
+Marlin NNP
+LM NNP
+bloodiest JJS
+Reserves NNS NNPS NNP
+Toney NNP
+stereotype NN
+Tots NNP NNPS
+Ashenberg NNP
+Sony-Columbia JJ NNP
+R. NNP
+single-B-minus JJ NNP NN
+tangency NN
+bleats NNS
+presses NNS VBZ
+prophesies VBZ
+Hindes NNP
+Neas NNP
+cross-connect JJ
+giggled VBD VBN
+nozzles NNS
+initiator NN
+credible JJ
+Guardia NNP
+heater NN
+Benet NNP
+brine NN
+Index-related JJ
+moribund JJ
+capably RB
+structural-adjustment JJ NN
+homogenous JJ
+exchanges NNS VBZ
+flotation-type JJ
+Overextension NN
+saith VBZ VB
+Asilomar NNP
+Gasse NNP
+to'life NN
+Dist NNP
+Haumd NNP
+divestiture NN
+race-based JJ
+Berson NNP
+Osram NNP
+disseminated VBN
+hydrolysis NN
+Galaxy NN
+trembling VBG JJ
+battlefield-electronic JJ
+capitals NNS
+Lucie NNP
+incentive-spurred JJ
+Govs. NNP
+high-ranking JJ
+transducers NNS
+Rahn NNP
+recognizable JJ
+Menelaus NNP
+obverse NN
+semi-annually RB
+rebates NNS
+feminists NNS
+Thirty-fourth NNP
+unanswered JJ
+Suez-Hungary NNP
+turns VBZ NNS
+correspondents NNS
+BREADBOX NN
+Trimble NNP
+Cirillo NNP
+Rensselaerwyck NNP
+randomness NN
+drug-bill NN
+Kandahar NNP
+Volcker NNP
+Halcion NNP NN
+hyperemic JJ
+interpreted VBN VBD
+Pin VB
+cite VBP VB
+WLF NNP
+Morel NNP
+municipally RB
+precisely RB
+stranger NN JJR
+sixty-five-mile JJ
+vibrations NNS
+lunches NNS
+IL-4 NN
+Hubert NNP
+Zombie NNP
+non-Fed JJ
+beheaded VBD
+Sicily NNP
+Impersonal JJ
+optimal JJ
+babbled VBD
+volcanic JJ
+Salina NNP
+deleterious JJ
+drowned VBN JJ VBD
+Squats NNS
+Custer NNP
+outstretched VBN
+unlocks VBZ
+France. NNP
+Peony NNP
+Ono NNP
+booths NNS
+drug-sales NNS
+Yilin NNP
+sightseeing NN
+wastes NNS VBZ
+stillness NN
+doer NN
+ornament NN
+roved VBD
+wing-tip JJ
+engines NNS
+busily RB
+Maurer NNP
+Italian JJ NNP
+streamlined JJ VBD VBN
+Senese NNP
+denting VBG
+Articles NNPS NNS
+unrealism NN
+dia. NN JJ
+Xenia NNP
+Fails NNS VBZ
+ultra-modern JJ
+blades NNS
+Hemmed VBN
+reader NN
+widening VBG NN
+landau NN
+puzzlement NN
+mandates NNS VBZ
+responsively RB
+materialized VBD VBN
+Hatless JJ
+Bean NNP
+certified VBN JJ
+adds VBZ
+populists NNS
+Relocation NNP
+Habib NNP
+Bundy NNP
+disparities NNS
+penny-wise JJ
+Wanders NNP
+agonize VB VBP
+bi-monthly JJ
+Bankhaus NNP
+anthers NNS
+Pitt NNP
+driftnet NN
+Chen NNP
+NC NNP
+shipper NN
+Eurotempo NNP
+poor-performing JJ
+campus NN
+withering VBG JJ
+bulls NNS
+six-hour JJ
+Wagner NNP
+Karangelen NNP
+after-tax JJ NN
+erythropoietin NN
+absinthe NN
+perspiration NN
+warmly RB
+colchicum NN
+Propylaea NNP
+Traficant NNP
+gift-giving NN JJ
+responsibilities NNS
+Schemes NNS
+puerile JJ
+program-trade JJ
+detectors NNS
+Ankeny NNP
+satisfied VBN VBD VBN|JJ JJ
+wondered VBD VBN
+devises VBZ
+Westbound NNP
+Behind IN NNP RB
+designing VBG
+Jacoboski NNP
+eardrums NNS
+Ubermenschen NNPS
+called'low JJ
+MARYLAND NNP
+gnawed VBD
+Wachtel NNP
+Rolodexes NNPS
+enamels NNS
+section NN , NNP
+Country NNP NN
+irrational JJ
+rough-and-tumble JJ
+Rocco NNP
+coward NN
+drug-store NN
+MacNamara NNP
+Weart NNP
+high-growth JJ NN
+Lumex NNP
+earnings-limit JJ
+softest JJS
+peculiarly RB
+Sonora NN NNP
+pup NN
+phobic-like JJ
+inconsistent JJ
+munch VB
+Missouri-Illinois NNP
+Ferris NNP
+gristmill NN
+strikes NNS VBZ
+Taikisha NNP
+labor-backed JJ
+Intek NNP
+hurried VBD VBN JJ
+marrying VBG
+Earls NNP
+liquefies VBZ
+FEMALES NNS
+galled VBN
+Acting-President NNP
+Marguerite NNP
+terror-stricken JJ
+Basement NN
+Agua NNP
+October-December NNP
+Idec NNP
+shim VB
+Continuum NN
+subscribe VB VBP
+Weyerhaeuser NNP JJR
+pension-minded JJ
+varying VBG JJ
+stagnating VBG
+notebook-size JJ
+OIF NNP
+best JJS RBS JJSS NN RB
+Wheaties-box JJ
+meltdown NN JJ
+cognate JJ
+Buccaneers NNS
+Laotians NNS
+Included VBN JJ
+accident NN
+edits VBZ
+Host NNP NN
+aisle NN
+mercenaries NNS
+shoplifting NN
+penthouse NN
+infiltrate VB
+stock NN VBP JJ VB
+screeching VBG JJ
+cytoplasm NN
+cross-trading NN
+Scratching VBG
+bedridden JJ
+Waltch NNP
+Cosgrove-Meurer NNP
+gamekeeper NN
+Resisting VBG
+saucepan NN
+Leath NNP
+Ebrahim NNP
+atom NN
+Gaming NNP NN
+Patch NNP NN
+steel-quota NN
+anti-government JJ NN
+Large-package JJ
+deliberating VBG
+industry-supported JJ
+Intermediate NNP JJ
+Plouf NNP
+offshore JJ RB
+Zhijie NNP
+starting VBG JJ NN
+Erwin NNP
+Sure RB NNP NNS JJ UH
+Sankai NNP
+DRI\/McGraw NNP
+Flick NN NNP
+abstractions NNS
+Discouragement NN
+Hazeltine NNP
+Crab NNP
+person NN
+Calisto NNP
+ketorolac NNP
+Assemblyman NNP
+Inacio NNP
+gunfire NN
+ladder NN
+stares NNS
+Refugee NNP
+courageous JJ
+superhuman JJ
+investment-management NN JJ
+meditation NN
+uncensored JJ
+guaranty NN
+drunkard NN
+Wells NNP
+vaccination NN
+TURNS VBZ
+abusable JJ
+LXI NNP
+heavy-weight JJ
+travel-agency NN
+technician NN
+periodical NN
+housekeeping NN
+prudently RB
+hair-trigger JJ
+ONEIDA NNP
+behemoth NN
+dunks VBZ
+world-renowned JJ
+equestrians NNS
+dispensing VBG NN
+unspoiled JJ
+mudwagon NN
+bulky JJ
+chemical-weapon NN
+digest VB NN
+shooed VBN
+upstate JJ RB
+stoppages NNS
+Grammophon NNP
+cuddled VBD
+round-the-world JJ
+Enchaine NNP
+Petitioner NN
+superlative JJ
+Backhaus NNP
+superconcentrates NNS
+tart JJ NN
+Desegregation NN NNP
+neurosurgeon NN
+reds NNS
+McCloy NNP
+beheld VBD
+Tempos NNS
+LeCompte NNP
+Columbiana NNP
+probabilistic JJ
+reserve-draining JJ
+License NN
+Stressed-out JJ
+emitting VBG
+bench NN VB
+entertainment NN
+non-medical JJ
+Diary NNP
+Tien NNP
+fishermen NNS
+secured VBN VBD JJ
+whence WRB
+liquidate VB
+Cosby NNP
+Satrum NNP
+explore VB VBP
+chucking VBG
+Cartagena NNP
+shriek NN VB
+ANNUAL JJ
+armoire NN
+Bacterial JJ
+Willens NNP
+Two-month JJ
+ESTABLISHMENT NN
+politicized VBN JJ
+Ionic JJ
+hesitated VBD VBN
+rocklike JJ
+Fraser NNP
+Tonawanda NNP
+all-terrain JJ
+Nielson NNP
+orthographic JJ
+Steelworkers NNPS NNP
+Charisma NNP
+undulating JJ
+startlingly RB
+determinability NN
+acrobatics NNS
+oftentimes RB
+advocacy NN
+Quickview NNP
+placard NN
+fortiori FW
+detours NNS
+Rabat NNP
+occidental JJ
+midsummer NN
+Indies NNPS NNP
+durations NNS
+'Wadoo UH
+Chicago-area JJ
+index-options NNS
+Carlzon NNP
+ETHICS NNS
+altitude-azimuth-mounted JJ
+Mignott NNP
+freight-jumper NN
+multibank NN
+furnish VB VBP
+dangled VBD VBN
+entitling VBG
+dicendi FW
+plinking JJ
+Carwood NNP
+notebooks NNS
+pr NN
+Middenstandsbank NNP
+Spots NNS
+noninflationary JJ
+satellite-linked JJ
+reverse-reverse JJ
+personalized VBN JJ
+mistakes NNS VBZ
+drug-infested JJ
+squashed JJ VBN
+Colonia NNP
+E.T.C NNP
+self-serve NN
+subcontractors NNS
+RAISED VBD
+Saull NNP
+no-driving JJ
+M.B.A.s NNPS NNP NNS
+Biological JJ NNP
+bestioles NNS
+reliever NN
+shark-infested JJ
+Schwarzwaldklinik NNP
+Cryptic JJ
+steed NN
+Yasutomi NNP
+duty NN
+iodinating VBG
+telegraph NN VBP VB
+does VBZ
+fabric NN
+maya FW
+proviso NN
+lilies NNS
+DaPuzzo NNP
+disciplines NNS
+Lust NNP
+Abramowitz NNP
+caused VBN VBD
+wormwood NN
+Michigan NNP JJ
+Point NNP JJ NN
+January-August NNP
+auburn JJ
+Automobiles NNS NNPS
+figurative JJ
+imaginary JJ NN
+gavottes NNS
+alarm NN VB
+Rancher NNP
+hairs NNS
+kisha FW
+self-censorship NN
+Merry-Go-Round NNP
+connectors NNS
+Albacore NNP
+double-entendre NN
+unsatisfying JJ
+LIES VBZ
+much-talked-about JJ
+comet's-tail NN
+noisemakers NNS
+Thorn-EMI NNP
+malignant JJ
+torpedo VB NN
+surrealism NN
+Perestroika FW
+steoreotyped JJ
+precision-timing NN
+mealtime NN
+blasphemies NNS
+STOCK NN NNP
+re-elected VBN JJ VBD
+reminisces VBZ
+illiquidity NN
+panelists NNS
+boundary NN
+RICHARD NNP
+fumbled VBD
+Minutes NNPS NNP NNS
+thunderous JJ
+Semmel NNP
+electrical-products NNS
+detrimental JJ
+Robin NNP
+Fonstein NNP
+Sausage NNP NN
+Geoffrey NNP
+Turning VBG NNP
+behind-the-scenes JJ
+tam FW
+Hoffmann-LaRoche NNP
+brassiere NN
+painted-in NN
+Geer NNP
+EMPLOYEES NNS
+right-to-counsel JJ
+painstakingly RB
+rent-controlled JJ
+Frisco NNP
+reusable JJ
+MacLellan NNP
+Orvis NNP
+Dallasites NNPS
+hygienic JJ
+jousting VBG
+Dorsch NNP
+Sanger-Harris NNP
+Stoic NNP JJ
+common JJ NN
+Safety-Kleen NNP
+crazily RB
+Kylberg NNP
+S* NNP
+continously RB
+Find VB VBP
+Schering NNP
+participate VB VBP
+bath-supplies NNS
+Ragu NNP
+naysay VB
+high-wage JJ
+Deborah NNP
+Wang NNP
+MIPS-based JJ
+compensates VBZ
+Intel NNP
+Soak VB
+exercisable JJ
+overstating VBG
+Baskin-Robbins NNP
+'Poltergeist NN
+Guadalupes NNPS
+Michelin\ NNP
+Bar-H NNP
+Eventually RB
+sell-through NN
+liberally RB
+cynical JJ
+haste NN
+Towne NNP
+Molten JJ
+spirit-gum NN
+onrush NN
+mothballs NNS
+wobbled VBD VBN
+Shillong NNP
+hillsides NNS
+Porto NNP
+ragged JJ
+Trek NNP
+tetragonal JJ
+squid NN
+be'your NN
+down-and-out JJ
+Coor NNP
+Nuf RB
+Pollock NNP
+fended VBD VBN
+Brascade NNP
+Stock-Index NN
+pidgin NN JJ
+REPLIGEN NNP
+fastest-growing JJ JJS NN
+speak-easy NN
+locusts NNS
+Alisarda NNP
+Mockowiczes NNPS
+super-status JJ
+Share NN NNP VB
+latitudes NNS
+conservancy NN
+shin NN
+Papp NNP
+craft NN VB
+ditto NN
+caricatures NNS
+Mailing NNP VBG
+misadventures NNS
+shortcake NN
+Prelude NNP
+deposited VBN VBD
+DOC-IN-A-BOX NNP
+belatedly RB
+tastefully RB
+clods NNS
+meteorites NNS
+JROE NNP
+tissue NN
+runs VBZ NNS
+signboards NNS
+somnolence NN
+wasting VBG JJ NN
+Venturi NNP
+tiers NNS
+spurns VBZ
+Kogan NNP
+well-endowed JJ
+laminate NN JJ
+Ian NNP
+transportation-where NN|WRB
+bunch NN
+noon NN
+Kapnek NNP
+jackets NNS
+legalization NN
+wide-cut JJ
+counterman NN
+Huppert NNP
+get-along JJ
+triple-a JJ
+renter NN
+Land-based JJ
+speckled JJ
+EXPENSES NNS
+cut-rate JJ
+Mountains NNPS NNP
+High-end JJ
+Goodrich NNP
+discimination NN
+Saabye NNP
+maneuvered VBD VBN
+bleak JJ NN
+Sentence NN
+drapery NN
+inquest NN
+treelike JJ
+polyproplene NN
+self-control NN
+condemns VBZ
+Gainesville NNP
+SIDE NNP
+Confair NNP
+Jerrold NNP
+J/NNP.J/NNP.A. NN
+Guido NNP
+Jardine NNP
+squabbled VBD VBN
+Computing VBG NNP
+subduing VBG
+purify VB VBP
+Lauritsen NNP
+drinks NNS VBZ
+Ciba NNP
+Dwight NNP
+hyper-competitive JJ
+bring VB VBP
+revised VBN VBD JJ
+beatniks NNS
+hues NNS
+Harvester NNP
+expanse NN JJ
+Caygill NNP
+Portsmouth NNP
+nonliterary JJ
+mule NN
+flashing VBG NN
+half-reached VBD
+relieves VBZ
+shoulders NNS
+phase-one JJ
+tenses NNS
+Abraham NNP
+Jaycee NNP
+Drug NNP NN
+Hodosh NNP
+VAXstation NNP
+B'nai NNP
+S.J. NNP
+non-time NN
+non-newspaper JJ
+dweller NN
+cockier JJR
+parsing VBG NN
+naught NN
+self-absorbed JJ
+toniest JJS
+WMB NNP
+ConAgra NNP
+gravitates VBZ
+oilworkers NNS
+Raymont NNP
+Barbour NNP
+Quincy NNP
+Gerlinger NNP
+lift VB NN VBP
+ankle NN
+set VBN VBD VBP VBD|VBN JJ NN VB
+Pechora NNP
+jowls NNS
+illusionary JJ
+Water-soluble JJ
+Turandot NNP
+three-to-five-year-olds NNS
+front-line JJ NN
+eased VBD VBN
+erase VB
+Hajime NNP
+Deliver VB
+Invacare NNP
+hesitating VBG
+semiconductors NNS VBZ
+barristers NNS
+Slack NNP
+Investor NNP NN
+homogeneity NN
+XJ6 NNP CD
+Corazon NNP
+exporters NNS
+Olivetti NNP
+Tyndall NNP
+Bieber NNP
+laser-surgery NN
+farms NNS VBZ
+pertain VBP VB
+ServantCor NNP NN
+Somewhat RB
+conventional JJ
+Memoir NN
+Libertines NNS
+green JJ NN VB
+Vulture NN
+Guzman NNP
+empires NNS
+shutdowns NNS
+statism NN
+encountered VBN VBD
+utterances NNS
+GDR NNP
+I.A. NN
+Santamaria NNP
+Torino NNP
+moral JJ NN
+cashed VBD VBN
+sky-carving JJ
+hefty JJ
+culte FW
+hugh JJ
+Pillay NNP
+stock-specialist JJ
+Apparently RB
+Gunmen NNS
+marginal JJ
+kidnappers NNS
+overruns NNS
+precepts NNS
+Statue NNP
+discounting NN VBG|NN VBG
+SICK NNP
+lightening VBG
+memory-pictures NNS
+ravaging VBG
+Hartnett NNP
+British-born JJ
+Syndic NNP
+ox NN
+Oresme NNP
+stays VBZ NNS
+wordlessly RB
+Aeromexico NNP
+Dilly NNP
+seige NN
+DESIGNATING VBG
+vegetable NN
+pre-natal JJ
+Weevil NNP
+lamps NNS
+nit-picky JJ
+babies NNS
+history-reenactment NN
+Weidman NNP
+Minero NNP
+gaily RB
+reclining VBG JJ
+skull-bashings NNS
+garish JJ
+harp NN VB
+bibulous JJ
+Pellegrini NNP
+MINIMUM-WAGE NN
+non-airline JJ NN
+Doron NNP
+Lilac NNP
+Holston NNP
+Greenhill NNP
+Chevy NNP NN
+sailed VBD VBN
+co-plaintiff NN
+Declarative JJ
+Talks NNS NNPS
+focused-factory JJ
+buggies NNS
+agitating VBG
+Erected VBN
+Nonsexist NNP
+statisticians NNS
+jaggedly RB
+non-high JJ
+odd-sounding JJ
+Zuni NNP
+KerrMcGee NNP
+viewership NN
+shaving NN VBG
+conceptualizing VBG
+forum NN
+Siebern NNP
+Statesman NNP
+Fathi NNP
+Excluding VBG NNP
+Lefferts NNP
+nation-wide JJ
+correlations NNS
+metals-stock NN
+Dozens NNS
+rutted JJ
+Danchin NNP
+Tires NNS NNPS
+Underwear NN
+put-upon JJ
+zoot NN
+technique NN
+Deepak NNP
+U.N.-monitored JJ
+misappropriating VBG
+noninstitutionalized JJ
+bono FW
+hyperbole NN
+abstention NN
+weightings NNS
+Flemings NNP NNPS
+Antler NNP
+Junk-holders NNS
+partings NNS
+Springdale NNP
+Pip NNP
+Strassner NNP
+ninety CD
+excited VBN JJ VBD
+solar-radiation NN
+mistreatment NN
+loafed VBD
+ever-successful JJ
+undertakings NNS
+Nepal NNP
+affix VB
+index-arbitrage NN JJ
+doubleheader NN
+potency NN
+Fine NNP JJ NNPS
+Sportin VBG
+malingering VBG
+meal NN
+Brauer NNP
+NOC NNP
+values NNS VBZ
+viaduct NN
+oppposes VBZ
+Combustion NNP
+untidy JJ
+lyophilized VBN
+abomination NN
+Photonics NNP
+first-level JJ
+space-science NN
+constitute VBP VB
+inferno NN
+retied VBD
+w-i-d-e NN
+cams NNS
+unfilled JJ
+Descriptive JJ
+Joking VBG
+hate VBP NN VB
+Azucena NNP
+approximation NN
+publicity-seeking JJ
+BRING VB
+tan JJ NN
+observers NNS
+inset NN
+filler NN
+terraced VBN
+Gonzalez NNP
+Multiplexers NNS
+Ascent NNP
+Visualize VB
+Hurok NNP
+Cadesi NNP
+Rodriguez NNP
+forestalled VBN
+Charlotte NNP
+Chambre NNP
+puffs VBZ
+stammered VBD
+aeterna FW
+Undergraduates NNS
+annoying JJ NN
+machine NN
+sunrise NN
+outdid VBD
+Texaco NNP
+sterno-cleido NN
+non-propagandistic JJ
+Appalachia NNP
+seethe VB VBP
+resisted VBN VBD
+Elgin NNP
+long-suspected JJ
+deportations NNS
+limousine NN
+allocable JJ
+Oil-tool NN
+Check-List NNP
+iron-poor JJ
+rescission NN
+rebuff NN
+Rawlins NNP
+midday NN RB
+Transports NNS
+Volstead JJ NNP
+koinonia NN
+bereft JJ VBN
+blue-glazed JJ
+secularism NN
+Seib NNP
+Ermanno NNP
+Ramirez NNP
+forsakes VBZ
+mugging NN
+bottlenecks NNS
+yaws NNS
+weir NN
+five-person JJ
+Weston NNP
+gnomelike JJ
+straighten VB
+decadence NN
+Al-Rowas NNP
+toned VBN
+figural JJ
+wine-making NN JJ
+runt NN
+Ellwood NNP
+ale NN
+leans VBZ
+ink NN
+Linking VBG
+Boy-Lady NNP
+Wolfgang NNP
+apples NNS JJ
+hearse NN
+based. VBN
+registrations NNS
+Boadicea NNP
+Sangamon NNP
+metal-working JJ
+Ishtar NNP
+abusive JJ
+blacks NNS NNPS
+marque NN
+deliberate JJ VB
+low-water NN JJ
+Hooker NNP
+limited-time JJ
+corrugated JJ VBN
+Hambrecht NNP
+wanna VB VBP
+hotel-restaurant NN
+Woolsey NNP
+runways NNS
+Verloop NNP
+difference NN
+Evidently RB
+Lalauries NNPS
+oxide NN
+Herzenberg NNP
+baggage NN
+incomplete JJ
+HEFTY NNP
+lead-zinc JJ
+enervating VBG
+CASSETTE NN
+Factory NN NNP
+pickpocket NN
+Penney NNP NN
+optical-disk JJ
+Proteins NNPS
+Mignanelli NNP
+Miyagi NNP
+buying VBG NN JJ VBG|NN
+Piepsam NNP
+linen-covered JJ
+C'un NNP
+Paperhouse NNP
+populate VB VBP
+Provenza NNP
+Tannenbaum NNP
+cathodoluminescent JJ
+witha NN
+Yamatake-Honeywell NNP
+thorns NNS
+forts NNS
+Overwhelming JJ
+Import NN
+Wish VB VBP NNP
+riddles NNS
+misappropriation NN
+Buenos NNP
+Oops UH
+Toxic JJ
+Saltonstall NNP
+imprecise JJ
+red-tailed JJ
+ORGANIZED VBN
+undergraduate JJ NNP NN
+consternation NN
+preclude VB VBP
+hospital NN
+pleasant JJ
+NE NNP
+amazement NN
+unstressed JJ
+Negroes NNPS NNP NNS
+TARP NNP
+Allou NNP
+Yiddish NNP JJ
+Burritt NNP
+Kooks NNPS
+Elmgrove NNP
+terra FW NN
+Dugan\/Farley NNP
+Houk NNP
+shapely JJ
+hot-honey JJ
+doctoring NN
+Runnan NNP
+Commands NNS
+Saloojee NNP
+Novametrix NNP
+formula NN
+boiling VBG NN
+CITY'S NNP
+Terry NNP
+pistols NNS
+By-the-Book JJ
+disappointment NN
+Over-chilling NN
+beriberi NN
+Angrist NNP
+sowed VBD
+troughed VBD
+eradication NN
+recession-proof JJ
+radiate VB VBP
+slapped VBD VBN
+aglimmering VBG
+Rathbone NNP
+Greetings NNP NNS
+Jascha NNP
+unself-conscious JJ
+Meech NNP
+Ancinec NNP
+admission NN
+impressing VBG
+Binomial NN
+rooters NNS
+Pravo NNP
+sexy JJ
+Scotian NNP
+simulated VBN JJ
+equilibrated VBN
+Zulu NNP
+diamond-shaped JJ
+Bishopsgate NNP
+direct-seller NN
+sachems NNS
+neoliberal JJ
+fester VB
+engage VB VBP
+MANEUVERS NNS
+ornithological JJ
+Neisse NNP
+provision NN
+gas-guzzling JJ
+lugged VBD VBN
+productions NNS
+Lippens NNP
+he-man NN
+adrift RB
+cursing VBG NN
+Margaux NNP
+research-and-development NN JJ
+Rink NNP
+Cowboys-owned JJ
+Haarlem NNP
+overflowing VBG
+inching VBG
+snows NNS VBZ
+Choking VBG
+year NN JJ
+in-home JJ
+porcelains NNS
+Howie NNP
+Commerzbank NNP
+dumpy JJ
+sunspot NN
+businessmen NNS
+Segall NNP
+Multiphastic NNP
+Johnson NNP
+WCVB NNP
+copier NN
+mocked VBN VBD
+Population NNP NN
+tolylene NN
+overlaps VBZ
+element NN
+Boren NNP
+Adios-Rena NNP
+treadmill NN
+four-count JJ
+Aldrich NNP
+Garza NNP
+Neuhaus NNP
+former JJ NN
+Outcome NN
+Walt NNP
+serratus NN
+Swiftly RB
+fronds NNS
+second-level JJ
+Gherlein NNP
+diversity NN
+raked VBD VBN
+Nikon NNP
+Claimants NNPS
+romanticizing NN
+snail-like JJ
+forthcoming JJ VBG
+polyethylene NN
+shivery JJ
+reneged VBD
+fibrosis NN
+italics NNS
+callous JJ
+Pardon NN VB
+Neck NNP
+Leatherneck NNP
+swagger NN
+Spaces NNPS
+pygmies NNS
+FIT NNP
+Dame-Michigan NNP
+plummeting VBG
+fecundity NN
+Szolds NNPS NNP
+Ernest NNP
+Pueri FW
+Ironside NNP
+disown VB
+recouping VBG
+cysts NNS
+actually RB
+Rousseau NNP
+political-action JJ
+time-proven JJ
+Shegog NNP
+PCM NNP
+SO-CALLED JJ
+Twigs NNS
+South NNP NNPS JJ NN RB
+Stevie NNP
+Constant JJ NN
+uneventfully RB
+Marketed VBN
+tipping VBG NN
+Fairview NNP
+Philinte NNP
+Charitable JJ
+vital JJ
+kickbacks NNS
+crispy JJ
+matrimony NN
+dangerous JJ
+Mynheer NNP
+COMPANIES NNS NNP
+Equestrian NNP
+seventy-four CD
+monochromatic JJ
+Imrene NNP
+stereo NN JJ
+nondefense JJ NN
+Throws VBZ
+alliance NN
+Gatoil NNP
+Falconry NNP
+properties NNS
+filles FW
+dumpster NN
+Fritzie NNP
+exceeds VBZ
+apogee NN
+Impco NNP
+non-lethal JJ
+chockfull JJ
+Nyiregyhaza NNP
+Walpole NNP
+moisturizer NN
+relies VBZ
+contradistinction NN
+molesting VBG
+electroplated VBN
+Honfed NNP
+Glover NNP
+mouths NNS
+attributable JJ
+one-in-four JJ
+inconvenience NN
+Horatio NNP
+triphenylphosphine NN
+percentages NNS
+Dornier NNP
+landmark NN JJ
+bewitched VBN
+reshuffling VBG NN
+DEFENSE NN
+Nagayama NNP
+subminimum JJ NN
+Fahrenheit NNP NN
+mastodons NNS
+springs NNS VBZ
+Hoffer NNP
+ultimate JJ
+Fox NNP
+bestial JJ
+Borough NNP
+belligerence NN
+ionizing VBG
+enactments NNS
+Tawes NNP
+trade-offs NNS NN
+Hiram NNP
+seven-member JJ
+tiremaker NN
+unbleached JJ
+accusation NN
+computer-systems NNS
+Reviewing VBG
+Cicero NNP
+Heenan NNP
+seconds NNS
+re-entering VBG
+Leonard NNP NN
+draw-down NN
+regarding VBG
+impelled VBN VBD
+canvassing VBG
+Ex-Presidents NNS
+short-sellers NNS
+Dahlia NNP
+Glow NNP
+f-As IN NNP NNS
+transience NN
+wardens NNS
+Market-research NN
+rhetoric NN
+ship NN VBP VB
+peels VBZ
+afoot RB JJ
+Laurent NNP
+abundant JJ
+grandstander NN
+unacceptable JJ
+Bromley NNP
+Furiouser RBR
+on-and-off JJ
+LONG-TERM JJ
+you-know-what NN
+highest-pitched JJ
+wielded VBN VBD
+Booty NN
+semifinalists NNS
+unpublished JJ
+Compassion NNP
+phonemics NNS
+retelling NN
+drunk-and-disorderlies NNS
+simultaneous JJ
+fishing-boat NN
+wiretap NN
+simple JJ NN
+Donning VBG
+Catania NNP
+Flugleasing NNP
+rebounds VBZ NNS
+economist NN
+Black-and-white JJ
+chess NN
+affordable JJ
+owner NN
+Presidency NNP NN
+LP NNP NN
+atop IN
+scruff NN
+grossing VBG
+byproduct NN
+shopping-center NN JJ
+elsewhere RB NN
+Geisha NN
+Butlers NNPS
+Rail NNP NN
+Sherrie NNP
+Righteous JJ
+breaths NNS
+irons NNS VBZ
+Calif. NNP
+seed-bearing JJ
+spanking JJ NN
+landed VBD VBN
+yttrium-containing JJ
+naughtier JJR
+insurability NN
+front-desk NN JJ
+rapist NN
+Greenland NNP
+pupates VBZ
+hardware-maintenance NN
+LIVERPOOL NNP
+legitimized VBN
+tabled VBN
+tickled VBD VBN
+Myth NNP
+irredeemable JJ
+life-and-death JJ
+perversely RB
+Philo NNP
+two-weeks JJ
+usurpation NN
+stager NN
+Civil NNP JJ
+Vlasi NNP
+Lightweight JJ
+PBS NNP
+Gettleman NNP
+Zemlya NNP
+near-unanimous JJ
+Philanthropic NNP
+low-priced JJ
+majoritarian JJ
+greenest JJS
+delays NNS VBZ
+filtering VBG NN
+Asch NNP
+Gurla NNP
+smallish JJ
+lack NN VB VBP
+Versicherungs NNP
+J.V. NNP
+archives NNS
+uselessly RB
+pocketbook NN
+Collectively RB
+she PRP
+devoid JJ
+great-grandmother NN
+Trettien NNP
+Percentage NN
+Freeman NNP
+do-nothing JJ
+lower-than-forecast JJ
+Katharina NNP
+nameplate NN
+Dixons NNP
+taunting VBG NN
+MEASUREX NNP
+Citibank NNP
+Seiki NNP
+bogey NN
+Voltaire NNP
+shimming NN
+General NNP JJ
+Geoffrie NNP
+contribued VBD
+warded VBN
+constructions NNS
+road NN
+Conservationists NNS
+exchange-rate NN JJ
+Lanny NNP
+Gettinger NNP
+blanching VBG NN
+upstart NN JJ
+glomerular JJ
+Nitto NNP
+cluttered VBN JJ
+bassoon NN
+Weinberg NNP
+Motsoaledi NNP
+Minnesotan NNP
+Franciso NNP
+bonfire NN
+dried-out JJ
+cheater NN
+citizens NNS
+Solly NNP
+book NN VB
+hub NN
+copies NNS
+PROSPECTORS NNS
+Dicke NNP
+low-VAT JJ
+canals NNS
+Echelon NNP
+Dietary JJ
+Silesia NNP
+LARGEST JJS
+Lunch NN NNP
+skimming VBG NN
+propagation NN
+pseudosocialism NN
+LAWSON NNP
+Orbe NNP
+artistically RB
+argue VBP VB
+scolded VBN
+Departures NNP
+month-to-month JJ
+Kellar NNP
+Ice NNP NN
+Bucky NNP
+barefooted JJ
+earmarking VBG
+He PRP NNP
+Kingpin NN
+bulk-mail NN
+nondrying JJ
+yongst JJS
+defaults NNS VBZ
+consisting VBG
+media-related JJ
+Five-O NNP
+Seashore NNP
+Kirkland NNP
+Sant'Angelo NNP
+Lines-Trans NNP
+famines NNS
+lieder JJ NN
+Worth-based JJ
+supplier NN
+Beech NNP
+Segnar NNP
+Heavy-coated JJ
+half-understood JJ
+less-than-amicable JJ
+Stephenson NNP
+projectors NNS
+cores NNS
+Keiyo NNP
+disseminates VBZ
+submission NN
+interception NN
+Bozeman NNP
+Cucamonga NNP
+eliminations NNS
+Obstacles NNS
+Nicodemus NNP
+marrieds NNS
+solipsism NN
+hurdles NNS
+upsets NNS VBZ
+phone-company NN
+non-dramas NNS
+cereals NNS
+Amici FW
+manuscript NN
+Kisscorni NNP
+inalienable JJ
+Saunder NNP
+Steinkrauss NNP
+se FW IN NN PRP
+amply RB
+PAY NN VB
+Adjusted NNP VBN JJ
+searing VBG JJ
+makings NNS
+Infrequently RB
+Crumb NNP
+Interfinancial NNP
+madness NN
+Bear NNP JJ NN
+Gloves NNP
+overthrow VB NN
+inhospitable JJ
+Ibbotson NNP
+describe VB VBP
+beast NN
+curing VBG NN
+nieces NNS
+willinge JJ
+Chapman NNP NN
+Carolco NNP
+ill-defined JJ
+Spencerian JJ
+Severa NNP
+Pro-Family NNP
+deathwatch NN
+ballards NNS
+general-practice JJ
+crossings NNS
+resumption NN
+Cher NNP
+Recalls VBZ
+savers\/investors NNS
+Deadlock NN
+propensity NN
+discredited VBN JJ
+Week-e NN
+Ferdinando NNP
+squint VBP
+editing NN VBG
+protrusion NN
+imminence NN
+OWNER NNP
+intervenes VBZ
+Janes NNPS
+wheelchair NN
+SeaFest\/JAC NNP
+cow-man NN
+disbelieve VB
+Ripa NNP NN
+rent-free JJ
+sun-burned JJ
+revolutionized VBD VBN
+restock VB
+Franciscans NNP NNS NNPS
+quantitatively RB
+Keegan NNP
+cosmical JJ
+staring VBG
+Belshazzar NNP
+self-victimized JJ
+highway-construction JJ
+near-irrelevant JJ
+Twenty-two CD
+waffles NNS
+hawked VBD VBN
+fast-moving JJ NNP
+unamended JJ
+Fing NNP
+Classroom NNP
+white-columned JJ
+materializes VBZ
+kayoed VBN
+mean VB VBP JJ NN
+foundling NN
+deliberation NN
+vacuumed VBD
+awaken VB VBP
+ballpark NN
+adhesion NN
+Zachau NNP
+--like IN
+mini-Prohibition NNP
+Alienated NNP
+rationalizing VBG
+State-Local NNP
+whistling VBG
+Stairs NNP
+Hormats NNP
+accretions NNS
+amen UH
+Deficiency NNP
+Heron NNP
+DSW NN
+obeisant JJ
+Confident JJ
+Gwen NNP
+mail-fraud NN
+Severna NNP
+dimers NNS
+declare VB VBP
+Haag NNP
+sperm NN
+non-scientist JJ
+midlevel JJ
+Fortescue NNP
+Corsicas NNS
+swimming VBG JJ NN
+Whitten NNP
+liter NN
+Maurine NNP
+mantel NN
+Hours NNS
+loping VBG
+CenTrust NNP
+Excelsior NNP
+Contemporary NNP JJ
+Ghana NNP NN
+Steudler NNP
+computerizing VBG
+Palmatier NNP
+canting JJ
+Tour NNP NN
+Circuit NNP NN
+land-locked JJ
+bacteria-free JJ
+Burmans NNPS
+shaped VBN VBD JJ
+revenues NNS
+--George NNP
+payouts NNS
+sobering VBG JJ
+fixture NN
+bestow VB
+capitalistic JJ
+straighter JJR RBR
+chest NN
+lambskin NN
+Cannell NNP
+Rimanelli NNP
+insubordination NN
+Ilka NNP
+Brevard NNP
+Foy NNP
+Forstmann NNP
+scribble VB
+Orchard NNP
+Norma NNP
+yuh PRP
+Loose NNP JJ
+Bertrand NNP
+authentically RB
+conformitarianism NN
+interpolation NN
+Shafroth NNP
+stages NNS VBZ
+Dicello NNP
+rapidity NN
+workout NN
+Bressler NNP
+gripped VBD VBN
+single-payment JJ
+lifesize JJ
+physically RB
+Manningham NNP
+recliner NN
+agreed-upon IN JJ
+Uniroyal\ NNP
+insulated VBN . JJ
+oz NN
+Rae NNP
+Aquacutie NNP
+castoff JJ
+outface VB
+awaited VBD JJ VBN
+high-grade JJ
+mercifully RB
+Anschluss FW NNP
+Carmine NNP
+Porum NNP
+Bull NNP NN
+rebuttals NNS
+Rufus NNP
+RoadRailer NNP
+Arsenio NNP
+Abingdon NNP
+off-field JJ
+Allow VB
+pre-kindergarten NN
+Puget NNP
+Borg-Warner NNP
+Woodbridge NNP
+housebreakers NNS
+offers VBZ NNS NN
+Dostoevski NNP
+surrealist JJ
+KV NNP NN
+ProBody NNP
+homeward RB
+pragmatism NN
+Airports NNP NNS
+Winners NNS
+screwed VBN VBD
+unlikely JJ RB
+leading-edge JJ
+freak NN VBP
+Ancel NNP
+Shoichi NNP
+tap VB NN VBP
+Kanner NNP
+vehicle-making JJ
+Kane NNP
+seventh-consecutive JJ
+Brandenburg NNP
+absorbent JJ
+allowable JJ
+Vivaldi NNP
+N.F. NNP
+incautious JJ
+troop NN VBP
+Ukrainian JJ NNP
+assimilating VBG
+one-ship JJ
+high-speed JJ
+Piloting VBG
+supplies NNS VBZ
+preserve VB VBP NN
+calumniated VBN
+befell VBD
+eastward RB
+slower JJR RBR
+once-sporadic JJ
+ARRESTED VBD
+feel VB VBP NN
+heating NN VBG
+time-zone JJ
+reassert VB
+prognosticator NN
+unlike IN JJ NN
+Britisher NNP
+Thayer NNP
+minimill NN
+pancake NN
+trembles VBZ
+anesthetics NNS
+icebound JJ
+Bierbower NNP
+domesticates VBZ
+fuel-injected JJ
+Stoeckel NNP
+Arabian-American NNP
+disdain NN VBP VB
+Borge NNP
+Unitel NNP
+Papa-san NNP
+Wilderness NN NNP
+unadited JJ VBN
+lyrics NNS
+OTC-market JJ
+Varner NNP
+sixth JJ RB
+customer NN
+NRLDA NNP
+Desmond NNP
+image-making NN JJ
+ground-support JJ
+Spanish-born JJ
+Horrigan NNP
+restoration NN
+higher-rate JJ
+Ajax NNP
+caretaker NN
+hands-on JJ
+counter-intelligence JJ
+isolation NN
+Pius NNP
+balustrade NN
+book-buying JJ
+more-open JJ
+animal-health NN
+Perfect JJ NNP
+toadies NNS
+transoceanic JJ
+conductor NN
+Samar NNP
+Semenov NNP
+pretty-good-rated JJ
+put VB JJ NN VBP|VB VBD VBN VBP
+fractures NNS VBZ
+Slosberg NNP
+jockeys NNS
+Jong NNP
+rocket-like JJ
+severly RB
+Mencius NNP
+Nauman NNP
+Kyocera NNP
+insatiable JJ
+canned JJ VBN
+waterfront NN
+Larsen NNP
+platter JJ NN
+Hachette NNP
+allowed VBN JJ VB VBD
+Weary JJ NNP
+bespectacled JJ
+PDI NNP
+Dagens NNP
+swallowed VBN VBD
+curricula NNS
+Contacted VBN
+snagging VBG
+Sleepinal NNP
+Mooney NNP
+perform VB VBP
+Concludes VBZ
+fundamantalist NN
+cogently RB
+belly NN RB
+tripled VBN VBD
+bathroom NN
+fork-lift NN
+deflator NN
+performers NNS
+Monmouth NNP
+payable JJ
+calf's-foot NN
+Roller NNP
+depositing VBG
+Lecture NNP
+bid-wanted JJ
+Warnaco NNP
+no-smoking JJ
+Corton-Charlemagne NNP
+prosoma NN
+null-type JJ
+Surgeons NNPS NNS
+wildcat NN JJ
+Taubman NNP
+claw NN
+deplore VB
+Ports NNP NNS
+Wachter NNP
+Copp NNP
+Jiangsu NNP
+branching VBG NN
+Rainwater NNP
+reupholstering VBG
+Holly NNP
+bracket NN
+interpreter NN
+aerospace-industry NN
+sinfulness NN
+it'controlled PRP|JJ
+dynamics NNS
+microscopy NN
+pajama NN
+cooperative-care JJ
+sub-minimum JJ
+denomination NN
+hard-currency NN JJ
+maye MD
+alma JJ NN
+low-voltage JJ
+Rhythms NNPS
+Skye NNP
+Shari NNP
+non-Germans NNS
+teaspoonfuls NNS
+bets NNS
+nudism NN
+irregularity NN
+--the JJ CD DT NNP
+Huron NNP
+Wolder NNP
+Schwada NNP
+elated JJ VBN
+Common-law JJ
+Janet NNP
+Aromatiques NNP
+lamechians NNS
+Blasingame NNP
+Ad-Unit NN
+Bianco NNP
+Aiken NNP
+Aj. NNP
+streamliner NN
+inexplicable JJ
+Very RB NNP JJ
+ecstatic JJ NN
+funded VBN VBD JJ
+visa NN
+Solutions NNPS NNS
+sew VB VBP
+GIMMEE UH
+Crotale JJ
+cruelest JJS
+Asbury NNP
+Heathrow NNP
+Pity NNP VB
+avoided VBN JJ VBD
+eatings NNS
+sci-fi JJ NN
+Butcher NNP
+Ches NNP
+cotter NN
+Excludes VBZ NNS
+arcade NN
+Readings NNS
+Kirov NNP
+Automated NNP VBN
+five-block JJ
+incautiously RB
+Addition NN
+gaiters NNS
+Missy NNP
+Statute NN
+convulsed VBD
+Nazi NNP JJ
+Ath. NNP
+Sky-god NNP
+cape NN
+Fri NNP
+mountainsides NNS
+Harford NNP
+sandwiched VBN VBD
+conflict-ridden JJ
+biker NN
+Advani NNP
+Oral NNP
+TND.B NNP
+Inferiority NN
+inboard JJ RB
+Tristan NNP FW NN
+misguided JJ VBN
+freedoms NNS
+darlings NNS
+Chiat NNP
+jinx NN
+O'Herron NNP
+infect VB
+Core NNP JJ
+quota NN
+sourdough JJ NN
+Ishida NNP
+capital-gains-tax JJ
+brink NN
+redheads NNS
+hath VBZ
+Shifte NNP
+Long-haul JJ
+U-turn NN
+goodwill NN
+federal-state JJ NN
+greenfield NN
+passerby NN
+queues NNS
+KTXL NNP
+dormant JJ
+NewsHour NNP
+hard-boiled JJ
+snick NN
+motor-drive JJ
+Kirk NNP
+inbreeding VBG NN
+lowered VBD VBN JJ
+Remarque NNP
+rains NNS VBZ
+weld VB NN
+Hardart NNP
+Lorca NNP
+Vivian NNP
+double-B-minus\ NN
+Brookland NNP
+Stuck-up NN
+operational JJ
+credit-backing NN
+epoch NN
+Embedded VBN
+stock-exchange NN
+headlined VBN VBD
+pyramid-shaped JJ
+Consolo NNP
+suavity NN
+beneficiaries NNS
+BOOSTS NNS VBZ
+Paterson NNP
+impersonations NNS
+Dutchess NNP
+prolonged VBN VBD JJ
+Loral NNP JJ
+recognizably RB
+polyether-type JJ
+World-Telegram NNP
+Picon NNP
+gorges NNS VBZ
+Felice NNP
+nonetheless RB
+Mike NNP
+overstated VBN VBD
+divisional JJ
+birthmark NN
+codification NN
+substance-abusing JJ
+dystrophy NN
+Language NN NNP
+INRA NNP
+essential JJ NN
+Catfish NNP
+air-charter JJ
+tenderness NN
+Relationships NNPS NNS
+crags NNS
+layer NN
+kinder JJR
+machinegun NN
+Miners NNP
+Woonsocket NNP
+UNDEFINED JJ
+Klauer NNP
+autumn NN
+necrosis NN
+Konikow NNP
+Rain NNP NN
+clutch NN VBP VB
+Quindlen NNP
+quarter-million-dollar JJ
+mimics NNS VBZ
+pre-Han NNP
+Ruderman NNP
+Son-of-DAT NNP
+officiate VB
+Spokesman NNP
+quadric NN JJ
+Jadwiga NNP
+phlegm NN
+causeway NN
+Segur NNP
+typhoon NN
+computer-integrated JJ
+navigator NN
+struggle NN VBP VB
+victoriously RB
+assailed VBN VBD
+shutoff NN
+clay-like JJ
+tailgate NN
+cash-or-shares JJ
+--meal NN
+animals NNS
+hogging VBG
+Tappan NNP
+tryouts NNS
+Ida NNP
+retroactivity NN
+HUGO'S NNP NNP|POS
+drought-shriveled JJ
+bully NN VBP VB
+anti-army JJ
+English-Dutch JJ
+marshmallow NN
+west-to-east RB
+Maronite JJ
+Monorail NNP
+schillings NNS
+six-fold RB
+bookcase NN
+Dugan NNP
+falcons NNS
+Strong-earnings NNS
+ho-hum JJ
+intestine NN
+rejuvenated VBN JJ
+white-topped JJ
+Romania NNP
+Strieber NNP
+verifying VBG
+Moonie NN
+Divi NNP
+reward NN VB VBP
+Ties NNPS NNS
+Crane NNP
+Wal-Mart NNP
+much-awaited JJ
+Slims NNPS NNP
+Seeking VBG
+Ashman NNP
+obstructive JJ
+taxing VBG JJ NN
+putty-like JJ
+squabbling NN VBG
+Bacillus NN FW
+Soviet-style JJ
+cash-only JJ
+cancer-suppressors NNS
+formations NNS
+forbids VBZ
+ingratitoode NN
+Bantu NNP
+Others NNS NNPS NNP
+boom NN VB
+Idols NNS
+Official JJ NNP
+Jonni NNP
+dog-and-pony NN
+secularist NN
+Malpractice NN
+Luette NNP
+instantaneous JJ
+Early RB NNP JJ
+flop NN VBP VB
+Bankruptcy NNP NN
+FT-SE NNP
+Maestro NNP NN
+Bereuter NNP
+amount NN VB VBP
+seminarian NN
+inn NN
+Couples NNS NNP
+Newhart NNP
+foresight NN
+mediocrity NN
+Specimens NNS
+Wathen NNP
+assembling VBG NN
+carving VBG
+frequency-control JJ
+pseudo-scientific JJ
+reformers NNS
+Sympathy NN NNP
+Zuercher NNP
+reuniting VBG
+Khomeini NNP
+inkling NN
+item-veto JJ VB
+sludge-covered JJ
+southpaw NN
+concordant JJ
+recrimination NN
+Siberian JJ
+endogamy NN
+synonyms NNS
+TRANSPLANT NNP
+wind-blown JJ
+Logic NNP NN
+inter-exchange JJ
+suspicions NNS
+Riely NNP
+meteoritic JJ
+airport NN
+water-purity NN
+frenziedly RB
+gay-bashing JJ
+ropers NNS
+talker NN
+coffees NNS
+consumed VBN VBD
+crowing VBG NN
+HEUBLEIN NNP
+labs NNS
+worn-out JJ
+Shu-tt VB
+lows NNS
+Androgyny NN
+non-monopolistic JJ
+anachronisms NNS
+irrepressible JJ
+Tokyo NNP
+Evaluation NN NNP
+feds NNS
+unpatriotic JJ
+keyless JJ
+Baxley NNP
+end-product NN
+Leary NNP
+Rundfunk NNP
+capital-to-asset NN JJ
+sub-markets NNS
+Latest JJS
+Fournier NNP
+Olivares NNP
+Nagle NNP
+Pyrrhic JJ
+Teleprompter NNP
+trestle NN
+craven JJ
+considerations NNS
+Ghazel NNP
+Eckhardt NNP
+reading NN VBG
+appellate-litigation NN|JJ
+obedient JJ
+ponied VBD
+relives VBZ
+Beat NNP NN VB
+demolishing VBG
+verifiably RB
+Japanese-American JJ
+revolutions NNS
+Aaa JJ
+bikes NNS
+enlighten VB
+Pitz NNP
+weirdy NN
+Katharine NNP
+Chet NNP
+Anglian JJ
+Itoh NNP
+Belzbergs NNPS
+non-writers NNS
+considering VBG
+Lichtblau NNP
+druggers NNS
+adults NNS
+no-growth JJ NN
+condoned VBN VBD
+fictive JJ
+post-merger JJ
+Jerral NNP
+Agnelli-related JJ
+Features NNPS
+counterbalance VB NN
+tightrope NN
+high-blood-pressure JJ
+retailer NN
+Lauber NNP
+disused JJ
+restroom NN
+throats NNS
+incessant JJ
+bananas NNS
+Serra NNP
+S. NNP
+sex NN VB
+Darin NNP
+L.P.V NNP
+Podufaly NNP
+Johnson-Merck NNP
+Soap NNP NN
+Resident NNP
+Successive JJ
+Goffstein NNP
+Failure NN
+Receave VBP
+correlate VB VBP
+attentions NNS
+risk-takers NNS
+Rilwanu NNP
+explorations NNS
+prosper VB
+greedier JJR
+swayed VBD VBN
+sensibilities NNS
+thinking VBG VBG|NN JJ NN
+pasture NN JJ VB
+Casbah NNP
+Wentworth NNP
+D-5 NNP CD
+privatize VB
+Alloy NN
+docudramas NNS
+charities NNS
+Hibernia NNP
+DISAPPOINTMENTS NNS
+Grev. NNP
+Hawthorne NNP NN
+Maple NNP JJ NN
+non-supervisory JJ
+synthetics NNS
+megabillion NN
+keg NN
+Journal NNP NN
+arch-rival JJ NN
+assail VB
+Durenberger NNP
+strive VB VBP
+humanism NN
+Pastures NNS
+outwardly RB .
+e-Ames NNP
+outrages NNS
+BEST JJS
+SAFEWAY NNP
+demolished VBN VBD
+reverberated VBN VBD
+code-related JJ
+Gerald NNP
+Chapin NNP
+NH NNP
+McWilliams NNP
+curved JJ VBN
+Seisakusho NNP
+vests NNS
+rotor NN
+Least JJS
+Session NN
+octoroon NN
+scarlet JJ
+hoard NN VB VBP
+hepatitis NN NNP
+PCP NNP
+Garanti NNP
+DataTimes NNP
+MANAGERS NNS
+all-paper JJ NN
+survivors NNS
+disdainful JJ
+pre-cooked JJ
+painstaking JJ
+anti-intellectualism JJ NN
+conservatives NNS
+Zionism NNP
+daubed VBD
+thiouracil NN
+Federal NNP JJ
+Churning NN
+CF66 NN
+Clothiers NNP NNPS
+Parichy NNP
+gains NNS NN VBZ
+Platform NN
+defying VBG
+Maximum NNP JJ
+halogen NN
+Rearding VBG
+myosin NN
+Indigo NNP
+Wheeland NNP
+installer NN
+sponged VBD VBN
+Tearle NNP
+helping VBG NN
+E.R. NNP
+diskettes NNS
+heavy-industry NN
+Hey UH NNP
+hairy JJ
+Universe NNP NN
+Personally RB
+symmetric JJ
+Esrey NNP
+Seasons NNPS
+Inaugural NNP JJ NN
+Jolt NNP VB
+malapropism NN
+cuff-like JJ
+politicos NNS
+Ambushes NNS
+erupt VB VBP
+punster NN
+linkups NNS
+Kang NNP
+co-ordinator NN
+mafia NN
+sulfur-dioxide NN
+hauntingly RB
+Kita NNP
+long-hair JJ
+Listeners NNS
+buffer NN VB
+NMR NNP
+remotely RB
+sickened VBN VBD JJ
+shaky JJ
+Klan NNP
+Overture NNP
+orthorhombic JJ
+Restless JJ
+service-connected JJ
+sanctioning VBG
+Phineas NNP
+interrelations NNS
+Klinsky NNP
+encircling VBG
+Yankees-Brooklyn NNP
+anti-liquor JJ
+Discretion NN
+Lucite NNP
+pumped VBN VBD
+malnourishment NN
+Loen NNP
+company NN
+Balmer NNP
+Pit NN
+garbled VBN
+successors NNS
+bettering VBG
+Folgers NNP
+freckled JJ
+DUN NNP
+Pitiful NNP
+incapable JJ NN
+girlish JJ
+Rag NNP
+doses NNS
+Ukiah NNP
+ad-supported JJ
+patriarchate NN
+Inter NNP
+Purchases NNS NNPS
+Magnolias NNS
+Glo NNP
+abound VBP VB
+Attacks VBZ NNS
+giveaways NNS
+frailest JJS
+nationalized VBD VBN JJ
+Foglio NNP
+errata NNS
+realignment NN
+steel-hulled JJ
+radiations NNS
+curtly RB
+PARIS NNP
+Anointing VBG
+asset-growth NN
+cents-a-unit JJ
+Yurochka NNP
+framework NN
+Awarding VBG
+guitars NNS
+cripples NNS
+boon NN JJ
+Mnuchin NNP
+Sesit NNP
+service-industry JJ NN
+tar NN
+Chattanooga NNP
+unrestrictedly RB
+Daiei NNP
+--considered VBN
+inflating VBG
+nonoperating VBG JJ NN
+Joni NNP
+venerable-but-much-derided JJ
+disliked VBD JJ VBN
+misted VBD
+golden-crusted JJ
+L.A NNP
+Hocke NNP
+Dalles NNP
+reignited VBD VBN
+souk NN
+Siebert NNP
+ruddiness NN
+Compared VBN
+establishments NNS
+blacking NN
+adding VBG NN
+up-jutting JJ
+millionths-of-a-second JJ
+iodide-concentrating JJ
+ellipsis NN
+editor-in-chief NN
+golds NNS
+Voiture NNP
+shotguns NNS
+unstanched VBN
+Bernini NNP
+infallibility NN
+centrality NN
+manse NN
+parisology NN
+Ventilation NN NNP
+stagnation NN
+observed VBN JJ VBD
+Feiner NNP
+non-Cocom JJ
+Allied NNP JJ
+once-popular JJ
+dourly RB
+spacing NN JJ
+Holiday NNP
+Kamm NNP
+ever-swelling JJ
+Hart-Scott-Rodino NNP JJ
+Feeney NNP
+thinners NNS
+Parioli NNP
+clay NN
+Peepy NNP
+centre NN
+Porsche-like JJ
+janitors NNS
+strangled VBN JJ
+press-ganged JJ
+Stoicism NN
+cages NNS
+Viscount NNP
+centrifugation NN
+Coates NNP
+the'soft JJ
+open-bank JJ
+diagonal JJ
+outlawry NN
+Coordinated VBN
+Floral NNP
+diuretics NNS
+electing VBG
+Assumption NN
+waitresses NNS
+Dare VB
+meats NNS
+Capacity NN
+maninstays NNS
+G.J. NNP
+exists VBZ
+shalt VB
+Autocracies NNPS
+psychical JJ
+president\/public JJ
+Wastewater NNP
+fortifications NNS
+fifteen-mile JJ
+agreed VBD VBN JJ
+scoped NN
+solar-power JJ
+Jewish JJ NNP
+undaunted JJ
+settled VBD VBN JJ VB
+Grande-Bretagne FW NNP
+Beau NNP
+characteristically RB
+silver-bearded JJ
+Shenzhen NNP
+non-cumulative JJ
+physics NN NNS
+world-at-large NN
+clothesbrush NN
+Victory NNP NN
+zoo NN
+youthful JJ
+sweet-faced JJ
+Bay-front JJ
+threshhold NN
+Mechanized VBN JJ
+perfectability NN
+Hemorrhage NNP
+Hausman NNP
+Larsson NNP
+whittled VBN
+interregnum NN
+painting NN VBG
+Insilco NNP
+Petaluma NNP
+bouquets NNS
+Lamborghini NNP
+demo NN
+curiosity NN
+Wirtz NNP
+OIL NNP NN
+waffling VBG JJ NN
+Refuses VBZ
+coronary JJ
+expedite VB
+hue NN
+gagged VBN VBD
+non-democratic JJ
+KLUC NNP
+Angers NNP
+Barbecued JJ
+quarrels NNS VBZ
+outfielder NN
+long-lived JJ
+Oran NNP
+jowly JJ
+Volz NNP
+Phils NNPS
+unfocused JJ
+proclamation NN
+unshelled VBN
+Accor NNP
+Loran NNP
+Tektronix NNP
+erecting VBG
+Bergman NNP
+Picop NNP
+Proverbs NNS
+Japanese-South NNP
+Semmes NNP
+LS NNP
+Simulator NNP
+Ich FW
+wearin VBG
+fiscal-fourth JJ
+long-view JJ
+Nyunt NNP
+misdemeanor NN
+Anthology NNP
+whole JJ NN RP
+Regalia NNP
+Overturf NNP
+billion-dollar JJ
+Attermann NNP
+Spinelli NNP
+Finsbury NNP
+Thyroid NN
+Dissect VB
+firecrackers NNS
+neo-classicism NN
+Decanting VBG
+Need VB NNP MD NN VBP
+western JJ
+childrens NNS
+Talmud NNP
+greet VB VBP
+Schoeppner NNP
+l'Ange NNP
+S.K. NNP
+slacking VBG
+recently-filed JJ
+irised VBN
+Needham NNP
+cortex NN
+Nipponese JJ
+Christmas-tree JJ
+prison NN VB
+midnight NN RB
+monopolies NNS
+Merill NNP
+deafening VBG JJ
+Consequences NNS
+Bendix\/King NNP
+dropped VBD VBN
+statist JJ
+Subgroups NNS
+liveliest JJS
+tattoo NN
+all-round JJ
+Photograph NN NNP
+pestering VBG
+Sasebo NNP
+snuffboxes NNS
+property-tax JJ
+Suliman NNP
+faulted VBN VBD
+Thanksgiving NNP
+Jacob NNP
+abnormality NN
+shit NN
+Haementeria FW
+cabin-crew NNS
+supposedly RB
+contrarians NNS
+entanglement NN
+gross-income NN
+whole-house JJ
+disappeared VBD VBN
+Musique NNP
+Giannini NNP
+Funston NNP
+Belth NNP
+reacquainted VBN
+hot-line NN
+anthem NN
+portability NN
+contents NNS
+contentions NNS
+lithe JJ
+utopianism NN
+baseballight NN
+Ten-year-old NNP JJ
+eromonga FW
+beeping VBG NN
+near-monopoly NN JJ
+Streep NNP
+Curcio NNP
+Rudnick NNP
+confidence-crusher NN
+bobbin-to-cone JJ
+off-duty JJ
+Alicia NNP
+Alaskan JJ NNP
+Falvey NNP
+cross-licensing NN JJ
+Westerly NNP
+cost-efficiency NN
+overseen VBN NN
+species NN NNS
+two-tiered JJ
+Racism NN NNP
+ecumenicists NNS
+Spielberg NNP
+iodination NN
+undergoing VBG
+Infants NNS
+book-to-bill JJ NN
+self-reform NN
+discounts NNS VBZ
+hearing-impaired VBN
+buffetings NNS
+integrated-circuit JJ
+rightful JJ
+bullion NN
+Conlon NNP
+Quebeckers NNPS
+Solebury NNP
+hirelings NNS
+gray JJ NN
+free-enterprise NN
+Grappely NNP
+DeGol NNP
+caught VBN VBD
+Scholarship NN NNP
+regi FW
+Bogart NNP
+local-control JJ
+Giants NNP NNS NNPS
+beer-cooling VBG
+Accumaster NNP
+Severe JJ NNP
+non-bank JJ
+kibbutz NN
+yielding-Mediterranian-woman JJ
+established VBN JJ VBD
+uninterested JJ
+coming-out JJ
+Osborne NNP
+unplanned JJ
+Riepe NNP
+prophet NN
+wronged VBN JJ
+Hez NNP NN
+robes NNS
+sic RB FW VB
+Drum NNP
+Park NNP NN VB
+distrusts VBZ
+pilot NN JJ VB
+passivity NN
+outlooks NNS
+MEATS NNPS NNS
+outweigh VBP VB
+Marcmann NNP
+CalFed NNP
+Volunteer NNP
+belly-up JJ RB
+worked VBD VBN
+hereafter RB
+recount VB NN
+fondled VBN
+drank VBD
+Accept VB
+Okayama NNP
+JAILED VBN
+C-S NNP
+Darwen NNP
+acquittal NN
+NMS NNP
+Leave VB
+stunned VBD VBN JJ
+pleasurable JJ
+food-industry NN
+McLelland NNP
+mumbled VBD VBN
+congratulatory JJ
+Ibn NNP
+dartboard NN
+reprice VB
+musket NN
+pinched VBN VBD JJ
+Bund NN
+Ta-Hu-Wa-Hu-Wai NNP
+Elegant NNP
+nonwhite JJ
+Tonka NNP
+Victoire NNP
+last-minute JJ NN
+Student NNP NN
+Comment NN NNP
+U.S.S.R. NNP
+Rake NN NNP
+predictor NN
+wolves NNS
+Yumiko NNP
+Stronach NNP
+crafting VBG
+yuk NN
+Ardito-Barletta NNP
+demonstrations NNS
+Raikes NNP
+Countrywide NNP
+Morrell NNP
+puffy JJ
+get-rich-quick JJ
+Ticketron NNP
+Noufou NNP
+individualistic JJ
+re-emerge VB
+Splenomegaly NN
+thorny JJ
+over-the-air JJ
+soul NN
+al-Assad NNP
+embroidery NN
+stubborn JJ
+Harlan-Marcia NNP
+Ticonderoga NNP
+Phibro NNP
+bunco NN
+Suspension NNP
+bet NN RB VB VBD VBN VBP
+Asea NNP
+substitutions NNS
+hard-pressed JJ
+census NN
+Synchronized VBN
+gantlet NN
+ratio NN
+cubism NN
+Kimbolton NNP
+underemployed JJ
+Yale-Army NNP
+cans NNS VBZ
+Torrio-Capone JJ
+ERC NNP
+semi-automatic JJ
+say-because IN
+BATTLED VBD
+Matsuura NNP
+hailed VBD VBN
+low-caliber NN
+scammers NNS
+lawful JJ
+Pandelli NNP
+Mullerin NNP
+less-profitable JJ
+lasciviously RB
+reassess VB NN
+Shivers NNP
+pragmatist NN
+prevailin NN
+observations NNS
+Hid NNP
+Hubermann NNP
+Constraints NNS
+Howe NNP
+flashback NN
+non-crisis JJ
+ADVERTISING NNP
+old-style JJ
+pruta NN
+Depew NNP
+Collor NNP
+national-service JJ NN
+Bede NNP
+menarches NNS
+Ferranti NNP NNS
+freethinkers NNS
+Lully NNP
+athletes NNS
+Californian NN JJ NNP
+Isler NNP
+supposes VBZ
+overzealousness NN
+hectic JJ
+gutted VBN VBD
+palm-lined JJ
+Harkinson NNP
+skiing NN VBG
+Averell NNP
+Delacre NNP
+acrimony NN
+training. NN
+Towards NNP IN
+re-creactions NNS
+emblems NNS
+Vitalie NNP
+chimney NN
+lab NN
+securities-investment JJ
+capital-markets JJ
+ghost-busting NN
+Avant-garde NN
+S.p NNP
+gleeful JJ
+Wonder NNP NN VBP
+n't RB NNP
+numenous JJ
+Mayor NNP NN
+forty CD
+Liipfert NNP
+familial JJ
+hydroelectric JJ
+Present JJ NN RB VB NNP
+Lureen NNP
+Luckily RB
+green-bugs NN
+nonbusiness NN
+Tsai NNP
+addictive JJ
+Hernando NNP
+Macy NNP
+hand-woven VBN NN
+declarations NNS
+BancNewEngland NNP
+once-cozy JJ
+prosecutors NNS
+plasma NN
+BONO FW
+ensnared VBN
+Soda NNP
+scabs NNS
+Ripe NNP
+November\ JJ
+Bamberger NNP
+Sharps NNP
+Cleanth NNP
+persistently RB
+beats VBZ NNS
+fervors NNS
+housing-assistance JJ
+FORCES NNS
+Prozac NNP
+Streetspeak NNP VB
+base-runner NN
+Fink NNP
+Stein NNP
+Disabilities NNP NNPS
+clotted JJ
+Saville NNP
+solarheated JJ
+Pencils NNS
+breathy JJ
+Literaturnaya NNP
+Antonio-based JJ
+enclosing VBG
+mopped VBD VBN
+With IN NNP
+Compliance NNP NN
+blaze NN VB VBP
+Bitting NNP
+Carrel NNP
+Divided VBN
+odd-lot JJ CD
+church-state NN JJ
+border NN
+buckle VB NN
+alarmingly RB
+hesitation NN
+pettinesses NNS
+Sault NNP
+nonmythological JJ
+spookiest JJS
+XIII NNP
+Inada NNP
+Negroid JJ
+Nedlloyd NNP
+Breuer NNP
+Smaller JJR
+steel NN JJ
+briefs NNS
+Essar NNP
+Baches NNPS
+dysentery NN
+Seltzer NNP
+over-simplification NN
+Nevertheless RB
+buffet NN VB VBP
+foreclosure NN
+Barbee NNP
+car-industry NN
+Adventurers NNS
+unamused VBN
+assimilation NN
+Brisk JJ
+spilling VBG NN
+Beck NNP
+communications-network JJ
+horse-drawn JJ
+potentiality NN
+Peripherals NNPS NNP
+Actor-Crooner NNP
+service-sector JJ
+crazy-wonderful JJ
+unanimous JJ
+compare VB VBP NN
+snowy JJ
+Loraine NNP
+Bosak NNP
+perspective NN JJ
+untrained JJ
+Talmo NNP
+bore\ VBP
+sportswear NN
+Mager NNP
+hazards NNS
+Dreamers NNS NNPS
+Fearless NNP JJ
+Welling NNP
+Capra NNP
+litter NN VBP
+Jacky NNP
+prescribing VBG
+preemployment NN
+deification NN
+longevity NN
+desegregate VB
+Tactical NNP
+slicker NN
+Seattle-First NNP
+well-cared-for JJ
+nerve-cell JJ
+can MD NN VB
+Active JJ NNP
+recital NN
+ductwork NN
+update VB VBP NN
+fritters NNS
+departmentalizing VBG
+TransmancheLink NNP
+acknowledged VBD VBN JJ
+flanking VBG
+Armbro NNP
+Malcolm NNP NN
+disrupts VBZ
+Reinaldo NNP
+civilians NNS
+Akron NNP
+relevancy NN
+fog-enshrouded JJ
+Items NNS
+Ayub NNP
+overheard VBN VBD
+Brahm NNP
+attorneys NNS
+Cruzan NNP
+Phoenix NNP
+Nineteenth-century JJ
+revenue-raising JJ NN
+interfacial JJ
+beer-runners NNS
+tourists NNS
+Caprice NNP
+oldies NNS
+a-raising VBG
+electronic-publishing JJ
+Discrepancies NNS
+refuted VBD VBN
+Shoulder NN
+voice-processing JJ
+Geier NNP
+aborted JJ VBD VBN
+roommate NN
+out... :
+loveliest JJS
+Encore NNP
+Nakajima NNP
+bottomed VBN VBD
+whitened JJ VBD
+profusely RB
+Revelation NNP NN
+prescriptions NNS
+scorers NNS
+Crystallography NNP
+photos NNS
+mull VB
+Non-residential JJ
+actuators NNS
+Presser NN
+boasts VBZ
+bebop NN
+hooking VBG
+employee-health NN
+glasses NNS
+Foulds NNP
+Ashley NNP
+melon NN
+trijets NNS
+McCrady NNP
+Stoecker NNP
+paralysis NN
+Lissa NNP
+drawing-rooms NNS
+unsaddling VBG
+crucial JJ
+spin-off NN JJ
+martyrdom NN
+escritoire NN
+GOULD NNP
+clustering VBG NN
+Rosalie NNP
+incinerator NN
+moors NNS
+untrue JJ
+deer-are-long-legged-rats-with-big-ears JJ
+wasteland NN
+HAL NNP
+Scraps NNS
+Heyman NNP
+gridlock NN
+crisis-oriented JJ
+sashayed VBD
+MO NNP
+vane NN
+prostrate JJ
+franking NN VBG
+non-smokers NNS
+juniors NNS
+Galax NNP
+Comroe NNP
+Bechhofer NNP
+pyknotic JJ
+blundered VBD VBN
+stored VBN VBD
+Solon NNP
+gallery NN
+unconsolidated JJ VBD VBN
+requesting VBG
+Cerinvest NNP
+discount-movie JJ
+thickness NN
+tight JJ RB
+surround VBP VB
+brewing NN VBG
+saved VBN VBD
+donate VB VBP
+'60s NNS CD
+poaching VBG
+resulted VBD VBN
+shrimping NN
+thatched-roof JJ
+triple-crown JJ
+lying VBG NN
+Remembrance NN NNP
+abominable JJ
+Everest NNP
+dignity NN
+Kalikow NNP NN
+kitty-cornered JJ
+Multiples NNPS
+Reidy NNP
+Boatyards NNS
+abutments NNS
+uncritical JJ
+Interlochen NNP
+Bloc NNP
+alundum NN
+touches NNS VBZ
+Off-Road NNP
+Households NNS
+Fail NNP
+right-handed JJ
+T-34 NN
+HCA NNP
+Lavery NNP
+Dignitaries NNS
+gym NN
+Schuster NNP
+pro-Reagan JJ
+Knowledgeable JJ
+forty-two CD
+veldt NN
+a'junk-junk JJ
+Literal JJ
+EPO NNP
+BOGGS NNP
+Ruysch NNP
+scandal-ridden JJ
+operator-assisted JJ
+quote VB VBP NN
+Hi UH NNP
+Yards NNP
+cant NN
+impaction NN
+joint-return JJ
+NJ NNP
+hard-to-please JJ
+consanguineous JJ
+brotherhood NN
+Isles NNP NNPS
+transoms NNS
+unacceptably RB
+geologists NNS
+optimists NNS
+Phoenicians NNS
+Ragalyi NNP
+swollen JJ VBN
+experimentations NNS
+gin-and-tonics NNS
+reaped VBN VBD
+permanent-insurance JJ
+imperfectly RB
+munificence NN
+legitimizes VBZ
+fenders NNS
+cheating NN VBG
+grates NNS
+FMC NNP
+disease-resistance JJ
+tree-lined JJ
+Carlisle NNP
+accomplices NNS
+optronics NN
+tanker NN
+STEEL NNP
+Stephens NNP
+periphery NN
+collosal JJ
+artistic JJ
+soaps NNS
+Lucio NNP
+Tensile JJ
+Sacco NNP
+tugging VBG
+irony NN
+writeoffs NNS
+REJECTED VBN
+again RB
+bankers NNS
+Trinkaus NNP
+ungratified JJ
+precooked VBN
+idealism NN
+four-hour JJ
+libelous JJ
+ISSUES NNS
+restorability NN
+Mossberg JJ NNP
+name-drops VBZ
+easel NN
+health-club JJ NN
+docilely RB
+tat VB
+enervation NN
+permissive JJ
+expect VBP VB IN
+disquiet NN
+squalor NN
+communications NNS NN
+unconquerable JJ
+outleaped VBD
+irredeemably RB
+brethren NNS
+vise NN
+bluebook NN
+Basham NNP
+scrutin FW
+recondite JJ
+Malapai NNP
+refuel VB
+Bleckner NNP
+Verbindungstechnik NNP
+scrub VB JJ NN
+Vegas-based JJ
+Id NN
+interrogators NNS
+flour NN
+autistic JJ
+reality-based JJ
+mazes NNS
+hell-raising NN
+Tonight NNP NN RB
+decry VB VBP
+INVESTMENT NNP NN
+commented VBD VBN
+blowup NN
+improvident JJ
+five-game JJ
+straitjacket NN
+reinterpreted VBN
+figger VBP
+strategist NN
+Wanted VBN NNP
+expletive NN
+covered VBN JJ VBD
+looms VBZ NNS
+Centocor NNP
+penetrations NNS
+cleanup NN
+centerfielder NN
+cost-finding JJ
+shepherded VBD
+merciful JJ
+consecration NN
+wonderbars NNS
+Alokut NNP
+Seiko NNP
+quarter-point NN JJ
+pinochle NN
+PBX NNP
+wife\/mother NN
+Clancy NNP
+BOSTON NNP
+discomfort NN
+fifty-fifty JJ
+Kinsley NNP
+Mascotte NNP
+share-purchase NN
+kwhr NN
+Pedersen NNP
+equity-purchase JJ NN
+sunnier JJR
+Loyalties NNS
+J.W. NNP
+gory JJ
+LAWMAKERS NNS
+protested VBD VBN
+Cinemax NNP
+ethics-related JJ
+accused VBN VBD JJ NN
+ascendancy NN
+Everybody NN NNP
+Whitrow NNP
+Knudson NNP
+descriptions NNS
+Breakers NNP NNPS
+exclusion NN
+missive NN
+cleft NN VBN
+impression NN
+aftermaths NNS
+Herger NNP
+touchstone NN
+Rudner NNP
+jaded JJ VBN
+seizures NNS
+Pesqueira NNP
+Biosite NNP
+bondmarket NN
+questioners NNS
+teetered VBD
+mislaid VBN
+certifies VBZ
+Darla NNP
+rallies NNS VBZ
+preliminarily RB
+Kingdom-based JJ
+Markham NNP
+endangered-species NNS
+desperately RB
+unabridged JJ
+squire NN
+Collision NNP
+Centrale NNP
+Reintroducing VBG
+bromides NNS
+Spitler NNP
+compulsion NN
+Formosan JJ
+The'takeover JJR
+embargos NNS
+Korobytsin NNP
+Surrey NNP
+crisp JJ NN
+fiasco NN
+market-by-market JJ
+self-insured JJ VBN
+ensures VBZ
+Multiplying VBG
+Tyre NNP
+Quayle NNP
+frequented VBD VBN
+Toot-toot UH
+Lagrange NNP
+Dismissing VBG
+ever'body NN
+Georgeson NNP
+combos NNS
+Clabir NNP
+Kinnard NNP
+visages NNS
+Probe NNP
+hug NN VB VBP
+Schoolmarm NN
+Launch NN VB
+numbering VBG NN
+sidearms NNS
+Lena NNP
+obfuscations NNS
+consumption-tax NN
+Pepcid NNP
+Arabs NNPS NNS
+satisfies VBZ NNS
+pro-Communist JJ NNP
+provisional JJ
+varnishes NNS
+unforseen JJ NN
+Degas NNP
+Thiokol NNP
+unilateralism NN
+discreetly RB
+newly RB JJ
+innovators... :
+hand-tool NN
+grunting VBG
+grandma NN
+nonviolent JJ
+just-picked JJ
+Gannett NNP
+MGM-UA NNP
+boycott NN VB VBP
+Thatcherite JJ
+drearier RBR
+Alcoa NNP
+thiihng NN
+October NNP
+market-monitoring JJ
+hand-blower NN
+Steinkuehler NNP
+Artie NNP
+MSP NNP
+Rebates NNS
+riffle VB
+flaunts VBZ
+Trenchard NNP
+grottoes NNS
+OKC NNP
+Carberry NNP
+entry-limited JJ
+Corvettes NNS
+Godwin NNP
+unaltered JJ
+fender-benders NNS
+Pillsbury NNP
+bombard VB
+Tarnoff NNP
+Alamos NNP
+Recording NNP NN
+contesting VBG
+Sonnenschein NNP
+Microscopically RB
+Lakeland NNP
+Hoxa NNP
+knite NN
+divider NN
+touts VBZ
+citadels NNS
+Pembina NNP
+combat-trained JJ
+NPD NNP
+guided VBN VBD JJ
+U.S.-German JJ
+athlete-s NN
+Taft-Hartley NNP
+yesterday NN RB
+Boorstyn NNP
+turnips NNS
+headmaster NN
+owl-shaped JJ
+INFORMATION NNP NN
+Prospective JJ
+hearth NN
+copybooks NNS
+agitation NN
+word-for-word JJ
+Engines NNPS NNP NNS
+IRONY NN
+AGAIN RB
+Thamnophis NNS
+whelk NN
+boulevards NNS
+lotteries NNS
+Teerlink NNP
+Toughest NNP
+shortterm JJ
+Ziff-Davis NNP
+Galoob NNP
+Willow NNP
+cheerfulness NN
+Vegetables NNS
+messieurs FW
+bleat NN VBP
+McCormack NNP
+Shin-Daiwa NNP
+motorscooters NNS
+collarbone NN
+brainwashing NN
+Bengt NNP
+eventualities NNS
+irreversibility NN
+Goa NNP
+repellent JJ NN
+INTERMARK NNP
+booth NN
+barroom NN
+discontinuous JJ
+relaunched VBN
+efficiencies NNS
+unalloyed JJ
+Meistersinger NNP
+Melton NNP
+Transmission NNP NN
+fifteen CD
+CLAIMS VBZ
+grabbing VBG NN
+profit-staggering JJ
+health-food NN
+PCS NNP
+bedspread NN
+wander VB VBP
+educations NNS
+Lascar NNP
+browsing VBG NN
+boors NNS
+nerves NNS
+synonymy NN
+unannounced JJ
+B.F. NNP
+Section NN NNP
+rate-watchers NNS
+Bracken NNP
+Dionigi NNP
+cito FW
+homogenization NN
+markers NNS
+Kamp NNP
+Preseault NNP
+Galilee NNP
+Go VB NNP
+Intervention NN NNP
+Ciao FW
+Thatcherism NNP
+affronting VBG
+trouser NN
+Pasquale NNP
+MP NNP
+dismemberment NN
+Locker-room NN
+basketball-cutback NN
+censorial JJ
+Strikes NNS
+excise NN JJ VB
+conciseness NN
+Headley NNP
+athletic-shoe JJ NN
+frankfurter NN
+tethers NNS
+Ibos NNP
+daguerreotypes NNS
+recession-free JJ
+enmity NN
+Formerly RB
+home-plate NN
+aspirant NN
+fanciful JJ
+chirping VBG NN
+Alltel NNP
+hobbies NNS
+gyms NNS
+buckaroos NNS
+ice-filled JJ
+unpleasant JJ
+hesitates VBZ
+merchandise-trade JJ
+sideboards NNS
+acid-rain NN JJ
+Aril NNP
+extra-nasty JJ
+Mitre NNP
+Jess NNP
+client-service JJ NN
+Varying JJ VBG
+persuasive JJ
+two-evening JJ
+synthesis NN
+Raj NNP
+likeliest JJS
+exploiting VBG
+bridge-financing JJ
+Weldon NNP
+crests NNS
+Summer NNP NN NNPS
+Legislative NNP
+media-spending JJ
+overseer NN
+Grohowski NNP
+untie VB
+country-life JJ
+glacier NN
+senilis NNS
+Chex NNP
+Fighters NNP
+colloidal JJ
+Latter-day JJ
+Kansallis NNP
+ninety-nine CD
+carbonates NNS
+dearest JJS
+soldiering NN
+cubs NNS
+TRANSPORTATION NNP
+chlorine NN
+busters NNS
+multi-billion-dollar JJ
+Kuan NNP
+Augustus NNP
+unction NN
+militant JJ
+Bakery NNP
+Norville NNP
+Goodchild NNP
+Republican-controlled JJ
+Merrimack NNP
+powerboat NN
+Skandinaviska NNP
+Gunfire NN
+money-laundering NN
+clubrooms NNS
+Playwrights NNP
+Allegheny NNP
+pursuing VBG NN
+triangles NNS
+Hayden NNP
+meat NN
+diverticulitis NN
+Duff NNP
+acumen NN
+Unsuspecting JJ
+Streeters NNP NNS
+Tetley NNP
+value NN VBP VB
+Barba NNP
+Accardo NNP
+EG&G NNP NN
+Modzelewski NNP
+Tisch NNP
+resealed VBN
+Herrmann NNP
+appropriateness NN
+KLM-controlled JJ
+unwary JJ
+Piazza NNP FW
+Zollinger-Ellison NNP
+undercurrent NN
+sporting-goods NNS JJ
+Includes VBZ NNS
+castorbeans NNS
+victor NN
+admonishments NNS
+YWCA NNP
+erotic JJ
+Lovington NNP
+navigate VB
+lad NN
+Biotechnical NNP
+Tewfik NNP
+MiG-23 NNP
+tired VBN JJ VBD
+Arthritis NNP
+Earns VBZ
+all DT RB|DT DT|RB RB PDT
+Bufton NNP
+Poelker NNP
+placate VB
+correspondent\/news NNS
+sobbing VBG
+unexecuted VBN
+less-advanced JJ|JJR
+robe NN
+Heiko NNP
+Jerell NNP
+insurmountable JJ
+state-directed JJ
+interruptions NNS
+Inmate NNP
+prepayment NN
+GET VB
+beckoning VBG NN
+lower-than-expected JJ
+self-unloading JJ
+OF IN
+foretell VB
+shallower JJR
+Secured JJ
+neared VBD VBN
+divides VBZ
+sentence-structure JJ
+Interiors NNS
+craves VBZ
+Constructeurs NNP
+Telesphere NNP NN
+milk-chocolate JJ
+Dolores NNP NNS
+glittering VBG
+brushcut NN
+mid-September NNP NN
+midseason NN
+eyebrow NN
+snob-clannish JJ
+venomous JJ
+crippling JJ VBG
+! .
+Pretender NN
+discern VB VBP
+FundTrust NNP
+sparingly RB
+non-disabled JJ NN
+disposal NN
+Byer-Rolnick NNP
+deductibles NNS
+wishful JJ
+Bancorp. NNP
+Currency NN NNP
+equatorial JJ
+PDN NNP
+around IN RB RP RB|RP
+jolts NNS
+hydrophobia NN
+apotheosis NN
+Naren NNP
+auditors NNS
+pillaged VBD
+Northwood NNP
+remains VBZ NNS
+Keansburg NNP
+ditty NN
+well-intentioned JJ
+dazzlingly RB
+Amador NNP
+ponderous JJ
+blended JJ VBD VBN
+storming VBG
+Binghamton NNP
+broad-nibbed JJ
+across-the-board JJ NN RB
+deleting VBG
+Tonio NNP
+Wishes NNS
+NORIEGA NNP
+huh UH
+drug-interdiction NN JJ
+Dulude NNP
+Hard-hitting JJ
+psychopathic JJ
+Poker NN NNP
+potions NNS
+Travellers NNS
+conditions NNS
+Gevergeyev NNP
+inconveniently RB
+Duel NNP
+rhododendron NN
+twentieth-century JJ NN
+Lautenberg NNP
+robustness NN
+PA NNP
+upset VBN NN VB VBD VBP JJ
+TRANSAMERICA NNP
+Kurlak NNP
+inexplicably RB
+mingles VBZ
+croaking NN
+PFC NNP
+precipitating VBG
+Seventeen CD NNP
+fostered VBN VBD
+affirmation NN
+lanky JJ
+suites NNS
+maze NN
+Chico NNP
+steepness NN
+Techniques NNPS
+yelled VBD VBN
+Berniece NNP
+Simsbury NNP
+Gastronomes NNS
+takings NNS
+aggregations NNS
+oleomargarine NN
+state-controlled JJ
+handlebars NNS
+reactionary JJ NN
+Kevin NNP
+property\ JJ
+erroneous JJ
+multilevel JJ
+roles NNS
+O*/NNP&M NN
+cap NN VBP VB
+ex-marine NN
+pivot JJ NN VB
+Mid-Atlantic NN
+Samper NNP
+HUNGARY NNP
+Mandina NNP
+accesory NN
+careened VBD
+cross-pollinated VBN
+manufactured... :
+retailing NN VBG
+Campbelll NNP
+reexamine VB
+Justine NNP
+Hemingway NNP
+heartless JJ
+problem-solving JJ NN
+Siddeley NNP
+unreality NN
+self-policing JJ
+velocities NNS
+smelts NNS
+Rocketdyne NNP
+Spokeswomen NNS
+ombudsman NN
+blinks VBZ
+pounds NNS VBZ
+oversees VBZ
+Nguyen NNP
+ceilings NNS
+Kempner NNP
+hymselfe NN
+Rhone-Poulenc NNP
+Recapitulation NNP
+interest NN VBP VB
+video-viewing JJ
+pinkish-white JJ
+rodders NNS
+rainy JJ
+Maxus NNP
+invitations NNS
+ancestor NN
+Miami NNP
+squabbles NNS
+Fain NNP
+zoologist NN
+Sotela NNP
+rhythm NN
+sun-tanned JJ
+Bregman NNP
+FFr27.68 NN
+extracts NNS VBZ
+Lengwin NNP
+financial-services NNS JJ NN
+Quiney NNP
+pulling VBG
+queue NN
+compensatory JJ
+first-aid NN
+thinness NN
+revoked VBN
+compress VB
+vegetative JJ
+handkerchiefs NNS
+tax-payment NN
+grease-removal JJ
+beer-guzzling JJ
+sacredness NN
+tourism NN
+Codevilla NNP
+smear NN
+peacetime NN
+is,'hey NN
+commendations NNS
+problems NNS
+cross-purposes NNS
+transporting VBG NN
+roundtrip NN
+Instances NNS
+anti-cholesterol JJ
+Pawtuxet NNP
+criminally RB
+unit-labor JJ
+throaty JJ
+Pfeiffer NNP
+matron NN
+Cynical JJ
+Street NNP NN
+gold-based JJ
+Searching VBG
+flout VB
+Faint JJ
+autism NN
+California-backed JJ
+Patriarca NNP
+mixture NN
+Enemy NN NNP
+underperformers NNS
+Venerable NNP
+humanist JJ NN
+Fu NNP NN
+Matais NNP
+buffered VBN VBD
+yummy JJ NN
+Winkler NNP
+whipcracking NN
+Colombian JJ NNP
+TIRED JJ
+Nestle NNP
+procreation NN
+employee-contributed JJ
+manual JJ NN
+one-stop JJ
+bankruptcies NNS
+The'separatist NN
+conservatively-cravated JJ
+supplicating VBG
+nimble JJ
+disconcertingly RB
+log-house NN
+timelier JJR
+Mile NNP
+enchanting JJ
+pvt NN
+Mcdonald NNP
+VISA NNP
+acne NN
+C-V NNP
+computer-market JJ
+Mahal NNP
+non-confrontational JJ
+HCC NNP
+shams NNS
+Yakkety NNP
+revisited VBD VBN
+U.S.-Canada NNP
+unilateralist JJ
+representation NN
+rejuvenates VBZ
+draper NN
+leased VBN VBD JJ
+CTAs NNS
+Filofax NNP
+season NN
+solicited VBD JJ VBN
+Healthco NNP
+nudist JJ
+Spanish-speaking JJ
+blaming VBG
+Jackets NNS
+Villanova NNP
+self-effacement NN
+chairwoman NN
+cousin-wife NN
+nahce JJ
+projects NNS VBZ
+Headline NNP
+Theorists NNS
+four-games-to-one JJ
+insulins NNS
+skilled JJ VBN
+producer-consumer JJ
+cubists NNS
+Geocryology NNP
+Miles NNP
+Finn NNP
+agriproducts NNS
+apostolic JJ
+hydrophobic JJ
+long-planned JJ
+Rak NNP
+annuity NN
+Biologique NNP
+baby-food JJ
+continuation NN
+semi-private JJ
+well-informed JJ
+earthquake NN
+offended VBN JJ VBD
+RB&H NNP
+left-wing JJ
+Cards NNP VBP NNPS NNS
+shuffling VBG NN
+acknowleged VBD
+arrogance NN
+Revised NNP VBN
+specialty NN JJ
+paddles NNS
+senioritatis FW
+O'Sullivan NNP
+Florican-My NNP
+advertisement NN
+often RB
+Francesca NNP
+TASS NNP
+embassies NNS
+Reliable NNP
+Manya NNP
+potted JJ VBN
+Manpower NNP
+inject VB VBP
+streamside NN
+Haan NNP
+Brush-off NN NNP
+helium-4 CD NN
+Israeli\/Palestinian JJ
+Stover NNP
+Batchelor NNP
+High NNP JJ RB
+Monteath NNP
+terse JJ
+hydrated JJ
+cue-phrase NN
+Druse JJ
+absentia FW
+swells NNS VBZ
+tabacs NNS
+DWG NNP
+Fleischer NNP
+Ilkka NNP
+volume-wine JJ
+sexology NN
+Eagles NNP NNPS
+paleocortical JJ
+hardly RB
+stifle VB
+cipher VB
+repeatedly RB
+speckles NNS
+Westerns NNS
+foreign-investor NN
+rattled VBN JJ VBD
+chairman-elect NN
+overpaying VBG
+Dortmund NNP
+Tullio NNP
+deposition NN
+Triad NNP
+Hodel NNP
+Ninety-Two NNP
+Kuvin NNP
+poly-unsaturated JJ
+Sharp NNP JJ
+administering VBG
+NL NNP
+pistons NNS
+Grande NNP FW
+hammered VBN VBD
+Hasbro NNP
+Homeless NNP JJ
+suffered VBD VBN
+Boardwalk NNP
+pens NNS
+four-sided JJ
+juggle VB
+uniforms NNS
+RCSB NNP
+Tokyu NNP
+Vons NNPS
+transacted VBN
+Padres NNPS NNP
+disturbance NN
+Karnes NNP
+customer-oriented JJ
+readily RB
+favors VBZ NNS
+Antietam NNP
+newfound JJ
+Jansky NNP
+awake JJ RB VB
+Tommy NNP
+Henrik NNP
+thinnest JJS
+lingua FW
+knee-deep JJ
+INTERNATIONAL NNP
+Choreographed VBN
+half-clad JJ
+giggles NNS
+homestead NN
+L-shaped JJ
+plaids NNS
+Maguire NNP
+cut-to-a-familiar-pattern JJ
+Primakov NNP
+apprehending VBG
+export-driven JJ
+dimes NNS
+Gerber NNP
+cm. NN
+avoidable JJ
+Flowering NN
+groupings NNS
+Selections NNS
+'Yes UH
+mortgage NN VB
+Protestant NNP JJ NN
+Gleeson NNP
+jockeying VBG NN
+Myerson NNP
+Staffordshire NNP
+If IN
+Jessy NNP
+squeamish JJ
+three-year-old JJ NN
+Evry NNP
+Lewellyn NNP
+hast VBP
+Traxel NNP
+Martens NNP
+Town NNP NN
+fees NNS
+Ralphs NNP
+Vikings NNPS NNP
+Boonton NNP
+June. NN
+pull-down JJ
+Monier NNP
+sleuthing NN
+eine FW
+Dyazide NNP
+ridges NNS
+interspecies NNS
+everywhere RB
+Submarines NNS
+tranquilizing JJ
+Harvard NNP NN
+levis NNS
+heir-designate NN
+Gomel NNP
+chromatic JJ
+rob VB VBP
+British-American NNP JJ
+Borrowers NNS
+researchers NNS
+papier-mache NN
+Messengers NNPS
+laboratory-supply JJ
+rapping NN VBG
+time-servers NNS
+illusiveness NN
+Shaving NNP VBG
+non-arbitrage JJ
+bisque NN
+uninsurable JJ
+deploring VBG
+pell-mell NN
+de-facto JJ
+straightaway NN RB
+boos NNS
+often-disparaged JJ
+pitting VBG
+Synthelabo NNP
+base-metals NNS
+Condominium NNP
+Weighing VBG
+automotive-emissions-testing JJ
+re-creations NNS
+enamel NN
+stitching NN
+Sulaiman NNP
+NEWSPAPERS NNS NNPS
+condensate NN
+Omnicare NNP
+Morey NNP
+absense NN
+Customarily RB
+non-figurative JJ
+imitators NNS
+soup NN VB
+distinction NN
+Chem-Con NNP
+Lvov NNP
+well-documented JJ
+T-37 NN
+debt-limit NN
+Rollie NNP
+nicknamed VBN VBD
+Secretary-General NNP
+doubted VBD VBN
+preachers NNS
+flight-control NN
+generational JJ
+Strong JJ NNP
+picks VBZ NNS
+Espinosa NNP
+sowered VBD
+modestly RB
+Beecher NNP
+once-bustling JJ
+Daytona NNP
+aqua-lung NN
+Finns NNPS
+gladiator NN
+Inferno NN NNP
+soundly RB
+ELECTED VBD
+Wilberforce NNP
+gallus-snapping JJ
+blushed VBD VBN
+ever-vigilant JJ
+Schimberg NNP
+construction-industry NN
+steep JJ NN
+Chernishev NNP
+paternalistic JJ
+clumsily RB
+personified VBN VBD
+iron-handed JJ
+lowliest JJS
+Zionist JJ
+Machine NNP NN
+Sunrise NNP
+drapes NNS
+porcupine NN
+brad NN
+Salton NNP
+dragooned VBD
+Bayou NNP
+waddlers NNS
+wide-shouldered JJ
+Salim NNP
+Prudential-Bache NNP
+Drifts NNS NNP
+smoldering VBG
+Billions NNS
+and\ CC
+military-style JJ
+Sweazey NNP
+tightens VBZ
+Railbikes NNS
+Concurrent JJ
+strafe FW VB
+jacket NN
+familiar JJ NN
+simulates VBZ
+Mekong NNP
+movie-making NN
+anti-outsider NN
+complacently RB
+cued VBD
+Conant NNP
+Gehl NNP
+Gunnar NNP
+Amcore NNP
+Shelters NNPS
+sulphur NN
+leaded-glass JJ
+undertow NN
+kicked VBD VBN
+Traveler NNP
+ion NN
+WXRK-FM NNP
+confirmation NN
+Lindskog NNP
+incompleteness NN
+Chez NNP
+hurries VBZ
+Livestock NN NNP
+refuge NN
+setback NN
+committeewoman NN
+turnkey NN
+Item-Categories NNPS
+Klute NNP
+most-livable JJS
+manuevering NN VBG
+bony JJ
+Quinton NNP
+VandenBerg NNP
+Eye NNP NN
+Bowenized VBN
+superficially RB
+Nomination NN
+INPS NNP
+recede VBP VB
+wracked VBN VBD
+slimed VBN
+terraces NNS
+coterie NN
+Runways NNS
+higher-ranking JJ
+shooter NN
+drape NN VB
+policy NN
+weasel NN
+Filipinos NNPS NNS
+gunpoint NN
+Baggage NN
+Hondo NNP
+politico-plaintiffs NNS
+Rhu-beb-ni-ice NN
+Batibot NNP
+Ferlenghetti NNP
+fooling VBG NN
+half-smile NN
+Byler NNP
+cornering VBG
+ultracentrifugation NN
+pre-clinical JJ
+reserving VBG
+confined VBN JJ VBD
+Automax NNP
+understandings NNS
+Nissans NNPS
+Conception NNP
+plates NNS
+safely RB
+Hemmer NNP
+Iijima NNP
+elucidative JJ
+recoil NN VBP
+fashions NNS VBZ
+dogs NNS VBZ
+skein NN
+more-general JJ
+outworn JJ
+assumed VBN VBD JJ
+Where WRB NNP
+donnybrook NN
+Gabele NNP
+English-dialogue JJ
+not-A NN
+showmen NNS
+single-A-minus JJ NN
+Forecast NNP NN
+Prothro NNP
+unshielded VBN
+Magruder NNP
+protestations NNS
+protocols NNS
+Dostoevsky NNP
+around-the-clock JJ
+Planar NNP
+F100-PW-200 NNP
+eyeglasses NNS
+non-convertible JJ
+February NNP
+producer\/director NN
+best-laid JJ
+Go-Go NN
+night-time JJ
+batted VBD VBN
+two-seaters JJ NNS
+Tift NNP
+margined VBN
+information-technology JJ
+platinum NN
+inking NN
+unprotected JJ
+cilia NNS
+Formula NN
+Amaral NNP
+Styka NNP
+Nunn-McCurdy NNP
+dishonesty NN
+management-by-objective NN
+unattainable JJ NN
+Russel NNP
+lobbying VBG JJ NN
+Nunn NNP
+fought VBD VBN
+Chief NNP JJ NN
+ERG NNP
+palpable JJ
+quizzical JJ
+damaging JJ VBG
+catered VBD JJ
+switching VBG NN VBG|NN
+warden NN
+MTM NNP
+habitants NNS
+morphology NN
+promptings NNS
+cagey JJ
+Caucusing VBG
+democrats NNS
+wharves NNS
+testify VB VBP
+leaps NNS VBZ
+Rocha NNP
+Lend VB NNP
+shuttering VBG
+Wozzek NNP
+pee-wee JJ
+drugstore NN
+Percussion NNP
+diagnosable JJ
+crystallize VB
+repulsed VBN
+COOPER NNP
+Suresh NNP
+Hinzack NNP
+ownership NN
+subsurface JJ
+MR NNP
+meaty JJ
+Simplot NNP
+perturbed JJ VBD VBN
+line-centered NN
+share-repurchase JJ
+crestfallen JJ
+Candace NNP
+inimitable JJ
+Sock VB
+Wedel NNP
+Mullaney NNP
+Duffy NNP
+throughput NN
+inorganic JJ
+sandwiches NNS
+inner-city JJ NN
+instruct VB VBP
+olds NNS
+Cursing VBG
+near-strangers NNS
+Scambio NNP
+Pugh UH NNP
+back-office NN JJ
+great-great-grandfather NN
+). SYM NN )|. .
+MD-90s NNS
+expressionistic JJ
+daybed NN
+Roukema NNP
+valuing VBG
+outstanding JJ
+anti-personality JJ
+Panels NNS
+resorted VBN
+teach VB VBP
+letup NN
+silversmith NN
+Gollich NNP
+Ejaculated VBD
+acknowledges VBZ
+exerpts NNS
+picking VBG NN
+Bumbry NNP
+Drilling NNP NN
+uremia NN
+cials NNS
+designations NNS
+Middleness NN
+clothed VBN
+downcast JJ
+Cemetery NNP NN
+payout NN
+blood-filled JJ
+psyllium-fortified JJ
+feet NNS NN
+Seventy-fourth NNP
+Brochures NNS
+Lutz NNP
+non-subcommittee JJ
+Winner NNP
+K.J.P. NNP
+stockholdings NNS
+Troup NNP
+bordering VBG
+Mouchet NNP
+export-license JJ NN
+Italics NNS
+bib NN
+Nidal NNP
+Ord NNP
+light-year NN
+dangles VBZ
+promissory JJ
+Suggestion NNP
+brutalities NNS
+Telenet NNP
+right-hander NN
+confirmed VBD VBN JJ
+omissions NNS
+T. NNP NNPS NN
+pugnacious JJ
+Cossiga NNP
+roam VB VBP
+flanged VBN
+HBJ NNP
+Repression NN
+ad-rate NN
+dares VBZ
+whacking VBG
+anti-AIDS JJ
+Nunzio NNP
+tea NN
+spooned VBD
+Johnson-era NN
+Koepf NNP
+be-that VB
+Policemen NNS NNPS
+mercury NN
+unstated JJ
+Woodward NNP RB
+Tipping NN
+overstates VBZ
+non-Dow NNP
+decisis FW
+bloat NN
+boot NN VB
+Newsom NNP
+spurted VBD VBN
+new-model JJ NN
+local-government JJ
+popularity NN
+Secomerica NNP
+pasha NN
+virtuosity NN
+Xiang NNP
+McIntyre NNP
+infielder NN
+flow NN VBP VB
+Hastert NNP
+sl UH
+Czechoslovakia NNP
+Rowell NNP
+T-38 NN
+hair-growing JJ
+Misdemeanors NNS
+warningly RB
+galaxies NNS
+satellite-dish NN
+Wireless NNP
+bloods NNS
+Menton NNP
+didn't VBD
+fillings NNS
+seismographs NNS
+diversified JJ VBD VBN
+Koninklijke NNP
+endow VB VBP
+briskness NN
+hugs NNS
+Pyrometer NNP
+beyond-normal JJ
+atypical JJ
+once-private JJ
+Gephardt NNP
+OH NN
+ex-employees NNS
+forbid VB VBP UH
+Springs NNP NNS NNPS
+silhouette NN
+Mahan NNP
+Pate NNP
+hints NNS VBZ
+Markese NNP
+dreaded VBN VBD JJ
+credibly RB
+MiG-26 NNP
+car NN
+soft-landing JJ
+four-page-a-minute JJ
+two-hundredths NNS
+Burford NNP NN
+Dark NNP JJ
+pedestrian JJ NN
+Seconds NNS
+Ariz. NNP
+propellants NNS
+higher-priced JJ JJR
+throat NN
+recollected VBD
+sorbed VBN
+ednedayose NN
+freshly RB
+Reaching VBG
+Znaniye NNP
+Harlequins NNPS
+Hornbeck NNP
+propaganda NN
+Fullerton NNP
+Vyacheslav NNP
+DISCIPLINARY NN
+self-discovery NN
+Hilprecht NNP
+Statuto NN
+establishes VBZ
+Afro-Asian NNP
+# #
+HIV-1 NNP
+Rexroth NNP
+federally RB
+earlier-expressed JJ
+Bausch NNP
+Anti-Wrinkle NNP
+lumen NN
+McKinsey NNP
+Hall-Mills NNP
+ESB NNP
+unacknowledged JJ
+hurting VBG
+double-wing JJ
+tri-state JJ
+Akros NNP
+sympathique FW
+Yin NNP
+Chiefs NNPS NNP
+apprehended VBN
+valiant JJ
+tentacle NN
+dejeuners FW
+Yalobusha NNP
+disavowed VBD
+Pre-trial JJ
+tusks NNS
+defocusing VBG
+newsreel NN
+Puerto NNP NNS JJ
+employee-incentive NN
+Whitefish NNP
+re-emphasizing VBG
+Scotia NNP
+perfectionism NN
+CHAMBERS NNP
+PC NN NNP
+strike-force NN
+Felske NNP
+table NN VB
+prenatal JJ RB
+RULING NN
+fiercest JJS
+pines NNS
+Sansui NNP
+flinch VB
+frighteningly RB
+Gobbee NNP
+past-oriented JJ
+montmorillonites NNS
+ground-truck NN
+Graduate-student NN
+begging VBG NN
+Everett NNP
+Attendance NN
+ghostbusters NNS
+God NNP UH
+devouring VBG
+Catskill NNP JJ
+embouchure NN
+shrift NN
+transforms VBZ
+child-parent JJ
+Half-year JJ
+Pigeon NNP
+antibacterial JJ
+university-funded JJ
+Memphis NNP NNS
+athletic JJ
+abhor VB
+Vienna NNP JJ NN
+O'Neill's NNP
+sforzando NN
+exciter NN
+parvenus NNS
+Politan NNP
+glinted VBD
+intermarket JJ NN
+cash-squeeze NN
+castigating VBG
+fickleness NN
+renting VBG NN
+Hoboken NNP
+pool-equipment NN
+pro-rated JJ
+Rennell NNP
+Stelco NNP NN
+Tribal NNP JJ
+loafers NNS
+motherly JJ
+withdrawal NN
+first-eight JJ
+arrests NNS
+TEACH VB
+Luxco NNP
+Pandick NNP
+duped VBN
+sheet-rolling VBG
+Widowers NNS
+mentors NNS
+Buente NNP
+allurement NN
+shape NN VBP VB
+ASEAN NNP
+Romeo NNP
+knowledge NN
+Yazov NNP
+tropical-fruit NN
+hairspray NN
+knit VBN JJ NN VB
+Selecting VBG
+Vesuvio NNP
+well RB VBP JJ NN VB UH
+automotive-product NN
+Woodbury NNP
+proprieter NN
+Haussmann NNP
+diamond-studded NN
+voluntary JJ
+interested JJ VBD VBN
+productivity-share NN
+water-authority NN
+know\/no NN
+Field NNP NN
+savings-and-loans JJ
+xylophones NNS
+leapt VBD
+benefited VBD VBN
+Moulinex NNP
+NORC NNP
+once-sacred JJ
+sassy JJ
+Ethocyn NNP
+spot NN JJ VB VBP
+clambered VBD
+photographing VBG NN
+Pencil NNP NN VB
+parceled VBN
+punished VBN
+Lewin NNP
+revises VBZ
+athlete-student NN
+Bonfire NN NNP
+Mayfair NNP
+Absolute JJ
+quorum NN
+underdressed JJ
+loving JJ VBG
+chromium-plated JJ
+BLOCKBUSTER NNP
+gasoline NN
+Poland NNP
+postage-stamp NN
+large-capital CD
+Simultaneously RB
+Ram NNP
+Law-enforcement JJ NN
+Ca. NNP
+Cadnetix NNP
+cytolysis NN
+Monarque FW
+thwarting VBG
+twice-a-year JJ
+Olshan NNP
+Envigado NNP
+book-breaking JJ
+secessionists NNS
+uncorrected JJ
+handicrafts NNS
+DREYER'S NNP
+Janlori NNP
+double-meaning NN
+LX NNP
+swordfish NN
+lithographic JJ
+Kazan NNP
+yellowing VBG
+unaccompanied JJ
+fender NN
+have VBP JJ NN VB VBN
+Greenville NNP
+Brancato NNP
+Kann NNP
+Essentially RB
+tax NN VB VBP
+flooring NN
+mayonnaise NN
+Marseilles NNP
+oversaw VBD VB
+figured VBD JJ VBN
+Decentralization NN
+Meinckian NNP
+overlong JJ
+Worldscope NNP
+Urraca NNP
+Premark NNP
+walkers NNS
+durable JJ
+Villamiel NNP
+Unwinding VBG
+ensure VB VBP
+LUXURY NN
+wraith-like JJ
+idealist NN
+Khartoum NNP
+wire-haired JJ
+Spaghetti NNP
+purifying VBG
+colloquium NN
+sustained VBN VBD JJ
+Specialists NNS
+handscrolls NNS
+Sleepers NNP
+flat-headed JJ
+excrete VB
+foreclose VB
+calfskin NN
+homer NN VB
+options-trading JJ
+rheumatic JJ
+freakishly RB
+Kashing NNP
+Jaclyn NNP
+sturdiest JJS
+gallstones NNS
+Bradford-White NNP
+lag VB NN VBP JJ
+product-registration NN
+Tax-exempts NNS
+Murilo NNP
+gimmick-ridden JJ
+Xiaobo NNP
+franks NNS
+anchoring VBG
+MS NNP
+no-goal NN
+fuchsia NN
+single-barrel JJ
+Yoshi NNP
+Withhold VB
+powwow NN
+monocytogenes FW
+Istanbul NNP
+thrash VB
+corniest JJS
+sport NN JJ VBP
+Aeneid NNP
+drunk JJ NN VBN
+semiempirical JJ
+soliticitations NNS
+wholesome JJ
+data-collection NN
+near-complete JJ
+tenderly RB
+intricate JJ
+CHEMICAL NNP
+PERMANENTE NNP
+beardown JJ
+steer VB NN VBP
+notify VB VBP
+interest-bearing JJ
+ringed JJ VBN
+collateral NN JJ
+showgrounds NNS
+Ore NNP
+Editing NN
+Cartier NNP
+wholesale JJ NN
+unbalanced JJ VBN
+bethought VB
+blebs NNS
+reddened VBD VB
+Tamil NNP
+sour JJ VBP NN RB VB
+parliament NN
+belt-driven JJ
+Potala NNP
+invalid JJ NN NNS
+large-deposit JJ
+Staring VBG
+divested VBN JJ VBD
+infirmary NN
+slackjawed VBN
+backtracking NN VBG
+Corolla NNP
+Bruckmann NNP
+Admissions NNP NNPS
+tree-huggers NNS
+grieving VBG
+DANIEL NNP
+and CC VBP JJ RB NNP
+Klass NNP
+Williamstown NNP
+refile VB
+post-retirement JJ
+Chapters NNS
+pre-Sterling JJ
+Maximizing VBG
+three-cornered JJ
+Gerstacker NNP
+Developing VBG NNP
+Portuguese-language JJ
+Creamette NNP
+teaching NN NN|VBG VBG
+Hanshin NNP
+Cutbacks NNP
+unendurable JJ
+Euro-beach NN JJ
+Stepanovich NNP
+triplets NNS
+pupil NN
+Triomphe NNP
+Dwyer NNP
+Owego NNP
+Copy NNP VBP NN
+Luechtefeld NNP
+mendacity NN
+Dogumenti FW
+Wiry JJ
+silliness NN
+Rockaways NNPS
+MacIsaacs NNP
+Morrow NNP
+cyclosporine NN JJ
+Lorde NNP
+folksy JJ
+excites VBZ
+vegetable-protein NN
+rod NN
+forbearance NN
+Aah UH
+dovetail VBP VB
+steelmaking NN VBG
+cubist JJ
+transmissions NNS
+ornamental JJ
+Perch NNP
+Phase-2 NN
+borax NN
+Resolute NNP
+unwaveringly RB
+Movement NNP NN
+ripen VBP
+edition NN
+Klinico NNP
+Inevitably RB
+Littleton NNP
+Ille NNP
+plentiful JJ
+objecting VBG
+Wesker NNP
+Payouts NNS
+Fixture NNP
+anticoagulation NN
+whiteness NN
+cachexia FW
+Wimpys NNP
+inquisitiveness NN
+Towns NNP NNS
+Lubell NNP
+Piller NNP
+parroting VBG
+Prices NNS NNP
+twice-around JJ
+acidity NN
+bewitching VBG
+Europalia NNP
+causes NNS VBZ
+first-ever JJ
+truck-bed NN
+Zwei NNP
+Gripped VBN
+officious JJ
+Exterminatin VBG
+Status NN NNP
+Warriors NNP NNPS
+Tsao NNP
+Mobile NNP JJ
+Israelites NNPS
+incoherence NN
+Patel NNP
+Darius NNP
+progressing VBG
+Courter... :
+query NN
+advisable JJ
+targeting VBG VBG|NN NN
+merger-law NN
+weakwilled JJ
+centers NNS VBZ
+Inflammatory JJ
+carbine NN
+Habla NNP
+erasers NNS
+nation-states NN
+Screwed JJ
+thrift-holding JJ
+Nissan NNP NN
+aku FW
+aridity NN
+senate NN
+recommending VBG
+Miyoshi NNP
+house-painting JJ
+infidelity NN
+Want VB VBP
+Corn NN NNP
+Refinements NNS
+Corne NNP
+vilified VBN
+ken NN
+internationalization NN
+I.R.S. NNP
+Data NNP NNS NNP|NPS NNPS NN
+credibility NN
+accountants NNS
+Tack NN
+Resources NNPS NNP NNS
+anti-Kabul JJ
+Benin NNP
+Collecting NNP
+Quadrex NNP
+skyjackers NNS
+Gobain NNP
+proposing VBG
+needs VBZ NNS VBP VB
+dangle VB
+Seventy-seven JJ
+th DT NN
+aerobic JJ
+VTC NNP
+Raitt NNP
+Spicer NNP
+Heating NN NNP VBG
+Exceed VBD
+commonplace JJ NN
+PEOPLE NNS
+inattention NN
+Chestnuts NNS
+tumbled VBD VBN JJ
+$ $
+Ethiopians NNPS NNS
+politique FW
+Bapepam NNP
+guide NN VBP VB
+patterns NNS
+Shepherd NNP
+portend VBP VB
+burning VBG JJ NN
+football NN
+delighted VBN JJ VBD
+adequacy NN
+Laughlin NNP
+Continuity NN
+devalue VB
+old-timers NNS JJ
+ducts NNS
+splints NNS
+frenzy-free JJ
+Casassa NNP
+Vitulli NNP
+localized JJ VBN
+Sidewalks NNPS
+Johns-Manville NNP
+non-absorbent JJ
+deliberative JJ
+sushi NN FW
+chronologically RB
+inflation NN
+inflows NNS
+filings NNS
+rim-fire JJ NN
+seduction NN
+Brain NN NNP
+Takaezu NNP
+extraordinary JJ NN
+back-issue JJ
+panicked VBD VBN JJ
+wielder NN
+bright-looking JJ
+word-processing NN NNS
+climaxed VBD VBN
+derrick NN
+income-paying JJ
+aquifer NN
+Thacher NNP
+social JJ NN
+open-meeting JJ
+Deloitte NNP
+boundless JJ
+Ackermann NNP
+Riverview NNP
+Burdened VBN
+anchoritism NN
+pinging VBG
+Chris-Craft NNP
+Chaffey NNP
+HCF NNP
+Englund NNP
+expressionless JJ
+soapy JJ
+absorption NN
+Cereal NN NNP
+service-type JJ
+Allowed VBN NNP
+New-York NNP
+Platter NNP
+focally RB
+manufacturers NNS
+communes NNS
+startup NN JJ
+free-world JJ
+spoonfuls NNS
+channel-zapping JJ
+commandant NN
+responsibility NN
+imperturbable JJ
+deathward RB
+Bagneaux NNP
+Weslock NNP
+Bortel NNP
+outlawing VBG
+boatels NNS
+broadly RB
+block NN VBP JJ VB
+Played VBN
+hampers VBZ
+excite VB
+Kano NNP
+Haestier NNP
+sixth-grade JJ
+administratively RB
+assurances NNS
+Sinhalese-dominated JJ
+quest NN
+full-sized JJ
+five-seventeen JJ
+Minitruck NN
+unfastened VBD
+wartorn NN
+forwarded VBN
+homes NNS
+Ran VBD
+anti-ballistic-missile JJ
+Wildcat NNP
+overregulated JJ VBN
+headlines NNS
+reportorial JJ
+interventions NNS
+MedChem NNP
+Beef NN NNP
+inveterate JJ
+neighbors NNS
+Storyteller NNP NN
+lease NN VBP VB
+copiously RB
+Bourke-White NNP
+purposively RB
+Jockey NNP
+cheerful JJ
+negotiated VBN JJ VBD
+undisrupted JJ
+permitted VBN JJ VBD
+cosmos NN
+Magic NNP JJ
+v.d NNP
+doctrinaire JJ NN
+Energies NNP NNPS
+Magi NNP
+cults NNS
+Gorboduc NNP
+Velasco NNP
+woolgather VB
+averse JJ
+avarice NN
+Lucerne NNP
+drooping VBG
+Borie NNP
+hawk-faced JJ
+non-accruing JJ
+Jansz. NNP
+bore VBD VBP JJ NN VB
+Parametric NNP
+Hazzard NNP
+HIV\ NNP
+taunt NN VB
+pirouette NN
+hand-to-hand JJ NN
+retranslated VBN
+cannonball NN
+trick... :
+Toagosei NNP
+trade-magazine JJ
+saponins NNS
+Taylors NNPS
+McCullers NNP
+Doobie NNP
+Delloye NNP
+Middlefield NNP
+burglarproof JJ
+mantic JJ
+oriented-polypropylene JJ
+Ohio-chartered JJ
+torpor NN
+cut-off JJ
+Optima NNP
+erratically RB
+expatriates NNS
+Phase-3 NN
+jumping VBG NN
+initiatve NN
+uttermost JJ
+thrilled VBN JJ VBD
+Fair NNP JJ NN
+Economidis NNP
+executive-model JJ
+million-dollar-plus JJ
+Claiming VBG
+cold-rolled JJ
+Brunswick NNP
+elitists NNS
+schoolwork NN
+Trib NNP
+Biomet NNP
+slime NN
+Bays NNP
+xxxx NN
+selectiveness NN
+Cronin NNP
+redemptive JJ
+HUGO NNP
+Capps NNP
+Campaneris NNP
+J.X. NNP
+field-based JJ
+frothier RBR
+like IN JJ NN VB VBP
+sho UH
+Garpian JJ
+thriving VBG JJ
+Hallucigenia NNP
+haul NN VB
+Meador NNP
+strivings NNS
+reprisal NN
+woolly-headed JJ
+Psychoanalytic NNP
+recollection NN
+Mayhap RB
+abounded VBD
+Banana NNP
+Neff NNP
+Sulzberger NNP
+bid NN VBD VBN VBP VB
+MACHINES NNP
+Loewenson NNP
+Batangas NNP
+unutterably RB
+mooing VBG
+M-1 NNP NN
+Araby NNP
+Office. NNP
+Howl NNP
+Montevideo NNP
+Cartesian JJ
+Episcopalians NNPS
+Corroborating VBG
+gratuitous JJ
+implementation NN
+NEEDS NNS
+evaluations NNS
+abolitionists NNS
+disconnect VB
+lower-wage JJ
+nearby JJ RB
+recession NN
+back-room NN
+Pyxis NNP
+rechargeable JJ
+Eurydice NNP
+brag VB VBP NN
+beatnik NN
+Benchley NNP
+Hodge NNP
+earrings NNS
+nose NN VB
+canter'neath VBP|IN
+GUIDE NNP
+Duriron NNP
+pashas NNS
+monstrous JJ
+Corbin NN
+ASDIC NNP
+compromise NN JJ VB
+Hired JJ VBN
+Raton NNP
+Guitar NNP
+Rama NNP
+livability NN
+SKr205 NNS
+constructed VBN VBD
+PUNITIVE JJ
+soups NNS
+filmed VBN VBD JJ
+whined VBD
+bauble NN
+FOUNDER NN
+unseal VB
+FLN NNP
+Urien NNP
+Necesarily NNP
+Tracy-Locke NNP
+bleed VB VBP
+retarded JJ NN
+pipers NNS
+Hamrick NNP
+shrubs NNS
+cloddishness NN
+brightened VBD VBN
+Fleming NNP
+MC68030 NNP
+FDA-regulated JJ
+jurisdictional JJ
+Costar NNP
+Mobilia NNP
+problem-the JJ
+preferring VBG
+Undead NN
+stateroom NN
+deathbed NN
+Euro-ashtrays NNS
+Achilles NNP
+suitability NN
+MobiTel NNP
+forsake VB
+authorizations NNS
+MSU NNP
+G-R-H NNP
+capo NN
+enhanced VBN VBD JJ
+teutonic JJ
+vioiln NN
+consumer NN
+gymnastics NNS
+schoolgirl NN
+NO DT RB UH
+objections NNS
+Abba NNP
+Position NN VB
+a'back-to-basics JJ
+acetonemia NN
+linebacker NN
+cat NN
+hemorrhaged VBN
+Roark NNP
+one-tenth JJ CD NN
+unveiling VBG NN
+spearhead VB NN
+Domestically RB
+BLOCK NNP
+violators NNS
+Cici NNP
+scion NN
+toner NN
+unmeshed JJ
+moldable JJ
+valve NN
+await VB VBP
+hypocritical JJ
+six-inch JJ
+Animals NNS NNPS NNP
+outpacing VBG
+unshakeable JJ
+Fragment NN
+Conner NNP
+libeled VBN
+concealment NN
+localities NNS
+Figura NNP
+AMES NNP
+Durwood NNP
+dwarfed VBN VBD
+U.S.-Israel-Egyptian JJ
+intercorporate JJ
+Patriarch NNP
+pieced VBN
+Agriculture NNP NN
+Sung-il NNP
+Swiss-German JJ
+Shippey NNP
+thistles NNS
+Falcons NNS NNPS
+Distance NNP
+ATHLONE NNP
+Amusement NN
+Prize-winning JJ
+reliables NNS
+Manthey NNP
+wealthy JJ NNS
+overproduction NN
+Monticello NNP NN
+gangway NN
+Seoul-Moscow NNP
+synergy NN
+shantytown NN
+Fowler NNP
+endows VBZ
+L.P. NNP NN
+Conlow NNP
+wider-body JJR
+Gastronomie NNP
+Grimes NNP
+Planck NNP
+nice JJ
+duplicate VB JJ
+subjective JJ
+Coupling VBG
+tax-software NN
+luncheons NNS
+mortages NNS
+parading VBG
+Open-flame JJ
+rescind VB
+Lante NNP
+neurological JJ
+MacroChem NNP
+MacPherson NNP
+U.S.Japan JJ
+Brambles NNP
+intergrated-steel NN
+damned JJ VBN RB
+understaffs VBZ
+lengthwise RB JJ
+Leng NNP
+citizen NN
+eases VBZ
+flown VBN
+Zweig NNP
+banter NN
+card NN
+boycotted VBN
+Engel NNP
+compressed VBN VBD
+financing NN JJ VBG
+Hillsboro NNP
+Statistique NNP
+aseptic JJ
+Kindertotenlieder FW
+Wayne NNP
+piece NN FW VB
+bisexual JJ
+Week-r NN
+bear-market NN
+sigh NN VBP
+saber NN
+T-45 NNP
+impressionistic JJ
+aesthetics NNS
+scorched JJ VBD
+Osborn NNP
+middling JJ
+acolyte NN
+reversible JJ
+UNCERTAINTY NN
+poke NN VB
+Gorgeous NNP
+humorist NN
+rarity NN
+Bruhn NNP
+tremors NNS
+launch-pad JJ
+Plympton NNP
+McCarty NNP
+Securities NNPS NNP NNS VBP
+BetaWest NNP
+election NN
+Carving NN
+Sangyo NNP
+Inward NNP
+Rolaids NNP
+B.G. NNP
+Vanguard NNP
+Most-Favored JJS
+boom-boom-boom JJ
+fuzzed VBD VBN
+casings NNS
+MiG-29 NNP
+revenue NN
+freaked VBN
+anti-U.S. JJ
+atheism NN
+Solicitor NNP
+macrocrystalline NN
+Zorro NNP
+convalescing VBG
+Stenhach NNP
+highways NNS JJ
+Cepeda NNP
+nostalgia NN
+Airport NNP
+Plus-one JJ
+Pestillo NNP
+centralize VB
+self-deceived JJ
+airline-hostess NN
+blurting VBG
+Dash NNP NN
+ruse NN
+% NN JJ VB SYM
+goals NNS
+Alyce NNP
+romanticized VBN
+helmsman NN
+Outpatient NN NNP
+Bosch NNP
+York-area JJ
+bedsprings NNS
+Taschereau NNP
+Loew NNP
+MERGER NN
+Double-Figure NNP
+Salins NNP
+cancel VB NN
+acacia NN
+cornflake-size JJ
+electrogalvanized JJ VBN
+budge VB
+allnight JJ
+Jets NNP NNS
+dynamic JJ NN
+credit-worthy JJ
+elicits VBZ
+ee-faket NN
+couldn't MD
+Rutan NNP
+Belton NNP
+bored VBN JJ VBD
+detector NN
+asters NNS
+unforgivable JJ
+sniff VB
+Reading NNP NN VBG
+Galahad NNP
+Capri NNP
+weapons-grade JJ
+indiscriminantly RB
+Elizabethans NNS
+FMI NNP
+Falb NNP
+marrow NN
+executive-only JJ
+disburden VB
+declasse JJ
+gleefully RB
+excelled VBD VBN
+solidly RB
+five-home-run JJ
+Doing NNP VBG
+Eckhard NNP
+determining VBG JJ NN
+sensationalizing VBG
+agro-chemicals NNS
+Britain-dominated JJ
+boost VB NN VBP
+erection NN
+pre-margin JJ
+Kimball NNP
+bends NNS VBZ
+fastened VBN VBD
+lithotripsy NN
+multisided JJ
+stoppage NN
+woes NNS VBZ
+dooming VBG
+yachting NN
+clauses NNS
+qua FW
+spotting VBG VBG|NN
+Rifle NNP NN
+Taking VBG NNP
+soonest JJS
+cross-legged JJ
+Norcen NNP
+consumes VBZ
+Slug VB
+computational JJ
+N.H. NNP
+Sammye NNP
+golfers... :
+SRESERVE NN
+predilections NNS
+dished VBD
+plumped VBD
+Elders NNP NNS NNPS
+discernable JJ
+Grandis NNP
+Afrikaaner NNP
+Bananas NNS
+washload NN
+Silone NNP
+Sweetener NNP
+key-someone NN
+advertising-conscious JJ
+DeRita NNP
+computer-generated JJ
+computerized JJ NN VB VBN
+single-handed JJ
+pizzicato NN
+Commonwealth NNP NN
+ruefully RB
+tariffs NNS NNPS
+Path NNP NN
+smothered VBD VBN JJ
+vouchers NNS
+Governali NNP
+codetermines VBZ
+Dexter NNP
+well-cemented JJ
+Pasture NNP
+acquitted VBN VBD
+infarct NN
+Savin NNP
+Serpentine NNP
+Mountain NNP NN
+Negative JJ
+Founding NNP VBG
+jewelers NNS
+detect VB VBP
+Darn VB
+conglomerate NN JJ
+muddling VBG
+co-hero NN
+docile JJ
+brah FW
+Stuttgart NNP
+chalked VBN VBD
+Maruzen NNP
+Hagood NNP
+Giving VBG
+dealer-to-dealer JJ NN
+Furey NNP
+work-in-progress NN
+devours VBZ
+Live-In NN
+Hollsworth NNP
+Nu-Med NNP
+requests NNS VBZ
+Romer NNP
+cuckoos NNS
+Borja NNP
+Babble NN
+Wharton NNP
+third-class JJ
+Ozick NNP
+Guccione NNP
+malign JJ
+Imboden NNP
+Bancroft NNP
+unities NNS
+once-a-day JJ
+Org NNP
+Artemisia NNP
+vinyl-products NNS
+Rowswell NNP
+flippant JJ
+parks NNS
+janitor NN
+intra-EC JJ
+drums NNS
+perishable JJ
+outlaws NNS
+unprepared JJ
+Dowex-2-chloride NN NNP
+TVs NNS NNPS
+coxcombs NNS
+avert VB
+Ratners NNP
+Roche NNP
+Cornel NNP
+Chaplin NNP
+pilot-dominated JJ
+Scarlet NNP
+Jovanovich NNP
+observer NN
+Jesus NNP NN UH
+Sixty-five JJ CD
+Leesona NNP
+Homemakers NNP
+brownish JJ
+tones NNS
+Taffner NNP
+repatriated VBN
+Recklessly RB
+Orioles NNP NNPS
+headquarters NN NNS
+Defying VBG
+Perzio-Biroli NNP
+disinclined VBN JJ
+bankrolled VBD VBN
+Helping VBG
+electronic-transaction JJ
+superagent NN
+Brake NNP
+Dept. NNP
+confectioner NN
+five-hundred-year-old JJ
+Kerschner NNP
+Yoshio NNP
+cabinets NNS
+strangles VBZ
+hum NN VB
+Homma NNP
+incumbent-protection JJ
+Schweitzers NNPS
+Heine NNP
+Pacholik NNP
+Grigoli NNP
+Joshua NNP
+compassionate JJ
+Kravis NNP
+Doordarshan NNP
+facsimile NN JJ
+borrowed VBN VBD JJ
+unimpressed JJ
+outlook NN
+Corp NNP
+Padget NNP
+muskadell NN
+Beech-Nut NNP
+O'Connor's NNP
+Cares VBZ
+Toshiichi NNP
+Conseco NNP
+ADIA NNP
+hats NNS
+multi-crystal JJ
+coding NN
+AutoPacific NNP
+first-year JJ
+overruling VBG
+Borten NNP
+unwraps VBZ
+Cornell NNP
+seven-concert JJ
+kickback NN
+itty-bitty JJ
+estuarian NN
+Achievement NNP
+methodically RB
+Haas NNP
+mousse NN
+Mahe NNP
+transmutation NN
+desulfurization NN
+Trout NNP
+Freida NNP
+budged VBD VBN
+OKI NNP
+outer-space NN
+time-delay JJ
+Company NNP NN
+waging VBG
+Mentor NNP
+Jayark NNP
+finessed VBD VBN
+cellar NN
+Monsky NNP
+livelier JJR
+provisioned VBN
+triumphant JJ
+carrier-current JJ
+passed VBN VBD
+sniffed VBD
+landfall NN
+pouch NN
+transcended VBD
+Dream-Next NNP
+disrupt VB VBP
+Gaston NNP
+expeditions NNS
+indigenous JJ
+Rinker NNP
+tourist NN
+uninvolved JJ
+InterNorth NNP
+clogs VBZ
+hawker NN
+Hockney NNP
+misapplied VBN
+revisionist JJ
+Ho NNP UH
+Stafford NNP
+NP NNP
+care NN VB VBP
+three-men-and-a-helper JJ
+scenics NNS
+Mommor NNP
+kanji FW
+Pre-shaped JJ
+burrowed VBD
+Arkoma NNP
+malformed JJ
+Gandalf NNP
+Aldomet NNP
+holocaust NN
+Raydiola NNP
+Stephen NNP
+BUY-OUT NN
+Edouard NNP
+off-shore JJ
+Presently RB
+ultra JJ
+drovers NNS
+issue NN VBP VB
+Cote NNP
+browbeaten VBN
+Dillard NNP
+top-yielding JJ
+Rios NNP
+until IN
+bevor FW
+reliving NN VBG
+glimmers NNS
+Enos NNP
+Brockway NNP
+Dalbar NNP
+Corvus NNP
+hurls VBZ
+Gog NNP
+defense-budget NN
+antiphonal JJ
+ganging VBG
+edible JJ
+radiography NN
+supposing VBG
+embargo NN VB
+Latowski NNP
+monologue NN
+specify VB VBP
+incentive-buoyed JJ
+despatch NN
+Tareytown NNP
+freckles NNS
+govern VB VBP
+supernatant JJ
+evidencing VBG
+HAS VBZ
+one-industry JJ
+unbearable JJ
+Deacon NNP
+so RB CC FW IN
+Rexall NNP
+Beachfront NNP
+PLASTIC NN
+landes NNS
+Manned NNP VBN
+Dicks NNP
+Nujoma NNP
+patriots NNS
+news NN NNS
+Tabs NNS
+tables NNS
+six-cent-a-share JJ
+hypothetically RB
+deprogrammings NNS
+slavery NN
+fracture NN
+Cawley NNP
+socializing VBG
+rainbow-hued JJ
+industrial-gases JJ
+clothe VB
+baubles NNS
+benefit-seeking NN
+Part NN NNP
+postman NN
+atmospheres NNS
+flange NN
+Sable NNP
+well-advised JJ
+encylopedia NN
+unearned JJ
+PW-2000 NN
+OK JJ RB UH
+demythologize VB
+Imbrium NNP
+liked VBD VBN
+monitoring NN VBG|NN VBG
+Vienne NNP
+sackings NNS
+Watervliet NNP
+production-cost NN
+Bacteria NNS
+triples NNS VBZ
+billowing VBG
+Amiga NNP
+godfather NN
+dislikes VBZ NN NNS
+Sizzling JJ
+Young-Jin NNP
+Danaher NNP
+justifications NNS
+price-stabilizing JJ
+disoriented VBN JJ
+three-dimentional JJ
+self-destructed VBD
+Settled VBN
+War-related JJ
+anti-A NNP
+Proskauer NNP
+Physics NNP NN
+Ozanne NNP
+washouts NNS
+sinus NN
+necrotic JJ
+manumission NN
+bonding VBG NN
+tenterhooks NNS
+state-subsidized JJ
+afloat RB
+Viag NNP
+Fillmore NNP
+Amiel NNP
+Joshual NNP
+Cayman NNP
+tinning VBG
+employing VBG
+observes VBZ
+maiden NN JJ
+dens NNS
+Psithyrus NNP
+Ladies NNP NNS NNPS
+round NN IN JJ VBP RB VB
+fraudulent JJ
+Guber-Peter NNP
+polybutenes NNS
+Slobodin NNP
+stylish JJ
+nostalgic JJ
+treasuries NNS
+configuration NN
+defenders NNS
+Chronometer NNP
+Arafat NNP
+amid IN
+agreeement NN
+ceiling NN
+oversee VB
+Rap NN
+multi-phase JJ
+golfs NNS
+Tranquility NN NNP
+problem NN
+Crump NNP
+PF NNP
+NOP NN NNP
+one-stooler NN
+gentleman NN
+timetables NNS
+trade-clearing JJ
+Abe NNP
+muni NN JJ NNS
+Hillyard NNP
+hounding VBG
+Bairnco NNP
+scampering VBG
+likelier JJR
+rotundity NN
+criticism NN
+holistic JJ
+imputation NN
+defense-suppression NN
+Flier NN
+Judges NNS NNPS NNP
+chronicle NN
+project NN VB VBP
+defective JJ
+Euro-son NN
+Luvs NNPS
+flimsies NNS
+Hindenburg NNP
+Pati FW
+& CC NNP SYM
+fountain-falls NNS
+bargain-buying JJ
+Efficiency NN
+Final-hour JJ
+Peery NNP
+settlers NNS
+CALLIOPE NNP
+muttering VBG NN|VBG
+hurricane-hit JJ
+Solow NNP
+Western JJ NN NNP
+diskette NN
+tumble NN VB
+pre-Easter JJ
+Leggett NNP
+sudden JJ
+undermining VBG
+remakes NNS
+paramagnet NN
+Kochitov NNP
+coconuts NNS
+myofibrils NNS
+easy-going JJ
+Eurotunnel NNP
+pickup NN JJ
+Lansing NNP
+Slickers NNPS
+Viareggio NNP
+tutored VBN
+offset VB JJ VBD VBN VBP
+foal NN
+super-user NN
+roundhouse NN
+Volzhsky NNP
+contemporize VB
+Fyffes NNP
+deployable JJ
+gotta VB VBN VBP VBN|TO VBP|TO
+Sept.1 NNP
+Milk NN NNP
+O'Meara NNP
+terrain-marring JJ
+Oopsie NNP
+Equimark NNP
+Agrobacterium NN
+Bums NNS
+miles-per-hour JJ
+Gute FW
+Nut NNP
+alleviate VB VBP
+infringed VBD VBN
+possibilities NNS
+union NN JJ
+Freie NNP
+floor-covering NN
+Tsar NNP
+thermodynamic JJ
+Urmstom NNP
+Curtiss-Wright NNP
+Y-cell NN NNP
+UPJOHN NNP
+skepticism NN
+formula-based JJ
+third-straight JJ
+absorbers NNS
+flopped VBD VBN
+six-months NNS
+aggravating VBG JJ
+Species NNP NNPS
+gold-leaf JJ NN
+three-dimensionality NN
+precipitated VBD VBN
+Allso RB
+fanatics NNS
+ARAL-88 NNP
+journalistically RB
+women's-rights JJ
+Utilities NNP NNS NNPS
+Voorhes NNP
+inventiveness NN
+Ramtron NNP
+value-oriented JJ
+ISSUE NN
+stemmed VBD VBN
+Quick NNP RB JJ
+Hyannis NNP
+Bullion NNP
+academically RB
+Galicians NNPS
+ebbs VBZ
+deletions NNS
+insurance-reform JJ NN
+Economists NNS NNP NNPS
+thirst NN
+holier-than-thou JJ
+Mandarin NNP JJ
+sippers NNS
+common-share JJ
+lads NNS
+civic JJ
+Kolsrud NNP
+tee NN VBP
+PDT NNP
+Peyrelongue NNP
+Wussler NNP
+chortling VBG
+Yamane NNP
+BRADSTREET NNP
+admittees NNS
+nosed VBD
+lovelies NNS
+filling VBG NN
+bombarded VBD VBN
+Canadians NNPS NNS
+Kibbutz NNP
+extraordinarily RB
+economize VB
+Paso NNP
+Ledge NN NNP
+unsustainable JJ
+Claeson NNP
+white-shoe JJ
+Prophet NNP
+Rodale NNP
+decentralizing VBG
+dispositions NNS
+non-invasive JJ
+propulsion NN
+Tribe NNP NN
+LMEYER NNP
+spokespersons NNS
+Sponge NNP
+earth-colored JJ
+THREAT NN
+DEPOSIT NN NNP
+Gaslight NN
+Lebow NNP
+operating VBG JJ NN
+NBC-owned JJ
+smacks VBZ
+norm NN
+Stunned VBN
+leash NN
+picky JJ
+personifies VBZ
+passers-by NNS
+wrested VBD VBN
+Westminster NNP
+totally RB
+stomping VBG NN
+premium-priced JJ
+heat-resistant JJ
+Nuns NNPS
+Oct.13 NNP
+ramrod-straight JJ
+hard-come-by JJ
+Sanaa NNP
+crayons NNS
+Ernie NNP
+Avalon NNP
+paratroops NNS
+Cohodes NNP
+DELAYED VBN
+international-capital JJ
+Unam NNP
+solid-fueled JJ
+impiety NN
+Joon NNP
+Leni NNP
+Burbank NNP
+passenger-transportation JJ
+shapes NNS VBZ
+L-P NNP
+healthcare NN
+Syncor NNP
+declivity NN
+scants VBZ
+Jozef NNP
+Talon NNP
+Pryce NNP
+kowtow VB
+pathological JJ
+U.M.T. NN
+evangelicals NNS
+triplet NN
+Frazier NNP
+overshadowing VBG
+ROUND NN
+tablet NN
+Fredrick NNP
+Snuggle NNP
+Glasser NNP
+raise VB VBP NN
+suprise NN
+scarcely RB
+superlunary JJ
+smock NN
+Wittgreen NNP
+cosec NN
+band-wagon JJ
+much-smaller JJ
+minded VBD VBN
+harmonies NNS
+red-figured JJ
+MediVision NNP
+Uerkesh NNP
+Uniconer NNP
+honorary JJ
+ignorance NN
+still-new JJ
+refolded VBD
+SERVICE NN NNP
+frock NN
+Kissinger NNP
+intelligence NN
+taut JJ RB
+Equitec NNP NN
+likee VB
+furbishing NN
+preoccupied VBN JJ
+enunciated VBD
+shredding VBG
+Ornette NNP
+Eurocell NNP
+lacy JJ
+Canadian-fisheries NNS
+Elemer NNP
+anti-B NNP
+Gunther NNP
+stateless JJ
+newt NN
+Feick NNP
+longitude NN
+Bettner NNP
+travelogues NNS
+presented VBN VBD
+pluses NNS
+spread NN VBD VBN VBP JJ VB
+Kasparov NNP
+half-gourd NN
+goofiness NN
+bleaching VBG
+invoking VBG
+Goh NNP
+Wilde NNP
+shovels NNS
+Nobody NN NNP
+guilty JJ RB
+Pitchers NNS
+Morphophonemic JJ
+noncommunist NN
+Mar. NNP
+rabbi NN NNS
+roar NN VB
+prior-approval JJ
+Automatic NNP JJ
+unspeakable JJ
+Deauville NNP
+bargains NNS VBZ
+tobacco-juice NN
+wohd NN
+KEARNEY NNP
+monthly JJ NN RB
+glutted VBN JJ
+five-and-dime JJ NN
+Nathan NNP
+rental-car NN
+alky NN
+harborside NN
+technology-licensing JJ
+acoustically RB
+ecliptic NN JJ
+no-tax JJ
+meditative JJ
+e.g. FW NN
+boosted VBD VBN
+songbook NN
+transference NN
+Bahar NNP
+excoriate VB
+Cavour NNP
+overhears VBZ
+equal-opportunity NN
+racers NNS
+assayed VBN
+Fields NNP NNPS NNS
+craters NNS
+Berteros NNPS
+theatricals NNS
+Gulbuddin NNP
+emancipation NN
+E.T. NNP
+dent NN VB
+muddy JJ
+UNION NN NNP
+Oases NNS
+underwritings NNS
+highway NN
+Galileo NNP NN
+Bashaw NNP
+windstorm NN
+divulge VB
+public-asset JJ
+Feebly RB
+pratfalls NNS
+Flies NNS
+Finot NNP
+savored VBD VBN
+history-making JJ
+automobile-parts JJ
+Dines NNP
+CRSS NNP
+PRISON-SHOP NNP
+autofluorescence NN
+impress VB NN VBP
+sp NN
+hutch NN
+harmonic JJ
+proudly RB
+learn VB VBP
+pregnancies NNS
+waddles VBZ
+sangaree NN
+protester NN
+spray NN VB
+student-athlete NN
+maquiladora NN
+bond-price JJ
+excellence NN FW
+Odd-lot JJ
+orbit NN VB
+exogamy NN
+cabinet NN JJ
+thankless JJ
+banana-exporting JJ
+long-overdue JJ
+treasure-trove NN
+representative NN JJ
+Pediatric NNP
+Customer-access NN
+ill-disposed JJ
+creationism NN
+Commentators NNS
+Enzytech NNP
+f-Includes VBZ
+Casca NN
+Me-210 NNP JJ
+Lewis NNP
+Latchford NNP
+smelled VBD VBN
+trainers NNS
+glimmer NN
+builds VBZ
+prettiness NN
+yearnings NNS
+Congresses NNS
+order-matching NNS
+Schlitz NNP
+crystallization NN
+Auxiliaries NNPS NNP
+Pechiney NNP
+R.I.-based JJ
+Bering NNP
+fittings NNS
+sociable JJ
+foam NN VB VBP
+Compare VB VBP
+Summerfolk NNP
+additionally RB
+expirations NNS
+spreader NN
+absolutely RB
+below IN RB
+Mill NNP
+Milbankes NNPS
+Hazards NNS
+earned-income NN
+Kelli NNP
+D'Urbervilles NNP
+briny JJ
+Shinpan NNP
+settler NN
+longer-lived JJ
+let's-make-your-house-our-club JJ
+bloody JJ
+Him PRP NNP
+OLE NNP
+whittle VBP
+Giorgios NNP
+inundations NNS
+Moderating VBG
+admonished VBD
+cruising VBG NN
+Thielsch NNP
+Rauscher NNP
+gauge NN VB
+Recital NNP
+hooting JJ
+Filipino NNP JJ NN
+reptile NN
+Tacit NNP
+cozier JJR
+howdy UH
+freed VBN JJ VBD
+one-thirty RB
+reipublicae FW
+Zel NNP
+scads NNS
+marginalizing VBG
+unheroic JJ
+canard NN
+sufferd VBN
+fates NNS
+Nagamo NNP
+Isaly NNP
+sea-beach NN
+CFM56 NN
+castigation NN
+obstinacy NN
+lak IN
+ETA NNP
+Reasoner NNP
+humanity NN
+Annalee NNP
+obliquely RB
+dextrous JJ
+' POS NN NNPS '' : VBP SYM
+Corr NNP
+Foreclosures NNS
+Aborted JJ
+control-room NN
+biscotti NNS
+Boisbriant NNP
+objectionable JJ
+unpalatable JJ
+Emcee NNP
+exile NN VB
+PlanEcon NNP
+emits VBZ
+Date NN NNP
+hoodlums NNS
+Taco NNP
+shoddy JJ
+DOGS NNS
+oratorio NN
+G.L. NNP
+cop-killer JJ
+plundering NN
+Darman NNP
+Glasses NNS
+Hanfsaengl NNP
+music-loving JJ
+Bellarosa NNP
+murmuring VBG
+high-technological JJ
+landlubber NN
+Walter NNP
+expediting VBG
+plutocratic JJ
+big JJ RB|JJ
+colon-cancer NN
+information-system JJ
+quinine NN
+home-run JJ NN
+impeccable JJ
+sponges NNS
+Conforming NN
+light-water JJ
+Peggy NNP
+Crucial JJ
+M-4 NNP
+escapist JJ
+decompression NN
+QB NNP
+cross-top JJ
+HBO NNP
+Boykins NNP
+rasps NNS
+Ohio NNP
+Douce NNP
+pitifully RB
+culpable JJ
+Sprague NNP
+yapping VBG
+Appropriation NNP
+dropper NN
+replays NNS
+Critically RB
+Goodson NNP
+droppers NNS
+insightful JJ
+Messerschmitt-Boelkow-Blohm NNP
+Rothschild NNP
+Pierluigi NNP
+Ballroom NNP
+Duties NNP NNS
+Juniors NNS JJ NNPS
+amplifiers NNS
+bratwurst NN
+Bengals-Browns JJ
+coal-fired JJ
+Exact JJ
+Gallery NNP NN
+incipient JJ
+Brewing NNP
+simulation NN
+bunching VBG
+Conflict NN
+colleges NNS
+subsidence NN
+Jules NNP
+life... :
+two-product JJ
+anti-homosexual JJ
+Enthusiasts NNS
+multinational JJ
+erned VBD
+Vogel NNP
+Bicycling NNP
+house NN VBP VB
+Dignity NNP NN
+rolled-up JJ
+extended VBN VBD JJ
+Lemma NN
+Wedged VBN
+Touches VBZ
+spiraled VBD
+E&J NNP
+Restrictive JJ
+Blendax NNP
+Mikoyan NNP
+Russes NNP
+lurched VBD
+foremost JJ RB
+Murderers NNS
+Bush-Salinas NNP
+Felten NNP
+Chestnut NNP NN
+Donaldson NNP
+lawn-feeding JJ
+nonevent NN
+bluster NN VB
+Beairsto NNP
+doin VBG
+Consuming VBG
+quasi-tax JJ
+Prototypes NNS
+MSX NNP
+convinced VBN VBN|JJ VBD JJ
+Shaefer NNP
+sodas NNS
+parenthood NN
+Britain-U.S. JJ
+beamed VBN
+Justino NNP
+Airlines NNPS NNP NNS
+neighbor NN
+travels VBZ NNS
+kaffeeklatsch FW
+upside RB JJ NN
+omnibus JJ NN
+cavorting VBG NN
+sculptors NNS
+single-adjudicator JJ
+O*/NNP&Y NN
+cortical JJ
+Okura NNP
+predawn JJ
+union-company JJ
+felonies NNS
+rush NN VB VBP
+restorative JJ
+Friedrichs NNP
+conjunctions NNS
+Jeane NNP
+gritty-eyed JJ
+Radiosterilization NN
+Faulkner NNP
+creamed VBN
+felicitous JJ
+markets NNS VBZ
+rectangles NNS
+NPL NNP
+Sprinkel NNP
+Exit NN
+suborbital JJ
+Aca NNP
+backgrounds NNS
+Neisse-Oder NNP
+bugler NN
+Einsteinian JJ
+bludgeon VB NN
+galley NN
+Bankers NNPS NNP NNS
+matter NN VBP VB
+subgross JJ
+painkiller NN
+Halis NNP
+third-ranking JJ
+Trevor NNP
+muffins NNS
+L'incoronazione FW
+energy-adjusted JJ
+Merrimac NNP
+Catastrophe NN NNP
+milliamperes NNS
+bylaw NN
+empiricism NN
+Spokesmen NNS NNP
+Clinical NNP JJ
+twentieth JJ
+inti NN
+Trial NN NNP
+Margeotes NNP NNS
+Benton NNP
+the'individuals NNS
+Lexington-based JJ
+I.D. NN
+Clifford NNP
+Polar NNP
+Figure NN VB NNP
+food-scare NN
+appealing JJ VBG
+third-ranked JJ
+Jurors NNP NNS
+short-changing JJ NN
+NRA NNP
+co-chairperson NN
+Hersh NNP
+priests NNS
+Something NN NNP
+gradually RB
+Covered JJ
+negotiable JJ
+FREED VBD
+heavy-truck NN NNS
+Sankei NNP
+Rachwalski NNP
+Krakowiak NNP
+Branman NNP
+adjusts VBZ
+Songau NNP
+fillip NN
+chambermaids NNS
+credit-line NN
+mourning VBG NN
+Taming VBG
+hand-filed JJ
+settles VBZ
+Contempt NN
+property\/casualty NN
+hilarity NN
+beneficially RB
+non-conformists NNS
+gallantry NN
+stadiums NNS
+breaching VBG
+trespassing NN VBG
+pollsters NNS
+Chiriqui NNP
+nonfood NN
+versed VBN
+J/NNP.I. JJ
+Tijd NNP
+re-set VB
+Softsoap NNP
+glaringly RB
+Kincannon NNP
+Merton NNP
+Aniseikonic JJ
+Kiss VB
+Accused NNP JJ
+follow VB VBP
+Testa NNP
+inventories NNS
+Kerlone NNP
+suction NN
+punts NNS
+McCaffrey NNP
+utterance NN
+buddy NN
+monolithic JJ
+oil-recycling NN
+immunoelectrophoresis NN
+ArgoSystems NNPS
+Pfc. NNP
+Javier NNP
+reexamining VBG
+soars NNS
+destruction NN
+etch VB
+buffoons NNS
+alumnae NNS
+Wyeth-Ayerst NNP
+Strehler NNP
+adaptability NN
+Dvorak NNP
+noncorrosive JJ
+ballfields NNS
+Changeable JJ
+Sejm NNP
+Gypsum NNP
+Babbitt NNP
+mister NN
+MiG-29s NNS
+riverbanks NNS
+augmented VBN JJ VBD
+weighting NN
+unimportant JJ
+Rifkin NNP
+Ob-Irtysh NNP
+archivist NN
+Kevlar NNP
+car-dealers NNS
+Galantuomo NNP
+Non-`` ``
+Drunkenness NN
+Sampson NNP
+haven NN
+Olszewskiof NNP
+Sergio NNP
+now-infamous JJ
+partnered VBN
+Gold-backed JJ
+Flippo NNP
+say:'none NN
+foreign-aid NN JJ
+carat NN
+high-energy JJ
+thermostats NNS
+Justices NNPS NNP
+Jordan\/Zalaznick NNP
+sq JJ
+meekly RB
+deletion NN
+reflexes NNS
+progression NN
+HOUSE NNP
+Subsequent JJ
+fervently RB
+Candlelight NNP NN
+ponies NNS
+Chris NNP
+ragtime NN
+Il FW NNP
+Grandma NNP NN
+orgone NN
+whipsaw JJ NN VB
+goodies NNS
+Materials NNPS NNP NNS
+Glue NN
+caps NNS VBZ
+Vaseretic NNP
+lagoons NNS
+porcelain NN
+auto-loaders NNS
+Clarion NNP
+Linguistic JJ
+Isadora NNP
+U. NNP
+well-guarded JJ
+Abbe NNP
+current-delivery NN
+Kasten NNP
+Darlington NNP
+Hustead NNP
+pamphlets NNS
+do-good JJ
+chatting VBG
+six-gallon JJ
+Supportive JJ
+upriver JJ
+Fredric NNP
+becalmed JJ
+Nymex NNP
+hearts NNS
+re-enactment NN
+save-the-wildlife JJ
+Health-care JJ
+modifications NNS
+yearning NN VBG
+Meadow NNP
+Sprouted VBN
+derailments NNS
+medical-benefits NNS
+arbitration-eligibility NN
+stippled JJ
+Tensing NNP
+acquisition-proof JJ
+Oil-related JJ
+gullibility NN
+Norwegians NNPS
+Pricey JJ
+starker JJR
+pizzerias NNS
+hitters NNS
+B-As IN NNP
+streamed VBD VBN
+antiquarian JJ
+Plews NNP
+pressed-paper JJ
+profane JJ
+concept NN
+Informal JJ
+Strangfeld NNP
+Flexibility NN
+WPA NNP
+Sikorski NNP
+Hoylake\ JJ
+levity NN
+Kekisheva NNP
+Darwinism NNP
+GE\ NNP
+travelers NNS
+rinse NN VB
+ignored VBN VBD
+fiber-producing JJ
+haltingly RB
+Acarbose NNP
+paused VBD VBN
+unto IN RP
+From IN NNP
+homers NNS
+jurisconsults NNS
+writings NNS
+McQueen NNP
+leotards NNS
+sales NNS JJ VBZ
+intra-uterine JJ
+Massell NNP
+Choong NNP
+wrap-up JJ
+adjectival JJ
+roams VBZ
+Blohm NNP
+Practically RB
+accretion NN
+Randol NNP
+Carolinians NNPS
+palamedes NN
+Communion NNP
+Fifteen CD
+osteoporosis NN
+tension NN
+one-man JJ
+Aslacton NNP
+ani JJ
+curves NNS
+package-sorting NN
+proposition NN
+delineate VB
+( (
+pentagon NN
+mg. NN
+interjects VBZ
+gasps NNS
+Cimabue NNP
+mumbles VBZ
+Pugo NNP
+pinches NNS
+Hindle NNP
+Kant NNP
+Canandaigua NNP
+ex-furniture JJ
+Brazilians NNPS NNS
+hasty JJ
+prominence NN
+lunch-hour NN
+Galen NNP
+mycobacteria NN
+Entering NNP
+Mercer-Meidinger-Hansen NNP
+embroider VBP VB
+Hack NNP
+recited VBD
+germinate VBP
+cancels VBZ
+spree NN
+yield-management NN
+Sesame NNP NN
+Scholastica NNP
+stuffy JJ
+forced VBN JJ VBD
+Winnie NNP
+cautiousness NN
+Domicilium NNP
+product-liability JJ NN
+resembled VBD
+affords VBZ
+roi FW
+societies NNS
+Taurus NNP
+Pater NNP
+Trovatore NNP
+subcommittee NN
+loony JJ
+cataracts NNS
+galvanizing VBG NN
+self-interest NN JJ
+Altron NNP
+ascetic NN
+revaluing NN
+clothesline NN
+Barber NNP NN
+veined JJ
+belly-flopped VBD
+natural JJ NN
+mnemonic JJ
+head NN JJ RB VB VBP
+Farrell NNP
+SOARS VBZ
+once-loyal JJ
+oxytetracycline NN
+handout NN
+poked VBD VBN
+birdcage NN
+Salle NNP
+McDLT NNP
+forthrightness NN
+cuff NN VB
+liberal-arts NNS
+Rollin NNP
+Decision NNP NN
+Nozze FW
+caustic JJ
+SAAMI NNP
+Chien NNP FW
+bemaddening VBG
+fingerprint NN
+downgradings NNS
+nonverbally RB
+torrent NN
+milliliter NN
+dustbin NN
+Scala NNP
+electronic-warfare NN
+foraging NN VBG
+Gustaf NNP
+sports NNS VBZ
+psycho-physiology NN
+syndciated VBN
+needy JJ NNS
+Hermitage NNP
+Ossad NNP
+Glacier NNP
+suspicion NN
+lifestyles NNS
+Callender NNP
+Farvel-Topsy NNP
+Spanish JJ NNP NNPS
+booklets NNS
+industrial-services JJ
+Sippl NNP
+soundproof JJ
+retaliating VBG
+Severs NNP
+drunks NNS
+commutator-like JJ
+Ferdinand NNP
+Patience NN
+stress-temperature JJ
+Epistles NNPS
+self-plagiarisms NNS
+safe-cracking JJ
+Wilcher NNP
+besiegers NNS
+Trig NNP
+Accounting NNP VBG NN
+boots NNS
+Parkhouse NNP
+salary-pool NN
+stockbuilding VBG
+docudrama NN
+compatriots NNS
+synthetic JJ NN
+fortunately RB
+Gator JJ
+assumptions NNS
+coughing VBG NN
+Sigma NNP
+disintegrate VB
+worker NN
+shepherding VBG
+prepurchase JJ
+greenhouse NN
+Comics NNPS
+Carew NNP
+mass-transit NN
+city NN
+evensong NN
+low-sulfur JJ
+perchance RB
+upstairs NN RB JJ
+Ignore VB
+Dismal JJ
+Francesco NNP
+Unification NNP
+Wichterle NNP
+jewelery NN
+glow-in-the-dark JJ
+remoter JJR
+extruded VBN JJ
+homefolk NN
+capitol NN
+molting VBG
+heterogeneity NN
+PRATT NNP
+Mutual-fund JJ NN
+steers VBZ NNS
+fee-producing JJ NN
+herpetology NN
+feasts NNS
+then-biggest JJ
+crocked JJ
+nondescriptly RB
+refill NN VB
+Allies NNPS NNP NNS
+Investments NNPS NNP NNS
+ed. NN
+first-nine-month JJ
+MX NNP
+investment-area JJ
+spendthrifts NNS
+Utrecht NNP
+flows NNS VBZ
+Deatherage NNP
+semitrance NN
+balding JJ VBG
+reducing VBG NN
+Massey-Ferguson NNP
+shocks NNS VBZ
+perils NNS
+sin NN VBP VB
+post-production NN JJ
+egalitarian JJ
+Redskins NNPS
+nudity NN
+Halliburton NNP NN
+lung-function JJ
+--teetering VBG
+homey JJ
+firewood NN
+media NNS NN
+Ferrara NNP
+natural-gas-pipeline JJ
+Waikikians NNPS
+goofing VBG
+SALES NNS NNP
+Guth NNP
+punishments NNS
+separated VBN JJ VBD VBP
+twenties NNS
+habitable JJ
+agrees VBZ
+entree NN FW
+scopes NNS
+quaint JJ
+imaginings NNS
+tipple VBP
+Tudor-style JJ
+insulating VBG JJ NN
+Fredrico NNP
+pileup NN
+yellow-green JJ
+thoroughgoing JJ
+Plantago NN
+praiseworthy JJ
+categorically RB
+overlook VB VBP
+epileptics NNS
+droped VBD
+infant-formula NN
+Harrington NNP
+asbestos NN
+Komsomolskaya NNP
+Remains NNS
+fire-colored JJ
+losses... :
+Decisions NNS
+Oranjemund NNP
+stirrup-guard NN
+HOSPITALS NNS
+Janson NNP
+NS NNP
+paydirt NN
+Sheindlin NNP
+Berlusconi NNP
+Cort NNP
+sweetheart NN JJ
+gutter NN
+Coche-Dury NNP
+markings NNS
+consumer-product JJ NN
+T4 CD NNP
+Todman NNP
+Witt NNP
+chisels NNS
+bullish JJ
+Omnicom NNP
+Rotman NNP
+Decoma NNP
+studiously RB
+post-secondary JJ
+uncivil JJ
+well-equipped JJ
+subpar JJ
+Sposato NNP
+sixty CD
+AMEX NNP
+interferon NN
+postmark NN
+Gerbig NNP
+apartheid NN
+Frontage NN
+accuser NN
+Heylin NNP
+instinctively RB
+bucks NNS VBZ
+pseudo-feeling NN
+slippers NNS
+adroitness NN
+Distally RB
+que FW
+Restaurants NNP NNPS NNS
+Whose WP$
+Districts NNS NNPS
+harsher JJR RBR
+Random NNP JJ
+Cinematographer NN
+high-tech JJ NN
+plant-vaccine JJ
+Carthage FW
+Beckwith NNP
+toughing VBG
+currency-options NNS
+reshaped VBN VBD
+chain-reaction NN
+cardiovascular JJ
+Ohkuma NNP
+Cappy NNP
+multimillion-pound-per-year JJ
+forecasts NNS VBZ
+Mechanix NNP
+Standard NNP JJ NN
+instability NN
+oppose VB NNPS VBP
+second-in-command NN
+Bonniers NNP
+Saving VBG NNP
+lung-tissue JJ
+gossips NNS VBZ
+Zen NNP
+computer-aided JJ
+avid JJ
+Rall NNP
+Theoretically RB
+smokeless JJ
+joyfully RB
+high-price JJ
+Afternoon UH
+pouring VBG
+ON IN RP NNP
+Aldermen NNS
+creatively RB
+suffrage NN
+contained VBD VBN JJ
+cost-to-benefit JJ
+bidder NN
+Carrie NNP
+continuous JJ
+issued VBN VBD JJ
+Freeze NN
+Harbor\/Save NNP
+marketers NNS
+reconstructions NNS
+audiocassettes NNS
+March NNP
+Spruill NNP
+offender NN
+Amendments NNPS NNS
+porter NN
+unintentionally RB
+bloodshot JJ
+Virgilia NNP
+preponderantly RB
+creationist JJ
+criminologist NN
+diktat JJ
+Ilyushin NN
+Batchelder NNP
+criticality NN
+darkened VBD VBN JJ
+J.Y. NNP
+Pulling VBG
+Serieuses NNP
+Swim NNP
+Mahayana NNP
+'50's CD
+Sardinia NNP
+mutually RB
+all-out JJ
+outstripping VBG
+Deluge NN
+epitomized VBN VBD
+Access NN NNP
+Castillo NNP
+riffs NNS
+Estimating VBG
+Tourism NNP NN
+forming VBG NN
+soupy JJ
+Brideshead NNP
+after-run JJ
+Trecker NNP
+wishywashy NN
+Remarketers NNS
+Fogelson NNP
+PETROLEUM NNP
+Sonet NNP
+DM200 CD
+Locked VBN
+inharmonious JJ
+Architects NNS NNPS
+pectorals NNS
+MIG-1 JJ
+predominated VBD
+Bleier NNP
+mid-August NNP NN
+entractes NNS
+hemorrhages NNS
+Menenendez NNP
+lend-lease JJ
+prior-day JJ
+peeping VBG
+six-cent JJ
+note NN JJ VBP VB NN|VB
+Rwanda NNP
+atmospheric JJ
+rolling VBG JJ NN
+highway-safety NN
+future-time JJ
+Endure VBP
+Amdura NNP
+slugging VBG
+Mainliner-Highland NNP
+barnstormer NN
+period NN
+discouraging VBG JJ
+shareholder-rights JJ NNS
+sufferer NN
+sonar NN
+Pollare NNP
+commodity NN
+swarthy JJ
+Mimi NNP
+master-race NN
+gassing NN
+Leonato NNP
+crackdowns NNS
+Tendered JJ
+refrigerated VBN JJ
+reinvent VB
+Miullo NNP
+Houtz NNP
+virulent JJ
+BATTLE NN
+astrophysicist NN
+Chinese-style JJ
+Attakapas NNP
+Mexico-based JJ
+Dadaism NNP
+demur VBP
+asymmetry NN
+talkin VBG NN
+pupils NNS
+gun-slinging JJ
+circularity NN
+MEDIA NNP
+Ward NNP
+Irretrievably RB
+accelerator NN
+uh UH
+Collection NNP NN
+single-minded JJ
+Dorset NNP
+Gatos NNP
+ire NN
+Blaming VBG
+clamping VBG
+stirrings NNS
+Guatemalan JJ NNP
+Myung NNP
+redoubling VBG
+) )
+WayMar NNP
+Carmelites NNPS NNS
+Diebel NNP
+Skilled JJ
+booing VBG
+standout NN
+punchers NNS
+surly JJ
+lucid JJ
+glimmering VBG
+Norms NNS
+Halle NNP
+state-plan JJ
+Annuity NNP
+simply RB JJ
+LIKE IN
+Foley NNP
+mild-voiced JJ
+octogenarians NNS
+tight-turn JJ
+low-wage JJ
+Seveso NNP
+suspiciously RB
+gabardine NN
+Saudis NNPS VBP
+Riger NNP
+earliest JJS RBS
+LaGuardia NNP
+hypersonic JJ
+depravities NNS
+cancer NN
+snared VBN
+reagent NN
+Stengel NNP
+Medieval NNP JJ
+Selection NN
+Countach NNP
+disposed VBN JJ VBD
+hitting-pitching JJ
+fun-in-the-sun JJ
+Dilthey NNP
+infringe VB VBP
+triumphantly RB
+sutures NNS
+fuse NN VB
+adminstration NN
+dyed VBN
+reticent JJ
+Messenger NNP NN
+Maid NNP
+pen-and-pencil JJ
+Upsala NNP
+corporate-coverage JJ
+snapshot NN
+Tascher NNP
+then-current JJ
+semi-catatonic JJ
+Trappist JJ
+OMB NNP
+profit-sharing NN JJ NNS
+sharpens VBZ
+Allied-Signal NNP
+juste FW
+cosmetics-industry NN
+Sovran NNP
+Corrigan NNP
+Weirton NNP
+delectation NN
+Nordyke NNP
+marketings NNS
+heavy-crude NN
+survivalists NNS
+NRC NNP
+Style NNP NN
+no-loads NNS
+Winnipeg NNP
+nine-tenths NNS
+anatomic JJ
+winging VBG
+Lunge NNP
+accuses VBZ
+Dirksen NNP
+atheist JJ NN
+decade NN
+batten NN
+lotion NN
+Schubert NNP
+SABH NNP
+superceded VBD VBN
+ripens VBZ
+empty-handed JJ
+Smith-Colmer NNP
+Preparedness NN
+sown VBN
+Russia NNP NN
+detects VBZ
+Gauloises NNP NNPS
+week-to-week JJ
+Adventists NNP
+nicknames NNS
+phrased VBN VBD
+artless JJ
+resource-use NN
+amp NN
+Work-outs NNS
+Backward NNP
+Miami-Madrid NNP
+Vouillemont NNP
+Caravaggio NNP
+pole NN
+william NN
+traversing VBG
+riders NNS
+gout NN
+Readily RB
+Spadafora NNP
+reaper NN
+ENTERS VBZ
+Shokubai NNP
+doted VBN
+cesium-137 NN
+submissive JJ
+heat-denatured JJ
+bailing VBG NN
+Kadonada NNP
+Humana NNP
+Unwilling JJ
+fluxes NNS
+Toscanini NNP
+overstretch VB
+ultrasound NN
+tamer JJR
+best-known JJ JJS
+desolate JJ
+misfortunes NNS
+low-tax NN
+Overlords NNPS
+irresistible JJ
+radionic JJ
+wears VBZ
+tape-delay NN
+focus-group JJ
+invasive JJ
+insolvent JJ NN
+preferment NN
+DIASONICS NNP
+integrals NNS
+F-14s NNS
+Pass NNP VB
+perilously RB
+Sweepstakes NNP
+Bamford NNP
+Functionally RB
+Eldest JJS
+Stena NNP
+Zapala NNP
+oedipal JJ
+Bracknell NNP
+inspecting VBG
+Scottish-born JJ
+employerpaid JJ
+Mind VB NN NNP
+Prufrock NNP
+incise VB
+Steelers NNP
+keyboard NN
+Corner NNP NN
+unlined JJ
+Garbutt NNP
+Toonker NNP
+vocalism NN
+grimmest JJS
+longshoreman NN
+unsatisfactory JJ
+Rat NNP
+we'uns NNS
+Loewe NNP
+Idex NNP
+cavalry NN
+smiling VBG JJ NN
+engagements NNS
+infrared JJ NN
+Biovest NNP
+C.O.G. NNP
+gaudy JJ
+sidestepped VBD VBN
+cleared VBN VBD
+triple-B-minus NNP JJ
+reimbursement NN
+Stockbrokers NNS NNP
+Balzac NNP
+deviants NNS
+Processors NNPS
+premediated JJ
+Hingham NNP
+Rapping VBG
+drug-policy NN
+Epinalers NNPS
+measurement NN
+MTU NNP
+underbrush NN
+Pushkin NNP
+Thurmond NNP
+excerpts NNS
+Hip NN
+sign NN VBP VB
+constructing VBG
+Market-based JJ
+overturns VBZ
+shaking VBG NN
+Campenhout NNP
+Revitalization NNP
+Paine NNP
+tonic NN
+tramping VBG
+outward-projecting JJ
+popularize VB
+Houghton NNP
+barter NN
+MIG-2 JJ
+arrow NN
+Forsan FW
+Clausen NNP
+menopause NN
+separate JJ VBP VB
+thatt IN
+Seydoux NNP
+saver NN
+brucellosis NN
+entrepreneurial JJ
+dominance NN
+blender NN
+Electro-Optics NNP
+weatherbeaten JJ
+vitreous-china NN
+Lipner NNP
+Slocum NNP
+Flushing-Main NNP
+Hoylake NNP
+ski-industry NN
+intriguingly RB
+unreimbursed VBN
+Nux NN
+spinneret NN
+rode VBD
+censured VBD VBN
+rebelliously RB
+late-comers NNS
+barrow NN
+Packaged-goods NNS
+objection NN
+spherules NNS
+sparkled VBD
+Costco NNP
+In IN RBR JJ RB NNP
+mockery NN
+Pilgrimage NNP
+Ayatollah NNP
+Chim NNP
+sling NN
+Legitimate JJ
+Pre-refunded JJ
+WGBH NNP
+anti-cartel JJ
+symposiums NNS
+enamored JJ
+Racal NNP
+operating-system JJ NN
+waived VBN VBD
+Pereira NNP
+Characterizing VBG
+Weerasinghe NNP
+submarine-based JJ
+outdoorsman NN
+Raikin NNP
+scrutinizing VBG
+Irian NNP
+Carey NNP
+Crawford NNP
+on-stage JJ
+discipline NN VB VBP
+microeconomics NNS
+Matsushita-owned JJ
+Automobile NNP NN
+haggling VBG NN
+exteriors NNS
+condolences NNS
+Morin NNP
+Sulphur NN NNP
+depending VBG
+Karate NN NNP
+equalizers NNS
+Ware NNP
+Krug NNP NN
+Amadou-Mahtar NNP
+photographs NNS VBZ
+Hiroyuki NNP
+tabernacles NNS
+morning-glory NN
+ACLU NNP
+direct-steelmaking NN
+parameters NNS
+larder NN
+stores NNS VBZ
+heliports NNS
+Turnkey NNP
+low-duty JJ
+internalized VBN
+rheumatism NN
+line-fragments NN
+peanut NN JJ
+buy-now JJ
+sift VB VBP
+overbillings NNS
+Autumnal JJ
+deathless JJ
+Gurkhas NNP
+dessier VB
+generic JJ
+multiple-year JJ
+bench... :
+incubating VBG
+smidgins NNS
+centrifuge NN
+Shooter NNP
+blocs NNS
+Metromedia-ITT NNP
+B-movie NN
+review NN VB VBP
+defense-appropriations JJ
+Honors NNP NNS
+tassels NNS
+leaches NNS
+wealthiest JJS
+podiums NNS
+videotaped VBN VBD
+Ahoy NNP
+EQU NN
+hotbed NN
+warmth NN
+Blaydon NNP
+Lethcoe NNP
+mid-20 CD
+tangential JJ
+RECORD NNP
+fails VBZ NNS
+Julia NNP
+inquired VBD VBN
+Tournament NNP NN
+legislated VBN VBD
+contagion NN
+brightener NN
+transluscent JJ
+P.A. NN
+Dart NNP
+Gericault NNP
+skippering VBG
+rock NN JJ VB VBP
+idiocies NNS
+Rosenstein NNP
+Regiment NNP
+negotiates VBZ
+carried VBD VBN
+viva FW NN
+tax-free JJ
+bran NN
+Breakfast NN NNP
+Cleaning VBG NN
+OFFERED NNP JJ VBN|JJ VBN
+Molson NNP
+minimum-wage NN
+Tenderfoot NN
+Ganessa NNP
+unassailable JJ
+Tonkin NNP
+situated VBN
+luckiest JJS
+competent JJ
+Bosco NNP
+Autozam NNP
+Inca NNP JJ
+city-trading NN
+neon-lit JJ
+breakfast-table NN
+pickins NNS
+music-entertainment NN
+Fridays NNPS NNP NNS
+Newts NNP
+multicolored JJ
+unseat VB
+framers NNS
+liaison NN JJ
+Terminal NNP JJ
+Poulenc NNP
+Rogers NNP
+hypnotized VBN
+case NN VB
+Tacker NNP
+Marquess NNP
+tularemia NN
+actinometer NN
+QE NNP
+Powers NNP
+swallowing VBG
+Fledgling NN
+* SYM , :
+eighteen CD
+confines NNS
+nitwits NNS
+post-minimalist JJ
+Malapi NNP
+NAREB NNP
+Archangel NNP
+Lemme VB
+Cuddles NNP
+unrestrained JJ
+Cantwell NNP
+super-exciting JJ
+uprising NN
+quake-related JJ
+extinguishment NN
+red-tape NN
+Reformation NNP NN
+margin-calls NNS
+Keller NNP
+tyrannize VB
+tenders NNS
+heart-warming JJ
+lima NN
+shuns VBZ
+Puhl NNP
+Boniface NNP
+low-temperature JJ NN
+Datacrime NNP
+Voting NNP VBG NN
+Drye NNP
+carbon-monoxide NN
+Telmex NNP
+Halma NNP
+positional JJ
+Mistsubishi NNP
+Drenched JJ
+Near-term JJ
+Connie NNP
+sloshed VBD
+dismayed VBN JJ
+deference NN
+hemorrhaging VBG JJ NN
+visit NN VB VBP
+HATS NNS
+leadoff NN
+Mikhail NNP
+MPl NNP
+Past JJ IN NN RB NNP
+defer VB
+PUBLIC JJ
+nitrogen-mustard JJ
+reciprocity NN
+European-made JJ
+Asilone NNP
+Shorting NN VBG
+misplacing VBG
+holders NNS
+Album NN NNP
+interestingly RB
+bevy NN
+sip NN
+Connery NNP
+glacier-like JJ
+corralling VBG
+rubdowns NNS
+pro-abortion JJ
+Define VB
+zotl NN
+encyclopedia NN
+Friedrich NNP
+rectangle NN
+scuff VB
+Mine NNP PRP JJ
+bumpers NNS
+Iwai NNP
+Isadore NNP
+crack-induced JJ
+OmegaSource NNP
+Conferences NNPS NNP NNS
+guillotine NN
+Gesamtkunstwerke FW
+Sultan NNP
+DuCharme NNP
+Huricane NNP
+Chirac NNP
+bathtub NN
+reactivity NN
+post-June JJ
+lacked VBD VBN
+hookups NNS
+experimenters NNS
+manholes NNS
+Months NNS
+jams NNS
+patch NN VB
+Airfones NNS
+aficionado NN
+rattler NN
+Mercury NNP
+waking VBG JJ
+ornamented VBN
+overdue JJ
+octogenaraians NNS
+squirt NN
+unbridled JJ
+flick NN
+persecuted VBN
+CARE NNP
+Wendy NNP NN
+intra-administration JJ
+tantrum NN
+Committeeman NNP
+vociferously RB
+Addington NNP
+deluged VBN VBD
+saves VBZ
+drama-filled JJ
+curdling VBG
+quarterback NN
+Lankford NNP
+Mittag NNP
+Ramada NNP
+overlooks VBZ
+Takanashi NNP
+cigars NNS
+non-members NNS
+Councilwoman NNP
+Piazzo NNP
+wells NNS
+understatement NN
+monacle NN
+Redford NNP
+Waltham NNP
+Brazilian JJ NNP
+Pouilly-Fuisse NNP
+increased VBN JJ VB VBD VBN|JJ
+Noskova NNP
+BE&K NNP
+tripolyphosphate NN
+avalanche NN
+PGH NNP
+wave-particle NN
+surveyed VBN VBD
+Varvara NNP
+Feldstein NNP
+lapsing VBG
+Kurabo NNP
+Polimotor NNP
+explosions NNS
+aphorisms NNS
+Zimmer NNP
+papillary JJ
+lifestyle NN
+Bluebonnet NNP
+full-length JJ NN
+MTV NNP
+buddies NNS
+C'mon VB UH
+debt-for-environment NN
+bayly NN
+youngest JJS
+Cargo NNP
+recharge NN
+nearer JJR IN RBR
+NEWS NN NNP NNS
+less-than-robust JJ
+resource-wasting JJ
+ineptness NN
+jiving VBG
+Been VBN NNP
+consisently RB
+Humulin NNP
+Riese NNP
+ticketed VBN
+on-board JJ
+Appell NNP
+diary NN
+dynamo NN
+kelp NN
+instalments NNS
+Vietnamese-backed JJ
+gloating VBG
+roughcast NN
+civilian-aircraft NN
+awkwardness NN
+government-subsidized JJ
+Sawnders NNP
+plasmodium NN
+Strawberry NNP
+off-limits JJ
+fish-export JJ
+fatally RB
+abeyance NN
+Chin NNP NN
+Nesconset NNP
+Freston NNP
+ionic JJ
+once-stately JJ
+D'Amours NNP
+shipyard NN
+MGM\/UA NNP JJ NN
+Kaster NNP
+perplex VBP VB
+premises NNS NN
+dammit UH VB
+eked VBD VBN
+baroness NN
+Schroll NNP
+bellyfull NN
+Amendment NNP NN
+scanty JJ
+vans NNS
+guides NNS VBZ
+heretics NNS
+U-I NNP
+NU NNP
+Pathe NNP
+Exporting NNP
+spectra NNS
+examiners NNS
+Valiant NNP
+quibble VB
+Colonna NNP
+crackdown NN
+Miklos NNP
+Adjoining VBG
+Nagano NNP
+RU-486 NNP NN
+Intergovernmental NNP
+revolution NN
+Shimson NNP
+creedal JJ
+feather-bedding NN
+dictating VBG NN
+Carmelite JJ
+upper-middle-income JJ NN
+.Not RB
+vividly RB
+'Lady NN
+deny VB VBP
+squiggly RB
+inevitability NN
+compresses NNS VBZ
+surmised VBD VBN
+car-market JJ NN
+springboard NN
+Dookiyoon NNP
+Merion NNP
+sauna NN
+Sarawak NNP
+Eisenberg NNP
+Georgano NNP
+Begging VBG
+state-court NN
+clean-burning JJ
+tax-writing JJ
+Suzanne NNP
+wireline JJ
+Cavarretta NNP
+Tampering VBG
+store-brand JJ
+spots NNS VBZ
+rimmed JJ VBD
+column-shaped JJ
+contemplating VBG
+W\/O NNP
+Jetta NNP
+squirms VBZ
+yeller JJ
+st NN
+reassigned VBN VBD
+COTTON NN NNP
+leakage NN
+Angevine NNP
+chewing VBG JJ NN
+encyclopedic JJ
+central-district JJ
+Ahern NNP
+Knox-like JJ
+Feltes NNP
+doubter NN
+Taittinger NNP
+windowless JJ
+white-coated JJ
+bamboozled VBN
+Epes NNP
+Mellal NNP
+habitat NN
+keepsakes NNS
+Io NNP
+future-day JJ
+water-line NN
+LaGow NNP
+less-complicated JJ
+adaptor NN
+enthusiastically RB
+point NN VBP RB VB
+pre-cooled JJ
+independents NNS
+equalizer NN
+pathless JJ
+Stone-Consolidated NNP
+GHKM NNP
+Rales NNP
+loyalty NN
+pony-tailed JJ
+embodiments NNS
+cellars NNS
+slow-spending JJ
+full-size JJ
+half-brother NN
+peanut-butter NN
+O'Neil NNP
+warm-red JJ
+HAWLEY NNP
+fill-in JJ
+Unitil NNP
+preoccupies VBZ
+Evangelicalism NNP
+refine VB
+eyeteeth NNS
+interposed VBN
+bathing NN VBG
+weighs VBZ
+work-study JJ NN
+Lymington NNP
+vacillation NN
+postmarks NNS
+hula NN
+robin NN
+Compensation NNP NN
+Censorship NN
+fact-bound JJ
+endured VBD VBN
+to TO RB
+shunt NN
+Tigre NNP
+HealthVest NNP JJS
+scrimp VB
+Kara NNP
+president\/chief NN
+Plekhanov NNP
+Engineering NNP NN
+explosion NN
+Gorman NNP
+pyrophosphate NN
+crus NN
+breakups NNS
+Analysts NNS NNP
+probity NN
+single-B-plus JJ
+forwarders NNS
+Brains NNS
+deformational JJ
+Accompanied VBN
+three-day JJ
+now-defunct JJ NNP
+fashionable JJ NN
+stepson NN
+Ace NNP NN
+reclaiming VBG
+straitjacketed JJ
+Edgardo NN
+alimony NN
+limb NN
+Anatole NNP
+WELLS NNP
+Padgett NNP
+profiting VBG
+towne NN
+shrivel VB
+professed VBD VBN JJ
+rattles VBZ
+millionaires NNS
+panned VBN VBD
+Dalkon NNP
+herring NN
+Sonia NNP
+Fry VB
+Kronenberger NNP
+wheare WRB
+give-away JJ
+Lothson NNP
+chattily RB
+Admiralty NN
+Observing VBG
+anarchical JJ
+lady NN
+blustery JJ
+Hating VBG
+cross-fertilization NN
+abbreviated JJ
+artery-pulmonary NN
+methodologies NNS
+yet-another JJ
+evacuated VBN
+sumptuous JJ
+next JJ IN RB
+global-warming JJ
+curettage NN
+Ffortescue NNP
+Tact NN
+horn-rimmed JJ
+hawkers NNS
+Cafritz NNP
+amours FW
+circuitous JJ
+Durable JJ
+witnessing VBG
+Walkers NNPS NNS
+Buaford NNP
+Pittsburgh NNP
+deathly JJ
+share NN VBP JJ VB
+Elias NNP
+Husky NNP JJ
+punishes VBZ
+Self NNP NN
+dirtiest JJS
+wreaths NNS
+closures NNS
+Conrades NNP
+Dylan-influenced JJ
+quaver NN
+dismounts VBZ
+Throwing VBG
+narco NN
+overleveraging VBG
+Ke NNP
+ESOPs NNS NNP
+marital JJ
+Paperboard NNP NN
+passel NN
+across-the-board-cuts NNS
+concepts NNS
+team NN VB VBP
+Cannistraro NNP
+Transparent JJ
+Jannsen NNP
+garage NN VBP
+Hebron NNP
+concern NN VBP VB
+ally NN VB
+quintets NNS
+broker-dealer NN JJ NN|JJ
+reorganization NN
+resonant JJ
+lip-sucking NN
+Youngstown NNP
+Ferron NNP
+Whitbread NNP
+efficiently RB
+Off-price JJ
+Bittker NNP
+Png NNP
+Sebastian NNP
+Mosettig NNP
+'A NN
+anti-discrimination JJ NN
+Teagarden NNP
++ SYM NN
+Scale NNP
+Bahrenburg NNP
+five-speed JJ
+peacocks NNS
+chickens NNS
+bias NN
+Lucius NNP
+Wildlife NNP NN
+Honeysuckle NNP
+abstaining VBG
+Leno NNP
+caterer NN
+Saint-Geours NNP
+turf-hungry JJ
+Sanjiv NNP
+reunion NN
+Rabia NNP
+chews NNS
+computer-guided JJ
+Swiggett NNP
+Avianca NNP
+SunAmerica NNP
+truthful JJ
+trinket NN
+Gagliardini NNP
+reptilian JJ
+taxi NN
+Democratic JJ NN NNP
+melodies NNS
+Invalid NNP
+Ives NNP
+pants-legs NN
+potter NN
+undershirt NN
+Cray NNP
+Noted JJ
+interdependence NN
+Network-access JJ
+Standards NNPS NNP
+enforcing VBG
+Petipa-Tschaikowsky NNP
+scents NNS
+McShane NNP
+Tanzman NNP
+staging VBG NN
+oval JJ NN
+PARENTAL JJ
+RA NNP
+.10.07 CD
+NEWT NN
+warchest NN
+'Preventive JJ
+wrenched VBD VBN
+Vivien NNP
+Manzi NNP
+high-priority JJ
+farmhands NNS
+SKr20 NNS
+Whichever WDT
+intended VBN VBD JJ
+dreaming VBG NN
+Victorians NNS NNPS
+liberalized VBN JJ VBD
+adipic JJ
+haves NNS
+Kanoff NNP
+Xiaoping NNP
+spectator NN
+judicially RB
+one-on-one JJ RB
+synchronizers NNS
+restricted VBN JJ VBD
+Grands NNP
+church-goers NNS
+all-time JJ
+non-Soviet JJ
+allot VB
+sonogram NN
+office NN
+Award NNP NN
+Edition NNP
+slack JJ VB NN
+Rand NNP
+Continentals NNS
+low-base-price JJ
+Noah NNP
+Adventures NNS NNP NNPS
+small-town JJ
+mostly RB JJ
+foamed-core JJ
+born VBN
+floutingly RB
+Automobili NNP
+bich NN
+non-working JJ
+hot-dipped JJ
+Underclass JJ NNS
+L.P NNP
+sack NN VB
+underway RB JJ
+Vietnamese JJ NNP NNS NNPS
+neoconservative JJ
+single-level JJ
+blushes NNS
+drive-through JJ
+nibs NNS
+detention NN
+blocks NNS VBZ
+paraxial JJ
+compass NN VB
+coal-fire JJ
+free-standing JJ
+center-field NN
+Rolls NNP NN
+rejuvenate VB
+orthodoxy NN
+contortionists NNS
+skillet NN
+meek JJ
+Malamud NNP
+contingency-fee JJ
+visitations NNS
+fullback NN
+Championship NNP
+Mankiewicz NNP
+better-paying JJ
+microwavable JJ
+Hickey NNP
+first-bracket NN
+Centers NNPS NNP VBZ
+striding VBG
+anti-foreign JJ
+zippers NNS
+Chip-o NNP
+INTEL NNP
+wittily RB
+raspy NN
+lap NN VBP
+Weiler NNP
+sheered VBD
+gynecologists NNS
+MVL NNP
+sensuality NN
+pit-run JJ
+Ostpolitik NNP
+rein VB NN
+milling NN VBG
+adverse JJ
+high-leverage JJ
+Abitibi-Price NNP
+pursue VB VBP
+hangar NN
+Anastasio NNP
+carelessness NN
+Kwame NNP
+NATIONAL NNP JJ
+Herscu NNP
+Klaus NNP
+assortments NNS
+Yuzek NNP
+militate VB
+thickens VBZ
+anti-epileptic JJ
+biophysical JJ
+quests NNS
+base-metal NN
+Seagull NNP
+Toyo NNP
+sitcoms NNS
+scatterbrained JJ
+Konstantin NNP
+readying VBG
+chronology NN
+preoccupy VBP
+weight NN VB
+Cambodian JJ
+Sunset NNP
+Ballon NNP
+farther RB RBR
+lilac JJ
+Sheeran NNP
+photography NN
+Forget VB NNP
+Drexler NNP
+Hu NNP
+appellant FW
+talks NNS VBZ
+usability NN
+allusion NN
+tax-overhaul JJ NN
+NV NNP
+Lovejoy NNP
+kinesthetically RB
+buffaloes NNS
+kingdom NN
+offenders NNS
+Groben NNP
+CRASHED VBD
+Kenan NNP
+zigzagging VBG
+Burning VBG NN NNP
+grandly RB
+Stillwater NNP
+well-suited JJ
+tensions NNS
+Substantial JJ
+Vanden NNP
+Ariz NNP
+Breuners NNP NNPS
+Charcoal NN
+thriller NN
+space-shuttle NN
+business-migration NN
+tires NNS VBZ
+Gene-splicing NN
+LeFevre NNP
+novelistic JJ
+misapplication NN
+laptops NNS
+conclude VB VBP
+Donnelly NNP
+chanceries NNS
+multipactor NN
+Inflows NNS
+Takayama NNP
+Shippin VB
+hut NN
+assumes VBZ
+accidental JJ
+aeronautical JJ
+Kanon NNP
+readmitted VBN
+Saints NNP NNPS
+franchising NN VBG
+Ambigua NNP
+solution NN
+bandwidth NN
+whammo UH
+dervish NN
+Suchard NNP
+Fractions NNS
+governs VBZ
+Ilyushins NNPS
+drugless JJ
+vilifies VBZ
+HDI NNP
+propellant NN
+loops NNS VBZ
+scavengers NNS
+Janis NNP
+Brinkman NNP
+deer-killing NN
+Nibble NNP
+liquidity-enhancing JJ
+invoke VB
+halfways RB
+sickly-tolerant JJ
+sourcing NN VBG
+firmed VBD VBN
+fellow-countryman NN
+Ruckert NNP
+Deacons NNS
+SKr225 NNS
+hunched VBN VBD JJ
+senior-level JJ
+leases NNS VBZ
+offering-price JJ
+twinges NNS
+government-owned JJ
+turnpike NN
+wristwatch NN
+Fledermaus NNP
+e.g NN FW
+Broadly RB
+windless JJ
+Appleton NNP
+company-operated JJ
+oleanders NNS
+fridge NN
+jogger NN
+Argyros NNP
+Conservatory NNP
+Favorite NNP JJ
+Equal NNP JJ
+containerboard NN
+sterile JJ
+Achenbaum NNP
+more-generic JJ
+Horseman NN
+unexplainable JJ
+slippery JJ
+long-term`` ``
+melioration NN
+Winnick NNP
+frozen VBN JJ
+last-round JJ
+Surprise NN NNP
+recuperating VBG
+kicker NN
+eight-year JJ
+Draw-file NN VB
+Montreal-Toronto JJ
+ESL NNP
+cross-investment JJ NN
+Ming NNP
+Sopsaisana NNP
+anvil NN
+regroup VB VBP
+climaxes NNS
+Pittsburg NNP
+Green-labeled JJ
+idyll NN
+robs VBZ
+directness NN
+suspensions NNS
+rebuke VB NN
+bead-like JJ
+favour NN
+viselike JJ
+journey NN VB
+supplanted VBN
+Integra-A NNP
+anti-flag-burning JJ
+OME NNP
+Lundy NNP
+Fame NNP NN
+Ignition NN
+tintype NN
+Nutritious JJ
+Prebon NNP
+Schuler NNP
+optimality NN
+Bruccoli NNP
+epochal JJ
+Stoll NNP
+personal-spending NN
+lulls NNS VBZ
+compressor-manufacturing JJ
+Emeryville NNP
+Ruschkowski NNP
+impassible JJ
+longstrained VBN
+Gon VBG
+clothes NNS
+Renzas NNP
+Strother NNP
+Birgitta NNP
+magnolia NN NNS
+Swift NNP
+recapitulate VB
+galvanic JJ
+cared VBD VBN
+split-fingered JJ
+Jumping VBG UH
+brandished VBD
+self-regulator NN
+beverages NNS
+Runner NNP
+blindsided VBN JJ
+robbers NNS
+hearty JJ
+Listed VBN JJ
+inkstand NN
+Hutchison NNP
+excavating VBG
+affirmative JJ NN
+Serafin NNP
+breaking VBG JJ NN
+braided JJ VBN
+re-regulation NN
+Ceartaine JJ
+long-life JJ
+monsters NNS
+Galveston NNP
+Gomez NNP
+Li'l JJ
+wholly RB
+toxic JJ NN
+FHLBB NNP
+Sieux NNP
+lubricated VBN
+contentious JJ
+emphysema NN
+sir NN UH
+batter NN VB
+celebrators NNS
+spectrometer NN
+'Have VB
+Nitze NNP
+Gregory NNP
+Aware JJ
+kooks NNS
+Pre-College NNP
+strangulation NN
+mucky JJ
+RUSH NN VB
+Threatened VBD
+fermented VBN
+Beep NNP NN
+CAPITAL-GAINS NNP
+Gelb NNP
+vacated VBN VBD
+furnace NN
+terry NN
+a-GM NNP
+rococo JJ NN
+Pty. NNP
+Haase NNP
+Drury NNP
+urinals NNS
+university-trained JJ
+TALKS VBZ
+Essen NNP
+Zigarlick NNP
+year-long JJ
+Messiaen NNP
+third-floor JJ
+taunts NNS
+discredit VB NN
+headlining VBG
+Rifkind NNP
+rhinotracheitis NN
+Chip NNP NN
+temporary-help JJ NN
+Claridge NNP
+power-hungry JJ
+Curzio NNP
+Movies NNP NNS
+BICC NNP
+wring VB
+anatomically RB
+Newsote NNP
+, , JJ NN UH
+Mezzogiorno NNP
+Dousman NNP
+scorcher NN
+Thom NNP
+Malvenius NNP
+sawmill NN
+into IN RP
+Milka NNP
+trade-preparatory NN
+admittances NNS
+TIRES NNS
+pre-med JJ
+Krause NNP
+Raw JJ
+heaviness NN
+neuritis NN
+ligands NNS
+cooped JJ NN VBN
+Fire NNP NN
+pepperoni NNS
+virtual JJ
+preprivatization NN
+Elanco NNP
+Christophers NNPS
+predominates VBZ
+Units NNP NNPS NNS
+national-treasure JJ
+milquetoast NN
+NOW RB NNP
+MacKinnon NNP
+CoAdvil NNP
+inspire VB VBP
+retaliation NN
+Quacks NNS
+end-run NN
+Jarrett NNP
+all-employee JJ
+outlays NNS
+adoptees NNS
+evolutionary JJ
+La NNP FW
+deprived VBN VBN|JJ VBD
+Karcher NNP
+expedition NN
+Berton NNP
+warped VBN JJ
+Muniz NNP
+qui FW
+parliamentarians NNS
+Ragsdale NNP
+prolonging VBG
+ascetics NNS
+Yancey-6 NN
+Volume NN NNP
+sedimentary JJ
+egg-on-the-face JJ
+groin NN
+exhibited VBN VBD
+His PRP$ NNP
+nociceptive JJ
+Body-building JJ
+unrolled JJ
+matsyendra NN
+--Of IN
+American-style JJ
+Calaveras NNS
+procreative JJ
+statistician NN
+lunar JJ
+B'dikkat's NNS
+thermometry NN
+necromantic JJ
+suffocating VBG JJ
+Planners NNS NNPS NNP
+earnings NNS NN
+elephant-like JJ
+test-preparation JJ
+humiliating JJ
+Farrells NNPS
+Testifies VBZ
+Ada NNP
+somatostatin NN
+mouthing VBG
+landscaped VBN JJ
+perked VBD VBN
+dyed-in-the-wool JJ
+troublesome JJ
+dBase NNP
+sublicense NN
+Mercedes-Benz NNP
+pre-eminent JJ
+well-fitted JJ
+Prawiro NNP
+registration NN
+demonstrating VBG
+Mareb NNP
+handouts NNS
+operation NN
+veto-proof JJ
+paleness NN
+limped VBD VBN
+tremendously RB
+presto RB
+Wealthy NNP
+twigs NNS
+sporty JJ
+south RB JJ NN
+epicurean NN
+fastener NN
+snowball NN VB
+gosaimasu FW
+remorse NN
+apprehend VB
+Loewi NNP
+compulsives NNS
+sustainability NN
+Staley NNP
+BanPonce NNP
+Lapin FW
+imploring VBG
+magic-practicing JJ
+mega JJ
+Sonic JJ
+campsites NNS
+homo-hatred NN
+Flag NN
+Ellison NNP
+Research-and-development NN
+Rise NN NNP VBP VB
+NSA NNP
+sours VBZ
+Aikin NNP
+well-stuffed JJ
+slumlord NN
+enhances VBZ
+policy-setting JJ
+infused VBN
+maintainence NN
+skirting VBG
+school-improvement JJ NN
+Milwaukee NNP
+currents NNS
+observation NN
+SeaEscape NNP
+sufferers NNS
+cash NN VB
+Routo-Jig NN
+investment-house NN
+gret JJ
+capacity-expansion JJ NN
+college-sports NNS JJ
+Cray*/NNP-3 CD
+intruded VBN VBD
+Citizen NNP NN
+Hamburg NNP
+stock-repurchase JJ
+doweling NN
+smoothest JJS
+Teflon NNP
+gossipy JJ
+torrid JJ
+utero NN
+sociologically RB
+f'r IN
+lapel NN
+short-seller NN
+Revlon NNP NN
+expiration NN
+Dorsey NNP
+vicious JJ
+Officielle NNP
+Paini NNP
+Grange NNP
+hotel-management NN
+Knightfall NNP
+entreat VB
+maidens NNS
+brushbacks NNS
+Ballard NNP
+stylistically RB
+Comtes NNP
+hawk NN VBP VB
+Shrugged VBN
+spectators NNS
+shod JJ
+Aspilia NN
+CFC-11 NN
+construction NN
+fertilization NN
+accelerometers NNS
+undelivered JJ
+Stickler NN
+Revenue NN NNP
+Slo-Flo NNP
+NW NNP
+affiliated VBN JJ
+moguls NNS
+competitions NNS
+fetal-vulnerability JJ
+adjusters NNS
+honorific NN
+annual JJ NN
+T8 NNP
+Eppel NNP
+Magten NNP
+Bangkok-Rangoon NNP
+Deterrent NN
+uproar NN
+sprawl NN VBP VB
+E&P NNP
+prescient JJ
+Deere NNP
+Boardman NNP
+Valladolid NNP
+Metallgesellschaft NNP NN
+Bengali JJ NNP
+beginners NNS
+Nye NNP
+torrents NNS
+stuffing VBG NN
+foci NNS
+Defensive JJ
+RNAs NNS
+Merkel NNP
+Generalizations NNS
+soft-cookie NN
+Minh NNP
+covenant NN
+neighbourhood NN
+dere NN
+Brinkley NNP
+tumbler NN
+booty NN
+big-souled JJ
+U.S.S.R NNP SYM
+Dynamic NNP
+fighting VBG VBG|NN JJ NN
+anti-cigarette JJ
+Greek-Danish NNP
+Kelman NNP
+splayed VBD
+elementary-school JJ
+grogginess NN
+bamboo NN
+recreating VBG
+ethics NNS NN
+Remics NNS NNPS
+post-modernism NN
+figures NNS VBZ
+recharged VBN
+obfuscation NN
+Barbera NNP
+Ogallala NNP
+oath NN
+Die-hard JJ
+Gabelli NNP
+unjustly RB
+tooling VBG NN
+fancifully RB
+equipped VBN JJ VBD
+festivities NNS
+sleepwalkers NNS
+ransacked VBN VBD
+Identification NNP
+Japanese-Americans NNPS NNS
+Carolinian NNP
+aiding VBG
+anti-smoking JJ
+OR CC
+undeserved JJ
+borrower NN
+raised VBN VBD JJ
+corridors NNS
+Crupi NNP
+unconstitutional JJ
+complaints NNS
+civil JJ
+exertions NNS
+After-the-fact JJ
+Dominant JJ NNP
+snakestrike NN
+rehabilitating VBG
+Ilford NNP
+Strindberg NNP
+Eighteenth-century JJ
+encampment NN
+Welsh NNP JJ
+crumble VB
+mountainside NN
+Wolcyrz NNP
+pressman NN
+Quemoy NNP
+re-declared VBD
+Smetek NNP
+Taek NNP
+Robbie NNP
+Fredrik NNP
+FPA NNP
+Britannia NNP
+Breton NNP
+interrupt VB VBP
+Ibias NNP
+polyether NN
+dappled JJ
+Paul NNP
+Giblen NNP
+newscaster NN
+fine-tune VB
+tagged VBN VBD JJ
+guardedly RB
+Gingrich NNP
+STRUGGLED VBD
+gratify VB
+far-out JJ
+beer-drinker NN
+Tariffs NNPS NNP
+Existence NN
+Karches NNP
+paramagnetic JJ
+palpably RB
+indecision NN
+Julie NNP
+Belorussian NNP
+super-experiment NN
+Words NNS NNPS
+semi-special JJ
+duffel NN
+Panamanians NNS NNPS
+PM NNP
+Vose NNP
+distal JJ
+large-screen JJ
+reinforcement NN
+Biondi NNP
+nonrecourse JJ
+V. NNP CC IN
+directly RB
+sloppiness NN
+flattering JJ
+Chafic NNP
+fee-for-service JJ
+box-sized JJ
+SOUTH NNP
+Tomilson NNP
+beheading NN VBG
+asked... :
+retouching NN
+Sheraton-Pan NNP
+three-page JJ
+disarmament NN
+hair-relaxer NN
+upturned JJ
+guiltiness NN
+distinctive JJ
+Schleiermacher NNP
+Mutton NNP
+outbound JJ
+lassitude NN
+AMNESTY NN
+averted VBN VBD
+flat-topped JJ
+protuberance NN
+Fall NNP NN VB
+weaning VBG
+lunch NN VB
+Affaires NNP
+Campania NNP
+Commentary NNP
+Adios-On NNP
+neo-populist JJ
+Japanese-based JJ
+electricians NNS
+traders NNS
+Kruk NNP
+addressed VBN JJ VBD
+Three-month JJ
+picnic NN
+RECORDS NNS
+detracted VBN
+stupor NN
+Hammarskjold NNP
+Route NNP IN NN
+CORP. NNP
+Blot NNP
+scarecrowish JJ
+repassed VBN
+liken VBP
+trousers-pockets NNS
+purposeless JJ
+promotional JJ
+IMF-guided JJ
+Dismounting VBG
+woodpecker NN
+Inexpensive JJ
+Trim VB NN NNP VBP
+tardiness NN
+temperaments NNS
+high-sounding JJ
+repatriate VB VBP
+uppercut NN
+Phenolic JJ
+beech NN
+adhesive JJ NN
+black-white JJ
+Cost NN NNP
+Clanahan NNP
+contemplation NN
+Vranian NNP
+Majesties NNPS
+Rax NNP
+FMR NNP
+unagi FW
+Ayala NNP
+spectre NN
+Outlook NN NNP
+prostitution NN
+Buechel NNP
+non-productive JJ
+nattily RB
+CITY NNP
+incite VB VBP
+Piccadilly NNP JJ
+disbursed VBN VBD
+Keath NNP
+Tortillas NNPS
+Unoccupied JJ
+dachshounds NNS
+singleness NN
+Obligingly RB
+amici FW
+-$ $
+absolutes NNS
+Gaither NNP
+Euro-jogging JJ
+resource NN
+represent VB VBP
+specialty-chemical NN
+physician-reimbursement JJ
+Hamer NNP
+Bogacheva NNP
+workbenches NNS
+Whiteman NNP
+buccolic JJ
+Lived VBD
+vocalist NN
+Oshinsky NNP
+liposomes NNS
+Hit VBN VBP NN VB
+synthesized VBN
+ready-to-wear JJ
+forgetful JJ
+bagel NN
+Darwin NNP
+slabs NNS
+ninth-circuit JJ
+ringer NN
+demise NN
+- :
+perk JJ VB
+interviews NNS VBZ
+analytical-instruments JJ
+long-term JJ NN RB NNS
+defunded VBN
+Viacom NNP
+air-launched JJ
+Stressed VBN
+nodular JJ
+Offutt NNP
+rainout NN
+STATES NNS
+flied VBD
+nuclear-tipped JJ
+Vice NNP NN
+outrageously RB
+ferromagnetic JJ
+dined VBD VBN
+ardent JJ
+Thatcher NNP
+coolants NNS
+conserve VB
+Magdalena NNP
+Crucians NNPS
+rummaged VBD
+Milt NNP
+beefore IN
+sundials NNS
+afoul RB
+exceptional JJ
+Tourist NNP NN
+CFC-12 NN NNP
+Cree NNP
+Wish-List NN
+frigates NNS
+reinvestigating VBG
+Hodges NNP
+beckon VBP VB
+devotional JJ
+Christmastime NNP
+overmedicated VBN
+sows VBZ NNS
+bar'l NN
+post-surgery JJ
+intensified VBN VBD JJ
+pay-per-view JJ
+tumbles VBZ NNS
+Wander-Years NNP
+Veritrac NNP
+impostor NN
+Dorian NNP
+past. NN
+kindle VB
+institutionalized VBN JJ
+tongs NNS
+winches NNS
+dairies NNS
+chimed VBD
+cutthroat JJ
+hauled VBD VBN
+pitfall NN
+spirits NNS
+thirty CD
+Sofitel NNP
+Drovers NNS
+Taff NNP
+polymerase NN
+lime NN
+Reb NN
+fast-spreading JJ
+Dortch NNP
+shy JJ NN RB VB VBP
+estates NNS
+culled VBN
+alcoholic-beverage NN
+withheld VBN VBD
+screaming VBG JJ NN
+telepathy NN
+shoe NN
+self-insure VBP
+assuage VB
+Nehf NNP
+bin NN
+microchip NN JJ
+year-end NN JJ RB
+electrical-safety JJ
+binary JJ
+Krasnow NNP
+impotence NN
+dollars... :
+tilt-rotor JJ
+CHECKUPS NNS
+hours NNS VBZ
+ovarian JJ
+audio-specialty NN
+Agura NNP
+ascertain VB
+tough-looking JJ
+Chromium NN
+Jeremy NNP
+presenter NN
+stylist NN
+backslapping VBG
+Bretherick NNP
+Cousin NNP NN
+clairvoyance NN
+Having VBG NNP
+ions NNS
+imaginations NNS
+doubling VBG NN
+receptivity NN
+Northeast NNP JJ NN
+Slavery NN NNP
+Pod NNP
+Jiffy-Couch-a-Bed NNP
+Rosenbaum NNP
+Clothestime NNP
+instant-credit NN
+Creators NNS
+Baubles NNPS
+Andee NNP
+Jeux FW
+Seymour NNP
+leaping VBG JJ|VBG
+loose JJ RB VB RB|RP
+saintly JJ
+nationhood NN
+coat... :
+Sunshine NNP
+pegging VBG
+bide VB
+Jordonelle NNP
+HK$ $
+C-12 NN
+Honey NNP NN
+admirals NNS
+Rolexes NNPS
+consecutive JJ
+similarity NN
+premium-food NN
+larger-capitalization JJ
+infringes VBZ
+pickups NNS
+Filene NNP
+unbearably RB
+telecines NNS
+Hamburgers NNP NNS
+Mardi NNP
+Tolubeyev NNP
+sermon NN
+DDG-51 NNP
+canners NNS
+SunGard NNP
+offsets VBZ NNS
+barbecue NN VB
+L'Turu NNP
+Ferrari NNP
+Lippincott NNP
+addressee NN
+XA2000 NNP
+Morrison NNP
+wafer NN
+Hnilica NNP
+allow VB VBP
+correspondent NN
+gown NN
+remissions NNS
+caro FW
+insensitivity NN
+sanctorum FW
+folkish JJ
+publishing-group JJ
+indoor JJ
+strikingly RB
+dole VB NN VBP
+footbridge NN
+Lawyer NNP
+interrupted VBN JJ VBD
+neighbours NNS
+Eyes NNP NNPS NNS
+impressive JJ
+fruitfully RB
+shootin VBG
+computer-reservation JJ NN
+deadliness NN
+Bouillaire NNP
+AjA NNP
+plunked VBD
+governments NNS
+theaf NN
+impurities NNS
+modesty NN
+interval NN
+truest JJS
+bombast NN
+chevre NN
+Deeper JJR
+Problem NNP
+snapshots NNS
+allege VBP VB
+compulsive JJ
+extols VBZ
+L'orchestre NNP
+Fiering NNP
+coating NN VBG
+mists NNS
+Plaskett NNP
+ESN NN
+Project NNP NN
+Mitchel NNP
+Dass FW
+Beer NN NNP
+illness NN
+Cambodians NNPS
+La. NNP
+subcontractor NN
+excorciate VB
+Barbie NNP
+Geld NNP
+Dappertutto NNP
+derived VBN VBD
+Thoughts NNP NNPS
+insulation NN
+L.R. NNP
+beauty NN
+NOTE NN VB
+key JJ NN VB
+handkerchief NN
+fleeting JJ
+tragicomic JJ NN
+Seko NNP
+Panama-incorporated JJ
+gold-card-carrying JJ
+great-uncles NNS
+Alumni NNPS
+Schuman NNP
+vocal\ JJ
+Souza NNP
+Aluminium NNP
+hardship NN
+devoutly RB
+Pinky NNP
+Anglophobia NN
+Sandberg NNP
+Armond NNP
+Rita NNP
+wrack NN VBP
+Administration NNP NN
+milder JJR
+Obispo NNP
+Oilers NNP NNPS
+Nuell NNP
+acutely RB
+casualties NNS
+anti-business JJ
+highwayman NN
+diffusely RB
+logistics-computer NN
+Jackson NNP
+Point-Pepperell NNP
+Fallen NNP JJ
+Slackened VBN
+weary JJ
+XR4Ti NNP
+Player NNP NN
+debunked VBN
+Additive NN
+Messerschmitt-Boelkow NNP
+antibodies NNS
+naturally RB
+CHANGED VBD VBN
+Internaional NNP
+disperse VB
+Britannic JJ
+ten-day JJ
+semiconductor NN
+Lords NNPS NNP NNS
+cremation NN
+plutonium NN
+irresistibly RB
+Wartzman NNP
+exclusive JJ NN
+sit VB FW VBP
+dissatisfaction NN
+Schmedel NNP
+ORGAN-TRANSPLANT JJ
+hectares NNS
+DC-9 JJ NN NNP
+soldier NN
+unimpeachable JJ
+Straightened VBN
+proportionality NN
+auto-dealer NN
+entry-level JJ
+option-based JJ
+unfunded JJ
+horseplay NN
+Repertory NNP
+exerted VBN VBD
+film-festival NN
+travails NNS
+Bartholow NNP
+amending VBG
+Ambler NNP
+ports NNS
+Marco NNP
+well-entrenched JJ
+Late-night JJ
+powerplants NNS
+Y-cells NNS
+garlic NN
+lounged VBD
+sea-food NN
+Benelli NNP
+indexation NN
+palmtop NN
+Orden NNP
+payers NNS
+Lillehammer NNP
+centerfold NN
+sharpshooters NNS
+fulfilled VBN VBD
+state-owned JJ
+Lindemann NNP
+vocational-advancement JJ
+Filling VBG NNP
+shakily RB
+Ah-ah UH
+savings-type JJ
+stress-producing JJ
+Rube NNP
+Barbanell NNP
+cameraman NN
+material NN JJ
+portent NN
+GHR NNP
+ribonucleic JJ
+Carthago FW
+adult-training JJ
+Patricia NNP
+Responsible JJ
+majestic JJ
+attarcks NNS
+ski NN JJ VB VBP
+wondering VBG NN
+pheasants NNS
+Narragansett NNP
+EXTEND VB
+repatriating VBG
+Sartre NNP
+dupes VBZ
+junkholders NNS
+Parvenu NNP
+Maniffature NNP
+Ray NNP NNPS NN
+latching VBG
+nitrofurantoin NN
+export-oriented JJ
+modulations NNS
+junkyard NN
+Lyaki NNP
+retirees NNS
+PRIVILEGE NN
+outgrow VB
+pre-planning NN
+friendliness NN
+Wants VBZ
+dense JJ
+Deportees NNS
+booked VBN VBD
+untraditional JJ
+Eppelmann NNP
+Nietzsche NNP
+Houdini NNP
+emanating VBG
+cues NNS
+um FW UH PRP
+Ter-Arutunian NNP
+Totally RB
+battle-cry NN
+three-power JJ
+broccoli NNS
+missy NN
+Scali NNP
+Doubt NN VBP
+Partisans NNS
+McCaskill NNP
+fast-grossing JJ
+blackening NN
+Javanese JJ
+Eliminate VB
+Evzone NNP
+Andress NNP
+plague NN VB VBP
+Vivier NNP
+Kare NNP
+Anadarko NNP
+calmly RB
+Dread NNP
+N.J. NNP
+dimension NN VB
+Cuddeford NNP
+Takuma NNP
+conclusions NNS
+Rome-based JJ
+Birgit NNP
+Marlon NNP
+TEACHERS NNP NNS
+Whiteley NNP
+serological JJ
+gift NN
+intercept NN VBP VB
+musically RB
+cross-section NN
+Bevmark NNP
+computer-unit JJ
+'D NNP
+Datas NNP
+scions NNS
+dislocated JJ
+veridical JJ
+Stennett NNP
+anticipatory JJ
+Pantera NNP
+Improvements NNP NNS
+yellows NNS
+danseur FW
+deficitcutting NN
+headboard NN
+Pilsudski NNP
+vitally RB
+xylem NN
+Loren NNP
+Libel NNP
+awaits VBZ
+valves NNS
+blandly RB
+kerchiefed JJ
+have... :
+tangent JJ NN
+Kroczek NNP
+bioinsecticides NNS
+shuffle NN VB VBP
+fabricated VBN VBD JJ
+sub-chiefdom NN
+publicity-shy JJ
+ancestry NN
+weeping VBG NN
+haranguing VBG
+forethought NN
+Londontowne NNP
+mouthpiece NN
+intensive-care JJ NN
+gratis JJ RB
+'Christian JJ
+reinvestigation NN
+Gladden NNP
+amide NN
+d'entretenir FW
+coarseness NN
+whiner NN
+meticulously RB
+D.A. NNP NN
+co-sponsored VBD JJ VBN
+. . RP
+investable JJ
+wide-scale JJ
+ulcerated JJ
+Cambria NNP
+libertarians NNS
+Controller NNP
+NSC NNP
+COCAINE NNP
+bio NN JJ
+Camelot NNP
+RD NNP
+ring-labeled JJ
+avoids VBZ
+costliest JJS
+Rican-American NNP
+--William NNP
+charmingly RB
+bas-relief NN
+ten CD
+Monthly NNP JJ
+Lecky NNP
+voltmeter NN
+spewing VBG
+freight-forwarding JJ
+Beringer NNP
+dampened VBD VBN
+Wycombe NNP
+inoperative JJ
+hutments NNS
+avocado NN
+cold-weather JJ
+litle JJ NN
+Poe NNP
+Nakazato NNP
+brackish JJ
+beneficial JJ
+Infamous NNP
+Thortec NNP
+Lens NNP
+end-of-season JJ
+Leaseway NNP
+Corney NNP
+carp VBP NN
+reinvigorated VBN
+steel-stock NN
+Rottosei NNP
+Wrecking NN
+fine-tuned JJ
+Highway NNP NN
+hobble VB
+Saatchi NNP NNS
+rationing NN
+scarce JJ
+FATHER NN
+Ithaca NNP NN
+orifices NNS
+comfortable JJ NN
+Boris NNP
+heretofore-accepted JJ
+African-Americans NNPS
+suspicious JJ
+Vander NNP
+Thornton NNP NN
+Ballantine\/Del NNP
+withholds VBZ
+rat-a-tat-tatty JJ
+White-collar JJ
+livable JJ
+politely RB
+uninsured JJ
+scintillating JJ
+vigilantism NN
+ape NN
+associate JJ VBP NN VB
+Soviet-finished JJ
+irk VB
+low*/JJ-tech NN
+Guzzi NNP
+squirmy JJ
+terror NN
+Duracell NNP
+Sioux NNP NNPS
+Daignault NNP
+replenishment NN
+Cabinet NNP NN
+Sanctuary NNP
+Otterlo NNP
+screenings NNS
+RODE VBD
+decidedly RB
+Oliveira NNP
+AjB NNP
+stepped-up JJ
+Ravenscroft NNP
+Playes NNP
+Malloy NNP
+Pontiac NNP
+Professor NNP
+centum NN
+princpal NN
+unfinished JJ
+crane NN VB
+amulet NN
+asbestos-containing JJ
+Communistic JJ
+Chopin NNP
+Vida NNP
+heal VB
+lapped VBD VBN
+away RB RB|RP RP
+dueled VBD
+Kakuei NNP
+two-wheel JJ
+reconditioning VBG
+meandered VBD
+Rennie NNP
+Almighty NNP
+substantiated JJ
+counter-trend JJ
+currently RB JJ
+Xomen-E5 NNP
+Romero NNP
+CreditWatch NNP
+idols NNS
+rehabilitation NN
+Willett NNP
+Goldome NNP
+Massachusetts NNP
+salesmanship NN
+Ruffians NNS
+Twinkies NNPS
+early JJ JJ|RB RB
+traditional JJ
+Orel NNP
+medalist NN
+abduction NN
+Courier-Journal NNP
+underrate VB
+typewriter NN
+Whittle NNP NN
+WON VBP
+Inadequate JJ
+Doppler NNP
+gnarled JJ
+Cove NNP
+aviation NN
+Challenger NNP
+long-term-oriented JJ
+woodgraining NN
+freight-bums NNS
+convinces VBZ
+remitting VBG
+inspection NN
+leering VBG JJ
+light-headed JJ
+logic NN
+Trio NNP
+involuntarily RB
+resorcinol NN JJ
+Lyneses NNP
+tri-motor NN
+room-rate JJ
+overbilling VBG
+minicrash NN
+Transcat NNP
+queuing VBG
+epitomizes VBZ
+tall-oil JJ
+Colnaghi NNP
+predominating VBG
+unnecessarily RB
+minefield NN
+Courbet NNP
+Constantinos NNP
+SHIELD NNP
+Toys NNPS VBZ NNP NNS
+meadows NNS
+ALPA NNP
+thread NN
+exorcise VB
+acquiesce VB
+fraction NN
+stirke NN
+Is VBZ NNP
+Including VBG NNP
+two-drug JJ
+Chadbourne NNP
+merged VBN JJ VBD
+switch-hitter NN
+hamlet NN
+trooper NN
+pro-Gorbachev JJ
+audible JJ
+revelations NNS
+vaguely RB
+laboratories NNS
+sportiest JJS
+Cambrex NNP
+accusers NNS
+provisioning VBG NN
+mystic JJ NN
+O'Donovan NNP
+Meyer NNP
+Histadrut NNP
+photocopiers NNS
+demonstration NN
+Kong-based JJ NNP
+Remic-related JJ
+Athenians NNPS
+brat NN
+six-foot JJ
+Stone NNP
+yellow-bellied JJ
+Houston-Galveston NNP
+Diodati NNP
+uncongenial JJ
+Ludie NNP
+coin-operated JJ
+market-share JJ NN
+Dhabi NNP
+drug-free JJ
+counter-drill VB
+recuperation NN
+Barco NNP
+procedural JJ
+gentle JJ VB
+FREIGHTWAYS NNP NNPS
+one-thousand-zloty JJ
+data\ JJ
+Dixie NNP
+flagellated VBN
+GHS NNP
+presentments NNS
+kid NN VB
+rookies NNS
+anti-union JJ
+quakes NNS
+Massey NNP
+concert NN
+reestablish VB
+Leon NNP
+CASE NNP NN
+early-retirement NN JJ
+winless JJ
+Sauter\/Piller\/Percelay NNP
+Braves NNP NNPS
+V-1 NNP
+fossil JJ NN
+cask NN
+grew VBD VBN
+Rigid JJ
+Shahon NNP
+biggest JJS RBS
+impeccably RB
+Bathyran NNP
+duplications NNS
+'pache NN
+half-city NN
+Biologico NNP
+court-length JJ
+pallor NN
+crux NN
+skylight NN
+transcending VBG
+Arab-Israeli JJ
+junior-high JJ
+poll NN JJ VB
+Nissei NNP
+darin JJ
+Lucky NNP JJ
+Puttnam NNP
+recond VBD
+PGM NNP
+grand-jury NN JJ
+multipartisan JJ
+rowed VBD
+gambling NN VBG
+pigpens NNS
+make-up NN
+inattentive JJ
+Maytag NNP
+early-morning JJ NN
+Sonja NNP
+Winooski NNP
+fragmentary JJ RB
+slumber NN
+Leech NNP
+RETIREMENT NNP
+Neblett NNP
+semifinished VBN
+Kepler NNP
+legalized VBN
+troughs NNS
+alloy NN
+Motion-picture JJ
+alternative-operator NN
+fifth-highest JJ
+Yokohama NNP
+or'you're NN
+mores NNS
+Heartburn NNP
+Snakes NNS
+sky-reaching JJ
+Kelley NNP
+Jai NNP
+maple NN JJ
+ex-officio JJ NN
+Travels NNP NNS
+Omnibus NN
+Challenges NNPS NNS VBZ
+Postal NNP JJ
+Comission NNP
+suggest VBP VB
+Santayana NNP
+nuances NNS
+Entertaining NNP
+merely RB
+sports-related JJ
+Add VB
+Markets NNPS NNP NNS
+Modesto NNP
+VH-1 NNP
+underpinnings NNS
+aback RB
+Thrice RB
+Rul. NNP
+un FW NN
+more-stringent JJ JJR
+disagree VBP VB
+modification NN
+vitamin NN
+air-traffic-control NN
+Vinson NNP
+quality NN JJ JJ|NN
+tear VB VBP NN
+Cradle NNP
+incubation NN
+reasonable JJ
+least JJS RBS JJ
+plenary JJ
+disadvantageous JJ
+MVP NNP
+pieces NNS
+D.C NNP
+permeating VBG
+CDBG NNP
+Melamed NNP
+then-dress JJ
+materials-related JJ
+keyboards NNS
+Rudoff NNP
+BroadBeach NNP
+Renata NNP
+phobias NNS
+non-amortizing JJ
+chide VB VBP
+waists NNS
+Red NNP JJ|NP JJ NN
+diplomacy NN
+Combses NNPS
+Lent NNP VBN
+gesticulating VBG
+Roast VB
+halides NNS
+Darvon NNP
+level-headed JJ
+scurried VBD
+gorging VBG
+gauged VBN VBD
+socialites NNS
+families NNS
+weave VB NN
+Volker NNP
+book-entry JJ
+Costello NNP
+Orr NNP
+Romaniuk NNP
+bulged VBD
+Montle NNP
+co-opting NN
+eschewed VBN
+Stringer NNP
+nimbly RB
+antics NNS
+Tamarijn NNP
+natives NNS
+company-paid JJ
+Conoco NNP
+orienting VBG
+Pepinsky NNP
+Magdalene NNP
+borer NN
+adminstrative JJ
+startled VBN VBD JJ
+LOGIC NNP
+hinterlands NNS
+playground NN
+Sauvignon NNP
+Miriam NNP
+competition NN
+Laventhol NNP
+Alsatian NNP
+anti-social JJ
+mouthpieces NNS
+constituents NNS
+librarian NN
+Burton NNP
+Analogously RB
+commissar NN
+streamer NN
+rediscover VB
+over-all JJ
+Rim-Fire JJ
+NRDC NNP
+Parliamentary JJ
+off-year JJ
+insights NNS
+Balcerowicz NNP
+fourfold RB JJ
+traumas NNS
+longshoremen NNS
+/ NN JJ
+Pensacola NNP
+Sherry NNP NN
+breezier JJR
+Beet NNP
+overfill VB
+humanize VB
+inter FW IN
+disclosure NN
+HDM NNP
+flue NN
+sex-education NN
+Pinscher NN
+de-emphasized VBN
+Parent NNP NN
+Noam NNP
+compel VB
+Aristide NNP
+INDUSTRIES NNPS NNP
+Diaghilev NNP
+tablets NNS
+withholding-tax JJ
+suppressants NNS
+Triple-A NNP JJ
+detergency NN
+Katsanos NNP
+eversteadier JJ
+code-named VBN NNP JJ
+Teito NNP
+Matagorda NNP
+Speeches NNS
+Sextuor NNP
+Fluorescence NN
+Contracts NNS NNPS
+print-shop NN
+highfalutin JJ
+gabbling VBG
+less-obvious JJ
+Basses NNPS
+REAGAN NNP
+Yankees-Mets JJ
+Matlowsky NNP
+Orem NNP
+equipmwent-leasing NN
+spout NN VBP
+Halstead NNP
+pleasantness NN
+chuckled VBD
+empower VBP
+co-inventors NNS
+mega-resorts NNS
+Gilbert NNP
+Hires NNP
+booster NN
+collegial JJ
+shark NN
+Pitney-Bowes NNP
+cruise-ship NN JJ
+mid-season NN
+diligence NN
+Shuwa NNP
+Shingles NNS
+carousing NN
+aircraft-engine JJ NN
+Meyerbeer NNP
+monomer NN
+purloined VBN
+softened VBD VBN JJ
+Reason NNP NN
+cynics NNS
+PHH NNP
+FINANCES NNS
+Svensk NNP
+McBride NNP
+ESP NNP
+parastatals NNS
+overwhelmingly RB
+Vyquest NNP
+Chicago-Warsaw NNP
+contract NN VB VBP
+five-cylinder JJ
+Moluccas NNP
+carbon-14 NN
+resembles VBZ
+custom-chip JJ
+movements NNS
+understanding NN VBG JJ
+spurts NNS VBZ
+Bellman NNP
+sleeping VBG NN VBG|NN
+Heretic NN
+five-foot-wide JJ
+Gauntlett NNP
+chick NN
+Tandy NNP VB
+Health NNP NN
+rediscovered VBN
+Pickford NNP
+Materialism NN
+Pasley NNP
+Salish NNP
+Composers NNPS
+noninterest JJ
+dishes NNS VBZ
+oil-field NN JJ
+Mail NNP NN
+reckoning NN VBG
+libertarian JJ
+slowing VBG NN
+Flumenbaum NNP
+finalists NNS
+retraced VBD
+both DT PDT CC CD
+blocky JJ
+Hooch NNP
+experimentally RB
+green-lipped JJ
+rooming VBG
+Chastened VBN
+Menlo NNP
+Copperman NNP
+playback NN
+tuna NN
+Arkhangelsk NNP
+Concept NNP
+Typing NN
+Revolutionary NNP
+peaceable JJ
+annual-income NN
+Ramo NNP
+all-automatic JJ
+Kokoschka NNP
+Overnight RB
+Strategic NNP JJ
+Capwell NNP
+honed VBN JJ
+nineteen CD
+important JJ
+bibs NNS
+adieu FW
+tinplated VBN
+container NN
+toll-tele-phone JJ
+little JJ RB
+permanant JJ
+Costantine NNP
+one-megabit JJ
+biggest-ever JJ
+abridging VBG
+intercrisis NN
+freescrip NN
+Prop. NNP
+scamper VBP
+forties NNS CD
+M.I.T.-trained JJ
+knob NN
+feeling NN VBG
+Yellow-pages NN
+University NNP NN
+HCS NNP
+super-majority JJ NN
+Pullings NNP
+revelatory JJ
+communities NNS
+shucks UH NNS
+Ballot NN
+LIMB NN
+Tension NN
+Thalbergs NNPS
+Kathleen NNP
+HealthCare NNP
+Beyer NNP
+Lorlyn NNP
+extruder NN
+exiled VBN VBD JJ
+RXDC NNP
+hangovers NNS
+It PRP NNP
+small-cap JJ
+Disgruntled JJ
+robbery NN
+military JJ NN
+Minster NNP
+milllion NN
+Rossilini NNP
+bas-reliefs NNS
+double-valued JJ
+flaunt-your-wealth JJ
+self-image NN
+awed VBN JJ
+spiritless JJ
+suppressant NN
+exonerated VBN VBD
+Book-of-the-Month NNP
+Holewinski NNP
+Platonica FW
+Time-Olivette NNP
+videotapes NNS
+lunatic JJ
+labyrinth NN
+kilogram NN
+Democratic-style JJ
+completely-restored JJ
+unlacing VBG
+skewed VBN VBD JJ
+unflappable JJ
+Reichhold NNP
+Weede NNP
+Sell VB NNP
+furs NNS
+plots NNS VBZ
+leopards NNS
+legislates VBZ
+distractions NNS
+spousal JJ
+Mityukh NNP
+Flanders NNP
+Natural NNP JJ NN
+Truman NNP NN
+microcassette NN
+teas NNS
+Herry NNP
+Haruki NNP
+ALLY NN
+tt NN
+Debussy NNP
+Bertoia NNP
+separates VBZ
+Sperling NNP
+pelvic JJ NN
+Transgenics NNP
+T-72 NN
+Ashikaga NNP
+NASAA NNP
+Jo NNP
+jist RB
+sluggishness NN
+Dravo NNP
+caption NN
+waterway NN
+Grindlay NNP
+Tulane NNP
+bores NNS VBZ
+most-valuable-player NN
+Heresy NNP
+Ade NNP
+out-moded JJ
+captivating JJ VBG
+hydrides NNS
+Pitman NNP
+ENTERTAINMENT NNP
+interpretor NN
+passes VBZ NNS
+throttling VBG
+Allemands NNP
+PIC NNP
+spreads VBZ NNS
+animate JJ
+seething VBG JJ
+talky JJ
+neural JJ
+frolics NNS
+pituitary-gland NN
+F-20s NNPS
+nondiscretionary JJ
+PATCO NNP
+index-arbitrage-related JJ
+broadside JJ NN RB
+GRAINS NNS NNPS
+desertion NN
+Ivey NNP
+trove NN
+rockstrewn NN
+dry-eyed JJ
+export-boosting JJ
+Dave NNP JJ
+mainly RB
+stirrup NN
+logical JJ
+midwinter NN
+G.N. NNP
+Percy NNP
+sovereigns NNS
+antennae NNS
+mincing VBG
+unsold JJ
+gradient NN JJ
+Landers NNP
+tossers NNS
+Southgate NNP
+Veraguas NNP
+disparaging VBG
+Estimate NNP VB
+severely RB
+midtown JJ NN
+Yetnikoff NNP
+steamship NN
+promenades NNS
+Wilcke NNP
+a'muddle VB
+fourth-generation JJ
+Bunks NNS
+sniffs VBZ
+iridescent JJ
+faked VBN VBD
+dad NN
+Clinic NNP
+Capitol NNP NN
+quandary NN
+Medusa NN
+tech NN
+loopy JJ
+Yair NNP
+Fraternal NNP
+Zurn NNP
+dead-weight JJ
+leave VB NN VBP
+gradations NNS
+Algonquin NNP
+Percussive NNP
+Fun NNP
+Ecological NNP
+cabaret-like JJ
+unvaryingly RB
+German-made JJ
+attachments NNS
+Foamy NNP
+Saturated JJ
+creamer NN
+microprocessor-based JJ
+militantly RB
+representives NNS
+Mitsu NNP
+Songs NNPS NNS
+bedpost NN
+growling VBG
+Committeemen NNS
+encumbered VBN
+anythin NN
+poisoned VBN VBD
+Feeder NN
+custom-fit VB
+laundered VBN VBD
+textile-trade JJ
+Seaga NNP
+far-fetched JJ
+Thor NNP
+Virgilio NNP
+Madonna NNP
+no-hit JJ
+exaggerating VBG
+Bolstered VBN
+calendar NN
+Kasavubu NNP
+Prapas NNP
+Scana NNP
+physician NN
+politic JJ NN
+couching VBG
+justification NN
+Hondurans NNS
+Warm JJ
+scriptural JJ
+impoverished JJ VBN
+deep-seated JJ
+Apropos RB
+aptly RB
+Pesticide NNP
+Arvind NNP
+current-coupon JJ
+multi NNS
+energy-industry NN
+patrols NNS
+Informed VBN
+Buxtehude NNP
+constitutional JJ
+Roeser NNP
+Conradie NNP
+Le NNP FW
+exemplary JJ
+Visitors NNS NNP NNPS
+Salaam FW
+encounters NNS VBZ
+antsy JJ RB
+cowboy NN
+hauteur NN
+lactate NN
+Serial JJ NNP
+laughed VBD VBN
+Serve VB
+Darlin NNP
+boosts NNS VBZ
+enzymes NNS
+Miller-Studds NNP
+finale NN
+suffocation NN
+barbers NNS
+humiliation NN
+savors NNS
+city-bred JJ
+softies NNS
+Hawes NNP
+Wolverton NNP
+Bullish JJ NNP
+Buyer NNP
+Outbreaks NNS
+HFC NNP
+Bridgeton NNP
+Hagerty NNP
+Blois NNP
+pseudynom NN
+overexploited JJ
+cheapens VBZ
+Telford-made JJ
+hanged VBN VBD
+distributable JJ
+Faith NNP NN
+Melrose NNP
+humanistic JJ
+ZBB NNP
+suffers VBZ
+Hippie NNP
+C-20 NNP
+Ginza NN NNP
+DeMoss NNP
+we PRP VBP
+Parti NNP
+mayor NN
+capital-to-assets JJ NNS
+charge-excess NN
+mincemeat NN
+Yuppie NNP NN
+Enimont NNP
+Ballou NNP
+ambassador NN
+well-connected JJ
+tireless JJ
+mosaics NNS
+Hatton NNP
+eight-by-ten JJ
+Gossips NNS
+SA NNP
+gentlemen NNS
+gassings NNS
+dealer NN
+replicating VBG
+kooky JJ
+grey JJ NN
+discount... :
+tiering NN
+Shicoff NNP
+Hurry VB
+strophe NN
+Riserva NNP
+extendible JJ
+Rifles NNS
+Automation NNP
+Smoke NNP
+Maggot NNP
+volens FW
+Naturam FW
+refuse-littered JJ
+overgrazing NN
+stein NN
+detachable JJ
+housed VBN VBD
+Dimly RB
+Minorco NNP
+public-land JJ
+harvested VBN
+Summit NNP NN
+realization NN
+hypotheses NNS
+philological JJ
+Bulgarian JJ NNP
+pilgrims NNS
+ramrod-stiff JJ
+super-strict JJ
+determinism NN
+MPs NNS
+Assonance NN
+Schoenfeld NNP
+packaging NN VBG
+Radiopasteurization NN
+nuclear-industry NN
+Chrysler-Plymouth NNP
+wonderment NN
+convulsion NN
+Carpenter NNP
+mastoideus NN
+steadying JJ
+cigar-chomping JJ
+Turben NNP
+Saxton NNP
+lecher NN
+mantle NN
+touching VBG JJ NN
+tattooed VBN
+equaling VBG
+Louis-Dreyfus NNP
+reshapes VBZ
+make-believe NN
+brisk JJ
+Unity NNP
+Earth NNP NN
+tricked VBN
+Brand NN NNP
+leniency NN
+sport-utility JJ
+Interlake NNP
+ratiocinating JJ
+Dropouts NNS
+Clayton NNP
+Englewood NNP
+budget NN VB
+Overriding NN
+multilocation NN
+unsealing NN
+Arpino NNP
+Providence NNP NN
+cuckoo-bumblebee NN
+unsuitability NN
+elites NNS
+Earth-quake NN
+detoxify VB
+Advertising\/San NNP
+cowling NN
+transfused VBN
+Peeping NNP
+LEAVE NN
+he-goes-or-I-go JJ
+Rolling NNP
+kif NN
+crucially RB
+hay-fever NN
+Lifeguard NN
+Merhige NNP
+overtaking VBG
+dithering VBG
+Scollard NNP
+wedlock NN
+open-air JJ
+viewed VBN VBD
+Gunner NNP
+dictation NN
+hagglings NNS
+Clearance NN
+Sietsma NNP
+likes VBZ NNS NN
+slow-selling JJ
+taxpayer-related JJ
+Wellesley NNP
+worker-owned JJ
+rpm NN
+Kysor NNP
+HEI NNP
+Steady JJ
+native-born JJ
+Wash NNP
+throes NNS
+items NNS VBZ
+signatories NNS
+Asia NNP NN
+Pressure NN NNP
+Golly UH
+consolidated JJ VBD VBN
+laid VBN VBD
+Folonari NNP
+small-car NN
+millilon NN
+duodenal JJ
+Soviet-Western NNP
+far-right JJ
+budget$ $
+hauls NNS VBZ
+cars NNS
+Rapatee NNP
+tilling VBG
+iteration NN
+Ebensburg NNP NN
+polymerizations NNS
+U.S.-U.S.S.R. NNP
+Cretaceous NNP JJ
+post-midnight JJ
+non-elderly JJ
+reground JJ
+breakfasted VBD
+adjudicate VB
+space-defense JJ
+Priscilla NNP
+marginal-rate NN
+Crocodile NNP
+Skeptics NNS NNP
+hyperplasia NN
+Absent-minded JJ
+unpretentious JJ
+Hurst NNP
+Muzak NNP
+dogmatic JJ
+neatest JJS
+Taiwan NNP
+Corash NNP
+shepherds NNS
+Weimar NNP
+Takashimaya NNP
+Creole NNP
+tear-soaked JJ
+desire NN VBP VB
+Wazir NNP
+Idje NNP
+Governed JJ
+Order NNP NN
+hell-fire NN
+Tavoy NNP
+interloper NN
+hotline NN
+Landesco NNP
+Awakening NNP
+MLPI NNP
+height-to-diameter NN
+Biologics NNP
+respectability NN
+story-book NN
+picturesque JJ NN
+Eggs NNP NNPS NNS
+revitalize VB
+drawbridge NN
+microorganisms NNS
+rust NN VB
+squashing VBG
+manila JJ
+dawned VBD
+Appelbaum NNP
+underperforming VBG VBG|JJ JJ
+buttoned VBN
+consumer-driven JJ
+positioned VBN VBD JJ
+ONE CD NNP
+CREATOR'S NN
+Emmaus NNP
+yellowish JJ
+thrills NNS VBZ
+Chelmsford NNP
+eclairs NNS
+enrollees NNS
+adjourning NN VBG
+horse-steak NN
+Larkspur NNP
+Osric NNP
+exaltation NN
+PQ NN
+Knecht NNP
+Rank NNP NN
+two-dimensional JJ
+reduction NN
+Reginald NNP
+Hartweger NNP
+Rite NNP
+Kwang NNP
+Pincian NNP
+bids... :
+half-cocked JJ
+Ente NNP
+flounce VBP
+Things NNS NNP
+continuingly RB
+electronic JJ
+chance NN JJ VB VBP
+Verbal JJ NNP
+hypothetical JJ
+Shanties NNPS
+domestic-airline NN
+repatriation NN
+Westmore NNP
+deception NN
+Caters NNP
+Atheist NNP
+littering NN
+Crucible NNP
+Nickelodeon NNP
+somnolent JJ
+duels NNS
+fiscal-first JJ
+Clarita NNP
+non-management JJ NN
+one-pound-or-so JJ
+American-China NNP
+don't-con-me JJ
+boom-or-bust JJ
+tax-evasion NN
+delicious JJ
+sought VBD VBN
+Bursts VBZ
+walruses NNS
+governor NN
+Wister NNP
+forty-five CD JJ
+William NNP
+natured JJ
+yards NNS
+disposes VBZ
+up IN JJ IN|RB RB RP VB NNP , RBR
+citron JJ
+remotest JJS
+one-shot JJ
+syrups NNS
+Zia NNP
+Hastings NNP
+dissension NN
+duffer NN
+wisps NNS
+indulgence NN
+foaming NN VBG
+Claiborne NNP
+Southon NNP
+saturate VB
+Buttrick NNP
+Wechsler NNP
+masonry NN
+Weekly NNP JJ
+lasting VBG JJ
+Bavarian JJ
+Bauser NNP
+Aug. NNP
+sinners NNS
+predomination NN
+brags VBZ NNS
+emergency-claims NNS
+goaded VBD VBN
+U.S.-Japan JJ NNP
+Bryson NNP
+complex-valued JJ
+freer JJR
+borrows VBZ
+aloofness NN
+Newsprint NN
+taller JJR RBR
+Write VB
+subcontracts NNS
+Main NNP JJ
+woven-root JJ
+biosynthesized VBN
+Buffton NNP
+Philippe NNP
+Slogan NNP
+Peabody NNP
+Antiques NNPS
+SUPREME NNP
+Oedipal JJ
+noses NNS
+court-ordered JJ
+Azalea NNP
+VA-backed JJ
+truckers NNS
+Jose NNP
+refinancing NN VBG
+Front-runners NNS
+capture VB VBP NN
+FRANCISCO'S NNP
+stratospheric JJ
+orate VB
+excavation NN
+job NN
+translating VBG NN
+immersed VBN VBD
+Cavalry NNP NN
+fiscal-third JJ
+Smiling VBG
+low-income JJ NN
+intense JJ
+dinner NN
+power-company NN
+synthesizer NN
+enormously RB
+Serve-Air NNP
+Risk NN NNP
+mildew NN
+defend VB VBP
+MORGAN NNP
+preachiness NN
+doggerel NN
+overinclusion NN
+detriments NNS
+Knapp NNP
+Keynesians NNPS
+Wansley NNP
+excuse NN VBP VB
+takeoffs NNS
+absurd JJ
+cannery NN
+typewriters NNS
+Ferraro NNP
+Lanier NNP
+sudsing NN
+reagents NNS
+polo NN
+aligned VBN JJ
+high-ceilinged JJ
+Shaking VBG
+heavy-armed JJ
+eerily RB
+Beckstrom NNP
+Cablevision NNP
+short-selling NN JJ
+subpoena NN FW VB
+sensual JJ
+young-skewing JJ
+placebo NN
+Wunderman NNP
+Stoneman NNP
+NRL NNP
+intensifier NN
+dissipate VB
+Got VBD VBN NNP VB
+substantiates VBZ
+Virus NN
+ignores VBZ
+Duffield NNP
+Catholicism NNP
+dismissal NN
+organics NNS
+wakefulness NN
+fathered VBD
+Arne NNP
+rigidities NNS
+U.K NNP
+martial JJ
+coexist VB VBP
+Religion NN NNP
+Stabat NNP
+better-safe-than JJ
+repatriations NNS
+Sondheim NNP
+million-common NN
+Dismay NN
+not-so-subtly RB
+Underneath IN NN
+pavane NN
+myelofibrosis NN
+tryst NN
+F-16s NNPS
+Phosphate NNP
+standbys NNS
+Magnificent JJ
+gettin VBG
+Ma NNP FW
+impetigo NN
+skyscraper NN
+Vote NN VB
+affirmed VBD VBN
+Daremblum NNP
+sturgeon NN
+six CD LS
+opposed VBN JJ VBD
+potentials NNS
+Prizes NNPS NNP
+replaced VBN VBD
+Minn NNP
+Kegham NNP
+contaminating VBG
+high-paying JJ
+Citation NNP
+philology NN
+C-17 NNP NN
+CASTLE NNP
+probe NN VBP VB
+Oso NNP
+Balkanized JJ
+publicity-conscious JJ
+just-rejuvenated JJ
+C-130 NN
+Flores NNP
+somewhere RB NN
+defined VBN JJ VBD
+youngsters NNS
+Jawaharlal NNP
+geologic JJ
+Sample NN NNP
+Mexico-United NNP
+Wuer NNP
+great-nieces NNS
+refrigeration NN
+recites VBZ
+rivaled VBD
+schooled VBN
+Hanao NNP
+indignity NN
+Stepanova NNP
+synthesizes VBZ
+pond NN
+endorsements NNS
+Magnatek NNP
+inspections NNS
+Oxford NNP
+Olathe NNP
+Jeans NNPS
+conditioning NN VBG
+complain VBP VB
+crying VBG NN
+cart NN VBP VB
+annuities NNS
+Valdez NNP
+coning NN
+Taxes NNS
+then-president JJ
+Gods NNP NNS
+Kroening NNP
+averts VBZ
+top-management JJ NN
+bilge NN
+four-fold JJ RB
+Guild NNP
+theory-teaching VBG
+Cott NNP
+Generic NNP
+Superstation NNP
+Planes NNS
+hereunto RB
+unimpeachably RB
+Demented JJ
+twelve-year JJ
+censures NNS
+Bible NNP JJ NN
+transacting VBG
+sparkles VBZ
+sharecroppers NNS
+matching-fund JJ
+Proefrock NNP
+Brawley NNP
+penetrated VBN VBD
+MorningStar NNP
+Waterways NNS
+upbeat JJ NN
+sturdy JJ
+money-maker NN
+Zielinski NNP
+choring NN|VBG
+Earthlings NNS
+banister NN
+Smalling NNP
+quo FW WDT NN
+Tingley NNP
+quieting VBG
+Button NNP
+innocuous JJ
+pricier JJR
+pro-consumer JJ NN
+Ronald NNP
+Briton NNP NN
+Ednee NNP
+Alberta NNP
+sauerkraut NN
+dancing NN VBG
+abashed JJ
+demographically RB
+subsidize VB VBP
+revisit VB NN
+Greaney NNP
+grid NN
+individualists NNS
+miscalculations NNS
+Carried VBN
+discreet JJ
+deep-rooted JJ
+heap NN
+Cortlandt NNP
+mainstream NN JJ RB
+absorptive JJ
+arsonist NN
+transpirating VBG
+ceramic JJ
+injection-molded JJ
+herded VBN VBD
+cheerleaders NNS
+Vientiane NNP
+keener JJR
+Chiat\/Day NNP NN
+nannies NNS
+Patent NNP NN
+Business NNP NN
+Producer NN NNP
+exhibits NNS VBZ
+law NN
+Twenty-nine CD
+Liaison NNP
+Kerrville NNP
+Acceptable JJ
+pancreatitis NN
+apple-tree NN
+alluvial JJ
+recalling VBG NN
+well-born JJ
+pitiable JJ
+WCRS\/Boston NNP
+increases NNS VBZ
+Kweisi NNP
+litigator NN
+Alternately RB
+uncovered VBN VBD JJ
+capos NNS
+lahk IN
+anonymity NN
+line NN VBP RB VB
+Reg NNP
+corporate-earnings NNS
+brandishes VBZ
+sniveling VBG
+ellipsoid NN
+unattached JJ VBN
+hot-tempered JJ
+Riggs NNP
+incentive-maximizing JJ
+Wurtzel NNP
+phenomenological JJ
+Cherokees NNPS
+metabolites NNS
+Tenders NNS
+nonpoisonous JJ
+recumbent JJ
+Tris NNP NNS
+surging VBG JJ
+frees VBZ
+SKr29 NNS
+militated VBN
+Surety NNP
+in-jokes NNS
+bibliographical JJ
+Bronislaw NNP
+bugging NN
+captaincy NN
+Dycom NNP
+tv NN
+pistoleers NNS
+Syria NNP
+chemical-and-resource JJ
+insomniacs NNS
+Lumiere NNP
+disdaining VBG
+fibrous JJ
+wiping VBG
+recreation NN
+Crisanti NNP
+chameleons NNS
+nicer JJR
+Abbas NNP
+COUNSEL NN
+pronouncing JJ VBG
+Daylight NNP
+Schaffner NNP
+ginger NN
+ant NN
+Worldwide NNP
+scaled-down JJ
+rotated VBN VBD
+honey-in-the-sun JJ
+detracts VBZ
+operations NNS
+ground-cargo NN
+Salespeople NNS
+rerun-sales NNS
+PR NNP NN
+atheists NNS
+Herberet NNP
+SOUVENIRS NNS
+Stiles NNP
+seductive JJ
+lavished VBD VBN
+Brakes NNS
+Holders NNS NNP
+Brassbound NNP
+mitre NN
+Richardson-Smith NNP
+Orissa NNP
+Statistical NNP JJ
+Pauley NNP
+verses NNS
+Copernicus NNP
+MBOs NNPS
+Bumpers NNP
+,. SYM
+fraudulently RB
+mailman NN
+large-typeface NN
+Groom NNP
+Fang NNP
+Baltimore-based JJ
+Wizard NNP NN
+rot NN VB
+Boismassif NNP
+amanuensis NN
+Canfor NNP
+profoundest JJS
+exponentially RB
+Robinsonville NNP
+country-and-Western JJ
+Comparative JJ
+reigniting VBG
+tax-revision JJ
+dentist NN
+Communism NNP NN
+Britannica NNP
+thirsty JJ
+credit-discrimination NN
+Terminals NNS
+incidentally RB
+Harassment NN
+misty JJ
+actuarially RB
+Tipton NNP
+protectionism NN
+brewing-assets NNS
+most-recommended-issues JJ
+dome NN
+Wilmot NNP
+all-consuming JJ
+BMWs NNS NNPS
+knoe VB
+Deluged VBN
+maget NN
+foreword NN
+magnetic-tape JJ NN
+Kravitz NNP
+Yoshiro NNP
+W. NNP NN
+Cherkasov NNP
+a-Totals NNS LS|NNS
+ferment NN
+archeological JJ
+Loftier JJR
+Thermoforming VBG
+customs-clearance NN
+Serum NN
+interstices NNS
+debt-burdened JJ
+messages NNS
+jailed VBN VBD JJ
+much-watched JJ
+Frothingham NNP
+Bouchard NNP
+sinuous JJ
+chimiques FW
+fragmented JJ VBN
+huddling VBG
+appall VBP
+restate VB
+intensely RB
+earns VBZ
+Chappaqua NNP
+anchorite NN
+Britain NNP
+Internationalist NNP
+olestra NN
+landscapes NNS
+Advancers NNS
+Drug-industry JJ
+diabetics NNS
+destroying VBG
+ramming VBG
+eighty-fifth JJ
+self-mastery NN
+Ridley NNP
+tracings NNS
+whoop NN
+assessories NNS
+temptations NNS
+folds NNS VBZ
+non-user NN
+NRM NNP
+Debonnie NNP
+housebreaking NN
+ingested VBD VBN
+bypass VB NN
+Jeopardy NNP NN
+cost-efficient JJ
+acquisiton NN
+uprisings NNS
+ambiguities NNS
+fruitful JJ
+Langford NNP
+Heads NNS NNPS
+disrepute NN
+tackiest JJS
+Hamey NNP
+demotion NN
+Melvin NNP
+Schimmel NNP
+centrally RB
+broken-down JJ
+Falwell-Robertson NNP
+tightest JJS RBS
+Planet NNP NN
+Ploys NNS
+gentile NN JJ
+emboldened VBN VBD
+sick-building JJ
+lieutenant NN
+Spectra NNS NNP
+mammoth JJ
+FELLOWSHIP NN
+rethought JJ
+unit-price NN
+tabbed VBD
+Cockerel NNP
+reinsure VB
+Hotels NNPS NNP NNS
+clearer JJR RBR
+Chester NNP
+signpost NN
+brokerage-house NN
+Lapides NNP
+Oneok NNP
+professes VBZ
+timbered JJ
+B.J. NNP
+Motorcycle NNP
+natural-foods NNS
+shrillness NN
+ballast NN
+contemporaneous JJ
+age-discrimination JJ NN
+fecund JJ
+neutralism NN
+pauses VBZ NNS
+Offensive NNP NN
+poker NN
+Rambo NNP
+glowering VBG
+wanta VB
+tugboat NN
+Centerre NNP
+creasingly RB
+one-yen JJ
+Vitzhum NNP
+Chewing VBG
+high-salaried JJ
+vegetarian JJ
+Shandong NNP
+recapitalized VBN
+soulless JJ
+chieftain NN
+Intertan NNP
+affiliates NNS VBZ
+hubbub NN
+SC NNP
+Limitation NNP
+Send VB NNP
+Plebian JJ
+estuaries NNS
+Habitat NNP
+DM850-a-month JJ
+much-beloved JJ
+injured VBN VBD JJ
+went VBD VBN
+straight-armed VBD
+Jews NNPS NNP NNS
+foundation-stone NN
+======================================ll NN
+leatherbound JJ NN
+abandoning VBG
+Directed VBN NNP
+mobility NN
+Loyalty NN NNP
+Blackjack NNP
+jumping-off JJ
+fucken JJ
+Cellars NNP
+pest-control JJ
+anomalies NNS
+trading-account JJ
+double-deck JJ VB
+Boies NNP
+sawed-off JJ
+issuer NN
+alreadeh RB
+Beaux-Arts NNP
+Koran NNP
+exterminating VBG
+Spirito NNP FW
+Communisn NN
+surmises NNS
+Unsecured JJ
+forces NNS VBZ
+'Channel NN
+Kelly NNP
+Liber NNP
+collimated VBN
+airways NNS
+Spector NNP
+Rounding VBG
+Daybreak NNP
+Assemble VB
+deadlocked VBN JJ
+cramp NN
+Bathing NN VBG
+Thou PRP
+potato-supplier NN
+barefoot RB JJ
+Andel NNP
+deeming VBG
+walkways NNS
+Stolzenbach NNP
+Sacrifice NN NNP
+resolutely RB
+schism NN
+Drinking VBG
+Ethane NN
+Vikes NNPS
+tarnished VBN JJ VBD
+blow-up NN
+Firm NN JJ NNP
+Motorized NNP
+Catherall NNP
+Shawl NN
+meet VB VBP NN
+Jam NNP
+Walters NNP
+investment-linked JJ
+coroner NN
+Sutz NNP
+Stems NNS
+concluded VBD VBN
+raptures NNS
+Vilgrain NNP
+ogling VBG
+Zey PRP
+Armonk NNP
+Tagg NNP
+Sekel NNP
+Stepson NNP
+Locker NNP
+scrivener NN
+rhinoceros NN
+ratepayers NNS
+Kerr-Mills NNP
+spiked JJ VBN
+lordship NN
+passenger-tire JJ
+Magma NNP
+chrysotile NN
+whammy NN
+providing VBG IN
+Reichmann NNP
+Spreading NNP
+good-by UH RB
+four-inch JJ
+harshest JJS
+lax JJ
+kernels NNS
+destructive JJ
+faint JJ NN VB
+tangere JJ
+carrying VBG JJ NN
+director NN
+Adolphus NNP
+Statehouse NN
+classed VBN
+Herring NNP
+computer-maker NN
+formidable JJ FW
+Feb. NNP NN
+self-flagellation NN
+landlords NNS
+slopping VBG
+enemy NN
+vasa NN
+sleepily RB
+myth-making VBG NN
+Fujimoto NNP
+fuming VBG
+loudly RB
+pitching VBG NN
+accessed VBN
+keno JJ
+phrases NNS
+Witnesses NNS NNPS
+Grunfeld NNP
+frequent JJ VBP VB
+Broadcasting NNP VBG NN
+cement-truck JJ
+creditors NNS
+mobile-telecommunications NNS
+Corot NNP
+utmost JJ NN
+harmony NN
+breasts NNS
+bit NN VBD VBN JJ RB VB
+connected VBN JJ VBD
+X-tend NN
+human-robot NN
+progressive JJ NN
+bowing VBG
+Siegfried NNP
+grovels VBZ
+OBERMAIER NNP
+Catatonia NNP
+carrier NN
+tune NN VB VBP
+Boal NNP
+Publishers NNPS NNP NNS
+New-home JJ
+Ballantine NNP
+Concern NN
+betray VB VBP
+U.S.-owned JJ
+freezer NN
+re-arguing VBG
+Rolls-Royce NNP
+deferent NN
+vying VBG
+doorknob NN
+hulk NN
+simplifying VBG
+Machiguenga NNP
+nine-game JJ
+screened VBN VBD
+not-so-new JJ
+sneaked VBD VBN
+Crosson NNP
+ennui NN
+outdoor-maintenance NN
+docked VBN
+hide-out JJ NN
+Procepe NNP
+Moet-Hennessy NNP
+Yorkshire-based JJ
+miles NNS
+apostates NNS
+LeMans NNP
+Reunion NNP
+Lola NNP
+drunkenly RB
+ensuring VBG
+Norwest NNP
+crank VB NN
+Posts VBZ NNP
+pronunciation NN
+fun-filled JJ
+Decorators NNP
+slimy JJ
+Certainly RB
+marrowbones NNS
+Galena NNP
+wohaw NN
+psychiatrist NN
+nineteenth-century JJ
+figurehead NN
+Bengals NNPS
+rosters NNS
+testing NN VBG VBG|NN
+conversation NN
+Jr NNP
+reaccelerating VBG
+cards NNS
+Pressing VBG
+remainder NN
+ATMs NNS
+unhelpful JJ
+Upson NNP
+profits-optimism JJ
+PS NNP
+Gribin NNP
+patented VBN VBD JJ
+exorcism NN
+Catalina NNP
+religionists NNS
+aunt NN
+Cathay NNP
+Listen VB NNP
+scudding VBG
+time-line NN
+Make VB VBP NN NNP
+Sayegh NNP
+teenager NN
+long-opposed JJ
+public-television NN
+Colorcoat NNP
+sibling NN
+part-time JJ RB
+Tenderloin NNP
+Aurora NNP
+Swansea NNP
+lukewarm JJ
+sighs VBZ NNS
+hurricane-wracked JJ
+deep-discount JJ
+ratified VBD VBN
+Boca NNP
+Parichy-Hamm NNP
+Hisao NNP
+Sacred NNP
+lemmings NNS
+spotlight NN VB
+triad NN JJ
+whole-word JJ
+price'tres NN
+EST NNP NN RB
+protections NNS
+sharp JJ
+MONITORED VBD
+hobos NNS
+cashews NNS
+satisfactory JJ
+peers NNS VBZ
+grisly JJ
+adjustment NN
+Mille NNP
+Environmentalism NNP NN
+Fish NNP NN
+Swearingen NNP
+near-certain JJ
+pokes VBZ
+public-housing JJ NN
+Program-Trading JJ
+Corruption NN NNP
+Claytor NNP
+Xoma NNP
+aspersions NNS
+Winterhalder NNP
+Leny NNP
+hemosiderin NN
+contemplative JJ
+'I PRP NN VB
+trickling VBG
+mighta MD|VB
+stabbed VBD VBN
+telephone-information NN
+doll NN
+Hungarian JJ NNP
+rehearsing VBG
+Loveless NNP
+Crash NNP NN
+stupefyingly RB
+warmup NN
+Zapotec JJ
+exaggeration NN
+French-language JJ
+lbs NNS
+Drawn VBN
+savings NNS NN
+wrenches NNS VBZ
+Overland NNP
+full-page JJ
+expeditious JJ
+Skopas NNP
+Amundsen NNP
+disqualify VB
+turn-of-the-century JJ
+hearing NN VBG
+badness NN
+Adverse JJ
+Milling NNP
+Maslyukov NNP
+Ashkhabad NNP
+a'mea FW
+Marcel NNP
+random-access JJ
+issues NNS VBZ
+Yale NNP NN
+shack-up JJ
+Administrative NNP JJ
+picture NN VB VBP
+storage-case NN
+miscommunication NN
+Mono-unsaturated JJ
+headrest NN
+Donics NNP
+Chromatography NN NNP
+albeit IN RB
+Campground NNP
+hurricane-prone JJ
+DeGroot NNP
+darted VBD
+NTC NNP
+Farther RB
+Idaho-based JJ
+anatomy NN
+Philippi NNP
+bouncing VBG NN
+Misconceptions NNS
+Reprints NNS
+strain NN VB VBP
+acre NN
+Webern NNP
+enjoys VBZ
+shrill JJ
+imprinted VBN
+Maersk NNP
+ambulatory JJ
+applicable JJ
+inborn JJ
+LAMBERT NNP
+swiveling VBG
+blazon VB
+bedding NN
+Kingdom NNP NN
+tarmac NN
+hear VB VBP
+AWAY RP
+much-revised JJ
+Curteis NNP
+Halls NNP
+obnoxious JJ
+lesser-known JJ
+proverty NN
+propriety NN
+celluloids NNS
+tradedistorting JJ
+metrazol NN
+Gustav NNP
+V-6 NNP JJ NN
+protectionist JJ NN
+million CD JJ
+organification NN
+Stalin NNP
+TSH-treated JJ
+long-tenured JJ
+Laptops NNS
+glistened VBD
+Negas NNP
+Jouvet NNP
+missiles NNS
+Describing VBG
+Stainless NNP JJ
+laser-read JJ
+paradise NN
+single-A-1-plus NNP
+Laptev NNP
+Cosma NNP
+debentures NNS
+cancer-causing JJ
+Winzer NNP
+chairman-designate NNP
+Dervish NN
+Credit NNP NN FW
+Abt NNP
+soddenly RB
+foreknowledge NN
+Essex NNP
+encamp VB
+Webster\ NNP
+pre-approved JJ VBN
+condense VB
+carries VBZ NNS
+Mc NNP
+destigmatization NN
+Jurgen NNP
+Nonmagical NNP
+Medtronic NNP
+impinging VBG
+greenback NN
+freezes VBZ NNS
+Masque NNP
+formidable-appearing JJ
+obsession NN
+SD NNP
+bioengineer VB
+saxophone NN
+Gerard NNP
+price-reform JJ
+flexicoker NN
+Off-Track NNP
+unrehearsed JJ
+Pummeled VBN
+ingratiating JJ
+Musician NN
+Application NNP NN
+unite VB VBP
+unhesitant JJ
+Commissioned VBN
+racial JJ
+Jan NNP
+HIGHER JJR
+meterological JJ
+Reflections NNP
+untenable JJ
+downstream RB JJ
+Taney NNP
+NOVA NNP
+attitude NN
+Sterile NNP
+waiver NN
+stored-up JJ
+Aloha NNP
+Genetics NNP NNPS
+Titan NNP
+Evanston NNP
+Surprised VBN
+Adi NNP
+Byronic JJ
+not-so-trivial JJ
+tongue-thrusting NN
+self-esteem NN
+Markus NNP
+Ifo NNP
+deprivation NN
+lengthening VBG
+erawhere NN
+Mnemosyne NNP
+propositioned VBD
+corks NNS
+phase-out NN JJ
+potentially RB
+June-to-September NNP
+Throneberry NNP
+lay VBD VBP JJ VB
+conveyed VBD VBN
+Josh NNP
+unoriginal JJ
+scrounge VBP VB
+frequency NN
+non-partisan JJ
+Chekhovian JJ
+TRIAD NNP
+fifty-dollar JJ
+eighty-sixth JJ
+MIG-1\ JJ
+Treasure NNP NN
+Industriale NNP
+Journey NNP
+LLerena NNP
+Hemant NNP
+D-Mass. NNP
+suddenly RB
+excellent JJ
+Gilgore NNP
+heiress NN
+Peres NNP
+Disregarding VBG
+Portugal NNP
+pool-care JJ
+hull NN
+overcollected JJ
+magistrate NN
+equipment NN
+VISX NNP
+drumsticks NNS
+front-seat NN
+India-born JJ
+GREW VBD
+sieve NN
+Welborn NNP
+blindfold NN
+postmen NNS
+Clothes NNS NNPS
+Wheatley NNP
+Sheila NNP
+Dialogue NNP
+apartment NN
+Karl NNP JJ
+Bunker NNP
+Poirot NNP
+Destroyer NN
+mosaic-like JJ
+volcanos NNS
+Patil NNP
+eleventh-hour JJ
+non-person NN
+Quennell NNP
+world-view NN
+Robbers NNS
+Benita NNP
+trichloroacetic JJ
+counter-culture JJ
+Fur NNP NN
+lags VBZ NNS
+Macfarlane NNP
+co-insurance JJ NN
+reset NN VBN JJ VB
+Pergamon NNP
+Waymire NNP
+Loews NNP
+time-hotels NNS
+incongruous JJ
+flirted VBD VBN
+pullouts NNS
+performance-sharing JJ
+WRC NNP
+spiffing JJ
+gyro NN
+sight NN VB
+raved VBD
+Lois NNP
+where WRB
+structurally RB
+self-evident JJ
+poise NN
+arouse VB VBP
+Holtzman NNP
+jumpsuits NN
+balm-of-Gilead NN
+envisioning VBG
+investment-insurance NN
+Hoyt NNP
+culminated VBD VBN
+launched VBN VBD VB
+Fortress NNP
+E-1 CD
+Hirey NNP
+waistcoat NN
+labor-shortage NN
+Ajinomoto NNP
+Income NNP NN
+Hungary-Suez NNP
+abnormally RB
+Furnace NN
+impartiality NN
+fur-piece NN
+procedurally RB
+honorariums NNS
+Pains NNS
+chest-high JJ
+indefinite JJ NN
+crevice NN
+Okasan NNP
+Reprinted VBN
+Vienot NNP
+prayerbooks NNS
+chief JJ NN
+claims NNS VBZ
+parliamentarian NN
+boss NN
+intruder NN
+McWhinney NNP
+negligible JJ
+GIS NNP
+then-Vice NNP JJ
+contamination NN
+snorkle NN
+fourteen-team JJ
+blenders NNS
+hard-disk NN JJ
+like-minded JJ
+Buoy NNP
+relapse NN
+puzzling JJ VBG
+Cautiously RB
+crocketed JJ
+crusts NNS
+typifying VBG
+Soviet-bloc JJ
+Nikonov NNP
+pong NN
+big-town JJ
+utility NN JJ
+bond-equivalent JJ NN
+Macksey NNP
+now... :
+less-polluting JJ
+Inspire NNP
+Jeannie NNP
+accomodations NNS
+folk-dance NN
+Marble NNP
+Dukakis NNP
+tally NN VBP VB
+highs NNS
+Mishkin NNP
+baronial JJ
+spoiling VBG
+Outlays NNS
+Gluck NNP
+perfect-attendance NN
+pseudo-thinking NN
+silver-gray JJ
+dictatorship NN
+appellate JJ NN
+Beauchamps NNPS
+preside VB
+praise NN VBP VB
+coping VBG NN
+quantify VB
+delaying VBG JJ NN|VBG
+Starkey NNP
+antismoking JJ
+Placer NNP
+propulsive JJ
+Healthdyne NNP
+stabilized VBN VBD
+Moses NNP NNS
+solemnity NN
+viciousness NN
+kyat NN
+--twice RB
+inequities NNS
+Exclaimed VBD
+Scolatti NNP
+galleys NNS
+Camerino NNP
+Persian NNP JJ
+bred VBN VBD
+Savior NNP NN
+mattered VBD VBN
+proselytizing VBG NN
+expiating VBG
+consolidates VBZ
+fabricates VBZ
+fissionable JJ
+reportage NN
+headstrong JJ
+tarpapered JJ
+troup NN
+shrunken JJ VBN
+Obligations NNS
+Bradsby NNP
+us PRP
+Shawn NNP
+matters NNS VBZ
+--some DT
+malfunctions NNS
+toxin NN
+iodoprotein NN
+Hurts VBZ
+functionalism NN
+Spam NNP
+sky-tapping JJ
+courant FW
+U.N NNP
+Gell NNP
+Lantz NNP
+Outsiders NNS
+Protracted JJ
+Zinser NNP
+purchased VBN JJ VBD
+cease-fire NN JJ
+Parry NNP
+how-to JJ
+preceeded VBN
+safe JJ NN
+Schoeneman NNP
+bandwagon NN
+Sidoti NNP
+Chateauvallon NNP
+Mortality NN
+voice-recognition NN
+emanation NN
+deadness NN
+noting VBG
+statehood NN
+shopped VBN VBD
+jetliner NN
+breakeven JJ NN
+busiest JJS
+colorblindness NN
+Celtics NNPS NNP
+E.W. NNP
+workin VBG
+transpiration NN
+U.S.-dominated JJ
+deprives VBZ
+Edwin NNP NNPS
+Banner NNP NN
+olim FW
+small-capitalization JJ
+landowner NN
+Quigley NNP
+loitering NN VBG
+Canseco NNP
+defined-benefit JJ
+carting VBG
+Kingwood NNP
+planeload NN
+comfortably RB
+lining VBG NN
+gunboats NNS
+MERRILL NNP
+spice NN VBP VB
+Julio NNP
+Courtney NNP
+PG-13 NN
+multibillion JJ
+suppressed VBN JJ VBD
+chalky JJ
+Tango NNP
+probl'y RB
+interrupts VBZ
+expansionism NN
+neglected VBN JJ VBD
+precrash JJ
+species-dependent JJ
+Y.W.C.A. NNP
+UniFirst NNP
+Fibreboard NNP
+Carla NNP
+home-improvement NN JJ
+fifth-straight JJ
+partner-notification NN
+Cal. NN
+take-up JJ
+polyethers NNS
+selling VBG NN JJ
+waives VBZ
+Cassandras NNPS
+foolish JJ
+Omani JJ
+digestible JJ
+variability NN
+crawlspace NN
+shelf-life NN
+Pardus NNP
+discount-brokerage NN
+Hubba UH
+fee-related JJ
+Borland NNP
+AmBase NNP
+sniffy JJ
+positions NNS VBZ
+masseuses NNS
+Maidens NNPS
+seedbed NN
+Li NNP
+REIS NNP
+Unglazed VBN
+Jelke NNP
+Granville NNP
+Paschal NNP
+foundations NNS
+Micha NNP
+Egil NNP
+Hackney NNP
+endures VBZ
+reproach NN
+well-cared JJ
+leave-taking NN
+moisture NN
+black-and-yellow JJ
+vinegar NN
+Bellas NNP
+line-driven NN
+retrial NN
+half-swimming JJ
+lubra NN
+noneconomic JJ
+Allegiance NNP
+Fegersheim NNP
+sprains NNS
+Abu NNP
+wiring NN VBG
+Nations-monitored JJ
+stoke VB
+Repayment NNP
+fuss NN VB
+all-New NNP
+Bernardine NNP
+Drobnick NNP
+broiled VBN
+Arlt NNP
+contaminants NNS
+art-nouveau JJ
+once-absolute JJ
+single-firm JJ
+McHenry NNP
+BOTH DT
+renunciation NN
+Threaded VBN
+playgrounds NNS
+vision NN
+regulate VB VBP
+Willmott NNP
+wrathful JJ
+quipping VBG
+Marlow NNP
+Hanch NNP
+intrudes VBZ
+niche NN
+girders NNS
+Stratas NNP
+Cycle NNP
+deems VBZ
+brunettes NNS
+CHIEF JJ
+pert JJ
+nosy JJ
+Pawley NNP
+blank-faced JJ
+tung NN
+end-user NN
+de-leverage VB
+impending JJ VBG
+entrepreneurism NN
+bevels NNS
+addresses NNS VBZ
+Brevet NNP
+efficient-in JJ|IN
+on'frontier NN
+rounds NNS VBZ
+Figures NNS NNPS
+Hanoverian NNP JJ
+archrival JJ NN
+pathway NN
+Nellcor NNP
+winked VBD VBN
+replication NN
+man-made JJ
+criticize VB VBP
+Md NNP
+Breckenridge NNP
+Civilian-groups NNPS
+speculate VB VBP
+co-pilot NN NNS
+bottled-water JJ NN
+mutely RB
+Tooling VBG
+SE NNP
+liberties NNS
+Sumner NNP
+pusillanimity NN
+monosodium NN
+inclusion NN
+manure-scented JJ
+Abilene NNP
+savory JJ
+shipyards NNS
+pols NNS
+assistance NN
+unseen JJ
+Buttacavoli NNP
+Harken NNP
+wrinkle-fighting JJ
+Leixlip NNP
+streetlight NN
+separately RB
+Quyney NN
+fragments NNS VBZ
+undersize JJ
+drawers NNS
+Hastening VBG
+disburses VBZ
+health-and-benefits JJ
+earned VBD JJ VBN
+Duero NNP
+Blessings NNS
+Veilleux NNP
+Crumble NNP
+G.O. NNP
+caster NN
+comminge VBG
+non-thermal JJ
+m.p.h. NN
+slyness NN
+hatred NN
+CONSERVATIVES NNS
+Smukler NNP
+adjectives NNS
+solos NNS VBZ
+Paint NN
+banding VBG
+amorist NN
+obscurely RB
+middle NN JJ
+Equity NNP NN
+maturing VBG
+manifesto NN
+ruts NNS
+ultracentrifugally RB
+leftfield NN
+Option NNP NN
+field NN JJ VB VBP
+medical-assistance NN
+Outsville NNP
+Chafin NNP
+Rhodes NNP
+nonporous JJ
+Tolley NNP
+Bockris NNP
+noun NN
+High-Yield NNP
+Buri NNP
+curled VBD VBN
+Pestle NNP
+Purdy NNP
+didactic JJ
+unsolicited JJ
+consultants NNS
+fury NN
+minivans NNS
+substructure NN
+chaperone NN
+non-black JJ
+Aqua NNP
+Runcie NNP
+nasaled VBD
+Pol NNP
+Neanderthal JJ
+bronchiolar JJ
+restart VB
+no-inflation JJ NN
+Physique NN
+Rabin NNP
+Dream NNP NN VB
+muscular JJ
+Portland NNP
+re-examination NN
+shrinking VBG NN
+crewel NN
+E-2 CD
+clinkers NNS
+preparations NNS
+Places NNS NNPS
+reacceleration NN
+constructive JJ
+McAlester NNP
+intricately RB
+Krims NNPS
+Baiba NNP
+seeing VBG
+original JJ NN
+Weaning NNP
+row NN VBP VB
+led VBN VBD VB
+Tests NNS NNP NNPS
+unwillingly RB
+Heinz NNP
+Quiet JJ NNP
+truckdriver NN
+Embryo NN
+Cuellar NNP
+foreign-car NN
+distances NNS VBZ
+bringing VBG NN
+eluted VBN
+nighted JJ
+imperil VB
+Kimmelman NNP
+Traders NNS NNP NNPS
+armament NN
+alphabetic JJ
+larynx NN
+crams VBZ
+Consort NNP
+demeans VBZ
+Unstained JJ
+gowned JJ
+DC10-30 NN
+Dow-Jones NNP
+Industriali NNP
+Humanities NNP
+whiplash NN
+Breeders NNP NNS
+Compound JJ NN
+Evolution NNP NN
+transborder JJ
+rightward JJ
+folded VBN VBD JJ
+S.P. NNP
+Vineyards NNS NNPS
+six-week JJ
+abstractionism NN
+cobblestones NNS
+then-client NN
+Fairy NNP NN
+strike-outs NNS
+tabulation NN
+driving VBG JJ NN
+Iroquois NNP
+Kristine NNP
+Exaggerated VBN
+lilt NN
+thrift-like JJ
+YES NNP
+cognitive JJ
+disclosures NNS VBZ
+talking VBG NN NN|VBG
+compromising VBG JJ
+evildoers NNS
+Fossett NNP
+Flaherty NNP
+pint-sized JJ
+spleen NN
+clouds NNS VBZ
+Pierson NNP
+fodder NN
+distillation NN
+Pepper\/Seven NNP
+slipstream NN
+government-agency JJ NN
+conquete FW
+arbitrated VBN
+toeholds NNS
+homework NN
+pacified VBD
+Nattily RB
+Seng NNP
+Factory-to-You NNP
+rotted VBN
+desynchronizing VBG
+Fliers NNPS
+trapped VBN VBD JJ
+Span NN NNP
+rods NNS
+spectral JJ
+fawn-colored JJ
+woke VBD
+back-ups NNS
+revelers NNS
+Rothmans NNP
+Christendom NNP NN
+biophysics NNS
+thaws NNS
+ultra-right JJ
+referring VBG
+sweetens VBZ
+binder NN
+reign NN VBP VB
+Diners NNP
+Aaawww UH
+Kagan NNP
+Literally RB
+Retrovirus NNP
+unduly RB
+slinging VBG
+nott RB
+peso NN
+time-cast JJ
+Macbeth NNP
+Dead NNP NNS JJ
+dark-haired JJ
+Anticipating VBG
+heat NN VB VBP
+redevelop VB
+sunder VB
+bullishness NN
+Headed VBN
+McDonalds NNP
+extermination NN
+beguiled VBN
+thick-walled JJ
+Neumann NNP
+Odakyu NNP
+much-delayed JJ
+generics NNS
+yuse NN
+IBM-compatible JJ
+repealed VBN VBD
+imprecisely RB
+conveniently RB
+error-prone JJ
+Mitsuoka NNP
+McNamar NNP
+junkless JJ
+Sad JJ
+Seidler NNP
+scared VBN JJ RB VBD
+Korda NNP
+Wars NNPS NNP NNS
+sired VBN
+Avrett NNP
+electronic-defense NN
+Brooding NNP VBG
+warn-your-enemy JJ
+Dairies NNPS NNP NNS
+Canterbury NNP
+grain-trading JJ
+unconstitutionally RB
+Samuels NNP
+Spirits NNP NNPS NNS
+glitch NN
+carillons NNS
+Finnish JJ
+Estates NNP
+REIT NNP
+l'Osservatore NNP
+entrepreneurs NNS
+Sudier NNP
+Huntley NNP
+Tropworld NNP
+Mattausch NNP
+guilders NNS
+stable-garage NN
+head-topper NN
+Ko NNP
+Scull NNP
+solenoid NN
+McNealy NNP
+short-barrel NN
+neutralist JJ NN
+handsome JJ
+follows VBZ
+perch NN VB
+irresponsibility NN
+Kuhlke NNP
+blissful JJ
+Supplement NNP NN
+Alternate JJ
+Falco NNP
+dyes NNS
+low-class JJ
+Japan NNP
+Mais FW
+decertify VB
+'K NNP
+Rape NNP
+community-oriented JJ
+Trinidad NNP
+Atkinson NNP
+Depression NNP NN
+kissings NNS
+though IN RB VBD
+Keats NNP
+small-appearing JJ
+rebuild VB
+V-8 JJ NNP
+Allotments NNS
+towns NNS
+analogies NNS
+cocoon NN
+Sovietologist NN
+vivo NN FW
+Leaping VBG
+outsold VBD
+repositioning NN VBG
+trade-mark NN
+hunches NNS
+scribes NNS
+translation NN
+Keillor NNP
+Mintel NNP
+Marcy NNP
+Aims VBZ
+Slemrod NNP
+flatish JJ
+pan-European JJ
+Inco NNP
+terrazzo NN
+defray VB
+Cornfield NNP
+Gethsemane NN NNP
+unreeling VBG
+Pernod NN
+Dingell NNP
+focal JJ
+Striking VBG JJ
+the DT VBD VBP NN|DT IN JJ NN NNP PDT
+Sande NNP
+Gen-Probe NNP
+Nestor NNP
+reproduced VBN VBD
+syrupy JJ
+Countries NNPS NNP NNS
+GREY NNP
+Pedone NNP
+Solzhenitsyn NNP
+two-system JJ
+haze NN
+Adrienne NNP
+domi FW
+all-too-brief JJ
+Masterpieces NNPS
+left-field JJ
+chairmanships NNS
+Ledoux NNP
+drachmas NNS NN
+reconstructed JJ VBD VBN
+Hage NNP
+enmities NNS
+easy-to-turn JJ
+flightiness NN
+universities NNS
+Jap NNP
+purple-black JJ
+McDougall NNP
+Shootin VBG
+corne NN
+mass-faxing JJ
+Sanders NNP NNPS
+limo NN
+single-market JJ NN
+sprained VBN
+goverment NN
+tariff-cutting NN
+benchmark NN JJ
+ill-prepared JJ
+Patricio NNP
+Reference NNP NN
+Glimco NNP
+emergency-cash NN
+hazardous-waste-site NN
+Quirinal NNP
+NEARLY JJ RB
+nakedness NN
+Observatory NNP
+Co-op NN NNP
+Winnebago NNP
+stage-managing NN
+muffled JJ VBD VBN
+land-ownership NN
+wide-sweeping JJ
+Belway NNP
+Plowman NN
+Nonunion NNP
+Sidhpur NNP
+Sigurd NNP
+saga NN
+Backstage RB
+Giaour NN
+AT*/NNP&T NN
+value-orientations NNS
+WPP NNP
+NZ$ $
+logged VBN VBD
+morticians NNS
+ALAMCO NNP
+money-manager NN
+degassed VBN
+retirement-system JJ
+Me PRP NNP VBP
+nonsegregated JJ
+yeterday NN
+brokerages NNS
+intellectuals NNS
+SF NNP
+brain NN
+regulars NNS
+cathode NN
+wedge-shaped JJ
+wispy JJ
+depcreciation NN
+Latter NN NNP
+Pauletta NNP
+Ory NNP
+Lorex NNP
+Nichias NNP
+represented VBN VBD
+teahouse NN
+Baseball NN NNP
+indorsed VBD
+Communist NNP NNPS JJ NN
+Chicagoan NNP
+inflight JJ
+foreboding NN JJ
+Fisk NNP
+Featherweight NN
+squads NNS
+Bhutto NNP
+Emmerich NNP
+Daimler NNP
+oats NNS NN
+firmer JJR RB RBR
+Fluent JJ NNP
+hard-core JJ
+discipleship NN
+traduce VB
+college-bowl NN
+goings NNS
+Dragonetti NNP
+Velon NNP
+astounds VBZ
+Molvar NNP
+goodness NN
+Nixdorf NNP
+obtainable JJ
+Sadler NNP
+EXECUTIVES NNPS NNS
+protectionists NNS
+slatted JJ
+tongue-tied JJ
+revered VBN JJ
+Sacheverell NNP
+motorcade NN
+Rondo NN
+Imprisoned VBN
+anyplace RB
+Soldier NNP
+Grisebach NNP
+CONFRONTATIONS NNS
+released VBN VBD
+open-collared JJ
+Thynnes NNPS
+transaction NN
+Austro-Hungarian JJ
+Hersey NNP
+enjoyed VBD VBN
+matriculate VB
+minicar NN
+scallops NNS
+Prussian NNP
+McClellan NNP
+jeopardizing VBG
+classification NN
+pubescent JJ
+Fawcett NNP
+accosting VBG
+futures-investment JJ
+residing VBG
+TA NNP
+Sardanapalus NNP
+black-figured JJ
+foreign-currency NN JJ
+Saliva NN
+appraisal NN
+Jean-Rene NNP
+Maher NNP
+Ledger NNP NN
+dwindling-sales JJ
+spattered VBN
+cylinder NN
+radicalism NN
+magic NN JJ
+liquidity-short-selling NN
+collude VB
+Beyond IN NNP
+unions NNS
+Danforth NNP
+cavalier JJ
+Gruber NNP
+Responding VBG
+carpets NNS
+adjustablerate NN
+synergistic JJ
+Robot NN
+essay NN
+pioneers NNS
+nouvelle JJ
+exhort VB
+offical JJ
+unripe JJ
+ghosts NNS
+casual JJ RB
+LXi NNP
+Masterson NNP
+jog VB
+Dallas-Barcelona NNP
+Skolovsky NNP
+shrine NN
+fastigheter FW
+embezzled VBD
+multipled VBD
+expansionist JJ
+Stolen NNP
+Lister NNP
+Moshe NNP
+forbidding-looking JJ
+Anti-American JJ
+arb NN
+swarming VBG
+birches NNS
+policeman NN
+rough-cut JJ
+McLemore NNP
+firehouses NNS
+Squeezing VBG
+northeastern JJ
+scaffold NN
+represents VBZ
+Bauhaus NNP
+promising JJ VBG
+aura NN
+Fairbanks NNP
+tribulation NN
+softdrink NN
+jailhouse NN
+Magazines NNS NNP
+post-bellum FW
+NAFTA NNP
+Zeke NNP
+nine-bedroom JJ
+four-minute JJ
+outcry NN
+real-analytic JJ
+Hekhmatyar NNP
+Positive JJ NNP
+amatory JJ
+prostitute NN VB
+VALLEY NNP
+rapidement FW
+Reina NNP
+Time NNP NN
+WITHHOLDING NN
+high-interest-rate JJ
+desirability NN
+snake-charmer NN
+Janofsky NNP
+pro-selected JJ
+vulpine JJ
+Thanks NNS UH
+then-Socialist JJ
+Mimieux NNP
+Bachtold NNP
+manye JJ
+sloppily RB
+inhibits VBZ
+padded JJ VBN
+vase NN
+checked VBN VBD JJ
+teed VBD VBN
+CBOE NNP
+resew VB
+terrestial JJ
+overgrown VBN JJ
+liaisons NNS
+Krauss NNP
+Gaelic JJ
+Roto-Rooter NNP
+eight-foot JJ
+aleck NN
+hired VBN JJ VBD
+CAPITALIST JJ
+LANDOR NNP
+dolphins NNS
+proved VBD JJ VBN
+desk NN
+litigation-support JJ
+low-foam NN
+Certificates-a NNP NNPS
+Dobson NNP
+pre-paid VBD
+Topaz NNP
+argument NN
+Yeargin NNP
+CERTIFICATES NNS NNPS
+Psychologists NNS
+systemization NN
+PERSUADING VB
+obscenity NN
+non-institutionalized JJ
+outmaneuver VB
+displeasure NN
+unsolder VB
+booze NN
+installment NN JJ
+Corps NNP NNPS NN
+spoils NNS
+Sweet-scented JJ
+Prokofieff NNP
+offside NN
+silenced VBN VBD
+Arapacis NNP
+Avocado NNP
+Liebowitz NNP
+cast NN JJ VB VBD VBN VBP
+telegraphers NNS
+two-party JJ
+resonate VB
+Nalick NNP
+Karo NNP
+BANCORPORATION NNP
+Goes VBZ NNP
+anti-apartheid JJ NN
+Murfreesboro NNP
+Discourse NNP
+twenty-mile JJ
+off-off-Broadway NNP JJ
+elective JJ
+Melzi NNP
+geniuses NNS
+Boehlert NNP
+indirection NN
+embarks VBZ
+horse-trail NN
+Knupp NNP
+limp JJ NN
+Hefter NNP
+doctor NN VB
+knight-errantry NN
+Branchburg NNP
+shop NN VB VBP
+ungallant JJ
+hostility NN
+civics NNS
+Wiegers NNP
+Stolz NNP
+TCMP NNP
+export-applications NNS
+imparted VBN VBD
+parlor NN
+-- : --
+whore NN
+Notes NNS NNP NNPS
+posse NN
+VIETNAM NNP
+IBC NNP
+taboo JJ NN VB
+boldly RB
+Ind.-investment NN
+Kennedy-wordsmith NNP
+C-141 NNP
+Burk NNP
+Zenaida NNP
+Bienville NNP
+IRSAC NNP
+turnabout NN
+vp NN
+Consistent JJ
+Peak NNP JJ
+Mint NNP NN
+heckled VBN
+Connick NNP
+rediscovery NN
+inward-looking JJ
+one-act JJ
+feisty JJ
+MOTORS NNP NNPS
+associated VBN VBD JJ
+enumerated VBN JJ
+nauseous JJ
+scrubbing NN VBG
+ETR NNP
+Kass-Pedone NNP
+Employee-benefit JJ
+whizzed VBD
+westbound JJ
+preferred-share JJ NN
+memorization NN
+Gogh NNP
+Arguably RB
+D.K NNP
+unlovable JJ
+downfall... :
+one-year JJ NN
+Duke NNP
+recently-passed JJ
+pharmaceuticals NNS
+Wattie NNP
+Global NNP JJ
+receptions NNS
+Chilblains NNS
+require VB VBP
+Ceremonial NNP
+stated VBN JJ VBD
+Klondike NNP
+signal-intensity NN
+stigma NN
+Deadly JJ
+Medicaid-covered JJ
+penalized VBN VBD
+neocortex NN
+Espagnol NNP
+frosted VBD
+hyperbolically RB
+Criteria NNP
+simplify VB VBP
+batmobile NN
+palm-tree NN
+folk-music NN
+Appleyard NNP
+Competitors NNS
+refinancings NNS
+Novacor NNP
+Evans NNP
+famously RB
+remorseful JJ
+substituted VBN JJ VBD
+Milko NNP
+Soichiro NNP
+stockpile NN VB
+tax-deductible JJ
+subroutines NNS
+any DT RB
+unclassified JJ
+inventing VBG
+Interpretation NNP NN
+self-assured JJ
+anti-debt JJ
+continuum NN
+heaved VBD VBN
+Intercable NNP
+opportune JJ
+buildup NN
+Non-executive JJ
+close-knit JJ
+secondhand JJ
+FICOs NNS
+Meadows NNP
+Orwellian JJ NNP
+Shriver NNP
+mass-circulation JJ
+consumption NN
+Refining NNP NN
+ailing VBG JJ
+julep NN
+Double NNP JJ RB VB
+Hypocrisy NN
+inter-agency JJ
+authenticate VBP
+million-share JJ NN
+ficus NN
+fourth-quarter JJ NN
+resisting VBG
+arthritic JJ
+settlement NN
+father-son NN
+STUBBED VBN
+ruling NN VBG JJ
+Trooper NNP
+Primarily RB
+Tribes NNS
+fuel-economy NN
+mummy NN
+pound-deutsche JJ
+pocket-size JJ
+liveliness NN
+Sachs NNP
+Deaf JJ NNP
+manageability NN
+prowess NN
+raiser NN
+chamfer NN
+exude VBP
+seafood NN
+yellin NN
+hamstrung JJ VBN VBP
+circled VBD
+Zipser NNP
+scratched VBD VBN
+Buxton NNP
+appreciate VB VBP
+Marksmanship NN
+Federal-court JJ
+doing VBG VBG|NN
+Retention NNP
+chevaux FW
+necklace-like JJ
+Africa NNP
+Flemish NNP JJ
+subtilis NNS
+derisively RB
+Ultramar NNP
+corteggiamento FW
+Marge NNP
+Unitika NNP
+studied VBN VBD JJ
+Roland NNP
+Right RB NNP JJ NN UH
+BREAKERS NNP
+Terence NNP
+rifle NN
+done VBN JJ RB VBD
+potboilers NNS
+'em PRP JJ NN VB
+runabout NN
+Concert NNP
+Canonie NNP
+matchmakers NNS
+Teletrac NNP
+Services\/Japan NNP
+Biggest JJS NNP
+Commissioner NNP
+synthesizers NNS
+pomp NN
+notables NNS
+gothic JJ
+Cleary NNP
+Kinnear NNP
+Defending VBG
+corrosion-protection JJ NN
+Ladislav NNP
+thirty-eight CD
+unloaded VBN JJ VBD
+Arianespace NNP
+selflessness NN
+Oasis NNP
+link NN VB VBP
+TB NN
+exorcist NN
+wardroom NN
+worthwhile JJ
+Genossenschaftsbank NNP
+Guilford-Martin NNP
+vented VBD VBN
+Food-price JJ
+Ailes NNP
+Magna NNP
+PHP NNP
+Elysees NNP
+arc NN VB
+Neil NNP
+nine-month JJ
+Kivu NNP
+magnanimous JJ
+historicized VBN
+Swedish-Swiss JJ NNP
+Heady NNP JJ
+think-alike JJ
+homogenate NN
+mesmerized VBN
+Lumpe NNP
+Congregational NNP JJ
+white-collar-defense JJ
+Macaroni NNP
+Matlock NNP
+tall-growing JJ
+N.J.-based JJ NNP
+descends VBZ
+tapered JJ VBN
+Scouting VBG
+Peking NNP
+Sikkim NNP
+Futter NNP
+Cudkowicz NNP
+open-interest JJ
+L.T. NNP
+bacterial JJ
+Vista NNP
+two-month JJ
+proportionally RB
+Balcolm NNP
+sequel NN
+FPL NNP
+Sunburst NNP
+heck NN UH
+converting VBG
+Yoneda NNP
+ya NN PRP
+Suggest VB
+much-coveted JJ
+Androfski NNP
+reevaluation NN
+happenings NNS
+became VBD
+oatmeal NN
+VTX NNP
+Collective NNP
+gourd NN
+apportion VB
+shrugs VBZ NNS
+Forest NNP NN
+undrawn NN
+Sally NNP NN
+Vitamin NN
+Fortier NNP
+callipygous NN
+Recently RB
+cosmopolitanism NN
+clogged VBN JJ VBD
+Quality NN NNP JJ
+Fragua NNP
+Jordon NNP
+Forrest NNP
+Plenary NNP
+spacious JJ
+W&D NNP
+dispersal NN
+microchips NNS
+Ismet NNP
+softener NN
+wedge NN VB
+insanity NN
+Lamberth NNP
+introduction NN
+more-advanced JJ JJR
+Seidman NNP NN
+Egger NNP
+jotting VBG
+Flat JJ NNP
+addled JJ VBN
+yen-support JJ
+Sabol NNP
+tremulously RB
+more-or-less RB
+chateau NN
+Twins NNP NNS NNPS
+reported VBD JJ VB VBN VBP
+tinged VBN
+Chenoweth NNP
+Wound-tumor NN
+Tigue NNP
+Superior NNP JJ
+major-league JJ
+Absorbing VBG
+half-way JJ RB
+wart-hog NN
+Karp NNP
+Codifying VBG
+corporate-finance JJ NN
+NTG NNP
+dept. NN
+brake NN VB
+Telemundo NNP
+machine-tool JJ CD
+hardworking JJ
+classy JJ
+luscious JJ
+iguanas NNS
+reasonably RB
+luxury NN JJ
+Friedenwald NNP
+decisionmaking NN
+conservationists NNS
+lunchroom NN
+cross-react VBP
+Rudder NNP
+Fawell NNP
+lock-outs NNS
+cares VBZ NNS
+Iran-Iraq NNP
+reunite VB
+dividing VBG VBG|NN|JJ
+Groopman NNP
+Blend VB
+Till IN
+Gracie NNP
+premiere NN VBP JJ VB
+hostile JJ NN
+omeprazole NN
+--Hitachi NNP
+Fifteenth NNP JJ
+Super-NOW NNP
+fortify VB
+Vicolo NNP
+inadvertent JJ
+Rude NNP JJ
+Chemistry NNP
+melts VBZ
+net-benefit JJ
+reduced-fat JJ
+center-stage JJ
+pillowcases NNS
+R.A.F. NNP
+ascension NN
+one-stroke JJ
+offensively RB
+megabyte NN
+trout NN NNS
+Flugel NNP
+break-down NN
+abysmal JJ
+Towering VBG JJ
+Toyota NNP
+Westburne NNP
+shoemaking VBG
+Burl NNP
+corners NNS
+Zalubice NNP
+whopping JJ
+Karolinerna NNP
+coherent JJ
+hymens NNS
+unfounded JJ
+Generic-Drug JJ
+Patterson NNP
+A.I.R. NNP
+presenters NNS
+Koussevitzky NNP
+the'breakup NN
+Peal NNP
+irrelevant JJ
+garbed VBN
+Schilling NNP
+polyrhythms NNS
+wad-working NN
+launderer NN
+pinball NN
+scurries NNS
+hinting VBG
+Bonacquist NNP
+refractory JJ NN
+Appliances NNPS
+uniquely RB
+Santry NNP
+overlays VBZ
+Formation NNP
+foothill NN
+Audio NNP
+Smyrna NNP
+diagram NN
+avian JJ
+bathtubs NNS
+Conklin NNP
+Lahan NNP
+Mexican-food JJ
+Strenger NNP
+Maneret NNP
+Kenneth NNP
+Kate NNP NN
+ingredient NN
+trade-school NN
+interpenetrates VBZ
+anti-reformers NNS
+N.L. NNP NN
+Pixley NNP
+offputting JJ
+Groot NNP
+cervix NN
+distinctly RB
+single-sponsor JJ
+Brokaw NNP
+collectors NNS
+Soft JJ NNP
+intermediate-range JJ
+Lolotte NNP
+Zela NNP
+contagious JJ
+underrated VBN
+FOR IN
+derives VBZ
+Rodeo NNP NN
+retargeting VBG
+FORMERLY RB
+high-voltage JJ
+Aqualon NNP
+greedily RB
+self-images NN
+Attention NN VB
+Selective JJ
+Kaufhof NNP
+Nuveen NNP
+mirrored VBN VBD
+Moline NNP
+congregation NN
+Tina NNP
+Defoe NNP
+cartilage NN
+well-administered JJ
+PIK NNP
+habit NN
+Kuehler NNP
+Wilder NNP
+Booz-Allen NNP
+intensifiers NNS
+Rotterdam NNP
+junctures NNS
+Genesee NNP
+unshirted JJ
+ratchet VB
+atheistic JJ
+Wives NNPS NNP NNS
+Ravel-like JJ
+constantly RB
+flat-rolled JJ
+Osterreichische NNP
+Pepsi NNP NNS
+Bessie\/Harper NNP
+dicks NNS
+raises VBZ NNS
+patrons NNS
+delivre VB
+undreamed VBN JJ
+Governors NNP NNS NNPS
+sunbonnet NN
+Lenin NNP
+machinists NNS
+Over-the-counter JJ
+impotency NN
+single-A-1 JJ NN
+D.C. NNP JJ NN
+incapacity NN
+CHANGES NNS
+sable NN
+vanish VBP VB
+Repnin NNP
+WENT VBD
+Misunderstanding VBG NN
+amortizing JJ VBG
+clone NN VB
+longer-established JJ
+MIG-2\ NN
+dysfunction NN
+NSM NNP
+testily RB
+monoclinic JJ
+vouchsafes VBZ
+rattlers NNS
+Cormack NNP
+religiousness NN
+Volatile JJ
+Cleave NNP
+Slowing VBG JJ
+than... :
+smocks NNS
+high-heeled JJ
+chuckles NNS VBZ
+X. NNP
+Newton NNP
+mountains NNS
+negatives NNS
+Cuomo NNP
+slackening VBG
+Jonathan NNP
+Huang-ti NNP
+lounges NNS VBZ
+micro-organisms NNS
+arraigning VBG
+Poo NNP
+Losing VBG NNP
+Guiftes NNS
+buffing VBG
+junkets NNS
+Fishman NNP
+defiantly RB
+slurries NNS
+Houston-area JJ
+value-problems NNS
+supermainframe NN
+vote-diluting JJ
+autographs NNS
+happenstance NN
+computing VBG NN
+down-down JJ
+qualification NN
+badly-needed JJ
+KOFY NNP
+coliseum NN
+Loma NNP
+chaulmoogra NN
+distension NN
+Tampa NNP
+quam FW
+trafficking NN VBG
+performance NN
+nasal JJ
+rebuilding VBG NN
+staffers NNS
+Forties NNP NNPS
+antennas NNS
+Fulbright NNP
+Feeling VBG
+leg NN
+cowbirds NNS
+T-shirt NN NNS
+Bumkins NNP
+command-and-control JJ
+well-illustrated JJ
+ad-hoc JJ
+tantrums NNS
+insufferable JJ
+adultery NN
+safeguards NNS
+typographic JJ
+printing-press NN
+Bickwit NNP
+people NNS NN
+Looked VBD
+flier NN
+Callaway NNP
+secretarial JJ
+Atalanta\/Sosnoff NNP
+diner NN
+attackers NNS
+strait NN
+SH NN NNP
+Rippe NNP
+frocks NNS
+assertiveness NN
+loonies NNS
+inform VB VBP
+discerned VBN
+Accepted JJ NNP VBN
+Luneburg NNP
+Male JJ NN NNP
+bugless JJ
+demeaned VBN
+Robbery NNP
+deranged JJ VBN
+Facility NNP
+Medmenham NNP
+soberly RB
+Sinfonia NNP
+penetrates VBZ
+pokey JJ
+Gene NNP
+Barge NNP NN
+nonresident JJ
+castle-like JJ
+Puppy NNP
+Anatoly NNP
+vehemence NN
+bloating NN
+poisoner NN
+bond-rating JJ
+thermoformed VBN
+asset-sale JJ
+implore VB
+inadvertence NN
+reopen VB VBP
+capitalized VBN JJ VBD
+pessimism NN
+differentiated VBN JJ VBD
+meteor NN
+Mehrens NNP
+seven-digit JJ
+disulfide NN
+lightheaded JJ
+addressees NNS
+Crampton NNP
+consul NN
+layered VBN
+nonproductive JJ
+outreach NN
+pretended VBD VBN
+Valdiserri NNP
+willful JJ
+absently RB
+Oxidation NN
+models NNS
+speechlessness NN
+redcoats NNS
+paper-goods NNS
+Fairbrothers NNP
+cave NN VB
+non-viral JJ
+Madden NNP
+fulfull VB
+Thursday-night JJ
+nondurables NNS
+integrate VB VBP
+recourse NN
+citya NN
+unjustifiable JJ
+farming NN VBG
+Petermann NNP
+prisoner NN
+poof NN
+despair NN VB
+Sogo NNP
+Conversion NNP NN
+epoch-making JJ
+eaten VBN
+TC NNP
+single-A-2 JJ NN NNP
+Marcoses NNPS
+havin VBG
+studiousness NN
+Newport-based JJ
+cleaned-up JJ
+Schieffelin NNP
+Industrials NNP NNS NNPS
+FELA NNP
+Doubtless RB
+choicest JJS
+Skinny NNP
+Keye\/Donna\/Pearlstein NN
+quick JJ NN RB
+Culturally RB
+notch NN VB
+Shipping NNP NN
+LTCB NNP
+fedora NN
+divans NNS
+British-owned JJ
+bank-backed JJ
+Spreads NNS
+Clerk NNP
+bassinet NN
+Andes NNPS NNP
+sex-discrimination NN
+Mohlere NNP
+bomb-detection JJ
+promulgated VBN VBD
+multiyear JJ
+Tinseltown NNP
+Boulevard NNP
+Apprentice NNP
+Luxembourg-registered JJ
+Sag NNP
+goldbanded VBN
+beasties NNS
+Parts NNS NNP NNPS
+Temperature NN NNP
+GMA NNP
+dilate VB
+overloud JJ
+Course NNP
+moan VB
+Spruce NNP
+facetiously RB
+homesickness NN
+group-identities NNS
+objective NN JJ
+Peronist NNP
+monopolistic JJ
+illustrious JJ
+Abby NNP
+bills-measures JJ
+frustrated VBN JJ VBD
+yb NN
+ledge NN
+unprofessional JJ
+non-Russian JJ
+sullenly RB
+landfills NNS
+Dormitory NNP
+federalized JJ
+Fundamentals NNS NNPS
+judicial-bypass JJ
+hard-bitten JJ
+namesake NN
+Majdanek NNP
+liste FW
+Skipping VBG NN
+chimes VBZ NNS
+tribe NN
+character-education NN
+Brown-tobacco JJ
+Donofrio NNP
+Stensrud NNP
+SABLE NNP
+Alkylate NNP
+acquiesced VBD VBN
+tormentors NNS
+mingling VBG
+LOBSTERS NNS
+Ohls NNP
+booker NN
+Youths NNP
+computer-literate JJ
+Oilwell NNP
+Tanii NNP
+sincere JJ
+statesman NN
+build'em VBP|PP
+excluding VBG
+EWC NN
+bed-and-breakfast JJ
+Spider NNP
+underwear NN
+qualified VBN VBN|JJ JJ VBD
+determinable JJ
+Condition NN NNP
+Markrud NNP
+Underserved NNP
+Choral NNP
+Creamer NNP
+comedy NN
+quatrain NN
+kin NN JJ MD
+\*\* SYM NN
+Meriden NNP
+subscribing VBG
+Belvedere NNP
+camouflaged VBN JJ
+shute VB
+Isabella NNP NN
+twitch NN VB
+Puma NN
+edematous JJ
+nonrecurring VBG JJ
+Whitlock NNP
+Eichner NNP
+NEATNESS NN
+girl-san NN
+belts NNS VBZ
+red-necked JJ
+Charge NNP NN VB
+imbibed VBN VBD
+precedent-setting JJ
+Anticipation NN
+four-part JJ
+Mentum NNP
+Alarcon NNP
+anyways UH
+S.P.C.A. NN
+Pesce NNP
+Liang NNP
+cholera NN
+visualize VB
+Newshour NN
+self-redefinition NN
+Handels NNP
+PX NNP
+U.S.-South JJ NNP
+dismissed VBD VBN
+Skolkau NNP
+Ladgham NNP
+charlotte NN
+Guber\/Peters NNP
+Uncas NNP
+Donations NNS
+association... :
+profittaking NN
+marcato FW
+Ardito NNP
+Dunkirk NNP
+Purdew NNP
+Non-Proliferation NNP
+suing VBG
+Stop-Limit NNP
+Vigorous JJ
+higher-capacity JJ
+banished VBN VBD
+Jas NNP
+Varnessa NNP
+Publique NNP
+Crush NNP
+snappy JJ
+single-A-3 JJ NN NNP
+sneezed VBD VBN
+discotheques NNS
+piercing VBG JJ
+graphed VBN
+preconceptions NNS
+Senk NNP
+big-chested JJ
+Parisian NNP JJ
+spinster NN
+Postmaster NNP
+owning VBG NN
+bitchy JJ
+Ammunition NNP
+itemized VBN
+Lachica NNP
+Arms NNP NNPS NNS
+Posted VBN VBD
+pickled JJ
+Rodney-The NNP
+Spar NNP
+Urbana NNP
+analyzing VBG NN
+Marer NNP
+adulterated VBN JJ
+Furies NNS
+entranced VBN
+crusty JJ
+unspoken JJ
+Suffers VBZ
+revamps VBZ
+mark-ups NNS
+Junkers NNPS
+removing VBG
+rearview NN
+hoarse JJ
+Loewy NNP
+decertified VBN
+taxed VBN JJ VBD
+cholla NN
+insidious JJ
+Voss NNP
+Wrist NN
+THYSELF PRP
+fainting NN VBG
+LaMore NNP
+Jacquelyn NN
+Poles NNPS NNP NNS
+ulcerations NNS
+force-fear JJ
+WPS NNP
+Prescott NNP
+antidepressant NN
+Lives NNS NNP VBZ
+evidently RB
+well-off JJ
+Copernicus-the-astronomer NN
+Ehrhardt NNP
+Dynascan NNP
+scouring VBG NN
+husks NNS
+Giraldi NNP
+oases NNS
+'N NNP CC
+DeSio NNP
+peltry NN
+Grandparent NNP
+Lukman NNP
+Free-Will NNP
+mediated VBN
+biz NN
+Aaa-ee UH
+Priddy NNP
+Mahoney NNP
+nitrate NN
+flies VBZ NNS
+Lomb NNP
+hable JJ
+dam NN JJ UH
+energize VB
+obliging JJ
+dines VBZ
+professionals NNS
+Rollins NNP
+self-awareness NN
+Valois NNP
+drug-pushing JJ
+Aberdeen NNP
+Asia-Pacific NNP JJ
+thrift-rescue JJ NN
+Neubauer NNP
+enthrones VBZ
+grasped VBN VBD
+Governer NNP
+microseconds NNS
+Philadelphia-area JJ
+--those DT
+hobbing VBG
+Fudomae NNP
+Ledyard NNP
+HonFed NNP
+torch-lit JJ
+Pop NN NNP
+moss-covered JJ
+Hallman NNP
+rehashed VBD
+decriminalization NN
+sunning VBG
+intradepartmental JJ
+Wyman NNP
+pro-ALPA JJ
+maximum-security JJ
+baccalaureate NN
+ontological JJ
+Tougas NNP
+catastrophic-care NN JJ
+interministerial JJ
+Garnett NNP
+Margret NNP
+hysterical JJ
+Bruegel NNP
+A.A.U. NNP
+once-scandalous JJ
+safest JJS
+screwdriver NN
+Kedgeree NN
+interleukin-1 NN
+greetings NNS
+Bush NNP
+Kimberly NNP
+pimps NNS
+stole VBD
+McCafferty NNP
+footprint NN
+snapped VBD VBN JJ
+revitalized VBD VBN
+Hardwicke NNP
+DRAMs NNS NNPS
+relationship-building NN
+Picus NNP
+in-depth JJ
+clarity NN
+rascals NNS
+vertical-restraints NNS
+mobster NN
+Gisele NNP
+Katcher NNP
+Grease NN
+horned JJ
+effectiveness NN
+unsteadily RB
+soon-to-be-sold JJ
+Mandresh NNP
+Perignon NNP
+gassy JJ
+foster VB JJ
+daughter-in-law NN
+Engraph NNP
+marine-shipping JJ
+claimed VBD VBN
+inclination NN
+Dodson NNP
+Okobank NNP
+tacit JJ
+Georgette NNP
+overpowered VBN VBD
+Poldowski NNP
+Dorsten NNP
+water-treatment NN JJ
+Salive NNP
+lends VBZ
+hurtled VBD
+Conseil NNP
+non-familial JJ
+Indonesians NNPS
+old-growth JJ
+new-house JJ
+Blasphemous JJ
+callers NNS
+Relieved JJ
+Act NNP NN
+gaggle NN
+fast-approaching JJ
+judgment NN
+Karatz NNP
+minicomputer NN
+Arrangement NNP NN
+are VBP NNP
+freedom-conscious JJ
+Grevyles NNP
+benzodiazepines NNS
+DJS-Inverness NNP
+glories NNS VBZ
+Newburyport NNP
+on-ramps NNS
+Kurdish JJ
+cameramen NNS
+Whitehouse NNP
+twirls VBZ
+modernization NN
+Kandemir NNP
+beer-tax JJ
+parcel NN VBP JJ VB
+punish VB VBP
+planning NN VBG
+'70s NNS CD
+affidavit NN
+Field-Fisher NNP
+fished VBN
+postage NN
+were VBD VB
+claimants NNS
+Kochanek NNP
+interleukin-2 NN
+merger NN
+emcee NN
+Taft NNP
+DM235 CD
+voter-registration JJ
+hosses NNS
+Solomon-like JJ
+Benno NNP
+Laplace NNP
+monocrotophos NNS
+DeSoto NNP NN
+chaplain NN
+henceforth RB
+jauntily RB
+Sugars NNPS
+contributions NNS
+Telephone-operations NNS
+Eliezer NNP
+shoot-'em-up NN
+hecatomb NN
+Pollnow NNP
+Danilow NNP
+constipation NN
+Hotline NNP
+s-values NNS
+U.S NNP SYM
+Hertz NNP
+monitor VB NN VBP
+Escort NNP
+wold MD
+Liman NNP
+rollback NN
+Trans-Mediterranean NNP
+traumatized VBD VBN
+McClure NNP
+Fundidora NNP
+expose VB NN VBP
+sage NN JJ
+nous FW
+low-lying JJ
+Lindzen NNP
+Dentistry NNP
+PILGRIM NNP
+sighed VBD
+OOH NNP
+script NN
+nudging VBG
+exact JJ VB
+TD NNP
+Glance VB
+Viennese JJ
+ESystems NNP
+dinosaur NN
+odds NNS
+broadcasts NNS VBZ
+esoterica NNS
+Traveling VBG NNP
+hung VBD JJ VBN
+bids NNS VBZ
+munis NNS
+a.m.-6 CD
+Amfesco NNP
+tenths NNS
+cold-cereal JJ
+Subpoenas NNS
+Lemon NNP
+learns VBZ
+Rekindled VBN
+maximized VBN
+continence NN
+image-provoking JJ
+socks NNS
+worksheets NNS
+rabbit NN
+Casanovas NNPS
+interleukin-3 NN
+reinvest VB VBP
+sizzled VBD
+lockstep NN
+periodicity NN
+Unsuccessful JJ
+Telemann NNP
+Kishimoto NNP
+Shangri-La NNP
+Mambelli NNP
+Massenet NNP
+lain VBN
+Braques NNPS
+layouts NNS
+CompuServe NNP
+fantasies NNS
+sticky-fingered JJ
+Australasian JJ
+Instruments NNPS NNP NNS
+Lyster NNP
+Transcendental JJ
+Perez NNP
+reviewing VBG NN
+yc NN
+oversupply NN
+service-center NN
+Coach NNP NN VB
+archetype NN
+Reine NNP
+kaleidescope NN
+speechless JJ
+Bodily NNP
+Brigadier NNP
+Mama NNP NN
+Attracted VBN
+probaby NN
+sprays NNS
+mechanism NN
+FRANCHISE NN
+creeper NN
+purtiest JJS
+lily NN
+Philippines-backed JJ
+SHELTERS NNS
+Tjokorda NNP
+Prego NNP
+wrench VB NN
+race-driver NN
+preparing VBG
+Humble NNP
+bummed VBN
+Boucher NNP
+inspired VBN JJ VBD
+Choose VB
+Masonry NNP
+Brindisi NNP
+retained VBN JJ VBD
+disposables NNS
+forward-rate JJ
+furiouser RBR
+Asensio NNP
+polygynous JJ
+halfback NN
+Placid NNP
+unflattering JJ
+co-production NN JJ
+Bakeries NNP
+Greenleaf NNP
+passenger-restraint NN
+boun NN
+all-important JJ
+garrisoned VBN
+Gabelman NNP
+flour-milling JJ NN
+rator NN
+interleukin-4 NN
+Cholesterol NN
+Hyun NNP
+mushroomed VBN VBD
+cross-eyed JJ
+grim JJ
+explosive JJ NN
+Princeton NNP
+jokers NNS
+pest NN JJS
+trial NN VB
+irresolute JJ
+narrowest JJS
+lobbyist NN
+recommend VB VBP
+orbits NNS
+horizon NN
+predominantly RB
+righteous JJ
+up-pp RP
+runing VBG
+accented VBN JJ
+Tinker NNP
+polar JJ
+Spirited JJ
+Melanesian NNP
+cinders NNS
+prewar JJ
+Ollari NNP
+old-name JJ
+executive-type NN
+Rito NNP
+workers NNS
+classifications NNS
+boaters NNS
+Spike-haired JJ
+Intense JJ
+Ado NNP
+attained VBD VBN
+Boondael NNP
+beef-fat JJ
+Comprised VBN
+travelogue-like JJ
+SIERRA NNP
+Flight NNP NN
+protoplasmic JJ
+fulminating VBG
+little-publicized JJ
+peered VBD VBN
+Pennzoil\/Texaco NNP
+doggedly RB
+Chiaromonte NNP
+vehicle-loan JJ
+dominantly RB
+thyrotoxic JJ
+Cliburn NNP
+coveting VBG
+interesting JJ
+Collett NNP
+Pierpont NNP
+Korea NNP
+snake-oil JJ NN
+cloudy JJ
+Western-style JJ
+abstractionists NNS
+Kenworthy NNP
+Cir. NNP
+retina NN
+Fleischman NNP
+growth-suppressing JJ
+G.P. NNP
+reckless-endangerment NN
+low-level JJ
+Mottice NNP
+Prendergast NNP
+substracting VBG
+fineness NN
+car-maker NN
+Barabba NNP
+Harvey NNP
+survivability NN
+environmentalist-actor NN
+Tygartis NNP
+stepgrandmother NN
+autonomy NN
+laugher NN
+Mira NNP
+fifth-inning NN
+Barlow NNP
+Saucony NNP
+college-bound JJ
+heroes NNS
+Testy JJ
+half-billion JJ
+serviceable JJ
+shoulder-high JJ
+blinded VBN
+Shouldering VBG
+scorekeepers NNS
+nigh RB
+Vilas NNP
+abridgment NN
+Middleman NN
+fifteen-sixteenths NNS
+Richwhite NNP
+tiptoed VBD VBN
+linked VBN VBD JJ
+Ratto NNP
+jalopy NN
+area-wide JJ
+Wiley NNP
+aberration NN
+Panorama NNP
+turbogenerator NN
+Reaganite JJ
+financial-market JJ NN
+wailing VBG NN
+still-dark JJ
+bien FW
+doubters NNS
+Opposed VBN
+plastering NN
+electriques FW
+Kontrollbank NNP
+overwritten JJ
+Northview NNP
+sluggish JJ
+compacted JJ VBN
+Southhampton NNP
+recyclable JJ
+Stadtmauer NNP
+Boat NNP NN
+Lyman NNP
+flings NNS
+'Guesstimates NNS
+rabble NN
+conceptually RB
+Nepalese NNPS NNP JJ
+sun-warmed JJ
+merges VBZ NNS
+judicial-conduct NN
+permeate VB
+sliced VBN VBD
+Christoph NNP
+time-poor JJ
+dressings NNS
+right-to-lifers NNS
+enacting VBG
+well-established JJ
+Mischa NNP
+submariners NNS
+Burkes NNPS NNP
+Shantung NNP
+DRILLING NN
+town-watching JJ
+primitive-eclogue JJ
+inoculations NNS
+Flow-Mole NNP
+muse NN VB
+Vanourek NNP
+vs NNP IN
+nugget NN
+impart VB
+foals NNS
+many-sided JJ
+exclaims VBZ
+Dough NN
+Port-au-Prince NNP
+primeval JJ
+Colder JJR
+snag'em NN
+habitats NNS
+McKusick NNP
+spread-sensitive JJ
+ribosomal JJ
+Calcutta NNP
+depose VB
+steadfastness NN
+mite-box NN
+uninterrupted JJ
+humblest JJS
+set-asides NNS
+Corp.\/Europe NNP
+Marche NNP
+uncompromising JJ
+followed VBD VBN|VBD JJ VBN
+Kimbark NNP
+Hippocrates NNP NNS
+bargain-basement JJ NN
+existent JJ NN
+teamwork NN
+Heretofore RB
+obstacles NNS
+counter-demand NN
+harassed VBD VBN
+pop-out JJ
+saleswomen NNS
+differentiates VBZ
+constrains VBZ
+Geddes NNP NNPS
+worlds NNS
+shot NN VBD VBN
+tatters NNS
+bookstores NNS
+Yamata NNP
+spun VBN VBD
+return-preparer NN
+Casals NNP
+gasoline-powered JJ
+POINTS NNPS
+PHS NNP
+Tremblay NNP
+Aricaras NNPS
+a.m.-7 CD
+replaces VBZ
+Scams NNS
+Dewhurst NNP
+unimpressive JJ
+Commemorative NNP
+bullishly RB
+migrations NNS
+computation NN
+Galbani NNP
+Minter NNP
+Salwen NNP
+crumbly JJ
+Steinbergs NNP
+Yokosuka NNP
+prepayment-protected JJ
+etes FW
+Hinckley NNP
+Line-item JJ
+Irish-Soviet JJ
+Catalysts NNS
+frequently RB
+realigned VBD JJ
+ceased VBD VBN
+ICA NNP
+F-18s NNS
+Crutzen NNP
+betraying VBG
+Stroud NNP
+D-night NN
+employment-services JJ
+Dancing NN
+Aylesbury NNP
+shanty NN
+hym PRP
+usurp VB
+Aloft JJ
+Blandon NNP
+Tennessean NNP
+of'tholin NN
+sub-station JJ NN
+sharpest JJS
+TRIAL NN
+lump-sum JJ NN
+Mi NNP FW
+Polysar NNP
+Sportscreme NNP
+Falwell NNP
+Ceramic JJ
+Chevrolet NNP NN
+incense NN
+Custom NNP JJ
+remarked VBD VBN
+Signs NNS
+T-1000 NNP
+pasted VBN VBD
+haunt VB VBP NN
+Seita NNP
+stabilizer NN
+strengthens VBZ
+status-roles NNS
+roleplaying NN
+classroom NN
+alluded VBD VBN
+Famous NNP JJ
+retch NN VB
+p.m.-midnight NNP NN
+conceivable JJ
+handset NN
+social-role NN
+sojourn NN
+memos NNS
+Novato NNP
+Marketing NNP NN VBG VBG|NN
+untruth NN
+Question NN VB NNP
+expansiveness NN
+GMC NNP
+Pharmacies NNS
+Asil NNP
+POLITICAL JJ
+quibs NNS
+sprig NN
+emphatically RB
+Object NN
+alienated VBN VBD
+neutrality NN
+Depictions NNS
+proton NN
+amortize VB
+Wonjerika NNP
+symbiotic JJ
+dolt NN
+Racketeering NNP
+confident JJ
+heade NN
+eight-person JJ
+Interprovincial NNP
+forward-looking JJ
+Mervin NNP
+shortening VBG NN
+forward-moving JJ
+mountaineers NNS
+skewer NN
+feather-like JJ
+corporativism NN
+arson NN
+success-oriented JJ
+excelsior NN
+Rhys NNP
+adagios NNS
+fireweed NN
+agro-industrial JJ
+Maurits NNP
+Surging VBG
+Interstate NNP JJ NN
+Krauts NNS
+conquest NN
+elan NN
+computer-products NNS JJ
+gauges VBZ NNS
+allusions NNS
+Laporte NNP
+Symposium NNP NN
+pater NN
+shielded VBN VBD
+Webster\/Eagle NNP
+Diffring NNP
+recession-plagued JJ
+Bromagen NNP
+Lindemanns NNPS
+patriotism NN
+Managing NNP VBG NN
+amphitheater NN
+Reach NNP
+Sprinkle VB
+safe-deposit JJ
+fill-ins NNS
+culminates VBZ
+enable VB VBP
+surrendering VBG
+effectuate VB
+candidate NN
+Flea NNP
+Incurably RB
+market-opening JJ
+iodide NN
+Stonewall NNP
+single-warhead NN
+Ornelas NNP
+grin NN VB
+chien FW
+over-emphasize JJ
+impresario NN
+Bobo NNP
+Barnes NNP NNS
+Oum NNP
+Chesaning NNP
+dogging VBG
+disobeyed VBN VBD
+fervent JJ
+Close RB VB NNP VBP JJ
+constraint NN
+Ormoc NNP
+redactor NN
+now-misplaced JJ
+shrimp NN
+Judah NNP
+Aska NNP NN
+Shangkun NNP
+time-on-the-job JJ
+Ojibwa NNP
+encompassed VBN VBD
+Harvie NNP
+price-growth JJ
+Schnabel-Pro NNP
+cats NNS
+downshoot NN
+Jihong NNP
+Burchuladze NNP
+Skypak NNP
+AH-64 NN NNP
+Pearlstine NNP
+either DT CC IN RB RBR
+Thirty-ninth NNP
+Dolan NNP
+pursuits NNS
+threehour JJ
+intransigent JJ
+defector NN
+Lanza NNP
+scarcest JJS
+axle-breaking JJ
+mankind NN
+well-bred JJ
+Wary JJ
+Elizario NNP
+waged VBN VBD
+Klejna NNP
+anti-war JJ
+expressions NNS
+Rampell NNP
+foresaw VBD
+privet NN
+Liliputian NNP
+Langevin NNP
+Eternity NN
+Littlefield NNP
+drainage NN
+auction NN VB
+Idle JJ
+Kleiner NNP
+Rifenburgh NNP
+Litta NNP
+Harlan NNP
+Ferment NN
+'Hey UH
+EISA NNP
+stabilizes VBZ
+music-making NN
+threat NN
+hematologist NN
+Barnard NNP NN
+ETV NNP
+Soyuzgoscirk NNP
+Sisulu NNP
+non-trade-related JJ
+Crutcher NNP
+over-regulation NN
+Viaje NNP
+thrillers NNS
+GLI NNP
+shrink VB NN
+Teeter NNP
+Aspen NNP
+SAKOS FW
+pileups NNS
+loan-by-phone JJ
+Bad JJ NNP
+narcokleptocrat NN
+stumpage NN
+novo FW
+hitman NN
+Reuter NNP NN
+Olestra NN NNP
+Telerama NNP
+Rep NNP
+brigade NN
+carelessly RB
+Allied-Lyons NNP
+poultices NNS
+lumbering JJ NN
+Atco NNP
+stab NN
+Cieca NNP
+mythological JJ
+goal-line NN
+Hindoo NNP
+gardened VBD
+push-up NN JJ
+sonnet NN
+Isabelle NNP
+Sultane NNP
+two-colored JJ
+Baltasar NNP
+contacted VBN VBD
+fusing VBG NN
+fantastically RB
+corporate-securities JJ
+Conestoga NNP
+financial-industrial JJ
+tariff-free JJ
+concludes VBZ
+high-toned JJ
+rend VB
+Flax NNP
+Gentile NNP
+forest-product NN
+blackboard NN
+eyewear JJ NN
+Kanebo NN NNP
+disbelieving VBG
+SOCIETY'S NNP
+equilibrium NN
+Evensen NNP
+motor-car NN
+MEMOS NNS NNPS
+Overweight JJ
+squeegee VBP
+Clearer JJR
+Fromstein NNP
+finals NNS
+a.m.-8 CD
+speechwriters NNS
+suppresses VBZ
+Carli NNP
+parasites NNS
+Kayne NNP
+W.A. NNP
+Weeds NNS
+computer-making JJ
+iota NN
+toccata NN
+Purdie NNP
+loaders NNS
+engaging VBG JJ
+Nines NNPS
+servant NN
+wafting VBG
+playwright NN
+pontiff NN
+saddled VBN VBD JJ
+rainwater NN
+requalify VB
+Hime NNP
+Unconcerned JJ
+ibuprofen NN
+fripperies NNS
+Electricity NNP NN
+extrapolations NNS
+Granin NNP
+well-chronicled JJ
+malunya NN
+Axa-Midi NNP
+Skandia NNP
+By-the-Sea NNP
+Scobee-Frazier NNP
+expiation NN
+Bowden NNP
+Cooperation NNP
+populous JJ
+Stella NNP
+Honjo NNP
+Bahia NNP
+outlasted VBD
+Rudi NNP
+druggies NNS
+Hoa NNP
+Italian-American JJ
+twenty-five CD JJ NN
+heed VB VBP NN
+highlighted VBN VBD
+'P JJ
+Marcia NNP
+intellectually RB
+Veatch NNP
+electrical-engineering JJ
+smudge NN
+shipbuilder NN
+whose WP$
+Quintus NNP
+full-power JJ
+exiles NNS
+-1 CD
+validate VB
+solutions NNS
+install VB VBP
+wolf NN
+Amdahl NNP
+watering VBG NN
+Brechtian JJ
+multitudinous JJ
+Grizzlies NNS
+Cogefar NNP
+Mohasco NNP
+renewals NNS
+Complaint NN
+Caribe NNP
+Rastus NNP
+automated VBN VBN|JJ JJ VBD
+LeCave NNP
+sucked VBD VBN
+flaring VBG JJ
+egg-breaking NN
+abrasion-resistant NN
+manufacturing NN VBG
+Jungho NNP
+boyhood NN
+tie NN VBP VB
+longhaired JJ
+merchant NN JJ
+varnish NN
+cash-starved JJ
+spackle VB
+insider-trading NN JJ
+Airways NNPS NNP
+lymphocytes NNS
+Grigori NNP
+handwriting NN
+science-education NN
+Lo NNP UH
+gutters NNS
+harddisk NN
+Sophocles NNP
+Morishita NNP
+march NN VBP VB
+Theft NN
+ex-hurler NN
+rowdy JJ NN
+faker NN
+competitive JJ
+Stowey NNP
+ATTACK NN
+metropolis NN
+assessments NNS
+compound-engine JJ
+Berrigan NNP
+long-haul JJ NN
+self-acceptance NN
+Coroner NN
+billion-yen JJ
+copyrights NNS
+CHARITABLE JJ
+fired... :
+accountants... :
+perish VB
+planoconcave JJ
+ambassadors NNS
+vine-shaded JJ
+Martian NNP JJ
+spaniel-like JJ
+strength NN
+Jewel NNP
+Meinung FW
+hypothesis NN
+Niobe VB
+Conspicuous JJ
+Claremont NNP
+NATO-Warsaw NNP
+Detached VBN
+Willson NNP
+Good-by UH
+operative JJ NN
+Maggart NNP
+Anaconda NN NNP
+Barnet NNP
+confessions NNS
+omits VBZ
+Millo NNP
+erode VB VBP
+ocher NN
+Atwells NNP
+gran'dad NN
+staying VBG JJ NN
+wo MD
+wrecked VBD JJ VBN
+retail-sales JJ NNS
+demure JJ
+in-group JJ NN
+Torresi NNP
+exposition NN
+Chinese-British JJ
+dissolved VBN VBD
+commodity-swap NN
+Pancoast NNP
+viewer NN
+rhetoricians NNS
+single-parent JJ
+Sovtransavto NNP
+triple-tank JJ
+kola NN
+ex-President NNP JJ
+skidding VBG
+Gavin NNP
+FRE NNP
+pooling-of-interest JJ
+TECO NNP
+leveraged-takeover NN
+SK NNP
+Self-expression NN
+dimensions NNS
+impelling JJ
+conserved VBN
+Turned VBN
+natures NNS
+baldish JJ
+disqualification NN
+biochemical JJ
+single-owner JJ
+Harmony NNP NN
+freight-cost JJ
+decomposed JJ
+Alberto NNP
+M.D NNP
+sector NN
+Deak NNP
+slips NNS VBZ
+Attic NNP JJ
+denote VB VBP
+inspirationally RB
+refrigerator NN
+quick-frozen VBN
+swears VBZ
+well-ruled JJ
+formidably RB
+altercation NN
+overkill NN
+right-to-work JJ
+seventeen-inch JJ
+materiel NN
+Carrier NNP NN
+reinvigorating VBG
+indpendent JJ
+spokesman NN
+Guarascio NNP
+lake NN
+turnpikes NNS
+rouse VB
+outgeneraled VBN
+managerial JJ
+Amidst IN
+Nitsuko NNP
+manzanita NN
+Cupboard NN
+Inheriting VBG
+Hanover-Pebble NNP
+Brunk NNP
+mad JJ
+slowly RB
+home-builder NN
+offocus NN
+pedestals NNS
+sciatica NN
+Community NNP NN
+Tackle NNP
+Jesperson NNP
+intercepts NNS
+norms NNS
+unscheduled JJ
+indecisive JJ
+gubernatorial JJ
+double-A-plus JJ NN
+Ne NNP
+penny-pinching JJ
+accesses NNS
+Fulgoni NNP
+Wendell NNP
+diffusers NNS
+Gaskin NNP
+specialist NN JJ
+bronze NN JJ
+tax-exempt JJ
+Testing NN NNP
+Economizers NNS
+extendibles NNS
+Russian NNP JJ
+free-trade JJ NN
+hard-liquor JJ NN
+intervention-speeded JJ
+Transcaucasus NNP
+Noonday NNP
+designated VBN VBD JJ
+topicality NN
+downtown NN JJ RB
+Mali NNP
+Sysco NNP
+cowhide NN
+Favorites NNPS JJ
+: :
+presentable JJ
+PRODUCT NN
+oxalate NN
+Ottermole NNP
+Ambiguity NN
+Sigler NNP
+Corsi NNP
+canoes NNS
+Bahamian JJ
+objectification NN
+Sibling NN
+impediments NNS
+arbitrates VBZ
+cockiness NN
+educate VB
+Gottschalk NNP
+hospital-care NN
+Napoleon NNP NN
+Salon NNP
+nostril NN
+venal JJ
+Bode NNP
+Audit NNP
+boiled VBN VBD JJ
+Durables NNPS
+Mellen NNP
+bellhops NNS
+Giacometti NNP
+Stumbling JJ
+substitutes NNS VBZ
+Impressionists NNPS
+Duplicating VBG
+low-stress JJ
+Minato-Mirai NNP
+adversities NNS
+style NN
+ghetto NN
+aromas NNS
+ye PRP SYM NN
+McNamee NNP
+revocable JJ
+globetrotter NN
+advanced-materials JJ
+thanked VBD VBN
+lunge VB
+hoarsely RB
+Pierre-Karl NNP
+well-being NN JJ
+gut'em VB
+morphemic JJ
+chastised VBD VBN
+Fulson NNP
+eluates NNS
+depositor NN
+Vickers NNP
+half-murmured JJ
+specimens NNS
+Denton NNP
+ballooning NN VBG
+grandchild NN
+clip NN VB
+mobilize VB
+frothing VBG NN
+Papers NNP NNS NNPS
+Norte NNP
+Phedre NNP
+Hawaiian-Americans NNPS
+Yuba NNP
+liftoff NN
+homerun NN
+QFC NNP
+Mirror NNP
+contretemps NN
+attempts NNS VBZ
+products NNS
+TRANSCANADA NNP
+Taif NNP
+Warnock NNP
+misrepresentation NN
+mechanically RB
+Abel NNP
+finned VBN
+Criminals NNS
+quality-conscious JJ
+collation NN
+Promenade NNP
+crevasses NNS
+pinks NNS
+opposes VBZ
+Colorado-Ute NNP
+constructon NN
+lastly RB
+Tarantino NNP
+Britta NNP
+tipsy JJ
+rape-and-incest JJ
+cantles NNS
+decried VBD
+Savings NNP NNPS NNS
+Runiewicz NNP
+ratifies VBZ
+Hearing NNP VBG
+Outing NNP
+defines VBZ
+raw-material NN JJ
+occuring VBG
+Surprises NNS
+good-faith NN JJ
+Hmm NN UH
+stock-purchase JJ
+malefactors NNS
+air-conditioned JJ
+laborious JJ
+Hoffmann-La NNP
+librettists NNS
+generalpurpose JJ
+waterlogged JJ
+hollow JJ NN
+houses NNS VBZ
+creativeness NN
+system-management NN
+Picture NNP NN
+Decreasing VBG
+MANUFACTURERS NNPS
+micrometer NN
+Trumbull NNP
+upholstery NN
+hodgepodge NN
+Likening VBG
+usefully RB
+Schone NNP
+water-pollution NN
+pessimist NN
+scapegoating NN
+Bolanos NNP
+poorer-quality JJR
+purchaser NN
+radiosterilization NN
+refund NN VB
+Leeds NNP
+shave VB VBP NN
+state-mandated JJ
+Please VB RB UH NNP
+Gable NNP
+Bock NNP
+limpid JJ
+CalTech NNP
+Selz NNP
+freebase NN
+Pichia NN
+BizMart NNP
+defeated VBN VBD
+resold VBN VBD VBP VB
+willies NNS
+Ailey NNP
+Alcinous JJ
+cities NNS
+pelvis NN
+fakes NNS
+SLIPS VBZ
+Dompierre NNP
+concerns NNS VBZ
+grammarians NNS
+successes NNS
+Rivkin NNP
+Jerritts NNP
+sultans NNS
+Mixtec JJ
+prays VBZ
+Overseas NNP JJ RB
+tremblor NN
+organically RB
+propagate VB
+Humphreys NNP
+Michel-Etienne NNP
+interlining NN
+stoicaly RB
+Derck NNP
+Luxembourg NNP
+Milne NNP
+convulsions NNS
+Samnick NNP
+Million CD NNP
+trenchant JJ
+loophole NN
+psychiatrists NNS
+Wylie NNP
+reproduces VBZ
+Eustis NNP
+fulfill VB VBP
+Ku NNP
+redeeming VBG JJ
+Redmond NNP
+Dederick NNP
+containment NN
+found VBD VBN VB
+stamping VBG VBG|NN NN
+conversations NNS
+indisputable JJ
+expedients NNS
+fixed-price JJ
+bidders NNS
+garbage NN
+launcher NN
+lipoproteins NNS
+indirectly RB
+counter-balanced JJ
+collapsed VBD JJ VBN
+ugly JJ
+schoolmates NNS
+notched VBN VBD
+Dolce NNP
+removal NN
+commenting VBG
+Hill NNP
+beveled VBN
+cement NN VB
+granddaddies NNS
+Coykendall NNP
+Tunnel NNP
+claustrophobia NN
+aeration NN
+palate NN
+turn-ons NNS
+ICC NNP
+eccentric JJ NN
+RELEASE NN
+Fund-Raisers NNS
+Methylene NN
+coin-cleaning JJ
+Norsk NNP
+liberalizations NNS
+symptomless JJ
+Sommer NNP
+non-swimmers NNS
+UV-B NN JJ NNP
+Biedermann NNP
+modems NNS
+swamping VBG
+operations\ NNP
+Kalmuk NNP
+crowed VBD VBN
+vu NN
+kindly RB JJ
+rounded VBN JJ VBD
+porters NNS
+first-order JJ
+Sponsored VBN
+Diplomats NNS
+Considered VBN
+vocalize VB
+Maize-Products NNPS
+childbirth NN
+grip NN VBP
+devilish JJ
+wondrously RB
+Deal NNP NN
+Marysville NNP
+recurred VBD VBN
+emptied VBN VBD
+Ainu NNP
+clothiers NNS
+transcendence NN
+clippings NNS
+circonscription NN
+misinformed VBN
+Wangenheim NNP
+Del. NNP
+outflow NN
+bemused JJ
+pope NN
+inaugural JJ NN
+helped VBD VBN VBP
+Sohn NNP
+nuclear-arms NNS
+hump NN
+unjustifiably RB
+vehicle-suspension NN
+rotates VBZ
+audibly RB
+uninjectable JJ
+burials NNS
+disconnecting VBG
+frivolity NN
+management-employee NN
+miniseries NNS NN
+Unmarried JJ
+polymers NNS
+Brauchli NNP
+listeners NNS
+appreciating VBG NN
+Zagros NNP
+corked JJ
+Aga NNP
+Hammack NNP
+Cupertino NNP
+cable-TV-system NN
+reinsurers NNS
+home-delivered JJ
+Bellomo-McGee NNP
+starlet NN
+agressive JJ
+deformity NN
+'nough JJ
+Greenpeace NNP
+colognes NNS
+Cindy NNP
+twenty-first-century JJ
+seventy-six JJ
+Machon NNP
+storefront NN
+Cavett NNP
+free-buying JJ
+Cuatrecasas NNP
+outlanders NNS
+reunions NNS
+procedures NNS VBZ
+loveliness NN
+claustrophobic JJ
+pacify VB
+Ambiguan JJ
+unsmiling JJ
+stasis NN
+classless JJ
+spied VBD VBN
+English NNP JJ NNPS NNS
+Klette NNP
+provoking VBG JJ
+Tanin FW
+Uniondale NNP
+allegations NNS
+gurgling VBG
+drumming VBG
+wept VBD VBN
+Swasey NNP
+brazier NN
+mustered VBD VBN
+balsams NNS
+Sunflowers NNS
+Bourcier NNP
+Stiemerling NNP
+generating VBG NN
+purchases NNS VBZ
+Walther NNP
+Fuck VB
+databases NNS
+commencing VBG
+womb NN
+Hartzog NNP
+giggling VBG
+mackerel NN
+herpetologists NNS
+anointing VBG
+Linden NNP
+test-practice JJ
+stitch NN
+prudentially RB
+junk-market JJ NN
+overrated VBN
+batsman NN
+trinkets NNS
+jackboots NNS
+bookkeeper NN
+Globalization NNP NN
+tongued VBD JJ
+ist FW
+Primark NNP
+auto-limitation NN
+downfall NN
+monolith NN
+skillfully RB
+transition NN
+Fans NNS
+ATS\ NNP
+reverence NN
+sectionalized JJ
+topnotch JJ
+Crary NNP
+Ibsen NNP
+ascertained VBN VBD
+contact NN JJ VB
+stopgap NN JJ
+incorporate VB VBP JJ
+new-mown JJ
+Nernst NNP
+N.M. NNP
+graphic-arts NNS
+Engle NNP
+steam-generating NN
+less-serious JJ
+Persico NNP
+open-market JJ NN
+Maria NNP
+Marubeni NNP
+seedlings NNS
+Lanyi NNP
+mush NN
+Millburn NNP
+Crew NN NNP
+auditor-general NN
+outcrops NNS
+air-conditioner NN
+fell VBD JJ NN VBN
+indefinity NN
+Utility NNP NN
+Kingsley NNP
+'nother DT
+sneaker NN
+floundered VBN VBD
+Neo-Paganism NNP
+poisonous JJ
+downgraded VBD VBN
+spiralis NNS
+negligibly RB
+ascribed VBN VBD
+launches VBZ NNS
+Caucasians NNS
+Browning NNP
+Meshulam NNP
+Gargan NNP
+Conn.-based JJ
+Conder NNP
+Downside JJ
+Wycliffe NNP
+Trigg NNP
+Blackstock NNP
+protesting VBG
+Willamette NNP NN
+tempered VBN VBD
+Meager JJ
+fluency NN
+Dawn NNP NN
+O'Keefe NNP
+reorder VB
+proprietor NN
+cold-cuts NNS
+sob VB
+; :
+roadways NNS
+whupped VBD
+sufferings NNS
+show NN VB VBP
+anti-morning-sickness JJ
+comprehending VBG
+capital-reserve JJ
+crumbled VBD VBN JJ
+D.D. NNP
+album NN
+brooded VBD
+once-moribund JJ
+thickest JJS
+yf NN
+awes VBZ
+multi-windowed JJ
+Gardner NNP
+carbon NN
+'Hear VB
+rectification NN
+Hesse NNP
+botanical JJ
+PROMOTION NNP
+DEVICES NNP
+insurance-cost JJ
+malfunctioning NN
+Polymerization NN
+delightful JJ
+Ulanys NNP NNPS
+nodules NNS
+M-K NNP
+Willoughby NNP
+Matters NNP NNS|VBZ VBZ
+sinecures NNS
+secretary-general NN JJ
+Tyszkiewicz NNP
+September-October NNP
+Courant NNP
+voulez FW
+Burr NNP
+halogenated VBD
+-57.6 CD
+rotten JJ
+Twenty-four CD JJ
+plows NNS VBZ
+emotionalism NN
+Raos NNP
+improved VBN JJ VBD
+Malmesbury NNP
+Grahamstown NNP
+proximity NN
+Wave NNP NN
+raftered VBN
+Pot NNP NN
+hunk NN
+Immoderate NNP
+Cestre NNP
+insufferably RB
+unblinkingly RB
+Hereford NNP
+barbecued VBN
+Blaine NNP
+capitalizes VBZ
+chartists NNS
+Skolniks NNP
+Aghazadeh NNP
+entropy NN
+Gro NNP
+Gogo NNP
+golden-parachute JJ
+no-new-tax JJ
+injures VBZ
+Asian-owned JJ
+epidermis NN
+stockholders NNS
+NASDA NNP
+Wragge NNP
+Maldutis NNP
+simulator NN
+anorthic JJ
+co-payment JJ
+Indocin NNP
+anthology NN
+scald VB
+sweetened VBN VBD JJ
+enlivened VBN
+nuclear-powered JJ
+Unicorp NNP
+Cases NNS
+roars VBZ
+price-valuation NN
+reputable JJ
+Take-up JJ
+apt JJ
+decanting VBG
+Ting NNP
+Selling VBG NNP NN
+Gradco NNP
+slickly RB
+harpsichord NN
+Hoc NNP
+Brokerage NN NNP
+featuring VBG
+rejoined VBD VBN
+uranium-mining NN
+P\ NNP
+undersecretary NN
+anodes NNS
+Vroman NNP
+commonwealths NNS
+Mame NNP
+subgroups NNS
+cargo NN
+forecasting NN JJ VBG
+blockade NN
+steam-generation JJ
+daily-wear JJ
+disregard NN VB
+reacts VBZ
+Pavese NNP
+metric JJ NN
+Jeroboams NNPS
+Midas NNP
+omen NN
+Andrews NNP
+kittens NNS
+swings NNS VBZ
+bylaws NNS
+Fourteen CD
+pulled VBD VBN
+Vinegar NNP
+Egypt NNP
+lucks NNS
+comprise. NN
+catchall NN
+frictionless JJ
+refined JJ VBN
+Premont NNP
+Precision NNP NN
+Bronson NNP
+pastness NN
+press-release NN
+unfenced JJ
+thirty-six CD
+Toole NNP
+Mexican JJ NNP
+Agonale NNP
+nutrients NNS
+Estee NNP
+sports-functions NNS
+wishing VBG NN
+Indira NNP
+Broiled VBN
+vote-begging NN
+Kentucky NNP NN
+Methodists NNPS
+elegantly RB
+Pullover NNP
+goddess NN
+reassign VB
+Blue NNP JJ
+cost-reduction JJ NN
+carpeted VBN VBD
+Party NNP NN
+periods NNS
+upper-middle JJ
+violins NNS
+anew RB
+sovereignty NN
+somehow RB WRB
+Nissho-Iwai NNP
+Pottawatomie NNP
+division. NN
+yet-unnamed JJ
+classes NNS
+We've NN
+salinity NN
+Reception NN NNP
+estimators NNS
+kwon FW
+Sony-owned JJ
+Soho NNP
+associates NNS VBZ
+Perasso NNP
+intellect NN
+more-spontaneous JJ
+FDA-defined JJ
+Stookey NNP
+suburban JJ
+southbound JJ
+Pull VB
+exemplified VBN
+anti-development JJ
+FEMA NNP
+equidistant JJ
+beliefs NNS
+Boeotian NNP
+'R NNP
+INGERSOLL-RAND NNP
+pitted VBN VBD
+non-mining JJ
+Margaretville NN
+Urethane NN
+meteorological JJ
+witness NN VB
+creek-filled JJ
+Lesbian NNP
+Sal NNP
+internationalized VBN
+ineffective JJ
+crushed VBN JJ VBD
+Adolescents NNS
+cashmere NN
+remedy NN VB
+dangerous... :
+pacifier NN
+appraised VBN
+tabloid-style JJ
+Cruickshank NNP
+inefficiency NN
+superpremiums NNS
+Outraged JJ
+Drawers NNS
+Polyvinyl NN
+mid-February NNP
+mechanist NN
+Nonconformists NNS
+singularly RB
+Methyl NN
+libraries NNS
+quake-relief JJ
+dents NNS
+volunteer NN VB JJR VBP
+Cf. VB
+Fizkultura NNP
+Ovitz NNP
+demonizing NN
+utilize VB VBP
+Whatman NNP
+say-speak NN
+pouches NNS
+love-hate JJ
+Wash. NNP
+puritanical JJ
+Nevermind VB
+idlers NNS
+frogs NNS
+Spanos NNP
+octagonal JJ
+reinvigoration NN
+Know-Nothing JJ
+Gaunt JJ
+O'Donnell's NNP
+Write-offs NNS
+skipped VBD VBN
+Brant NNP
+triservice NN
+civilised JJ
+province NN
+afar RB
+day-old JJ
+Agents NNS NNP NNPS
+siren JJ NN
+contraventions NNS
+home-service JJ
+delegate NN VB
+dethroned VBN
+Ought MD
+once-rich JJ
+feeding-pain JJ
+Editions NNPS
+Holty NNP
+Angeles-area JJ
+warehousing NN
+condemnatory JJ
+property-tax-cutting JJ
+.. .
+hifalutin JJ
+head-and-shoulders NN
+cents-per-hour JJ
+gild VB
+Puna NNP
+pandering VBG
+sky NN
+kindliness NN
+necktie NN
+out-compete VB
+truculence NN
+Sicilian JJ NNP
+suffice VB VBP
+'Sorry JJ
+bankrupty-law NN
+Pianists NNS
+normals NNS
+Barberini NNP
+exaggerations NNS
+cardiac-drug JJ
+pool NN VBP VB
+Wilhelm NNP
+double-decking NN
+Kowalski NNP
+drowning VBG
+manifested VBD VBN
+voyage NN FW
+emasculate VB
+foresee VBP VB
+anarchy NN
+nonequivalent JJ
+aflatoxin-related JJ
+anti-management JJ
+blind-folded JJ
+comprehensiveness NN
+Displayed VBN
+Gilles NNP
+Jensen NNP
+Tessie NNP
+Charlene NNP
+Wesley NNP
+reassume VB
+Strasser NNP
+Y. NNP
+Professors NNP
+IBJ NNP
+cinch NN VB
+invention NN
+moat NN
+Melloan NNP
+interlopers NNS
+OPA-LOCKA NNP
+blockbusters NNS
+positively RB
+Driving VBG NNP
+Heel-Holiday NNP
+University-EPA NNP
+self-imposed JJ
+nitrogen NN
+cardmember NN
+commendable JJ
+FOX NN
+teaspoons NNS
+Talking VBG
+parsley NN
+denigrate VB
+busy-work NN
+beginnings NNS
+spur VB NN VBP
+Rachelle NNP
+husky JJ
+aramid NN
+open-year JJ
+Ads NNS
+Boyden NNP
+churches NNS
+whirling VBG JJ NN
+Gaspard NNP
+Crippled NNP
+until... :
+heroic JJ
+Rourke NNP NN
+supports VBZ NNS
+battle NN VBP VB
+Reservoirs NNP
+over-allotments NNS
+Saicheua NNP
+Crossair NNP
+resemblances NNS
+Trapped VBN
+DiLuzio NNP
+fiend NN
+silliest JJS
+was'give VBD
+Vachell NNP
+determination NN
+pets NNS
+Bandar NNP
+bloodstains NNS
+bayonet NN
+Bag NN
+web-printing JJ
+Nicosia NNP
+endeavored VBD VBN
+publicsector JJ
+rollover NN
+fundamentalism NN
+Ng NNP
+pictorial JJ
+embezzler NN
+primary JJ NN
+squirreled VBN
+scale NN VB
+Losec NNP
+unblushing JJ
+Milbauer NNP
+Fremantle NNP
+cost-of-living JJ NN
+elongate VB
+frequent-flier JJ
+twirly JJ
+non-lawyers NNS
+notion NN
+one-minute JJ
+vintners NNS
+liniment NN
+rephrase VB
+Conscience NN NNP
+Accord-fighter JJ
+Norwich NNP
+Folks NNS
+underdeveloped JJ
+Joffrey NNP
+Fresno NNP NN
+Chagall NNP
+Aubrey NNP NN
+expend VB VBP
+Utsumi NNP
+parasitic JJ
+unreadable JJ
+Sugary JJ
+scoops VBZ NNS
+executed VBN JJ VBD
+Leonore NNP
+finished VBD JJ VB VBN
+short-haul JJ
+specifically RB
+non-interference NN
+noted VBD JJ VBN
+Farley NNP
+follow-ups NNS
+pacifies VBZ
+Seelbinder NNP
+Jeb NNP NN
+< SYM
+Iranian-backed JJ
+Toussie NNP
+Chesapeake NNP
+yg NN
+bronchioles NNS
+gently RB
+odd-year JJ
+dissociate VB
+Prompt NNP JJ
+Omnicorp NNP
+Winterthur-based JJ
+downsized VBN
+Rohatyn NNP
+satiate VB
+Harrisburg NNP NN
+kebob NN
+ulcer NN
+Goulding NNP
+philanthropies NNS
+Straszheim NNP
+scriptures NNS
+hand-made JJ
+cashier NN
+dual-career JJ
+experiments NNS
+shadow NN VB
+Kafka NNP
+Prentice NNP
+mutinies NNS
+deftness NN
+curious JJ
+Child NNP NN
+dissent NN VBP VB
+sidings NNS
+Follows NNP
+Satisfaction NN
+Army NNP NN
+award NN VBP VB
+Fatman NNP
+Flee VBP
+out-of-town JJ
+rational JJ
+gage NN VB
+conjugated VBN JJ
+Tietmeyer NNP
+birth-prevention NN
+footnote NN
+Foresters NNS
+confusions NNS
+self-pacification NN
+inaugurated VBN VBD
+irruptions NNS
+gentler-sloping JJ
+voluntary-control JJ
+Faber NNP
+Plazek NNP
+Pharmaceutical NNP JJ
+Malato NNP
+nuisance NN JJ
+Dean NNP
+demonstratives NNS
+Commentaries NNPS
+curvature NN
+affect VB VBP NN
+considerately RB
+showdown NN
+Bowder NNP
+enters VBZ
+rolls NNS VBZ
+Dumb JJ
+gaslights NNS
+Tigreans NNPS
+competitveness NN
+toasting VBG
+proven VBN JJ
+plea-bargain JJ
+Networks NNP NNPS NNS
+shopper NN
+exaltations NNS
+dollarette JJ
+terrorizing VBG
+Tammy NNP
+Weakness NN
+pseudo-profundities NNS
+factual JJ
+Eicher NNP
+Tie-vole-ee NN
+ACCOUNT NN NNP
+'bout IN
+Papandreou NNP
+Howley NNP
+commercial-industrial JJ
+perceiving VBG
+Ouray NNP
+Wash.-based JJ
+Ilminster NNP
+cancers NNS
+counterrevolutionary JJ NN
+Freni NNP
+Suite NN NNP
+Zaffuto NNP
+expunging NN
+Disposition NNP
+telephoned VBD VBN
+numerological JJ
+Concerned NNP JJ VBN
+Giants-Houston NNP
+ICE NNP
+Pound NNP NN
+scowling NN VBG
+estimable JJ
+North NNP NNPS JJ NN RB
+MALAISE NNP
+then-moribund JJ
+abreaction NN
+Gershwins NNP
+Concessionaires NNS
+Bernoulli NNP
+oriental JJ
+nominations NNS
+thunder NN VB VBP
+'God NNP
+Ajit NNP
+near-limit JJ
+marina NN
+quality-adjusted JJ
+well-fleshed JJ
+imperative JJ NN
+per-subscriber NN
+Fuqua NNP
+uniting VBG
+Mall NNP NN
+Wenger NNP
+Swedish JJ NNP
+Holtz NNP
+expropriated JJ
+autocrats NNS
+down-payments NNS
+plucked VBD VBN
+budgeted VBN VBD
+differing VBG JJ
+apologist NN
+plutonium-powered JJ
+Abdallah NNP
+electronics NNS NN
+Assembly NNP NN
+previous JJ
+Sam NNP
+spikes NNS
+PCs NNS NNP NNPS
+Smartt NNP
+castanets NNS
+Rita-Sue NNP
+Gamel NNP
+unremitting JJ
+Bridgestone\/Firestone NNP
+Francisco-area JJ NNP
+poised... :
+patent-infringement NN
+double-bogeyed VBD
+Kamchatka NNP
+Bince NNP
+multiples NNS
+boatyards NNS
+transgenic JJ
+martingale NN
+broiler NN
+staf NN
+E.Y. NNP
+carbohydrate NN
+Dingle NNP
+Nasdaq-traded JJ
+failure-to-supervise JJ
+Porche NNP
+'S VBZ
+Arthur NNP NN
+crimping VBG
+roasted VBN JJ VBD
+Hooghli NNP
+hooted VBD VBN
+Joseph-Daniel NNP
+mid-January NNP
+CAROLG NNP
+managements NNS
+catbird JJ
+Arkla NNP NN
+platform-controller NN
+inscription NN
+Diamanti NNP
+Jean-Paul NNP
+Gringo NN NNP
+Suffering VBG
+During IN NNP
+retried VBN
+eggplants NNS
+Welty NNP
+insulator NN
+monstrosity NN
+poltergeists NNS
+Anniston NNP
+Templeman NNP
+Sandinistas... :
+substantiation NN
+foams NNS
+Canticle NNP
+Fetch VB
+dingo NN
+McCauliffe NNP
+glimpsed VBN VBD
+Sigman NNP
+kit NN
+airplane NN
+insofar RB IN
+volcanoes NNS
+clouded VBN JJ VBD
+inherited VBN VBD JJ
+asset-rich JJ
+Mana NNP
+Ponchielli NNP
+Assiniboia NNP
+propagandist NN
+non-edible JJ
+equiment NN
+injury-prone JJ
+flotation NN
+unstructured JJ
+equal JJ NN VB VBP
+compatiblizers NNS
+Bearer NN
+Florio NNP
+Albion NNP
+CLAUSE NN
+religious-right NN
+repudiated VBN VBD
+flat-footed JJ RB
+cost-control JJ
+responsiveness NN
+bravely RB
+Limbo NNP
+Unveiled VBN
+Adjusting VBG
+Minicar JJ
+garaged VBN
+Ohira NNP
+Mills NNP NNPS NNS
+ould JJ
+anti-deer JJ
+objector NN
+revellers NNS
+modernized VBN JJ VBD
+Blood NNP NN
+resonable JJ
+red-carpet JJ
+GERMANY'S NNP
+pails NNS
+tax-advantaged JJ
+payment-in-kind JJ
+Kleiber NNP
+germs NNS
+ideals NNS
+nondefeatist JJ
+Arbel NNP
+conceptions NNS
+Beginning VBG NNP NN
+value-investing JJ
+chicken-and-egg JJ
+revamping VBG NN
+chills NNS VBZ
+depend VB VBP
+industrial-gas JJ
+Karlsruhe NNP
+heaven NN
+dispersed VBN JJ VBD
+Victimization NN
+distills VBZ
+peppermint NN
+spontaneous JJ
+Burt NNP NN
+pre-season JJ
+LAYOFFS NNS
+grating NN
+Nichido NNP
+Eyke NNP
+Jay NNP NN
+Sundome NNP
+Stony NNP
+catcalls NNS
+paper-manufacturing JJ
+Scripture NNP NN
+beneficiary NN JJ
+Peat NNP
+slave-owners NNS
+headwaters NNS
+Galle NNP
+autographed VBN JJ
+potassium NN
+overlapped VBN VBD
+fundamentalist JJ NN
+unlaundered VBN
+catalogued VBN VBD
+urea NN
+PIR NNP
+havens NNS
+Benito NNP
+pentamidine NN
+highest-quality JJ JJS NN
+swift JJ NN RB
+lymphocytic JJ
+Westwood NNP
+powder NN
+Denverite NNP
+Sensenbrenner NNP
+levelheadedness NN
+releases NNS VBZ
+reference-points NNS
+decking NN VBG
+Bruno NNP
+loyalties NNS
+myocardial JJ
+intents NNS
+compatibility NN
+sod NN
+sanitaire FW
+Bah UH
+Meller NNP
+rightly RB
+Jaffray NNP
+stanchest JJS
+balcony NN
+industry-government JJ NN
+everybody NN
+public-information JJ
+lion NN
+non-Catholics NNPS
+stealing VBG JJ NN
+shockingly RB
+record NN JJ VB VBP
+fallout NN
+Ret NNP
+Nationalists NNPS
+super-string JJ
+Bandini NNP
+Marquette NNP
+carats NNS
+minefields NNS
+recooned VBD
+RECENT JJ
+select VB VBP JJ
+grass-fed JJ
+Chile NNP
+subtracted VBN VBD
+C-12F NN
+cruise NN VBP
+Corp.:8.30 NNP
+Hilo NNP
+Lavaughn NNP
+aware JJ
+Gaussian JJ
+refreshment NN
+PennCorp NNP
+collision NN
+Telex NN NNP
+das NNS
+Misa NNP
+Vining NNP
+butternut NN
+sayonara FW
+conscripts NNS
+gassed VBN
+Stephanie NNP
+frustrates VBZ
+all-college NN
+perception NN
+kingdoms NNS
+dissensions NNS
+translucent JJ
+Checked VBN
+melodically RB
+Pooh-like JJ
+telephone-company NN
+Postel NNP
+Cosmo NNP
+Grishaw-Mueller NNP
+foes NNS
+undemocratic JJ
+TI NNP
+Carefully RB
+Somali JJ NNP
+bout NN IN
+Metzenbaum NNP
+Leukemia NNP
+indulgences NNS
+decades NNS
+battens NNS
+supermarket NN
+cash-management JJ
+over-capacity NN
+trapper NN
+Devine NNP
+DataQuest NNP
+principled JJ
+lotions NNS
+counter-claims NNS
+Drubbing NN
+mutilated VBN JJ
+Filmdom NNP
+hallucinations NNS
+behest NN
+walk-way NN
+Verstandig NNP
+Sabre NNP
+Laidig NNP
+abortifacient NN
+Dmitri NNP
+silk NN
+Kittredge NNP
+Piper NNP
+bestsellers NNS
+summing VBG
+Saupiquet NNP
+Milky NNP
+units NNS
+Mullen NNP
+len NN
+granddad NN
+extirpating VBG
+single-employer JJ NN
+firsthand RB JJ NN
+PHOTOGRAPH NN
+Playgirl NNP
+hums VBZ
+airing VBG NN
+cross-fertilized VBN
+mute JJ VB
+Bedbugs NNS
+tubing NN ,
+penalizes VBZ
+Hoe VB
+should... :
+unasterisked JJ
+vocals NNS
+widened VBD VBN
+TRAVEL NN
+Annex NNP
+skeptically RB
+corvettes NNS
+Inning NN
+superpower NN
+rough-hewn JJ
+Kass NNP
+Akita NNP
+documentary-type JJ
+MARKET NNP NN
+Tsunozaki NNP
+fasteners NNS
+safeguarded VBN
+snowballs NNS VBZ
+practitioner NN
+recording NN VBG|NN VBG
+McGregor NNP
+joyous JJ
+Windex NNP
+Chriss NNP
+Dunton NNP
+= SYM
+mixed-up JJ
+classified VBN VBD JJ
+crossroads NNS NN
+V-22 NNP
+public JJ NN RB
+deepens VBZ
+poling VBG
+Warhol NNP
+lint NN
+Yang NNP
+spearheaded VBD VBN
+Chongju NNP
+Preserving VBG
+hairdressers NNS
+sangiovanni NNS
+Angier NNP
+Dabney NNP
+Genzyme NNP
+Margo NNP
+Brassica NNP
+Bastianini NNP
+reflectance-measuring JJ
+living VBG JJ NN
+Barney NNP
+teen JJ NN
+win-win NN JJ
+Independent NNP JJ
+tragically RB
+beer-running NN
+gabble NN
+fused VBN VBD
+touch-starved JJ
+Ruby NNP
+scratches NNS
+Phuong NNP
+defoliation NN
+state-appointed JJ
+vetted VBN
+reiterating VBG
+Schmalma UH
+glamorize VB
+coupes NNS
+Ipswich NNP
+Rapp NNP
+bank-credit NN
+sonic JJ
+Ruettgers NNP
+rainstorm NN
+Nacional NNP
+Stratford NNP VB
+Master NNP NN
+silences NNS
+moonlit JJ
+stag NN JJ
+briefcases NNS
+Quinlan NNP
+Timony NNP
+Rheinstein NNP
+polluters NNS
+Deliberately RB
+Choctaw NNP
+Quixote NNP
+member NN
+deceased JJ NN VBN
+Vellante NNP
+Boaz NNP
+Schachter NNP
+subdivisions NNS
+Schedule NNP
+Bassis NNPS
+ZDF NNP
+San NNP NNS NNPS JJ
+subdued VBN JJ VBD
+headhunters NNS
+Lappenburg-Kemble NNP
+AIRLINES NNPS
+slander NN VB
+oyster NN
+unquestionable JJ
+SWIFT NNP
+huddle NN
+docket NN
+exile\/trade NN
+Frauds NNPS
+Metamorphose NNP
+musk NN
+nullifying VBG
+mode NN FW
+Joynt NNP
+relocate VB NN VBP
+Nissho NNP
+Knute NNP
+stand-alone JJ
+Hawke NNP
+Kary NNP
+Require VB
+airline-interior JJ
+median JJ NN
+unbelievable JJ
+ravaged VBN
+Castings NNP
+pirogues NNS
+unexplored JJ
+Zhu NNP
+unopposed JJ
+Bhd. NNP
+knot NN VB
+encompasses VBZ
+agreeableness NN
+picturesquely RB
+vacuuming VBG NN
+Martinsburg NNP
+-500 CD
+Frosted NNP
+Aquifers NNS
+gaiety NN
+egged VBN
+capsicum NN
+Grevile NNP
+non-AMT JJ
+lessen VB
+first-class JJ NN
+Downey NNP
+riskiness NN
+then-chairman NN
+twine NN
+suject JJ
+Brakke NN
+frumpy JJ
+Greenness NN
+adamant JJ
+herself PRP
+Lorin NNP
+F.B.I. NN NNP
+Treasury NNP NN
+Auschwitz NNP
+Kohnstamm-negative JJ
+TBWA NNP
+Smug JJ
+amongst IN
+Rare JJ
+referral NN
+flavored JJ VBN
+Jeep-brand JJ
+Quarterly JJ NNP
+muffler NN
+mah PRP$
+Gems NNS
+Schumer NNP
+micrometeorites NNS
+Indigestion NN
+INTEREST-RATE NN
+Seizes VBZ
+careers NNS
+Allen-film NN
+-5 CD
+home-nursing JJ
+Soybeans NNS NNPS
+purveyors NNS
+double-bolt VB
+Euro-Communist NNP
+requirements NNS
+Our PRP$ NNP
+liquified JJ
+Fiore NNP
+PageMaker NNP
+Game-Boy NN
+Five CD NNP
+reporter NN
+forgery NN
+illumined VBD
+pockmarked JJ VBN
+Colmans NNPS
+Schaack NNP
+ponderousness NN
+Soil NN
+Seafood NN
+Yalies NNS
+Kohlberg NNP
+Straight JJ
+personal-income JJ
+embarked VBD VBN
+bloodless JJ
+tho NN
+deal-making NN
+frozen-foods NNS
+Saundra NNP
+DGII NNP
+antihero NN
+Compelled VBN
+Leubert NNP
+Vappenfabrikk NNP
+Bills NNS NNP
+fend VB
+astonishing JJ
+cotton NN
+typecast VB
+negotiating VBG JJ NN
+excavations NNS
+earner NN
+infelicitous JJ
+ninety-eight CD
+elide VBP
+petulant JJ
+relatonship NN
+outspoken JJ
+convulsive JJ
+Landesrentenbank NNP
+Cows NNS
+capabilities. NN
+Sanga NNP
+consumerism NN
+Linder NNP
+Fletch NNP
+horrendous JJ
+Perfection NNP NN
+mock JJ VBP VB
+Nynex NNP
+humorless JJ
+pneumatic JJ
+progressives NNS
+Haden NNP
+Stimulating VBG
+credence NN
+yachts NNS
+Gilman NNP
+belongings NNS
+petite JJ
+Fromm NNP
+Frenzel NNP
+scrapbook NN
+Glenda NNP
+Cartoons NNS
+geographical JJ
+appreciation NN
+AirCal NNP
+tea-leaf NN
+arthritis NN
+disband VB
+thickets NNS
+self-confessed JJ
+Montenegrin NNP
+RAF NNP
+Plunging VBG
+free-on-board JJ
+ex-fighter NN
+pianist\/bassoonist\/composer NN
+chalk-white JJ
+words NNS
+Tussard NNP
+uncalled JJ
+process NN VBP VB
+co-produced VBD VBN JJ
+caressed VBD
+soe NN
+Maplecrest NNP
+IDA NNP
+parachute NN VB
+tap-tap NN
+airline-related JJ
+interiors NNS
+possible JJ RB
+Pipes NNP
+Tasuku NNP
+whodunnit UH
+Carlo NNP
+graduate-student NN
+test-drive VB VBP
+triphosphorous JJ
+Counsel/NNP... :
+all-inclusive JJ
+inexperienced JJ
+Mips NNP
+whirlwinds NNS
+Casualty NNP
+island-hopping JJ
+besmirched VBD
+Debevoise NNP
+HIB NNP
+rechristening VBG
+syndicating VBG
+Fla.-based JJ
+Prudence NNP NN
+Lesk NNP
+shirkers NNS
+patients NNS
+SO RB
+nonspecific JJ
+Christ NNP NN UH
+grit NN VB
+angling VBG NN
+flux NN
+sawdust NN JJ
+immunological JJ
+Shock NN
+artifact NN
+armchair NN JJ
+space-rocket NN
+Herron NNP
+sill NN
+pegged VBN VBD JJ
+encouraged VBN VBD JJ
+Catholic-Jewish JJ
+Lynden NNP
+Seward NNP
+assuaged VBN
+non-governmental JJ
+BOZELL NNP
+skeptical JJ
+damnit UH
+fear-filled JJ
+close-in JJ
+folder NN
+overpriced VBN JJ
+Watson NNP
+virtues NNS
+Franchisee NN
+route NN VBP FW IN RB VB
+gastric JJ
+regents NNS
+Marie NNP
+variation NN
+Jed NNP
+Vickery NNP
+Socinianism NNP
+miscegenation NN
+outperformed VBD VBN
+W.B. NNP
+Chateau NNP
+Rolls-Royces NNPS
+Norwick NNP
+Christiansen NNP
+fingerings NNS
+strand NN
+McQuown NNP
+lecturing VBG NN
+dangerously RB
+Steps NNPS VBZ NNS
+swiftness NN
+sterns NNS
+Occupational NNP JJ
+Hine NNP
+Divers NNP
+starre NN
+bishop NN
+Zeitung NNP
+seventeen CD
+grasshoppers NNS
+unsound JJ
+private JJ NN RB
+EXE NNP
+stampeded VBN VBD
+napping VBG
+insult NN VB
+Kennett NNP
+braggadocio NN
+share-buying NN
+epistolatory JJ
+fueling VBG NN
+Lindner NNP
+Hof NNP
+steriles NNS
+Hostile JJ
+top-ranking JJ
+bunko NN
+underlies VBZ
+WTD NNP
+thrift-institution NN
+antiquated JJ
+spewed VBD VBN
+Norborne NNP
+eatables NNS
+self-published JJ
+chinked VBN
+baggy JJ
+lived VBD VBN VB
+Fonseca NNP NN
+Lanzhou NNP
+checker NN
+.fundamentally RB
+sonata NN
+raves VBZ
+Valvoline NNP
+drastically RB
+prostate NN JJ
+rustlers NNS
+statuette NN
+paraquat NN
+hyperfine JJ
+ASLACTON NNP
+Antithyroid JJ
+Machiguengas NNS NNPS
+oilheating NN
+Corners NNPS
+third-worst JJ
+subsist VB
+Earthbeat NNP
+nutritionists NNS
+Primate NNP
+Aghanistan NNP
+co-chief JJ NN
+open-checkbook NN
+behaving VBG
+US-Travel NNP
+Invasion NNP NN
+Middle-aged JJ
+Andromache NNP
+stiffens VBZ
+mimetically RB
+preposterous JJ
+rinses NNS
+Cumulative JJ NNP
+Trans-illuminated JJ
+Store NNP
+off-flavors NNS
+warm-toned JJ
+pealing VBG
+primaries NNS
+after-duty JJ
+decentralization NN
+AAA NNP
+pre-Christmas JJ
+automated-quotation NN
+Komori NNP
+ICG NNP
+Yamanouchi NNP
+Watt NNP
+MicroBilt NNP
+Zeme NNP
+franks-in-buns NNS
+hys PRP$
+> SYM NN
+drop-off NN JJ
+profiled VBN
+handbills NNS
+vibrionic JJ
+occupation NN
+exhaling VBG
+instances NNS
+Deets NNP
+insure... :
+much-heralded JJ
+paycheck NN
+tree-planting NN
+interpersonal JJ
+Killpath NNP
+coefficient NN
+trans-illumination NN
+searching VBG NN
+oven NN
+Trends NNP NNS NNPS
+Hmong JJ NNPS
+IRAN NNP
+rabid JJ
+non-comparable JJ
+stress-provoking JJ
+bourbons NNS
+zur FW
+Ouedraogo NNP
+intimations NNS
+peptidases NNS
+machine-family NN
+Hallingby NNP
+nilly RB
+venerable JJ NN
+dishonorable JJ
+Rarely RB
+Machos FW
+flag-wavers NNS
+chancy JJ
+Wicked NNP
+Sao NNP
+complications NNS
+uphold VB VBP
+disaffiliated JJ
+ringings NNS
+tailoring VBG NN
+Rochester NNP NN
+pro-democracy JJ
+Michelman NNP
+now-notorious JJ
+rubicund JJ
+desist VB VBP
+Enholme NNP
+misquotation NN
+Wenham NNP
+biking NN
+Sarkees NNP
+arabic JJ
+erect VB VBP JJ
+seawater NN
+nonphysical JJ
+matrimonial JJ
+adulterous JJ
+muscle-bound JJ
+low-cost JJ NN
+monkish JJ
+August NNP
+subvert VB VBP
+unlamented JJ
+Age NNP NN
+parte NN
+Lucullan JJ
+coddling NN
+Stranger JJR
+deceptive JJ
+honey NN VB UH JJ
+Dobbs NNP
+half-sister NN
+PLC NNP
+diatomic JJ
+Litigation NNP NN
+PATIENCE NN
+unproblematic JJ
+liquidating VBG JJ NN
+Rat-face NN
+cerebellum NN
+FNMA NNP
+gun-shy JJ
+irreversible JJ
+uhhu UH
+Magog NNP
+covenants NNS VBZ
+now-shaky JJ
+vociferousness NN
+directives NNS
+Counterpoint NN
+theorists NNS
+bumps NNS VBZ
+Ornament NN
+pastel JJ NN
+agrarian-reform JJ
+intellectuality NN
+speciality NN
+strikeout NN
+groundup JJ
+WSJ NNP
+thawing VBG
+journeys NNS
+Accordingly RB
+sterios NNS
+plastics-industry NN
+pluralism NN
+Horwitz NNP
+beggar-thy-neighbor JJ
+prowlers NNS
+rectify VB
+Buchenwald NNP
+Kato NNP
+Corso NNP
+Jacopo NNP
+plant-wide JJ
+mai MD
+Cents NNP NNS
+Badder NNP
+Lone NNP
+oil-production NN
+Smoky NNP
+Guitarist NNP
+Wiesbaden NNP
+dumbfounded JJ VBN
+Spethmann NNP
+Dickens NNP
+Verification NN NNP
+Comprehensive NNP JJ
+congenial JJ
+Scandanavian JJ
+Ky NNP
+unforethought JJ
+Audrey NNP
+hot-air JJ
+farm-engineering NN
+nonentity NN
+Clarence NNP
+Basics NNP NNPS
+Hadley NNP
+asterisks NNS
+airliners NNS
+new-business NN JJ
+Stannard NNP
+Latinovich NNP
+Distributors NNS NNPS NNP
+hosting VBG
+base-stealing JJ
+interfaith JJ
+McAllen NNP
+highlight VB VBP NN
+retrofit VB
+textile-related JJ
+suggestions NNS
+rivers NNS
+cantonal JJ
+Lifeco NNP
+entitlements NNS
+toy-market NN
+doffing VBG
+logger NN
+coherence NN
+for'running VBG
+MountainBikes NNPS
+research-and-production JJ
+Turbin NNP
+maquila NN
+rotational JJ
+astounded VBN JJ
+IBM NNP NN
+Itasca NNP
+inholdings NNS
+engorgement NN
+bemoans VBZ
+uninhabitable JJ
+miniature JJ NN
+featureless JJ
+Daisy-Cadnetix NNP
+qualifies VBZ
+swamps NNS
+Sent VBN
+rebuilt VBN
+humility NN
+Eddie NNP
+Moonlighting NN NNP
+repressions NNS
+Assess VB
+astronauts NNS
+Wyn NNP
+Pederson NNP
+railbiker NN
+Peck NNP
+Translated VBN
+trodden JJ
+Steptoe NNP
+well-house JJ
+disfigured VBD VBN JJ
+conceivably RB
+pitied VBD VBN
+bureauracy NN
+barbs NNS
+Garzarelli NNP
+uncombed VBN JJ
+Artillery NN NNP
+alternative-fuels JJ NNS
+two-tail JJ
+AIDS-inspired JJ
+licking VBG
+birdie NN
+felons NNS
+Pepsi-Cola NNP
+nonsuccessful JJ
+resin NN
+RU NNP
+unchristian JJ
+Tyson-Spinks JJ
+IDB NNP
+voracious JJ
+Mogul NNP
+Wellman NNP
+Newcastle NNP
+PHOBIA NN
+Farming VBG
+lords NNS
+wrestle VB
+attaching VBG
+Rev NNP
+Rangel NNP
+Pulp NNP NN
+Despair NN
+dismisses VBZ
+Skinner NNP
+Sethness NNP
+TransAmerican NNP
+Accident NNP NN
+indemnifying VBG
+grinder NN
+Bertoli NNP
+Haagen NNP
+pipelines NNS
+hindered VBN VBD
+Franklin-Trout NNP
+flowering NN VBG
+rollicking JJ
+Six-year-old JJ
+pursued VBN JJ VBD
+Reily NNP
+woebegone JJ
+Salads NNS
+export NN VBP JJ VB
+broader-based JJ JJR
+hand-painted NN
+skyscrapers NNS
+reassignments NNS
+Appearance NN
+pilloried VBN VBD
+Solesmes NNP
+wt NN
+Offshore NNP JJ
+less-risky JJ
+explicit JJ
+Enzor NNP
+O'Loughlin NNP
+Starting VBG
+expectable JJ
+net-profits JJ
+energetically RB
+safety NN VB
+Rodney NNP
+croaked VBD
+Noteware NNP
+Directors NNS NNP NNPS
+scares NNS VBZ
+febrile JJ
+disgust NN
+teacher-cadet JJ
+securing VBG
+wrongful JJ
+wholesalers NNS
+Hibbard NNP
+Broken NNP VBN JJ
+parsympathetic JJ
+Mo NNP
+scalloped JJ
+bumper-sticker NN
+middle-sized JJ
+preach VB VBP
+pay-in-kind JJ NN
+Sands NNP NNPS
+talk-format NN
+proration NN JJ
+SP NNP
+Bolivar NNP
+entrances NNS
+Louisiana-Pacific NNP
+Geno NNP
+Drunkard NNP
+Guaranty NNP
+Combining VBG
+revolutionaries NNS
+Cisneros NNP
+cost-plus JJ
+good-til-canceled JJ
+borrowers NNS
+Conviction NN
+Seidel NNP
+coloured JJ
+once-staid JJ
+Planitzer NNP
+deemed VBN VBD
+palaces NNS
+Sincere NNP
+invaluable JJ
+low-life JJ
+Sirota NNP
+thousand CD JJ
+Adirondack NNP
+sex-manuals NNS
+four-thirty RB
+unflinching JJ
+corns NNS
+wants VBZ NNS
+Machiavelli NNP
+index-fund JJ NN
+tendentious JJ
+Brumley NNP
+stopovers NNS
+Hog NN
+indisputably RB
+responsive JJ
+doubt NN VBP RB VB
+Pune NNP
+pothos NN
+orchestrated VBD VBN
+Fistoulari NNP
+dope NN
+change NN VBP VB
+slenderer JJR
+knives NNS
+egregiously RB
+retrovision NN
+infinitesimally RB
+dread NN JJ
+dBASE NNP
+supervise VB VBP
+bloke NN
+domino NN
+storeroom NN
+clever JJ
+Crobsy NNP
+Tail NNP
+Bela NNP
+Commercial NNP FW JJ NN
+Medlin NNP
+Memory NN NNP
+reformulated VBN JJ
+twenty-five-dollar JJ
+Aber FW
+Joerg NNP
+staccatos NNS
+Geertz NNP
+in-grown JJ
+six-week-old JJ
+tacks NNS
+arm NN VB
+bespeaks VBZ
+libel NN
+its PRP$
+Nev. NNP
+Knapek NNP
+Hasenauer NNP
+symbolized VBD VBN
+ONE-DAY JJ
+Shays NNP
+guerrilla-held JJ
+relishing VBG
+birthday NN
+whizzes NNS
+kept VBD VBN
+glorify VB VBP
+boa NN
+bloodroot NN
+truth-revealing JJ
+railbikes NNS
+Overhanging VBG
+actual JJ
+Man-Made JJ
+pulsing VBG
+Inderbinen NNP
+micrometeoritic JJ
+cheering VBG
+frazzled VBN
+Soviet-Finnish JJ
+nourished VBN JJ
+subsided VBD VBN
+just-announced JJ
+yj NN
+Natick NNP
+Ciceronian JJ
+Most-recommended JJ
+triplication NN
+pasteurization NN
+Blvd NNP
+X-marked JJ
+mileage NN
+clubbers NNS
+indiscretions NNS
+toad NN
+livestock NN
+Binning NNP
+Macropathological NNP
+Revamps NNP
+spa NN
+accede VB
+weatherproof JJ
+Diego NNP JJ
+Scotch-Irish-Scandinavian NNP
+marine NN JJ
+Ellsworth NNP
+Benny NNP
+brimstone NN
+Annie NNP
+war-time JJ
+new-spilled JJ
+Jew-as-enemy NN
+WWOR NNP
+laser-type JJ
+Primerica NNP
+astoundingly RB
+B.M. NNP
+? .
+fertility-control JJ
+rub NN VB VBP
+anticoagulant NN
+windowpane NN
+Rocky NNP
+Empresa NNP
+Haig NNP
+Convair NNP
+kerygma FW
+Cloth NNP
+bolting VBG
+government-supported JJ
+Zell NNP
+pioneered VBD VBN
+banishes VBZ
+forking VBG
+personal-income-tax JJ
+emotionality NN
+hemolytic JJ
+Getrudis NNP
+Minn. NNP
+Cattolica NNP
+mailmen NNS
+Dresden NNP JJ NN
+Boundary NN
+Maddie NNP
+disinterested JJ
+neo-Nazis NNPS
+recruitment NN
+centralizing VBG JJ
+circles NNS VBZ
+Perin NNP
+--changed VBD
+Prejudice NNP
+shortage NN
+brushfire NN
+Pepper NNP NN
+EITC NNP
+nit-picking NN
+Eighty-Four NNP
+Blythe NNP
+naturalistic JJ
+parrots NNS
+Davy NNP
+Kenyan JJ NNP
+VA NNP
+classic JJ NN
+sign-language NN
+studies NNS VBZ
+Nordic JJ
+trampled VBN VBD JJ
+dutiful JJ
+Out IN RB RP NNP
+insinuated VBD
+underperformance NN
+computer-software NN
+carpal NN
+remedial JJ
+laying VBG NN ,
+sourly RB
+Finger NNP
+Osbert NNP
+rolling-steel NN
+Yom NNP
+Betancourt NNP
+Snapped VBD
+Wortham NNP
+trombonist NN
+countryside NN
+Tracer NNP
+unsympathetic JJ
+dangling VBG JJ
+twice-monthly JJ
+maximizes VBZ
+footfalls NNS
+Kuhn NNP
+Thru IN
+Subtle JJ
+kidnapping NN VBG
+amicable JJ
+deport VB
+friendships NNS
+Featherston NNP
+Dear NNP JJ UH
+dyspeptic JJ
+clean-cut JJ
+girl-friend NN
+Exhausted JJ
+copper-based JJ
+Zbigniew NNP
+Jaffe NNP
+furnaces NNS
+ethicist NN
+penny-stockbroker NN
+joblot NN
+thirtysomething NN NNP JJ
+high-mileage JJ
+Grote NNP
+Devils NNPS
+Guillaume NNP
+Chugai NNP
+additional JJ
+violinists NNS
+revenue-desperate JJ
+gentrified VBN
+Wyo NNP
+Euro-Belge NNP
+brightening VBG
+Tercel NNP
+trick NN VB
+unpublicized JJ
+Callers NNS
+indulged VBD
+Forty-nine JJ
+Bingles NNS
+daydreaming NN
+kneading VBG
+psychotherapy NN
+ash NN
+Asset-backed JJ
+Detroit-based JJ
+computer-science NN
+railroad NN
+watered-down JJ
+denigration NN
+step-by-step JJ
+swingy JJ
+regenerates VBZ
+sturdily RB
+Regime NNP
+environmental-impact JJ
+HUCKSTER'S NN
+MacGyver NNP
+retainer NN
+burger NN
+mobs NNS
+librarians NNS
+Sibylla NNP
+monarch NN
+cubbyhole NN
+throbbing VBG NN
+brochures NNS
+hikers NNS
+glade NN
+prying JJ VBG
+five-consecutive JJ
+cholelithiasis NN
+tunneled VBD
+confound VB
+catchy JJ
+jumbo JJ NN
+psychopath NN
+loosely RB
+catkins NNS
+Guofeng NNP
+hard-line JJ NN
+romancing VBG NN
+bowl NN VBP
+card-activated JJ
+meaner JJR
+bared VBD
+Lu NNP
+Villanueva NNP
+verbally RB
+policemen NNS
+muddled VBN VBD
+Self-censorship NN
+woodsy JJ
+stone NN RB VB
+levamisole NN
+Casey NNP
+RV NN
+Monitor NNP
+low-quality JJ
+Cash-strapped JJ
+reconnaissanace NN
+Rosenwald NNP
+Anctil NNP
+aquisitions NNS
+Tbilisi NNP
+bikini NN
+panacea NN
+deactivation NN
+Royal NNP JJ
+Marcilio NNP
+Cleva NNP
+laundry NN
+Boissoneault NNP
+Lightstone NNP
+dew-sodden JJ
+Conferees NNS
+decomposes VBZ
+Galli NNP
+housewife NN
+Jasper NNP
+Norberto NNP
+demage NN
+rosaries NNS
+Taoism NNP
+under-researched JJ
+deeps NNS
+isolated VBN JJ VBD
+rigid JJ
+Atkisson NNP
+Kanto NNP
+car-safety JJ NN
+unquestionably RB
+net-like JJ
+Merits NNS
+Bashir NNP
+VWR NNP
+pyrometer NN
+Angelenos NNP
+ghouls NNS
+Hosaka NNP
+varityping NN
+proves VBZ
+drug-traffickers NNS
+bathos NN
+AFTERMATH NNP
+little-feared JJ
+Hands NNP NNPS NNS
+lucky JJ
+dictatorships NNS
+Bruns NNP
+theophylline NN
+Divisions NNS
+right-hand JJ
+Bunny NNP
+INSURANCE NNP NN
+Moscom NNP
+incurs VBZ
+misstating VBG
+still-outstanding JJ
+peelback JJ
+Sanderoff NNP
+optical JJ
+nonfiction NN
+Ref. NN
+sequence-tagged JJ
+non-patent JJ
+Damian NNP
+prohibiting VBG
+know VB NN VBP
+conceptuality NN
+echoing VBG
+leech NN VB
+Alba NNP
+eighteenth-century JJ
+Eleazar NNP
+exemplifies VBZ
+Chili NNP NN
+raccoons NNS
+Kellaway NNP
+neutralize VB
+pension-fund NN JJ
+NWA NNP
+accuracy NN
+Muller NNP
+Philibert NNP
+designates VBZ
+Nassau-Suffolk NNP
+meclofenamate NN
+gotten VBN
+high-visibility JJ NN
+twirlingly RB
+loutish JJ
+commandeered VBN
+experimenting VBG
+tainted-meat NN
+Amclyde NNP
+Corder NNP
+thermal JJ
+arise VB VBP
+heel NN
+Marginal JJ
+Oakar NNP
+Me'a NNP
+temblor NN
+Northlich NNP
+Noel NNP
+chasing VBG NN
+Scandinavian NNP JJ
+doughnut NN
+dawdling VBG
+Olick NNP
+quinolone NN
+systems-strategies NNS
+Instrumental NNP
+invoked VBD VBN
+pre-trial JJ NN
+antiserum NN
+ink-jetting JJ
+repertoire NN
+sago NN
+reclassified VBD VBN
+cheapest JJS
+Merieux-Connaught NNP
+Bonaparte NNP
+Itself PRP
+Irishman NN
+six-four CD
+Therapeutics NNPS NNP
+ICI NNP
+plied VBD VBN
+unprecedented JJ
+Fonda NNP
+offbeat JJ
+teasing JJ NN VBG
+Frog-marched JJ
+totalitarianism NN
+built-from-kit JJ
+Horizon NNP
+festooned VBN
+Rosett NNP
+smoggiest JJS
+Apple-Microsoft NNP
+half-year JJ NN
+simmered VBN VBD
+peanuts NNS
+'Will MD
+acronym NN
+nuper FW
+Ariadne NNP
+some... :
+Korff NNP
+Gilley NNP
+sideman NN
+Mattison NNP
+lira NN NNS
+roast NN VB VBN
+--Boca NNP
+experiential JJ
+Aer NNP
+four-square-block JJ
+comedians NNS
+Uneven JJ
+heinous JJ
+Workers NNPS NNP NNS
+Chartered NNP
+governmental-affairs NNS JJ
+Spontex NNP
+follower NN
+ammo NN
+Long NNP JJ RB
+generation NN
+RBC NNP
+Creditanstalt NNP
+MAGURNO NNP
+Westridge NNP
+Lambarene NNP
+Yuan NNP
+roly-poly JJ
+Alferon NNP
+Hayward NNP
+drumbeat NN
+hypertension NN
+casinos NNS VBZ
+inspiration NN
+inspires VBZ
+sodden JJ
+Seynes NNP
+contribute VB VBP
+bleeding VBG NN
+ball-carriers NNS
+mergers-advisory JJ
+matinees NNS
+selecting VBG NN
+Ruff NNP
+unexercised JJ
+Traces NNS
+touch-tone JJ
+mourned VBD
+Calgon NNP
+Earthmen NNPS NNP NNS
+Plateadas NNP
+Loudermilk NNP
+Pagans NNS
+directionless JJ
+Helliesen NNP
+oilseed NN
+adherents NNS
+Teniente NNP
+--subjects NNS
+flirtation NN
+states NNS VBZ
+uncommonly RB
+lobster-backed JJ
+selloffs NNS
+ASHTON-TATE NNP
+Corporations NNS NNPS NNP
+flyaway JJ
+Gallagher NNP
+JUMBO JJ
+Of IN NNP
+cowpuncher NN
+new-job JJ
+neophytes NNS
+said VBD VBN JJ VB
+Kalmus NNP
+Tshombe NNP
+high-value JJ
+Larson NNP
+scandals NNS
+postgraduate JJ
+Coasts NNPS NNP
+purism NN
+short-sell VB
+reviews NNS VBZ
+Carews NNPS
+jars NNS
+Tatanga NNP
+Knesset NNP
+backsides NNS
+stimulations NNS
+personal-injury JJ NN
+wailed VBD VBN
+Pressburger NNP
+Uptick NN
+Unfilled JJ
+central-city NN
+skin-perceptiveness NN
+VICTORIES NNS
+McColl NNP
+second-guessed VBN
+Mountaineer NNP
+dampers NNS
+reflexly RB
+Owasso NNP
+Avmark NNP
+sea-damp JJ
+heaves NN VBD
+physician-executive JJ
+short-story NN
+actively RB
+Ranavan NNP
+Centrum NNP
+Ninja NNP
+starring VBG JJ
+brass-bound JJ
+silo NN
+bugaboos NNS
+lesser JJR RBR
+spoken VBN JJ
+@ IN SYM
+anti-Moscow JJ
+IPTAY NNP
+obsequiousness NN
+O'Neill NNP
+hemlocks NNS
+inhibited VBD VBN
+hires VBZ NNS
+ultra-thin JJ
+stragglers NNS
+alienates VBZ
+Egerton NNP
+schoolteachers NNS
+immensely RB
+articulated VBN
+jejunum NN
+unrifled JJ
+inadvisable JJ
+CATV NN
+breeding VBG NN
+Teams NNS
+experts NNS
+Swine JJ
+WoodMac NNP
+incredulity NN
+tanking VBG
+abruptly RB
+sisters-in-law NNS
+fonder JJR
+Ruppert NNP
+weightlessness NN
+precedence NN
+bargaining NN JJ VBG
+LeBrun NNP
+Cloud NNP
+tonnages NNS
+nobler JJR
+world-ignoring JJ
+syntactically RB
+commercial-credit NN
+one-for-two JJ
+Pa NNP
+Erithmatic NN
+propeller-driven JJ
+Denver NNP
+Hahn NNP
+Furnishes VBZ
+five-member JJ
+meanes NNS
+tilt-top JJ
+Gisors NNP
+whole-milk NN
+Hazlett NNP
+Exton NNP
+unwinding NN VBG
+Nissin NNP
+backflips VBZ
+stock-trading NN JJ
+Krakatoa NNP
+unknown JJ NN
+Stops NNP
+Bombeck NNP
+Yank NN NNP
+spaghetti NNS NN
+northwestern JJ
+Tims NNP
+Incredulous JJ
+home-produced JJ
+farthest JJS RBS
+Johnston NNP
+finanicial JJ
+fumbling VBG JJ
+less-conservative JJ
+Aros NNP
+perplexing JJ
+Artra NNP
+arcane JJ
+Pasta NNP
+Regina NNP
+Midco NNP
+gas-producing JJ NN
+German-speaking JJ
+C-word NN
+non-Indonesian JJ
+clamped VBD VBN
+BARKER NNP
+uninfected JJ
+conquered VBN VBD
+dispute NN VBP VB
+conflicts NNS VBZ
+Fortas NNP
+long-line JJ
+ml. NN
+petition NN VB
+power-sharing JJ
+ARISE VBP
+hooch NN
+Kramer NNP
+non-U.S. JJ NNP
+capital-gain JJ
+unlawful JJ
+wrong-o NN
+spying VBG NN
+resistor NN
+beefs VBZ
+over-hand JJ
+intermittently RB
+Plentywood NNP
+sind FW
+Bal NNP
+IDD NNP
+Vous FW
+macro-instructions NNS
+Mussolinis NNPS
+Bonanno NNP
+home-fashion NN
+warranties NNS
+Fiori NNP
+snapper NN
+Goddammit UH
+completely RB
+hothouses NNS
+Pleasant NNP JJ
+Hospital NNP NN
+Fitzwilliams NNP
+Rex NNP
+lamb NN
+chivalry NN
+hardcore JJ NN
+adhesives NNS
+blacksmith NN
+dairymen NNS
+Peapack NNP
+monoclonal JJ
+inadequacies NNS
+Ave. NNP
+Krakow NNP
+tonsil NN
+merciless JJ
+Kaul NNP
+more-natural JJ
+antibiotics NNS
+Lesley NNP
+famine-relief NN
+Rockettes NNPS
+Parris NNP
+poor JJ NN NNP
+no-no NN
+column NN
+Index-arbitrage NN
+powderpuff NN
+Extension NNP NN
+dramatics NNS
+KLM-Northwest NNP
+shooting NN VBG VBG|NN
+short-cut JJ
+Meyle NNP
+Rosser NNP
+picture-taking NN
+stone-blind JJ
+atCrcial NNP
+melange NN
+iodinate VB
+toxic-waste NN
+Arlen NNP
+Admittedly RB
+interlinked VBN
+Tenney NNP
+videocam NN
+geothermal JJ
+cadaver NN
+NUM NNP
+spiel NN
+tinges NNS
+secretaries NNS
+demoralized VBN JJ
+Malden NNP
+Beit NNP
+inoculate VB
+belfries NNS
+billion-share JJ
+Lazzaroni NNP
+Derby NNP
+morose JJ
+advertise VB VBP
+Stockholder NN
+rebuked VBD VBN
+landscapers NNS
+CD-type JJ
+sunsets NNS
+heavy-hitter NN
+hammer NN VBP VB
+rightfield NN
+tire-kickers NNS
+gardener NN
+God-given JJ
+extras NNS
+Ziyang NNP
+IH. NNP
+convex JJ
+Vermes NNP
+discontinuance NN
+imcomparable JJ
+vary VBP VB
+construing VBG
+unplowed JJ
+stronger-than-expected JJ
+Curzon NNP
+quicken VB
+excursus NN
+Bricktop NNP
+annee FW
+hysterically RB
+sly JJ
+PETS NNS
+coerce VB
+Greenery NNP
+Bury NNP VB
+hostesses NNS
+Panzhihua NNP
+topsoil NN
+forgets VBZ
+theircompany NN
+jot NN
+dea NN
+Guthman NNP
+resigning VBG NN
+Alphonsus NNP
+shirt-pocket NN
+Grahams NNPS NNP
+beastly JJ
+Salazar NNP
+obsessive JJ NN
+much-needed JJ
+vinyl-laminated JJ
+Oppen NNP
+Treble NNP
+doom NN VB
+Norfolk NNP
+grammar NN
+Sanity NN
+federal-question JJ
+jester NN
+Donaldsonville NNP
+deuterium NN
+Actually RB
+begining NN
+SR NNP
+autographer NN
+compressing VBG
+plantations NNS
+pickles NNS
+revved VBD VBN
+local-money NN
+pigmented VBN
+octane NN
+resources NNS
+amigo FW
+Sizwe NNP
+fluttering VBG
+Mankind NNP NN
+attire NN
+unionist NN
+mono-iodotyrosine JJ NN
+commodities-related JJ
+consumptive JJ
+downgrades NNS
+one-page JJ
+Family-owned JJ
+most-desired JJ
+exquisitely RB
+M30 NNP
+Alliance NNP
+McColm NNP
+Zimbabwe NNP
+chilly JJ
+yenta NN
+extend VB VBP VBZ
+Auction NN NNP
+chestnuts NNS
+Dumpster NNP
+Vitro-Anchor NNP
+Flannagan NNP
+anti-hooligan JJ
+bunks NNS
+evil-minded JJ
+thoughtlessly RB
+hustle VB NN
+ghostbusting NN
+prefecture NN
+Components NNP NNPS
+Metronome NNP
+vocalists NNS
+techno-managerial JJ
+accommodated VBN
+marchers NNS
+self-reliant JJ
+oath-taking NN
+tenebrous JJ
+Teague NNP
+LD060 NN
+automates VBZ
+sidewalks NNS
+Landmark NNP
+generically RB
+branched VBN JJ VBD
+foamy JJ
+barrels NNS
+Colleagues NNS
+predetermined VBN
+Wetherill NNP
+Diehl NNP
+particle NN
+Ultimate NNP JJ
+clarified VBN VBD
+songs NNS
+Ionizing VBG
+grope VB VBP
+wobbling VBG
+ghosted VBD
+performance-capacity NN
+colonized VBD VBN
+Ednie NNP
+hanky-panky NN
+whatsoever RB WP
+Brigade NNP
+Teheran NNP
+balloon NN VBP VB
+nobles NNS
+Z. NNP
+PharmaKinetics NNP
+Coletta NNP
+underpaid JJ VBD VBN
+MCorp NNP
+burnouts NNS
+free-wheeling JJ
+efficaciously RB
+Windhoek NNP
+promiscuous JJ
+onepage JJ
+snippy JJ
+Ritz NNP
+bioengineers NNS
+half-bottles NNS
+Giordano NNP
+spill-related JJ
+Syed NNP
+whistle-stop JJ
+Bostonian NNP
+Eyewear NNP
+dons VBZ NNS
+mettwurst NN
+herbaceous JJ
+yl NN
+certificate NN
+Judas NNP
+Stroup NNP
+homebuilders NNS
+byway NN
+Zurek NNP
+reckonings NNS
+rely VB VBP
+Hypotheekkas NNP
+SURVEYS NNS
+Toccata NNP
+twin-engine JJ
+Hubay NNP
+Servant NNP
+vassals NNS
+Toyko NNP
+chlorazepate NN
+abaringe NN
+HOMESTAKE NNP
+serve VB VBP
+errs VBZ
+Pontiff NNP
+recopied VBN
+Yarrow NNP
+Shogun NNP
+Poster NNP
+Infertility NNP
+acquainted VBN
+Malknecht NNP
+sweats NNS
+boutique-lined JJ
+dissolves VBZ
+bulldozers NNS
+extradited VBN
+UH NNP
+Espenhain NNP
+Urbano NNP
+Salman NNP
+mayst MD
+buyer NN
+derogation NN
+Freeport NNP
+Applications NNS NNPS
+banking-related JJ
+envoys NNS
+Hotham NNP
+Malocclusion NN
+astonishment NN
+unobvious JJ
+conserves VBZ
+American-developed JJ
+faith NN
+Leslie NNP
+World NNP NN
+brought VBN VBD
+suffixes NNS
+vast JJ
+Viale NNP
+beloved JJ VBN NN
+Chardonnay NNP
+puffing VBG
+Lakeshore NNP
+CBOT NNP
+Jovi NNP
+gray-beard JJ
+Zend-Avesta NNP
+Tishman NNP
+Jungle NNP
+blood-clot NN
+bitches NNS
+asbestos-abatement JJ NN
+Bust NNP
+Syndicated NNP
+scofflaws NNS
+reiteration NN
+DARPA NNP
+tightfisted JJ
+nigs NNS
+Install VB
+convertible-bond JJ
+right-wingers NNS
+Weisbrod NNP
+sine FW NN
+incubate VB
+Archives NNPS NNP
+fairs NNS
+Alabamian NN
+Veronis NNP
+napped VBD
+Ore.-based JJ
+fueled VBN VBD
+Potash NNP
+botulinum NN
+A DT NNP NNS PRP FW JJ LS NN NNPS VB
+sheaf NN
+agricole FW
+zg NN
+Class-D NNP
+catalytic JJ
+SISAL NNP
+Full-time JJ
+Major-League NNP
+Lubberlanders NNS
+hurricane-related JJ
+ironies NNS
+candid JJ
+Stigmata NNS
+plethora NN
+father NN VB
+Interfinance NNP
+college-completion JJ
+hurry NN VBP VB
+Infocorp. NNP
+smoke NN VB VBP
+lists NNS VBZ
+Niagara NNP
+Crossland NNP
+LD056 NN
+desecration NN
+ice-free JJ
+precise JJ
+dimly RB
+sanest JJS
+McInerney NNP
+Novaya NNP
+printouts NNS
+thawed VBN
+disintegrating VBG
+Bam UH
+partition NN
+Daze NNP
+cessation NN
+disordered JJ VBN
+opticians NNS
+Vulcan NNP
+random-walk JJ
+hosted VBN JJ VBD
+crowds NNS VBP VBZ
+swastika NN
+felt VBD VBN
+forte-pianos NNS
+Rey NNP
+smorgasbord NN
+white-water NN
+Citizens NNPS NNP NNS
+miscellany NN
+non-economical JJ
+convey VB VBP
+over IN RP JJ RP|RB RB
+morphogenetic JJ
+Reuling NNP
+near-paralysis NN
+Faulk NNP
+Wachtler NNP
+phenothiazine NN
+Artistes NNP
+asthma NN
+Chlorothiazide NN
+aviation-services NNS JJ
+Marmon NNP
+builders NNS
+Mita NNP
+Chahar NNP
+Jean-Michel NNP
+Leibowitz NNP
+shuts VBZ NNS
+unity NN
+Lao-tse NNP
+earth NN
+industrialization NN
+sub-assembly NN
+brand NN VBP JJ RB
+brusquely RB
+unconcern NN
+UNESCO NNP
+indolence NN
+yard-line NN
+transformation NN
+Satoshi NNP
+sizzles VBZ
+acupuncturist NN
+Brawer NNP
+Coddington NNP
+enclosed VBN VBD
+midsize JJ
+Defaults NNS
+historiography NN
+Nutt NNP
+exacerbations NNS
+mass-production NN
+male-sterile JJ
+punctuality NN
+maitres FW
+marble-encased JJ
+re-examine VB
+Corvallis NNP
+Mulcahy NNP
+Noffsinger NNP
+chastises VBZ
+dual-road-up NN
+laser-beam-printer NN
+Farragut NNP
+disdainfully RB
+tri-iodothyronine NN
+cow-people NN
+spouses NNS
+'X NN
+sweet-tongued JJ
+overtake VB VBP
+CONTROL NNP
+leeches NNS
+interwar JJ
+untrue... :
+exchange-listed JJ
+Orin NNP
+Aimed VBN
+scuttle VB
+Smiths NNPS
+morosely RB
+Viet NNP
+exponential JJ
+SHOPPE NNP
+les FW
+Games NNPS NNP NNS
+Headrests NNS
+B-scale NN
+Officine NNP
+Tasmania NNP
+containers NNS
+deprivations NNS
+forepart NN
+golly UH
+Mannix NNP
+multi-millionaire JJ NN
+negotiator NN
+mercurial JJ
+Richco NNP NN
+Broker NNP NN
+maintenance NN
+Quartermaster NNP
+negotiation NN
+portwatchers NNS
+Courtenay NNP
+pan-nationalism NN
+large-city JJ NN
+budding VBG JJ
+thrusts NNS VBZ
+formalism NN
+Zurcher NNP
+HOUSTON NNP
+hereabouts RB
+in-crowd NN
+rule. NN
+S.S. NNP
+pony NN
+shield NN VB
+nontoxic JJ
+manipulating VBG
+redlining VBG
+Groth NNP
+Poseidon NNP
+respectively RB
+patriarch NN
+assaults NNS
+Mandel NNP
+bio-research NN
+Weizsacker NNP
+Gelder NNP
+Permut NNP
+raisin NN
+renunciations NNS
+CAREER NNP
+statesmen NNS
+SERVE VBP
+order NN VBP IN VB
+Panther NNP
+innumerable JJ
+droppings NNS
+Wholesaler-Distributors NNP NNS
+amusement NN
+tin NN
+Grocer NNP
+eight-mile JJ
+peasants NNS
+Bannister NNP
+plain-out RB
+Alai NNP
+.4 CD
+stock-warrant NN
+performance-based JJ
+baci NNS
+Condensation NN
+Searles NNP
+Coproduction NNP
+disarming VBG JJ
+Corry NNP
+Weissmuller NNP
+UPHELD VBN
+Clueless NNP
+burger-heavy JJ
+insouciance NN
+glommed VBD
+wallboard NN
+Setter NN
+Directory NNP
+laxative NN
+Swing NNP
+sonority NN
+recork VB
+Fare VBP NN
+L'Institut NN
+Catch NN
+Masuda NNP
+whacky JJ
+yakking VBG
+FOES NNS
+autocollimator NN
+million-asset JJ
+distinctiveness NN
+Educate VB
+pineapple NN
+Teixeira NNP
+montgolfiere FW
+less-than-perfect JJ
+syndication NN
+Owens NNP
+howls NNS VBZ
+performing VBG JJ NN
+custom-built VBN
+low-smoke JJ
+Kloves NNP
+Blum NNP
+Mr NNP
+unbelievably RB
+inclusive JJ
+cased VBD
+Wildwood NNP
+ate VBD
+full-strength JJ
+SS NNP
+processional NN
+tawdry JJ
+colloquy NN
+confluence NN
+Wilke NNP
+refurbishment NN
+Bee-Hunter NNP
+solid-state JJ
+Corp.:8.50 NNP
+surcharges NNS
+Kaboom NN
+pluralist NN
+Ronnel NN
+fusion NN
+Revenues NNS NNP
+Daffynition NN NNP
+foreigner NN
+V-2500 NN
+monographs NNS
+unresolved JJ
+custom-design JJ
+decision-maker NN
+clattery JJ
+Homerun NN
+Sontag NNP
+collapses VBZ NNS
+solicitor NN
+commissary NN
+supercharged JJ
+Zenith NNP
+squarefoot JJ
+Bodhisattva NNP
+rue NN
+NTT NNP
+Bitten VBN
+khan FW
+arenas NNS
+Bureaucrat NN
+worthwile VB
+fellow-men NNS
+Which WDT
+irritability NN
+Spike NNP
+periphrastic JJ
+AFDC NNP
+wrongdoers NNS
+also RB .
+China NNP
+shuffled VBD
+stewardship NN
+Soloviev-Sedoi NNP
+Biodegradable JJ
+Taunton NNP
+pinning VBG NN
+testified VBD VBN
+chubby JJ
+Waseda NNP
+Queenan NNP
+refugee-assistance NN
+Unlikely RB
+walnut NN
+gravel NN
+Holiness NN NNP
+determinative JJ
+Medi-Mail NNP
+captive JJ NN
+Billy NNP
+engenders VBZ
+write VB VBP
+underhandedness NN
+anionics NNS
+friction NN
+Blauberman NNP
+unfamiliar JJ
+Burling NNP
+megaton NN
+Chill NN NNP
+U.K. NNP JJ NN
+overrides VBZ
+FTC NNP
+straw-colored JJ
+Bolton NNP
+Edwardes NNP
+Liddle NNP
+monumental JJ
+reimpose VB JJ
+old-guard JJ
+Boron NNP
+Supplies NNS
+angelic JJ
+Preserve NNP
+fortune NN
+conjugates NNS
+fourth JJ RB
+electrochemicals NNS
+Roeck NNP
+upon IN RB RP
+Presidents NNS NNPS NNP
+superhighway NN
+trazadone NN
+dystopia NN
+cocopalm NN
+feistiness NN
+INVESTORS NNS
+Bengalis NNPS
+department NN
+familarity NN
+Knowlton NNP
+ym NN
+wordy JJ
+cornered VBN VBD JJ
+Sultans NNS
+Afanasyev NNP
+Narbonne NNP
+tacked-down JJ
+spicy JJ
+infarction NN
+Customer NN NNP
+syntactical JJ
+Oh UH NNP
+O'Malley NNP
+sweetener NN
+stressors NNS
+K.B. NNP
+obeying VBG
+Hunter NNP NNPS NN
+Hands-on JJ
+Owl NN
+Ghanaian JJ
+right-of-entry NN
+wedded VBN JJ
+destabilizing VBG JJ
+Expo NNP NN
+bordered VBN
+Supervision NNP
+exploding VBG
+carcinogens NNS
+astrological JJ
+Whitehall NNP NN
+telephones NNS
+Querecho NNP
+Hrothgar NNP
+virus NN
+rejections NNS
+accomplished VBN JJ VBD
+Garbage NNP
+ask VB VBP
+compressor NN
+Dunkel NNP
+HEALTH-CARE NN
+ORDER NNP
+Holmberg NNP
+Depressive NNP
+Assets NNS NNP NNPS
+Chubb NNP
+GLS NNP
+Pascal NNP
+Removal NNP NN
+alludes VBZ
+perfusion NN
+opened VBD VBN
+Walloons NNPS
+Regulations NNS NNPS
+overwhelm VB VBP
+Stern NNP JJ
+hysteron-proteron NN
+Snuff NNP
+Westview NNP
+Martin-type JJ
+Derivative JJ
+revising VBG
+sidestepping VBG
+offsetting VBG JJ
+lava-rocks NNS
+fishes NNS VBZ
+emphasizing VBG
+pumped-up JJ
+deficit-reduction NN JJ
+Rachmaninoff NNP
+Frum NNP
+grassy JJ
+Obsolescence NNP
+artemisia NN
+inhaling VBG
+Ochsenschlager NNP
+near-panic JJ NN
+B NNP JJ LS NN
+airily RB
+shipmate NN
+Porters NNPS
+liquidation NN
+Rounded JJ
+Kohler NNP
+prejudged VBN
+festive JJ
+Buena NNP
+warehouseman NN
+Tyburn NN
+pompously RB
+Oberreit NNP
+day NN
+caravans NNS
+Reins NNP
+Hanoi-backed JJ
+Cycly NNP
+arithmetical JJ
+Unconscionable JJ
+five-blade JJ
+Arraignments NNS
+pitched VBD JJ VBN
+Excell NNP
+Emptied VBD
+Dynamics NNP NNPS
+censuses NNS
+billing NN VBG
+POUNDED VBD
+cable-TV NN NNP
+tried VBD JJ VBN
+Soir NNP
+irritating JJ
+efforts NNS
+Pascual NNP
+Rowland-Morin NNP
+hunt NN VB VBP
+Patrician NN
+Buell NNP
+Trendy JJ
+Fayetteville NNP
+'Recovering VBG
+Pythagoreans NNPS
+nixed VBD
+skinnin NN
+Take VB NNP VBP
+jeans NNS
+reoccupation NN
+Fishkill NNP
+proclivities NNS
+Derek NNP
+W.C. NNP
+taxes NNS VBZ
+Allwaste NNP
+Pocasset NNP
+razorback NN
+stripping VBG NN
+PONT NNP
+Kennan NNP
+Hoemke NNP
+stigmatizes VBZ
+Starlings NNS
+Fiero NNP
+sneers VBZ NNS
+Scare NNP NN
+reconciliation NN
+guild NN
+Shad NNP
+non-ideological JJ
+watchdog NN JJ
+Harkin NNP
+what WP WDT WP|IN
+Meehan NNP
+bible JJ NN
+appraiser NN
+let VB VBD VBN VBP NN
+oxyhydroxides NNS
+Jellinek NNP
+liberating VBG JJ
+hi-fi NN
+Columnist NNP
+wedding NN
+Assyriology NN
+Wambui NNP
+scaling VBG NN
+un-advertisers NNS
+Berlioz NNP
+craving NN VBG
+doctrinally RB
+Stork NNP
+curators NNS
+Chok NNP
+WTI NNP
+pointe FW
+concerned`` ``
+nerve-ends NNS
+Elsie NNP
+insurgence NN
+Fudo NNP
+Jabe NNP
+Nathaniel NNP
+unheeding VBG
+meters NNS NN
+erudite JJ
+collar NN VB
+Soviet-German NNP
+pacemaker NN
+--all DT
+Chazanoff NNP
+brew NN VB
+third-selling JJ
+soliciting VBG
+twittered VBD
+Royce NNP
+coloration NN
+Haliburton NNP
+scoffs VBZ
+wrecker NN
+Mallory NNP
+third-dimensionality NN
+McNichols NNP
+prechlorination NN
+Wilson-to-Jim JJ
+disinterest NN
+drawl NN
+depressors NNS
+Flem NNP
+noncustomer NN
+warehouse-club NN
+Streptococcus NN
+Goodwill NNP NN
+bolstering VBG
+spoiled VBN JJ VBD
+Nineteenth JJ NNP
+barbecues NNS
+Pavarotti NNP
+four-month JJ
+COLLECTING NN
+Cleve NNP
+venturesome JJ
+outpaced VBD NN VB VBN VBP
+unfamiliarity NN
+car-assembly NN
+Monsanto NNP
+McCone NNP
+Razors NNS
+Hargrave NNP
+Fastenal NNP
+petrified JJ VBN
+gifted JJ VBN
+folio NN
+sublimed VBN
+eminently RB
+presently RB
+nonism NN
+Murkland NNP
+Directions NNP NNS NNPS
+purled VBD VBN
+Ahsan NNP
+bifocals NNS
+Contact NN NNP VB
+catalogues NNS
+monumentalism NN
+kidnaped VBN
+aerated VBN
+Jarmusch NNP
+lower-tech JJ
+insignificance NN
+Braddock-against-the-Indians NNP
+TECHNOLOGIES NNP
+masseur NN
+five-a-week JJ
+Patentees NNS
+Energy NNP NN
+taketh VB
+Trafton NNP
+position-squaring NN
+Warburgs NNPS
+Durante NNP
+excruciating JJ
+learners NNS
+bar-code JJ
+Grandmother NNP
+stipulate VBP JJ VB
+.5 CD
+assailing VBG
+companionable JJ
+Varmus NNP
+Sneaker NNP
+escapade NN
+technology-related JJ
+swampy JJ
+Sat VBD
+defense-related JJ
+Fifty-seven CD
+seeker NN
+bumpy JJ
+nylon NN
+risk-taking NN
+severest JJS
+irreversibly RB
+carryover NN
+Malt NNP
+misfiring VBG
+black-consumer NN
+Patricof NNP
+rooster-comb NN
+loosens VBZ
+epitaph NN
+Ben-hadad NNP
+Poison NN
+anchorman NN
+Pinsk NNP
+counterflow NN
+consolidated-pretax JJ
+pay-as-you-go JJ
+ACTH NNP
+Extra NNP
+Ms NNP
+localism NN
+Struggle NNP VBP
+it... :
+Count-Duke NNP
+felony NN
+hoisting NN
+sinuses NNS
+purge NN VB
+field'just NN
+imposing VBG JJ
+Deck NNP
+groom NN
+Girozentrale NNP
+open-skies JJ
+sing VB VBP
+trajectory NN
+saddles NNS
+fade-in JJ
+School NNP NN
+giveth VBZ VB
+Ranger NNP
+labors NNS VBZ
+attorney-disciplinary JJ
+hornet NN
+government... :
+runners NNS
+principles NNS
+asides NNS
+Bridgeville NNP
+opening NN VBG JJ
+admiringly RB
+lame JJ
+Stabilizing VBG
+portables NNS
+head-in-the-clouds JJ
+disagreed VBD VBN
+Willa NNP
+grains NNS
+moviestar NN
+Screen NN
+allocated VBN VBD
+stood VBD VBN
+blooms NNS VBZ
+hindrance NN
+ascribes VBZ
+-Samuel NNP
+gilding NN
+man NN JJ VB UH
+timeworn JJ
+resided VBD VBN
+Fernald NNP
+disgraced VBN
+righthander NN
+compose VB VBP
+accessory NN JJ
+greenhouse-produced JJ
+Bramah NNP
+Ike NNP NN
+Barnabas NNP
+Advertisers NNS NNP NNPS
+Tadashi NNP
+tradition-minded JJ
+syndrome NN
+balked VBD VBN
+D.,Calif. NN
+Attitudes NNS
+prejudiced VBN JJ
+gargantuan JJ
+film-processing NN
+Erodes VBZ
+Bhojani NNP
+Webb NNP
+Telaction NNP
+Church NNP NN
+crumbles VBZ
+auto-immune JJ
+goverment. NN
+wonder-working JJ
+quantities NNS
+serum NN
+Motorcars NNPS
+classifies VBZ
+snooty JJ
+Bowlers NNPS
+Repeal NN VB
+mating NN JJ VBG
+Linear NNP
+TO TO
+slices NNS VBZ
+bad-risk JJ
+Malawi NNP
+trimesters NNS
+unwaivering VBG
+embrace VB VBP NN
+Kingsbridge NNP
+bade VBD
+refocused VBD VBN
+hitherto RB
+engrave VB
+prods VBZ NNS
+midyear NN JJ
+walkover NN
+disaster-recovery JJ NN
+Stanton NNP
+utilization NN
+upholstered VBN
+takers NNS
+regulus NN
+Voegelin NNP
+aforesaid JJ RB
+voice-response NN
+improves VBZ
+Jupiter-bound JJ
+Broadbent NNP
+Refined NNP
+Cheese NNP
+super-secret JJ
+awash JJ RB
+J.MBB NNP
+telephone-booth NN
+Series NNP NN NNS NNPS
+poultry-loving JJ
+monopoly NN
+speakers NNS
+Wishing VBG
+heads NNS VBZ
+sags NNS
+disintegration NN
+Derel NNP
+solar-cell JJ
+Frances NNP
+Morison NNP
+chin-out JJ
+contraption NN
+Goddess NNP
+forgiving VBG JJ
+newsworthy JJ
+lieutenants NNS
+intervals NNS
+ploys NNS
+ABA NNP
+Periods NNS
+ANIMAL-RIGHTS NNS
+universality NN
+labor-saving JJ
+Oi NNP
+Somehow RB
+guile NN
+Coleco NNP
+inter-office JJ
+derangement NN
+utilities NNS
+downward JJ RB
+Classes NNS NN
+tuxedoed JJ
+unsentimental JJ
+lire NNS FW NN
+Pump NNP NN
+Philippine JJ NNP
+hankered VBN
+Puette NNP
+Big-bucks JJ
+shared VBN JJ VBD
+Regine NNP
+ceases VBZ
+interest-sensitive JJ
+Sandy NNP
+signalizes VBZ
+Golub NNP
+climbers NNS
+dusty-green JJ
+diploma NN
+mighty JJ RB
+SiH NN
+Trinen NNP
+cuffs NNS
+Ciporkin NNP
+velocity NN
+Bronislava NNP
+pre-sentencing JJ
+Hail NNP
+Ekberg NNP
+cremated VBN
+novelized JJ
+quicker JJR RBR JJ
+Microscopes NNS
+inedible JJ
+RCA NNP NN
+shoveling VBG
+amazed VBN VBD JJ
+Brinker NNP
+pastes NNS
+Rubega NNP
+infests VBZ
+Bloom NNP
+perilous JJ
+dynamos NNS
+Witness VB NNP
+Hewlitt NNP
+Frankfurt NNP NN NNPS
+squinting VBG
+sitting VBG VBG|JJ NN
+corny JJ
+Lincoln-Mercury-Merkur NNP
+Furukawa NNP
+Bingley NNP
+Steelton NNP
+sectional JJ
+Nicol NNP
+on-the-go JJ
+shortcomings NNS
+revalued VBN
+standard-setting JJ NN
+reggae NN
+incarnations NNS
+undisclosed JJ
+back RB IN JJ NN RP VB VBP
+chlorides NNS
+Retailer NN
+sucker NN
+subjected VBN
+Inmac NNP
+advocate NN VB VBP
+Adalbert NNP
+Sweanor NNP
+Bombus NNP
+emigrated VBD VBN
+sheriff NN
+cross-pollination NN
+Cavazos NNP
+C NN JJ LS NNP
+Octobrists NNPS
+Ridiculing VBG
+untoward JJ
+gray-bearded JJ
+vaguest JJS
+ACQUISITION NN NNP
+fill-in-your-favorite-epithet JJ
+'s. POS
+Convulsively RB
+tropical JJ NN
+boies NNS
+celebrations NNS
+Alterman NNP
+wager NN VB
+ideological JJ
+highest-paid JJ
+Motorcycles NNS
+grassroots-fueled JJ
+modern-dance NN
+buffeted VBN
+graven JJ
+Hasbrouck NNP
+tacky JJ
+Norristown NNP
+Excise-tax JJ
+Reinforced NNP
+rounder JJR
+landlocked JJ
+RECEIVED VBD VBN
+shifting VBG JJ NN
+rehearsal NN
+Thinking VBG NN NNP
+Growth NN NNP
+bright-green JJ
+Ginandjar NNP
+Kraft NNP
+Leblanc NNP
+empirically RB
+removed VBN JJ VBD
+wreckage NN
+Schottenstein NNP
+solidarity NN
+excusable JJ
+propagandize VB
+yoga NN
+unhitched VBD VBN
+Estep NNP
+scoured VBN JJ VBD
+moviegoer NN
+finisher NN
+emptier JJR RBR
+internationalists NNS
+Cadbury-Schweppes NNP
+metaphysic NN
+Intermarriage NN
+auction-fee JJ
+geologically RB
+shawl NN
+Suffice VB
+sterilized VBN VBD
+prosodic JJ
+Danssesse NNP
+residential-real-estate JJ
+BeechNut NNP
+Humanism NNP
+wrongly RB
+stems VBZ NNS
+Dubinin NNP
+divulging VBG
+reverie NN
+soothe VB
+Stibel NNP
+mioxidil NN
+political-corruption NN
+Baldwin NNP
+gorilla NN
+tip NN VB VBP
+Nell NNP
+lifeboat NN
+Dachshund NN
+Mid-Continent NNP
+demurs VBZ
+nickel-iron NN
+play-acting NN
+Bodenseewerk NNP
+Wilfred NNP VBD
+Octoroon NNP
+backdoor JJ
+Luerssen NNP
+round-table JJ
+unending JJ
+Insect NN
+sarakin FW
+Gerry NNP
+gallon NN
+IMELDA NNP
+ICM NNP
+answers NNS VBZ
+mid-market JJ
+devote VB VBP
+Nonprofit JJ
+per-store JJ
+Yokel NNP
+Munoz NNP
+Carlsson NNP
+resurrecting VBG
+shortner NN
+Bechtel NNP
+heroin NN
+Chace NNP
+yearly JJ RB
+Turner NNP
+anticipated VBN JJ VBD
+Equipement NNP
+cavernous JJ
+success NN
+Applebaum NNP
+Anaheim-Santa NNP
+extort VB
+Parsley NNP
+shopworn JJ
+coveted VBN JJ
+conferred VBN VBD
+static JJ NN
+REPORTS NNS
+Miro NNP
+thunderstorm NN
+automatic JJ NN
+share... :
+Pinned VBN
+Heatherington NNP
+Stram NNP
+agriculture-related JJ
+T-bill NN NNP
+unawares RB
+heart-to-heart JJ
+flagships NNS
+fawned VBN
+poodle NN
+unconvincing JJ
+Wilhelmina NNP
+Vastly RB
+Evenflo NNP
+Geological NNP
+Shijie NNP
+interference-like JJ
+frowzy JJ
+presumptions NNS
+tempeh NN
+U.S.-Japanese JJ
+Scottsdale NNP
+Gandois NNP
+steamships NNS
+pore NN
+examinations NNS
+Broadview NNP
+Oceana NNP
+Grigory NNP
+sheet-metal JJ NN
+decries VBZ
+Mitchell NNP
+Brodbeck NNP
+O'Dwyer NNP
+perspired VBD
+non-poetry NN
+outdoors RB NN
+bankrolling VBG
+straggle VBP
+re-adopt NN
+Primary JJ NNP
+Macwhyte NNP
+encourages VBZ
+Alpine NNP JJ
+rug NN
+.6 CD
+Eaters NNS
+confidence NN
+spokes NNS
+resonances NNS
+sixties NNS CD
+Kimihide NNP
+Mihalek NNP
+Amada NNP
+Surrounded VBN
+Mokae NNP
+bull's-eyes NNS
+Auto-parts JJ
+Ochoa NNP
+Miyata NNP
+single-B-1 JJ CD NN
+posts NNS VBZ
+Hanes NNP
+hardships NNS
+luncheon-voucher NN
+Carstens NNP
+vegetarians NNS
+Johan NNP
+population-control JJ
+capitalization NN
+incontestable JJ
+prohibition NN
+Abex NNP
+senator NN
+terminations NNS
+Thrift NNP NN
+predisposition NN
+pediatric JJ
+distinct JJ
+dictated VBN VBD
+java NN
+Stockard NNP
+Hudson NNP NN
+homeshopping NN
+Mt NNP
+boiler NN
+Dresdner NNP
+minimize VB
+Benetton NNP
+Blasts NNS
+trailblazing VBG
+Limitations NNS NNPS
+measure NN VBP VB
+Marriott NNP NN
+other. NN
+leaning VBG
+BRANIFF'S NNP
+lineback NN
+Garrisonian NN
+Shotguns NNS
+non-retail JJ
+corinthian JJ
+anti-China JJ
+Depot NNP
+Veeck NNP
+Curious JJ
+dingy JJ
+Froelich NNP
+earthquake... :
+Livshitz NNP
+Jour NNP
+windfall NN
+Semple-Lisle NNP
+rain-slick JJ
+unicycle NN
+Trans-Alaska NNP
+evil-looking JJ
+Herwick NNP
+Judea NNP
+prepaid JJ VBN VB
+Supported VBN
+R.,Vitro NNP
+billion-pound JJ
+lesser-developed JJ JJR
+Racie NNP
+life-size JJ
+squeaking NN VBG
+View NNP NN
+Weyerhauser NNP
+notches NNS
+Adios NNP FW
+advise VB VBP NN
+Parisien NNP
+pageantry NN
+complimented VBN
+fringe-benefit NN
+less-than-diffident JJ
+Resrve NNP
+Storm NN NNP
+Figs. NNS NN NNP
+retrained VBN
+Rimbaud NN
+executes VBZ
+leftward JJ
+pacifistic JJ
+senseless JJ
+Pontchartrain NNP
+finishes VBZ NNS
+Own JJ NNP
+foreign-based JJ
+Freon NN NNP
+Telxon NNP
+substrates NNS
+Previewing VBG
+undisturbed JJ
+tutorials NNS
+No DT NN RB UH NNP
+Britto NNP
+law. NN
+starkly RB
+flower-scented JJ
+Monterey NNP
+Holyoke NNP
+Arbitragers NNS
+dated VBN JJ VBD
+phosphorus-bridged JJ
+miffed VBN VBD JJ
+pro-business JJ
+Radar NNP
+labels NNS VBZ
+crash NN VBP JJ VB
+Moving VBG
+Alois NNP
+scalp NN
+canyon NN
+Herter NNP
+obsidian NN
+Apart RB NNP
+stamped VBN VBD
+temperance NN
+Redstone NNP NN
+drawn VBN JJ
+burgundy NN
+Grazie NNP
+culprit NN
+ABB NNP
+Marckesano NNP
+executioner NN
+still-punishing JJ
+Coriolanus NNP
+empties VBZ
+hourly JJ
+Additives NNPS
+Talcott NNP
+Guiseppe NNP
+Painting VBG NNP NN
+universals NNS
+Gallo NNP
+DiSimone NNP
+Encyclopaedia NNP
+McDuffie NNP
+wait-and-see JJ
+Stalinist-corrupted JJ
+entangled JJ VBD VBN
+Thunder NN NNP
+fanaticism NN
+wages NNS
+Barsacs NNPS
+suitor NN
+Geroge NNP
+cross-market JJ
+SEMICONDUCTOR NNP
+imbedded VBN VBD
+Sonni NNP
+comedic JJ
+urinary JJ
+preceding VBG JJ
+oil-tanker NN
+single-B-2 JJ NNP CD NN
+farmhouse NN
+Handy NNP
+healers NNS
+disbursesments NNS
+Competing VBG
+pension NN
+Their PRP$ NNP
+mid-1940s NNS
+Gutenberghus NNP
+hereditary JJ
+Sallie NNP
+Faight NNP
+Sussman NNP
+drab JJ
+UK NNP
+malfeasant JJ
+S*/NN&L NNP JJ
+refiner NN
+halls NNS
+monthlong JJ
+bicycling NN
+Chekovian JJ
+disunited VBN
+lana FW
+uncommon JJ RB
+dissipated VBN VBD
+Dividend-related JJ
+naming VBG NN
+goats NNS
+Less RBR JJR NNP
+Broiler NN
+minivans. NNS
+porticoes NNS
+playwriting NN
+Physicist NNP
+once RB IN
+Tashjian NNP
+gushy JJ
+Midnight NNP
+shortsightedness NN
+Arles NN
+candlewick NN
+fifty-pound JJ
+McGwire NNP NN
+murderers NNS
+accommodates VBZ
+Bosis NNP
+terminated VBN VBD
+Top-of-the-Line JJ
+Preussag NNP
+barometric JJ
+Gritten NNP
+intersect VB VBP
+Carausius NNP
+Tracey NNP
+Volkswagen NNP NN
+Darth NNP
+consuming VBG NN
+handbook NN
+Demons NNS
+signifying VBG
+Womack NNP
+tortured VBN JJ VBD
+ommission NN
+forlorn JJ
+PILING VBG
+conservative-communist JJ
+earthquake-resistant JJ
+contrivances NNS
+gardenia NN
+volumes NNS
+chaotic JJ
+descended VBD VBN
+physicians NNS
+clawed VBN
+piped VBD VBN
+Eromonga NNP JJ NN NNPS
+tongues NNS
+Pe NNP
+Insofar RB
+first-floor JJ NN
+statistics NNS
+important-looking JJ
+Popoff NNP
+embarrass VB
+lungs NNS
+VF NNP
+premature JJ
+non-caffeine JJ
+super-charged JJ
+crusher NN
+Mercedes NNP NNS NNPS
+crookery NN
+obsessed VBN JJ
+jurisprudentially RB
+Uniroyal-Goodrich NNP
+Ila NNP
+Braidwood NNP
+scrapping VBG NN
+vicariously RB
+Spenglerian JJ
+Plainfield NNP
+Rudolf NNP
+Athanassiades NNP
+Boga NNP
+company-run JJ
+imperial JJ
+D NN LS NNP
+billion-a JJ
+castle NN
+yokels NNS
+late-payment NN JJ
+Rash NNP
+cuteness NN
+Mirsky NNP
+anomaly NN
+torque NN
+Dutton NNP
+Folly NNP NN
+spokesmen NNS
+airframe NN
+levying VBG
+robing NN
+mutilates VBZ
+ity NN
+watersheds NNS
+helper NN
+Jeffry NNP
+Wolfes NNPS
+dejectedly RB
+Batallion-2000 NNP
+Hoped-for JJ
+poring JJ VBG
+skipper NN VB
+swanky JJ
+Louisianan NN
+double-glazed JJ
+covertly RB
+Non-bank JJ
+Nobrega NNP NN
+occupied VBN JJ VBD
+ICN NNP
+Courts NNPS NNP NNS
+merest JJS
+certification NN
+NYSE NNP
+Marin NNP
+Haydon NNP
+Cafe NNP NN
+trundling VBG
+Topic NNP
+something NN
+bog VB NN
+sweetest JJS
+glimpses NNS
+videos NNS
+Outlooks NNS
+Stinger NNP
+Ackerly NNP
+Pesticides NNS
+Dasher NNP
+Savoy NNP
+besting VBG
+Escalante NNP
+prevision NN
+single-B-3 NNP JJ NN
+Channel-type NN
+Ter-Stepanova NNP
+omelette NN
+newspaper-printing NN
+Catherwood NNP
+Chargers NNPS
+Habomai NNP
+infinitive NN
+Camaro NNP
+'It's PRP
+investigate VB VBP
+unreasoning JJ
+Cooperative NNP
+Nichol NNP
+irregular JJ NN
+must MD JJ NN
+rationed VBN
+Gujarat NN NNP
+glee-club NN
+hazy JJ
+somatic JJ
+foodstuffs NNS
+Balletto NNP
+Rightly RB
+garishness NN
+Talleyrand NNP
+Taoist NNP
+Springfield NNP
+exciting JJ VBG
+Fallout NNP
+Morton NNP
+miseries NNS
+Texans NNPS NNP
+Humphries NNP
+libertine NN
+aquamarine NN
+Lazarus NNP
+Genelabs NNPS
+CALFED NNP
+swift-striding JJ
+En-lai NNP
+ruh FW
+wiretapping NN VBG
+bewail VB
+Shoppes NNP NNS
+PROGRAM NN
+Mite NNP
+problematical JJ
+pure-voiced JJ
+manipulation NN
+envelope NN
+Fuel NNP NN
+Based VBN NNP
+InfoCorp NNP
+Low-flying JJ
+Lauder NNP
+futures-trading JJ
+airtime NN
+Honest UH
+religiosity NN
+Co-authors NNS
+virus-boosting JJ
+Swink NNP
+top-tang JJ NN
+graphic JJ
+hang-tough JJ
+London NNP JJ
+launchings NNS
+demographic JJ
+--and CC IN JJ NN
+pains NNS
+meld VB
+Kleist NNP
+Perle NNP
+Sold VBN
+Styles NNS NNP
+turtle NN
+Bitter JJ
+no-trade JJ
+semi-conductors NNS
+Respondents NNS
+suppleness NN
+seclude VB
+Meister NNP
+screeched VBD
+co-opted VBN
+uncircumcision NN
+non-smoking JJ
+oriented VBN VBD JJ
+map NN VBP VB
+voluntarily RB
+Decades NNS
+ticklebrush NN
+Bramwell NNP
+estrogen NN
+necessities NNS
+Morino NNP
+Sukio NNP
+Motel NNP
+denationalized VBN
+d'Allest NNP
+alterations NNS
+raced VBD
+non-defense-related JJ
+splitting NN VBG JJ
+bindle NN
+turf-care JJ NN
+Dung NNP
+foreign-loan JJ
+Thirty-five CD JJ
+Krys NNP
+materials NNS
+gaited JJ
+petroleum-exploration JJ
+saxophonist NN
+readapting VBG
+Snack-food NN
+negotiations... :
+reckoned VBN VBD
+night-vision JJ NN
+kilometers NNS
+door NN RB
+harshly RB
+compression NN
+equivalent NN JJ
+algebraically RB
+Bio-Trends NNP
+pogroms NNS
+Widened VBD
+fast-growing JJ
+abridged VBN
+heedless JJ
+Julian NNP
+zinc-strip JJ
+beefy JJ
+snazzy JJ
+wisecracked VBD
+luminescent JJ
+slain VBN
+opposition-party JJ
+purling VBG
+foldability NN
+exultation NN
+IBT NNP
+Daily NNP JJ RB
+jarred VBD VBN
+warm-hearted JJ
+video-rental JJ
+Denver-area NN
+high-rise-project JJ
+sluicehouse NN
+patronizing VBG JJ
+saute VB
+musicianship NN
+scandalizing JJ
+SPWL NNP
+steadfast JJ RB
+Atlanta-based JJ NNP
+symbolizes VBZ
+Arps NNP
+KC-135s NNS
+leisure-related JJ
+counterproposal NN
+seven-o'clock RB
+perennials NNS
+escape VB NN VBP
+vats NNS
+hurts VBZ
+insider-selling NN
+Fitzpatrick NNP
+Marvelon NNP
+stationery NN
+Sammi NNP
+--Tokyo NNP
+jawbone NN
+Yaqui NNP
+SAID VBD
+matter-of-factness NN
+gallop NN VB
+Vaclav NNP
+Unilab NNP
+cheek-to-cheek JJ
+Passaic-Clifton NNP
+parry VB
+ABC NNP
+done-unto JJ
+turf NN JJ
+strainers NNS
+illumines VBZ
+lightened VBD VBN
+backwardness NN
+linkage NN
+proclaims VBZ
+baby-faced JJ
+demoralizes VBZ
+twelfth JJ
+reoriented VBN
+inflecting VBG
+on-time JJ
+crushes VBZ
+aggression NN
+Telemedia NNP
+on-air JJ
+Schumann NNP
+supercharger NN
+high-rate JJ
+DEMAND NN
+cajole VB
+Marxist-Leninist JJ NNP
+Klees NNP
+Ramey NNP
+Moulton NNP
+Greve NNP
+krater NN
+Gloriana NNP
+communion NN
+auto\/homeowners NNS
+unstinting VBG JJ
+inhabits VBZ
+small-stock NN JJ
+Unamused JJ
+watchword NN
+large-firm JJ
+let's-give-it-a-year JJ
+two-step JJ
+Stoutt NNP
+mental JJ
+introject NN
+hospice NN
+subjectivist NN
+tango NN
+indications NNS
+billion-plus JJ CD
+naturopath NN
+canonized VBN JJ
+aged-care NN
+package-tracing NN
+Goode NNP
+multiversity NN
+bicep NN
+up. RB
+Subdued JJ
+apprehension NN
+Mosle NNP
+connivance NN
+educrats NNS
+Buddhism NNP NN
+by-product NN
+littered VBN VBD
+instructed VBN VBD
+sponsor NN VBP VB
+phantom JJ VBP NN
+Inuit NNP
+brutish JJ
+Akiva NNP
+hubba UH
+mindless JJ
+Savannakhet NNP
+public-accommodation NN
+Trinity NNP NN
+Oncogen NNP
+non-Indian JJ
+instigating VBG
+yp NN
+pre-Civil NNP
+Earth-weeks NNS
+ostracism NN
+Geraldine NNP
+display NN VBP VB
+Waning JJ
+roil VB
+Syferd NNP
+hazelnut NN
+patronize VB
+Ok NNP NN
+renegotiated VBN VBD
+Intecom NNP
+Stubblefields NNPS
+Compagnie NNP
+podiatrist NN
+medications NNS
+commmuter NN
+ballgowns NNS
+economic-policy NN
+Mario NNP
+Duren NNP
+Hon NNP
+banalities NNS
+questioning VBG VBG|NN JJ NN
+insinuates VBZ
+bows NNS VBZ
+Mixed NNP VBN JJ
+Engelhard NNP
+prolific JJ
+unruly JJ
+ingeniously RB
+Raimer NNP
+Muffler NNP
+may... :
+cycle NN VB
+Careers NNS
+unwired VBD
+handyman-carpenter NN
+Puttana NN
+doorways NNS
+greensward NN
+Shaver NNP
+Baden-Wuerttemberg NNP
+joy NN
+Tracinda NNP
+earmarked VBN VBD VBN|JJ
+def JJ NN
+Beigel NNP
+hangin VBG
+O'Reilly NNP
+Keating NNP
+baring VBG
+Valdese NNP
+cratering VBG
+collegians NNS
+upshot NN
+semi-processed JJ
+art NN VBP
+barracks NN NNS
+isn't VBZ
+willed VBD VBN
+sharp-leafed JJ
+commonality NN
+Fitz NNP
+Berlin-West NNP
+scored VBD JJ VBN JJ|VBN
+mass-produced JJ
+diversities NNS
+mismatched VBN
+paleontologists NNS
+Switch NN
+flame-throwers NNS
+remonstrate VB
+defecated VBN
+defense-oriented JJ
+sweaty JJ
+Appert NNP
+Quebecers NNPS
+Worrell NNP
+partnerships NNS
+specialize VB VBP
+OECD NNP
+slugs NNS
+mineworkers NNS
+terminus NN
+Tait NNP
+lips NNS
+retrogressive JJ
+Stoneware JJ
+Balogh NNP
+draftees NNS
+Carmack NNP
+confederation NN
+comedie NN
+ruminate VB
+lacquer NN
+banked VBD JJ VBN
+Customhouse NNP
+Schein NNP
+quarter-of-a-century JJ
+payment... :
+medico NN
+Amadeus NN NNP
+singing VBG JJ NN
+pro-environment NN
+midterm JJ
+paint NN VB VBP
+mid-March NNP
+research-heavy JJ
+s'posin VBG
+E NN NNP JJ LS
+pivoting VBG
+breach-of-contract JJ
+Affliction NNP NN
+mm. NN NNS
+Institute NNP NN
+Schneider NNP
+wood NN
+magnum NN
+Saw VBD NNP
+Erdos NNP
+Washingtons NNPS
+Giggey NNP
+great-grandson NN
+multinationalism NN
+Lawson-Walters NNP
+Ninety-Eight NNP
+reaffirming VBG
+Credit-Card NN
+Process NNP NN
+Vessel NNP
+v.B. NNP
+A300-600R NNP
+pro-Noriega JJ
+godmother NN
+milk-supply NN
+Neiman NNP
+Soccer NNP
+madrigal NN
+restorers NNS
+overcoat NN
+thrift-related JJ
+Market-If-Touched NNP
+shortfall NN
+monsoon NN
+Sole NNP NN
+prai VBP
+violently RB
+grandmothers NNS
+sub-interval NN
+WB NNP
+dream NN VB VBP
+Fill-Or-Kill NNP
+Caffrey NNP
+accomplishes VBZ
+instant NN JJ
+Gilsbar NNP
+prodigiously RB
+plains NNS
+Debt NN NNP
+marked VBN JJ VBD VBP
+international\ JJ
+genesis NN
+president-elect NN
+feudalism NN
+aloes NN
+Artistic JJ
+Archaeology NNP
+Regionally RB
+tests NNS VBZ
+quiet JJ NN VB
+nectar NN
+jacking VBG
+pitfalls NNS
+ceremoniously RB
+'stead IN
+Denise NNP
+Shaken VBN JJ
+Sniffle NNP
+Hickok NNP
+rewriting VBG
+advance-purchase JJ NN
+disappointing JJ
+Sheen NNP
+notwithstanding IN RB
+decisions NNS
+accounts NNS VBZ
+style-cramper NN
+Goshen NNP
+offering NN VBG
+ready-made JJ
+searchingly RB
+all-county JJ
+smidgen NN
+devil's-food JJ
+Abbey NNP
+pathetic JJ
+Cherwell NNP
+ozone-safe JJ
+shelf-stable JJ
+abortion-rights NNS JJ
+wiles NNS
+Bertolt NNP
+three-axis JJ
+loyalist NN JJ
+Canter NNP
+Ch. NN
+Tools NNPS
+solve VB VBP
+Hathaway NNP
+Estes NNP
+Fox-Pitt NNP
+hemming VBG
+Shah NNP
+bank-director NN
+mill-wheel NN
+ever-quieter JJ
+fairy JJ NN
+shutting VBG
+Catholic NNP JJ NN
+caresses NNS VBZ
+Rustin NNP
+masquerade NN VBP
+crackpot NN
+Greasy JJ
+grapevines NNS
+paths NNS
+Weak JJ
+operalet NN
+Hiltunen NNP
+Private JJ NNP
+Sea NNP NN
+Merciful JJ
+MLSS NN
+most-likely-successor JJ
+Gross NNP JJ
+line-drying JJ
+districts NNS
+AGENCY NNP NN
+barflies NNS
+Alan NNP
+horticulture NN
+hoisted VBN VBD
+Abelson NNP
+Fueling VBG
+Pro NNP FW
+.8 CD
+out-of-court JJ
+Heiwa NNP
+law-school NN JJ
+biology NN
+highly-regarded JJ
+Bundestag NNP NN
+spies NNS VBZ
+Butt NNP
+discomfit VB
+weekdays NNS RB
+Travel-Holiday NNP
+equipment-packed JJ
+Marne-la-Vallee NNP
+engineering-management JJ NN
+afternoon NN
+litigant NN
+knights NNS
+automotive JJ
+Aqazadeh NNP
+Shareholder NN
+audiotex NN
+Appaloosas NNPS
+Kligman NNP
+kidneys NNS
+PASOK NNP
+Fox-Meyer NNP
+relish NN VB
+Forsyth NNP
+dinner-hour JJ
+haute FW JJ
+Enterprise NNP NNPS NN
+Gas-reactor JJ
+d'un FW
+rivets VBZ NNS
+crate NN
+Updike NNP
+program-trading JJ NN
+recruits NNS VBZ
+appreciative JJ
+strenghtening VBG
+amok RB
+Firebird NNP
+eulogize VB
+out-of-synch JJ
+Schwartz NNP
+SW NNP
+signatory JJ NN
+stupendously RB
+nonsystematic JJ
+jigger NN
+countertenor NN
+pops VBZ
+rosiest JJS
+Narrowing VBG
+Zaffius NNP
+Narrow JJ NNP
+impudent JJ
+son NN
+restrained VBN VBD JJ
+referred VBN VBD
+Bar NNP NN VB
+end-of-the-quarter JJ
+G.S. NNP
+shamrocks NNS
+Angeles NNP
+reconsider VB VBP
+gravity NN
+transplanted VBN JJ
+Zealander NNP
+coincidental JJ
+Seikosha NNP
+Donahue NNP
+fouling NN VBG
+plane-building NN
+Hino NNP
+Bulgarians NNPS
+suspenders NNS
+Leblang NNP
+HUD-backed JJ
+Bullet NNP
+perpetration NN
+airline-financed JJ
+Campaigne NNP
+trances NNS
+sale-purchases NNS
+referendum NN
+wrinkling VBG
+subsidized JJ VBN
+flood-insurance NN
+transformers NNS
+fine-drawn JJ
+Silent NNP
+Schiele NNP
+Tardily RB
+half-intensity JJ
+title-insurance JJ NN
+capped VBD VBN JJ
+substations NNS
+election-law NN
+Nicholson NNP
+four-syllable JJ
+Pilevsky NNP
+Knead VB
+contract-negotiation NN
+Approached VBN
+TR NNP
+monumentality NN
+cash-equivalent JJ
+Annaud NNP
+Revolving VBG
+overprotected VBN
+Zapata NNP
+slowdowns NNS
+Exegete NNP
+clear-headed JJ
+depots NNS
+NUS NNP
+encroach VB
+'nuff RB
+below-investment JJ
+Frederick NNP
+quadrupeds NNS
+sink VB VBP NN
+diverging VBG
+gussets NNS
+diocs NNS
+mascot NN
+accidental-war NN
+indestructible JJ
+lex FW
+home-center NN
+railcars NNS
+profiles NNS VBZ
+geometrical JJ
+star NN JJ VB
+vanity NN
+deficit-racked JJ
+familiarness NN
+GPA NNP
+faculty NN
+dining-room NN
+sub-freezing JJ
+applauds VBZ
+Divesting VBG
+garages NNS
+shinbone NN
+liabilty NN
+midrange JJ NN
+low-rate JJ
+discover VB VBP
+Birkhead NNP
+earlier-announced JJ
+amusement\/theme NN
+TESTS NNS
+Saitama NNP
+scandal-plagued JJ
+ADVANCEMENT NNP
+gray-looking JJ
+Sadie NNP
+Leibler NNP
+Kearns NNP
+rent NN VB VBN VBP
+civilizational JJ
+Weidenfeld NNP
+hell-for-leather RB
+Saturdays NNPS NNP NNS
+Nomisma NNP
+plough VB
+sub-Saharan JJ NNP
+Carpenters NNPS NNS
+prime-1 NN
+blared VBD
+residuals NNS
+undoubtedly RB
+pompousness NN
+Ol JJ
+Terminaling NNP
+graver JJR RBR
+re-evaluate VB JJ VBP
+queasily RB
+auto-sales NNS
+selection NN
+Cable-system NN
+OVER IN
+Kazis NNP
+brie NN
+Trans-Pecos NNP
+foreshadowing VBG
+worshippers NNS
+credulity NN
+unbound JJ VBN
+high-polluting JJ
+messenger NN
+denouement NN
+Re-Birth NNP
+co-op NN NNP
+Detractors NNS
+consumer-goods NNS
+awkward JJ
+elapsed VBN
+Hosting VBG
+Jelly NNP
+Forecaster NNP
+distorts VBZ
+Grabbing VBG
+quisling NN
+Tennant NNP
+Zhaoxing NNP
+Well-to-Do JJ
+Tolerance NN
+Maquila NN
+Television NNP NN
+job-rating JJ
+Bilzerian NNP
+overproduce VB
+Rudy NNP
+Deed NNP
+unedifying JJ
+Nourishing JJ
+unparalleled JJ
+well-wishers NNS
+soup-to-nuts JJ
+resells VBZ
+mountainous JJ
+Cordoba NNP
+pollen-and-nectar NN
+socialists NNS
+century... :
+axiomatic JJ
+middlebrow JJ
+unpack VB
+Cartel NNP
+Quakeress NN
+Nasdaq NNP NN
+outclassed VBN
+oil-poor JJ
+equalled VBN
+mentions VBZ NNS
+Overtones NNS
+Brewer NNP
+Viall NNP
+Eligibility NN
+cable-programming JJ
+fleece NN
+Reverdy NNP
+Travelling VBG
+Inez NNP
+Ozon NN
+Ching NNP
+computed VBN JJ
+apportioned VBN
+dialectical JJ
+unmanageable JJ
+wintertime NN
+hoof-and-mouth JJ
+typology NN
+downdraft NN
+organised VBD
+Second-tier JJ
+Pantas NNP
+goal-oriented JJ
+Katy NNP
+Josephson NNP
+Dunker NNP
+unwilling JJ
+Arrack NN
+Giampiero NNP
+Thierry NNP
+Sinclair NNP
+thees DT
+storms NNS
+Andersen NNP
+enchanted VBN JJ
+balking VBG
+higher JJR RB RBR
+Voice NNP NN
+helicopters NNS
+DONORS NNS
+show-stoppers NNS
+homicide NN
+Irelands NNP
+Microscopic JJ
+long-vanished JJ
+Tanks NNS
+compote NN
+WHAS NNP
+Distracted VBN
+ovation NN
+characterize VB VBP
+Schwengel NNP
+outgrown VBN
+Strategies NNS NNP
+unproductive JJ
+F NN LS NNP
+disaster NN
+jugs NNS
+alto NN
+small-company-stock NN
+uncharacteristic JJ
+Conceived VBN
+essential... :
+nourishes VBZ
+consent NN VB
+Cumhuriyet NNP
+analyzed VBN VBD
+Militant JJ
+round-trip JJ NN
+frogmen NNS
+laboratory NN
+Rate NNP NN
+servicers NNS
+add-ons NNS
+slumped VBD VBN
+Quinta NNP
+paramilitary JJ
+nonsense NN JJ
+Geos NNS
+arriving VBG
+mar VB
+Pursuing VBG
+amines NNS
+administrate VB
+JAPAN NNP
+constrained VBN JJ
+keratitis NN
+tonics NNS
+robot NN
+sail VB VBP NN
+articulations NNS
+Schulof NNP
+Emergency NNP NN
+resurrection NN
+earthenware NN
+outrigger NN
+Suits NNS NNPS
+rupture NN
+Ingo NNP
+smoldered VBD VBN
+Non-performing JJ
+midpoint NN
+portly JJ
+double-header NN
+oxygen NN
+rail-equipment JJ
+Palaces NNPS
+You PRP NN NNP
+Savaiko NNP
+interpenetration NN
+greenmailer NN
+land NN VBP VB
+thy JJ PRP$ PRP
+Deegan NNP
+pinheaded JJ
+snack NN
+DIOCS NN
+bards NNS
+documentation NN
+of'for IN
+UNIFIED JJ
+Seelenfreund NNP
+variant NN JJ
+Gooding NNP
+Edelson NNP
+vexed VBN JJ
+Abie NNP
+Gottfried NNP
+Kavanagh NNP
+uncap VB
+expectations NNS
+Theodosian JJ
+Loomans NNP
+Arbitrage NN
+LaBerge NNP
+ACTING JJ
+validating VBG
+Baa-1 JJ NNP NN
+bequeath VB
+denunciation NN
+Mukachevo NNP
+commitment NN
+K.C. NN
+herdin NN VBG
+twaddle NN
+pretty RB JJ
+cupid NN
+radars NNS
+Lifeguards NNS
+arrows NNS
+insist VBP VB
+Campbell-brand JJ
+Mountaineering NNP
+Gosset NNP
+greatcoated JJ
+commando-trained NN
+gasser NN
+Hiawatha NNP
+weapons-acquisition NN
+Informix NNP
+savers NNS
+belligerently RB
+bereavements NNS
+next-door JJ
+somersaults NNS
+potters NNS
+half-empty JJ
+patio NN
+traffic-control NN
+Disposal NNP NN
+Pte NNP
+officer NN
+Ruiz-Mateos NNP
+Moscow NNP
+warships NNS
+cookers NNS
+inflicting VBG
+Plunge NN
+gray-blue JJ
+markkaa NN
+dimensional JJ
+Kimba NNP
+Bas NNP
+ayatollah NN
+Auditors NNS
+aforethought JJ NN
+Lille NNP
+subdues VBZ
+Cavaliere NNP
+sickening JJ
+Front NNP JJ NN
+diffrunce NN
+Barbakow NNP
+tapestry NN
+Kageyama NNP
+fixated VBN
+Churchilliana NNPS
+Indignantly RB
+Jaap NNP
+acts NNS VBZ
+yell NN VB
+restructured VBN VBD JJ
+MERGING VBG
+ravages NNS
+Double-Jointed NNP
+artistry NN
+Brash NNP
+topaz NN
+tactual JJ
+exasperatingly RB
+slapping VBG JJ NN
+remnant NN
+Mileage NN
+multi-purpose JJ
+Pricor NNP
+reared VBD VBN
+Straightening VBG
+graves NNS
+corps NN FW
+wintry JJ
+exposures NNS
+Amoskeag NNP
+proprietorship NN
+miraculous JJ
+incited VBN VBD
+Vauxhall NNP
+Esmarch NNP
+multi-valve JJ
+greasies NNS
+morphine NN
+living-benefits JJ
+Tale NN NNP
+PARTICIPATED VBD
+havoc NN
+dismally RB
+Jen NNP
+AIDS-drug JJ
+prognoses NNS
+Wilma NNP
+slumping VBG JJ
+W.D. NNP
+remora NNS
+Amalgamated NNP
+although IN
+decrement NN
+philosophical JJ
+Collected NNP
+circuses NNS
+acculturation NN
+electrified VBN
+grade-constructed JJ
+Loser JJ
+revival NN
+TRIMMING VBG
+Marla NNP
+quarter-mile NN JJ
+Fergus NNP
+homier JJR
+Cinnaminson NNP
+accouterments NNS
+plurality NN
+existentialist NN
+self-pity NN
+non-recessionary JJ
+calipers NNS
+traipse VB
+Belk NNP
+Abbie NNP
+Hopkinsian NNP
+super-charger NN
+polycrystalline JJ
+Pewabic NNP
+SBCI NNP
+Ceilings NNS
+Butterfield NNP
+scrutinize VB VBP
+Slight JJ
+Campeau-owned JJ
+R-stage JJ
+dimwits NNS
+drowsing VBG
+gridiron NN
+Interest NN NNP
+Neanderthals NNS
+Petersen NNP
+Duquesne NNP
+subsides VBZ NNS
+suspect VBP JJ NN VB
+gizmo NN
+Mann NNP
+Circles NNS
+villainous JJ
+Hurter NNP
+Crowley NNP
+lushes NNS
+summitry NN
+Hyndman NNP
+notes NNS VBZ
+hande NN
+behavior NN
+ruefulness NN
+woof NN
+breakfast NN
+prettiest JJS
+Extracts NNS
+Bellinger NNP
+St.-Pol NNP
+highflying JJ
+apathy NN
+vehicles NNS
+Sheep NNP NNS NN
+Pioneering NNP
+adjustments NNS
+ACCOUNTING NN NNP
+Classic NNP JJ NN
+Studies NNS NNPS NNP
+Commies NNPS NNS
+Reinhard NNP
+vicarious JJ
+Compress VB
+Samoa NNP
+moderate JJ VBP VB
+Problems NNS
+Brezhnevite NNP
+procrastinate VB
+grainy JJ
+Bruckner NNP
+Gunder NNP
+coarsely RB
+Agnes NNP NNS
+Syndicates NNS
+Harlem NNP JJ
+redeemed VBN VBD
+audience-friendly JJ
+derring NN
+agriculture-chemicals NNS
+market-timing JJ
+Ranch NNP NN
+cannon NN NNS
+penman NN
+fledgling NN JJ
+yr NN
+bristle VBP VB NN
+cherries NNS
+Apollo NNP
+threes NNS
+Guys NNS
+post-hurricane JJ
+calculated VBN VBD JJ
+LaMantia NNP
+dwell VBP VB
+HASTINGS NNP
+biweekly JJ NN
+Non-interest JJ
+researching VBG
+Humanist NNP
+badinage NN
+camaraderie NN
+Deposits-a NNP NNS NNPS NNS|LS
+CNBC NNP
+Matthew NNP NN
+expertise NN
+Arragon NNP
+densitometry NN
+Polaroid NNP NN
+UN NNP
+professionally RB
+Homeroom NNP
+broadcaster NN
+Lavelle NNP
+throne NN
+decriminalized VBN JJ
+transfer NN VB VBP
+Louisa NNP
+Katz NNP
+Meltnomah NNP
+near-term JJ NN
+lockout NN
+Aeroflot NNP JJ
+often-heard JJ
+slings NNS
+coatings NNS
+nearest JJS RBS IN
+Excels NNS NNPS
+organismic JJ
+bite-sized JJ
+Goering NNP
+unwounded JJ
+air-separation NN
+stair-well NN
+tramples VBZ
+WHAT WP WDT
+embalmers NNS
+Parsifal NNP JJ
+addicts NNS
+Distributed VBN
+winning VBG JJ NN VBG|JJ
+Say VB NNP VBP
+Dasibi NNP
+blandness NN
+grammatically RB
+Judsons NNPS
+Leningrad-Kirov NNP
+Dynoriders NNP
+Monarch NNP NN
+vote-getters NNS
+Seton NNP
+nonsingular JJ
+Projects NNPS NNP NNS
+Arundel NNP
+Proponents NNS NNP
+Rubicam NNP
+fine-tooth JJ
+Hurricane NNP NN
+Baptiste NNP
+cull VB VBP
+chimpanzees NNS
+Kendall NNP
+oystchers NNS
+Ago RB
+corresponding JJ VBG
+semi-public JJ
+intermeshed VBN
+Bovine NNP
+second-quarter JJ NN
+Thun NNP
+Mozambique NNP
+jackhammers NNS
+specialty-retail JJ
+unselfconsciousness NN
+fungible JJ
+Procter NNP
+Uncontrolled JJ
+Laicos NNP
+VI NNP CD
+theirs PRP JJ
+intransigence NN
+acetominophen NN
+schoolboy NN
+prospector NN
+aid-to-education NN
+biochemists NNS
+surface-to-air JJ
+ingratiate VB
+inseparable JJ
+free-burning JJ
+\* SYM LS NN
+offices NNS
+sorting-out NN
+Translink NNP
+dullest JJS
+Milan-based JJ
+gags NNS
+TOPAZ NNP
+encumbrances NNS
+cascade NN VB
+Christian-Moslem JJ
+Marconi NNP
+Deidre NNP
+Baa-2 JJ NNP
+lane NN
+Chien-Min NNP
+crystal NN JJ
+gasses NNS
+Crip NNP
+Khrushchev NNP
+universalize VBP
+theater NN
+side-rack NN
+indulges VBZ
+recombination NN
+prime-3 NN
+Gothicism NNP
+Dashiell NNP
+right NN RB VB IN JJ
+bricklayers NNS
+pedigree NN
+crisscrossed VBN VBD
+crabby JJ
+pre-French JJ
+Misawa NNP
+legislator NN
+Sigmund NNP
+misunderstanders NNS
+petits FW JJ
+higher-toned JJ
+corrupt JJ VB
+immediate-response JJ
+Vical NNP
+Aid NNP NN VB
+fountain-head NN
+Grove NNP NN
+delinquency NN
+Asks VBZ
+hobnob VB
+tie-ins NNS NN
+sugared JJ VBN
+'t- PRP
+hesitant JJ
+saturation NN
+apologize VB
+cervical JJ
+Ferencik NNP
+oasis NN
+Desai NNP
+ballot-burning JJ
+Ziffren NNP
+G NN NNP LS
+Speedy NNP
+nakedly RB
+Nakasone NNP
+called'isolationism NN
+differed VBD VBN
+Munro NNP
+Toppers NNP
+Coming VBG NNP
+marine-products NNS
+heady JJ
+Optical NNP
+boyish JJ
+Bristol-Myers NNP
+graphical JJ
+Kokusai NNP
+Clorets NNP
+Public-health JJ NN
+pursuer NN
+of'aw NN
+compositions NNS
+Festiva NNP
+Mon-Khmer NNP
+Labrador NNP
+Echoing VBG
+mystery NN
+Wards NNP NNS
+flailed VBD
+revamped VBN VBD JJ
+misfits NNS
+supper NN
+logarithms NNS
+leathers NNS
+councilor NN
+irritation NN
+plundered VBN
+Carol NNP
+redecorating VBG NN
+Sept NNP
+sharing VBG NN
+Cambrian NNP
+vista NN
+NOTES NNS
+totted VBN
+one-digit JJ
+recession-resistant JJ
+Tucson NNP
+amendment NN
+croaker NN
+Chalmers NNP NNPS
+Congressman NNP NN
+subjectivity NN
+gimcracks NNS
+soluble JJ
+tranche NN FW
+proteolysis NN
+Thermal JJ NNP
+Hubel NNP
+cyclohexanol NN
+strengthened VBN JJ VBD
+isolates VBZ
+exporting VBG
+sarcastically RB
+d'Exploitation NNP
+Photographer NNP
+anti-Nazis NNPS
+Hawks NNPS NNP NNS
+sally VB
+submerge VB
+Mil-Spec NNP
+Einhorn NNP
+adjoining VBG JJ
+affectingly RB
+vicitims NNS
+legitimately RB
+Nightingale NN NNP
+anti-pollution JJ
+Andean JJ NNP
+asset-trading NN
+Mortgage NNP NN
+back-pain NN
+Tulip NNP
+sop NN
+electroshocks NNS
+liberation NN
+Parrott NNP
+Loses VBZ
+stat NN
+Maiorana NNP
+firings NNS
+rostrum NN
+sailor NN
+haphazard JJ
+Adoniram NNP
+Buber-think NNP|VB
+glued VBN VBD
+frugally RB
+non-wealthy JJ
+draws VBZ NNS
+twins NNS
+lise NNS
+disliking VBG
+Paestum NNP
+Thema NNP
+tampering VBG NN
+relearns VBZ
+Peanuts NNP NNPS NNS
+paralyzing VBG JJ
+Look VB NN UH NNP
+remedied VBN
+Tandler NNP
+compulsivity NN
+Teletypes NNS
+nutmeg NN
+auf FW
+Whitby NNP
+Dupps NNP
+well-mannered JJ
+Muratore NNP
+Giguiere NNP
+pensioner NN
+self-conscious JJ
+surreptitious JJ
+zipped VBD
+below-average JJ
+Bell NNP
+futures-market NN
+peppy JJ
+NASA-Air NNP
+upstanding JJ
+hand-carved JJ
+Sexual NNP
+Sportsman NNP
+blend NN VBP VB
+brig NN
+allergy NN
+interrogated VBN
+IFA NNP
+Casinos NNS
+teakettle NN
+Megat NNP
+wavelengths NNS
+Comparing VBG
+FUTURES NNS
+Liberman NNP
+hightailing VBG
+tediously RB
+kindled VBN
+morocco-bound JJ
+Almond NN
+singularity NN
+Driven VBN
+atomisation NN
+clashed VBN VBD
+underutilization NN
+vielleicht FW
+mega-lawyer NN
+intolerable JJ
+BUSINESS NN NNP
+whisper NN VB
+Suppression NN
+Babatunde NNP
+Vasilenko NNP
+lawnmower NN
+reneging VBG
+Buksbaum NNP
+heat-treatment NN
+neoclassical JJ
+incentive-backed JJ
+Zuratas NNP
+entreaties NNS
+glint NN
+amazing JJ
+Clarkson NNP
+Jacksons NNPS
+EXP NNP
+left-justified JJ
+Erskine NNP
+resurgent JJ
+flight-attendants NNS
+treament NN
+Modestly RB
+travelrestrictions NNS
+Bueky NNP
+assiduity NN
+Henning NNP
+Low-paying JJ
+individualized JJ VBN
+Yastrzemski NNP
+anticipates VBZ
+spanned VBN VBD
+slavishly RB
+Parfums NNP
+dehydrate VB
+WWRL NNP
+audio JJ NN
+agglutinins NNS
+Frucher NNP
+CHALLENGED VBN
+Bailkin NNP
+Estimated VBN JJ
+forefeet NN
+Heckman NNP
+co-market VB
+single-spaced JJ
+Lorna NNP
+unstuffy VB
+Roxani NNP
+rail-mobile JJ
+intermission NN
+attached VBN JJ VBD
+Kilpatrick NNP
+Rector NNP
+flowered JJ VBD VBN
+Hydroxides NNS
+Chesterton NNP
+Playhouse NNP
+time-span NN
+pneumonia NN
+travel-management NN
+Dumont NNP
+dei NNP FW
+Hennefeld NNP
+government-guaranteed JJ
+Fault NNP
+tutor NN VB
+rodeo NN
+concerti NNS
+Reaganomics NNP
+swindlers NNS
+Sextet NNP
+sales-tax NN JJ
+Arcilla NNP
+upheaval NN
+S.O.B NNP
+Experts NNS
+Jenco NNP
+Prosecutor NNP
+movable JJ NN
+smell NN VB VBP
+marvel VB NN
+perpetrate VB
+observing VBG
+admiralty NN
+ski-joring NN
+Hair NN
+Argent NNP
+traversed VBN VBD
+reductions NNS
+wives NNS
+hammerlock NN
+Days NNP NNPS NNS
+pale-blue JJ
+Gerd NNP
+ferrying VBG
+Manaifatturiera NNP
+Overly RB
+NAV:22.15 NN
+Ariz.-based JJ
+bylines NNS
+Unknown JJ
+Distilled NNP
+Telsmith NNP
+Brainards NNPS
+god-like JJ
+consonance NN
+Squat-style JJ
+Maharashtra NNP
+Bremerton NNP
+Fosterite NNP
+foreseeing VBG
+BACK RB
+lid NN
+HHS NNP
+worst-marked JJ
+Bloomington NNP
+corn-seed NN
+Maris NNP
+fourth-period JJ
+sealed VBN VBD JJ
+Baa-3 JJ NNP NN
+Durer NNP
+orbital JJ NN
+king-sized JJ
+VISTA NNP
+Sidley-Ashurst NNP
+directionlessness NN
+hissed VBD
+ys VBZ
+chinless JJ
+Haney NNP
+menial JJ
+Walton NNP
+Panmunjom NNP
+Farm NNP NN
+Michele NNP
+voters NNS
+off-price JJ
+pursues VBZ
+blackmailed VBN
+think-tank NN
+Ragnar NNP
+drag NN VBP VB
+On IN NNP
+hangars NNS
+pose VB VBP NN
+sharp-rising JJ
+lift-ticket JJ NN
+Celgar NNP
+Works NNP NNS NNPS
+unfrocking NN
+Geolite NN
+Fashions NNPS
+Expressing VBG
+medics NNS
+Muong NNP
+cost-conscious JJ
+Tama NNP
+Pericles NNP
+fuses NNS
+misplaced VBN
+Stancs NNP
+low-growth JJ
+price-skirmishing JJ
+rearranged VBD
+TEMPORARY JJ
+dollar-priced JJ
+Satellite NNP
+Palache NNP
+confessional NN JJ
+trade-distorting JJ
+Khost NNP
+wisdom NN
+Peiping NNP
+Lingering JJ
+bonanzas NNS
+liver NN
+Platinum NN NNP
+Kai NNP
+soldiers NNS
+standards NNS
+four-wheel-drive NN JJ
+best-tempered JJ
+Francie NNP
+five-judge JJ
+stake-holding JJ
+Ganges NNP
+Dyncorp. NNP
+derriere NN
+Drogoul NNP
+internationals NNS
+Shikotan NNP
+nearly RB
+Million-dollar JJ
+cardholder NN
+Adlai NNP
+delinquencies NNS
+Walitzee NNP
+Lobbying NN
+voiced VBD JJ VBN
+Rafferty NNP
+Enforcement NNP NN
+Opportunity NNP NN
+souvenir NN
+possibly RB
+similarities NNS
+sun-browned JJ
+stock-for-debt JJ
+hard-drinking JJ
+ballad NN
+categories NNS
+west NN JJ RB JJS
+Convenience NNP JJ NN
+Snow NNP NN
+footloose JJ
+sub-surface NN
+Jersey NNP
+mat NN
+whichever WDT
+Pi NN NNP
+Cream NNP
+Pullman NNP
+insistently RB
+barge NN VB VBP
+Kopstein NNP
+socio-political JJ
+PNC NNP
+Shaker NNP
+Authentication NNP
+puppy NN
+arithmetized VBN
+poeple NN
+witnessed VBN VBD
+registering VBG
+clarifies VBZ
+teacher-employee NN
+grandstand NN
+Pursewarden NNP
+Kosan NNP
+unrelenting JJ
+American-built JJ
+weights NNS VBZ
+Peel NNP
+Whiteboard NNP
+bunkmates NNS
+Nicos NNP
+Winston-Salem NNP
+Compounding VBG
+Untold JJ NNP
+tubercular JJ
+Monterrey-based JJ
+multiplexer NN
+CP486 NNP CD
+Yaaba NNP
+DeMontez NNP
+refrain VB NN
+fastidious JJ
+northward RB
+mujahideen FW
+Cacophonist NNP
+Sophoclean NNP
+servo NN JJ
+well-educated JJ
+matriculated VBN VBD
+pork NN
+long-keeping JJ
+'Watch VB
+peruse VB VBP
+falter VB VBP
+Hanft NNP
+Carrot NNP
+Vowel-Length NN
+overgeneralization NN
+Chaplin-like JJ
+Ryrie NNP
+gilt JJ NN|JJ NN
+paralleling VBG
+yesteryear NN
+Bachmann NNP
+once-troubled JJ
+Foreclosed VBN
+intriguing JJ VBG
+UFOs NNS
+Connor NNP
+environmentalists NNS
+Sheer NNP JJ
+palmtops NNS
+reproduction NN
+Much RB JJ NNP
+Faced VBN VBD
+radicals NNS
+groundwork NN
+replenish VB
+alligators NNS
+HUSBANDS NNS
+WE PRP
+Garamendi NNP
+FINANCIAL NNP
+federal-local JJ
+Grammar NNP
+clerk NN
+H NNP LS NN
+misunderstands VBZ
+Ericson NNP
+Lillian NNP
+Pripet NNP
+parts NNS
+Constitutions NNS
+disarmed JJ VBN
+tune-belly NN
+reinforcing VBG
+Weisberg NNP
+Repeat NN VB
+much-thumbed JJ
+Yalagaloo UH
+Jagan NNP
+Koskotas NNP
+constricting VBG
+non-literary JJ
+throng NN VBP
+Allison NNP
+Rapanelli NNP
+disintegrative JJ
+centimeter NN
+Biden NNP
+second-most-conservative JJ
+boot-stomping JJ
+Speakership NNP
+expansionists NNS
+DeScenza NNP
+interacts VBZ
+free-spending JJ
+AT&T NNP NN
+bulkhead NN
+unblock VB
+child-protection NN
+dipoles NNS
+stiffnecked JJ
+USAA NNP
+inopportune JJ
+Gebrueder NNP
+chandelier NN
+Yevgeny NNP
+primetime NN
+Milos NNP
+Aparicio NNP
+spring-brake NN
+Seizin VBG
+equities NNS
+accessions NNS
+tax-based JJ
+Jorda NNP
+pool... :
+Less-than-truckload JJ
+deux FW
+Wickes NNP NNS
+portents NNS
+Ullman NNP
+chousin VBG
+Tancred NNP
+aniline NN
+pram NN
+cider NN
+fisted VBD
+sweaters NNS
+d'Alene NNP
+TINTING NN
+irrigate VB
+inciting VBG
+Concordance NN
+over-achievers NNS
+Difficult JJ
+Paternelle NNP
+hereby RB
+rate... :
+fractions NNS
+Balloon NNP NN
+thin-soled JJ
+deceptively RB
+debris NN
+flattered VBN JJ VBD
+solaced VBN
+valley NN
+Potts NNP
+Negotiators NNS
+stool NN
+L.S.U. NNP
+co-sponsoring JJ
+Buddhist JJ NN NNP
+non-biodegradable JJ
+GR8FLRED CD NNP
+vertex NN
+twenty-eight JJ CD NN
+salicylates NNS
+dromozootic JJ
+wingman NN
+TAMPA NNP
+Upton NNP
+Digate NNP
+looseleaf NN
+draping VBG
+suhthuhn JJ
+deployments NNS
+Altogether RB
+school-bus NN
+confirming VBG
+retooling VBG NN
+floods NNS
+Rafales NNPS
+unromantic JJ
+ninefold JJ RB
+prejudices NNS
+Alda NNP
+Comiskey NNP
+My PRP$ NN NNP
+Newsreel NNP
+payout-bylaws NNS
+re-established VBD
+acrylic NN
+ahdawam UH
+shatterproof JJ
+consulates NNS
+Dilys NNP
+economic JJ
+openness NN
+high-beta JJ
+Prenatal JJ
+Vinken NNP
+branches NNS
+crush NN VB
+ballyhoo NN
+pooling VBG NN
+Machelle NNP
+parentheses NNS
+conjecture NN
+enriching VBG
+sinned VBN
+Secilia NNP
+cradled VBN
+Originals NNS
+comport VB
+Alar NN NNP
+Atkins NNP
+Rath NNP
+Anchor NNP
+Athletic NNP JJ
+relicensing NN
+overflowed VBD
+armadillo NN
+adjourns VBZ
+enjoinder NN
+tooke VBD
+Lovenberg NNP
+Fifield NNP
+Biedermeier FW NNP
+Rande NNP
+Elrick NNP
+sterilizer NN
+Brought VBN
+Westamerica NNP NN
+sand-mining NN
+Beloved NNP
+Ehman NNP
+convenient JJ
+Puffing VBG
+qualifications NNS
+Gold NNP NN
+ICS NNP
+tubes NNS
+Hybrid NNP
+Yemenis NNPS
+trickle NN VB VBP
+wrist NN
+reshuffled VBD
+Cage NNP
+topics NNS
+poles NNS
+Afghanistan\/Southwest NNP
+politician NN
+numerical JJ
+blackened VBN JJ
+steel-making JJ
+exacerbated VBN VBD
+A-320s NNP NNS
+alcohol NN
+Blinder NNP
+lives NNS VBZ
+mystically RB
+invents VBZ
+sinuously RB
+whittling VBG
+balance-sheet NN JJ
+borne VBN
+haters NNS
+Zoning NNP
+urge VB VBP NN
+quickie NN JJ
+Southbrook NNP
+ONCE RB
+lie VB VBP NN
+Malkovich NNP
+Edelmann NNP
+Willings NNP
+W-2 NN
+atm NN
+Caron NNP
+fetal JJ
+Intertrade NNP
+Wilbur NNP
+passable JJ
+northernmost JJ
+Insta-Care NNP
+UH-60A NNP
+Secretion NN
+anti-submarine JJ
+Baris NNP
+Shakes VBZ
+Crean NNP
+Precise JJ
+topgrade JJ
+Midge NNP
+original-equipment JJ NN
+nonferrous JJ
+interventionist JJ
+dissatisfied JJ VBN
+hairpiece NN
+indirectness NN
+Municipals NNS NNPS
+Argonne NNP
+indecipherable JJ
+Pittman NNP
+instigation NN
+iced-tea NN
+clandestine JJ
+Malmud NNP
+environmental-services NNS
+mealynose NN
+heavily-upholstered JJ
+vibrancy NN
+revision NN
+Torpetius NNP
+trundled VBD VBN
+precursor NN
+Gasoline NN
+Custodian NNP
+odds-on JJ
+cash-up-front NN
+Gilkson NNP
+obliterated VBN
+Healthier JJR
+rum NN
+temporal JJ NN
+cu. NN
+yt NN
+dinnerware NN
+Gestapo NNP
+PLO NNP
+arm-levitation NN
+finagling NN
+R-Warren NNP
+Nurseries NNPS
+Onlookers NNS
+--agreed NN
+episodes NNS
+Twain NNP
+re-legalization VB
+Mts. NNP
+renaissance NN NNP
+fielding NN VBG
+old-model JJ
+motors NNS
+lube NN
+re-run VBN
+UP IN RP NNP
+Osprey NNP
+minority-owned JJ
+Cheers NNP
+Citroen NN
+Inlet NNP
+salient JJ
+suffragettes NNS
+hemisphere NN
+prudential JJ
+assignment NN
+Maitres NNP
+Aspin NNP
+obstinate JJ
+orney JJ
+modifiers NNS
+mosey VB
+Arnault NNP
+Prandini NNP
+Lybrand NNP
+self-satisfaction NN
+nerve-shattering JJ
+Monastery NNP
+micromanage NN
+Teknowledge NNP
+Leeches NNS
+Drybred NNP
+Ferre NNP
+Idealist NN
+Ukraine NNP
+fat-soluble JJ
+LISA NNP
+See VB UH NNP
+Toland NNP
+self-ordained JJ
+Acorns NNS
+dial NN VB
+CENTERIOR NNP
+Egyptian JJ NNP
+Loom NNP
+FriedrichsInc. NNP
+Reinhold NNP
+church-going JJ
+direct-marketing NN
+channel NN VB VBP
+auto NN
+Quezon NNP
+Studio-City NNP
+self-assurance NN
+Lundeen NNP
+unquestioningly RB
+invokes VBZ
+enunciating VBG
+Carolina NNP
+Hyon-hui NNP
+MUST MD
+Scasi NNP
+modern JJ NN
+throttled VBN
+philanthropist NN
+corporate-image JJ
+veterinarian NN
+Gun NNP NN
+concession NN
+transposition NN
+Ortega NNP
+testifies VBZ
+endogamous JJ
+Oregonian NNP
+exterminate VB
+deteriorated VBN JJ VBD
+Tenderly RB
+alum NN
+Helga NNP
+lymphoma NN
+proessional NN
+Alpha NNP
+encloses VBZ
+Ready JJ NNP
+Pierre NNP
+alleged VBN JJ VBD
+Sekisui NNP
+one-upmanship NN
+foil NN VB
+Poetrie NNP
+wrinkled JJ VBD VBN
+securitization NN
+Market-if-touched JJ
+Sukle NNP
+relatedness NN
+ass NN
+rubber-necking VBG
+Bathyrans NNPS
+Amschel NNP
+semi-annual JJ
+Israeli-Palestinian JJ NNP
+mamalian JJ
+insure VB VBP
+Opus NNP
+t'jawn VB
+Cominform NNP
+pews NNS
+unruffled JJ
+pricing NN VBG
+Windle NNP
+checkin VBG
+Takuro NNP
+Strekel NNP
+visits NNS VBZ
+inwardness NN
+Imreg NNP
+grooved VBN
+newly-married JJ
+depredations NNS
+Gre. NNP
+distil VB
+Teaching NN NNP VBG
+Cannavino NNP
+Meatheads NNS
+Lett NNP
+uniqueness NN
+unoriginals NNS
+Reichhart NNP
+Bixby NNP
+COLGATE-PALMOLIVE NNP
+lemon NN JJ
+Orix NNP
+skylights NNS
+sociologists NNS
+Frontiers NNS
+Mignon NNP
+depressants NNS
+wielding VBG
+Rosencrants NNP
+Mideast NNP JJ NN
+telescoping NN
+HANDICAPPED VBN
+Katherine NNP
+Clinico-pathologic NNP
+Smith\/Greenland NNP
+GNP NNP NN
+I PRP CD NNP LS NN
+Lethal NNP
+Progressivism NNP
+mightily RB
+four-month-old JJ
+Docherty NNP
+IFC NNP
+tinkling VBG
+sentencing NN VBG JJ
+wholly-owned JJ
+fens NNS
+yelping VBG
+deficit-debt NN
+gladness NN
+Colombatto NNP
+heaping VBG
+Traded NNP VBN
+coach NN
+joggers NNS
+Hoffman NNP
+refurbish VB
+wheezing VBG JJ
+rattail NN
+Naclerio NNP
+Physicochemical JJ
+Slaughter NNP
+deterrent NN
+T.M.B. NNP
+genuinely RB
+Marxism NNP
+defers VBZ
+Shakshuki NNP
+Spengler NNP
+mares NNS
+Gerdes NNP
+Tiny NNP JJ
+undimmed VBN
+Fleet\/Norstar NNP
+multifaceted JJ
+defensive JJ NN
+DeHaviland NNP
+welts NNS
+Background NN
+storability NN
+not-so-lonely JJ
+Burrillville NNP
+liquidities NNS
+Alas UH RB
+slimly RB
+concomitantly RB
+health-benefits JJ
+aggressively RB
+post-colonialism NN
+ramification NN
+lynched VBN
+capital-equipment NN
+Signora FW NNP
+Ponder VBP
+applying VBG
+Hopedale NNP
+Delvin NNP
+property-poor JJ
+SwedBank NNP
+idealization NN
+questionaire NN
+Levi NNP
+car-rental JJ NN
+well-regarded JJ
+handcrafted VBN
+translations NNS
+Fiery JJ
+greening JJ NN VBG
+skinheads NNS
+Kolman NNP
+Gatsby-in-reverse NN
+Pickman NNP
+Victor-brand JJ
+fawning JJ VBG
+certitudes NNS
+Titled VBN
+pseudo-glamorous JJ
+Minds NNPS
+non-accrual JJ
+pirated VBN
+kingmaker NN
+Kempe NNP
+doctorates NNS
+Perna NNP
+buy-sell JJ
+retire VB VBP
+Fatso NN
+,.. NN
+Tussle NNP
+work-satisfaction NN
+Fortune NNP NN
+deras FW
+annulled VBD
+stopwatch NN
+unmotivated JJ
+securitiess NN
+Cris NNP
+five-days-a-week JJ
+prescribed VBN JJ VBD
+bread-and-butter JJ
+trilled VBD
+Islamic NNP JJ
+citrus JJ NN
+magistrates NNS
+Potato NN
+transients NNS
+destroyed VBN VBD JJ
+coffers NNS
+breaker NN
+McMeel NNP
+bilharziasis NN
+slits NNS VBZ
+Jackson-Cross NNP
+dynamite NN JJ
+Mudd NNP
+Kershbaum NNP
+Trop NNP
+RAYCHEM NNP
+Alper NNP
+cohnfidunt NN
+Patterns NNS
+Mackenzie NNP
+tangents NNS
+half-drunk JJ
+Football NNP NN
+PROSPECTS NNS
+gains-tax JJ NN
+PARTNER NN
+inventive JJ
+demobilized VBN
+unrelieved JJ
+subjugating VBG
+underlay VBP
+marketmaking NN
+recompence NN
+lap-shoulder JJ
+Hoffa NNP
+construction-oriented JJ
+Obeying VBG
+sewing NN VBG
+adulthood NN
+test-run NN
+innovations NNS
+Watson-Watt NNP
+fumigant NN
+Fernand NNP
+handspikes NNS
+existence NN
+resistive JJ
+literature NN
+Panicked JJ
+Czarship NNP
+newspaper-delivery NN
+blue-carpeted JJ
+Centerbank NNP
+Hint NN
+jinxed VBN
+divergence NN
+orgiastic JJ
+Fagenson NNP
+architecture NN
+kickers NNS
+testy JJ
+amicably RB
+informant NN
+sake NN FW
+Riegle NNP
+'im PRP
+Sheet NNP
+intend VBP VB
+significance NN
+Runyon NNP
+fair-looking JJ
+Dancer NNP
+Louise NNP
+meme FW
+reprographic JJ
+Waring NNP
+Saturn NNP
+sidechairs NNS
+mecum FW
+shards NNS
+enriched VBN
+schemata NN
+passenger-kilometers NNS
+baby NN UH
+rehearsed VBN
+evidence NN VBP
+pulley NN
+Schwemer NNP
+Some DT NNP RB
+Boliou NNP
+Nu NNP
+kinesics NNS
+raillery NN
+yelp NN
+oilfield NN
+reinstalled VBN
+TV NN NNP
+run VB VBD VBN VBP NN
+destabilize VB
+Pulkova NNP
+Agnew NNP
+European-based JJ
+anytime RB
+strong-jawed JJ
+Body NNP NN
+cousins NNS
+modernistic JJ
+shear NN VB
+commawnded VBD
+day-even NN
+dissipates VBZ
+watchtowers NNS
+Maxicare NNP
+CNCA NNP
+referees NNS
+MC88200 NNP
+conversational JJ
+contentedly RB
+racketeers NNS
+Konitz NNP
+Cheerful JJ
+announcers NNS
+Photographic JJ
+Billing NN
+Trockenbeerenauslesen NNP
+splattered VBN
+instinctive JJ
+Efforts NNS
+MEXICO NNP
+Herzlinger NNP
+non-enforcement JJ
+Rockville NNP
+dough NN
+Banxquote NNP
+diam NN
+tete-a-tete NN
+shrunk VBN
+Loon NNP
+large-business JJ
+Quina NNP
+seventeenth JJ
+Bankruptcy-court NN
+Liming NNP
+terminates VBZ
+York-mind NNP|NN
+Motion NNP NN
+cede VB
+Thoma NNP
+datelined VBN VBD
+Hengesbach NNP
+restructures VBZ
+vaccine NN
+semi-circle NN
+schnooks NNS
+Belo NNP
+souring NN VBG
+Kulani NNP
+imagery NN
+tortillas NNS
+CONTAMINATION NN
+formality NN
+Quill NNP
+Goethe NNP
+World-Journal-Tribune NNP
+off-farm JJ
+inflection NN
+Mahoganny NNP
+non-scientific JJ
+decentralize VB
+Exchequer NNP NN
+milks VBZ NNS
+self-tender JJ
+drowsily RB
+epidemic NN JJ
+Wedding NN NNP
+reawakening VBG
+Japanese-type JJ
+blond JJ NN
+semipublic JJ
+scams NNS
+out-of-touch JJ
+State-run JJ
+Craving VBG
+alternatives NNS
+Burmah NNP
+Large JJ NNP
+tortuous JJ
+barked VBD
+Paved VBN
+flicks NNS
+Sequoia NNP NN
+billion CD
+shimmering VBG JJ
+Untouchables NNPS
+timber NN VB
+discorporate JJ VB
+chocolate NN JJ
+unrealistic JJ
+Dyerear NNP
+composites NNS
+aloft RB
+Linwick NNP
+Thriving JJ
+trails NNS VBZ
+Bhabani NNP
+disagrees VBZ
+surrounding VBG JJ NN
+allocates VBZ
+irritants NNS
+signs NNS VBZ
+Kearny NNP
+jammed VBN VBD JJ
+ast JJ
+threaten VB VBP
+INDIAN JJ
+bran-processing JJ
+motels NNS
+hara-kiri FW
+anarchist-adventurers NNS
+predicated VBN
+seeping VBG
+insurgency NN
+Armory NNP
+McAfee NNP
+unconsciously RB
+modeled VBN VBD JJ
+Dunn NNP
+one-hour JJ
+regional JJ
+Kochan NNP
+invariable JJ
+phonographs NNS
+spouted VBD JJ
+farm-subsidy NN
+ever-present JJ
+Sutra NN
+easier JJR RBR RB
+Dunlap NNP
+Instituto NNP
+Chicago-Manchester NNP
+perchlorate NN
+prefers VBZ
+Civ. NNP
+Bend NNP VB
+heliotrope NN
+canisters NNS
+intangibles NNS
+ebb-and-flow NN
+uneasily RB
+reformed VBN JJ VBD
+autonomic JJ
+shunned VBD VBN
+violet NN
+Pledge NNP
+stewardess NN
+Leperq NNP
+axially RB
+refocuses VBZ VB
+flinching VBG
+Gillis NNP
+drug-trafficking JJ VBG NN
+Shan NNP
+Phosphates NNP
+JAC NNP
+reconvened VBN
+resilient JJ
+Rally NNP NN VB
+calculable JJ
+All-Union NNP
+gnomes NNS
+Calude NNP
+million-gallon JJ
+northeast NN JJ RB
+competitively RB
+iodoamino NN
+kob NN
+floats VBZ
+Reliability NN
+Carter NNP
+sniffers NNS
+quantified VBN
+gashes NNS
+Basel NNP
+reach VB VBP NN
+Siebel NNP
+slipped VBD VBN
+Chou NNP
+pottery NN
+Enhanced NNP
+well-rehearsed JJ
+Morse NNP
+Cheyenne NNP
+Teutonic JJ
+outpaces VBZ
+sleeper NN
+Consumer NNP NN
+DiFilippo NNP
+Eurocom NNP
+ODDITIES NNS
+Epitaph NNP
+Racin NNP
+Irenaeus NNP
+Ahm PRP
+bare-footed JJ
+Butz NNP
+vernier NN
+Demisch NNP
+Rafsanjani NNP
+Plasti-Bars NNP
+makeover NN
+Stratagene NNP
+Wyche NNP
+spewings NNS
+plant-and-equipment JJ
+Golf NNP NN
+Cokes NNS
+riboflavin NN
+redecoration NN
+castigated VBN VBD
+bureaucratization NN
+Eckerd NNP
+Indicating VBG
+close VB VBP JJ NN RB
+Austria NNP
+Artist NNP NN
+posh JJ
+Babylonians NNPS
+Supplee NNP
+high-fidelity NN
+Cima NNP
+Treybig NNP
+stormy JJ
+Runners NNS
+Hot NNP JJ
+Montreal-based JJ
+Bea NNP
+Driver NNP NN
+Opening VBG NN
+J NNP LS NN
+Missail NNP
+Overreacting VBG
+Traynor NNP
+Hanley NNP
+self-analysis NN
+sports-and-entertainment JJ
+non-fiction JJ NN
+avocados NNS
+gaming-industry NN
+antihistamine NN
+abasement NN
+temper NN VB
+pilings NNS
+Rim NNP
+goldfish NN
+loose-leaf JJ
+arable JJ
+Quatsch FW
+Organizational JJ
+Shiites NNPS
+hunter-killer NN JJ
+SQUARE NNP
+dissimiliar JJ
+REAL-ESTATE JJ NN
+short-run JJ NN
+Panasonic NNP JJ
+algorithm NN
+Chores NNS
+del NNP DT FW
+co-optation NN
+Trumka NNP
+overextend VBP
+Dances NNS NNPS
+Flint NNP
+perceptive JJ
+Multimate NNP
+studentled VBN
+Marder NNP
+Southfield NNP JJ
+coextrude VBP
+Garret NNP
+privations NNS
+Udayan NNP
+leathery JJ
+sleepwalking VBG NN
+Presbyterianism NN
+Gulag NNP NN
+corrects VBZ
+deplete VB
+re-marketing NN
+lantern NN
+somewheres RB
+bilinear JJ
+Kahan NNP
+aspen NN JJ
+sabre-rattling NN
+Hershiser NNP
+xenon NN
+Fate NNP NN
+unarmed JJ
+innuendo NN
+Kudlow NNP
+invited VBN VBD
+bon FW
+fogy NN
+heft NN
+Election NNP NN
+I.L. NN
+Regulus NN
+JCKC NNP
+Ivern NNP
+prossed FW
+Armas NNP
+Susquehanna NNP
+unmanageably RB
+Soderblom NNP
+CITIES\/ABC NNP
+well-to-do JJ NN
+changes... :
+unfathomable JJ
+vagabond NN
+Solchaga NNP
+off-the-cuff JJ
+encrusted VBN
+Highways NNS NNP NNPS RB
+rhapsodizing VBG
+slackened VBD JJ VBN
+lawyers NNS
+phenomenal JJ
+animated JJ VBD VBN
+Terramycin NN
+circumventing VBG
+Gov. NNP
+impede VB VBP
+ticket-writing NN
+hurlers NNS
+Sitwell NNP
+STAR NN
+Shinbun NNP
+Waldorf-Astoria NNP
+unstrung JJ
+Lorne NNP
+Twist NN VB NNP
+reforming VBG
+Pieter NNP
+pertinent JJ
+Troyes NNP
+perceptiveness NN
+dynamism NN
+thirty-eighth JJ
+Saatchis NNPS
+destroyers... :
+Helen NNP
+post-Oct NNP
+related VBN JJ VBD JJ|VBN
+non-beer JJ
+esprit FW
+rooming-house NN
+repertory NN
+Muck NNP
+Free-marketeers NNS
+weeds NNS
+tie-ups NNS
+plies VBZ
+Renoir NNP JJ
+granted VBN JJ VBD
+Bylot NNP
+quasi-private JJ
+Manderscheid NNP
+less-self-confident JJ
+Mineralogies NNPS
+voyeurism NN
+skindiving VBG
+vagaries NNS
+league NN
+unhappiness NN
+fuel-neutral JJ
+CARIPLO NNP
+Famed JJ
+batters NNS VBZ
+Waterville NNP
+DOE-site NN
+uttered VBD VBN
+Impatiently RB
+wellness NN
+Kal NNP
+Quicker JJR
+Equitable NNP
+Virginia NNP
+determined VBN VBD JJ
+Profit-taking NN
+catch-up NN JJ
+Erection NNP
+mortgage-lending JJ NN
+Ryukichi NNP
+blemish NN
+Richer NNP JJR
+diluting VBG
+Sitting VBG
+bothering VBG
+coils NNS
+statesmanlike JJ
+seventh-most-admired JJ
+velveteen NN
+sinless JJ
+taut-nerved JJ
+Krohley NNP
+Salerno-Sonnenberg NNP
+pianos NNS
+facet-planes NNS
+reinterpretation NN
+NICHOLS NNP
+walkie-talkie NN
+profs NNS
+bombshell NN
+Wilshire NNP
+TW NNP
+Perella NNP
+curbed VBN VBD
+maw NN
+gravid JJ
+Waymouth NNP
+scourge NN
+Sensor NNP
+big-ticket JJ
+five-point JJ
+steel-gray JJ
+Condit NNP
+Bottom NNP JJ NN
+Tennis NNP
+built-in JJ NN
+PATOIS NNP
+lbs. NNS
+information-seeking NN
+low-paid JJ
+bowled VBN
+non-energy JJ
+friezes NNS
+Arvey NNP
+Abrupt JJ
+Valdemar NNP
+music-publishing JJ
+deportees NNS
+Sheriff NNP NN
+threefold JJ RB
+inactivate VB
+non-dual JJ
+state-supported JJ
+infections NNS
+ascended VBD
+LOSSES NNS
+turnarounds NNS
+Arbitration NN
+Masson NNP
+Kremlin NNP
+chines NNS
+Spill NN
+rescue NN VB
+Seitz NNP
+horizontal-restraints NNS
+troika NN
+oil-leasing NN
+engulfs VBZ
+pre-maquila JJ
+Soll NNP
+Philharmonic NNP NN
+barricade NN VB
+friends NNS
+Wrigley NNP
+clover NN
+partisans NNS
+discordant JJ
+orientation NN
+sugar-growing JJ NN
+eliminate VB VBP
+foreign-trade JJ NN
+construe VB VBP
+esters NNS
+CLOSE NN
+anti-generic JJ
+Passenger NN NNP
+Preyss NNP
+Shiseido NNP NN
+forswears VBZ
+tenaciously RB
+Barbra NNP
+sahibs NNS
+theft NN
+Jewelers NNPS NNP
+concretely RB
+concerto NN
+attach VB VBP
+Removed VBN
+Hale NNP JJ
+Wavy JJ
+pitcher NN
+Boxing NN
+'Just RB
+occupancy NN
+sincerity NN
+government-assisted JJ
+Dotson NNP
+Rezneck NNP
+Telemetries NNPS
+Tabarro FW
+Well-Tempered JJ
+Farmer NNP NN
+eerie JJ
+Ferreira NNP
+prestidigitator NN
+Requests NNS
+Fight VB NN
+aggravated VBN VBD
+mismatches NNS
+Tillet NNP
+consenting VBG JJ
+romped VBD
+cahoots NNS
+area-sales JJ
+arroyo NN
+microprocessor NN
+liberalizing VBG
+cycling NN VBG
+accidently RB
+table-top JJ
+glorying VBG
+anti-leak JJ
+Smythe NNP
+Sigmen NNP
+Gorilla NNP
+Bancshares NNPS NNP
+Takagi NNP
+First-round JJ
+jewel NN
+co-operating VBG
+enrich VB VBP
+Alsatians NNPS
+fresh-perked JJ
+Kenji NNP
+scolding VBG
+b-Includes VBZ
+backwards RB NNS JJ
+sixth-sense NN
+Wear VB NNP
+multiple-purpose JJ
+Observer NNP
+Wilcox NNP
+mea FW
+Yamatake NNP
+Answers VBZ NNS
+crimson JJ NN
+Burlingame NNP
+inflation-induced JJ
+slower-than-anticipated JJ
+Vigdor NNP
+W-region NN
+sizable JJ
+streamers NNS
+cannot MD
+one-room JJ
+Miss NNP NN
+Kosar NNP
+zq NN
+Bolker NNP
+Shevchenko NNP
+Pressured VBN
+Success NN NNP
+well-rounded JJ
+Dhofaris NNPS
+Guggenheim NNP
+Thus RB
+Borrowed VBN
+Tiger-turned-Federal JJ
+pretenses NNS
+orchardists NNS
+Ethel-Jane NNP
+turn VB NN RB VBP
+Guignol NNP
+attic NN
+locales NNS
+shapeless JJ
+Inman NNP
+throw-rug NN
+Lapps NNPS
+technolology NN
+LAND NNP
+Departments NNPS NNP
+admonishing VBG
+flatulent JJ
+negligently RB
+Heber NNP
+Bonnell NNP
+well-regulated JJ
+Decries VBZ
+Jacobean JJ
+Porcaro NNP
+spoiler NN
+medicine NN
+Berman NNP
+W.E. NNP
+soldiery NN
+Deeply RB
+amor FW
+murders NNS VBZ
+Oberman NNP
+TWO-A-DAY JJ
+incarnate JJ VB
+desirous JJ
+Cady NNP
+Freind NNP
+stashed VBN VBD
+divvied VBN
+Listening NN VBG
+Sybert NNP
+Sixties NNPS NNS
+discarded VBN VBD
+Caroline NNP NN
+old-time JJ
+benefiting VBG
+snuck VBD
+meanin VBG NN
+buoyed VBN VBD
+pacing VBG JJ NN
+Chinn NNP
+inpost NN
+Contrasts NNS
+three-row JJ
+boiler-room NN
+bankholding VBG
+Woolworth NNP NN
+Nonfinancial JJ
+Liquid NNP JJ NN
+Group NNP NN
+fireman NN
+defiant JJ
+Maier NNP
+sanctuary NN
+junkies NNS
+Edmonia NN
+Senator NNP
+unfortunates NNS
+sevenday JJ
+beauticians NNS
+SmithKline NNP
+nowbankrupt JJ
+halfhearted JJ
+DieHard JJ
+skyrocket VB
+snipe VB
+Hubbell NNP
+Deppy NNP
+clutter NN VB
+professor NN
+extraneous JJ
+unhurt JJ
+Denlea NNP
+Zeller NNP
+grantee NN
+Noschese NNP
+reassure VB
+booboos NNS
+indoctrinating NN
+intervenors NNS
+margins... :
+mildly RB
+simian JJ
+alcoves NNS
+entice VB VBP
+Measure NN NNP VB
+geared VBN VBD
+salon NN
+clambering VBG
+non-NMS JJ
+Lizzie NNP
+constriction NN
+audit NN VB
+guileless JJ
+Stock-fund JJ NN
+restore VB VBP
+thrust-to-weight JJ
+strobe NN
+Felipe NNP
+break-through NN
+clod NN
+paddock NN
+Leaning VBG NNP
+plainclothes NNS JJ
+jigsaw NN
+Harmonia NNP
+government-orchestrated JJ
+Apache NNP NNPS
+Peep NNP
+backers NNS
+fudged VBD
+Overreach NNP
+corroborate VB VBP
+Bullfinch NN
+Ronnie NNP
+copyrighted VBN
+Pepperell NNP
+watercolors NNS
+C-5B NN NNP
+renovate VB
+Kiang NNP
+retaliated VBD
+improvisations NNS
+Mulroney NNP
+McRoberts NNP
+Djurdjevic NNP
+gruesomeness NN
+game-winning JJ
+fabricator NN
+plagued VBN VBD
+K NNP LS NN
+Patriots NNPS
+tuning VBG NN
+frog-eating JJ
+six-point JJ
+Predictably RB NNP
+melted VBN JJ VBD
+melding VBG NN
+generated VBN VBD VBG
+fifty-five CD
+Tocqueville NNP
+Steve NNP
+Decimalists NNPS
+aching VBG JJ
+stay VB VBP NN
+non-OPEC JJ
+lamp NN
+Caronia NNP
+reassuring VBG JJ
+logistic JJ
+boo VB
+Nicaraguans NNPS
+tweezers NNS
+stoop VB NN VBP
+Talk NN NNP VB
+saloonkeeper NN
+twosome NN
+analystics NNS
+Brush NNP NN VB
+feigned JJ VBN
+IOWA NNP
+Tire NNP NN
+undergirded VBD
+Wierton NNP
+enslavement NN
+Falin NNP
+intertitles NNS
+Filofaxes NNPS
+near-total JJ
+dictates NNS VBZ
+Loop NNP NN
+diagnosticians NNS
+rubberstamp NN
+CHIMPS NNS
+saunas NNS
+hastened VBD VBN
+Arte NNP
+low-sulphur JJ
+Miraculously RB
+Gurus NNS
+Faraday NNP
+harbors NNS VBZ
+stained-glass NN
+investor-relations NNS JJ
+cloistered JJ
+Hitch NNP
+rubfests NNS
+transactions NNS
+overrendered VBN
+steel-flanged JJ
+aftermarket JJ NN
+Willetts NNP
+hypophyseal JJ
+deWindt NNP
+including VBG
+statehooders NNS
+pitches NNS VBZ
+cloves NNS
+ducking VBG
+siphons NNS
+isopleths NNS
+Flyer-Castle NNP
+Slums NNP
+peacemaker NN
+Helmsley NNP
+Lusaka NNP
+nonaddictive JJ
+weather-resistant JJ
+subsidizes VBZ
+Jack NNP
+Vicar NNP
+Darlow NNP
+Galloway NNP
+Schmalzried NNP
+wool NN
+Ostrowsky NNP
+hand-wringing NN
+halfheartedly RB
+continental JJ
+Randi NNP
+Countering VBG
+validation NN
+Unitarianism NNP
+gable NN
+Stands NNP
+Approaches NNS
+Pension NN NNP
+inflation-growth NN
+marginality NN
+Tricia NNP
+Auto-Europe NNP
+welded VBN
+McCollum NNP
+snatch VB VBP
+Mironenko NNP
+emphysematous JJ
+conflation NN
+Collier NNP
+onslaught NN
+disillusioning JJ
+steel-edged JJ
+relying VBG
+Braud NNP
+monopolize VB
+WSY NNP
+Structural NNP JJ
+Gratified JJ
+max NN
+Delawares NNS
+Aircoa NNP
+Carnegie-Illinois NNP
+clamored VBD
+long-dominant JJ
+soft-spoken JJ
+Half NN NNP PDT DT RB
+adored VBD VBN
+name-dropper NN
+infliction NN
+Stubbs NNP
+scape VB
+Whiting NNP
+over-emphasized VBN JJ
+Coconuts NNPS NNS
+players NNS
+'That's VBZ
+atrophied VBN
+Genghis NNP
+more-than-$ $
+Huber NNP
+half-mincing JJ
+Kriss NNP
+riots NNS
+implemented VBN VBD
+opener NN
+Hettie NNP
+Slated VBN
+diddle UH
+becase IN
+Blakes NNS
+wets NNS
+Olissa NNP
+Brundtland NNP
+heartburn NN
+dolce FW
+Volumes NNS NNP
+nondiscrimination NN
+benevolence NN
+damped VBN VBD VBP
+Protection NNP NN
+hit-and-miss JJ
+coursing VBG
+plagiarizers NNS
+extent NN
+Manville NNP
+Peugeot NNP
+cafeterias NNS
+time-tested JJ
+crass JJ
+French-Canadians NNPS
+reproaches VBZ
+flailing VBG
+SYSCO NNP
+Shoreline NN
+disprove VB
+Wilks NNP
+Baden-Wuerttemburg NNP
+toll-rate JJ
+Penutian NNP
+contain VB VBP
+Smithsonian NNP
+summarization NN
+technological JJ
+three-judge JJ
+Fundamentally RB
+Savage NNP JJ
+StatesWest NNP JJS
+Chow NNP
+sheepe NNS
+Garden-variety NN
+incendiary JJ
+Wartburgs NNPS
+Minella NNP
+Mist NNP NN
+Total-Cie NNP
+aerates VBZ
+screeches NNS VBZ
+Taussig NNP
+Pathet NNP
+Steinman NNP
+blizzard NN
+zero-inflation NN
+tragedy NN
+market... :
+consequent JJ
+Farr NNP
+barreling VBG
+counts NNS VBZ
+Schiffs NNPS
+BethForge NNP
+defended VBD VBN
+forseeable JJ
+Hospitality NNP
+pudding NN
+Skipper NNP
+weighty JJ
+sou FW
+Bay NNP NN
+short-dated JJ
+Suzy NNP
+Gossnab NNP
+Or CC
+purity NN
+peyote NN
+Guderian NNP
+Hyde-to-Jekyll JJ
+tortures NNS VBZ
+Fifty-ninth NNP
+US PRP NNP
+blackmailer NN
+Chino NNP
+attests VBZ
+college-educated JJ
+low-acid JJ
+agenda NN NNS
+McAlinden NNP
+erupted VBD VBN
+non-junkies NNS
+lesser-rank JJR
+quick-fired VBN
+centurions NNS
+writs NNS
+bigness NN
+Signore NNP
+Tolentino NNP
+tortoise NN
+paint-recycling JJ
+non-resistants JJ
+Kushnick NNP
+Jersey-Salem NNP
+obsesses VBZ
+Ambassador-at-Large NNP
+Hovarter NNP
+points NNS VBZ
+thruway NN
+equality NN
+hypocrite NN
+Centronics NNP
+locality NN
+Foundation NNP NN
+Idol NNP
+U.S.-based JJ
+unsteady JJ VB
+Kaltschmitt NNP
+beinge VBG
+blurring VBG NN
+t'lah VB
+fascists NNS
+agave NN
+Killeen NNP
+Richmond-San NNP
+Jet NNP NN
+d'hotel FW
+Zaire NNP
+zealot NN
+princesse JJ NN
+unretouched JJ
+windbreaks NNS
+Kean NNP
+Christmas-season NN
+roomette NN
+Erling NNP
+CUNA NNP
+pin-curl JJ
+verdant JJ
+priorities NNS
+Tarot-like JJ
+Indiana-Ohio NNP
+Conspicuously RB
+bike NN
+Aho NNP
+indebted JJ
+most-favored-nation JJ
+Pm NN
+Consultant NNP NN
+rocks NNS VBZ
+occupies VBZ
+tangy JJ
+Christianson NNP
+Syllabicity NN
+Brownapopolus NNP
+resides VBZ
+Tichenor NNP
+VTOL NNP
+once-lucrative JJ
+Lieutenant-Colonel NNP
+compost NN
+Seven CD NNP
+Greentree NNP
+Tic-Tac-Toe NNP
+Boardrooms NNS
+moldings NNS
+ignoramus NN
+Robinson-Humphrey NNP
+Gemina NNP
+gain NN VBP VB
+return. NN
+Graphic NNP
+three-button JJ
+contracts NNS NN VBZ
+GABLE NNP
+Naperville NNP
+financial-crimes NNS
+dark-blue JJ
+witching JJ NN
+litigators NNS
+Beermann NNP
+wieners NNS
+Trizec NNP
+dose NN
+Rebounding VBG
+futurist\/director NN
+Nokia NNP
+folklore NN
+Keefe NNP
+Rio NNP NN
+epicure NN
+sins NNS
+versatility NN
+ticket'til NN
+Procaine NN
+confiscate VB
+manmade NN
+then-21 JJ
+Fired VBN
+Hama NNP
+permeable JJ
+hoods NNS
+eighteenth JJ
+Gifting NN
+maria NNS
+den NN NNP
+unseating VBG
+rum-tum-tum JJ
+pragmatic JJ
+COMPUTERS NNS NNP
+Invoking VBG
+Newmark NNP
+yellow-brown JJ
+Tall JJ
+Dryer NN
+Japan-made JJ
+misallocating VBG
+portrayals NNS
+snarls NNS
+Nolan NNP
+Sophia NNP
+sealift NN
+recessionary JJ
+child-safety JJ
+Erde NNP
+Olsen NNP
+Acquisitions NNS NNPS
+Irishmen NNPS NNS
+OTC NNP
+ellipsoids NNS
+snivelings NNS
+Tatras NNS
+gweilo FW
+tax-give-away JJ
+remorseless JJ
+Plot NN
+anti-human JJ
+Buttavacoli NNP
+inhibitions NNS
+ebb NN VB
+]* NN DT JJ RB UH NNP NNS NN|POS , VBG VBP
+component NN
+off-line JJ
+--vs. IN
+Bueno FW
+maxims NNS
+starve VB
+solder JJ VB
+Saskatchewan NNP
+commercial-loan JJ NN
+Curran NNP
+Quadra NNP
+brim NN
+composers NNS
+bop NN
+Germania NNP
+microcomputer-systems JJ
+hard-to-spot JJ
+two-income JJ NN
+Manu NNP
+PLUNGED VBD
+partaking VBG
+billion-asset JJ
+Toshiba NNP
+Sunnyvale NNP
+snowing VBG
+Necessity NN
+sob-wallow NN
+abbreviation NN
+Westford NNP
+Space NNP NN
+tinsel NN
+USAF NNP
+minstrels NNS
+fifth-biggest JJ
+debt-coverage JJ
+Globex NNP
+chastened VBD VBN
+Esplanade NNP
+sustaining VBG
+Howry NNP
+Jan. NNP NN VB
+Lars-Erik NNP
+panache NN
+scab NN
+deer-handling NN
+once-exploding JJ
+overnight JJ NN RB
+strategic JJ
+L NNP NN
+post-Hugo JJ
+ever-higher JJ
+variables NNS
+isolationistic JJ
+deteriorates VBZ
+Granger NNP
+implications NNS
+protozoa NNS
+papiers FW
+Crowntuft NNP
+outfit NN VB VBP
+Tana NNP
+Hillsborough NNP
+divining VBG
+abridges VBZ
+Midland NNP
+dice NNS NN
+Dixon NNP
+Krist UH
+Story NNP NN
+Knutz NNP
+Novak NNP
+Zingggg-O UH
+mud-logger NN
+Defuse VB
+RECRUITING NN
+extortionate JJ
+pricked VBN
+manipulative JJ
+triskaidekaphobia NN
+RDF NNP
+Kan NNP
+red-turbaned JJ
+Hospice NNP
+Knickerbocker NNP
+eggshell JJ
+Beng NNP
+huzzahs NNS
+cases NNS VBZ
+perplexed JJ VBN
+Yard NNP
+renderings NNS
+McNally NNP RB
+playtime NN
+Howmet NNP
+troopers NNS
+niece NN
+Stranahan NNP
+Sponsor NNP
+Chuck NNP VB
+Ilva NNP
+Phantom NNP
+plopped VBD
+embarrassingly RB
+alltime NN
+healed VBN VBD
+salmonella NN
+Horstman NNP
+non-God NN
+Mallinckrodt NNP
+may MD NNP
+civilization NN CD
+incurable JJ
+unshackled JJ
+Campeau NNP NN
+Commissioners NNPS NNP NNS
+shunts NNS
+news-weekly NN
+triangular JJ
+resultants NNS
+Display NN VB
+removes VBZ
+congratulated VBN VBD
+Gurtz NNP
+news-oriented JJ
+panties NNS
+Grove\/Weidenfeld NN
+Enhancement NNP
+Calhoun NNP
+unrequited JJ
+linguine NN
+onscreen RB
+justitia NN
+EYP NNP
+Oshkosh NNP
+caveat NN
+skillful JJ
+portico NN
+reprieve NN
+movieland NN
+Bay-area JJ
+Gabon NNP
+repossess VB
+Conquering NNP
+deficient JJ
+MeraBank NNP
+BMP-1 NN
+scattergun NN
+Humanity NNP NN
+tax-aided JJ
+SUPERIOR NNP
+headland NN
+party NN
+internationalism NN
+precarious JJ
+Kaye NNP
+Parkhurst NNP
+Witold NNP
+Diagnoses NNPS
+intercepted VBD VBN
+Henson NNP
+candle NN
+launderings NNS
+dram NN
+Gur NNP
+Aidan NNP
+Phamaceutical NNP
+thrift-resolution NN
+stumbled VBD VBN
+inflamed JJ VBD
+Spanberg NNP
+stapling NN VBG
+strivers NNS
+dwelt VBD
+penknife NN
+islands NNS VBZ
+imbalances NNS
+McFeely RB
+scandal-tossed JJ
+Flatley NNP
+calculates VBZ
+stand-ups NNS
+Nueva NNP
+quarreling VBG
+Hitachi NNP
+McAuley NNP
+Miner NNP
+Woolen NNP
+Selectmen NNS
+seat-belt NN
+asw NN
+mimic VB VBP
+Oberweis NNP
+NSBU NNP
+mince VB
+Oklahoma NNP
+arch-opponent NN
+well-nigh RB
+disbelief NN
+pork-barrel JJ NN
+high-living JJ
+BEWARE VB
+Twomey NNP
+internationalist JJ
+sanitary JJ
+beta-thalassemia NN
+role NN
+playbacks NNS
+Baz NNP
+jetty NN
+rubles NNS
+Chinaman NNP
+Colleges NNP NNS
+corticotropin NN
+pay-later JJ
+couple NN JJ VB
+independent-minded JJ
+D.H. NNP
+employee-ownership JJ NN
+WEST NNP
+accolade NN
+Comedie NNP
+masterfully RB
+Fonds NNP
+Tomczak NNP
+medico-military NN JJ
+Ogonyok NNP
+dogleg NN
+Region NNP NN
+reunion-Halloween JJ
+HIS NNP JJ PRP$
+mediumship NN
+Extended NNP VBN
+Natwest NNP
+Singing VBG NNP
+then-Speaker JJ
+seven-point JJ
+hobbled VBN
+Chadroe NNP
+labour NN
+Greece NNP
+spitting VBG NN
+unforgiving JJ
+refocus VB
+Seventy-nine JJ
+Escalation NN
+insurance-rate JJ
+gaunt JJ
+virginity NN
+saturated VBN JJ VBD
+unfolding VBG JJ
+Colinas NNP
+Lights NNS NNPS NNP
+Harman NNP
+dropout NN
+boredom NN
+Foremost RB NNP
+Sinhalese JJ
+missteps NNS
+disparaged VBD VBN
+Frothy JJ
+Karan NNP
+ought MD
+ironically RB
+squall NN
+Africaine NNP
+Schindler NNP
+apprehensive JJ
+Peer NNP
+crispness NN
+RCA\/Ariola NNP
+Troeltsch NNP
+stupidity NN
+cable-televison NN
+inheritors NNS
+clawing VBG
+oil-industry NN
+melanin NN
+nonconformist NN
+bolstered VBN VBD
+five-year JJ
+outback NN
+wording NN
+Neighbor NN
+Deardorff NNP
+phonemes NNS
+attack NN VBP VB
+modernism NN
+Superposed VBD
+Salvatore NNP
+Lora NNP
+McNerney NNP
+Instant JJ NNP
+draught NN
+concerts NNS
+Recherches FW
+three-part JJ
+Palomar NNP
+Northamptonshire NNP
+Smoot-Hawley NNP
+pick VB VBP NN
+a-Average JJ LS|JJ
+exist VB VBP NNP
+Genesis NNP NN
+natal JJ
+barbed-wire JJ NN
+Domesday NNP
+pesticide NN
+circumvention NN
+socialization NN
+FOILED VBD
+Commission. NNP
+Golenbock NNP
+Hoechst NNP
+elbowing VBG
+mystification NN
+juke NN
+refuse VB VBP NN
+How WRB NNP RB
+Bed NN
+realismo FW
+episodic JJ
+Wolkind NNP
+exacerbates VBZ
+indoctrination NN
+aftershave NN
+Hermann NNP
+No-Cal NNP
+CD-ROM NNP NN
+CASES NNS
+enunciation NN
+Granges NNP NNS
+Overwhelmed VBN
+Abramson NNP
+tries VBZ NNS
+Rip NNP
+anchormen NNS
+Prescience NNP
+revetments NNS
+knee-socked JJ
+P.I. NN
+Paramount NNP NN
+Absenteeism NN
+Hemming NNP
+outbreaks NNS
+Garcias NNPS
+b-5,196,232 CD
+stake-building VBG
+anything NN
+Ky.-based JJ
+renovating VBG
+cost-savings JJ NNS
+varicolored JJ
+dyeing NN
+overzealous JJ
+Eaton NNP
+well-adjusted JJ
+Napolitan NNP
+refinanced VBN VBD
+clashing VBG
+salted VBN VBD JJ
+MD-80-series NN
+Rauh NNP
+union-sponsored JJ
+applejack NN
+flattish JJ
+stage-plays NNS
+phosphors NNS
+physiognomy NN
+envious JJ
+fishin VBG
+EGYPT NNP
+van NNP NN
+Nos. NNS
+stewardesses NNS
+Wagons NNS
+oil-well NN
+Mourning VBG
+horoscope NN
+gouty JJ
+toward IN
+staffed VBN
+applicator NN
+contracting NN VBG
+swerved VBD
+huffed VBD
+tusk NN
+Kelts NNP
+tode VBN
+Biology NNP
+encumber VB
+Bauernfeind NNP
+Istvan NNP
+Fluctuation NN
+Stadiums NNS
+Prentice-Hall NNP
+artery-clogging NN
+mousetraps NNS
+scholars NNS
+Revenue-short JJ
+Sisley NNP
+Fawaz NNP
+million-dollar-a-year JJ
+requsting VBG
+Blaise NNP
+leadsman NN
+Solo NNP JJ
+cardamom NN
+Assessment NNP NN
+graybeard NN
+Paula NNP
+unfired VBN
+denying VBG NN
+Adoptions NNS
+Knights NNP NNPS NNS
+Stolzman NNP
+well-brushed JJ
+freight-transport JJ NN
+re-paid VBD
+gadflies NNS
+car-development NN
+Harnack NNP
+safety-seat NN
+Fenton NNP
+passbooks NNS
+folks NNS
+excitatory JJ
+tough-minded JJ
+droppable JJ
+uninterruptible JJ
+misspelled VBN
+'d MD JJ NNP VBD VBN
+mineralogy NN
+well-made JJ
+asylum NN
+challengeable JJ
+rooting VBG NN
+Wedd NNP
+carpenter NN
+initiating VBG
+crashing VBG
+Whittington NNP
+intolerably RB
+no-mistakes JJ
+detractor NN
+gripping VBG JJ
+--was VBD
+Sanka NNP
+under-50s NNS
+rural-care JJ
+crawls NNS VBZ
+stained VBN JJ VBD
+Widener NNP
+refilled VBN
+Dentsu NNP
+ironical JJ
+Ingram NNP
+Gravity NN NNP
+microchemistry NN
+Fertitta NNP
+Germanic JJ NNP
+Colonus NNP
+--would MD
+shares NNS NN VBZ
+Islanders NNPS
+egghead NN
+Chases NNPS
+understand\/adopt VB
+Kao NNP
+sweetness NN
+'Here's NNS VBZ
+Poindexter NNP
+Homewood NNP
+Bandish NNP
+tablespoon NN
+awaiting VBG
+child NN
+Vowels NNS
+far-lower JJR
+mend VB
+inflected VBN JJ
+Cavaliers NNS
+Spada NNP
+reprint VB
+lifeguard NN
+library NN
+cult NN
+conjured VBN VBD
+Surcliffe NNP
+slowly-mending JJ
+zotls NNS
+title,'first NN
+M NNP NN
+wont JJ
+innoculating VBG
+Burnley NNP
+tattered JJ VBN
+clearance NN
+professorships NNS
+jua FW
+computer NN
+SHIPPING NNP
+Caterpillar NNP
+Mines NNPS NNP NNS
+Superman NNP
+memberships NNS
+genetic JJ
+Five-Elements NNP
+rumbling VBG
+yen-bond JJ
+Alone RB NNP
+Becalmed VBN
+unamusing JJ
+Kiley NNP
+Balaguer NNP
+KAISER NNP
+six-figure JJ
+philantropists NNS
+'BS NNP
+near-majority JJ
+Always RB NNP
+lifetime NN JJ
+practicing VBG NN
+suburbia NN
+Teamsters NNPS NNP
+crave VBP VB
+Faculty NN
+Reavey NNP
+presentness NN
+insinuendo NN
+Boils NNS
+employments NNS
+Tittabawassee NNP
+civ NN
+colored JJ VBN
+crocodile NN
+bibliography NN
+Fuzzy JJ
+spicing VBG
+Bastin NNP
+ease VB NN VBP
+Hephzibah NNP
+Yoorick NNP
+detour NN
+subjugation NN
+outlandishly RB
+suite NN FW
+paganism NN
+long-familiar JJ
+Republican-governor\ JJ
+princess-in-a-carriage NN
+narcos NNS
+indigent JJ
+U.S.-made JJ
+smelt VBD VBN
+Equity-Income NNP
+pixie-like JJ
+Buckhannon NN
+exothermic JJ
+pound NN VB VBP
+spanning VBG
+expense-paid JJ
+north RB JJ NN
+Gus NNP NN
+Prime-1 JJ NN
+Med-Chemical NNP
+Conservative-Communist JJ
+Ringwood NNP
+Tips NNP
+Comparable JJ
+Aouelloul NNP
+analyzer NN
+de-iodinated VBN
+yahoos NNS
+bloops NNS
+Gilberto NNP
+installments NNS
+awakening VBG NN
+Foster's-brand JJ
+improvidently RB
+situations NNS
+bribery-related JJ
+priority NN JJ
+Wakeman NNP
+penury NN
+M\/I NNP
+gratefully RB
+repetitions NNS
+Monkey NNP
+pixies NNS
+Telli NNP
+sidemen NNS
+Maser NNP
+spheres NNS
+RAX NNP
+electromagnetism NN
+introductions NNS
+recantation NN
+Births NNS
+inexpert JJ
+Vatican NNP JJ
+environmentalism NN
+ABM NN NNP
+densely RB
+Amado NNP
+sow VBP NN VB
+Pentagon NNP
+trashing NN VBG
+IDS NNP
+sailboat NN
+Subsidiary NN
+rudderless JJ
+anti-rightist JJ
+clog VB
+degeneracy NN
+Davis\/Zweig NNP
+Experiment NN
+draperies NNS
+red-light JJ
+livid JJ
+Ralph NNP
+hurl VB VBP
+ordain VB
+appropriately RB
+'MTV NNP
+Trabb NNP
+Prizms NNPS
+a-la-Aristotle NN
+sickness NN
+veal NN
+Xidex NNP
+European JJ NN NNP
+non-English NN
+Barber-Greene NNP
+Marxist JJ NNP
+long-running JJ
+Singer NNP NN
+looseness NN
+Rowland NNP
+furiously RB
+kilograms NNS
+suggests VBZ
+environmentalist NN JJ
+ADB NNP
+rearranges VBZ
+Lillo NNP
+endless JJ
+Fulton NNP
+fetch VB VBP
+mono-unsaturated JJ
+gnawing NN
+parody NN VB
+runway NN
+bra NN
+AUTO NNP
+doodads NNS
+forgiven VBN
+academician NN
+Eluard NNP
+attentively RB
+Wallstreet NNP
+Waterbury NNP
+unable-to-locate JJ
+MacGregors NNPS
+guilt NN
+demands NNS VBZ
+aversion NN
+Amenities NNS
+Mindy NNP
+Balking VBG
+Ziminska-Sygietynska NNP
+adequate JJ
+highball NN VB
+Belt NNP NN
+Cedric NNP
+Hopei NNP
+insurers NNS
+coached VBN
+processed-foods JJ
+underground JJ NN RB
+Crisman NNP
+ventricular JJ
+Manhattan NNP
+newsprint NN
+half-dressed JJ
+thunderstruck JJ
+NetFrame NNP
+dehumidified VBN JJ
+limbo NN
+Talent NN NNP
+mind-altering JJ
+mills NNS
+regress VB
+Falla NNP
+magnate NN
+blood NN
+overcame VBD
+trailers NNS
+scans NNS VBZ
+bads NNS
+Bee NNP
+Etc. NNP
+Neptune NNP
+human-leukocyte-derived JJ
+complements VBZ NNS
+co-operation NN
+Consent NNP
+boys NNS
+WTV NNP
+reinforce VB VBP
+buyin NN
+medicinalis FW
+stereophonic JJ
+half-crazy JJ
+Doonesbury NNP
+vitamins NNS
+Faso NNP
+Kakita NNP
+Hydroxazine NN
+motional-modified JJ
+Tad NNP
+Real-estate NN
+Kaza NNP
+recapitalizing VBG
+computes VBZ
+Butler NNP
+stony JJ
+ascending VBG
+Degree NN
+snug-fitting JJ
+operating-cost JJ
+Ill NNP JJ
+epigrammatic JJ
+Boursault NNP
+Upstairs NN
+splendidly RB
+Jewelery NNP
+weekly-average JJ NN
+computer-based JJ
+hook-up NN
+Poag NNP
+Extruded VBN
+dissimulation NN
+PROCEEDINGS NNS
+two-pronged JJ
+chartaceos NNS
+neuropathology NN
+voluptuous JJ
+dorm NN
+delimits VBZ
+McLennan NNP
+Tyrannosaurus NNP
+Copper NN NNP
+combatants NNS
+muscat JJ
+Expressed VBN
+copying NN VBG
+countriman NN
+mesenteric JJ
+TAMMY NNP
+Venit NNP
+hurdle NN VB
+reps NNS
+bright JJ RB
+Sundays NNPS NNP NNS
+pockets NNS VBZ
+pre-conditions NNS
+stiffest JJS
+Rickettsia NN
+Po NNP
+horn-rim JJ
+Itagaki NNP
+sociability NN
+Zeon NNP
+Rivlin NNP
+mega-issues NNS
+waffle NN VB
+Off-flavor NN
+Reducing VBG
+Chieti NNP
+Muscovy NNP
+forest-products NNS JJ
+Rheumatics NN|NNS
+inlay NN
+purhasing NN
+Ridgway NNP
+Burman NNP
+analyzes VBZ
+NORTH NNP
+money-center JJ
+Behrens NNP
+telecom NN
+Jr. NNP NNPS
+a.m.-10 CD
+coming-of-age JJ
+Lumber NNP NN
+Dover NNP
+gluten NN
+Carre NNP
+telex NN
+Kearton NNP
+Proper JJ
+RBS NNP
+Twenties NNP CD NNPS
+Frankenberry NNP
+depravity NN
+ivy NN
+pro-choice JJ
+S.O.B.s NNS
+clearly RB
+phosphate NN
+saber-rattling NN JJ
+needle-like JJ
+rhythmically RB
+sale NN
+time-honored JJ
+Horses NNS
+couch NN
+Officer NNP
+Softer JJR
+no-good JJ
+Rackmil NNP
+Reeves NNP NNS
+Schmidt NNP
+guffaws NNS
+buy-out NN JJ
+delete VB
+Debban NNP
+concentrated VBN JJ VBD
+Lombard NNP
+DEFERRED JJ
+hmmm UH
+Asbestos NNP NN
+powerhouses NNS
+Prime-2 JJ
+Honolulu NNP
+survey-type JJ
+book-review NN
+boxy JJ
+Chequers NNP
+Hersly NNP
+conform VB VBP
+power-buying JJ
+presuppose VBP
+Demoiselles NNP
+playthings NNS
+Baumgarten NNP
+Poduska NNP
+Oxytetracycline NN
+sabre NN
+piper NN
+swankier JJR
+earphones NNS
+obtuse JJ
+galling JJ
+Fracturing NNP
+milky JJ
+Extensive JJ
+eclipse VB NN VBP
+psychotherapist NN
+GOP NNP
+Indian-summer JJ
+name-brand JJ
+seekin VBG
+internationalize VB
+Delaware-based JJ
+Nationwide NNP JJ RB
+pulse-jet NN
+printable JJ
+annex NN VB
+Clyfford NNP
+collegiate JJ
+disappointingly RB
+agglomeration NN
+Pushup NNP
+Mara NNP
+Spuyten NNP
+probable JJ
+atrophy NN VBP
+subskills NNS
+imaginatively RB
+GLITTER NN
+aluminum-makers NNS
+externalization NN
+relive VBP VB
+smithereens NNS
+.025 CD
+waterways NNS
+Fable NNP
+fungal JJ
+McGrevin NNP
+Ill.-based JJ NNP
+Siemens-GEC-Plessey NNP
+Baptists NNS NNP
+cooperatives NNS
+Re NNP NN
+Costa NNP JJ NN NNS
+approachable JJ
+battery NN
+regiments NNS
+Welmers NNS
+drug-approval JJ
+Suspect JJ
+adjudicator NN
+classmate NN
+BLOOD NN
+Clumps NNS
+Revzin NNP
+Kume NNP
+go-between NN IN
+cancerous JJ
+stalwart JJ NN
+concentric JJ
+commotion NN
+Telectronics NNP
+Grovers NNP
+Aichi NNP NNS
+N NN NNP
+micro-electronic JJ
+word-games NNS
+ocean-thermal JJ
+Two-Stem JJ
+finger-pointing NN JJ
+crosswise RB
+juxtaposition NN
+bottoming VBG
+whitening VBG
+idealized VBN JJ
+management-incentive JJ
+Dodington NNP
+knockoff NN
+power-transmission JJ
+initiatives NNS VBZ
+storied JJ
+malformations NNS
+Indicated VBD
+underline VB
+Ecogen NNP
+shoelaces NNS
+Vitro NNP
+Ezekiel NNP
+Media-buying NN
+confinement NN
+Waving VBG
+Interbank NNP
+boardroom NN
+Strickland NNP
+Judge NNP NN VB
+toxicologist NN
+Snedeker NNP
+Rhoda NNP
+indeterminable JJ
+two-billion-Australian-dollar JJ
+Berkshires NNP NNS
+prohibitive JJ
+test-fired VBN
+Director-General NNP
+mee PRP
+Pamplin NNP
+Apocalypse NNP
+Hengst NNP
+Brass NNP
+debt-financed JJ
+Puny JJ
+biopsies NNS
+F-series NNPS JJ
+twirled JJ
+NLRDA NNP
+law-governed JJ
+Cooked VBN JJ
+semi-literate JJ
+shun VB VBP
+under-the-table JJ
+Knappertsbusch NNP
+earl NN
+woolworkers NNS
+Plantation NNP NN
+internists NNS
+Gardelin NNP
+Eakle NNP
+Alec NNP
+scant JJ
+Plow NNP
+buxom JJ
+Stober NNP
+voluntarism NN
+protease NN
+worldwide JJ RB
+McKesson NNP
+involuntary JJ
+inordinately RB
+Schell NNP
+Rayburn-Johnson NNP
+Juarez-area NN
+Radames NNP
+dates NNS VBZ
+Addicts NNS
+Chesterfield NNP
+Winning VBG NNP
+atrium NN
+mucus NN
+ADC NNP
+tacos NNS
+observable JJ
+Hessische NNP
+Distiller NN
+New-construction NN
+SuperDot NNP
+IFI NNP
+architectonic JJ
+surmounting VBG
+checkbook NN
+weapons-plant JJ
+Jew NNP NN
+Vestar NNP
+anti-drug JJ NN
+starts VBZ NNS VBP
+for... :
+cogeneration NN
+morphological JJ
+neutrophils NNS
+breast-cancer NN
+Mingus NNP
+tell-tale JJ NN
+intellectual-property JJ
+Nymagic NNP
+Religione NNP
+communism NN
+Websterville NNP
+terminals NNS
+Eurocracy NN NNP
+scorer NN
+ballerina NN
+Pezza NNP
+PROPOSE VB
+Momentarily RB
+ESOP NNP NN
+McDonough NNP
+Offices NNS NNPS NNP
+televangelism NN
+Cascade NNP
+Hoy NNP
+partying VBG
+lofts NNS
+Crystal NNP NN
+Odean NNP
+bills NNS VBZ
+electrical-cable NN
+Theater NNP NN
+dactyls NNS
+Multiflow NNP
+Prime-3 JJ
+smilingly RB
+randomly RB
+banker NN
+quivering VBG
+Afro-Cuban JJ
+Legittino NNP
+stutter NN
+power-starved JJ
+inverted JJ VBN
+discoveries NNS
+Eigen NNP
+Dionie NNP
+Tae NNP
+presume VB VBP
+Corrupt NNP
+sanctify VB
+cheap-to-make JJ
+data-transmission JJ NN
+Gleason NNP
+Benj NNP
+Signal NNP
+Palcy NNP
+kisha-club JJ
+heartbreaking JJ
+offenses NNS
+Snatchers NNPS
+extensions NNS
+fixation NN
+allowing VBG
+subsection NN
+nonsocialist JJ
+Cordis NNP
+Mabellini NNP
+Hilboldt NNP
+Fourteenth NNP
+deepest JJS
+Awards NNP
+rediscovering VBG
+backpedaling VBG
+malposed JJ
+visage NN
+Salvatori NNP
+IranU.S NNP
+Zennist NN
+yearling JJ
+Along IN RB
+slacks NNS
+snidely RB
+Barbariccia NNP
+immaturity NN
+advancers NNS
+vantage-points NNS
+C-90 NN
+Glasgow NNP
+Mathavious NNP
+brassiness NN
+gradients NNS
+Mystery NN NNP
+door-to-door JJ NN
+prescriber NN
+Shulman NNP
+Melanie NNP
+hell-bent JJ
+male-fertile JJ
+Unincorporated NNP
+owed VBN VBD
+I.M. NNP
+arbiter NN
+pipes NNS
+Goods NNP NNS NNPS
+SanAntonio NNP
+marker NN
+Sophie NNP
+equalizing NN
+book-flogging JJ
+Sharing VBG
+abstractors NNS
+proteolytic JJ
+anti-democratic JJ
+bed-time NN
+Billboarding NNP
+hush JJ NN UH
+Unit NN NNP
+tear-jerkers NNS
+zu FW
+telephone-network JJ
+environment NN
+Arguments NNS
+Estimates NNS
+Tigershark NNP
+att IN
+ecstatically RB
+peril NN
+shock NN VB
+extremes NNS
+bullhorns NNS
+Correggio NNP
+perfuses VBZ
+Tillie NNP
+sheeted JJ
+Testament NNP
+maneuverings NNS
+inflict VB
+disinflationary JJ
+coily RB
+uninterruptable JJ
+shantung-like JJ
+Martinique NNP
+Rubenesquely JJ
+fatten VB VBP
+tripling VBG
+potion NN
+circumstances NNS
+U.S.-supplied JJ
+Berkowitz NNP
+offensive JJ NN
+hygiene NN
+rancid JJ
+ostinato NN
+Loewenstern NNP
+Congressmen NNS NNPS
+counterterrorism NN
+incontrovertible JJ
+minimum JJ JJ|NN NN
+impairment NN
+moniker NN
+discontinue VB
+delighting VBG
+rut NN
+Forgot VBN
+Plaintiffs`` ``
+steps NNS VBZ
+Sigemund NNP
+faucet NN
+drugging VBG
+blood-flow NNS
+Infrared JJ
+Glazed VBN
+EFFECT NN
+Spic NNP
+Chion NNP
+drooled VBD
+Locust NN
+long-shanked JJ
+Harley NNP
+knifelike JJ
+titers NNS
+Emmons NNP
+Sphinx NNP
+aqueous JJ
+Ralston NNP
+spawned VBD VBN
+resulting VBG VBG|JJ JJ
+leashes NNS
+multi-family JJ
+standeth VBP
+paddle NN
+Alco NNP
+Arenula NNP
+slab NN JJ
+Aristotelean-Thomistic JJ
+crocidolite NN
+Broderick NNP
+gala JJ NN
+Gifts NNS
+Excerpts NNS
+U.N. NNP JJ NN
+blackjack NN
+Wage-price JJ
+Empire NNP NN
+keenly RB
+chieftains NNS
+Aim VB NN NNP
+collared VBN
+Whisper NNP
+Aliksanian NNP
+eleven CD
+hitwoman NN
+top-notch JJ
+Fresh JJ NNP
+Killebrew NNP
+digitalis NN
+unsecured JJ
+Borrowing VBG
+Stoecklin NNP
+Amazing JJ NNP
+Separate JJ
+Finucane NNP
+self-betrayal NN
+cherishing VBG
+breezes NNS
+sacrifice NN VB
+Ostriches NNS
+imperfections NNS
+scabrous JJ
+solvating VBG
+Aluminum-ingot NN
+tabulations NNS
+Isikoff NNP
+speechwriting NN
+motorized VBN JJ
+Doman NNP
+store NN VB VBP
+network NN VB
+remedies NNS
+congregations NNS
+workbench NN
+Honor NNP NN
+Lord NNP NN VB UH
+Bokat NNP
+criticizing VBG
+Kennel NNP
+purposefully RB
+gorgeously RB
+port NN JJ
+withstands VBZ
+elapses VBZ
+Zakes NNP
+prescribes VBZ
+BILLS NNS NNPS
+doubtful JJ
+'You NN PRP
+Power NNP NN
+vaginal JJ
+when WRB IN
+Analytical NNP JJ
+possess VBP VB
+straps NNS
+Goldschmidt NNP
+mimesis NN
+preaching NN VBG VBG|JJ
+cookbook NN
+EEAE-cellulose NN
+VacSYN\ NNP
+Huntington NNP
+entry-price JJ
+compleated VBN
+spreading VBG
+Fardulli NNP
+MUTUAL JJ
+Nadine NNP
+secure VB JJ VBP
+races NNS VBZ
+chinning NN
+Sixty-eighth NNP
+extremist JJ NN
+Hennessey NNP
+knowed VBN
+Brockman NNP
+Sandinistas NNPS NNP NNS
+Movable JJ
+Latest-quarter JJ
+shooing VBG
+zinc NN
+cheerleading NN
+supercilious JJ
+abdominal JJ
+F-4 NNP
+soloist NN
+Dockweiler NNP
+milord NN
+Debutante NNP
+warehouse-type NN
+AC&R\/CCL NNP
+ABO NNP
+graphically RB
+higher-grade JJ
+witnesses NNS
+Indication NN
+jobs-tears NNS
+oathe NN
+Spring NNP NN
+soy NN
+scores NNS VBZ
+Second JJ LS RB NNP
+Maloney NNP
+Blevins NNPS
+O NNP CD FW UH
+combating VBG
+contingent-fee JJ
+individual JJ NN
+shareholder\ JJ
+Many JJ RB NNP PDT DT
+wobble VB NN
+landings NNS
+underling NN
+colorful JJ
+Consumer-electronics NNS
+Armed NNP VBN JJ
+Balenciaga NNP
+lingered VBD VBN
+blunts VBZ
+underestimated VBN VBD
+Appleseeds NNPS
+Dannemiller NNP
+Petrolane NNP
+post-crash JJ
+Sonny NNP
+speculating VBG
+cherished VBN JJ VBD
+overbreadth NN
+arrest NN VBP VB
+one-in-a-million JJ
+interceded VBD
+HIV NNP
+Chilver NNP
+Gabor NNP
+learned VBD VBN JJ NN
+picnics NNS
+market-specific JJ
+Flagg NNP
+cross-purchase JJ
+Graubart NNP
+Orbital NNP
+unquenched VBN
+Deep NNP JJ NN RB
+revise VB
+Airy JJ
+revived VBN VBD
+keypads NNS
+jarring VBG JJ
+Richterian JJ
+Armco NNP
+flounced VBN
+attaches VBZ
+lubricant NN JJ
+Richey NNP
+AVON NNP
+Backed VBN NNP
+Principal-only JJ
+WON'T NNP
+Nutcracker NNP NN
+non-clients NNS
+Vendome NNP
+Europhoria NN
+power-switching JJ
+Sizova NNP
+FDA-NIH-industry JJ
+compressive JJ
+furloughed VBN
+Institution NNP
+soothingly RB
+patient-care JJ
+Making VBG NNP
+crisis-management JJ NN
+seldom RB
+Yates NNP
+Interco NNP
+synagogue NN
+lowlands NNS
+Decent JJ
+W.F. NNP
+misplacements NNS
+twenty-first JJ
+Subroto NNP
+intensities NNS
+FSX NNP
+Sitco NNP
+cents NNS
+Lelogeais NNP
+climbed VBD VBN
+alter-parents NNS
+prestige NN JJ
+certainly RB
+sun-baked JJ
+smoky JJ
+overdependence NN
+cost-sharing NN JJ
+Tax-free JJ
+inductees NNS
+Baccarat NNP
+cadence NN
+ball-bearing NN
+rightist JJ
+enciphered VBN
+Xiao NNP
+kneeled VBD
+d'Electricite NNP
+carne FW
+crucifix NN
+calendars NNS
+Situated VBN
+athlete-payoff JJ
+employee-management JJ NN
+anxieties NNS
+Centigrade NN
+empowers VBZ
+crucifying VBG
+Bolivia NNP
+Seth NNP
+boosters NNS
+Quilt NNP NN
+primal JJ
+Pressler NNP
+conducted... :
+paternal JJ
+Helicopter NNP
+romances NNS
+minimun NN
+Electoral NNP
+Eighteen CD
+implementer NN
+Likins NNP
+Manlove NNP
+grappled VBD
+Wills NNP
+Uprising NNP
+Subic NNP
+Complexity NN
+French-franc NN
+Greenshields NNP
+Sosnick NNP
+heterozygous JJ
+thinning VBG
+minister NN NNP
+der NNP JJR FW NN
+which... :
+Pavel NNP
+monomers NNS
+Herald-Examiner NNP
+therapeutic JJ NN
+computer-and-semiconductor JJ
+Invisible NNP
+Quack NNP NN UH
+Song NNP NN
+Marks NNP NNS
+obsolesence NN
+formalize VB
+carcasses NNS
+pennants NNS
+Chubu NNP
+polish VB NN
+gay-rights NNS
+quickwitted JJ
+Chaikoff NNP
+apocalyptic JJ
+Eljer NNP
+bluefish NNS
+quantity-based JJ
+After IN NNP RB IN|JJ
+intricacies NNS
+precinct NN
+Sacrifices NNS
+halos NNS
+Worms NNPS NNP
+leisure-oriented JJ
+mogul NN
+CoastAmerica NNP
+tomography NN
+BURNHAM NNP
+Permanent JJ
+Kappil NNP
+Atlas NNP JJ NN
+outstripped NN VBD VBN
+of'em IN|PP
+raceway NN
+Inc NNP NNPS
+Newitt NNP
+Ferruzzi NNP
+Oils NNS
+Investing VBG NN NNP
+Blakey NNP
+recoup VB
+predicates NNS
+Notre-Dame NNP
+onct IN JJ
+Coffee NNP NN
+reformists NNS
+Alonso NNP
+Gassman NNP
+discouraged VBN VBD JJ
+Meurer NNP
+Towers NNP NNPS
+Oceans NNS
+disunion NN
+verify VB VBP
+Sonuvabitch UH
+Maquet NNP
+clause NN
+marketeers NNS
+Marc NNP
+Scalia NNP
+Egon NNP
+Horticultural NNP
+Camden NNP
+fuel-services NNS
+builtin JJ
+politeness NN
+Swire NNP
+lilacs NNS
+Liddell NNP
+devour VB VBP
+anti-anemia NN
+.027 CD
+maturity NN
+standing-room-only JJ
+Midshipman NNP
+Loneliness NNP NN
+tomato NN
+re-edited VBN
+duets NNS
+magnifying VBG NN
+equity-like JJ
+warranted VBN JJ VBD
+Tootal NNP
+money-saving JJ NN
+world-currency NN
+two-run JJ
+Elaborate JJ
+reconvenes VBZ
+Struggling VBG
+Dollar-Britten NNP
+Genentech NNP NN
+non-refundable JJ
+avoiding VBG
+Superstitions NNPS
+paging NN
+county NN
+Curdling NNP
+Cashways NNPS
+sands NNS
+Conradies NNP NNPS
+Motif NN
+paralegal NN
+recyclability NN
+debt-heavy JJ
+Hilger NNP
+LEAVING VBG
+unabated JJ
+bandits NNS
+overrun VBN JJ NN
+Rutgers NNP
+belted VBD
+presentation NN
+Reasoning NN NNP
+Sawallisch NNP
+pure-meat NN
+forwarding NN VBG
+Returning VBG NNP
+debtholder NN
+supplying VBG
+Pomicino NNP
+prototypical JJ
+geered VBN
+shatters NNS VBZ
+Armour NNP
+Youngest JJS NNP
+castigates VBZ
+opportunists NNS
+packed VBN JJ VBD
+stainless JJ
+infidels NNS
+heirs NNS
+sprayed VBN VBD
+Dianne NNP
+outskirts NNS
+Kieran NNP
+respirators NNS
+fifty-odd JJ
+involvement NN
+listened VBD VBN
+irritable JJ
+pointy JJ
+Aleksei NNP
+airflow NN
+pico NN
+Hand-holding NN
+CHARIOT NNP
+prohibited VBN VBD
+flatland NN
+decribed VBD
+anorexia NN
+S-K-I NNP
+Acushnet NNP
+thirteen CD
+Caa NNP JJ
+orthodontics NNS
+recent JJ
+Aderholds NNPS
+electronically RB
+prevaile VB
+concussion NN
+ramparts NNS
+trombones NNS
+Tailin NN
+Pollo NNP
+recentralized VBN
+GERMAN JJ
+Shipyard NNP
+Recyclers NNPS
+Wingman NN
+Malcom NNP
+symbolic-sounding JJ
+earn VB VBP
+exits NNS VBZ
+fold VB NN VBP
+business-development NN
+gut-Democratic JJ
+Ignatius NNP
+MANUFACTURING NNP
+Warfield NNP
+cockles NNS
+McCord NNP
+bearded JJ VBD VBN
+Taped VBN
+Sandalwood NNP
+Lookit VB
+slide-packs NNS
+Acrylic NNP
+Arlin NNP
+Amorim NNP
+surprised VBN VBD JJ
+unmindful JJ
+Ferro NNP
+millennium NN
+Foreign-registered JJ
+blood-red NN
+aluminum NN JJ
+copywriter NN
+Kayabashi-san NNP
+surveyor NN
+Western-Mobile NNP
+retirement-savings JJ
+Pooling NNP
+girds VBZ
+decencies NNS
+Oakes NNP
+Raul NNP
+blares VBZ
+radiance NN
+Nikolais NNP
+logic-rhetoric NN
+big-money JJ
+Spade NNP
+dalliances NNS
+hollering VBG JJ
+Sammy NNP
+tenancy NN
+Brave NNP
+Putas NNP
+reproductive JJ
+replay NN
+Concorde NNP NN
+Harmas NNP
+bistros NNS
+state-of-the-market JJ
+Svenska NNP
+permitting VBG
+glucose NN
+Snake NNP NN
+Jarvik NNP
+chancellor NN
+Akin NNP
+here... :
+Reichmanns NNPS NNP
+default NN VB
+travel NN VBP VB
+polytonal JJ
+market NN VBP VB NN|VB
+modernist JJ NN
+hobo NN
+married VBN VBD JJ
+Pride-Starlette NNP
+gins NNS
+scoundrels NNS
+good-cop JJ
+ringers NNS
+Bogota NNP
+Alcohol NN NNP
+sterility-assurance NN
+destroyer NN
+geriatric JJ
+adjust VB VBP
+charging VBG NN
+spanner NN
+innoculation NN
+amps NNS
+--Dorothy NNP
+Chehel NNP
+Innovation NNP
+Honecker NNP
+Martinair NNP
+rocky JJ
+Hall NNP NN
+litigate VB
+cynic NN JJ
+unpaved JJ
+contradictions NNS
+cloth NN
+nonequivalence NN
+svelte-looking JJ
+Bonita NNP
+BAHAMIAN JJ
+Dinsa NNP
+Dalai NNP
+forepaws NNS
+thresholds NNS
+baboons NNS
+Marmi NNP
+Lorena NNP
+Probus NNP
+anti-Western JJ
+gloom-and-doom JJ
+Ekonomicheskaya NNP
+Hampton NNP
+cosponsors VBZ
+non-interstate JJ
+BRITANNICA NNP
+wreaked VBD VBN
+Francais NNP
+navy-blue JJ
+mumble NN
+P NN NNP
+overextended VBN VBD JJ
+non-duck JJ
+determines VBZ
+originality NN
+nosedive NN JJ
+bile NN
+afford VB VBP
+sea-blessed JJ
+AuCoin NNP
+wasteful-racist-savagery NN
+Gero NNP
+truths NNS
+passe JJ
+gayety NN
+plaintiffs NNS
+PMR NNP
+awe NN
+toasted-nut NN
+axial JJ
+circonscriptions NNS
+rodents NNS
+megawatts NNS
+reprinted VBN VBD
+game-show JJ NN
+Rugeroni NNP
+follicular JJ
+Heightened JJ
+darling NN JJ
+Wasatch NNP
+servicemen NNS
+'80s NNS CD
+evangelism NN
+work-rule JJ NN
+co-edits VBZ
+Morita NNP
+posseman NN
+information-delivery NN
+Divide VB
+ideologists NNS
+assessing VBG
+savor VB
+Costly JJ
+Pure NNP JJ
+global-news NN
+Linda NNP
+ozone-destroying JJ
+pythons NNS
+chock-a-block JJ
+Wealth NNP
+Lipper NNP
+Tokyo-based JJ NNP
+Michels NNP
+diethylaminoethyl NN
+Sooner RB RBR
+PARTNERSHIP NNP
+sugar-producing JJ
+emphasized VBD VBN
+refute VB
+HMA NNP
+race... :
+vopos FW
+Jack-of-all-trades NN
+polluted JJ VBD VBN
+duration NN
+Afghans NNPS
+aftershock-damping JJ
+half-breed NN JJ
+persistent JJ NN
+des NNP FW
+air-frame NN
+second-order JJ
+brigands NNS
+millivoltmeter NN
+ROARED VBD
+U.S.-Mexico JJ NNP
+Pamorex NNP
+deities NNS
+garner VB VBP
+trundles VBZ
+replaying VBG
+teensy JJ
+Troy NNP
+remote JJ
+slogging VBG
+Powless NNP
+Washington-Oregon NNP
+thrift-industry NN JJ
+Falconbridge NNP
+haberdashery NN
+fly-fishing NN
+Korman NNP
+orbited VBD
+Concepts NNP NNS NNPS
+beckons VBZ
+Southerners NNPS NNP NNS
+wrought VBN VBD JJ
+factory-modernization NN
+Medstone NNP
+Anglo-Saxon NNP JJ
+wood-and-brass NN
+Amira NNP
+Nonfat NNP
+perished VBD VBN
+exclaimed VBD
+captured VBN VBN|JJ VBD
+Channel NNP NN
+N.A NN NNP
+housekeeper NN
+latitude NN
+aggravates VBZ
+witches NNS
+Cater NNP
+D.D.S. NNP
+supranationalism NN
+spellers NNS
+lowering VBG NN
+escutcheons NNS
+Stott NNP
+Feverishly RB
+Prosperity NN
+Francis NNP
+voraciously RB
+mega-stadium NN
+boondoggle NN
+Watercolor NNP
+turn-out JJ
+Guests NNS
+Myrtle NNP
+shamelessly RB
+upscale JJ NN RB
+Peacocks NNS
+Seso NNP
+Chickens NNS
+tanned JJ VBN
+First-half JJ
+Invercon NNP
+kung-fu NN
+Lubyanka NNP
+Ind NNP
+limbs NNS
+flitting VBG
+fumpered VBD
+Simmel NNP
+air-freight NN JJ
+Winch NNP
+Alleged JJ
+Cruze NNP
+unworn JJ
+outsiders NNS
+shutdown NN
+germinal JJ
+Afrikaners NNPS
+Principal NNP JJ NN
+cripple VB NN VBP
+OVERSEAS JJ
+employee-benefit JJ NN
+program-selling JJ
+spousal-notification NN
+--awarding VBG
+pesetas NNS
+loan-repayment NN
+neutralists NNS
+A-Team NNP
+Keihin NNP
+mortality NN
+Germans. NNS
+non-public JJ
+profit-margin NN
+exploits NNS VBZ
+staples NNS
+unwavering VBG
+blackberry-basil NN
+Poppea FW
+slamming VBG
+dipped VBD VBN
+Basically RB
+airheads NNS
+Marlo NNP
+non-romantic JJ
+Pricing NN NNP VBG
+scavenging VBG
+modest JJ
+unconditionally RB
+gait NN
+royal JJ NN
+quarrel NN VB
+tassel NN
+supercomputers NNS
+podium NN
+Amitai NNP
+sex-for-hire JJ
+tiger-paw NN
+Programming NNP NN
+Misbegotten NNP
+information-systems NNS JJ
+Preston NNP
+Seemingly RB
+causing VBG NN
+clashes NNS VBZ
+steel-rod NN
+gallonage NN
+McChesney NNP
+Alcorn NNP
+Kas NNP
+hands NNS VBZ
+holder NN
+Junge NNP
+Kurigalzu NNP
+pleaded VBD VBN
+twothirds NNS
+brawling NN
+obscenities NNS
+enroute RB
+locking-in NN
+Cartoonists NNP
+bunny NN
+Malays NNP
+Tournier NNP
+appeals NNS VBZ
+Schillinger NNP
+Shaiken NNP
+Britoil NNP
+Sucrerie NNP
+Isoda NNP
+ratty JJ
+Chrisanthopoulos NNP
+wrinkles NNS
+parsonage NN
+CODE,DTF NN
+comply VB VBP
+Motorfair NNP
+Klein NNP
+Lewala NNP
+Lyle NNP
+totter VB
+husband-and-wife JJ NN
+chili NN NNS
+Brennan NNP
+fiefdoms NNS
+Shlomo NNP
+EC-made JJ
+Rosalynn NNP
+repayment NN
+Suiza NNP
+Gilleland NNP
+Cab NNP
+Zaita NNP
+mediums NNS
+VS NNP
+peddlers NNS
+phonemic JJ
+daminozide NN
+Machado NNP
+first-preferred JJ
+Amonasro NNP
+liquid-drug JJ
+stoking VBG
+IBM-based JJ
+dumbest JJS
+Telerate NNP NN
+Sen NNP
+Meynell NNP
+golfers NNS
+condescension NN
+Usinor-Sacilor NNP
+choosier JJR
+intifadah NN
+upcountry JJ
+sheathing NN
+Fuji-apple JJ
+Gruberova NNP
+overturning VBG
+woos VBZ
+Walker NNP
+contraction NN
+phonebook NN
+wreath NN
+twise RB
+Pepto-Bismol NNP
+feelings NNS
+prognosis NN
+Polyurethane NN
+Deer NNP NN NNS
+jealousy NN
+gussied VBN
+ex-Mrs JJ|NP
+bimolecular JJ
+Va. NNP
+MISUSE NNP
+angora NN
+Gompachi NNP
+Wilfrid NNP
+sciences NNS
+Akio NNP
+N.R. NNP
+melt VB VBP NN
+well-grooved JJ
+consanguinity NN
+peptides NNS
+marketplace NN
+Injuns NNPS
+tingling VBG NN
+silver-painted JJ
+pick-up JJ NN
+vice-regent JJ
+exluding VBG
+Membership NNP NN
+contenting VBG
+discolored VBN JJ
+zipper NN
+intonaco NN
+schoolroom NN
+Employment NNP NN
+conspirator NN
+flocks NNS
+candidly RB
+tarpaulin NN
+swiped VBD VBN
+typical JJ
+pre-market JJ
+over-committed JJ
+Largo NNP
+hastening VBG
+solicitations NNS
+Published VBN
+Computer-guided JJ
+Jiotto NNP
+Celebrity NNP NN
+Allenport NNP
+blessings NNS
+opines VBZ
+bravery NN
+cuisine NN
+parental-leave JJ
+Tensions NNPS
+Resentment NN
+noiseless JJ
+vexes VBZ
+underestimates VBZ
+reaffirmed VBD VBN
+classically RB
+trains NNS VBZ
+hastily RB
+Mendelson NNP
+Graziano NNP
+Shaw NNP
+unjust JJ
+ultra-pasteurized JJ
+whimsy NN
+Attendants NNPS NNS
+Administrators NNPS NNP
+crust NN
+beaded VBN
+Solution NNP NN
+suppressor NN
+overdriving VBG
+regummed VBD
+Verbrugge NNP
+grok VB VBP
+devout JJ
+logos NNS NN
+Reyes-Requena NNP
+payback NN
+under-developed JJ
+Imprimis NNP
+regrets VBZ NNS
+Fallon NNP
+pre-colonial NN
+Wisconsin NNP NN
+needing VBG
+redevelopment NN
+conning VBG
+Scrabble NNP
+polite JJ
+Rats NNP
+Tube NNP
+Sourcing VBG
+Hungry JJ
+Rh NNP
+husk NN
+Bertram NNP
+teetering VBG JJ
+unstilted JJ
+conductivity NN
+profiteers NNS
+Turnpike NNP
+human-generated JJ
+half-states NNS
+sobbingly RB
+Rembrandt NNP NN
+Creed NNP
+Bucchino NNP
+separation-of-powers JJ
+DRAM NNP
+landro NN
+unstuck JJ
+Schnitzer NNP
+homoeroticism NN
+Anytime RB
+strata NNS
+Xinhua NNP
+seven-month JJ
+before-school JJ
+neater RBR
+D'Albert NNP
+semi-abstractions NNS
+x-There EX LS|EX
+lumps NNS VBZ
+Slippery NNP
+reformer JJ NN
+carob NN
+adversary NN JJ
+book-selection NN
+Rhode NNP
+bizarrely RB
+seatrout NN
+fatherly JJ
+dehumanised VBN
+Tamm NNP
+unstained JJ
+teams NNS VBZ
+Place NNP NN VB
+price-increase NN
+gimmickry NN
+swine NNS
+concentrates VBZ NNS
+superstructure NN
+Europa NNP NN
+evolution NN
+Cuckoo NN
+anions NNS
+sharp-limbed JJ
+slivers NNS
+vineyards NNS
+dilution NN
+higher-than-retail JJ
+cloud NN VB VBP
+beanstalk NN
+imponderable JJ NN
+Redbook NNP
+Corona NNP
+marketing-wise JJ
+senora NN
+Mare NNP NN
+Alfa NNP NN
+diabetes NN
+P.J. NNP
+colles FW
+Marne NNP
+Hewlett-Woodmere NNP
+near-synonyms NNS
+soaked VBN JJ VBD
+Q NN NNP
+beef-import JJ
+money-market JJ NN
+stops VBZ NNS
+politico NN
+clamshell NN
+interfere VB VBP
+glamour NN
+enriches VBZ
+Witherspoon NNP
+Schlang NNP
+Vila NNP
+Minneapolis-St NNP
+bravest JJS
+cash-raising JJ NN
+Elementary NNP JJ
+pasta NN
+low-slung JJ
+gnashing VBG
+researched VBN VBD
+Amityvilles NNPS
+intra-mural JJ
+literally RB
+rocket-motor NN
+lunatics NNS
+germanium NN
+scratchiness NN
+Kodama NNP
+friendlier JJR RBR
+Breaking VBG NNP
+Gromov NNP
+unspectacular JJ
+Billion CD
+brushwork NN
+memo NN
+McElvaney NNP
+Substantive NNP
+tidied VBD
+cohesiveness NN
+ten-twelve CD
+Shipston NNP
+conscious JJ NN
+boundaries NNS
+F.A. NNP
+Broxodent NNP
+ESPN NNP
+Schorr NNP
+children NNS
+hock NN VB
+hardware-store NN
+brunt NN
+Palacio NNP
+exceedingly RB
+Hindus NNP
+Kwan NNP
+Champagnes NNS
+Metro-Goldwyn-Mayer NNP
+Inwood NNP
+Tele1st NNP
+non-Western JJ
+conceptual JJ
+Yugolsavia NNP
+nab VB
+gentry NN
+discount NN VBP JJ VB
+Hawksworth NNP
+prodigal JJ
+Human NNP JJ NN
+Billheimer NNP
+salsa NN
+organization NN
+yellow JJ NN VB
+useable JJ
+Metaphysics NNS
+once-over-lightly NN
+convened VBD VBN
+occipital JJ
+symbolically RB
+Yuen NNP
+Cupply NNP
+Shea NNP
+wall-to-wall JJ
+debtors NNS
+Audi NNP
+hotel-casinos NNS
+poor-mouth JJ
+Buhrmann-Tetterode NNP
+artery NN
+mass-marketers NNS
+Stowe NNP
+expected VBN VBD JJ VB
+over-the-counter JJ NN RB
+Zoe NNP
+endangering VBG
+confided VBD VBN
+Hombrecher NNP
+competition-enhancers NNS
+end-of-the-year JJ
+menarche NN
+misunderstanding NN
+Should MD NNP
+Bucaramanga NNP
+halted VBN NN VBD
+diocesan JJ
+Vt.-based JJ
+cliched JJ
+Montmartre NNP
+emergency. NN
+unmethodical JJ
+SMOKING NN
+Fiscal JJ NN NNP
+ivory-tower JJ NN
+chauffeurs NNS
+despotism NN
+administered VBN VBD
+omit VB VBP
+Voutila NNP
+unleveled VBN
+overarming VBG
+bellringers NNS
+flashlight-type JJ
+alternate JJ VBP NN VB
+derby NN
+Leverett NNP
+strait-laced JJ
+Munsters NNPS
+Consonantal JJ
+registered VBN VBD JJ
+ineluctable JJ
+respiratory JJ
+tollways RB
+invariably RB
+Tulln NNP
+willing JJ VBG
+fatter JJR
+Jeanne NNP
+long-deferred JJ
+pre-Communist JJ
+attorney NN
+hot-ticket JJ
+t'aint VB
+Boily NNP
+Mulvoy NNP
+OFFICIALS NNS
+asunder RB
+Phyllis NNP
+Herrman NNP
+trough NN
+sermons NNS
+Pottery NNP
+Lanesville NNP
+scoring VBG NN
+Sleeper NNP
+Werdell NNP
+Dunkin NNP
+R.B. NNP
+Fast NNP JJ
+Association NNP NN
+phobia NN
+Johsen NNP
+Dees NNP
+Buckeridge NNP
+jazzmen NNS
+cornfield NN
+Vernier NNP
+Settle VB
+Naturals NNPS NNP
+Earnings NNS
+shrubbery-lined JJ
+Opera NNP NN
+trauma NN
+Ponce NNP
+countries NNS
+Argumenty NNP
+five-day JJ
+dungarees NNS
+pray VB VBP
+arbitrator NN
+Polymerix NNP
+nuclear-armed JJ
+Swifts NNPS
+enclosures NNS
+restaged VBN
+whitewash NN
+Sportsmen NNS
+Lagoon NNP
+Investigating VBG
+two-hit JJ
+overdoing VBG
+DiLorenzo NNP
+natch UH
+well-modulated JJ
+cradles NNS
+sinusoids NNS
+Fear-maddened JJ
+Phipps NNP
+computer-aided-design JJ
+pattern NN
+Kalinowski NNP
+general-staff JJ NN
+ragging VBG
+Manitoba-based JJ
+Embry NNP
+reconfirmation NN
+lavishly RB
+Snowball NN
+reference NN
+fixed-dollar JJ
+Steinmetz NNP
+InCide NNP
+computer-hardware NN
+commune NN FW VB
+Ake NNP
+perversion NN
+Declinations NNS
+spectroscopy NN
+definitively RB
+Zola NNP
+taxis NNS VBZ
+chivalrous JJ
+pathologist NN
+Drying NN
+cannister NN
+garnet NN
+telescoped VBN
+nuclear-weapons-sites NNS
+carnality NN
+Moiseyeva NNP
+bearishness NN
+reflex NN JJ
+armhole NN
+hesitate VB VBP
+Winchell NNP
+counterespionage NN
+Stickney NNP
+backstage RB
+cushioned VBN VBD
+front-loaders NNS
+finance-minister NN
+MX-6s NNPS
+risk-capital JJ
+carrion JJ NN
+triangle NN
+Pietism NNP
+wheeler-dealers NNS
+Hubie NNP
+careen VB
+Long-debated JJ
+guttered VBD
+pro-consumption NN
+mei FW
+indisposition NN
+luck NN
+anti-authoritarian JJ
+two-family JJ
+suffer VB VBP
+Sundarji NNP
+mosaic NN
+indoors NN RB
+Gossip NN
+Unix NNP
+fending VBG
+Nicastro NNP
+communist JJ NN
+missionary JJ NN
+Strasny NNP
+Mubarak NNP
+JAL NNP
+Walbrecher NNP
+'Kick VB
+low-pitched JJ
+Advantages NNS
+banking NN VBG|NN JJ VBG
+Kappa NNP
+Lawyers NNS NNP NNPS
+over-occupied JJ
+standpoint NN
+Hordern NNP
+exacted VBD
+Nettleton NNP
+Lenny NNP
+air-conditioners NNS
+renovation NN
+hunter-gatherers NNS
+tourney NN
+festival-oriented JJ
+Hanover-Justitia NNP
+masons NNS
+DALLAS NNP
+McCammon NNP
+appeared VBD VBN
+doldrums NNS NN
+equanimity NN
+eight-count JJ
+captions NNS
+spotlights VBZ
+Stuffing VBG
+Anchorage NNP
+sensitively RB
+cost-prohibitive JJ
+Olsson NNP
+DELIGHT VBP
+Neon NNP
+Treasonable JJ
+condone VB
+re-rated VBN
+Hirschfeld NNP
+clamoring VBG
+Related NNP JJ VBN
+demographiques FW
+handiwork NN
+radiocarbon NN
+silverware NN
+Fighting NNP JJ NN VBG
+Granted VBN
+lunch-box NN
+sinner NN
+baptistery NN
+Hermione NNP
+glues NNS
+Lynch NNP
+nettlesome JJ
+ovals NNS
+roll NN VB VBP
+Lessner NNP
+Cobbs NNS
+Tiananmen NNP
+toxics NNS
+Equipped VBN
+wood-processing JJ
+malaria NN
+grouping NN VBG
+Edzard NNP
+knoweth VBP
+unwed JJ
+chrysanthemums NNS
+investment-counseling JJ
+fling NN VB
+snubbed VBN VBD
+Whitey NNP
+know-how NN
+Dresbachs NNPS
+spelled VBN VBD
+urine NN
+Pressures NNS
+lovebirds NNS
+Borrower NN
+Dauntless NNP
+half-jokingly RB
+aggressive JJ
+telepathically RB
+gale NN
+dislike NN VB VBP
+Bendjedid NNP
+pseudoephedrine NN
+world NN RB
+Sedimentation NN
+mid-30s CD
+tender-offer JJ
+mailed-fist-in-velvet-glove JJ
+impassable JJ
+Bricker NNP
+salesman NN
+voices NNS VBZ
+superficial JJ
+animates VBZ
+water-deficient JJ
+jeopardized VBN
+Weiner NNP
+Lyme-disease JJ
+temporizing VBG
+Tai NNP
+insolently RB
+Gone VBN
+Lantos NNP
+Pressman NNP
+Lupel NNP
+floating-rate JJ NN
+HEALTHDYNE NNP
+peddled VBN
+morgen FW
+shoestring NN
+Ratliff NNP
+catastrophic-illness NN JJ
+Aspe NNP
+depreciation-induced JJ
+Tender NN NNP
+officio FW
+initiation NN
+Ingalls NNP
+Second-half JJ
+partial JJ NN
+squeezing VBG
+Gigot NNP
+bided VBN
+Mingo NNP
+Friends NNS NNPS NNP
+ginmill NN
+passports NNS
+IJAL NNP
+alleges VBZ NNS
+PRINCE NNP
+fourthquarter NN
+magenta JJ NN
+magazines NNS
+N.C NNP
+Hartmarx NNP
+leafiest JJS
+pre-independence NN
+management-services NNS JJ
+critters NNS
+omission NN
+sealants NNS
+mulching VBG
+wher WRB
+Pitcher NN NNP
+clanking VBG
+re-scheduled VBN
+Hillstrom NNP
+Vice-president NN
+Roloff NNP
+bow NN VB VBP
+strode VBD
+Directly RB
+Oxy NNP
+inviolability NN
+citing VBG
+R NN NNP
+Mariners NNPS
+sofar RB
+Euro-housewife NN
+round-eyed JJ
+Energized VBN
+self-preservation NN
+lip NN JJ
+grooves NNS
+varieties NNS
+dodged VBD VBN
+Appian NNP
+Cycling NNP
+Kayton NNP
+uglier JJR
+Keck NNP
+airway NN
+IMF-World NNP
+zing NNP
+Lazzeri NNP
+sports-apparel JJ
+Gypsy NN
+Belz NNP
+take-home JJ
+Dragoumis NNP
+word NN
+Constar NNP
+courteously RB
+Sheehan NNP
+Stress NN NNP
+computer-industry NN JJ
+same JJ
+Alexeyeva NNP
+hoodlum NN
+coins NNS
+grovel VB
+Feniger NNP
+racoons NNS
+Finkelstein NNP
+sterling NN JJ
+Arvin NNP
+Tractarians NNS
+dampen VB
+Atty. NNP
+croakin VBG
+pancreas NN
+oleophobic JJ
+Renwick NNP
+electrostatic JJ
+Sizable JJ
+forays NNS VBZ
+frizzled JJ
+heterogeneous JJ
+referenda NN
+glorious JJ
+Lincoln-Douglas NNP
+nine-to-five JJ
+dirtier JJR
+co-venture NN
+Perluss NNP
+home-office JJ
+stirrups NNS
+Wright NNP
+caregiver NN
+Gramm-Rudman NNP
+aimed VBN VBD
+generates VBZ
+non-drug JJ
+Toensing NNP
+Zurich-based JJ
+admitted VBD VBN JJ
+cranking VBG
+announcement NN
+games NNS
+Eastman NNP
+Connoisseur NNP
+Laptop NN
+gold-mining JJ NN
+energy-cogeneration NN
+Hoyle NNP
+sacrificial JJ
+Resource NNP
+Watergate-beleaguered JJ
+discourse NN VB
+strutted VBD
+improperly RB
+Afrika NNP
+Hungarians NNPS NNS
+Dudley NNP
+food-service NN JJ
+melodrama NN
+Rizopolous NNP
+sweat-saturated JJ
+disparagement NN
+jug NN
+Halo NNP
+Murders NNS
+arnica NN
+spoonful NN
+crystal-lattice JJ NN
+Scientific-Atlanta NNP
+earthquake-stricken JJ
+Gecker NNP
+feted VBD JJ VBN
+Fairly RB
+Anatol NNP
+neurotoxic JJ
+NAHB NNP
+Lintas:Campbell-Ewald NNP
+impersonally RB
+pirates NNS
+polonaise NN
+Showtime NNP
+imperiously RB
+desperation NN
+machine-gunned CD
+Aiwa NNP
+animation NN
+Oy NNP
+Congressional NNP JJ
+power-grid NN
+Braun NNP
+Shay NNP
+pro-repeal JJ
+brilliance NN
+Fireman NNP NN
+Coast-based JJ
+motherless JJ
+keystone NN
+knock-down JJ
+SALE NN
+anode NN
+aircraft-test JJ
+react VB VBP
+foreshortened VBN
+swing NN VBP JJ VB
+Bohn NNP
+Charls NNP
+complaint-resolution NN
+WORLD NN
+catch VB VBP NN
+reinsured VBN
+Guy NNP
+Forgotten NNP
+Federal-Mogul NNP
+anti-price-fixing JJ
+scattering VBG
+marking VBG NN
+Caja NNP
+doled VBD VBN
+wrings VBZ
+taught VBN VBD
+food-sector JJ
+weatherstrip VB
+Soignee FW
+gear-sets NNS
+firmly RB
+slipper NN
+Mahone NNP
+sallying VBG
+acrobatic JJ
+tinting-film NN
+Dairl NNP
+Enzo NNP
+Paddock NNP
+Octel NNP NN
+overexcited VBN
+Backers NNS
+five-story JJ
+hoarder NN
+territorial JJ NN
+uncomplaining JJ
+calinda NN
+Disney NNP
+mini-flap NN
+doth VBZ
+whinny NN
+Amparano NNP
+re-supplied VBN
+sacks NNS
+connector NN
+Holland NNP
+reruns NNS
+patently RB
+Hand NN VB NNP
+comportment NN
+ABS NNP
+surprising JJ VBG
+jammies NNS
+Sheik NNP
+Trader NNP
+Pt NNP
+Kitti NNP
+Jeopardize VB
+Edison NNP NN
+Granny NNP
+Hieber NNP
+Tagamet NNP
+adopted VBN VBD JJ
+comeback NN
+banish VB
+Governmental NNP
+hovering VBG
+soapsuds NNS
+UNVEILED VBD
+savviest JJS
+premonitions NNS
+dibs NNS
+signboard NN
+hypothalamic JJ
+no-load JJ
+Polls NNS
+un-advertising NN
+paroxysmal JJ
+rancho NN
+peggin NN
+bogeymen NNS
+Kalipharma NNP
+lambasting VBG
+Zeiger NNP
+subterfuge NN
+career-risking JJ
+Geste NNP
+performance-oriented JJ
+terrestrially RB
+illustrating VBG
+Opelika NNP
+Merlis NNP
+Kotman NNP
+never-ending JJ
+Fujii NNP
+which WDT WP
+Breasted NNP
+Rheinholdt NNP
+Gulch NNP
+belied VBD
+civilizing VBG
+Likud NNP
+Micronics NNP
+gulled VBN
+Harbors NNPS
+spike NN VB
+busting VBG
+Faces NNPS NNP
+excerpt NN
+mind-set NN
+hayfields NNS
+china NN
+regimentation NN
+Ithacan NNP
+takeover-threat NN
+lofty JJ
+hypocrisy NN
+thrumming VBG
+slag NN
+D'Agostino NNP
+allout JJ
+cartelized VBN
+reeking VBG
+grudges NNS
+Laszlo NNP
+Ducking VBG
+P.GA NNP
+Caradon NNP
+infernally RB
+sheep-lined JJ
+primarily RB
+defender NN
+Covas NNP
+philosophy NN
+figgered VBD
+Masaryk NNP
+doomsday NN
+Gatwick NNP
+howse NN
+chill NN JJ VB
+esse FW NN
+Joyo NNP
+warred VBD
+Newsweek NNP NN
+SKIDDED VBD
+Thynne NNP
+income-support NN
+TuHulHulZote NNP
+WESTWOOD NNP
+Radha NNP
+Irina NNP
+Sacre NNP
+carpet NN
+horticulturally RB
+surrendered VBD VBN
+Transport NNP NN VB
+eviscerate VB
+retention NN
+Countrymen NNPS
+quid FW NN
+Schicchi FW NNP
+Pieta NNP
+KQED NNP
+passably RB
+moaned VBD
+nose-dived VBD VBN
+hundredth JJ
+saner JJR
+professeur NN
+Absent VB IN JJ JJ|IN
+Kikiyus NNPS
+fauna NNS NN
+a-gracious JJ
+parents NNS
+bravest-feathered JJ
+FERC NNP
+trouble-free JJ
+Recessions NNS
+Quinn NNP
+Endara NNP
+Coastline NNP
+Ryland NNP
+alliteration NN
+heavy-framed JJ
+skillfulness NN
+manhole NN
+criticized VBN VBD
+Relying VBG
+sofas NNS
+evangelist NN
+Lori NNP
+graphite-plastic JJ
+Expecting VBG
+twenty-one CD
+defending VBG JJ
+bantering VBG
+S.W. NNP
+design-conscious JJ
+asymptotic JJ
+Harapiak NNP
+predominant JJ
+transgression NN
+Taj NNP
+white-washed JJ
+speculated VBD VBN
+penalties NNS
+Confiding VBG
+Fleeting JJ
+dissenters NNS
+list NN VBP VB
+highschool NN
+Goody UH
+spotty JJ
+Megargel NNP
+clay-mining NN
+SHUN VBP
+slang NN
+Seize NNP VB
+shut VBN VBD JJ NN VB
+Players NNPS NNP NNS
+emphaticize VB
+trade-off NN
+GRE NNP
+studio\ JJ
+amalgamations NNS
+Baullari NNP
+Zermatt NNP
+operagoers NNS
+Prescription-drug NN
+high-class JJ
+creditable JJ
+Maserati NNP
+continentally RB
+Jif NNP
+Fairfax NNP NN
+Lorincze NNP
+N.D NNP
+wore VBD
+Elkan NNP
+Harlingen NNP
+proto-senility NN
+Pennsylvania NNP
+Enskilda NNP
+stern JJ NN
+polka NN
+Levert NNP
+Hackensack NNP
+Ala NNP
+snuff VB NN
+box NN VB
+speculation NN
+chicken NN
+Blackstone NNP VBP
+Ing NNP
+copper-producing JJ
+quarter-inch JJ
+Sgt. NNP
+Hentoff NNP
+Topix NNP
+Sangetsu NNP
+Franco-Irishman NNP
+Kenner NNP
+boycotting VBG
+Amending VBG
+reins NNS
+pedagogue NN
+Saturday-night JJ
+unaggressive JJ
+Pilate NNP
+dancelike JJ
+Sporkin NNP
+Tragedy NN NNP
+athleticism NN
+mid-1950s NNS
+Ways NNPS NNP NNS
+Se NNP
+Fayette NNP
+Constellation NNP
+Pegler NNP
+electrical JJ
+Basic NNP NN JJ
+Fingerprints NNS
+absorbing VBG JJ
+BREWERS NNS
+Material NNP JJ
+appreciated VBN VBD JJ
+codifying VBG
+cornmeal-price NN
+pamphlet NN
+treaties NNS
+Engineers NNPS NNP NNS
+bout-de-souffle FW
+Nakamura NNP
+Berlitz NNP
+Z-axis NN
+Majestic NNP
+halfway RB JJ
+dreadful JJ NN
+S NNP POS NN
+jaywalkers NNS
+Windahall NNP
+limply RB
+black-haired JJ
+scare VB NN VBP
+Bigness NN
+overdosing VBG
+Proof NN
+single-family JJ NN
+Idris NNP
+Acquirers NNS
+fifteenth JJ
+Verner NNP
+Unckle NNP
+mindset NN
+contemplated VBN JJ VBD
+chemistry NN
+politics NNS NN
+lamechian JJ
+AEC NNP
+rodding NN
+parallelism NN
+Vocabulary NNP
+Kemps NNP
+squashed-looking JJ
+kinesthetic JJ
+WHICH WDT
+Quadrum NNP
+home-audience NN
+Raboy NNP
+clear-cutting NN
+wisenheimer NN
+haphazardly RB
+funniest JJS
+hammock NN
+adoptee NN
+Patrol NNP NN
+Aldo NNP
+undersized VBN JJ
+petrochemicals NNS
+CHINA NNP
+offcourse JJ
+SAB NNP
+Dryja NNP
+Guste NNP
+orthodox JJ NN
+Rapunzel NNP
+increase-results NNS
+balconies NNS
+HOCKEY NN
+fruition NN
+Wilms NNP
+estrogen-replacement NN
+telegraphing VBG
+Air NNP NN
+industrialists NNS
+current JJ NN
+historical JJ
+life-insurance NN JJ
+Trades NNPS
+Uncomfortably RB
+truck-fleet JJ
+radioactive JJ
+proscribed VBN
+Thuggee NNP
+sidekick NN
+Poquet NNP
+unemployed JJ
+impulsive JJ
+opiates NNS
+formation NN
+stem VB NN VBP
+diming VBG NN
+befuddled VBD VBN
+womanhood NN
+mediaevalist NN
+big-budget JJ
+Rizvi NNP
+non-religious JJ
+Pollution NNP
+femininity NN
+liberals NNS
+Vermeersch NNP
+better-educated JJ
+martinis NNS
+Able NNP
+redesignation NN
+Bonhoeffer NNP
+comprehensively RB
+Underwater NNP
+Galsworthy NNP
+reasons NNS VBZ
+horsehair NN
+Folsom NNP
+bedtime NN
+Mass. NNP
+Leemans NNP
+synthesizine NN
+AUSTIN NNP
+stirring VBG JJ NN
+Chin-Use VB
+post NN FW IN JJ VB VBD VBP
+Affaire NNP
+axes NNS
+Scotto NNP
+selective JJ
+attention NN
+shored VBN
+Self-contained JJ
+relyriced VBD
+spaceships NNS
+Corinthians NNPS NNP
+manners NNS
+thoroughness NN
+kamikaze NN
+three-step JJ NN
+Oz NNP
+Titles NNPS
+Joffre NNP
+Trace NNP
+invites VBZ
+Delius NNP
+coolant NN
+TREASURY NNP NN
+frigate NN
+Gossage NNP
+tawny JJ
+rugged JJ
+newest JJS JJ
+open-work JJ
+t'hi-im PRP
+integral NN JJ
+one-company JJ
+espousal NN
+closely-packed JJ
+used-car NN JJ
+Lavidge NNP
+Noyon-la-Sainte NNP
+successor NN
+money-broking JJ
+substantively RB
+temporized VBD
+photographic-products JJ
+Mazza NNP
+Tears NNS
+lengthens VBZ
+WWL NNP
+governors NNS
+nine-year-old JJ
+offing NN
+SOYBEANS NNS NNPS
+sana FW
+Starkov NNP
+hacks NNS
+adapts VBZ
+socked VBD
+sanctums NNS
+churchyard NN
+mined VBN VBD
+Wagnerian JJ
+able-bodied JJ
+focusing VBG NN
+Mitsubishi NNP NNS
+Arturo NNP
+Sventek NNP
+exterior JJ NN
+ASARCO NNP
+monotonous JJ
+Calverley NNP
+SystemOne NNP
+Jaguars NNPS
+Bookshop NNP
+shoo-in NN
+extra JJ NN RB
+relates VBZ
+miserable JJ
+adagio NN RB
+experimental JJ
+Brokerage-firm JJ
+mid-November NNP NN
+American-made JJ
+Gong NNP
+ENFIELD NNP
+Gamma NNP
+ratcheting VBG|NN VBG
+Bellcore NNP
+Prevost NNP
+drug-delivery JJ
+Engrg NNP
+bottom-of-the-barrel JJ
+Irrigation NN
+Maroc NNP
+hurt VBN JJ NN VB VBD VBP
+IFO NNP
+troubled JJ VBD VBN
+venues NNS
+November NNP
+Phoenixville NNP
+Read NNP VBP VB
+porno-inspired JJ
+comely JJ
+rituals NNS
+Tiger-Heli NNP
+photoelectronic JJ
+multitudes NNS
+W.G. NNP
+abler JJR
+oil-finding JJ
+free-lance JJ
+Desperate JJ
+BUELL NNP
+undecorated JJ
+seaman NN
+Geneva-based JJ
+ruins NNS
+Willy NNP
+Morcott NNP
+Scurlock NNP
+ultra-liberal JJ
+hoofs NNS
+poseurs NNS
+Lynde NNP
+adopters NNS
+minisupercomputers NNS
+catechism NN
+WHEN WRB
+monogamous JJ
+Luxor NNP
+graunt VB
+Gorney NNP
+Geodetic NNP
+high-volume JJ
+McEachern NNP
+Kernel NNP
+Scarlatti NNP
+avenger NN
+ears NNS
+Pasoan NNP
+Bel NNP NN
+Astronomy NN NNP
+appropriate JJ VBP VB
+Ropart NNP
+pynte NN
+pre-1917 JJ
+Overfunding VBG
+geysers NNS
+Agoeng NNP
+Medtronics NNP
+discourages VBZ
+Non-God UH
+advanced VBD VBN JJ VBN|VBD
+cut-throat JJ
+greenbacks NNS
+marriages NNS
+generosity NN
+Aviation NNP NN
+obsessions NNS
+reunification NN
+dew NN
+humming NN VBG
+flimsy JJ
+Showbiz NNP
+Regaard NNP
+fronts NNS
+Europe NNP
+Sutro NNP
+cashing VBG
+equalize VB
+oxidation NN
+envied VBD
+angering VBG
+provisionally RB
+Galatians NNPS
+Baking NNP
+super-imposed VBN
+localize VB
+saxophones NNS
+likely JJ RB
+Pearlman NNP
+Portico NNP
+merely'critical JJ
+chaperoned JJ
+diameters NNS
+Freud NNP ,
+instrumentation NN
+Huai NNP
+Janitsch NNP
+encroached VBD
+pairs NNS
+Gallitano NNP
+Whisky NN
+Cahn NNP
+Sirrine NNP
+indefiniteness NN
+over-arranged JJ
+Gencor NNP
+Berlin NNP JJ NN
+scarf NN
+Merchandise NNP
+bridged-T NNP
+jackbooted JJ
+stone-age JJ
+aluminum-hulled JJ
+boy NN UH
+MOTORISTS NNS
+Fraction NNP NN
+burial NN
+doubtless RB
+Bowdoin NNP
+Seung NNP
+Foothills NNP NNS
+Tank NNP
+frescoing NN
+public... :
+Yamatane NNP
+Islands NNPS NNP
+carry-forward NN
+sandy JJ
+'Ounce NNP
+battle-ax NN
+Kermit NNP
+presaged VBD
+Brandywine NNP
+CCK-related JJ
+boulevard NN
+inasmuch RB
+XL NNP
+Switzerland NNP NN
+government-relations NNS
+Investigation NNP NN
+Non-cosmetic JJ
+terrestrial JJ
+nympho NN
+U.s NNP
+security-type JJ
+watercolorists NNS
+sentimental JJ
+hostilities NNS
+bloom NN VBP VB
+government-set VBN
+judging VBG NN
+Bank\/Tidewater NNP
+decelerate VB
+one-sixth JJ NN
+Marni NNP
+encroaching VBG
+indexed VBN JJ
+music-hall JJ NN
+spy NN VB
+prostitutes NNS
+benefactor NN
+dormitory NN
+performances NNS
+Arighi NNP
+solving VBG
+schoolgirlish JJ
+Succeeding VBG
+extremity NN
+Fleischmanns NNP
+rosarians NNS
+iniquitous JJ
+Selig NNP
+crimes NNS
+Yastrow NNP
+desklegs NNS
+property-loan JJ
+comrades NNS
+place-kicking NN
+back-to-back JJ
+sobriety NN
+COCA-COLA NNP
+madman NN
+Kung NN
+violin NN
+Dreamboat NNP
+paste NN VB
+Ambassador-designate NNP
+loosest JJS
+belief NN
+pinball-parlor NN
+Coudert NNP
+Maritain NNP
+sorrowful JJ
+condition NN VBP VB
+Tyson NNP
+Oneupmanship NN
+quartzite-quarrying NN
+stumbles VBZ NNS
+shareholders NNS
+stalling VBG
+mightiest JJS
+writer-turned-painter NN
+Mikeen NNP
+adoptable JJ
+Boredom NN
+unenlightened JJ
+Gambling NN
+effortful JJ
+econometric JJ
+reprinting VBG
+normal JJ RB
+unethical JJ
+Range NN NNP
+hard-riding JJ
+batteries NNS
+underwhelmed VBN
+disarranged VBN
+clodhoppers NNS
+Sofia NNP
+geopolitical JJ
+soapbox NN
+shoulder-to-shoulder JJ
+cattaloe NN
+kraft NN
+died VBD VBN
+SAC NNP
+Haskins NNP
+Democratic-sponsored JJ
+twin JJ NN
+recession-inspired JJ
+draw VB VBP NN
+DEVELOPMENT NNP
+Checkit NNP
+Deller NNP
+three-hour JJ
+unfair JJ
+recently-announced JJ
+chorines NNS
+Wildly RB
+interviewees NNS
+Pedott NNP
+T NN NNP
+Pockmanster NNP
+Eveready NNP
+non-hydrogen-bonded JJ
+Hasting NNP
+.what WDT
+Urban NNP
+Interleaf NNP
+Annihilate VB
+unwelcome JJ
+suffixand NN
+Harlan-Hickory NNP
+Kimco NNP
+Tse-tung NNP
+diagnostic JJ NN
+alveoli NNS
+commencement NN
+lapels NNS
+Grigsby NNP
+donations NNS
+sampled VBN VBD
+McGlothlin NNP
+creaks NNS
+big-tube JJ
+takeoff NN
+out-of-school JJ
+Oberlin NNP
+burdens NNS VBZ
+reintegrated VBN
+VanSant NNP
+ferns NNS
+hankerin VBG
+Mining NNP NN
+cawing VBG
+Circulation NN NNP
+Keogh NNP
+Haydn NNP
+Lacroix NNP
+Zomax NNP
+Circumstance NNP
+Gaulle NNP
+Stout NNP
+microphoning VBG
+Fenimore NNP
+churchly JJ
+perpetuate VB VBP
+wiggier JJR
+yokel NN
+earlier-reported JJ
+plagues VBZ
+replenished VBN VBD
+sarsaparilla NN
+Schering-Plough NNP
+Thomp NN
+computer-trading NN
+Petco NNP
+non-auto JJ
+insulin-dependent JJ
+Dictionaries NNS
+Families NNS NNPS
+Texan NNP JJ NN
+familiarly RB
+place-names NN NNS
+prodded VBN VBD
+flaxseed NN
+exhibit NN VBP VB
+intent NN JJ
+GSA NNP
+resuscitate VB
+inquire VB
+TRUSTS NNS
+Foresman NNP
+diligently RB
+heist NN
+Match NNP NN
+Tullock NNP
+single-A-1\ NN
+Startled VBN
+Garrin NNP
+Tenda NNP
+Relativism NN
+Rehfeld NNP
+Maccaquano NNP
+conflict-of-interest NN JJ
+Assemblywoman NNP
+Genome NNP
+lactating VBG
+religiously RB
+Opere NNP
+Bless NNP VB
+validly RB
+stochastic JJ
+sleek-headed JJ
+budworm NN
+retracted VBN VBD JJ
+live VB RB VBP JJ
+alders NNS
+annointed VBN
+Torah NNP
+non-voting JJ NN
+FH-77B NNP
+Insights NNPS
+shrubbery NN
+manifestly RB
+Bermuda-based JJ
+consolidating VBG JJ
+breakin VBG
+Tells VBZ
+Sawalisch NN
+Purple NNP
+Assemblies NNP
+First-hand JJ
+BankTexas NNP
+affairs NNS
+four-jet JJ
+unsupported JJ
+Brelin NNP
+particular JJ NN RB
+Suttle NNP
+Ivory NNP NN
+querulously RB
+career NN NNP
+bhoy NN
+Ferrofluidics NNP
+departmental JJ
+Gordan NNP
+built-detergent JJ
+arclike JJ
+Brumbaugh NNP
+walkway NN
+Midgetman NNP
+Sounds VBZ
+Simmer VB
+McKay NNP
+manipulated VBN VBD
+replete JJ
+alleging VBG
+co-ordinate VB
+free-market-oriented JJ
+theorizing NN
+livin NN
+color-TV NN
+Athenian JJ
+resignation NN
+sailing NN VBG
+boomed VBD VBN
+compactly RB
+upheld VBD VBN
+New-England NNP
+re-vision NN
+transatlantic JJ NN
+contaminated VBN VBD JJ
+Crawford-Browne NNP
+Marushita NNP
+losers NNS
+Iguana NNP
+stowaway NN
+Heel-Miracle NNP
+Basie NNP
+Stained VBN
+sausage-meat NN
+successor-designate JJ
+lightheartedly RB
+colorless JJ
+veering VBG
+guards NNS VBZ
+Weeks NNP NNS
+remembering VBG NN
+glad JJ
+seersucker NN
+fastness NN
+INMAC NNP
+securities-law NN JJ
+Cash-pressed JJ
+Lilly NNP RB
+--are VBP IN NN
+Bourassa NNP
+VW NNP
+depot NN
+Comecon NNP
+fours NNS
+red-handed JJ
+Samford NNP
+nexus NN
+v.w. NN
+Messinger NNP
+unlit NN
+Rowse NNP
+orthophosphates NNS
+Bygdeman NNP
+Contract NNP NN
+Madeira NNP
+Library NNP NN
+presumably RB
+Mamaroneck NNP
+ex-accountant NN
+Barbaresco NNP
+Israelite NNP
+Redeemable NNP
+Well-trained JJ
+resemble VB VBP
+scam NN
+stickpin NN
+Yurek NNP
+Sleeping NNP VBG NN
+enquetes FW
+bemoan VB
+vocabularies NNS
+teenage JJ
+Hopes NNS
+Lakshmipura NNP
+figs. NNS NN
+storm NN VB VBP
+Genetic NNP JJ
+KRAFT NNP
+Marlys NNP
+Non-actors NNS
+Sumat NNP
+appliance-controls NN
+Financings NNS
+Hard-surface JJ
+newsletters NNS
+brick-and-mortar JJ
+abnormal JJ
+Arizona NNP
+Caspita-brand JJ
+transducer NN
+volcano NN
+tappets NNS
+capping VBG NN
+Privatization NN NNP
+STARTING NNP
+asymmetrically RB
+Unisys NNP NNS
+bannnnnng VB
+radar NN
+fat-tired JJ
+Knock VB
+halcyon JJ
+bumble VB VBP
+agrochemical NN
+thermopile NN
+Vicenza NNP
+Colored NNP JJ
+Attopeu NNP
+apart RB RP JJ
+Playback NNP
+nitrogen-fertilizer NN
+Confidently RB
+Tomsho NNP
+Gotlieb NNP
+Schenk NNP
+linearly RB
+ballots NNS
+correctness NN
+juju NN
+Okay UH JJ
+slivery NN
+drug-sensing JJ
+champs NNS
+nine CD
+Nineteen CD NNP
+deprive VB
+drug-financed JJ
+Seto NNP
+majority-party JJ
+phis NNS
+Dearie NNP
+conjures VBZ
+drizzle NN
+Basile NNP
+Farnell NNP
+slender JJ JJR
+approaching VBG
+afterglow NN
+employer-offered JJ
+Relax VB
+Triandos NNP
+Lubowski NNP
+Spinners NNPS
+DaiIchi NNP
+Proxmire NNP
+bilk VB
+Aided VBN
+Excel NNP
+Rascal NN
+intrude VB VBP
+dentistry NN
+handy JJ
+inroads NNS
+their PRP$ PRP
+coffin-sized JJ
+free-mail NN
+moon-splashed JJ
+--$ $
+Grows VBZ
+Raphaels NNS
+too-hearty JJ
+idol-worship NN
+Fanshawe NNP
+Gerold NNP
+apartments NNS
+belfry NN
+Wiederaufbau NNP
+traveling VBG NN
+coffee-roasting JJ
+L'Arcade NNP
+subpoenas NNS
+smothering VBG
+Cotillion NNP
+rekindled VBN
+Military NNP JJ
+Expresses VBZ
+Enthusiasm NN
+tactics NNS
+exclaiming VBG
+Fixx NNP
+sweeten VB
+enliven VBP
+hump-backed JJ
+end-use JJ
+Mogavero NNP
+Hang NNP VB
+clean-shaven JJ
+Doak NNP
+snips NNS
+stymied VBN JJ
+Slater NNP
+casino NN
+Ohmae NNP
+who... :
+Ohio-based JJ
+modernity NN
+Credo NN
+strings NNS VBZ
+Expressways NNP
+pedals NNS VBZ
+damper NN
+sheepskin NN
+Endless JJ
+expert NN JJ
+brigadier NN
+attracted VBN VBD
+drachma NN
+Piero NNP
+Belletch NNP
+obfuscate VB
+APPLIANCES NNPS
+argumentation NN
+whiners NNS
+Lyme NNP NN
+angular JJ
+Licht NNP
+careful JJ
+imposition NN
+Caccappolo NNP
+widespread JJ
+Demands NNS
+noblesse JJ
+Anglo-North JJ
+rebuts VBZ
+began VBD
+Herald-Tribune NNP
+McDade NNP
+cackled VBD
+Adair NNP
+one-hundredth NN
+Ichiro NNP
+axe NN
+sponging NN
+adage NN
+Thirty-one JJ
+Bainbridge NNP
+pioneer NN VB
+Newsnight NNP
+Unwholesome JJ
+characteristics NNS
+Cherokee NNP
+folly NN
+Communist-type JJ
+Rammin VBG
+Georgetown NNP
+outflank VB
+prosperous JJ
+Hogan NNP
+wops VBZ
+invalidism NN
+Rattner NNP
+Breakey NNP
+Atlee NNP
+cheapening VBG
+Kennedy-Waxman NNP
+ear NN
+Fats NNP NNS
+Healy NNP
+significantly RB
+predecessors NNS
+Ever-confident JJ
+algae NNS
+draft-resistance NN
+Cynwyd NNP
+sickish JJ
+Mailloux NNP
+Honshu NNP
+austere JJ
+rye NN
+state-dominated JJ
+vassal NN
+closed-end JJ
+pressure-formed JJ
+bombed VBN VBD
+anti-convulsive JJ
+topic NN
+comprised VBN VBD
+diabetic JJ NN
+scarcer JJR NN
+Imo NNP
+PPG NNP
+Md. NNP
+nut-house NN
+fireplaces NNS
+Lovell NNP
+Nobels NNPS
+Blyth NNP
+gemstone NN
+restated VBN VBD JJ
+Weatherford NNP
+U NNP NN
+passenger-miles NNS
+stridently RB
+independant JJ
+Tracks NNS NNPS
+polio NN
+Atala NNP
+visible JJ
+Benelux NNP
+undiversified JJ VBN
+overcollection NN
+halftime NN
+Hamm NNP
+besieging VBG
+beings NNS
+Acorn NNP
+blueberry NN
+Copying NNP VBG
+spouse NN
+pacific JJ
+Salty NNP
+Salvadorans NNS NNPS
+Pockets NNS
+MegEcon NNP
+mem FW
+poplar NN
+reappraising VBG
+ARRIVED VBD
+polled VBN VBD
+NZI NNP
+obsolescent JJ
+Batch NN
+Pokorny NNP
+classicism NN
+tailpipe NN
+Bread NNP NN
+Hammerstein NNP
+Colfax NNP
+smashed-out JJ
+D.J. NNP
+eye-beamings NNS
+pullet-roofed JJ
+disk-read JJ
+folk NN NNS
+biennial JJ
+ashamed JJ
+Shaughnessy NNP
+government-appointed JJ
+minicomputers NNS
+Kawecki NNP
+Physiologist NNP
+packers NNS
+Telecom NNP
+social-studies NN
+Prototype NN
+Ba-1 JJ NN
+Othello NNP
+Japanese JJ NN NNPS NNP NNS VBP
+USDA NNP
+fluorinated VBN
+based VBN VBD
+lumpy JJ
+fascism NN
+Ironic JJ
+Racks VBZ NNS
+lobscouse NN
+middleman NN
+manic-depressive NN
+Boil VB
+ancillary JJ
+Clearly RB NNP
+tabloids NNS
+prestige-sentitive JJ
+stale-cigarette NN
+completed-contract JJ
+Goodison NNP
+Lausanne NNP
+doll-like JJ
+harmonize VB
+Capitoline NNP
+Reversing VBG
+Fitzgibbon NNP
+steroid-induced JJ
+longhand JJ NN
+Muramatsu NNP
+Buy-out NN
+Ricostruzioni NNP
+plagiarism NN
+perplexity NN
+loggerheads NNS
+lexicostatistic JJ
+bogus JJ
+Jarvis NNP
+walking VBG VBG|NN JJ NN
+fortune-tellers NN
+alveolus NN
+risk-averse JJ
+staffer NN
+detergents NNS
+scan NN VBP VB
+antenna NN
+Grapes NNP NNS
+motel NN
+boldness NN
+attainable JJ
+arrowheads NNS
+indelicate JJ
+pollinated VBN
+mortgagebacked JJ
+Goodkind NNP
+biddies NNS
+brand-new JJ
+atrun JJ
+despised VBD VBN
+Legal NNP JJ
+panelization NN
+Taraday NNP
+whitish JJ
+wrapped VBN VBD
+counter-moves NNS
+vagueness NN
+Temperatures NNS
+Eclipse NNP NN
+Excitement NN
+Reiss NNP
+loosen VB
+black-eyed JJ
+sales-moving JJ
+KIPPUR NNP
+Ben NNP
+Superconductor NNP
+Kapoor NNP
+distillates NNS
+Hals NNP
+deadweight NN
+distasteful JJ
+Sigourney NNP
+EXPANDS VBZ
+Establishing VBG
+co-operative JJ NN
+enlists VBZ
+unimaginative JJ
+SV-10 NN
+discovered VBN JJ VBD
+daily JJ NN RB
+ROME NNP
+Bens NNP
+inappropriateness NN
+Mandle NNP
+mobilizing VBG NN
+egotistical JJ
+blaring VBG
+dey PRP
+peeling VBG NN
+WBBM-TV NNP
+adores VBZ
+insomnia NN
+BEGAN VBD
+Initially RB
+infest VB
+Russo NNP
+imbecile NN
+Patronage NN
+echo NN VBP VB
+Messinesi NNP
+battle-cries NN
+one-inch JJ
+Rockford NNP
+Harlin NNP
+woozy JJ
+condensers NNS
+line-item JJ
+output-restricting JJ
+catalysts NNS
+anarchic JJ
+bill NN VBP VB
+cutters NNS
+illustration NN
+Battery NNP NN
+EuroBelge NNP
+Mattsson NNP
+encrypting VBG
+Accutane NNP
+Environmental NNP JJ
+rumors NNS VBZ
+resounding JJ
+firm. NN
+hundred-thousand-share JJ
+peculiarities NNS
+Schwartzman NNP
+ideologues NNS
+Anti-Communist JJ NNP
+Good JJ NNP NN UH
+frolicked VBN
+Newman NNP
+Pamphili NNP
+high-technology NN JJ
+Sirot NNP
+Pilgrims NNPS
+bluebloods NNS
+lacerated VBN
+extern NN
+self-judging JJ
+re-introduction NN
+unawareness NN
+mystique NN
+step NN VBP VB
+F.B. NNP
+Levy NNP
+hypoadrenocorticism NN
+CRESTMONT NNP
+languorous JJ
+Supra-Expressionism NNP
+Chessman NNP
+linoleum NN
+reads VBZ
+lit VBD VBN JJ NN
+demurred VBD
+detoxification NN
+TOPIC NN
+interrupting VBG
+marketing NN VBG JJ VBG|NN
+prospectus NN
+lodgings NNS
+clove NN
+Except IN NNP
+sillier JJR
+Archimedes NNP
+beneath IN RB
+Dubaih NNP
+PIERCE NNP
+hobbles VBZ
+diurnal JJ
+demagnification NN
+Macneff NNP
+healer NN
+'m VBP
+Colo. NNP
+exhumations NNS
+phoned VBD VBN
+already-expensive JJ
+incompetently RB
+go-along JJ
+high-up JJ
+Guaranteed VBN NNP JJ
+lumber-like JJ
+Eureka NNP
+virus-free JJ
+rambled VBD
+Liar NN
+tongue NN
+typewriting NN
+Haywood NNP
+muffs NNS
+loused VBD
+furnished VBN VBD JJ
+Mark NNP NN VB
+Peladeau NNP
+Pascutto NNP
+directrices NNS
+b-reflects VBZ
+stirups NNS
+crowned VBN
+forthwith RB
+hubby NN
+Pfau NNP
+ornithology NN
+McKee NNP
+symposium NN
+abhorrent JJ
+parameter NN
+recovered VBD VBN
+pre-1950s JJ
+Unigesco NNP
+Kay NNP
+sand NN
+Lescaut NNP
+city-charter NN
+dicker VB
+erasing VBG
+jaws NNS
+kindnesses NNS
+heir NN
+Latino JJ
+incurably RB
+Monaco NNP
+LifeSpan NNP
+contrarian JJ NN
+pejorative JJ
+defense-products NNS
+thieves NNS
+spot-promoted NN
+contention NN
+re-establishment NN
+collie NN
+Dai-Ichi NNP
+Moselle NNP
+pursuit NN
+money-making JJ NN
+shriveled VBN VBD JJ
+garrulous JJ
+Challenging VBG
+proceeds NNS VBZ
+mixed VBN VBD JJ
+gird VB
+wincing VBG
+scrupulous JJ
+amorphous JJ
+KC-135 NNP CD
+child-face NN
+R.C. NNP
+knick-knacks NNS
+transvestitism NN
+pokeneu FW
+complains VBZ
+sheds VBZ NNS
+LINK-UP NN
+insolent JJ
+distressed JJ VBN
+whyfores NNS
+Kollmorgen NNP
+Stacey NNP
+Tanny NNP
+Set VB VBN NNP
+ex-liberals NNS
+Admirably RB
+extolled VBD
+Zeien NNP
+renewal NN
+Hassan NNP
+rechristens VBZ
+non-competition JJ
+heralding VBG
+emphasizes VBZ
+OST NNP
+self-splicing JJ
+Judie NNP
+grounds NNS VBZ
+Cahill NNP
+Liston NNP
+Chamorro NNP
+slender-waisted JJ
+Colee NNP
+coudn MD
+Dactyls NNPS
+three-run JJ
+Hayek NNP
+JEDEC NN
+Creek NNP
+off-off JJ
+manifest JJ VB VBP
+securities-firm NN JJ
+Virtue NNP
+rifle-shotgun NN
+Wagon NNP
+Slash VB
+multihulled VBN
+Vignola NNP
+Guatemala NNP
+Hooks NNP
+Whirlpool NNP
+hand-me-down JJ
+finicky JJ
+crawl VB NN
+Arts NNP NNPS NNS
+DOWNSIZING NN
+Sanitation NNP NN
+balled VBN
+Mentz NNP
+woodworking NN
+intonations NNS
+flood-lighted JJ
+distant JJ
+besmirch VB
+Ba-2 JJ NN NNP
+obliterans NNS
+anti-crime JJ
+Phoenician JJ
+legitimize VB
+hydroxymethyl NN
+beholds VBZ
+Scotts NNP
+non-color NN
+Campestre NNP
+Bosphorus NNP
+effectual JJ
+fostering VBG NN
+terrors NNS
+men NNS
+slides NNS VBZ
+thin-margin JJ
+seaports NNS
+Beirut-on-Hudson NNP
+horticultural-products NNS
+Governor NNP NN
+Flip NNP
+life-like JJ
+resell VB VBP JJ
+momentoes NNS
+loan-restructuring JJ
+gluey JJ
+rationally RB
+attis NN
+V NN CD NNP
+destinies NNS
+Vaughan NNP
+free-speech NN
+five-coordinate JJ
+Imre NNP
+class-based JJ
+imply VB VBP
+Liberace NNP
+archdiocese NN
+Cross-Purposes NNPS
+authenticator NN
+ailerons NNS
+jeopardizes VBZ
+horsepower NN
+Right-wing JJ
+Durkin NNP
+sheen NN
+globulins NNS
+S.Grove NNP
+subdue VB
+RENT-A-CAR NNP
+unsheathing VBG
+Armen NNP
+Chips NNPS NNP
+absorbedthe VB
+XCEL NNP
+confessing VBG
+scorekeeping NN
+nickels NNS
+abbey NN
+Cleveland NNP NN
+Hygiene NNP
+flocking VBG
+smoothing VBG
+tools NNS VBZ
+Truckers NNS
+Minimum NNP
+ownself PRP
+Fredonia NNP
+Circle NNP NN
+supersafe NN
+Bent NNP
+overleveraged JJ
+Parrot NNP
+fungicides NNS
+Paley NNP
+BAROMETER NN
+Baby-dear NNP
+finetuning VBG
+divinities NNS
+xylene NN
+Wage-settlement JJ
+unusually RB
+Kodaks NNPS
+corresponds VBZ
+redounds VBZ
+midstream NN
+grindstone NN
+Vosges NNPS NNP
+Counselors NNPS
+WFXT-TV NNP
+over-populated JJ
+luster NN
+Bromwich NNP
+handyman NN
+Judson NNP
+cherishes VBZ
+gross JJ NN VB
+peerless JJ
+nuclear-bomb NN
+Nuys NNP
+rooftops NNS
+defacing VBG
+fig. NN
+game NN
+hotlines NNS
+grizzlies NNS
+anti-program-trading JJ
+Villa NNP
+complaint NN
+claimant NN
+instead RB
+Momoyama NNP
+Peron NNP
+Tan NNP JJ
+careening VBG
+anti-recession JJ
+bloody-minded JJ
+bulletin-board NN
+vouching VBG
+blatantly RB
+Specialized NNP JJ
+dilapidated JJ VBN
+McIntosh NNP
+amulets NNS
+titer NN
+aya NN
+Oswald NNP
+Inquirer NNP
+contemplates VBZ
+ever-optimistic JJ
+bloodstained JJ
+rock-scored JJ
+post-graduate JJ NN
+initialed VBD VBN
+Trident NNP
+assigned VBN VBD JJ
+Grundfest NNP
+AH6 CD
+strap VB JJ
+Herford NNP
+beguile VBP
+Schulte NNP
+Autobiographies NNS
+AIR'S NNP
+unpaid JJ
+N.H NNP
+Network NNP NN
+Hani NNP
+Curiously RB NNP
+highrises NNS
+PC-magazine JJ
+lightness NN
+fee-shifting JJ
+topcoats NNS
+clinics NNS
+banisters NNS
+washbowl NN
+Quadrille NNP
+Hessians NNS NNPS
+Capacitors NNP
+Affirmed NNP
+pseudo-lobbyists NNS
+researcher NN
+Wolcott NNP
+obstacle NN
+Mimesis NN NNP
+Boards NNPS NNP
+deadlines NNS
+amenable JJ
+Fires NNP VBZ
+demilitarize VB
+next-generation NN JJ
+Skolman NNP
+underlining VBG NN
+Litvack NNP
+Railroad-rate JJ
+wallops VBZ
+Journalists NNS NNPS
+anguish NN VBP
+urethra NN
+Brocklin NNP
+KETV NNP
+nags NNS
+handfuls NNS
+Prisoners NNP NNS
+sane JJ
+industrial-property NN
+dipole JJ NN
+epitome NN
+Diagnosis NNP
+active-player NN
+constitute'speech VB
+pearls NNS
+Hollowell NNP
+Ulbricht NNP
+A310-300s NNP
+Roehm NNP
+stagecoach NN
+seat-for-the-secretary JJ
+neon-lighted JJ
+interparty NN
+Tigers NNP NNPS
+Keyes NNP
+successors-in-spirit NNS
+majorities NNS
+vibes NNS
+aerosolized VBN
+did VBD
+Hadrian NNP
+nowadays RB
+Maggetto NNP
+hypostatization NN
+nymphs NNS
+F111 NN
+Comique NNP
+then-52 JJ
+Randy NNP
+farmlands NNS
+Romanza NNP
+Non-steel JJ
+linage NN
+invent VB VBP
+Leona NNP
+parasite NN
+impaired VBN JJ
+Haight NNP
+Learned NNP VBD
+buffs NNS
+re-oriented VBN
+ventilated VBD VBN JJ
+Hua NNP
+Ruled VBN
+Jorge NNP
+discount-store NN JJ
+Davao NNP
+'n IN NNP CC
+thorough JJ
+poignancy NN
+O'Melveny NNP
+T\/A NNP
+coaches NNS
+AEG NNP
+raison FW NN
+three-dice JJ
+narcolepsy NN
+fern NN
+piecemeal RB NN
+Gundle NNP
+Italian-style JJ
+Harnessing VBG
+Photofinishing NNP
+Juliet NNP
+community NN
+ALLIANCE NNP
+gene-replication NN
+consolidation NN
+Bohlen NNP
+Dublin NNP
+seedcoats NNS
+Nerds NNS NNPS
+crane-safety NN
+Longer-term JJ RB
+chaired VBN JJ VBD
+non-methanol JJ
+patient NN JJ
+Cardiovasculatory NNP
+pedestal NN
+Alun-Jones NNP
+psychiatry NN
+toe NN VB
+Geva NNP
+Discreet JJ
+Lucretia NNP
+Summarizing VBG
+Moira NNP
+don't-know's NNS
+Week NNP NN
+Meese NNP
+Injun NNP
+twirler NN
+chided VBN VBD
+sulphured VBN
+SURGED VBD
+Challenge NNP NN
+feeders NNS
+overhangs NNS
+specimen NN
+intranasal JJ
+favorites NNS
+referrin VBG
+effortless JJ
+Exhibits NNPS
+supercede VBP
+BEVERLY NNP
+Paulo NNP
+ambiguity NN
+languished VBN VBD
+Addabbo NNP
+undoing NN VBG
+Orpheus NNP
+jelly NN
+WORD NN
+likens VBZ
+Ba-3 JJ CD NN NNP
+Hargrove NNP
+eat VB VBP
+Twenty-First NNP
+SAME JJ
+hundred-leaf JJ
+blossomed VBD VBN
+bicyclist NN
+toga NN
+stumbling VBG JJ NN
+noire NN
+split-bamboo JJ
+immediately RB
+demeanors NNS
+researches VBZ NNS
+PPI NNP
+Burroughs NNP
+conveyance NN
+Marcom NNP
+panelized VBN
+majestically RB
+JUDICIARY NNP
+mending VBG NN
+authors NNS
+distracting VBG JJ
+best-sellers NNS
+Polly NNP
+Stillwell NNP
+accountant NN
+family-run JJ
+Multimedia NNP
+Jacuzzis NNS
+clothier NN
+unmasculine JJ
+Push NN VB VBP
+listener NN
+Tenn. NNP
+ordinates NNS
+inconspicuously RB
+liturgical JJ
+Department-store JJ
+employee-benefits JJ NNS
+assignee NN
+Orly NNP
+Bowater NNP NN
+Margaret NNP
+purchase NN VB VBP
+videotape NN VB
+groves NNS
+Producers NNS NNPS NNP
+prevails VBZ
+pots NNS
+Kozuo NNP
+high-school NN JJ
+crack-addicted JJ
+by-gone JJ
+Demetrius NNP
+EP-3E NNP
+piling VBG NN
+Installing VBG
+Shiite NNP JJ
+Ferry NNP NN
+deliverers NNS
+Hwa-Shan NNP
+expatriate JJ
+Parkland NNP
+teaspoonful JJ NN
+Si NNP
+mah-jongg FW
+vitriolic JJ
+mimetic JJ
+compensations NNS
+G.W. NNP
+criminals NNS
+mark-yen JJ
+Goliaths NNPS NNS
+ordination NN
+promenade NN
+AFTERSHOCKS NNS
+Cinalli NNP
+small... :
+innards NNS NN
+top-loaders NNS
+Raceway NNP NN
+Midwestern JJ NN NNP
+directs VBZ
+Matanky NNP
+Cougars NNPS
+popcorn NN
+condoms NNS
+air-pollution NN
+Guadeloupe NNP
+gaskets NNS
+voice NN VBP VB
+Bravo NNP UH
+tanks NNS
+courtesies NNS
+heartwarmingly RB
+aux FW
+Englanders NNPS
+nonmusical JJ
+whiplashes NNS
+emanations NNS
+grapples VBZ
+surprises NNS VBZ
+topographic JJ
+hamstring VB
+Jovanovich\/Bruccoli NNP
+friend NN
+Fujita NNP
+outmoded JJ VBN
+Cytogen NNP
+Av. NNP
+desktop-computer NN
+split-level JJ
+Tremendae NNP
+Quint NNP
+Treaty NNP
+scuttling VBG
+spear-throwing JJ
+planted VBN JJ VBD
+Joined VBN
+non-investment JJ
+Miriani NNP
+goddamit UH
+swims VBZ
+Aschenbach NNP
+Milton NNP
+anachronism NN
+accords NNS VBZ
+settlements NNS
+E-Z JJ
+repelling VBG
+hustlers NNS
+controversialists NNS
+rerun NN
+carbaryl NN
+suits NNS VBZ
+alerting VBG
+Pennock NNP
+settling VBG NN
+supple JJ
+Keepers NNS
+home-and-home JJ
+W NNP NN
+Lasco NNP
+Ganes NNP
+exploration NN
+high-paid JJ
+misadventure NN
+Hannah NNP
+bondage NN
+counterprogram VB
+Southwood NNP
+rerouting VBG
+'ll MD
+anecdotal JJ
+half-reluctant JJ
+Merry-go-round NNP
+CITIZENS NNS
+lovelier-than-life JJ
+Astarte NNP
+long-simmering JJ
+landowners NNS
+non-Manpower JJ
+uncontested JJ
+I.C.H. NNP NN
+less-established JJ
+convicts NNS
+massifs NNS
+Riefling NNP
+Keynesian JJ
+Feinman NNP
+Witcher NNP
+SBA NNP
+Gershwin NNP
+Malone NNP
+pegged-down JJ
+Relations NNPS NNP NNS
+agreed-on JJ
+Tao NNP
+marginalia NNS
+multiple JJ NN
+aerate VB
+erysipelas NN
+chromosomes NNS
+Williams NNP
+motel-keepers NNS
+cheats VBZ
+Endicott NNP
+Potpourri NNS
+better-quality JJ
+Trade NNP NN
+flogged VBD
+Signed VBN
+Athena NNP
+Feuchtwanger NNP
+Tigert NNP
+bad-law NN
+Anderlini NNP
+TRS-80 NNP
+piquant JJ
+Kosovo NNP
+coal-black JJ
+Title NN NNP
+translucence NN
+appreciates VBZ
+gentler JJR
+stories NNS
+Isabell NNP
+interim-dividend NN
+cortisone NN
+Spin NNP
+snazzier JJR
+Reavis NNP
+methylene NN
+gruonded VBD
+containerized-cargo NN
+Consequence NN
+sweeter JJR
+used VBN VBD JJ
+dissented VBD VBN
+Carson NNP
+explictly RB
+incriminating VBG JJ
+Stenholm NNP
+usages NNS
+telescopes NNS
+Haberle NNP
+dead-eyed JJ
+post-revolutionary JJ
+hardware NN
+nailed VBN VBD
+Publishing NNP NN
+Alf NNP
+Stetsons NNPS
+indecisiveness NN
+penalize VB VBP
+slam NN VBP VB
+threads NNS
+higher-paying JJ
+sponsored VBN VBD
+diplomats NNS
+front NN JJ RB
+gall NN VB
+surface-declaring JJ
+Small-company JJ
+yarns NNS
+discrete JJ
+remove VB VBP
+Chinooks NNS
+reusing VBG
+high-minded JJ
+She PRP NN
+Slotnick NNP
+Anti-dumping JJ
+polluter NN
+RETREAT NN
+beatings NNS
+bell-ringers NNS
+Sternbach NNP
+Nutrasweet NNP
+Schlesinger NNP
+brash JJ
+pardonable JJ
+experimented VBD VBN
+instructions NNS
+examining VBG NN
+healthy JJ
+Angleterre FW
+Heyden NNP NN
+serials NNS
+earthmoving JJ NN
+al-Faisal NNP
+clot NN VB
+contraband JJ NN
+loan-defaulters NNS
+Confederacy NNP NN
+ACS NNP
+Greenwald NNP
+affiliate NN VB
+warrent JJ
+Smyth NNP
+continually RB
+declaration NN
+dieters NNS
+realness NN
+actionable JJ
+creak NN VB
+unmarried JJ VBN
+flourished VBD VBN
+Default NNP
+Wyatt NNP
+anti-diabetes JJ
+retail-distribution NN
+Matra-Harris NNP
+agribusiness NN
+dumber JJR
+ones NNS
+Krane NNP
+legatee NN
+dost VBP
+castor NN
+Married VBN JJ NNP
+anti-shock JJ
+didn VBD
+tripods NNS
+unapproved JJ
+die VB VBP FW NN
+Ringers NNS NNP
+Winn-Dixie NNP
+interior JJ NN
+Killory NNP
+beer-runner NN
+Publisher NNP NN
+imitated VBN VBD
+loser NN JJ
+Trompe FW
+linguistics NNS
+capriciousness NN
+slams VBZ
+Enthusiast NNP
+fiesta NN
+communicating VBG NN
+incertain JJ
+Hub NNP
+resonantly RB
+Eichof NNP
+O&Y NNP NN
+Gandy NNP
+auditions NNS
+underlie VBP VB
+opprobrium NN
+Neurenschatz NNP
+bagels NNS
+Toepfer NNP
+Gouvernement NNP
+d-Percentage NN
+Bermuda-registered JJ
+Torrington NNP
+Structures NNS NNPS NNP
+newly-weds NNS
+tallow NN
+stranglehold NN
+criss-cross VBP JJ
+REPAIR NN
+hard-charging JJ NNP NN
+galls NNS
+Junid NNP
+Broad NNP JJ RB
+Admitting VBG
+hysterectomy NN
+Extending VBG
+sphere NN
+reunifed VBN
+work NN VB VBP
+slung VBD VBN
+Educational NNP JJ
+sheep NN NNS
+diverting VBG
+firebrand NN
+markdowns NNS
+description NN
+lugging VBG
+Steeves NNP
+demand NN VB VBP
+Ernst NNP
+Reston NNP
+Nobel NNP
+Contractors NNS NNPS
+Crozier NNP
+mystics NNS
+Track NNP NN
+tilted VBD VBN JJ
+McNabb NNP
+Asra NNP
+Flags NNS NNP
+Darling NNP JJ NN UH
+lard NN
+electrifying JJ
+Enrique NNP
+Grandparents NNP NNS
+Polo\/Ralph NNP
+changing VBG JJ NN
+ceteras FW
+East-West NNP JJ
+ranch NN
+Carrying VBG
+Director NNP NN
+first-amendment JJ
+yoke NN
+entrance NN
+factored VBN JJ
+Dulles NNP NNS
+Cooker NNP
+by-pass NN
+Sleepily RB
+pre-Hugo JJ
+Meditations NNPS NNS
+Rises NNP VBZ
+stopover NN
+Basho NNP
+semi-statist JJ
+Campaigning VBG
+Dobi NNP
+fatiegued JJ
+Integration NN NNP
+Pitching VBG
+OncoScint NNP
+daring JJ NN VBG
+Alstyne NNP
+K.G. NNP
+Slate NNP
+Kerner NNP
+square-foot JJ
+Winsett NNP
+On-Target NNP
+full-season JJ
+BVI-based JJ
+Sylphide NNP
+Frequent JJ
+Statistically RB
+railbike NN
+compatriot NN
+fabricate VB VBP
+Balcor NNP
+sordid JJ
+coachwork NN
+Kenney NNP
+attractiveness NN
+pre-1933 JJ
+Hurtado NNP
+thyroglobulin NN
+Thereafter RB
+Carltons NNPS
+grudging JJ
+columnists NNS
+speaker NN
+punishment NN
+nonsensical JJ
+climber NN
+Swirsky NNP
+forborne VB
+Piers NNP
+Anglo-Americans NNPS
+nonracial JJ
+Technicians NNPS NNS
+Fuji NNP NNS
+glass-container NN JJ
+disproving VBG
+Texas NNP JJ
+idiosyncratic JJ
+anti-abortionist NN
+groaned VBD
+moneymakers NNS
+Sets NNS
+Jekyll NNP
+auto-financing NN
+clots NNS
+Mass\/Amherst NNP
+difference... :
+Hokuriku NNP
+runups NNS
+fuzz NN
+Grisha-class JJ
+adjective NN
+Artur NNP
+Patten NNP
+FOREAMI NNP
+bleeps NNS
+condensed JJ VBN
+Singapore NNP
+saunter NN
+Dominican NNP JJ
+Sprint NNP
+repricing NN
+automaton NN
+Krieger NNP
+McGovern NNP
+firearms NNS
+JAS NNP
+Tadahiko NNP
+Sewanee NNP
+Aces NNS
+invoicing NN
+MAITRE'D NNP
+Equivalents NNS
+breeze NN VB
+Inju NNP
+awaye RB
+fine-feathered JJ
+skirmish NN
+Conspiracy NNP
+ADN NNP
+Staples NNP NNPS NNS
+law-and-order NN
+tulips NNS
+nymph NN
+demonstratively RB
+nine-months NNS
+furor NN
+mocking VBG JJ
+adherent JJ NN
+submarine-ball NN
+Tape NN NNP
+Gyi NNP
+CHRISTMAS NNP
+training NN VBG JJ
+CORNUCOPIA NN
+Sr. NNP
+Authorities NNS NNP
+W.H. NNP
+good-bye NN JJ UH
+Alcibiades NNP
+TransTechnology NNP
+discontent NN
+perishes VBZ
+entertainment-law NN
+polis NN
+steadiness NN
+captures VBZ NNS
+Hank NNP
+sheared JJ VBN
+identify VB VBP
+renditions NNS
+redeemin VBG
+Orville NNP
+imprecations NNS
+grove NN
+mass-audience JJ
+Grieco NNP
+attempted VBD JJ VBN
+Bleach NN
+Ratified VBN
+Sabrina NN NNP
+Carpathians NNPS
+illiteracy NN
+forebears NNS
+Clashes NNS
+delicacy NN
+anonymously RB
+REN NNP
+brokerage NN
+Filmakers NNPS
+Woodwell NNP
+Bancorp NNP
+dramatic JJ
+plant-expansion JJ
+littlest JJS
+negatively RB
+Symptomatic JJ
+Radic NNP
+yuppies NNS
+unsettled JJ VBD VBN
+Uncle NNP NN
+fossils NNS
+FOMC NNP
+refractories NNS
+Sulka NNP
+Appeals NNPS NNP NNS
+quadriceps NNS
+ABBIE NNP
+held VBN VBD JJ
+Stolichnaya NNP
+billionaires NNS
+keeper NN
+text-lookup NN
+self-extinguishing JJ
+forearms NNS
+Motoyuki NNP
+Tustin NNP
+bind NN VB VBP
+time-sensitive JJ
+Lemans NNP
+esoteric JJ
+salesgirl NN
+wards NNS
+primed VBN JJ VBD
+Pharma NNP
+Tap VB NN
+Soviet-controlled JJ
+pre-World NNP
+Tunnard NNP
+availed VBD
+FirstSouth NNP
+sang VBD FW
+Comstock NNP
+precision NN JJ
+antifreeze NN
+three-piece JJ
+POP NNP NN
+waspish JJ
+junior-senior JJ
+looser JJR
+Groundwater NNP
+restitution NN
+ironing VBG NN
+Dogberry NNP
+incredible JJ
+three-foot-wide JJ
+high-density JJ
+facaded VBN
+X NN NNP
+multimillionaire NN
+Golfers NNP
+Dubbed VBN
+sipping VBG NN
+sub NN FW
+allrightniks NNS
+hawks NNS VBZ
+adepts NNS
+python NN
+anti-extortion NN
+ALLWASTE NNP
+Duhagon NNP
+Waldensian JJ
+darkness NN
+ipso FW
+printout NN
+doorway NN
+high-profile JJ
+N.J NNP
+reception NN
+Octet NNP
+Gazeta NNP
+Killelea NNP
+Cain NNP
+computer-magazine JJ
+tulip NN
+Leverkuhn NNP
+lopsidedly RB
+Gumkowski NNP
+tablet-shattering JJ
+peseta NN
+probably RB
+loses VBZ NNS
+Theon NNP
+embodiment NN
+sleaze NN
+snickered VBD
+non-Hungarians NNPS
+sheetrock NN
+Rainer NNP
+curtailing VBG
+potboiler NN
+Glazer NNP
+appeal NN VBP VB
+Gemeinschaft FW
+Bridgetown NNP
+dropping VBG NN
+trend-followers NNS
+Bouncing NNP
+tactful JJ
+hallmarks NNS
+skew VB
+prescription NN
+atrociously RB
+hordes NNS
+stagnant JJ
+weekday NN JJ
+Typical JJ
+collapse NN VB
+knotty JJ
+Fritzsche NNP
+Chill.`` ``
+metabolic JJ
+recruit VB VBP NN
+Put VB VBD VBN JJ NN
+re-order JJ
+polyvinyl NN JJ
+property-and-casualty JJ
+pleasantries NNS
+Haagen-Dazs NNP
+flabbiness NN
+ACT NNP
+sloganeering VBG
+shutout NN
+agency NN
+Hempel NNP
+resourcefulness NN
+Horicon NNP
+frequency,`` ``
+revives VBZ
+McKnight NNP
+regret VBP NN VB
+Cuisine NNP
+fifth-best JJ
+railroad-holding JJ
+Murai NNP
+shop-by-catalog JJ
+Sheldon NNP
+faulting VBG
+higher-than-anticipated JJ
+right-angling NN
+Akademie NNP
+fanfare NN
+nonstrategic JJ
+applause-happy JJ
+uninfluenced VBN
+Alemagna NNP
+Margery NNP
+herons NNS
+lung-cancer NN
+Hohlbein NNP
+developments NNS
+visitation NN
+interrogator NN
+Hastily RB
+oppression NN
+paled VBD VB VBN
+Kofanes NNS
+incredulously RB
+relentless JJ
+glycols NNS
+Missiles NNP NNS
+Paradise NNP NN
+inheritance NN
+Walgreen NNP
+gratuity NN
+Branca NNP
+Horsehead NNP
+Balkanize VB
+maggots NNS
+variances NNS
+autograph NN VB
+markka FW NNS NN
+offending VBG
+Ferraros NNPS
+now-standard JJ
+Standardized JJ
+'Cause IN
+holdings NNS
+Payback NN
+editing\/electronic JJ
+penetrate VB VBP
+Regrets VBZ
+AEI NNP
+Moertel NNP
+Needing VBG
+ambulance NN
+Parisina NNP
+quick-to-prepare JJ
+desired VBN VBD JJ
+Conning NNP
+fast-opening JJ NN
+Mephistopheles NNP
+broadens VBZ
+Merksamer NNP
+firemen NNS
+fete VB
+Duchossois NNP
+excommunicated VBN
+forgitful JJ
+scar NN
+mosques NNS
+conducive JJ
+unwisely RB
+Revco NNP NN
+McLish NNP
+micromanagement NN
+Attitude NN
+Oprah NNP
+Colby NNP
+Schapiro NNP
+Patrolman NNP
+Stanwick NNP
+Highlander NNP
+McClelland NNP
+criticizes VBZ
+fault NN VB VBP
+disappointed VBN JJ VBD
+displayed VBN VBD
+Dreyfus NNP
+summits NNS
+Medical-instrument JJ
+GROVE NNP
+retablos FW
+vehicle NN
+limited-production JJ
+interruption NN
+speculates VBZ
+crime-fighting JJ
+fond JJ NN VB
+Pitney NNP
+delirium NN
+morbid-minded JJ
+shoots VBZ NNS
+trustfully RB
+carbamazepine NN
+inconsequential JJ
+systematizing VBG
+stringy JJ
+Manafort NNP
+Williamsburg NNP
+scrounged VBD
+Suddenly RB
+Zamislov NNP
+Lyford NNP
+.to TO
+Frustration NN
+downsize VB
+dummies NNS
+RDWS NN
+post-surgical JJ
+Bayonne NNP
+Cressidas NNPS
+pageants NNS
+Rawl NNP
+Independence NNP NN
+long-shelf-life JJ
+commendation NN
+wisely RB
+romantically RB
+colorblind JJ
+Backer NNP
+maltreatment NN
+manipulates VBZ
+Killington NNP
+railhead NN
+Guideposts NNPS NNP
+concretistic-seeming JJ
+Ptolemy NNP
+CBS\ NNP NNPS
+Comcast NNP
+Recognizing VBG
+Tuberculosis NNP
+Gatsby NNP
+impacts NNS
+Zoeller NNP
+herniated VBN
+continuance NN
+Nuovo NNP
+Guzewich NNP
+D.s NNPS NNP
+nightly JJ RB
+Paluck NNP
+sidelong JJ
+withdrawing VBG NN
+Duse NNP
+measles NN
+Feared VBN
+Sons NNP NNS NNPS
+rubbed VBD VBN
+works NNS VBZ
+besetting VBG
+Gruller NNP
+Bizerte NNP
+Revulsion NNP
+inclusions NNS
+woeful JJ
+elevators NNS
+Mondale NNP
+thwump NN
+DIED VBD
+Administration-insured JJ
+exclusively RB
+Paschi NNP
+Launched VBN
+LOSES VBZ
+conveyor NN
+U.S-based JJ
+Pericle NNP
+expecially RB
+Bruwer NNP
+bonanza NN
+maids NNS
+Sylvester NNP
+Interwoven JJ
+sardonically RB
+Melville NNP
+Seville NNP
+Protective JJ
+Abd-al-Aziz NNP
+Nkrumah NNP
+Sparkman NNP
+swipe NN VB
+Mackey NNP
+off-putting JJ
+securities'fraud NN
+surfeit NN VBP
+inclinations NNS
+Commodore NNP
+communist-led JJ
+stilted JJ
+emerged VBD VBN
+Natcher NNP
+eleventh-floor JJ
+east JJ NN RB
+dispassionate JJ
+manure NN
+Raynal NNP
+Libor NNP
+super-city NN
+all-Spanish JJ
+cervelat NN
+second-story JJ
+ritual NN
+cream NN JJ
+assaulting VBG
+Phase NN NNP
+o'er IN
+savagely RB
+illumine VB
+crack-cocaine NN
+Monagan NNP
+Embraer NNP
+Singin VBG
+stockholding VBG
+snafu NN
+flunky NN
+aboard IN RB RP
+rearing VBG NN
+low-cholesterol JJ
+fetal-tissue JJ NN
+Willing JJ
+collectability NN
+Raines NNP
+two-engine JJ
+Makwah NNP
+WestLB NNP
+Glazes NNS
+DeBat NNP
+second-highest JJ JJS
+parodied VBD
+Paynes NNPS
+Secondary JJ
+chomped VBN
+incorruptibility NN
+UNITED NNP
+Heraclitus NNP
+Hockaday NNP
+proscribes VBZ
+misalignment NN
+dove NN VBD
+thought-out JJ
+rickety JJ
+Denman NNP
+Scoring NNP
+mauling VBG
+Whigs NNPS NNS
+bull-necked JJ
+convenes VBZ
+DIALING VBG NNP
+differentiating VBG
+Durk NNP
+Richmond-Watson NNP
+Naked JJ
+Clintonville NNP
+Caesars NNP NNPS
+clot-reducing JJ
+greenish JJ
+Hounds NNPS
+Knee NN
+dirtier-running JJ
+confides VBZ
+Agnellis NNPS
+Bandler NNP
+oaths NNS
+donors NNS
+unforeseen JJ
+Annicchino NNP
+trading-related JJ
+Interfering VBG
+Grayson NNP
+Berkeley NNP NN
+slinky JJ
+Pepperdine NNP
+Mardis NNP
+surprisingly RB
+Curriculum NN
+sheer JJ NN
+secessionist NN
+eternal JJ
+faced VBN VBD
+nucleated VBN
+fat-free JJ
+Gerome NNP
+anti-LDP JJ
+concerned VBN JJ VB VBD
+anti-miscarriage JJ
+Vapor NN
+Ruthann NNP
+Eighty-three CD JJ
+Zoellick NNP
+CONSUMERS NNS
+modeling NN JJ VBG
+neuropathy NN
+Jim NNP
+Vedder NNP
+Arata NNP
+Uto-Aztecan NNP
+targets NNS VBZ
+comforting VBG JJ
+shamrock NN
+Pattern NN
+thermoelectric JJ
+Arrangements NNS
+Arseny NNP
+homeowners NNS
+Jianying NNP
+pleader NN
+wafers NNS
+chanced VBD VBN
+Hijet NNP
+Publicity NN
+six-packs NNS
+unveils VBZ
+Commune NNP
+safety-sensitive JJ
+Lind-Waldock NNP
+life-threatening JJ
+anticult NN
+tactic NN
+Inn NNP
+orzae NNS
+perversities NNS
+Well-stretched JJ
+extraterrestrial JJ
+Rockfork NNP
+Saturday NNP
+disapproval NN
+spouting VBG
+publicly-traded JJ
+transportation-equipment NN
+allows VBZ
+marries VBZ
+government-certified JJ
+protectors NNS
+unpeace NN
+uncompetitive JJ
+repayable JJ
+worm NN
+A\/S NNP
+work-out JJ NN
+Amish NNP JJ
+Eighty-five CD
+powerfulness NN
+exalted JJ VBD
+clean-top JJ
+thimble NN
+Y NNP PRP FW JJ NN
+Kreutzer NNP
+Pocket NNP
+Ville NNP
+reinsurer JJR
+end-of-the-season JJ
+Fortin NNP
+Carrion NNP
+hammering VBG NN
+unuttered JJ
+adequately RB
+pipsqueak NN
+pro-Socialist JJ
+semiarid JJ
+lowers VBZ NNS
+Nakoma NNP
+Soon RB
+green-tinted JJ
+classificatory JJ
+near-doubling NN
+manufacturing-sector NN
+Kchessinska NNP
+floodheads NNS
+betide VB
+Importers NNP
+dogmatically RB
+Tully NNP
+Yasumichi NNP
+innovativeness NN
+Hirsch NNP
+Biosciences NNP
+B.S. NNP
+pre-existence JJ
+acting VBG JJ NN
+dig VB FW NN VBP
+WORKS NNP
+trillions NNS
+suffering VBG JJ NN
+Randell NNP
+Torrid-Breeze NNP
+begat VBD
+Fending VBG
+Reproach VB
+Bureaucratic JJ
+prima-facie FW JJ
+triple-B-plus JJ NNP NN
+Moisture NN
+plutonium-handling NN
+Sarrebourg NNP
+methylglyoxal NN
+manifestos NNS
+Bentsen NNP NN
+polities NNS
+ticklish JJ
+Banking NNP VBG JJ NN
+midmorning NN
+leadership-sanctioned JJ
+tedium NN
+mirthless JJ
+bicycle-auto JJ
+yearthat NN
+plying VBG
+Papermils NNP
+Gotshal NNP
+Skydome NNP
+industry NN
+shunning VBG
+irritably RB
+Rule NNP NN
+long-time JJ
+Heinbockel NNP
+ground NN JJ VB VBD VBN
+Bachman NNP
+transduction NN
+deviated VBD VBN
+WOLFSON NNP
+face-amount JJ NN
+submitting VBG NN
+resettling VBG
+inaudible JJ
+overemphasized VBN
+Manuela NNP
+interestrate NN
+curb VB NN
+data-storage JJ NN
+stramonium NN
+finders NNS
+worst-case JJ
+romp NN VBP
+O'Gara NNP
+Evarsito NNP
+adjusting VBG NN
+IIGS NNP
+accountable JJ
+Cal NNP
+consummately RB
+Saracens NNPS
+emergence NN
+underwent VBD
+AC&R NNP
+CREAM NNP
+consideration NN
+seniority NN
+likable JJ
+Rectum NN
+beginning VBG JJ NN
+phrasemaking NN
+Rebel NN NNP
+Sex NN NNP
+Malaria NN
+Reservoir NNP
+Carpentier NNP
+Qizhen NNP
+gunners NNS
+non-state JJ
+Wolverine NNP
+Bunyan NNP
+Potlatch NNP
+Airbus NNP
+commercial-satellite-launching JJ
+rejoiced VBD
+liturgy NN
+top-selling JJ
+freely RB
+infringing VBG
+tragedians NNS
+salt NN JJ
+chimp NN
+scripture NN
+corporativists NNS
+Moulins NNP
+Basil NNP
+seamless JJ
+Leone NNP
+snatched VBD VBN
+stocks-boosted NN
+catharsis NN
+justness NN
+Ghormley NNP
+cacophony NN
+Ornstein NNP
+Zeta NNP
+countrey NN
+Brainard NNP
+redelivered VBN
+seduced VBN
+warren NN
+Trans-Pacific NNP
+Keg NNP
+truthfully RB
+buzzwords NNS
+once-mighty JJ
+Bonito NNP
+high-handed JJ
+non-competitive JJ
+mayoral JJ
+faults NNS VBZ
+self-deluded JJ
+torpedoed VBN VBD
+direct JJ VBP RB VB
+torture NN VBP VB
+anti-toxic JJ
+O'Toole NNP
+increments NNS
+prolongs VBZ
+Shuxian NNP
+Leonel NNP
+fascist JJ
+calculi NNS
+bioTechnology NNP
+harmlessness NN
+accord NN VBP RB VB
+wrongs NNS
+Bandit NN
+Moller NNP
+sumac NN
+WW NNP
+veterans NNS
+dwindling VBG
+anti-tax-shelter JJ
+Andriessen NNP
+Riesman NNP
+burgomaster NN
+Dynabook NNP
+Puccini NNP
+Bremen NNP
+metabolite NN
+benediction NN
+pro-sealed-records JJ
+Goodwin NNP
+PRA NNP
+D.K. NNP
+conscript NN JJ
+deductions NNS
+MUST-SIGN JJ
+Spirituals NNS
+Muscular NNP
+Perchdale NNP
+B.A.T... :
+most-recommended JJ
+herein RB
+metropolitanization NN
+deters VBZ
+Rogues NNPS
+subsistent JJ
+unmanaged JJ
+Jima NNP
+sequestration NN
+Original NNP JJ
+parolees NNS
+achievement-test NN
+nonworking JJ
+intermodal JJ
+functionary NN
+Wuon NNP
+carefully RB
+Bringing NNP VBG
+briefcase NN
+temptation NN
+Measurements NNS NNP
+Budlong NNP
+stunning JJ
+signposts NNS
+slap VB NN
+Tammen NNP
+Schott NNP
+Yeres NNP
+Varga NNP
+self-enclosed JJ
+Moravcsik NNP
+inlet NN
+nomadic JJ
+interglacial JJ
+Topography NN
+firepower NN
+Enzymatic JJ
+Zhang NNP
+Kloman NNP
+mumbling VBG
+seaside JJ NN
+Tri-State NNP
+scoreboards NNS
+inane JJ
+Fujis NNPS
+--Mrs NNP
+Frost NNP
+Holien NNP
+championships NNS
+Conrac NNP
+below-investment-grade JJ
+asserted VBD VBN
+slipping VBG
+Taper NNP
+Conquete NNP
+Kawasaki-Rikuso NNP
+scholar NN
+Piraro NNP
+pinching VBG NN
+Real JJ NNP RB
+AFL-CIO NNP NN
+hitting VBG NN
+revive VB VBP
+Politics-ridden JJ
+croak NN VBP
+walk-in JJ
+nondoctrinaire JJ
+smarted VBD
+disorderly JJ
+dogmas NN NNS
+tying VBG
+bloodlust NN
+'Dividend NN
+Treasurers NNS NNPS
+Rossoff NNP
+TANDEM NNP
+legislating VBG NN
+P.L. NNP NN
+Tar NNP NNS
+commensurate JJ
+Behan NNP
+once-fashionable JJ
+communication NN
+Tredici NNP
+nail NN RB VB
+regularly RB
+Crazy NNP
+Autosuggestibility NN
+Francesville NNP
+apprehensively RB
+aye RB
+self-deception NN
+blatancy NN
+Dinkins NNP
+molest VB
+alpha JJ NN
+vasodilator NN
+debasing VBG
+ready JJ RB VB
+Edythe NNP
+menaced VBN
+cuttings NNS
+Pirates NNP NNPS
+Inna NNP
+hoarding NN VBG
+differentiation NN
+foreknown VB
+canons NNS
+Salang NNP
+dipper NN
+transmitters NNS
+color-television NN
+seduzione FW
+Generics NNS
+OTS NNP
+Nov. NNP NN VB
+Hengeler NNP
+worn VBN JJ
+Aviacion NNP
+Xydis NNP
+Jin NNP
+perturbations NNS
+Speculators NNS
+mysteriously RB
+wrung VB
+delimit VB
+in-migration NN
+big-deposit JJ
+Bucknell NNP
+singled VBD VBN
+Janus NNP
+Displacement NN
+MAKERS NNS
+temples NNS
+Ali NNP
+Tuck NNP
+Keehn NNP
+Aldus NNP
+Weitzel NNP
+Rubel NNP
+mechanical JJ
+depicted VBN VBD
+tycoons NNS
+art-acquisition JJ
+all-knowing JJ
+pervasively RB
+reformism NN
+interceptors NNS
+Boseki NNP
+Orfeo NNP
+HomeFed NNP VBN
+finder NN
+tinted VBN JJ
+Richfield NNP
+Shh UH
+ingredients NNS
+predominate VBP
+president\/finance NN
+bombarding VBG
+Ameron NNP
+schooner NN
+Widen VB
+TEDs NNS
+delusions NNS
+Handsome JJ NNP
+Pamasu NNP
+satellite-transmission NN
+Hitchcock NNP
+misdeeds NNS
+blunders NNS
+fading VBG JJ NN
+Tucked VBN
+foreign-equity NN
+buyouts NNS
+partisan JJ NN
+Zoo NNP
+dating VBG NN
+Rubeli NNP
+Shelby NNP
+JACKPOT NNP
+Telelawyer NNP
+second-leading JJ
+ward-personnel NNS
+haberdasheries NNS
+adsorbed VBN
+Transmanche-Link NNP
+pigeonhole NN
+Adam NNP
+diversions NNS
+Gainen NNP
+telesystems NNS
+slump NN VBP VB
+skills NNS
+Mask NNP
+Pirate NNP
+price-corroding JJ
+security NN
+Ehrman NNP
+Rickards NNP
+Atlantans NNPS
+rigidly RB
+Scotty NNP NN
+Keteyian NNP
+russet-colored JJ
+temple NN
+outfly VB
+opining VBG
+tell VB VBP
+wheedled VBN
+Chosen NNP
+parakeets NNS
+greenness NN
+dizzily RB
+claims-processing NN
+Hue NN
+fractious JJ
+tintable JJ
+wrap VB NN VBP
+lucrative JJ
+Bake-off NNP
+punching VBG NN
+Z NNP NN
+Richmond-area JJ
+errors NNS
+electrician NN
+quarterly JJ NN RB
+coyote NN
+pleasingly RB
+electronic-communications NNS
+Break NN VB NNP
+BILL NN
+mediators NNS
+one-word JJ
+buglike JJ
+Occasionally RB
+escalators NNS
+pinto NN
+Grudges NNS
+pictured VBN VBD
+grow VB VBP
+Saalfeld NNP
+R.D. NNP
+baby-products JJ
+fiery JJ
+landing NN VBG
+Beggiato NNP
+owes VBZ
+HLR NNP
+Trud NNP
+minds NNS
+Lugar NNP
+boodleoo UH
+Colony NNP NN
+menu NN
+metabolism NN
+reputed VBN JJ
+Marcor NNP
+Cam NNP
+unexpended VBN JJ
+coyotes NNS
+compelled VBN VBD JJ
+vocation NN
+Criticisms NNP
+witty JJ
+Injection NNP NN
+memory-picture NN
+contributing VBG JJ
+self-explanatory JJ
+Gerolamo NNP
+Zhao NNP
+Prosser NNP
+McGuire NNP
+Stenton NNP
+AMRO NNP
+Cromwellian JJ
+pennant NN
+triumphed VBD VBN
+BECOME VB
+hodge-podge NN
+tabling VBG JJ NN
+Parents NNS NNP NNPS
+Chronicles NNP NNS
+Invite NNP VB
+eave NN
+Falls NNP VBZ NNPS
+Hann NNP
+first-section JJ
+limited JJ VBD VBN
+overalls NNS
+Auerbach NNP
+Effectively RB
+Anglicanism NN
+capital-boosting JJ
+action-results NNS
+snake-like JJ
+Harrold NNP
+telefax NN
+international-leasing JJ
+non-Alternative NNP
+British-French-Israeli JJ
+roof NN
+m.p.h NN RB
+Elemental JJ
+unclothed JJ
+.054 CD
+blackness NN
+impoverishment NN
+ELECTIONS NNS
+Mastergate NNP NN
+Seiyu NNP
+Tampa. NNP
+downgrade NN VB
+primary-color JJ
+year-round JJ RB
+practicability NN
+B.C.-based JJ
+Appointment NN NNP
+stretched VBD JJ VBN
+Regulars NNS
+anlayst NN
+African-controlled JJ
+opening-day NN
+indexers NNS
+compels VBZ
+women-trodden JJ
+Improvement NNP NN
+primitives NNS
+ill-fated JJ
+resort NN VBP VB
+Kuraray NNP NN
+conjuring VBG
+experimenter NN
+userfriendly JJ
+READY NNP JJ
+consciousness-raising NN
+revisits VBZ
+solicits VBZ
+Conrad NNP
+Gorshek NNP
+stupendous JJ
+anyone NN
+eye-gouging NN
+Jager NNP
+goddamned JJ
+Tigris NNP
+sheet NN
+chain... :
+saddened JJ VBN
+Curacao NNP
+forbidding VBG JJ
+beer-belly NN
+individual-retirement-account NN
+befuddles VBZ
+paid-for IN
+Siad NNP
+Resins NNPS
+grandiloquent JJ
+Chicken NNP NN
+emulating VBG
+slithered VBD
+disbanding VBG NN
+trade-allocating NN
+twin-deficit NN
+IMREG NNP
+buckboards NNS
+Smithson NNP
+lineages NNS
+Amharas NNPS
+Sic FW
+hereabout JJ
+creditably RB
+Stearn NNP
+aged VBN JJ NNS VBD
+cease-and-desist JJ NN
+cliches NNS
+Permission NN
+wrinkle NN
+d'you VBP
+three-digit JJ
+pour VB FW IN VBP
+long-deprived JJ
+fiefdom NN
+McCraw NNP
+packet NN
+peddler NN
+Judgments NNS
+Ruston NNP
+Granther NNP
+Laphroaig NNP
+Hannam NNP
+laps NNS VBZ
+repetitious JJ
+Euclid NNP
+excused VBN VBD
+Kuehn NNP
+unrewarding JJ
+greeted VBD VBN
+Cylinder NN
+Epps NNP
+falsification NN
+owner-bred JJ
+impatiens NNS
+GALAXY NN
+Utter NNP
+cactus NN
+Cavalier NNP
+wrongdoer NN
+Indianapolis NNP NNS
+nigras NNS
+symptoms NNS
+Pomton NNP
+Mumford NNP
+ceramics NNS
+Halfway RB
+Perot NNP
+President NNP NN
+Pioneers NNPS NNS
+local-exchange JJ
+Husbandry NN
+Nouvelle NNP
+Barberis NNP
+Nachmany NNP
+Intercity JJ
+bluffs NNS
+Wyden NNP
+Santovenia NNP
+short-staffed JJ
+pearly JJ
+Weep VB NNP
+quill NN
+gynecologist NN
+mega-resort NN
+entrusted VBN
+cod NN
+dairy-oh NN
+sentinels NNS
+oil-price NN JJ
+Karel NNP
+Hussman NNP
+re-sharpening NN
+stallion NN
+Rodding NN
+Hanks NNP
+scale-down JJ
+Bet NNP
+bags NNS VBZ
+Adelia NNP
+woodland JJ
+question... :
+Relentlessly RB
+Marseillaise NNP
+modernize VB
+animal-like JJ
+Pulova NNP
+alliterative JJ
+Budgetary NNP
+discontinuation NN
+Brawls NNS
+large JJ RB
+McCann-Erickson NNP
+nondurable JJ
+paved JJ VBD VBN
+Bois NNP
+IRAs NNS NNPS NNP NN
+Tribou NNP
+comico-romantico JJ
+distraction NN
+PABA NN
+noise NN
+seafarers NNS
+Steinbecks NNPS
+Collischon NNP
+theoriticians NNS
+Tagalog NNP
+Current JJ NNP
+disrobe VB
+Savageau NNP
+dwarfs VBZ NNS
+scheduling NN VBG
+earphone NN
+distributions NNS
+Reama NNP
+Nogaret NNP
+O'Connor NNP
+trusses NNS
+tack-solder VB
+covetousness NN
+hatted VBN
+Fifth NNP JJ
+Toxicology NNP
+forefingers NNS
+pro-market JJ
+Attilio NNP
+Treece NNP
+discoverer NN
+ex-Attorney NNP
+tire-makers NNS
+post-Inaugural JJ
+trimester NN
+denominators NNS
+bottom-living JJ
+credited VBN VBD
+interim JJ NN
+because IN RB
+sandpaper NN
+sue VB VBP
+fidelity NN
+staminate JJ
+Lieb NNP
+Costs NNS
+interbreeding VBG
+Berlack NNP
+Figaro NNP FW
+N.M NNP
+infuriated VBD VBN
+reinstatement NN
+authorization NN
+pier NN
+SSMC NNP
+AAb NNP
+Cinq NNP
+pink-sheet JJ
+halter NN
+spectacularly RB
+Considerable JJ
+Reasons NNS
+race-drivers NNS
+critter NN
+Lab NNP NN
+Bedtime NN
+Yank-oriented JJ
+West... :
+telescopic JJ
+heavy-water NN
+tithes NNS
+NYU NNP
+conscripted VBN
+Liaisons NNS
+emeralds NNS
+bull-sessions NNS
+one-reel JJ
+displeased VBN JJ
+genius NN
+Paced VBN
+Dolphins NNPS
+faculties NNS
+Theoretical JJ NNP
+exalt VBP VB
+Manners NNP NNS
+Basin NNP
+extremis FW
+advancer NN
+matchmaking NN
+Leong NNP
+Gossiping NNP
+Watrous NNP
+curd NN
+brocaded JJ
+father-brother NN
+Benz NNP
+alkaloids NNS
+nullified VBN VBD
+unmet JJ
+rally NN VBP VB
+Kyo-zan NN
+urinary-tract NN
+Marcos NNP
+agriculteurs FW
+swipes VBZ
+Instrument NNP
+Mindanao NNP
+personages NNS
+Wonham NNP
+meetings NNS
+hedged VBN VBD
+Elsevier NNP
+stacked VBN VBD
+turbinates NNS
+hoped VBD VBN
+self-consciously RB JJ
+Ehrlich NNP
+resales NNS
+legal-lending JJ
+shuttled VBD VBN
+sigue FW
+overhand JJ NN
+Liberated VBN NNP
+Zambrano NNP
+subversion NN
+recaptured VBN
+rheumatoid JJ
+Singletary NNP
+higher-octane JJ
+True JJ NNP RB UH
+anti-androgens NNS
+POST-TRIAL NNP
+skid NN VB VBD
+RDW NN
+Driskill NNP
+Shugart NNP
+five-month-old JJ
+double-B-minus NN
+Proprietary NNP
+stew NN VB
+Petro-Canada NNP
+Rosalyn NNP
+oil-consuming JJ
+Mouvement NNP
+line-density NN
+motet NN
+Power-generation JJ
+impatient JJ NN
+Hobson NNP
+dots NNS
+newspaper-industry JJ
+diem FW NN
+martini NN
+AlunJones NNP
+much-lauded JJ
+guitarist NN
+Orchestration NNP
+theme NN
+instructors NNS
+Kingsville NNP
+Manoplax NNP
+traitors NNS
+compatability NN
+DataPlan NNP
+out-dated JJ
+Co-author NN
+Can MD NNP
+preconscious JJ
+godliness NN
+assays NNS
+Kingdome NNP
+flint NN
+conventionalized VBN
+quasi-religious JJ
+peddles VBZ
+binds VBZ
+Sez NNP
+Hanover-Misty NNP
+inviting VBG JJ
+misled VBD VBN
+AGA NNP
+Marr NNP
+Yehhh UH
+success... :
+C.C.N.Y. NNP
+hard-to-fill JJ
+offends VBZ
+[ (
+home-computer NN
+antiSony JJ
+shaggy JJ
+dialyzed VBN VBD
+kettle NN
+credit-data NN|NNS
+--complicated IN
+gulag NN
+voided VBD VBN
+One-year NNP JJ
+Weitzen NNP
+seahorse NN
+sank VBD
+Carolus NNP
+insinuate VB
+flooding VBG NN
+Bordeaux NNP
+Limit VB NNP NN
+site NN
+reasearch NN
+porpoises NNS
+confederates NNS
+white-suited JJ
+thrusting VBG NN
+racehorses NNS
+Mobutu NNP
+Schwarz NNP
+lawsuits NNS
+troubles NNS VBZ
+floating-load JJ
+outsider NN
+Freund NNP
+president-U.S. NN
+counseled VBN VBD
+building-materials NNS
+confession NN
+bailouts NNS
+infectious JJ
+artillery NN
+creams NNS
+die-hards NNS
+GSI NNP
+Surveillance NN
+Mass.-based JJ NNP
+Adame NNP
+Westmoreland NNP
+self-pitying JJ
+slow-baked JJ
+toughening VBG
+Sevin NN
+Persuasion NN
+geranium NN
+Ametek NNP
+keynotes NNS
+arms-kickback NN
+met VBD VBN
+twist NN VBP VB
+Hospital-Cornell NNP
+bagged VBD JJ
+a-stoopin VBG
+Oskar NNP
+heelers NNS
+millages NNS
+preconceived JJ
+PRC NNP
+ethylene NN
+Linguists NNS
+snags NNS
+Chappell NNP
+readmit VB
+surpassed VBN VBD
+Ruffel NNP
+straw NN JJ
+Vincent NNP
+Sid NNP
+resorts NNS VBZ
+perks NNS
+Importance NN
+overtly RB
+famed JJ VBN
+advances NNS VBZ
+corporation-socialist JJ
+Confrontation NN
+roundhead NN JJ
+Gripen NNP
+Nolen NNP
+Headly NNP
+directors NNS
+Nalbone NNP
+ADR NNP
+Nationalism NN
+historians NNS
+unshaved JJ
+corrections NNS
+Willingness NN
+Judging VBG NNP NN
+reconstructing VBG
+Indexed JJ
+origin NN
+Maloof NNP
+Target NNP NN
+six-time JJ
+realistic JJ
+d'Yquem NNP
+reaccelerate VB
+snafus NNS
+presenting VBG
+frontend NN
+Mid-America NNP
+cropped VBD VBN
+Solving VBG
+waterskiing NN
+combining VBG
+safe-sounding JJ
+orthography NN
+sufficiently RB
+transferors NNS
+lawfully RB
+speech-making NN
+recombinant-DNA NN
+Cockburn NNP
+stipulations NNS
+SCHWARTZ NNP
+complicating VBG
+employee-stock JJ
+unfaithful JJ
+Caspar NNP
+or'fortress NN
+middle-of-the-road JJ
+spill NN VB VBP
+Kingstown NNP
+after-effects NNS
+harmless JJ
+Sithe NNP
+sanitarium NN
+espoused VBD VBN
+Affirmatively RB
+samplers NNS
+'s POS IN NNPS NNP NNS PRP VBP VBZ
+huts NNS
+Golden NNP JJ
+lodging NN VBG
+Rectifier NNP
+Braye NNP
+consolidate VB VBP
+Ostentatious JJ
+Dresbach NNP
+plugging VBG NN
+distresses NNS VBZ
+presages VBZ
+minors NNS
+immature JJ
+cloud-flecked JJ
+Englishwoman NNP
+lyricism NN
+ground-swell NN
+magazine NN
+advisement NN
+translucency NN
+rest NN VBP VB|NN RB VB
+pies NNS
+Threadgill NNP
+DM5,000 CD
+Zero NN
+Whipsnade NNP
+oversaturating VBG
+misunderstandings NNS
+center-aisle NN
+roving VBG
+deflating VBG
+Tito NNP
+Hayes NNP
+fight NN VB VBP
+wonderingly RB
+basileis NNS
+Pharmaceuticals NNP NNS NNPS
+clotting VBG
+playwright-director NN
+Katzenstein NNP
+Stoyer NNP
+adulterate VB
+persecuting VBG
+Vacuum NNP NN
+Hirohito NNP
+Rests VBZ
+piping NN
+non-subsidized JJ
+saucer NN
+preparation NN
+sanctimonious JJ
+Burdens NNS
+cure NN VBP VB
+intransigents NNS
+Alcott NNP
+frequents VBZ
+coverts NNS
+Softener NN
+gospel NN
+Duluth NNP
+non-college JJ
+accompanying VBG JJ
+lender NN
+Lac NNP
+Patti NNP
+tax-credit NN
+amethystine JJ
+Larisa NNP
+Doubts NNS
+videocassettes NNS
+twiddling VBG
+handful NN
+anatomicals NNS
+I.P. NNP
+coal-miners NNS
+cushioning NN VBG
+Archer NNP
+Diplomatic JJ
+amino JJ
+Unanimously RB
+Enright NNP
+Dairy NNP NN
+chemists NNS
+slogans NNS
+relating VBG
+Carnarvon NNP
+mitral JJ
+dispatchers NNS
+Playtex NNP
+health-services JJ
+pollinating VBG
+well-braced JJ
+Prodded VBN
+dart-throwing NN
+buzzsaw NN
+Exhibit NN
+overbought VBN JJ NN
+costuming NN
+segmental JJ
+Jacuzzi NNP NN
+Djakarta NNP
+Comvik NNP
+Rotary NNP
+straight-A JJ
+Winfrey NNP
+wonderfulness NN
+hostler NN
+Torbjoern NNP
+gangland NN
+management NN
+memorized VBN VBD
+Goliath NNP
+fretted VBD
+Premiere NNP
+stake-out NN
+weaponry NN
+azaleas NNS
+Interagency NNP
+granting VBG NN
+conventions NNS
+Ecclesiastical NNP
+non-realistic JJ
+long-held JJ
+previously RB
+Opaque JJ
+lingerie NN
+Kueneke NNP
+three-hundred-foot JJ
+Stoic-patristic JJ
+Gazettes NNP
+Coltsman NN
+lengthen VB VBP
+alligator NN
+Neinas NNP
+Rabies NN
+Aiden NNP
+Gargle NNP
+A-330s NNS
+hydrochemistry NN
+I.M.F. NNP
+resumed VBD VBN
+Berlaymont NNP
+Affairs NNP NNPS
+grand-prize NN
+Shigeru NNP
+Nourbakhsh NNP
+total-cost JJ
+Coherent NNP
+Stearns NNP NNPS
+prejudice NN VB
+PERKS NNS
+consulate NN
+framing NN VBG
+abstractedness NN
+hand-sized JJ
+life-health NN
+group NN VB VBP
+Lewinton NNP
+verities NNS
+IGS NNP
+Wimbledon NNP
+theorem NN
+glassy JJ
+gay-student JJ
+Mars NNP
+Catch-22 NN
+Shales NNP
+business.... :
+Factor-VIII NNP
+LIBERTY NNP
+Sailing NNP NN
+roadbuilding NN
+Municipal JJ NNP NN
+USED VBD
+authorized VBN VBN|JJ VBD JJ
+Gets VBZ NNP
+touchy JJ
+four-megabit JJ
+gigantic JJ
+reputations NNS
+advocating VBG
+wares NNS
+socio-archaeological JJ
+Carry NNP
+wide JJ RB
+pollen NN
+uttering VBG
+higher-quality JJ NN
+solecism NN
+butted VBN
+poetically RB
+Ziebarth NNP
+tending VBG NN
+Direct-mail JJ
+Ti NNP
+dishonored VBN
+Under IN NNP
+skating VBG
+jabberings NNS
+U.LLO NNP
+Greedily RB
+repute NN
+RFM NNP
+holdin VBG
+sorrows NNS
+blue-ribbon JJ
+rekindles VBZ
+makeshifts NNS
+packets NNS
+tulle NN
+prep JJ NN
+girl NN
+Sorrow NNP
+Stuart-family NN
+interaxial JJ
+ENTERPRISES NNP
+immune JJ NN
+exhausted VBN VBD
+Twelve CD NNP
+feud NN
+maggoty JJ
+toes NNS
+dental JJ NN
+dentists NNS
+Winds NNP
+limited-growth NN
+ANDERSEN NNP
+Loud JJ NNP
+unfazed VBN JJ
+aconte NN
+quip NN
+SCA NNP
+Karen NNP
+pout NN
+territories NNS
+sewerage NN
+holding VBG JJ NN
+EASTERN NNP
+shoes NNS
+ex-mayor NN
+Bleus NNP
+Teenage NNP
+thundered VBD
+seasonings NNS
+slant NN VB
+Farwell NNP
+unequalled JJ
+Torch NNP
+plausible JJ NN
+'fore IN
+market:8.40 CD
+brush NN JJ VB VBP
+bumping VBG
+postponements NNS
+Euro-TV NNP
+deferents NNS
+Arnell\/Bickford NNP
+blotted VBD VBN
+Quakers NNS NNPS
+pageant NN
+unheard JJ
+terrible JJ
+Haigler NNP
+Tappets NNS
+Capping VBG
+one-term JJ
+hopped VBD
+FIGHT NNP
+Hesburgh NNP
+Abuse NNP
+Math NNP NN
+sporadic JJ
+Osipenko NNP
+Asia\ JJ
+air-conditioning NN JJ
+stockbrokerage NN
+double-decker JJ
+terminate VB VBP
+inside-the-beltway NN
+hangs VBZ
+booby-trap NN
+budget-making JJ
+gurus NNS
+Walkin NNP
+bureacratic JJ
+braids NNS
+Yass NNP
+Alvise NNP
+sketching VBG NN
+hitch NN
+cosmetology NN
+communicated VBN VBD
+discovering VBG
+themed VBN
+production-ceiling NN
+Wrath NN NNP
+Harbour NNP
+Bold NNP
+thermistor NN
+northerners NNS
+Regulators NNS
+riflemen-rangers NNS
+high-horsepower JJ
+Hewlett-Packard NNP
+burlesques NNS
+glutaric JJ
+index-related JJ
+flageolet NN
+slums NNS
+gang NN VB
+GM-Jaguar JJ NNP
+WORK VBP
+confining VBG
+pleura NNS NN
+Kezar NNP
+Slender JJ
+vicar NN
+Coliseum NNP NN
+wick NN
+Salzman NNP
+Sie FW
+Weems NNP
+Swanson NNP
+lamented VBD
+Staffers NNS
+catalyst NN
+Baron NNP
+GM-10 NN NNP
+Tagliabue NNP
+artificial JJ NN
+contrasted VBN VBD
+comprises VBZ
+overstaff VB
+mind-boggling JJ
+budget-priced JJ
+thirty-fourth JJ
+conferees NNS
+ADS NNPS NN NNS
+Devitt NNP
+Adultery NNP
+spirals NNS
+appear VB VBP
+Berliners NNP
+Amca NNP
+parole NN JJ
+WNYC NNP
+Brean NNP
+fat-substitute JJ
+postings NNS
+payroll-tax NN
+Cattle NNS NNP
+vice-chairman NN
+W.I. NNP
+Motive NN
+ventilates VBZ
+guardhouse NN
+sauces NNS
+Naphta NNP
+light-wave JJ NN
+fantasist NN
+re-educate VB
+coccidioidomycosis NN
+Lied NNP
+Truck NNP NN
+drudgery NN
+manhood NN
+Barclays NNP NNPS
+ago. RB
+Tactics NNS
+misinformation NN
+case-history NN
+boatswain NN
+divisions NNS
+calorimetric JJ
+frangipani NNS
+regenerate VB
+credentials NNS
+sunbleached VBN
+possemen NNS
+notarized VBN
+flocculated VBN
+numismatic JJ
+involutions NNS
+government-run JJ
+plagiarized VBN
+Ozagen NNP
+Served VBN
+facilites NNS
+aquisition NN
+Outreach NNP
+Cliff NNP
+Strings NNPS NNP NNS
+Columbia NNP
+clout NN
+eats VBZ
+stockpiled VBN
+family-community NN
+Tripe NNP
+duopoly RB
+Opportunities NNS NNP NNPS
+sundown NN
+compellingly RB
+regulated VBN JJ VBD
+Tooth NN
+galactic JJ
+biomedical JJ
+shuddered VBD
+Widsith NNP
+GROUP NNP NN
+luncheon-table JJ
+Nov.30 CD
+iodine NN
+Yield NNP NN
+Tegretol NNP
+ferocious JJ
+Forgiveness NN
+Zolo NNP
+Tau NNP
+Fauntleroy NNP
+communize VB
+erstwhile JJ
+Careful JJ
+Ruiz NNP
+weasling VBG
+pebble NN
+lockhold NN
+facilities NNS
+indexer NN
+languishes VBZ
+commuters NNS
+Gollust NNP
+non-scheduled JJ
+Mon-Fay NNP
+overconfident JJ
+Greenwood NNP
+mosquitoes NNS
+Adamec NNP
+overhang NN
+staved VBN
+clerical JJ NN
+GRP NNP
+Pioneer NNP
+flabbergasted JJ VBN
+breathlessly RB
+demeanor NN
+driers NNS
+paper-pushing JJ
+senior-graduate NN
+converage NN
+sequestered VBN
+acidly RB
+Sensibility NN
+austerely RB
+Acey NNP
+visceral JJ
+lucy NN
+idiocy NN
+periwinkles NNS
+intellectual JJ NN
+punctuated VBN
+Dodd NNP
+unambiguously RB
+Delwin NNP
+All DT RB NNP PDT NNS|DT
+coattails NNS
+p53 NN CD
+chartered JJ JJ|VBN VBD VBN
+Ramble NNP
+Bristol NNP
+lammed VBD
+demonstrators NNS
+Prepulsid NN
+tunelessly RB
+less-intrusive JJ
+INTEREST NN
+Vitus NNP
+buried VBN JJ VBD
+wobbly JJ
+eight-team JJ
+Montserrat NNP
+GTE NNP
+ksu'u'peli'afo VB
+definitely RB
+l'Assistance NNP
+one-by-one JJ
+Linville NNP
+To'read VB
+Merce NNP
+provincial JJ
+Each DT
+V-6-equipped JJ
+Ratcliffe NNP
+Fuld NNP
+exorcisms NNS
+tend VBP VB
+craze NN
+Czechoslovaks NNPS
+Pacific NNP JJ
+markdown NN JJ
+PENNEY NNP
+Perlman NNP
+Stockholm NNP NN
+Scientech NNP
+easy JJ RB
+HELD VBD
+Ana NNP
+Maffei NNP
+Skies NNPS
+Softer-than-expected JJ
+sampler NN
+Mart NNP
+calculate VB VBP
+predisposing VBG
+dollar-convertible JJ
+pilot-management JJ
+darts NN NNS
+Riverfront NNP
+Ashamed JJ
+VISystems NNPS
+nested VBN VBD
+indicators NNS
+corporate-bond JJ
+AP-Dow NNP
+margining VBG
+Dakin NNP
+Llosa NNP
+Packers NNP NNPS
+inheritor NN
+large-package JJ
+accumulated VBN JJ VBD
+Gaubert NNP
+Fascism NNP NN
+meanings NNS
+Schelling NNP
+TIGRs NNP
+Kredietbank NNP
+hemorrhoids NNS
+svelte JJ
+Lobbyists NNS
+Volland NNP
+slat NN
+seven CD
+demurrer NN
+Worse JJR RBR|JJR JJ JJR|RBR NNP RBR
+gals NNS
+stray JJ NN VB VBP
+clear-eyed JJ
+Denmark NNP NN
+So RB NNP CC IN UH
+case-hardened JJ
+restates VBZ
+belies VBZ
+spy-plane NN
+Penrose NNP
+mousetrap NN
+Alger NNP
+hallmark NN
+teenagers NNS
+Richman NNP
+curtain-raiser NN
+price-jolting JJ
+hawking VBG NN
+thyroxine NN
+Fenway NNP
+leadings NNS
+potable JJ
+binge NN
+Walking VBG
+Vidal NNP
+Cargill NNP
+Mahzeer NNP
+benchmarks NNS
+absolution NN
+Kimmell NNP
+impractical JJ
+funeral-accessories NNS
+import-screening NN
+Gretchen NNP
+BBB NNP
+fired VBN VBD
+Kimbrough NNP
+Un-American NNP
+whiff NN
+Could MD
+Cap NNP VB
+Wider JJR
+References NNS
+Duro-Test NNP
+Rafter NNP
+dryer NN
+pungency NN
+deficit-inflation-capital-flight JJ
+Hartselle NNP
+vipers NNS
+Takako NNP
+desegregation NN
+furnishes VBZ
+in-migrants NNS
+short-of-war JJ
+pliable JJ
+Rockabye NNP
+OS\ NNP NN
+Cuyler NNP
+hunky-dory JJ
+III NNP CD
+ridiculous JJ
+Nghe NNP
+meteorology NN
+food NN
+Ferranti-led JJ
+optimum JJ NN
+lately RB
+Shep NNP
+Simonds-Gooding NNP
+retail-based JJ
+AIDS-related JJ
+blindly RB
+unambiguous JJ
+pseudonym NN
+newsgathering NN
+correcting VBG NN
+flouting NN VBG
+sophomores NNS
+keyed VBN JJ
+octave JJ
+Inability NN
+meanly RB
+Rainey NNP
+Tylan NNP
+synopsis NN
+philantrophy NN
+disenfranchisement NN
+PPP NNP NN
+aborting VBG
+Yahwe NNP
+Felsenthal NNP
+poark NN
+Gostomski NNP
+Spycatcher NN
+Nomura NNP NN
+Bio-Dynamic NNP
+fluid-filled JJ
+inappropriately RB
+Rather RB NNP
+Sentra NNP
+courtliness NN
+Kedzie NNP
+trillion CD
+fetes NNS
+coal NN
+gowns NNS
+WHOOPS NNP
+acquisition-minded JJ
+Coffey NNP
+space NN VB
+Gerhard NNP
+noontime NN
+nightingales NNS
+Zeidner NNP
+pastoral JJ
+pints NNS
+mutual-aid JJ
+Trupins NNPS
+then-husband NN
+Nakagawa NNP
+antidote NN
+scars NNS
+goddammit UH
+despises VBZ
+Yankee NNP JJ NN
+astringency NN
+reshuffle NN VB
+monkey-gland NN
+miserably RB
+freeholders NNS
+lark NN
+volatilization NN
+Cookie NNP
+endeared VBD VBN
+exasperating VBG JJ
+primordial JJ
+pinafores NNS
+Curie-Weiss NNP
+indexes NNS
+triple-A\ JJ
+professional JJ NN
+payments NNS
+Branch NNP NN
+white-squire NN
+square NN JJ RB VB VBP
+Connections NNS NNP
+Stick NNP VB
+bad-news JJ NN
+Kolber NNP
+Sprizzo NNP
+story NN
+doles VBZ
+Holies NNPS
+Bolovens NNP
+seven-day JJ
+furious JJ
+salable JJ
+flourishes NNS VBZ
+transferral JJ
+extension NN
+getting VBG
+reconstruction NN
+Uxbridge NNP
+sec. NN NNS
+Beneath IN
+markups NNS
+CONVICTION NN
+Albuquerque NNP
+pollen-inhibiting JJ
+Dingy-looking JJ
+ADT NNP
+sarcolemmal JJ
+contribution NN
+nicely RB
+] )
+non-violence NN JJ
+breathtaking JJ
+Medellin NNP
+Inflationary JJ
+oxaloacetic JJ
+Rotorex NNP
+imprint VB NN
+Basing VBG
+glisten NN VB VBP
+chuck NN VB
+mediator NN
+coupon NN
+Keen NNP
+wad NN VB
+Caverns NNP
+Moiseyev NNP
+pistol-whipped VBD
+forego VB VBP
+outfield NN
+Horror NNP
+Outlet NNP
+Swartz NNP
+sensing VBG NN
+coca NN
+Flake NN
+Allure NN
+memoranda NNS
+coverup NN
+Onidi NNP
+Wherefore NN IN
+Yun NNP
+Nusbaum NNP
+summertime NN
+MORTGAGE NNP NN
+certify VB
+Cuauhtemoc NNP
+routinely RB
+Netsch NNP
+stratified JJ VBN
+cog NN
+Secord NNP
+Judgment NNP
+A-body JJ
+half-industrial JJ
+anarchist NN
+Pramual NNP
+clenched JJ VBD VBN
+COMMERCIAL JJ NNP NN
+Reuven NNP
+Erasing VBG
+company-arranged JJ
+cut-glass JJ
+Bew NNP
+obtain VB VBP
+Takeovers NNS NNPS
+Thieves NNS
+Archuleta NNP
+Brahmsian JJ
+Planning NNP NN
+Oxley NNP
+aeon NN
+attainments NNS
+Pursuit NN
+cough NN VB
+samples NNS VBZ
+fourteen-nation NN
+oaken JJ
+Innovative JJ
+reformist NN JJ
+Messerschmitt-Bolkow NNP
+antibody NN
+dialed VBD VBN
+STET NNP
+stableman NN
+transcends VBZ
+Sony NNP
+mushroom-processing JJ
+Swiss JJ NNP NNS NNPS
+Chaplain NNP
+Helton NNP
+'most IN
+relapsed VBD
+Nationalist JJ NNP
+wind-velocity NN
+Commandeering VBG
+cloture NN
+semiquantitative JJ
+miner NN
+scientifically RB
+Renewal NNP
+now-dismembered JJ
+Hodson NNP
+Milken NNP
+mammoths NNS
+brouhaha NN
+upturns NNS
+leveraged-buy-out JJ NN
+Shitts NNP
+republican JJ
+Arbitrage-related JJ
+lowest JJS JJ
+avidity NN
+majoring VBG
+Bearden NNP
+illustrative JJ
+Grounds NNPS NNP
+Hachuel NNP
+directorship NN
+Heard NNP VBN
+Poussin NNP
+guidebook NN
+Allocation NN
+P&C NNP
+runner-up NN
+Single NNP
+godamit VB
+sectorial JJ
+Zone NNP NN
+Yizi NNP
+Quick-Wate NNP
+There EX NN RB UH
+Earth-week NN
+Moise NNP
+EAST NNP NNS JJ
+Dinosaur NNP
+plaintiff NN
+Pensive JJ
+question-and-answer JJ
+Draconian JJ
+police-community JJ
+Osis NNP
+off-season NN
+Mellon NNP
+Reform NNP NN
+Gaines NNP
+kitchen-table JJ
+gullet NN
+anagram NN
+Catinari NNP
+deficit NN
+Epicurus NNP
+Phenix-Transmission NNP
+half-educated JJ
+late-1988 JJ
+stringent JJ
+metronome NN
+shores NNS
+braised VBN
+Zabel NNP
+wall-flowers NNS
+lapse NN VB VBP
+gold-convertible JJ
+computations NNS
+shaping VBG NN
+pre-registered VBN JJ
+requirement NN
+nap NN VBP
+losses NNS
+potty NN
+Washington NNP
+Distant JJ
+motives NNS
+male-dominated JJ
+dampness NN
+waste-storage NN
+tax-cut JJ NN
+Lescaze NNP
+three-quarters NNS NN
+isothermal JJ
+Annamorena NNP
+endotoxins NNS
+pace NN VB VBP
+child-development NN
+Astrodome NNP
+delisted VBN VBD
+mimicked VBN
+Wrangham NNP
+racetracks NNS
+faulty JJ
+electroluminescence NN
+Danzig NNP
+clobbered VBN VBD
+labor-based JJ
+Tara NNP
+ficials NNS
+resorting VBG
+Francisco-based JJ
+overexpansion NN
+Times-Stock NNP
+Modrall NNP
+.105 CD
+Gellert NNP
+Eastchester NNP
+Midway NNP RB
+comprise VBP VB
+fondly RB
+Berliner NNP
+Soviet-American JJ
+Dock NNP
+division NN
+monopolization NN
+Inspired VBN
+Communists NNPS NNP NNS
+Chicagoans NNPS NNS
+Gatlinburg NNP
+Reber NNP
+Berg NNP
+unreassuringly RB
+Halfback NNP
+Bolingbroke NNP
+Rob NNP
+tightest-fitting JJS
+easy-to-reach JJ
+ideologically RB
+razor-sharp JJ
+innovators NNS
+socio-economic JJ NN
+legislation NN
+collections NNS
+Longer JJR
+Natchez NNP
+Adler NNP
+Adm. NNP
+non-gasoline JJ
+SAN NNP
+Basir NNP
+healthful JJ
+software-industry JJ
+quotations NNS
+lacerate VB
+Lobbyist NN
+duress NN
+racing VBG JJ NN
+water-soluble JJ
+Forebearing NNP
+Beers NNP
+pitchfork NN
+BBC NNP
+slick-headed JJ
+speculative JJ
+Throughout IN
+end-of-year JJ
+Malaysian-based JJ
+digitizes VBZ
+Acid JJ
+Marra NNP
+Sp NNP
+overindebtedness NN
+underappreciated JJ
+somersault NN
+apricot NN
+Branford NNP
+cups NNS
+robbing VBG
+product-swap NN
+Yocam NNP
+subsystems NNS
+Nightmare NNP NN
+ASPIS FW
+wishes.. NN
+international-share JJ
+Jibril NNP
+lodgment NN
+Jill NNP
+smaller-size JJ
+Horten NNP
+Chinese-American-Canadian JJ
+sub-human JJ
+cents-a-share JJ
+CABBAGE NN
+explanations NNS
+Lighthouse NNP
+Merritt-Chapman NNP
+Instead RB IN
+presided VBD VBN
+full-time JJ RB
+year... :
+Impressionism NN NNP
+eschews VBZ
+detest VBP VB
+DiMaggio NNP
+Sentor NNP
+brute NN JJ
+Rawls NNP
+Sylvania NNP
+Kel NNP
+Semel NNP
+economy-lodging JJ
+Finerman NNP
+Meggs NNP NNS
+unfailingly RB
+Tele-Communications NNP NNPS
+priciest JJS
+Girls NNP NNS
+refraining VBG
+OUR PRP$
+superintend VB
+Lovely NNP
+Metall NNP
+imprints NNS
+Kitty NNP NN
+swabbed VBD
+self-experimentation NN
+wheat-germ NN
+elusiveness NN
+SsangYong NNP
+refinance VB
+Rebels NNS
+rope NN VB
+interposing VBG
+cranes NNS
+mew VB
+Ex-Im NNP
+McGuirk NNP
+food-safety JJ NN
+democratized VBN
+wrapper NN
+interdenominational JJ
+jump NN VBP JJ VB
+distrubition NN
+Clinics NNP
+thousand-fold JJ
+whipping VBG JJ NN
+Worldwatch NNP
+whippings NNS
+Killen NNP
+Sacramento NNP NN
+F\/A18 NNP CD
+Ion NNP
+chancel NN
+D.L. NNP
+sclerosis NN
+governors-association NN
+Palisades NNP NNPS
+Assign VB
+Alperstein NNP
+guise NN
+Oberkfell NNP
+pitchmen NNS
+business-minded JJ
+Directorate NNP NN
+bail VB NN
+Sluggish JJ
+angels NNS
+Dicarban NN
+more-mainstream JJ
+Pryor NNP
+dissenter NN
+Nickelson NNP
+grabbag NN
+Huard NNP
+Corporation NNP NN
+arousal JJ
+Mercedes-Benzes NNPS NNS
+Tract NNP
+Delmed NNP
+sadness NN
+Delbridge NNP
+exams NNS
+Kondratas NNP
+Ginsberg NNP
+Publications NNPS NNP
+KC-10 NNP NN
+mammalian JJ
+military-medical JJ
+red-brick JJ
+Protesters NNS
+gray-thatched JJ
+Platonism NN
+Kitada NNP
+Bangladesh NNP
+Drell NNP
+Notre NNP
+Analytrol NNP
+Gyp NNP
+mustiness NN
+Widely NN RB
+Fitzwilliam NNP
+SALT NNP
+incoherent JJ
+Spady NNP
+Daiwa NNP NN
+charred JJ VBN
+checks NNS VBZ
+Northridge NNP
+REJECTS VBZ
+Huck NNP
+Germeten NNP
+mines NNS
+Quips VBZ
+Kasiva NNP
+unilaterally RB
+headrests NNS
+Harassed JJ
+alone RB JJ
+overvaulting JJ
+Peter NNP
+Speidel NNP
+private-banking JJ
+district-court NN
+hard-working JJ
+Homart NNP
+archery NN
+zoomed VBD VBN
+public-limit JJ
+snail NN
+chimps NNS
+Midlantic NNP
+Heuvelmans NNP
+pressurized VBN
+multitude NN
+Backbends NNS
+salesmen NNS
+distressing JJ
+boils VBZ
+buttons NNS
+Vuitton NNP
+cowardice NN
+fuzzy JJ
+Igbo NNP
+Hans NNP
+nondiscriminatory JJ
+DM33 CD
+quantity NN
+twin-blade JJ
+minions NNS
+price-supporting JJ
+inhibitors NNS
+HelmsleySpear NNP
+Engraving NNP
+impotent JJ
+unlisted JJ VBN
+Luther NNP
+anti-trust JJ
+P.M. RB NNP FW JJ NN
+rook NN
+Piraeus NNP
+mid-thirties NNS
+jurisdictions NNS
+Dissidents NNS
+Dreman NNP
+POW NN NNP
+Sharpest JJS
+qualms NNS
+Abstractionists NNS
+postponed VBN JJ VBD
+Kenmare NNP
+fiddle NN VB
+Scattered VBN
+hell NN UH
+repugnance NN
+Marv NNP
+Va NNP
+Rotarians NNPS
+intelligent JJ
+negligence NN
+Noll NNP
+directory NN JJ
+socket NN
+z-Not RB
+restricted-entry JJ
+physician-owned JJ
+Peace NNP NN
+spine NN
+triennial NN
+Fawn NNP
+glottochronology NN
+operand NN
+Salvesen NNP
+Olaf NNP
+Warrens NNS
+fragility NN
+depressant NN
+cautionary JJ
+Cale NNP
+tumor-suppressor JJ
+appraisals NNS
+Grand-Clement NNP
+gateway NN
+Waldman NNP
+hidden VBN JJ
+F.D. NNP
+Pasatieri NNP
+Hulings NNP
+Latvia NNP
+Authors NNS
+anti-epilepsy JJ
+Eight CD NNP
+Reda NNP
+tease VB NN VBP
+equip VB VBP
+fundamentalists NNS
+globalism NN
+bunter NN
+Boise NNP
+Klineberg NNP
+south-of-the-border JJ
+Lucille NNP
+GTG NNP
+Geffen NNP
+inflation-created JJ
+Supplementary NNP
+Digby NNP
+LaRiviere NNP
+Conquest NNP
+Cason NNP
+lustful JJ
+Hsu NNP
+intern NN VB
+Bib NNP
+complication NN
+Condor NNP
+Krampe NNP
+water-washed VBN
+defied VBD VBN
+Markovic NNP
+Shivering VBG
+small-office JJ
+anti-Stalinist JJ
+Taos NNP
+pyre NN
+Rear JJ
+tasted VBD VBN
+deltas NNS
+baloney NN
+pseudo-capitalism NN
+zigzags NNS
+stove NN
+junk NN VB
+Tea NNP NN
+viable JJ
+polity NN
+disapproved VBD VBN
+PSA NNP
+avowed JJ
+Filigreed JJ
+handier JJR
+dim JJ
+Roseland NNP
+Aureomycin NN NNP
+Regulatory NNP JJ
+Nichtige NN
+Hiss NNP
+Subsequently RB NNP
+leaked VBN VBD
+intangible JJ NN
+Poszgay NNP
+Condoms NNS
+truncheons NNS
+Dynapert NNP
+autobiographic JJ
+kitchenette NN
+CAPITAL NNP NN
+ex-gambler NN
+armata NNP
+engine-casting NN
+helluva JJ
+Lock-Up NN
+Bethesda NNP
+jays NNS
+shiningly RB
+bullock NN
+AEP NNP
+controls NNS VBZ
+big-borrowing JJ
+Guadalajara NNP
+office-supply JJ
+Alex NNP NN
+condenser NN
+post-1979 JJ
+curbside NN JJ
+renewed VBN VBD JJ
+dividend-related JJ
+attract VB VBP
+pigen NN
+loathed VBD VBN
+Tricks NNPS NNS
+heatshield NN
+wort NN
+bomber NN
+facilitating VBG
+patents NNS
+Energetic JJ
+R.E. NNP
+manage VB VBP
+Accords NNPS NNP NNS
+reintroduced VBN VBD
+homebuilding NN
+softness NN
+Pumblechook NNP
+processing NN VBG
+ton NN
+squirrel NN
+Soviet-trained JJ
+teen-age JJ
+Car NNP NN
+orange-and-white JJ
+mop-up NN
+flight-to-quality JJ NN
+poshest JJS
+emphasize VB VBP
+weeked NN
+two-tone JJ
+Brande NNP
+deterministic JJ
+Jewish-Gentile NNP
+Servicios NNP
+price-weakening NN
+Sharkey NNP
+ditties NNS
+anti-infectives NNS
+Pye NNP
+Stoner NNP
+Dickson NNP
+snowballed VBD
+cancer-susceptible JJ
+thwack NN
+AGE NNP
+Sturges NNP
+dour JJ
+chartroom NN
+seventy-two JJ
+Fannie NNP
+AirMalta NNP NN
+three-month-old JJ
+organism NN
+N-W NNP
+bud NN VB
+medical-test JJ
+Pololu NNP
+Convertible JJ NNP
+port-of-call NN
+McElyee NNP
+hydration NN
+Counselor NNP
+Flair NNP
+lacquered VBN
+tachycardia NN
+druncke VBD JJ
+Caspi NNP
+Breda NNP
+Breakthrough NNP
+economic-cooperation NN
+flagellation NN
+semi-major JJ
+weapons-systems NNS
+Rivals NNS
+Berber JJ NNP
+death-row NN JJ
+tantalizing VBG JJ
+humanly RB
+Chun NNP
+Keep VB NNP
+Deliberations NNP
+Estella NNP
+Tombrello NNP
+patronne NN
+Jiang NNP
+Hemel NNP
+Stories NNP NNS
+trading NN NN|VBG VBG|NN JJ VBG
+thrift-accounting NN
+Athenaeum NNP
+Advancing VBG
+Billerica NNP
+anti-Rh NNP
+On-Line NNP JJ
+quench VB
+profusion NN
+DeLay NNP
+granular-type JJ
+gynecologic JJ
+broad-brimmed JJ
+Estherson NNP
+run-ins NNS JJ NN
+Curia NNP
+Jupiter NNP NN
+SpA NNP
+Rinascimento NNP
+misinterpretation NN
+McGuigan NNP
+moralism NN
+Engaging VBG
+Threads NNS
+quickly RB
+restrictions NNS
+cowboys NNS
+paradises NNS
+Systran NNP
+recalculations NNS
+oblivion NN
+Attractions NNPS
+rambles VBZ
+arbitration. NN
+self-energizing JJ
+screwball JJ NN
+Chatha NNP
+gingham NN
+Denenchofu NNP
+Kasai NNP
+miscalculation NN
+boxcars NNS
+scalding VBG
+irresolvable JJ
+WFRR NNP
+patrician JJ NN
+Merigan NNP
+maleness NN
+unimposing JJ
+money-winner NN
+Shell NNP NN
+onboard NN
+Healthy JJ
+post-war JJ NN
+ADV NNP
+wakened VBN
+rifts NNS
+unmasked VBN
+Reshaping VBG
+Dupuy NNP
+Mannheim NNP
+Jaggers NNP
+majesty NN
+two-parent JJ
+off-the-books JJ
+ended... :
+threshing NN
+fess NN
+Soviet-Korean JJ
+multi-spired JJ
+printing-equipment NN
+Nixon NNP
+reimburseable JJ
+Loss NN NNP
+government-insured JJ
+Mollie NNP
+mainframe-class JJ NN
+Isuzu NNP
+Janssen NNP
+AWOC NNP
+Morimoto NNP
+wrecks NNS
+data-processing NN JJ
+Whitehead NNP
+Feodor NNP
+Commisioner NNP
+descendants NNS
+Ricketts NNP
+contrary-to-reality JJ
+such JJ PDT DT
+homing JJ VBG
+Houston-Montgomery NNP
+columnist NN
+reservists NNS
+JCP NNP
+gyrating VBG
+calibrated VBN VBD
+hilariously RB
+awesome JJ
+forbade VBD
+well-worn JJ
+thousand-legged JJ
+torsos NNS
+WXRK NNP
+roundly RB
+disproportionally RB
+co-managed VBN JJ VBD
+Dragoslav NNP
+Mohandas NNP
+unserious JJ
+fable NN
+Szocs NNP
+Grinevsky NNP
+Bomb VB
+conquerors NNS
+sealing NN VBG
+HIGHEST JJS
+helm NN
+Merchant NNP NN
+functional JJ NN
+Ratcliff NNP
+Wingback NNP
+annihilation NN
+Leyland NNP
+Mitsui NNP NNS
+prayed VBD VBN
+Bey NNP
+Haddad NNP
+convincing JJ VBG NN
+circumvents VBZ
+denial NN
+AutoWorld NNP
+umbrellas NNS
+obliterate VB
+Condos NNS
+furlongs NNS
+Tax NNP NN VB
+hissing NN VBG
+without IN
+D.,Calif NNP
+Howard NNP RP NNPS
+off-speed JJ
+Beardens NNPS
+Calf NNP
+Dukakises NNP
+De-Kooning NNP
+slaw NN
+Impressionist JJ
+Oncogenes NNS
+sub-chiefs NN
+malady NN
+casket NN
+lash VB VBP NN
+Kaliniak NNP
+Quickening VBG
+alkali NNS NN
+Strength NN NNP
+McCamant NNP
+Khomeni NNP
+Mough NN
+lyricist NN
+Guber NNP
+cancelling VBG
+rumdum NN
+philanthropic JJ
+recoveries NNS
+vitro FW NN
+Hering NNP
+Sotnikov NNP
+belaboring VBG NN
+Defence NN
+Bahre NNP
+automotive-industry NN
+Poussins NNS
+adolescence NN
+judge NN VB VBP
+near-manic JJ
+quit VB VBD VBN VBP NN
+imitates VBZ
+nine-year JJ
+dispelled VBN VBD
+earthquake-trained JJ
+Kalentiev NNP
+undreamt VBN
+Descending VBG
+Lag NN
+oncoming JJ
+gauss NN
+baser JJR
+covering VBG NN
+reconfigure NN
+brass NN JJ
+industrious JJ
+Cutrer NNP
+non-automotive JJ
+demobilize VB
+Selma NNP
+Pittsburgh-based JJ
+tributes NNS
+half-percent JJ
+'Tide NNP
+prochoice NN
+refrigerators NNS
+McGraw NNP
+Meyers NNP
+computer-servicing JJ NN
+Kalamazoo NNP NN
+wince NN
+long-far NN
+Mottus NNP
+Basketball NNP NN
+Musicians NNS NNPS
+canning NN VBG JJ
+Kellum NNP
+surefire JJ
+Kangas NNP
+Speaker NNP NN
+cone-sphere JJ
+altruism NN
+Bic NNP
+parenting NN
+Lyndhurst NNP
+working-day JJ
+food-processing NN JJ
+reacted VBD VBN
+hypermarkets NNS
+Cassite NNP
+slow-growth NN
+Ruvolo NNP
+Antenne NNP
+shmaltzy NN
+Differences NNS
+Murtaugh NNP
+two-burner JJ
+uproot VB
+most-dangerous JJ
+anecdote NN
+Sahara NNP
+plaguing VBG
+creamy JJ
+mere JJ
+Stones NNP NNPS
+And CC NNP
+Sore JJ
+Industrielle NNP
+embankment NN
+initiative NN
+sanding NN VBG
+din NN
+Fulwood NNP
+Straniera NNP
+Diaper NNP NN
+motivating VBG JJ
+LATEST JJS
+Georgians NNPS
+Nights NNP NNPS
+pre-1960 JJ
+PANHANDLER NN
+Rig-Veda NNP
+Oros NNP
+prostitution.. NN
+crack-user NN
+Toulouse NNP
+carnivores NNS
+chugging VBG
+Hinsdale NNP
+parable NN
+fourth-biggest JJ
+Predictions NNS
+signalling VBG
+deregulated VBN JJ VBD
+expelled VBN VBD
+sweatshops NNS
+Vargas NNP
+vote-getter NN
+Treasurer NNP
+horsewoman NN
+depth NN
+RE-ENTRY NNP
+Aides NNS
+extended-range JJ
+contrary JJ NN
+mold NN VB VBP
+exit-visa JJ
+Rod NNP
+deficits NNS
+intensify VB VBP
+hardscrabble JJ
+Zealand-dollar NN
+russe NN
+Touted VBN
+respectful JJ
+de-iodinase NN
+Downtown NN NNP
+Mocking NNP
+Oliver NNP
+unsheathe VB
+women-owned JJ
+replica NN
+Gladdy NNP
+beware VB VBP
+chins NNS
+Ch'an NNP
+Nesi NNP
+reveille NN
+Biosystems NNP NNPS
+postpone VB VBP
+inlets NNS
+Sprung NNP
+Methuselahs NNPS
+Sadakane NNP
+policies NNS
+system NN
+Perse NNP
+auspiciously RB
+attitudes NNS
+Schonberg NNP
+unMcGuanean JJ
+refined-petroleum-products JJ
+residences NNS
+Capetronic NNP
+doves NNS
+socalled JJ VBN
+too RB
+institution-wide JJ
+Assignation NN
+Twenty-year-old JJ
+irregularities NNS
+persecution NN
+Emigration NN
+threesome NN
+exogamous JJ
+middlemen NNS
+Andre NNP
+Pietermartizburg NNP
+Oculon NNP
+force-rate NN
+sub-tests NNS
+staked VBN VBD
+Kryuchkov NNP
+textiles NNS
+AGF NNP
+Sadly RB
+Kakadu NN
+smooth JJ VB
+Producer-Price NNP
+along IN RB RP RB|RP
+Yuppies NNS
+break-away NN
+Baskerville NNP
+Upping VBG
+prone JJ RB
+pension-industry JJ NN
+Stendler NNP
+Six-Day NNP
+favoritism NN
+Grosvenor NNP
+SCE NNP
+Liggett NNP
+Moudy NNP
+Bondholders NNS
+feigning VBG
+midcontinent JJ
+Kalyani NNP
+Principia NNP
+Corporate JJ NNP
+Attempts NNS
+Products NNPS NNP NNS
+F.D.R. NNP
+ingratitude NN
+imitation-woodgrain NN
+Rosenberg NNP
+U.S.investors NNS
+goods NNS
+Daisy NNP
+trophies NNS
+renegotiations NNS
+Express-Buick NNP
+chap. NN
+pollination NN
+Excess JJ
+avenging JJ VBG
+clairvoyant JJ
+higher-paid JJ
+Ken NNP
+Promazine JJ
+Gerstenblatt NNP
+sever VB VBP
+planter NN
+acreage NN
+Rousseauan JJ
+Organ NN
+perky JJ
+hearing-aid NN
+sapiens JJ
+funeral NN JJ
+Soft-drink NN
+year-on-year JJ
+OUT IN RP
+Sipping VBG
+high-vitamin JJ
+foiled VBN JJ VBD
+hardest JJS RBS RB
+bodice NN
+Supply-sider NNP
+penance NN
+reinsuring VBG
+Andreotti NNP
+Valens NNP
+affront NN
+YOM NNP
+appease VB
+fructose NN
+Frosts NNPS
+VITRO NNP
+emulsion NN
+big-bucks JJ
+Sacremento NNP
+whim NN
+accusing VBG JJ
+JUDGE NN NNP
+HPB NNP
+noncumulative JJ
+secretively RB
+Shidler NNP
+issues... :
+Arakawa NNP
+fest NN JJS
+airmailed VBD
+return NN VBP JJ VB
+Sr NNP
+dies VBZ NNS
+Guarantee NN NNP
+enemies NNS
+interdependent JJ
+Nero NNP
+counteract VB
+Lost JJ VBD
+Underscoring VBG
+EDMOV NN
+incredibly RB
+communicative JJ
+Protitch NNP
+Yoshiyuki NNP
+INTERPUBLIC NNP
+seemed VBD VBN
+KPMG NNP
+McAlister NNP
+salve NN VB
+dealers NNS
+Jergens NNP
+a-drinking NN
+microbe NN
+mixer NN
+Criminologists NNS
+twice-a-day JJ
+opens VBZ
+aquarium NN
+Window NN
+Hodgson NNP
+half-man NN
+single-A2 JJ
+OWI NNP
+carriers NNS
+room NN NNP
+candor NN
+pre-Gorbachev JJ
+wizards NNS
+Revolt NN
+squared JJ VBD VBN
+Recruit NNP NN
+Teijin NNP
+Exploratory JJ
+Rexinger NNP
+best-pitcher JJ
+Concerns NNS
+Marx NNP
+Grab VB NN
+Dyncorp NNP
+oncology NN
+wag NN VBP
+gifts NNS
+Guilherme NNP
+Staunton NNP
+Broglie NNP
+furthermore RB
+Oana NNP
+phones NNS VBZ
+page-composition NN
+voicing VBG
+traineeships NNS
+hurrah NN
+freezers NNS
+branded VBN JJ
+SITE NN
+seasoning NN
+chafe VBP VB
+Subway NNP NN
+Thenceforth NN
+Coles NNP
+PROFITS NNS
+gainers NNS
+vocationally RB
+Self-Government NNP
+fresh JJ JJ|RB
+Regulator NNP
+offsaddled VBD
+Colodny NNP
+Treasures NNS
+twotiming VBG
+mature JJ VB NNP VBP
+all-lesbian JJ
+Licks NNP
+nonintervention NN
+Macedon NNP
+definition-specialization JJ NN
+bases NNS VBZ
+contrast NN VB VBP
+market:8.60 NN|CD
+clown NN
+complicity NN
+Chlortetracycline NN
+exceptions NNS
+industy NN
+Picassos NNPS
+Wines NNP
+Laswick NNP
+major-medical JJ
+Sybron NNP
+sister NN JJ
+honor NN VBP VB
+Alternating VBG
+croaks NNS
+Firemen NNS
+restructure VB VBP NN
+hairsplitting JJ
+reconsidering VBG
+Procurement NN
+HMS NNP
+power NN VBP VB
+delicately RB
+unmelodic JJ
+exasperation NN
+novelties NNS
+coincided VBD VBN
+debatable JJ
+Commissions NNS NNPS
+Telos NNP NNS
+Dauphine NNP
+chain-store JJ
+Bestimmung FW
+Gemayel NNP
+Vehicle NNP NN
+stomach NN VB
+feedings NNS
+untrustworthy JJ
+roaringest JJS
+lowest-priced JJ
+CONSUMER NN
+nonprofit JJ
+Purse NNP
+Maclean NNP
+septillion CD
+Uh UH IN
+Tridex NNP
+parent-child JJ
+companionship NN
+refunded VBN
+i.d. NN
+protagonists NNS
+Vogue NNP
+Faye NNP
+million-franc JJ
+Lanvin NNP
+reconstructs VBZ
+intramural JJ
+I.Q. NNP NN
+purposely RB
+walkouts NNS
+armed VBN JJ
+Stinson NNP
+illusory JJ
+Borgeson NNP
+dioceses NNS
+sonny NN
+maltreat VBP
+Gartner NNP JJR
+Murat NNP
+calibrations NNS
+trivia NNS NN
+residential JJ
+unappeasable JJ
+GTI NNP
+Liner NNP
+Haughey NNP
+post-1987 JJ
+Camarillo NNP
+Bid NNP
+phagocytes NNS
+racetrack NN
+prescriptive JJ
+EBPI NNP
+land-use NN
+paleo NN
+Riflery NN
+Combe NNP
+forlornly RB
+MX-missile NN
+nine-member JJ
+Nightly NNP
+vivid JJ
+hoes NNS
+traditions NNS
+small-to-medium-sized JJ
+Mellor NNP
+mole NN
+Transcontinental NNP
+defraud VB
+subsystem NN
+Dialogues NNP
+` ``
+decode VB
+jettisoning VBG
+Shoupe NNP
+physicists NNS
+underlying VBG JJ VBG|JJ
+Dionne NNP
+alloys NNS
+Eric NNP
+movie-like JJ
+catchee VB
+trendsetter NN
+Departmentstore NNP
+hydraulically RB
+Folk-lore NN
+gear-box NN
+Balladur NNP
+Bonanza NNP
+Thirty-month NNP
+fluff NN
+funding NN VBG NN|JJ
+output NN VB
+invaded VBD VBN
+domestic-production NN
+inconsistently RB
+Travancore NNP
+pleural JJ
+InvesTech NNP
+inhibitor NN
+Burch NNP
+Bentham NNP
+thievin VBG
+good-will JJ NN
+Roe NNP
+rooftree NN
+Baykal NNP
+counterprogramming NN
+commanders NNS
+rafters NNS
+potholes NNS
+conveniences NNS
+Mass NNP JJ NN
+BAII NNP
+quilt NN
+Downfall NNP
+post-1992 CD
+maples NNS
+intoxicating JJ
+liars NNS
+Windy NNP
+Tatsuhara NNP
+Nomi NNP
+Lynn NNP
+Karet NNP
+testings NNS
+transcripts NNS
+televison-record NN
+microcomputers NNS
+Rangoon-Bangkok NNP
+Ten-thousand-dollar JJ
+Nationalistic JJ
+restricting VBG JJ
+dried-up JJ
+semi-serious JJ
+riding VBG JJ NN
+retentive JJ
+defendants NNS
+tumefaciens NN
+biographical JJ
+wills NNS
+divestment NN
+anteater NN
+democratizing VBG
+Baa1 JJ
+top JJ NN VBP RB VB
+Cat NNP
+far-reaching JJ
+developing-nation JJ
+Helion NNP
+--were VBD
+Mollica NNP
+disfavor NN
+kick NN VB VBP
+backbone NN
+forty-three CD
+Seventies NNPS
+Asta NNP
+outsell VB
+Bluthenzweig NNP
+anticus NN
+quack NN UH
+Briksa NNP
+tough-talking NN
+marks NNS VBZ
+Neusteters NNP
+Constitution NNP NN
+supported VBN JJ VBD
+Droll NNP
+Launches VBZ
+paraphrases NNS VBZ
+Kwek NNP
+Don't VB
+carping VBG JJ NN
+ferret VB NN
+Peach NNP
+Grossman NNP
+after IN RB RP
+Larish NNP
+street... :
+appanage NN
+metallic JJ
+conqueror NN
+underenforces VBZ
+deteriorate VB VBP
+test-coaching JJ
+sophomoric JJ
+Stardent NNP
+Archey NNP
+worms NNS
+unicorns NNS
+unclenched VBN
+mixes NNS VBZ
+Teikoku NNP
+inhibitory JJ
+instituted VBN VBD
+Thompson-CSF NNP
+PROFITT NNP
+congealed VBD VBN
+backyards NNS
+Rusty NNP
+diet NN VB
+inquiry NN
+Keo NNP
+conducting VBG NN
+wandered VBD
+spindled VBD
+wrong-way JJ
+Lido NNP
+gold-filled JJ
+POWER NNP NN
+Pliny NN
+discount-rate JJ
+tab-lifter NN
+Shepperd NNP
+ending VBG JJ NN VBN
+ex-trucking JJ
+bastard NN
+Midwood NNP
+sister-in-law NN
+mushrooms NNS
+Dutch-elm-disease NN
+meritorious JJ
+Eprex NNP
+Eternal NNP
+Snodgrass NNP
+excursions NNS
+unshaven JJ
+origins NNS
+displeases VBZ
+Benanav NNP
+budgets NNS
+automotive-parts JJ
+extramarital JJ
+additives NNS
+Radio NNP NN
+chamberpot NN
+Grien NNP
+Targets VBZ
+lamplight NN
+Filter NNP
+one-issue JJ
+Improved VBN JJ
+Disputada NNP
+sleighs NNS
+chaff NN
+Brenner NNP
+spinning VBG JJ
+moralities NNS
+long-acting JJ
+Teatro NNP
+neuralgia NN
+Saddam NNP
+mustachioed JJ
+Bougainville NNP
+Beaten VBN
+Shintoism NNP
+Mayor-elect NNP
+gas-fired JJ
+bromphenol NN
+Mary NNP
+PRI NNP
+parodies NNS
+Number NN NNP
+trust.. NN
+competing VBG JJ VBG|JJ
+Armstrong NNP
+commodity-price JJ
+motif NN
+relationships NNS
+round-the-clock JJ
+normalcy NN
+siblings NNS
+interloping VBG
+latent JJ NN
+Brenda NNP
+dregs NNS
+Oshry NNP
+sodomy NN
+Yoshimoto NNP
+leveled VBD VBN
+orphanage NN
+childishness NN
+halve VB
+hundredweight NN
+millenarianism NN
+Killer NNP
+exposure-time NN
+Gambit NNP
+reminders NNS
+weaken VB VBP
+Processed NNP VBN
+physicist NN
+Oaks NNP NNPS
+unravel VB VBP
+rigor NN
+short-to-medium-range JJ
+Theran NNP
+REQUESTS NNS
+Michaelcheck NNP
+serene JJ NN
+torpedoes NNS
+W.J. NNP
+yolk NN
+Blockade NN
+theistic JJ
+Caning NNP
+abruptness NN
+conversant NN
+Churchillian JJ
+liberalization NN
+teen-agers NNS
+Hive NNP
+Gloeilampenfabrieken NNP
+persuaded VBN VBD
+brand-loyal JJ
+migrants NNS
+Ameri-Cable NNP
+equilibriums NNS
+dim-witted JJ
+lesson NN
+guzzled VBD
+not-yet-married JJ
+U.S.-dollar NN
+teapot NN
+estrangement NN
+granddaughter NN
+recapture VB NN
+Olivet NNP
+bucking-up NN
+teen-ager NN
+Boccone NNP
+parceling NN
+punishing VBG JJ
+mid JJ
+housepaint NN
+Bloedel NNP
+g-p NN
+interferometers NNS
+Heidelberg NNP
+galvanism NN
+E.G.T. NNP
+colorin NN
+recess NN
+Saudi-American NNP
+taped VBN JJ VBD
+Cummings NNP
+Aeroquip NNP
+CF680C2 NNP
+growl NN
+M.A. NNP
+Salinity NN
+clean-up JJ NN
+Finders NNP
+foreclosing VBG
+ballet NN FW
+turnoff NN
+BCA NNP
+Lines NNPS NNP NNS
+tea-drinking NN
+cameras NNS
+Suburban NNP JJ
+gulley NN
+Mandolin NNP
+Senior JJ NNP
+Ry. NNP
+formative JJ NN
+Chain NN
+mutter VB
+bubbled VBN VBD
+Lehigh NNP
+untrammeled VBN JJ
+augmenting VBG
+Soviet-Israeli JJ
+hoped-for JJ
+Avenue NNP NN
+spade NN JJ VBP
+seals NNS VBZ
+Clad VBN
+chaga NN
+brave JJ VB
+chides VBZ
+inherent JJ
+full-grown JJ
+Novosibirsk NNP
+Magarity NNP
+Merck NNP NN
+rhymed VBD
+Cathy NNP
+Sorrell NNP
+intonation NN
+government-ordered JJ
+MARKS NNS
+oceanfront JJ NN
+retail-volume NN
+confidential JJ
+snake NN
+aplomb NN
+Sayers NNP
+Lai NNP
+studios NNS
+Yellowknife NNP
+P&G NNP NNPS NN VB
+Helix NNP
+attentive JJ
+saltier JJR
+drizzly JJ
+carps VBZ
+lineups NNS
+lawman NN
+uncreative JJ
+Astaires NNPS
+editorship NN
+earth-bound JJ
+accumulates VBZ
+non-alcoholic JJ
+Lorenz NNP
+Influential JJ
+gunman NN
+metier NN
+capital-improvement NN
+middle-ground JJ
+upper-house NN JJ
+nnuolapertar-it-vuh-karti-birifw FW
+over-allotment JJ NN
+casework NN
+Shevack NNP
+deviates VBZ
+Nuremberg NNP
+Sanctions NNS NNPS
+'Hot JJ
+Robusta-producing JJ
+per-day JJ
+Adde NNP
+Mayoral JJ
+consortium-ownership NN
+kenning NN
+Mateo NNP
+morsel NN
+clearest JJS
+justly RB
+Perdue NNP
+Province NNP
+Bryan NNP
+bang-sashes NNS
+Laser NNP
+F.C NNP
+Defectors NNS
+Nisshinbo NNP
+Stride NNP
+Bobar NNP
+dismantled VBN VBD
+Delegate NNP
+Fascist NNP JJ
+BRNF NNP
+Elios NNP
+bunkered VBN
+weaves NNS VBZ
+Boyeki NNP
+Huntley-Brinkley NNP
+debauchery NN
+Hatteras NNP
+sayed VBD
+Ted NNP
+semicircular JJ
+Rent-A-Car NNP
+stretcher NN
+cathartic JJ
+Moritz NNP
+Krupa NNP
+purporting VBG
+deluding VBG
+airman NN
+bickered VBN
+dip NN VBP VB
+repaid VBN VBD
+rejoices VBZ
+curl VB VBP
+Kidnapper NN
+time-consuming JJ
+oil-bearing JJ
+C-SPAN NNP
+intruders NNS
+ammoniac JJ
+pilgrimages NNS
+Archie NNP
+fathom VB
+Libyans NNPS
+Instantly RB
+Eavesdropping NN
+couch-potato NN
+Baa2 JJ
+styrene NN
+vendors NNS
+felicity NN
+snatches NNS VBZ
+conformational JJ
+world-class JJ
+Lyndon NNP
+Channing NNP
+Mehitabel NNP
+Croasdale NNP
+Cesar NNP
+AES NNP
+Feuer NNP
+conditionally RB
+flappers NNS
+Vandenberg NNP
+chromosome NN
+Gamble NNP
+distate NN
+Aluminum-Bat NN
+late JJ RB
+Correctional NNP
+Freya NNP
+contradicting VBG
+sleight NN
+Espana NNP
+Crop NNP
+Syrdarya NNP
+defrauding VBG
+planets NNS
+excretory JJ
+jalapeno JJ
+consolation NN
+Conran NNP
+Maddox NNP
+high-interest JJ
+sweet-throated JJ
+Ira NNP
+McNamara NNP
+Arland NNP
+alignment NN
+composure NN
+a DT VB , VBN NNP FW JJ LS NN
+briefest JJS
+Love NNP VBP NN VB
+Vahid NNP
+twelve-year-old JJ
+strumming VBG
+proctor NN
+China-bound JJ
+Lindy NNP
+Nitrogen NN
+managed-care JJ
+potentates NNS
+Turnock NNP
+non-flight JJ
+still-daylighted JJ
+Churches NNP NNS NNPS
+Whirling JJ
+Skaggs NNP
+Scholar NNP
+chainlike JJ
+Technician NNP NN
+Supports VBZ
+Hitting VBG NN
+moneymaker NN
+U.S.-Korean JJ
+borers NNS
+raw-materials NNS JJ
+cookies NNS
+Zsa NNP
+Maui NNP
+ComputerLand NNP
+Dispensing VBG
+Rules NNP NNS NNPS
+Walk-in JJ
+facades NNS
+bake JJ VB
+Kolpakova NNP
+Provincetown NNP
+bug NN VBP
+barks VBZ
+frenzy NN
+suck VB NN VBP
+scary JJ
+obtaine VB
+cater VBP VB
+de-iodinate VB
+These DT
+brutal JJ
+veterinary JJ
+smoking-related JJ
+associaitons NNS
+visibly RB
+spokeswoman NN
+help VB NN VBP
+quiet-spoken JJ
+colas NNS
+Grad NNP
+over-arching JJ
+Paganini NNS
+Strukturbericht NNP
+dictum NN
+but-bulls IN
+Yquem NNP
+school-district JJ NN
+GSP NNP
+Getz NNP
+vandalism NN
+Platonist NN NNP
+Factories NNS NNPS
+detailsman NN
+unsurpassed JJ
+Bridgestone NNP
+shipbuilders NNS
+culture NN
+strike-bound JJ
+automobiles NNS
+Machinist-union NNP
+Baulieu NNP
+rovings NNS
+Executed VBD
+Mysteries NNP NNPS
+Finished VBN
+movers NNS
+swatches NNS
+WEDTECH NNP
+Lynes NNP
+perjury NN
+Cali NNP
+HOFI NNP
+Siam NNP
+slumps VBZ NNS
+perestroika FW NN
+'Yuk UH
+Tibbs NNP
+solid-muscle JJ
+Exodus NNP
+multiply VB VBP
+Benedek NNP
+curbs NNS
+Long-distance NN
+Rede NNP
+Odd-year JJ
+circulated VBD VBN
+Occidental NNP
+lightens VBZ
+clucking VBG
+penned VBN VBD
+sexologist NN
+Solihull NNP
+Ruggiero NNP
+Life NNP NN
+Sik NNP
+romps NNS
+quince NN
+crammed VBN VBD
+O'Casey NNP
+Voicetek NNP
+Hinchliff NNP
+action NN
+Lumsden NNP
+Cover NNP VB
+Argabright NNP
+waterworks NN NN|NNS
+Barre NNP
+Jepson NNP
+Katangan JJ
+weekends NNS
+Mutinies NNS
+Rundlett NNP
+hierarchical JJ
+verdicts NNS
+Wenberg NNP
+Ltd. NNP NN
+Cauff NNP
+Explonaft NNP
+High-ranking JJ
+stretches NNS VBZ
+horse-radish NN
+Rational NNP JJ
+Ouija NNP
+maltreated VBN
+Shabbat NNP
+heighborhoods NNS
+FOOD NNP NN
+Assisting VBG
+Gather VB
+Tracy NNP
+Dunbar NNP
+pinpoint VB NN VBP
+desires NNS VBZ
+petulance NN
+appreciable JJ
+None NN NNP
+prepositional JJ
+organisms NNS
+frankness NN
+Orcutt NNP
+Rajter NNP
+employer-paid JJ
+sparred VBD
+unfailing JJ
+BAM NNP
+Showdown NNP
+Messrs. NNPS NN NNP NNS
+decreeing VBG
+enthusiasms NNS
+Toasting VBG
+executor NN
+dialectic NN
+deployed VBN VBD
+Connectors NNP NNPS
+macroscopically RB
+wide-winged JJ
+cooked-over JJ
+overhauling VBG NN
+argriculture NN
+stop-and-start JJ
+Jennifer NNP
+Kolberg NNP
+typography NN
+Doswell NNP
+Ferrell NNP
+working-capital JJ NN
+authorizes VBZ
+realizing VBG
+hedonism NN
+VAX\ NNP
+Museum NNP NN
+St NNP NN
+remarkable JJ
+a.m.-1:30 CD
+Curie NNP
+outset NN
+keystroke NN
+saucers NNS
+self-examination NN
+dizziness NN
+Quaid NNP
+Hispanics NNPS NNS
+Buzzell NNP
+St. NNP NN
+catechize VB
+grandees NNS
+binoculars NNS
+Confer NNP
+wrappers NNS
+hearings NNS
+Raw-steel NN JJ
+Hara NNP
+Kutney NNP
+Oriental JJ NNP
+globalist NN
+coup-makers NNS
+tossing VBG NN
+Landing NNP VBG
+Ozagenians NNS
+edge NN VB
+ensnarled VBN
+reentered VBD
+organizers NNS
+attendents NNS
+outages NNS
+Beta NNP JJ NN
+Godot NNP
+pigeonholing NN
+Main-d'Oeuvre NNP
+Coyotes NNS
+reassembled VBN
+Eliot NNP
+LeSourd NNP
+Dietetic NNP
+sprout VBP VB
+particle-board NN
+Erie NNP
+undereducated JJ
+sidestreet NN
+Miscellaneous JJ
+effect NN JJ VB VBP
+Stehelin NNP
+opinion NN
+barium NN
+sum NN VB
+bestselling JJ
+J.D.H. NNP
+thrift-insurance NN
+Leveraged JJ VBN
+smolders VBZ
+electromagnets NNS
+Previous JJ
+congratulate VBP VB
+seamen NNS
+determinations NNS
+stoneware NN
+semidrying JJ
+glancing VBG JJ
+dabbling VBG
+Limited NNP JJ VBN
+Wadsworth NNP
+Commissioning VBG
+Lydia NNP
+journalese NN
+drywall NN VBP
+reintroduces VBZ
+dilutive JJ
+microanalysis NN
+recipients NNS
+lenders NNS
+To TO NNP NN
+cobalt NN
+Waterford NNP
+Bellamy NNP
+sludge NN
+suckered VBN
+disconcert VB
+Karene NNP
+Inx NNP
+Kleber NNP
+Intercepting VBG
+frowning VBG
+stomack NN
+Masu NNP
+Maclaine NNP
+sanitized VBN
+optics NNS
+coste VB
+Wackers NNPS
+institute NN VB
+dabbing VBG
+fetid JJ
+Breaks NNP
+pictures NNS VBZ
+Inconsistent JJ
+Guttmacher NNP
+tooth-straightening NN
+Ballestre NNP
+noodles NNS
+anchorwoman NN
+streak NN VBP
+Baa3 JJ
+ablation NN
+badgered VBD
+GMr NN
+tultul FW
+poppyseed NN
+salts NNS
+Elinor NNP
+Heileman NNP
+academe NN
+assistants NNS
+Prose NNP
+instructor NN
+French-born JJ
+Bertorelli NNP
+Midwesterners NNS
+noticing VBG
+densest JJS
+Tee NNP UH
+nonstop JJ NN RB
+Kelly\ NNP
+conduits NNS
+Swiss-based JJ
+horrors NNS
+Nishimura NNP
+gander NN
+PSE NNP
+B.U. NNP
+outlets NNS
+emerges VBZ
+tofu NN
+Pretoria NNP NN
+harder-line JJ
+capital-appreciation NN
+diagnosed VBN VBD
+fad NN
+creed NN
+diagrammed VBN
+working-girl NN
+drug-consuming JJ
+farm-state NNP JJ
+Nowak NNP
+Vince NNP
+indicate VB VBP
+skim VB VBP JJ
+writhing VBG JJ NN
+suspend VB VBP
+correction NN
+Gyrocompass NN
+small-screen JJ
+Macomber NNP
+Hun NNP
+joyful JJ
+mutual JJ
+knee-length JJ
+Rostagnos NNPS
+amateur NN JJ
+Nishizuka NNP
+whip NN VB
+prevent VB VBP
+Fleischmann NNP
+onwards RB
+seducer NN
+trucking NN VBG
+Heinhold NNP
+LINCOLN NNP
+place NN VBP RB VB
+Lidex NNP
+quiescent JJ
+E-2C NN NNP
+looted VBN VBD
+overcome VB VBN VBP
+Serrana NNP
+bond-trading JJ NN
+unsheltered JJ
+Queens NNP NNPS
+Bakker NNP
+Rune NNP
+Marchese NNP
+homogeneous JJ
+Nokomis NNP
+Abstractions NNS
+grotesquely RB
+SAS NNP
+expediently RB
+convention NN
+stonework NN
+Lagnado NNP
+pushed VBD VBN
+ventilating NN VBG
+Signet NNP
+resulted... :
+LITORIGIN NN
+stockpiles NNS VBZ
+Cav NNP
+Olivia NNP
+Vail NNP
+fettered VBN
+dividend-capture NN
+Cigarette-vending JJ
+homologous RB
+certiorari NNS FW
+guar JJ
+bedrooms NNS
+Housekeeping NN NNP
+tug-o'-war NN
+holiest JJS
+phenomenally RB
+Govette NNP
+erupting VBG
+overfunded VBN
+Calloused JJ
+color-coded VBN
+AGI NNP
+solicitation NN
+northerner NN
+stretchers NNS
+Front-line JJ NN
+probed VBD
+N.Y.U. NNP
+sweet-natured JJ
+Jessica NNP
+hardwood NN
+user NN
+rubber NN
+fatsos NNS
+Salyer NNP
+integrated VBN JJ
+Brunello NNP
+madmen NNS
+immaculate JJ
+segmented JJ
+time-shares NNS
+run-ups NNS
+flips VBZ NNS
+preferential JJ
+Barristers NNS
+pasty JJ NN
+bulwark NN
+Ribozymes NNS
+well-diversified JJ
+declarative JJ NN
+research-based JJ
+cattle-lifter NN
+pack NN VB VBP
+N.V. NNP
+U.S.$ $
+b NN LS
+unwanted JJ
+purified VBN
+umpire NN
+Sasser NNP
+tournaments NNS
+discount-toy JJ
+primes NNS
+chances NNS
+NEWHALL NNP
+co-chairman NN
+inserted VBN VBD
+predecessor NN
+Currie NNP
+grown VBN VBD JJ
+Belvieu NNP
+textile-exporting JJ
+organist NN
+IMSAI NNP
+counterattacked VBD
+Nikkei NNP
+netting VBG
+Tasaki NNP
+narrowing VBG NN
+--33 CD
+human JJ NN
+red-haired JJ
+bruddah FW NN
+Interim JJ
+Because IN RB
+battlements NNS
+perfidy NN
+tax-supported JJ
+sharks NNS
+disorders NNS
+warming NN VBG|NN VBG
+Yugoslavia NNP NN
+inexorable JJ
+Petrograd NNP
+easing VBG JJ NN VBG|NN
+mid-1960s NNS
+Aniskovich NNP
+Toshio NNP
+stalked VBD VBN JJ
+Leonid NNP
+hailstorm NN
+soreness NN
+truck-sales NNS
+capstan NN
+Education NNP NN
+corroborees NNS
+sulfide NN
+prawns NNS
+Amhowitz NNP
+ninth-largest JJ
+abdomen NN
+Foods NNPS NNP NNS
+watchers NNS
+gritty JJ
+Stuart-James NNP
+smarter RBR JJR RB
+Jenkins NNP
+headlong RB
+Beregovoy NNP
+Swinburne NNP
+midweek JJ NN
+Cloudcroft NNP
+Paladin NNP
+Dobbins NNP
+relation NN
+Adamo NNP
+descriptive JJ
+Safari NNP
+Inscribed VBN
+USGA NNP
+Lancashire NNP
+Bryce NNP
+ours PRP JJ PRP$
+tiptoeing VBG
+asseet NN
+Boll NNP
+Newbold NNP
+Qintex NNP
+divisible JJ
+While IN
+whistle-blowers NNS
+unrefrigerated JJ
+ossify VB
+Creedon NNP
+moralist NN
+reorganizing VBG
+revolving VBG JJ VBG|JJ
+raging VBG JJ
+incepted VBD
+non-professional JJ
+pawing VBG
+Ballenger NNP
+Stacked JJ
+cured VBN VBD
+jetliners NNS
+Hanifen NNP
+Pagnol NNP
+Japanese-managed JJ
+Carvain NNP
+Privatizing NN
+war-dirty JJ
+transferred VBN VBD JJ
+appalled VBN JJ
+Berea NNP
+No-o-o UH
+protruded VBD
+grassroots NNS
+handymen NNS
+Concocts VBZ
+post-mortal JJ
+opera NN
+Decorated VBN
+divesting VBG
+contemplate VB VBP
+Newspeak NNP
+com NN
+CHARLES NNP
+Domeier NNP
+co-publisher NN
+fatigue NN VBP
+more-attractive JJ
+verisimilitude NN
+racked VBN VBD
+snow-covered JJ
+millions NNS CD
+better JJR JJR|RBR RBR|JJR JJ RB VB RBR
+worsening VBG JJ NN
+misconstructions NNS
+surpasses VBZ
+indefatigable JJ
+fortune-happy JJ
+critical JJ
+p.a. NN
+Colorliner NNP
+ungracious JJ
+hartes NNS
+neuron NN
+recorders. NNS
+cottage NN
+radiators NNS
+civil-rights NNS JJ NN
+Fear NN NNP
+Martini NN NNP
+Drouot NNP
+Thiele NNP
+PLACE NNP
+Search VB
+well-tailored JJ
+Gizenga NNP
+-20-degrees CD|NNS
+pilferers NNS
+Estonian JJ NNP
+bone-marrow NN
+Innopac NNP
+sang-froid FW
+combative JJ
+mockups NNS
+resent VBP VB
+Hercule NNP
+Gregoire NNP
+intercompany NN
+Resistol NNP
+MiGs NNPS
+Silences NNS
+break-in NN
+Scotch-and-soda NN
+Spago NNP
+executions NNS
+prepare VB VBP
+Su NNP
+Messaggero NNP
+Federico NNP
+Walinsky NNP
+seduces VBZ
+low-power JJ
+Metals NNP NNS NNPS
+shuttles NNS VBZ
+icecap NN
+Faust NNP
+anti-market JJ
+tolerance NN
+Tracor NNP
+strategically RB
+sun NN VB
+Ass'n NNP
+bonnets NNS
+pearl-handled JJ
+institute-sponsored JJ
+Adley NNP
+two-inch-square JJ
+Charta NNP
+Fukuyama NNP
+disapproves VBZ
+desegregation-from-court-order NN
+N.V NNP NN
+entailed VBD VBN
+Mortgage-Backed JJ NNP
+Bandaging NNP
+Perro NNP
+Hafner NNP
+fireball NN
+deputies NNS
+Gord NNP
+vibrant JJ
+squash NN RB
+stator NN
+Salant NNP
+purse-snatchings NNS
+lawyering NN
+Straighten VB
+Panisse NNP
+Came VBD
+McGrath NNP
+Physiological NNP JJ
+post-1997 JJ
+aloof JJ RB
+plowed VBN VBD JJ
+reached VBN VBD
+subparagraph NN
+overtones NNS
+appeased VBN VBD
+F.E. NNP
+Byting VBG
+Farney NNP
+record-tying JJ
+virgin JJ NN
+Kunz NNP
+thong NN
+Yankee-come-lately JJ
+Patrolmen NNP
+organized-crime NN
+provoke VB VBP
+RID VB
+Re-creating VBG
+peaceful JJ
+income-earner NN
+noncommittal JJ
+summarized VBN VBD
+nitroglycerine NN
+sinning NN
+Assab NNP
+Dollar NN NNP
+duffers NNS
+simulcasting VBG
+skin NN
+Turkey. NNP
+Big NNP JJ NN
+Buskirk NNP
+doomsayer NN
+Fabbri NNP
+indiscriminate JJ
+Hiroaki NNP
+Minnelli NNP
+Worth NNP JJ
+fizzes VBZ
+Taps VBZ
+mega-problems NNS
+chicks NNS
+scooped VBD
+Socola NNP
+turkey NN JJ
+phenonenon NN
+Legalization NN
+Roskind NNP
+Balanchine NNP
+Belvidere NNP
+Oersted NNP
+deepened VBD VBN
+hydrolyzed VBN
+stains NNS VBZ
+per-sale JJ
+growing-waiting NN
+Gadwani NNP
+alignments NNS
+constables NNS
+halts NNS VBZ
+speakin VBG
+languishing VBG JJ
+altered VBN JJ VBD
+Hits NNS
+evaporated VBD VBN
+bellwethers NNS
+Pascagoula NNP
+allocator NN
+Heffernan NNP
+Full JJ NNP
+benign JJ
+ochre JJ NN
+Resorts NNPS NNP
+lynch VB
+trill NN
+Reporter NNP NN
+conceived VBN VBD JJ
+Wolstenholme NNP
+extrusion NN
+qualifying VBG
+Huskers NNPS
+immodesty NN
+peonies NNS
+dedication NN
+of'idling NN
+far-from-conciliatory JJ
+lockers NNS
+necking NN
+POPs NNS
+loudspeakers NNS
+biochemicals NNS
+electronics-distribution NN
+Cashion NNP
+Courtrai NNP
+glitz NN
+Roh NNP
+Graf NNP
+whitehaired JJ
+Australia-based JJ
+Donovan NNP
+Lintner NNP
+gracefulness NN
+leaching NN
+Moineau NNP
+Hetty NNP
+Landini NNP
+uses VBZ NNS
+pre-1967 JJ
+emergency NN JJ
+campaigned VBD VBN
+Marie-Louise NNP
+cavities NNS
+dada NN
+SAT NNP
+Anglo-Argentine NNP
+ushering VBG
+bug-free JJ
+R.F. NNP
+drained VBN VBD
+Gutermann NNP
+Teddy NNP
+Injury NNP NN
+tos NNS
+overwrought JJ
+bequeathed VBN VBD
+registries NNS
+pales VBZ NNS
+playful JJ
+Epinal NNP
+playland NN
+Sprite NNP
+Begin VB
+green-brown JJ
+prey NN VBP VB
+Neoliberal JJ
+subatomic JJ
+run-of-the-mill JJ
+discrepancies NNS
+Lodging NN
+repulsion NN
+plagiarize VB
+keychain NN
+T-cell NN
+arbitrage NN
+Blackman NNP
+eight-page-a-minute JJ
+sheltering VBG
+Lynch-led JJ
+colde MD
+Hunkerish JJ
+SCI NNP
+Conventional JJ NNP
+Mirella NNP
+'Let's PRP
+bolsters VBZ
+nondemocratic JJ
+Hanoi NNP
+Possible JJ
+Bern NNP
+brats NNS
+lob VB
+already-nervous NN
+anhemolyticus NN
+JUNK NN
+Petey NN
+four-year-old JJ
+supplanting VBG
+Mitsuo NNP
+tip-off NN
+greeter NN
+wree NN
+Sacramento-based JJ
+singles NNS VBZ
+accumulate VB VBP
+climax NN VB
+Mareham NNP
+unscented VBN
+washbasin NN
+fool NN JJ VB
+nonmaterial JJ
+chapel NN
+Torchmark NNP
+pastilles NNS
+appearin VBG
+Patients NNS NNPS
+Mennen NNP
+Telecussed VBD
+Cadillacs NNPS NNS
+Finnair NNP
+hit-run NN
+Mater NNP
+Wrightson NNP
+Chiron NNP
+fund-objective JJ
+subs NNS
+slaps VBZ NNS
+gypsy NN
+resembling VBG
+Kurd NNP
+NAIR NNP
+activities NNS
+sheets NNS
+Maroy NNP
+Patsy NNP
+optimistically RB
+excrutiatingly RB
+Cuddleback NNP
+single-most-needed JJ
+boy-furiendo NN
+singsonged VBD
+burrow NN VB
+conjugal JJ
+STREET NNP
+spawns VBZ
+espouses VBZ
+cultural JJ
+Confucian NNP JJ
+linguist NN
+Beefeater NNP
+Yigal NNP
+phonic JJ
+Bernhardt NNP
+charter-shipping JJ
+neoprene NN
+coat NN VB
+glad-handing NN
+home-delivery NN
+intoxication NN
+c NN LS NNP NNS
+VCOR NNP
+interceptor NN
+Minna NNP
+Norell NNP
+Caniglia NNP
+general-election NN JJ
+Poetry NNP NN
+frugal JJ
+Schultz NNP
+attributed VBD VBN
+dressed VBN JJ VBD
+Sim NNP
+unflaky JJ
+reforms NNS
+evoking VBG
+DMB&B\/International JJ
+knowledgeable JJ
+stream NN VB
+sternal JJ
+roared VBD
+Strawbridge NNP
+Properties NNP NNPS NNS
+speaks VBZ
+climbs VBZ NNS
+Thermopylae NNP
+inconclusive JJ
+Usurpations NNS
+Sedan NNP
+frightening JJ VBG
+Ingrid NNP
+eel NN
+damnation NN
+Borromini NNP
+Wa NNP ,
+darken VBP
+money-lending JJ
+Lonrho NNP
+upgraded VBN VBD JJ
+Correlations NNS
+layman NN
+Theocracy NN
+U.N.-sponsored JJ
+collected VBN VBD
+Lots NNS
+transforming VBG
+phraseology NN
+'How WRB NN
+compliments NNS
+Tulsa NNP NN
+PTA NNP
+Choice NN NNP
+anti-party JJ
+close-up NN
+trusted VBN VBD JJ
+Merchants NNP NNS NNPS
+Regretfully RB
+obligating VBG
+asham JJ
+S.C.-based JJ
+step-father NN
+lightweight JJ NN
+fusillade NN
+Paraquat NN
+panting VBG JJ NN
+tweaking VBG NN
+dainty JJ
+roofed VBN
+Paschall NNP
+dosage NN
+weaker JJR RBR
+Participating VBG
+rainier JJR
+Ingham NNP
+con JJ NN RB VB FW IN
+malpractices NNS
+Southeast NNP JJ NN RB
+Bolar NNP
+PENTAGON NNP
+hero-worshippers NNS
+LYNCH NNP
+AFP NNP
+succulent JJ
+cloudless JJ
+idealistic JJ
+well-servicing JJ
+Esopus NNP
+crematoriums NNS
+Theorem NN
+near-disaster NN
+casks NNS
+Jahn NNP
+Mytton NNP
+Ceecee NNP
+tripped VBD VBN
+staunchly RB
+Obey NNP
+monastic JJ
+effort... :
+all-victorious JJ
+Athens NNP
+disapprove VBP VB
+line-pairs NN
+language-housekeeper JJ
+Zaporogian NNP
+Gore NNP
+Six-month JJ NNP
+lessor NN
+transnational JJ
+BCD NNP
+repackaging VBG
+'scuse VB
+Del.-based JJ
+beneficient JJ
+wholesaling VBG NN
+cyclist NN
+aerosal NN
+Skating NNP
+lath NN
+dinners NNS
+Spanish-American NNP JJ
+Leader NNP
+stacker NN
+above-average JJ
+hydroxylation NN
+Affordable NNP JJ
+Bourbons NNPS NNP
+Swaine NNP
+nitrous JJ
+exit-poll JJ NN
+Easterners NNS NNPS
+contradiction NN
+GRX NNP
+love-making NN
+veer VB
+Tucker NNP
+operands NNS
+brandishing VBG
+noncombat JJ NN
+Mennonites NNPS
+desert-bound JJ
+navigating VBG
+Third-quarter JJ NN
+deferments NNS
+pleads VBZ
+spinal JJ NN
+pretreatment NN|JJ
+thick-skulled JJ
+clamors VBZ
+foliage NN
+Laramie NNP
+highly RB
+Lal NNP
+Ranke NNP
+surgical JJ
+Mellow JJ
+sheik NN
+Nouvelle-Heloise NNP
+whir NN
+anti-Sony JJ
+primitivism NN
+Tamales NNPS
+Durban NNP
+Rebs NNS NNPS
+Alt NNP
+Holding NNP VBG
+Csathy NNP
+takeover NN
+defends VBZ
+Ramon NNP
+starboard VB
+Lids NNS
+disciple NN
+polls NNS VBZ
+regulates VBZ
+abortion NN
+brimming VBG
+chandelle VB
+Everyman NNP
+dealer-related JJ
+pooh-poohed VB
+well-wishing NN
+Pageant NNP NN
+pacifism NN
+Goldie NNP
+re-enacting VBG
+Urben NNP
+Sport-King NN
+reintroducing VBG
+gunloading NN
+CBS-K NNP
+procession NN
+Derwin NNP
+Equate VB
+Bognato NNP
+NCAA NNP
+faces VBZ NNS
+announcment NN
+gateways NNS
+mid-40s CD
+distinguishing VBG JJ
+whiskered JJ
+Quite RB PDT JJ
+Administrator NNP
+Bensonhurst NNP
+hurricane NN
+serenity NN
+club NN
+Reuveni NNP
+certainty NN
+Journeys NNS
+Those DT NNP
+Af-stage JJ
+Glenne NNP
+Moravian NNP
+caliber NN
+roughed VBD
+transplants NNS
+market:8.80 CD
+BRITISH JJ
+Jagt NNP
+bins NNS
+misuse NN VB VBP
+excuses NNS VBZ
+Chair NNP
+foxes NNS
+Carty NNP
+super-spy NN
+befuddling VBG JJ
+Euratom NNP
+entered VBD VBN
+Sandburg NNP
+Spelman NNP
+wiggle NN JJ VB VBP
+exhaustingly RB
+lucked VBD
+gonna VBG
+congressonal JJ
+energy-hungry JJ
+acquistion NN
+Metcalf NNP
+Call VB NNP NN
+dark-skinned JJ
+Coffin NNP
+goof-offs NNS
+Piccolino NNP
+Lemanowicz NNP
+larger JJR RBR
+Dictaphone NNP NN
+Palermo NNP
+Arkansas NNP NNS
+slimming VBG
+Elisa NNP
+unconcealed VBN
+planetoid NN
+Puts VBZ
+search-and-seizure JJ
+mainland NN JJ
+Grants NNPS NNP
+Popularism NN
+spells VBZ NNS
+high-cost JJ
+Batallion NNP
+parties NNS VBZ
+Abalkin NNP
+run-of-the-mine JJ
+quiz NN VB
+inter-German JJ
+Nasional NNP
+Indiana NNP
+fair-weather JJ
+SPERANDEO NNP
+ocean-going JJ
+Consisting VBG
+tot NN
+depletion NN
+HOMESTEAD NNP
+goody UH
+Sudan NNP
+Humility NNP
+Barrett NNP
+visualized VBD VBN
+candle-lit JJ
+immovable JJ
+seize VB VBP
+unhappiest JJS
+Westheimer NNP
+plausibility NN
+phoney JJ
+Newmont NNP
+attacking VBG NN
+Spiro NNP
+Almost RB NNP IN
+Eisenach NNP
+medium-to-long-range JJ
+lyricists NNS
+beatification NN
+nightclub NN
+spinach NN
+calculator NN
+Purdue NNP
+employer-sponsored JJ
+attain VB VBP
+EasyLink NNP
+straddled VBD VBN
+hardline JJ NN
+ICBMs NNPS
+target-language NN
+bingo NN
+Sparkling NNP
+Manuscript NNP
+co-pilots NNS
+Kinda RB
+unscripted JJ
+adopts VBZ
+conformed VBN VBD
+backrooms NNS
+trustee NN
+mandating'efficiency NN
+ratings NNS
+suffix NN
+friction-free JJ
+garden NN VB
+volumetrically RB
+Huggies NNPS
+a. NN
+Noctiluca NN
+rivulets NNS
+overlooking VBG
+make-ready NN
+perfidious JJ
+father-confessor NN
+Vanderbilt NNP
+Kuster NNP
+pork-barrelers NNS
+s'excuse FW
+Jimbo NNP
+outright JJ RB
+Cleota NNP
+investment-advisory NN
+Harrigan NNP
+reactors NNS
+abilities NNS
+motoring VBG
+female JJ NN
+Intervenes VBZ
+nails NNS
+Publication NN NNP
+aberrations NNS
+asphyxia NN
+Hard NNP JJ RB
+combine VB NN VBP
+one-fifth NN CD JJ
+airfare NN
+susceptibilities NNS
+coal-like JJ
+Explicit JJ
+Threatening VBG
+technology NN
+evicted VBN
+Documents NNS NNP
+basic JJ NN
+police-dodging NN
+arbitrage`` ``
+seldom-stolen JJ
+Ed. NNP
+Nonresidential JJ
+outfox VB
+Merced NNP
+strategy NN
+unmeritorious JJ
+realists NNS
+Lott NNP
+detonated VBN VBD
+Lien NN
+COAHR NNP
+Hopis NNPS
+steamers NNS
+fomenting VBG
+utensils NNS
+Fergeson NNP
+Debbie NNP
+voter-approved JJ
+Sin NNP
+Galicia NNP
+auspicious JJ
+Manzanola NNP
+ovata NN
+Federated NNP
+exiting VBG
+Penniman NNP
+one-arm JJ
+sensation NN
+proof NN JJ
+volleyball NN
+leveraging VBG NN
+bypassed VBN VBD
+RIAA NNP
+sportsman NN
+neither DT NN RB CC
+Lightning NN
+prairie NN
+orchard... :
+Ginner NNP
+shorted VBN VBD
+Thousand NNP
+Quotable NNP
+comparing VBG
+grub NN
+AD\ NNP
+semitropical JJ
+crazed JJ VBD
+waterline NN
+Bachlund NNP
+different-color JJ
+Assad NNP
+anti-seizure JJ
+scanned VBD VBN
+bait NN VB
+FACES VBZ
+ghazal FW
+Bulloch NNP
+Pfizer NNP
+restriction NN
+Annandale NNP
+airborne JJ
+Kobe NNP
+not-ace NN
+coverings NNS
+forgeries NNS
+d FW LS NN
+Mercenary NN
+Buzz NNP
+lichen NN
+Palma NNP
+co-educational JJ
+placements NNS
+aspire VB VBP
+'As RB
+Rock'n NNP
+Physically RB
+Potomac NNP
+Mercifully RB
+psyche NN
+High-grade JJ
+precious-metals NNS JJ NN
+Encouragement NNP NN
+Calvary NNP
+consultations NNS
+estimated VBN JJ VBD
+Brock NNP
+Jamiesson NNP
+irreproducibility NN
+down RB IN|RB RBR VBP IN JJ NN RP VB
+convenience-food NN
+bankruptcy-court NN JJ
+conscription NN
+polymeric JJ
+takover NN
+inculcated VBD VBN
+specialist-firm JJ
+bragging VBG NN
+Pragmatism NN
+skip VB VBP
+co-manager NN
+Dust NNP NN
+playhouse NN
+Simultaneous JJ
+mineral-rich JJ
+Hawking NNP
+pigs NNS VBZ
+Birthday NN NNP
+sanction NN VBP VB
+Takamori NNP
+non-dischargable JJ
+newissue NN
+TELEVISION NN
+BCE NNP
+lower-than-planned JJ
+Lucinda NNP
+electronicmedical-equipment JJ
+Colors NNS NNPS
+Sunken NNP
+unselfishly RB
+pre-primary JJ
+Minks NNP
+believability NN
+City-based JJ
+excitements NNS
+nonrefundable JJ
+wranglers NNS
+facet NN
+trace NN JJ VB
+High-speed JJ
+Zygmunt NNP
+moreover RB
+besuboru FW
+GOODY NNP
+disunity NN
+Orchester NNP
+feminine JJ NN
+sup VB
+bullet-riddled JJ
+ex-chief JJ NN
+Wetten FW
+flood-prone JJ
+motivation NN
+cute JJ
+Hancock NNP
+Hesperus NNP
+ROOM NN
+postponement NN
+long-termers NNS
+tears NNS VBZ
+unappeasably RB
+Brillo NN
+Strip NNP VB
+Completed VBN
+wove VBD
+listens VBZ
+i.e. FW NN RP
+Ironweed NN
+Result NN
+Discovision NNP
+distilled VBN JJ
+Geman NNP
+Marulanda NNP
+Trivelpiece NNP
+Agricola NNP
+Kercheval NNP
+Armuelles NNP
+die-dead NN
+Micro NNP
+approve VB VBP
+cometh VBZ
+Vanous NNP
+outspend VBP
+workbooks NNS
+frightfully RB
+thoughtless JJ
+Bolshevistic JJ
+agreed-to JJ
+Sewer NNP
+unnatural JJ
+custodial JJ
+autocratic JJ
+screechy JJ
+communications-equipment NN
+virtuosi NNS
+desolation NN
+Tenneco NNP
+concurrently RB
+Anderson NNP
+Dutch JJ NNPS NNP
+differ VBP VB
+fluoropolymers NNS
+ILA NNP
+Hearn NNP
+gamma NN JJ
+Coleman NNP
+Calm JJ
+single-A JJ NNP NN
+Revolutionaries NNS
+McKid NNP
+Fiorina NNP
+SWITCHING VBG
+premiums NNS
+Torrance NNP
+Rebecca NNP
+DEMOCRATS NNS
+Littman NNP
+sluiced VBD VBN
+liberate VB
+Meets NNP
+Shortage NN
+noises NNS
+ribozyme NN
+Putt NNP
+filbert JJ
+crowns NNS
+satellite NN JJ
+clock-stopped VBN
+convoy NN
+Indexes NNS
+bluebonnets NNS
+devastate VB
+friendlily RB
+Alternatively RB
+lingering VBG JJ
+Francois NNP
+Eurodebt NNP
+Maine NNP
+deltoid NN
+Gianicolo NNP
+Performers NNS
+willy RB
+Finnsburg NNP
+resonated VBD
+H'all DT
+Mahran NNP
+Coulas NNP
+sued VBD VBN
+ownership... :
+Furious NNP
+Nightlife NN
+Gravesend NNP
+Getting VBG
+frittering VBG
+inferiority NN
+George-Barden NNP
+Legislators NNS
+.076 CD
+brok VBD
+blending VBG NN
+ascend VB
+AEW NNP
+enlightened JJ VBN
+single-store JJ
+triphosphopyridine JJ
+Dangling VBG
+pound-foolish JJ
+supply NN VBP VB
+careerists NNS
+cemented VBN
+druggist NN
+Cassa NNP
+brain-wave JJ
+Amicable NNP
+shrapnel NN
+Bancario NNP
+McCauley NNP
+overdeveloped JJ NN
+calibrates VBZ
+Lyon NNP
+profoundity NN
+trading-room NN
+Admarketing NNP
+Kimberly-Clark NNP
+code NN VB
+U.S. NNP JJ VBP
+France-Germany NNP
+wife NN
+wormy JJ
+Sensing VBG
+Furnaces NNP
+Ethicist NN
+Breed NNP NN
+form-dictionary NN
+pricking VBG
+peripherally RB
+squamous JJ
+anguished JJ
+Kaufman NNP
+Cay NNP
+Communist-inspired JJ
+Tepper NNP
+results-oriented JJ
+UAL'S NNP
+long-dormant JJ
+attracts VBZ
+anecdotes NNS
+loud-voiced JJ
+Ex-Premier NNP
+conjur NN
+CONFIRMED VBD
+Werter NNP
+Bates NNP
+Holzman NNP
+three-inch JJ
+seams NNS
+staggering JJ VBG
+double-A-minus JJ NN NNP
+Railroad NNP NN
+Creditanstalt-Bankverein NNP
+twisted VBN JJ VBD
+Once-only JJ
+federal-state-local JJ
+Saltiel NNP
+squatted VBD VBN
+European-branch JJ
+Setsuo NNP
+togs NNS
+nullifiers NNS
+panicking VBG
+Cervetto NNP
+bazaar NN
+heavenward JJ
+paying VBG JJ
+sanctified JJ
+Walcott NNP
+Kaiparowits NNP
+comers NNS
+toothless JJ
+voids VBZ
+relentlessness NN
+invert VB
+Samples NNS
+six-game JJ
+Hare NNP
+objectiveness NN
+axis NN
+dented VBD VBN
+crevices NNS
+gut-wrenching JJ
+Sandwiched VBN
+crazee JJ
+stultifying JJ
+dog-meat NN
+Belanger NNP
+appears VBZ NNS
+out-of-staters NNS
+one-person NN
+Eagle-Picher NNP
+occupying VBG JJ
+QUANTUM NNP
+slow-motion JJ
+Ravich NNP
+Haupts NNP
+be'somewhat VB
+AIA NNP
+rhetorical JJ
+Skippy NNP
+bald JJ
+Kissick NNP
+Alert NNP
+Um UH
+hattes NNS
+postscript NN
+Purely RB
+Greenfield NNP
+monohull NN
+Young NNP JJ NN
+palpitations NNS
+disclosing VBG
+ultravehement JJ
+dialectics NNS
+SAMOS NNP NN
+Deluxe NNP JJ
+blondes NNS
+document NN VB VBP
+melon-like JJ
+Bond NNP NN
+unspent JJ
+Halkett NNP
+Amp NNP
+Matisse NNP
+reverse VB JJ NN RB VBP
+roughhewn JJ
+font NN
+sweatband NN
+clenches VBZ
+SEPARATE JJ
+swaying VBG NN
+Covia NNP
+Nomo NNP
+nose-to-nose JJ
+Isolated JJ
+value-assessment NN
+A.A. NNP NN
+monumentally RB
+pre-1975 CD
+cock NN
+agenda-setter NN
+starvation NN
+FALTERS NNP
+Germany-based JJ
+Edisto NNP
+Deficit NNP
+anti-socialist JJ
+cringe VBP VB
+non-equity JJ
+Awareness NN NNP
+consulting NN JJ VBG
+Valleyfair NNP
+rate-of-return JJ
+trying VBG JJ NN
+Rattzhenfuut NNP
+bronchus NN
+Raimondo NNP
+subsidization NN
+just-revised JJ
+loudspeaker NN
+freestylers NNS
+improvised VBD VBN
+Soviet JJ NNP
+forty-fold JJ
+overtook VBD
+calculators NNS
+Cowan NNP
+Kwaishinsha NNP
+Divisional NNP
+district-by-district RB
+supertitles NNS
+straggling VBG
+arboreal JJ
+resumes VBZ NNS
+colorlessness NN
+actresses NNS
+single-B JJ NN NNP
+two-nosed JJ
+difficult JJ
+quota-cheaters NNS
+bridges NNS VBZ
+canopy NN
+range NN JJ VB VBP VBZ
+prince NN
+hopelessness NN
+separating VBG
+Reed NNP
+road-construction JJ NN
+seventeenth-century JJ
+ikey-kikey JJ
+PTC NNP
+fact-finding JJ NN
+Raccoons NNS
+Peterson NNP
+proportional JJ NN
+McGruder NNP
+Neue NNP
+prevalence NN
+PENCIL NNP
+usurped VBN
+chafing VBG JJ
+hedges NNS
+Vaezi NNP
+incorporated VBN JJ VBD
+Enron NNP
+Accuracy NN NNP
+Zworykin NNP
+prophecies NNS
+Bushby NNP
+third-generation JJ
+malpractice NN VB
+judgment-proof JJ
+whit NN
+three-ton JJ
+vortex NN
+Sutton NNP
+debt-induced JJ
+urban JJ
+cop NN
+DIET NNP
+payrolls NNS
+first-six JJ
+Guttman-type JJ
+risen VBN
+viability NN
+Regius NNP
+Zellerbach NNP
+Mexicanos NNP
+crckdown. NN
+freer-spending JJ
+root NN VBP VB
+refreshed JJ VBD VBN
+Stiff JJ
+stout JJ
+Adams NNP
+Tribune-Democrat NNP
+launderers NNS
+fatty JJ
+Riviera NNP
+pajama-clad JJ
+propping VBG
+tramway NN
+involuntary-control JJ
+disrupting VBG
+supermarket-refrigeration NN
+originals NNS
+ghostly JJ
+one-week JJ
+e NN NNP
+multimillions NNS
+thomp NN
+rockbound JJ
+RACIST JJ
+Sturgess NNP
+totalitarian JJ
+immense JJ NN
+enviously RB
+Hanover NNP
+sympathies NNS
+invertebrates NNS
+Masks VBZ
+traduced VBN
+Neidl NNP
+combing VBG JJ
+stock-appreciation NN
+velvet NN
+high-yield JJ NN
+Radetzky NNP
+inertia NN
+--who WP
+skid-row NN
+Scarsdale NNP
+Aysshom NNP
+landscaping NN VBG
+match VB VBP NN
+N.Y NNP
+contractually RB
+tannin NN
+heavy-faced JJ
+highland NN
+Mega-hits NNS
+durin NN IN
+Adella NNP
+well-meaning JJ
+ministrations NNS
+click NN
+milligram NN
+non-firm JJ
+battering VBG NN
+choreographed VBN JJ
+bless VB
+Gitano NNP
+Gustave NNP
+Libera FW
+viewless JJ
+paves VBZ
+Thomases NNP
+Farnham NNP
+Morley NNP
+eavesdrop VB
+adrenaline NN
+erasures NNS
+tells VBZ
+Vanderbilts NNS
+Shu NNP
+secretion NN
+sixty-two CD
+supremely RB
+nay RB
+tenure NN
+ordered VBD VBN JJ
+microcytochemistry NN
+Guillermin NNP
+Sovereign NNP
+S.p.A. NNP
+Amax NNP
+grown-up JJ NN
+Plus NNP CC
+Brando NNP
+ivory NN JJ
+misty-eyed JJ
+Splits NNS
+non-sentimental JJ
+globalists NNS
+gland NN
+Asher NNP
+Fund NNP NN
+harbinger NN
+Apalachicola NNP
+montage NN
+Caring VBG
+keys NNS
+armaments NNS
+anti-European JJ
+Goodman NNP
+determinedly RB
+breezy JJ
+custodian NN
+titillating VBG
+Malinovsky NNP
+frost-bitten JJ
+butter NN
+healthier JJR RBR
+Intourist NNP
+Matt NNP
+pungently RB
+Beghin NNP
+curving VBG
+Princeton\ NNP JJ
+integer NN
+Actively RB
+laggard JJ NN
+Perth NNP
+Josef NNP
+O-B NNP
+onlookers NNS
+nurseries NNS
+farm-supply JJ
+calamities NNS
+bandage NN
+Palestine NNP
+wraps VBZ NNS
+Toronto-area JJ
+Banfield NNP
+weeks NNS
+Cossack NNP
+even RB JJ VB RB|JJ
+Air-drifts CD
+Anfia NNP
+hundred CD
+proportionate JJ
+Pennington NNP
+trenches NNS
+presides VBZ
+vet NN
+Jorio NNP
+gas-company NN
+prisoner-made JJ
+follies NNS
+referent NN
+Tsou NNP
+swirl NN VB
+Breeding NNP
+spectacular JJ
+baseman NN
+Abruptly RB
+Aviazione NNP
+Mandom NNP
+Kenny NNP
+position-building NN
+Government-mandated JJ
+slavish JJ
+conduction NN
+witchcraft NN
+tenable JJ
+social-register JJ
+electrically RB
+PepsiCola NNP
+delinquents NNS
+functioned VBD VBN
+monastery NN
+Podell NNP
+Labe NNP
+Parson NNP
+sclerotic JJ
+Lowe NNP
+captain NN VBP
+drew VBD
+stabilizers NNS
+second-by-second JJ
+page-long JJ
+northerly JJ
+market:8.90 CD
+hopes VBZ NNS
+Brosterman NNP
+behavioral JJ
+Lufthansa NNP NN
+hopper NN
+stupidly RB
+PRICES NNS NN
+government-dominated JJ
+disagreements NNS
+spot-checking NN
+wire-tapping NN
+matting NN
+leaves VBZ JJ NNS
+Pindling NNP
+gyration NN
+un-English NNP
+baseball-loving JJ
+reveling VBG
+Totalitarianism NNP
+wallpaper NN
+confused VBN JJ VBD
+grotesques NNS
+Morehouse NNP
+Edgerton NNP
+knock VB VBP NN
+Gosson NNP
+pianissimos NNS
+Correspondence NN
+A.L.A.M. NNP
+involved VBN VBD JJ VB VBN|JJ
+lead\/sulfur NN
+field-sequential JJ
+Selectives NNPS
+Carolyn NNP
+bale NN VBP
+plausibly RB
+daggerman NN
+trended VBN
+oppressive JJ
+taxlow NN
+Morrill NNP
+Collaborative NNP
+patisseries NNS
+Anyhow RB NNP
+Persians NNPS
+Croissier NNP
+Armin NNP
+Seattlites NNS
+Cuba NNP
+steel-ingot NN
+superseded VBN VBD
+Buchheister NNP
+paredon NN
+Internatonal NNP
+Blanchard NNP
+pastor NN
+Participation NN
+Oversight NNP
+Dairymen NNP
+Hulks NNS
+Herzfeld NNP
+red-tipped JJ
+Britons NNPS NNS
+satirizes VBZ
+Proposals NNS
+sleazy JJ
+pebbles NNS
+Porretti NNP
+relax VB VBP
+assigns VBZ NNS
+AIB NNP
+Bruxelles NNP
+excel VBP VB
+Lingo NN
+aided VBN VBD
+five-ply JJ
+Macchiarola NNP
+less-than-successful JJ
+siesta NN
+fastballs NNS
+receptive JJ
+indictment NN
+Spahn NNP
+affilates NNS
+prayerful JJ
+poison-pill JJ NN
+prompted VBD VBN
+nonbanking JJ
+grows VBZ
+Cami NNP
+Wolfsburg NNP
+Shooting NN NNP
+far-away JJ
+stimulants NNS
+Notte NNP
+Marsden NNP
+LATE JJ RB NNP
+triumphs NNS VBZ
+thirty-seven CD
+grappling VBG NN
+Gateway NNP
+choreographers NNS
+PRO FW
+structively RB
+Lessening VBG
+bullshit NN VB
+put-option NN
+approving VBG
+frontiers NNS
+Corp.s NNP
+DRDW NN
+needled VBD
+moralizers NNS
+alpenglow NN
+autonomous JJ
+Antilles NNPS
+familistical JJ
+Anabaptists NNPS NNS
+nuzzled VBD
+Noticias NNP
+unaccountable JJ
+Codification NN
+commute VBP NN
+'Don't VB NN
+Ohara NNP
+Superdome NNP
+neckline NN
+spaced VBN JJ
+recursive JJ
+revoking VBG
+invulnerability NN
+credo NN
+Highlands NNP NNPS NNS
+name NN VB UH VBP
+highpriced JJ
+creature NN
+lottery NN
+menus NNS
+CEREAL NNP
+sprue NN
+downtrend NN
+girding VBG
+biologically RB
+Broglio NNP
+pouncing VBG
+slaughter NN VBP
+heavy-construction NN
+ventilation NN
+wan JJ
+reproducibilities NNS
+colluded VBD
+Undismayed JJ
+Pelham NNP
+moths NNS
+chilled VBN JJ VBD
+embassy NN
+Tennenbaum NNP
+beeped VBN
+CONCORDE NNP
+impurity NN
+bittersweet JJ
+falsely RB
+Canton NNP
+continents NNS
+fissured VBN
+Blanched VBN
+three-masted JJ
+darker JJR
+Hershel NNP
+Wurm NNP
+Successors NNS
+M-m-m UH
+non-polygynous JJ
+coordinated VBN VBD JJ
+clue NN
+mesh NN VBP VB
+quantitive JJ
+deduce VB
+Qintex-MGM\/UA NNP
+course-correction NN
+yodeling VBG
+fames NNS
+aplenty JJ RB
+Bullock NNP
+Comissioner NNP
+absolutism NN
+imprudently RB
+Continential NNP
+blest VB VBN
+Renewed VBN
+autocracies NNS
+consultation NN
+company-wide JJ
+PROSECUTOR NNP NN
+translatorfor NN|IN
+Geraetetechnik NNP
+artsy JJ
+press-freedom NN
+drawing VBG JJ NN
+decorate VBP VB
+unmiked VBN
+orthodontists NNS
+Detroit-over-San JJ
+Patents NNP
+single-D JJ
+sunbonnets NNS
+sits VBZ NNS
+gesturing VBG
+Dexedrine NNP
+bodied JJ
+HONECKER NNP
+networking NN VBG
+beadsman NN
+Berbera NNP
+Hartford\/Springfield NNP
+INFLATION NN
+Beefsteak NNP
+stakebuilding VBG NN
+Assn NNP
+Carbondale NNP
+flourishing VBG JJ
+Hanlon NNP
+thoroughly RB
+jeep NN
+froth NN VB
+Thieme NNP
+government-sanctioned JJ
+venerated VBN
+Nabisco NNP
+self-certainty NN
+antirealistic JJ
+activated VBN JJ
+locally RB
+traits NNS
+say-great JJ
+HOPES NNS VBZ
+retrial... :
+Blount NNP
+double-stage JJ
+periodic JJ
+nuclear-plant JJ
+ages NNS VBZ
+Askington NNP
+disjointed VBN JJ
+municipalities NNS
+nuclear JJ
+sur FW
+Centrality NN
+thirty-two CD JJ
+Pistol-whipping IN
+Chemfix NNP
+Marchers NNPS
+steel-import JJ
+greenhouse-effect JJ
+haunted VBN VBD JJ
+institutes NN
+hooked VBN JJ VBD
+Monday's NNP
+motets NNS
+other-nation JJ
+Priory NNP
+'way RB
+vacillate VB
+salty JJ
+Lao NNP JJ
+Laodicean JJ NNP
+Havana NNP
+bewildered VBN JJ
+calcium-supplemented JJ
+muzzling JJ
+Hello UH
+Paulus NNP
+Thorn NNP NN
+sowing NN VBG
+afterburners NNS
+Interscience NNP
+nester NN
+batch NN
+equine NN
+mortal JJ NN
+Bashers NNP
+bread NN
+wondrous JJ
+tugged VBD VBN
+demonetized VBN
+blunderings NNS
+gimbaled JJ
+hockey NN
+f NN
+Mishelevka NNP
+Wanderjahr NN
+Jail NNP NN
+Goldsmith NNP
+envy-quotient NN
+Rufenacht NNP
+unchanged JJ
+digital JJ
+crossroading VBG
+thrilling JJ
+sun-inflamed JJ
+two-disc JJ
+catalogs NNS VBZ
+racks NNS
+depreciated VBD
+charters NNS VBZ
+Trading NN NNP VBG
+breakage NN
+Yeah UH NNP RB
+Preti NNP
+Aunts NNS
+everlastingly RB
+wined VBD
+Brezhnev NNP
+productivity NN
+reconceptualization NN
+Bietnar NNP
+antecedents NNS
+coax VB
+containing VBG
+disagreement NN
+muscling VBG
+cowpox NN
+minimum-tax NN
+non-traditional JJ
+themes NNS
+Tata NNP
+GROWS VBZ
+powerfully RB
+B.V. NNP
+workingmen NNS
+Plants NNS
+humbling JJ
+.125 CD
+Messelt NNP
+pumping VBG
+Quickly RB
+Gian NNP
+interviewers NNS
+Cowboys NNPS NNP NNS
+terribly RB
+plotted VBN VBD
+unglued JJ
+macabre JJ
+dirhams NNS
+arbitrageurs NNS
+legal JJ
+Gibbon NNP
+Long-lived JJ
+Outfielder NNP NN
+democracies NNS
+orthodontist NN
+little-understood JJ
+Noxema NNP
+anti-hypertensive JJ
+ornraier RBR
+preparative JJ
+Erik NNP
+Astonishingly RB
+similiar JJ
+Majesty NNP
+complacency NN
+Miserables FW
+Mfume NNP
+Abrahamson NNP
+roofs NNS
+G-2 NN
+Besset NNP
+MIServer NNP
+Bouvardier NNP
+onstage NN RB
+Erdman NNP
+relay VB NN VBP
+Estancieros NNS
+Eiji NNP
+tinier NN
+prerogatives NNS
+clobbers VBZ
+exchequer NN
+tow NN RB
+scholarship NN
+Covey NNP
+Lionville NNP
+affiliating VBG
+smacking VBG
+Agricole NNP
+side-crash JJ
+Fed-watching JJ
+Korean-Americans NNPS
+state-run JJ
+choosing VBG NN
+Monopolies NNPS NNP
+concocted VBN VBD
+recommence VB
+Pell NNP NN
+TELV NNP
+hoi-polloi FW
+Sy NNP
+withdraw VB VBP
+archfool NN
+Sullam NNP
+Jahr FW
+carte NN
+order-imbalance NN
+IIT NNP
+USFL NNP
+Nordstrom NNP
+crudely RB
+hightechnologies NNS
+Supposedly RB NNP
+Sharp-witted JJ
+Serves VBZ
+artful JJ
+takeover-proof JJ
+Randolph NNP
+Pompano NNP
+artillerists NNS
+bum NN VBP JJ
+mollified VBN VBD
+Alors FW
+coastal JJ
+scouted VBD
+Chapelles NNPS
+hobbling VBG
+kaleidoscope NN
+unenunciated JJ
+gonne VBN
+often-ignored JJ
+Anglo-American NNP JJ
+Without IN NNP
+happened VBD VBN
+Asti NNP
+item-processing JJ
+Duque NNP
+putains FW
+Waste-management NN
+zinc-sulphide NN
+quasi-mechanistic JJ
+gist NN
+Milquetoasts NNS
+Crow NNP
+Lancome NNP
+expectancies NNS
+Hedda NNP
+cannibals NNS
+Marsh NNP
+Cochran NNP
+Reef NNP
+Elise NNP
+Dawson NNP
+stepwise RB JJ
+ophthalmic JJ
+Helaba NNP
+Holcomb NNP
+Builders NNPS NNP NNS
+relaying VBG
+credits NNS VBZ
+Iodination NN
+d'etat FW NN
+skis NNS
+Iglehart NNP
+scrambling VBG
+Ganis NNP
+rapped VBD VBN
+Doerner NNP
+countrywide JJ
+micoprocessors NNS
+universe-shaking JJ
+awfulness NN
+sandwich-type JJ
+aroused VBN VBD
+long-handled JJ
+life-or-death NN
+staves VBZ
+Rorschach NNP
+post-hearing JJ
+wornout NN
+Ebert NNP
+YOU PRP
+reassurance NN
+sales-incentive JJ
+Stilts NNP
+'This VBZ
+Enclosed VBN
+wrongdoing NN
+unused JJ
+abounding VBG
+pre-historic JJ
+PROSECUTORS NNS
+Buyers NNS
+sabers-along IN
+D.N. NNP
+gloved VBN JJ
+Roper NNP
+fooled VBN
+--4.8 CD
+handsomer JJR
+dismantles VBZ
+Nizer NNP
+Pena NNP
+microchannel JJ
+togetherness NN
+Boehmer NNP
+unequivocally RB
+Aragon NNP
+badmen NNS
+Farm-machine NN
+dressmaking NN
+Canning NNP
+Adult NN
+holdups NNS
+beebread NN
+antimonide NN
+taxable JJ
+Collector NNP NN
+out-of-state JJ
+Merrell NNP
+glee NN
+Cursed VBN
+vexing JJ VBG
+constraints NNS
+hurriedly RB
+bookings NNS
+DiGiorgio NNP
+Brealey NNP
+unelected JJ
+Westphalia NNP
+traffic-safety NN
+RACKS NNS
+interne FW NN
+Merabank NNP
+stepladders NNS
+lava NN
+Shiremanstown NNP
+Lewiston NNP
+creche NN
+liabilities NNS .
+aftereffects NNS
+Fifty CD
+Saigon NNP NN
+symptom-free JJ
+salvo NN FW
+abdominis NN
+Industrikredit NNP
+avant-garde JJ NN
+Industriels NNPS
+Gucci NNP
+yogurts NNS
+hypothalamus NN
+secco NN FW
+apostles NNS
+Nationalized VBN
+Peasants NNPS NNP NNS
+wish-lists NNS
+A,B,C,D NNP
+turquoise JJ NN
+universalization NN
+logjam NN
+Radio-television NN NNP
+sacrilege NN
+Lordstown NNP
+express-delivery NN
+Gortonists NNS NNPS
+Sexton NN NNP
+descents NNS
+suppress VB VBP
+Takeover-stock JJ
+senders NNS
+creek NN
+orginally RB
+crunch NN VB
+Blaikie NNP
+TAKING VBG
+beeps NNS
+wagon NN
+slash VB NN VBP
+Menuhin-Amadeus NNP
+diffusing VBG
+repentance NN
+currency-market JJ
+I-880 NN NNP
+armored-vehicle JJ
+Limits NNPS NNP
+workshop NN
+Religious JJ NNP
+mega-crash NN
+phosphines NNS
+troubleshooter NN
+gaging NN
+countercultural JJ
+Knogo NNP
+hooks NNS VBZ
+Surrealists NNS
+palazzi NNS NN
+Banbury NNP
+descramblers. NN
+Illick NNP
+quarter-century-old JJ
+Krapp NNP
+Yusaku NNP
+Videotron NNP
+unfurled VBN
+predicator NN
+GROWING VBG
+Rumack NNP
+co-managers NNS
+Patty NNP
+better-than-thou JJ
+ghoulish JJ
+Whitaker NNP
+Kwango NNP
+Hattori NNP
+Broadcast NNP
+mayors NNS
+Lap NNP
+photoelectrons NNS
+Prager NNP
+fantasize VBP VB
+adventurers NNS
+frivolously RB
+Cane NNP NN
+crease NN
+Trumped VBN
+emergent JJ
+neutrino-sized JJ
+Palme NNP
+peripherals NNS
+axle NN
+Vasady NNP
+tallest JJS
+MUNICIPALS NNS
+Valeri NNP
+Worry NN VB
+Goldstar NNP
+fine-featured JJ
+unpaintable JJ
+counterforce NN
+supporter NN
+Wetter NNP
+Tierno NNP
+rescheduled VBD VBN
+christened VBD VBN
+wonderfully RB
+brilliant JJ
+write-in NN
+Planter NNP
+Acreage NN
+wooooosh NN
+Pauleys NNPS
+Watch NN VB NNP
+consumer-products NNS JJ
+denounce VBP VB
+Apollinaire NNP
+managed VBD VBN JJ
+team-management NN
+raking VBG
+Ramos NNP
+Funeral NNP NN
+Hardest JJS RBS
+middle-class JJ NN
+unavailing JJ
+Studebaker NNP
+Sears NNP NNS
+Paata NNP
+miscarried VBD VBN
+Exchange-listed JJ
+one-day JJ
+circulates VBZ
+inflation-offsetting JJ
+McCarthy-era JJ
+carborundum JJ
+swaggering VBG
+Kailin NNP
+Beth NNP
+captious JJ
+coincides VBZ
+Chabrol NNP
+baptismal JJ
+Zaves NNP
+underwriters NNS ,
+accentuate VB
+We PRP NNP NN
+heebie-jeebies NNS
+appreciably RB
+chips NNS
+alters VBZ
+pressure-volume-temperature NN
+Despising VBG
+pacifist NN
+lined VBN VBD JJ
+Saperstein NNP
+perusing VBG
+Arcadian NNP
+Enemies NNS
+sundry JJ
+matriarch NN
+flounder VB
+electronic-trading JJ NN
+dead-end JJ
+equitable JJ
+Musica NNP
+Carved JJ
+g NN
+Dealers NNS NNP NNPS
+IPOs NNPS NNP NNS
+currency-exchange JJ
+thieving VBG JJ NN
+mildewy JJ
+Newarker NNP
+miniscule JJ NN
+underused VBN
+Hut NNP
+Proclamation NNP
+initial JJ NN VB
+Combo NNP
+radioactivity NN
+Disputado NNP
+Dolls NNP
+Bong UH
+Nerio NNP
+better-known JJ
+Wizards NNPS
+overrode VBD
+Emlyn NNP
+movie-star NN
+doomed VBN VBD JJ
+down. RP
+Co. NNP NN NNPS
+stationing VBG
+trusts NNS VBZ
+curt JJ
+odor NN
+electron-device NN
+symmetrical JJ
+scotch NN VB
+Mead NNP NN
+dialect NN
+Guildford NNP
+counterweight NN
+pedantic JJ
+legibility NN
+villa NN
+Sportswear NNP
+haircuts NNS
+Laverne\ JJ
+feudalistic JJ
+R.G. NNP
+Aarvik NNP
+Huff NNP
+unshed JJ
+codpiece NN
+BBN NNP
+C'est FW
+letter-writing JJ
+Faster JJR
+availability NN
+Naval NNP JJ
+building-control NN
+stillbirths NNS
+pours VBZ
+Gainers NNP NNS
+DM7,000 CD
+Hombre NNP
+Property-tax JJ
+passenger NN JJ
+Dracula NNP
+Tash NNP
+Pyo NNP
+Fancy NNP JJ
+easily RB
+Rosburg NNP
+Summerland NNP
+Sync NN
+SoftLetter NNP
+Riccardo NNP
+retarding VBG
+Spinley NNP
+hand-picked JJ VBN
+remembrance NN
+Surveying VBG
+skit NN
+Shapovalov NNP
+Ropes NNPS
+Worst JJS RBS
+bun NN
+Menilmontant NNP
+BBDO NNP
+debt-rating JJ
+Loopholes NNS
+forgetting VBG
+Galveston-Port NNP
+knobs NNS
+vice-chancellor NN
+Revising VBG
+log NN VB VBP
+rebalancing VBG
+Dronk NNP
+Kasler NNP
+weight-training NN
+motivations NNS
+beeswax NN
+Bovenzi NNP
+dignitaries NNS
+teller NN
+trend-following JJ NN
+Oslo NNP NN
+Tripod-Laing NNP
+Averae NNP
+profferred VBN
+fires NNS VBZ
+DM1,200 CD
+cerulean NN
+underprivileged JJ
+marginally RB
+AID NNP
+unsubstantiated JJ
+l'Independance NNP
+cave-like JJ
+Caravans NNPS
+Australian-American JJ
+Stomach NNP NN
+undetermined JJ
+Advertising NNP NN VBG
+insane JJ
+overcast NN JJ
+blitzing VBG
+Yegor NNP
+oust VB
+pertained VBP
+seven-week-old JJ
+Aloud RB
+Contant NNP
+system-specific JJ
+SEC NNP
+expansion-contraction NN
+Athalie NNP
+bounty-hunting NN
+'fess VB
+virtuoso JJ NN
+EARNINGS NNS
+Maack NNP
+pressured VBN JJ NN VB VBD
+Musial NNP
+Favor VB
+repository NN
+Greek-born JJ
+twists NNS VBZ
+Arbor NNP
+method NN
+Spokane NNP
+championed VBN VBD
+ngandlu FW
+unexciting JJ
+rotund JJ
+cold-war JJ
+SONGsters NNS
+Packwood NNP
+deadpan JJ
+Sonenberg NNP
+Stempel NNP
+Sir NNP NN UH
+Thorp NNP
+situ FW
+Friar NN
+divinity NN
+substratum NN
+blight NN
+Strict JJ
+airmail NN
+ordnance NN
+Tupper NNP
+Mis-ter NNP
+sparkplugs NNS
+Yuki NNP
+pathways NNS
+lass NN
+wanderer NN
+ruled VBD VBN
+Waigel NNP
+Tu NNP
+two-dozen JJ
+Chartres NNP
+enhancing VBG
+scepticism NN
+attractively RB
+Wings NNPS NNS
+Birkel NNP
+decorating NN VBG
+re-living NN
+skullcap NN
+listening VBG NN
+spectrometric JJ
+megadrop NN
+Nussbaum NNP
+loathes VBZ
+Motley NNP
+Fakty NNP
+Kia NNP
+Hapgood NNP
+sentiments NNS
+nerds NNS
+Matchbox NNP
+youngish JJ
+Bert NNP
+contrasts NNS VBZ
+showpiece NN
+Fung NNP
+praised VBD JJ VBN
+Stuckert NNP
+sardonic JJ
+gooey JJ
+beacon NN
+exemptions NNS
+Welland NNP
+Butane NN
+Geologists NNS
+Nakhamkin NNP
+transpired VBN VBD
+propellers NNS
+buckwheat NN
+Funding NNP NN
+Collateralized NNP
+petals NNS
+houseboat NN
+somersaulting JJ NN
+closed-circuit JJ
+despicable JJ
+Third-party JJ
+pinch-hit VB
+Larkin NNP
+butterfat NN
+one-point JJ
+Berkely NNP
+bake-offs NNS
+proposed... :
+snapback NN
+decreased VBD VBN
+Linsert NNP
+straws NNS
+JUDGES NNS
+overbearing JJ
+reappearance NN
+IBCA NNP
+Mulloy NNP
+adapters NNS
+Observations NNS
+Up IN RB RP NNP
+Qui FW
+elation NN
+denied VBN VBD
+coiffure NN
+El-Abed NNP
+BCI NNP
+worried VBN VBD JJ
+Migliorino NNP
+Liebler NNP
+love'em NN VB
+overreach VB
+dessert-menu NN
+Fortified VBN
+Inns NNPS
+half-expressed JJ
+Cohens NNPS
+interconnect NN VB
+present-time JJ
+ultra-safe JJ
+druther VB
+Campbell-Mithun NNP
+integrates VBZ
+unsupportable JJ
+choreographer NN
+non-Korean JJ
+handiest JJS
+road-building JJ NN
+Ellesmere NNP
+Yunian NNP
+Antarctica NNP
+Acres NNP
+multiplying VBG
+gyro-stabilized JJ
+bosom NN
+colonnade NN
+fumed-oak JJ NN
+Coelho NNP
+Mueller NNP
+swinger NN
+lesbians NNS
+persuades VBZ
+revs VBZ
+Hence RB
+minimizing VBG
+desolations NNS
+Rubens NNP
+pre-literate JJ
+SDI NNP
+no. NN
+Hartfield-Zodys NNP
+Pablo NNP
+microfilm NN
+indict VB
+goofed VBD
+sidewinder NN
+Novell NNP
+trip-hammer NN
+ferry NN VB
+metabolize VB
+rattling VBG NN
+leaker NN
+McLendon-Ebony NNP
+driveway NN
+outgoing JJ VBG
+backlogs NNS
+Nest NNP
+unenticing JJ
+Varlaam NNP
+Localism NN
+Erburu NNP
+investor-owned JJ
+Inquiry NNP
+Hoexum NNP
+Shakespeare NNP NN
+Chula NNP
+disfavored JJ
+poured VBD VBN
+Niels NNP
+newsies NNS
+abides VBZ
+worthlessness NN
+Touchstone NNP
+Heath NNP
+Extremadura NNP
+replied VBD VBN
+network-wide JJ
+rolled VBD VBN JJ
+Liebenow NNP
+morality NN
+government-approved JJ
+Origins NNP
+Trumps NNPS NNP
+unhurriedly RB
+Blamed VBN
+creating VBG
+recused VBN
+hems NNS
+Snap-On NNP
+Drexel NNP NN
+Tel NNP
+workstation NN
+Lynx NNP
+Ann NNP
+Saxon NNP JJ
+Hassenberg NNP
+coco NN
+staffing VBG JJ NN
+toned-down JJ
+Didion NNP
+twang NN
+redoubt NN
+anticorruption NN
+Bodmer NNP
+give VB NN VBP
+swerving VBG
+Brands NNP NNPS NNS
+beluga NN
+prospective JJ
+Southmark\/Envicon NNP NN
+succumb VB
+Besher NNP
+toil VBP NN VB
+emperor NN
+Sells NNP VBZ
+impenetrable JJ
+Syndrome NNP
+feedback NN
+Insurances NNPS
+electrode NN
+Bierce NNP
+Assimilation NNP
+Bellow NNP
+Farnese NNP
+Conrail NNP
+Amee NNP
+manikin NN
+enlargd VBN
+Hadassah NNP
+slow-startup JJ
+octaves NNS
+Ron NNP
+dabs VBZ
+catcher NN
+cyclicals NNS
+Stammering NN
+gratified VBN JJ
+higher-cost JJ JJR
+thin-slab JJ
+Democratique NNP
+appalls VBZ
+cost-effective JJ
+boathouses NNS
+Caddyshack NNP
+rock-ribbed JJ
+half-dozen NN JJ
+baksheesh NN
+statuary NN
+crumminess NN
+forfeited VBN
+Biehl NNP
+pre-assault JJ
+Jack-an-Apes NN
+value-judgments NNS
+pre-legislative JJ
+specters NNS
+pro-Trujillo JJ
+Dods NNP
+Shih NNP
+clientslose JJ
+unexpected JJ
+broadest JJS
+Spacenet NNP
+voluble JJ
+IAFP NNP
+resolution NN
+toy NN JJ
+Geza NNP
+flavorings NNS
+Improves VBZ
+spins VBZ
+twice-daily JJ
+skulls NNS
+relegating VBG
+crouched VBD VBN
+Chandler NNP
+Theodor NNP
+h NN
+agriculturally RB
+Montgoris NNP
+trade NN VBP VB
+capricious JJ
+Masket NNP
+Cotran NNP
+hay-shakers NNS
+Monopoly NN NNP
+prize-winning JJ
+Speakers NNS
+paraphrasing VBG
+radar-controlled JJ
+canceling VBG
+appropriating VBG NN
+title NN
+canvass NN VB
+injunction NN
+coed NN
+Ohioan NNP
+emitted VBN VBD
+snapdragons NNS
+tens NNS
+shoreline NN
+McDermott NNP
+atavistic JJ
+Kuse NNP
+supraventricular JJ
+incorporates VBZ
+Negmegan NNP
+near-record JJ NN
+Shtromas NNP
+impudently RB
+nips NNS
+Deli NNP
+subversive JJ
+lapsed JJ VBD VBN
+jazz NN
+locker-room NN
+longest JJS
+Astronaut NN
+minimum-capital JJ
+Selassie NNP
+Gram JJ NNP
+domed JJ
+cadres NNS
+out-of-door NN
+Cameras NNS
+Furze NNP
+Weider NNP
+skiff NN
+invest VB VBP
+free-travel JJ
+Side NNP NN
+via IN
+near-by IN JJ
+desk-legs NN
+money-losing JJ
+telemarketers NNS
+--what WP
+Cairo NNP NN
+shoji FW
+GSX NNP
+stand-ins NNS
+Brannon NNP
+tumors NNS
+Esteban NNP
+feint NN VB
+obligation NN
+raffish JJ
+born-again JJ
+Drabble NNP
+dinkiest JJS
+treating VBG
+Squibb NNP
+Gim- NNP
+Pretl NNP
+economic-forecasting JJ
+outlined VBN VBD JJ
+caloric JJ
+gagging VBG
+last JJ NN RB VB VBP
+Norodom NNP
+Soldatenko NNP
+lyriist NN
+Abbot NNP
+flashed VBD VBN
+Studios NNP NNPS NNS
+Murakami NNP
+legislative JJ
+Projections NNS
+summarizes VBZ
+embarrassment NN
+Amt FW
+Sherlund NNP
+historic JJ
+digs VBZ NNS
+objectives NNS
+forty-year JJ
+striped JJ
+Gutzon NNP
+whimpers NNS
+originally RB
+out'n IN
+Advocate NNP
+cackly RB
+bounce VB VBP NN
+wanting VBG
+Sis NNP
+slow-scrambling JJ
+fingerprinting NN VBG
+Davidowitz NNP
+'90s NNS CD
+chelicerates NNS
+incidence NN
+prayer NN
+Farmaco NNP
+cost-benefit JJ
+Tropical NNP
+neo-dadaist NN
+Snaresbrook NNP
+systematically-simple JJ
+extorted VBD
+shortsighted JJ
+incomes NNS
+Tiernan NNP
+no-layoff JJ
+debate... :
+spills NNS VBZ
+marine-related JJ
+playwrights NNS
+-.5 CD
+furry JJ
+Buffeted VBN
+Arbitraging VBG
+pre-1986 JJ
+reloaded VBD VBN
+x-rays NN NNS
+evaporates VBZ
+annoyed VBN VBD JJ
+dashboards NNS
+dramatizations NNS
+Burned VBN
+Davidowitz. NNP
+defies VBZ
+stop-limit JJ
+WITHHELD VBN
+neuter NN
+ground-handling NNS NN
+discordantly RB
+Steppers NNPS NNS
+cusp NN
+genocide NN
+pre-date VB
+broad JJ
+Wreckage NN
+navigation NN
+tastes NNS VBZ
+Shemiatenkov NNP
+slanting VBG JJ
+illuminations NNS
+Unpleasant JJ
+socio-structural JJ
+error-laden JJ
+Suzuka NNP
+--telegraph VBP
+biblical JJ
+ever RB RBR RP
+stiff-backed JJ
+affording VBG
+underfoot RB
+Testimony NN
+Spahr NNP
+Lemmon NNP
+Sunda NNP
+staff-cutting VBG
+honeybee NN
+Nineteen-sixty NNP
+neuropsychiatric JJ
+cot NN
+Vendors NNS
+track NN VBP VB
+columbines NNS
+stir VB VBP NN
+Widget NNP
+Sick NNP JJ
+quarantine VB
+egg NN
+flags NNS VBZ
+venturers NNS
+Lifeboat NNP
+Clan NNP
+home-buying JJ NN
+Editor NNP NN
+Sleight NNP
+pierce VB
+buttocks NNS
+Beatie NNP
+hi-tech JJ
+Angeles-Pasadena NNP
+embarrassments NNS
+glossed VBD VBN
+OCN-PPL NNP
+catchword NN
+Cantor NNP
+reregulation NN
+rises VBZ NNS
+most-strident JJ
+May\ NNP
+wickedness NN
+Yankees NNP NNPS NNS
+multipleuser JJ
+hormone-treated JJ
+engulfing VBG JJ
+Minwax NNP
+slate NN JJ
+Proctor NNP
+House-passed JJ
+Boake NNP
+Sindona NNP
+necessitating VBG
+Guffey NNP
+Accomplishing VBG
+chemist-turned-entrepreneur NN
+fly-boy NN
+Detecting VBG
+Erin NNP
+beget VB VBP
+enlarge VB
+Kehl NNP
+eruption NN
+Brandt NNP
+Charlton NNP
+catches VBZ NNS
+Rubik NNP
+whereupon IN
+Iwatare NNP
+Heart NNP NN
+TRADE NN NNP
+probate NN
+Cookies NNS
+piers NNS
+calmness NN
+APPLIED NNP
+Fontainebleau NNP
+corpuscular-radiation NN
+Rapids NNP NNPS
+Patiently RB
+Ghez NNP
+invader NN
+Cube NNP
+Browne NNP
+Boni NNP
+media-linked JJ
+Dodd-type NNP
+Bugle NNP
+snow-fence NN
+I.S. NNP
+Houston-based JJ NNP
+Nicklaus NNP
+necessity NN
+Information NNP NN
+premiered VBD
+undervaluing VBG
+inter-species JJ
+Spatiality NN
+non-compete JJ
+percussionist NN
+diaper-changing JJ
+esplanade NN
+flat-bed JJ NN
+chopping VBG NN
+gastronomes NNS
+Shy JJ NNP
+Memorex NNP
+Kansai NNP
+Dodgers NNP JJ NNPS
+white-majority JJ
+Culture NNP NN
+chin-up IN VB
+Tadeusz NNP
+Westinghouse NNP
+NAACP NNP
+noisy JJ
+egotist... :
+Mayberry NNP
+federal-right JJ
+Georgene NNP
+citizen-sparked JJ
+Mednis NNP
+Asian JJ NNP
+floppies NNS
+dramatical JJ
+hogs NNS
+antilock JJ
+tolerant JJ
+function NN VB VBP
+D'Arlay NNP
+intraparty JJ
+'ello UH
+three-sectioned JJ
+attributes NNS VBZ
+parables NNS
+Sprecher NNP
+squares NNS
+snagged VBN VBD
+work-paralysis NN
+tomblike JJ
+vulnerabilities NNS
+Richmond NNP NN
+Shahrokh NNP
+coated VBN JJ
+Anglo-Dutch JJ NNP
+catalog-clothing-merchandiser NN
+staining NN VBG
+Y-Teen NNP
+high-pitched JJ
+private-bank JJ
+believe VBP VB
+irks VBZ
+teahouses NNS
+invocation NN
+ravines NNS
+worth-waiting-for JJ
+proportioned JJ
+Deputy NNP JJ
+openly RB
+Canion NNP
+Aktiebolaget NNP
+restarted VBN VBD
+vex VBP
+inducement NN
+Weil NNP
+algebra NN
+legion JJ NN
+Quiksilver NNP
+Conditions NNS
+Quietism NNP
+geldings NNS
+Hells NNP
+seamy JJ
+Delmont NNP
+wrappin VBG
+comest VBP
+philanthropy NN
+options-related JJ
+Telephone NNP NN
+Brinsley NNP
+uncle NN
+Bowsher NNP
+Windfall NN
+retracting VBG
+fights NNS VBZ
+super-rich JJ
+fulllength JJ
+Perth-based JJ
+low-to-no-fat JJ
+campaigns NNS
+electronic-data JJ NN|NNS
+givenness NN
+Sportswriters NNS
+tent NN
+contrabass NN
+common-sensical JJ
+meaningful JJ
+half-heartedly JJ
+truce NN
+ungoverned JJ
+Sapporo NNP
+LOOKING VBG
+carry-in JJ
+Ryskamp NNP
+BROAD NNP
+Incest NN
+wage-rate JJ
+intoned VBD VBN
+injustice NN
+disquieting JJ
+pro-Hearst JJ
+televised VBN JJ
+impose VB VBP
+Gran NNP NN
+trichloroethylene NN
+nebular JJ
+thunder-purple JJ
+securities-turnover JJ
+product-marketing NN
+Suspected VBN JJ
+dictator NN
+aerials NNS
+parachuting VBG
+Merkur NNP
+rushing VBG NN
+IOUs NNS
+thence RB
+Hauser NNP
+ART\/artifact NN
+ERNST NNP
+diagnoses NNS VBZ
+admirable JJ
+naturalized VBN JJ
+Leger NNP
+Nyckeln NNP
+striptease NN
+Zeron NNP
+dispersant NN
+shamefacedly RB
+Burgundy NNP
+Principle NN NNP
+penchant NN
+pact NN
+cross-margining JJ NN
+Amber NNP
+simplicitude NN
+Alfonse NNP
+Feed VB NN
+custody NN
+Well-Seasoned JJ
+underpriced JJ VBN VBN|JJ
+Orders NNS NNPS
+Broeg NNP
+Mastro NNP
+marbles NNS
+curds NNS
+Tossing VBG
+Viscerally RB
+Poet NNP NN
+JFK NNP
+spandrels NNS
+gallium NN
+Brumby NNP
+required VBN VBD JJ
+Key NNP JJ NN
+reimburse VB VBP
+sidelight NN
+taxable-equivalent JJ
+Milberg NNP
+McBee NNP
+multiple-choice JJ
+remarkably RB
+Euripides NNP
+JURORS NNS
+Gospels NNP NNPS NNS
+i NN FW NNP NNS
+vampirism NN
+Chye NNP
+budget-cutting NN
+Ratican NNP
+first-mortgage JJ NN
+accurate JJ
+Opinion NNP NN
+everything NN
+hour-long JJ
+Efficiencies NNS
+Dashitchev NNP
+'People NNS
+SEE VBP
+balance-wise JJ
+play-by-play JJ
+Handelsbank NNP
+IDs NNS
+guzzler NN
+commission... :
+Uncommon JJ
+auto-strop JJ
+Lenders NNS NNP
+gulping VBG
+foot NN VBP JJ VB
+unsurprised JJ
+TEXAS NNP
+Yokuts NNP
+barking VBG NN
+chromatogram NN
+A.B. NNP NN
+trumpet NN VBP
+Flavel NNP
+law-abiding JJ
+favorableness NN
+Sit VB NNP
+staginess NN
+GUN NNP
+Ladbroke NNP
+Celebrating NNP
+Readerman NNP
+Snug-Grip NNP
+purifier NN
+Wiesenthal NNP
+coupons NNS
+IMA NNP
+Jenks NNP
+exaggerate VB VBP
+general-interest JJ
+Schaefer NNP
+castlelike JJ
+lugs NNS
+Armisteads NNPS
+Handbook NN NNP
+Slavs NNPS
+immunities NNS
+uterus NN
+Abernathy NNP
+gunfights NNS
+industrialized VBN JJ
+field-hands NN
+Fiorini NNP
+invades VBZ
+footsy NN
+Belding NNP
+immunosuppressive JJ
+Tate NNP
+non-white JJ
+HRB NNP
+Gunthrop-Warren NNP
+Scouts NNPS
+choreographic JJ
+get-out-of-my-way JJ
+ocean-shipping NN
+W.L. NNP
+skyline NN
+Piddington NNP
+war NN NNP VB
+Eubanks NNP
+intercourse NN
+Linsenberg NNP
+baptized VBN
+one-percentage-point JJ
+betrayal NN
+self-proclaimed JJ
+Hark NNP
+concentrations NNS
+shipboard NN JJ
+corduroys NNS
+spilled VBD VBN
+Ski NNP NN
+WOODSTOCK NNP
+Crisco NNP
+cost-recovery JJ
+Eisai NNP
+metropolitan JJ NN
+domain NN
+Imperial NNP JJ NN
+Mlangeni NNP
+flanked VBD VBN
+RESEARCHERS NNS
+Press NNP NN VB
+oil-driller NN
+founder-originator NN
+Amateur NNP JJ NN
+medium-grade JJ
+unaccountably RB
+fireworks NNS
+Naderites NNS
+Strafaci NNP
+Prevent VB
+rival-bashing JJ
+Tarkington NNP
+Earthquake NN NNP
+gangbusters NNS
+min NN
+Ginnie NNP
+World's NNS
+cat-like JJ
+absurdist JJ NN
+paramount JJ
+whitewashed VBN
+dryin VBG
+angelfish NN
+Yerevan NNP
+visualizes VBZ
+Jake NNP NN
+bird NN
+sacrificing VBG
+Perennial JJ NNP
+Kochis NNP
+conceiver NN
+waters NNS
+M.C. NNP
+unearth VB
+Kleenex NNP
+health-care-product NN
+Glumly RB
+Gradison NNP
+bemoaned VBD
+much-abused JJ
+Joint-research JJ
+revelling VBG
+up-scale JJ
+digits NNS
+foamed JJ VBD VBN
+wretchedness NN
+accompanists NNS
+grower NN
+Avions NNP
+merger-acquisition JJ
+NOVEMBER NNP
+occasional JJ
+offi NNS
+insemination NN
+calorie NN
+Repeatedly RB
+respond VB NN VBP
+Healthvest NNP
+puddles NNS
+prednisone NN
+biographer NN
+synchronism NN
+half-crocked JJ
+Haselhoff NNP
+Spain NNP
+Liquor NNP NN
+stakes NNS VBZ
+Louvre NNP
+jamming NN
+deride VBP
+Las NNP
+maladies NNS
+four-in-hand JJ
+adoptions NNS
+Cicognani NNP
+Intelogic NNP
+Hutton NNP
+Casper NNP
+swimsuit NN
+Arden NNP
+nonmembers NNS
+insider NN JJ
+grabbed VBD VBN
+Task NNP
+in-and-outer NN
+dramatist NN
+self-professed JJ
+Goldin NNP
+Ruxpin NNP
+multitasking VBG NN
+Girard NNP
+bacterium NN
+Luger NNP
+chirped VBD
+Chances NNS NNP
+brawl NN
+counter-successes NNS
+tape-recorded VBD JJ
+blueprint NN
+NURSING NN
+condominium NN
+olefins NNS
+unpopularity NN
+surged VBD VBN
+fifty-one CD
+remoteness NN
+broad-scale JJ
+guppies NNS
+thudding VBG
+Perry NNP
+Glickman NNP
+baddebt JJ
+whiz NN UH
+customarily RB
+issuers NNS
+doubting VBG JJ
+Klesken NNP
+Gorshin NNP
+Warming VBG
+impertinent JJ
+cylinders NNS
+directmail NN
+Aero-Space NNP
+soldered VBN
+reconciled VBN
+Vale NNP
+Ten CD NNP
+critics NNS
+boringly RB
+postal-business JJ
+skids NNS
+contradict VB VBP
+co-chairmen NNS
+rivalry NN
+islanders NNS
+Fuller NNP
+garb NN
+ice-baggers NNS
+coagulating VBG
+Smarter RB RBR
+licit JJ
+lullaby NN
+historically RB
+arteriosclerosis NN
+Slovenian JJ
+Santiago NNP
+phase NN VB
+Orens NNP
+ionosphere NN
+calling VBG NN
+chocks NNS
+hansom JJ
+Bobby NNP
+non-dividend-bearing JJ
+Everywhere RB
+proffer VB
+inexorably RB
+fresco NN
+Inexplicably RB
+stews NNS
+beavers NNS
+technologies\ JJ
+Georgia-based JJ
+Raeder NNP
+coloring NN
+Putka NNP
+REIGNS VBZ
+unnerved VBD JJ
+guzzles VBZ
+Dowie NNP
+freighter NN
+long-rumored JJ
+Avco NNP
+preparatives NNS
+Rensselaer NNP
+excelling VBG
+Schreibman NNP
+Ape NNP
+stronger JJR RBR
+modular JJ
+mumbo-jumbo NN
+Perpetual JJ
+movie-of-the-week NN
+sequestering NN
+E-71 NNP
+to... :
+Panam NNP
+Gortari NNP
+functionaries NNS
+jingling VBG
+leapfrog VB NN
+extensively RB
+anteaters NNS
+naked JJ
+plant-science NN
+Tarzana NNP
+limited-substitution JJ
+adolescent NN JJ
+teamsters NNS
+suitcase NN
+one-half-point JJ NN
+deplorable JJ
+El-Sadr NNP
+steakhouse NN
+Favre NNP
+,'t- PRP
+gnomon NN
+Westport NNP
+globe-spanning JJ
+Muir NNP
+Felec NNP
+frog-haiku NN
+keenest JJS
+Writer NNP
+fastening NN
+yo-yo NN
+surely RB
+bubbles NNS VBZ
+gunfighter NN
+Millay NNP
+blushing VBG
+lavatory NN
+vapor NN
+Screvane NNP
+fourth-class JJ
+conceives VBZ
+stepchildren NN
+motherhood NN
+Celica NNP
+instrumentally RB
+minin VBG
+Midler NNP
+Planeten NNP
+iceberg NN
+agayne RB
+lackluster JJ NN RB
+Deutsch NNP
+interlaced VBN JJ
+osseous JJ
+Combs NNP
+incident NN JJ
+Yancy-6 NN
+once-vast JJ
+Matz NNP
+planters NNS
+separation NN
+Gutwein NNP
+damaged VBN JJ VBD
+overnighters NNS
+Moskovskaya NNP
+Transporting VBG
+allusiveness NN
+theatergoers NNS
+AIG NNP
+Maccabeus NNP
+Giurleo NNP
+-c NN
+Smoldering VBG
+saps VBZ
+upper-level JJ
+travelled JJ VBD VBN
+human-rights JJ NN NNS
+Quake NN
+Mauch NNP
+Amana NNP
+und FW NN
+Gosh UH
+whacked VBD VBN
+Kurnit NNP
+Jovian JJ
+Edgar NNP
+Allumettes NNP
+Glayre NNP
+LOBBIES VBZ
+Trish NNP
+Koffman NNP
+Ridder NNP
+Colquitt NNP
+non-code JJ
+spleen-crushing JJ
+sympathy... :
+Eminase NNP
+disaffected JJ
+Reached VBN
+isocyanate NN
+obscene JJ
+mated VBN
+Leiden NN
+free-market JJ NN
+on-campus JJ
+banners NNS
+coordinates NNS VBZ
+Verdes NNP
+funerals NNS
+polluting VBG JJ
+expositions NNS
+styryl-lithium NN
+brushing VBG NN
+scholarships NNS
+Willkie NNP
+Investment-grade JJ
+stock-investing JJ
+naphtha NN
+shorten VB VBP
+Marantz NNP
+Snezak NNP
+j NN
+versus IN CC FW
+disruption NN
+cantonment NN
+mortar NN
+Theory NNP
+G'ahn VB
+implement VB VBP
+Mlle NNP
+exercised VBN VBD JJ
+uh-huh UH
+Marlowe NNP
+Pallo NNP
+half-melted JJ
+downtalking JJ
+Noxell NNP
+Vollard NNP
+amenities NNS
+insides NNS
+Airedale NNP
+Calves NNS
+complacent JJ
+fifties NNS CD
+Omega NNP
+was VBD :
+Nope UH
+balk VB VBP
+kidney-shaped JJ
+improviser NN
+cofactors NNS
+NEKOOSA NNP
+drastic JJ RB
+affiliation NN
+Milwaukee-based JJ
+Jeyes NNP
+Kid NNP NN
+once-dry JJ
+axioms NNS
+Donnybrook NNP
+Ironpants NNP
+DataComm NNP
+working VBG VBG|JJ VBG|NN JJ NN
+LIBOR NNP
+Canastels NNP
+imputed VBN JJ
+boating NN VBG
+Collins NNP NN
+environing VBG
+post-mortem JJ NN
+cat-and-mouse JJ
+Gramm-Rudman-Hollings NNP
+Continuation NN
+avaliable JJ
+group-identity NN
+collectivizers NNS
+revenue-sharing JJ
+DeVries NNP
+Payless NNP
+rebel NN VBP JJ VB
+beadle NN
+poorer JJR RBR
+Milkens NNPS
+chicly RB
+Frick NNP
+Borscht NNP
+mio FW
+retrogradations NNS
+anthropologists NNS
+editorialists NNS
+pillar NN
+Winfield NNP
+pay-back JJ
+Dishonesty NN
+Tuborg NNP
+mother NN VB
+Protestant-dominated JJ
+Abra NNP
+pushy JJ
+Quist NNP
+basil NN
+president\/product NN
+ingrained JJ
+co-operate NN VB
+Haole FW
+fluid NN JJ
+Volare NNP
+ex-investment JJ
+chicken-mutilating JJ
+Bessie NNP
+creep VB VBP JJ NN
+Elite NNP
+Namibian-independence NN
+shiftless JJ
+SEPARATED VBN
+expressed VBN VBD JJ
+monthsit NN
+unselfish JJ
+porosity NN
+promise... :
+Searby NNP
+snugly RB
+well-structured JJ
+Perennian NNP JJ
+courtyard NN
+ketches NNS
+Lebanon NNP
+Sandwiches NNS
+chambered VBN
+spavined JJ
+non-trade JJ
+titter NN VBP
+faring VBG
+documenting VBG
+employe NN
+suspending VBG
+Merner NNP
+muscle NN VB
+groups NNS
+Melvyn NNP
+FREEZE VB
+Waterseller NNP
+Wein NNP
+repair NN VB VBP
+FARMERS NNS
+nontraditional JJ
+perishing VBG
+Assam NNP
+flip-flop NN VBP JJ
+lobstermen NNS
+HOT JJ NNP
+paraded VBN VBD
+Coors-Stroh NNP
+Madrigal NNP
+BEA NNP
+nise JJ
+moire JJ
+single-job JJ
+Congress's NNP
+lumpier JJR
+Topps NNP
+birth-control NN JJ
+billion-franc NN
+Financially RB
+Galapagos NNP
+Singles NNS VBZ
+capturing VBG
+Composite NNP JJ NN
+Monahan NNP
+irrevocable JJ
+Whitman NNP NN
+Elliman NNP
+create VB VBP
+Perot-EDS JJ
+appropriation NN
+shellfire NN
+Non-Smokers NNP
+APARTHEID NNP
+flirt VBP
+mininum-wage NN
+attended VBD VBN
+Dell NNP
+Auger NNP
+domestic JJ NN
+Reckitt NNP
+Francona NNP
+Pitfalls NNS
+Olde NNP
+worshipping VBG
+pranha NN
+Screenwriter NN
+firmwide RB
+immediacy NN
+Gildas NNP
+Dutchman NNP
+palazzo NN
+Rodolfo NNP
+Detail NNP
+Time-Life NNP
+settings NNS
+Tunisia NNP
+Gold-oriented JJ
+Offering NN NNP VBG
+Accounts NNS NNP NNPS
+pastrami NNS
+interplanetary JJ
+porridge NN
+flinty JJ
+canvases NNS
+history NN
+Chatset NNP
+scrawled VBD JJ VBN
+Writes NNP VBZ
+improvises VBZ
+Loyalist JJ
+babbiting NN
+Schulze NNP
+mediocrities NNS
+sycophantishness NN
+lithograph NN
+Yoshiharu NNP
+Bioanalytical NNP
+doomsayers NNS
+Olav NNP
+rubberized VBN
+Korra NNP
+fan NN VBP VB
+laboratory-services JJ NNS
+screams NNS VBZ
+extensive JJ
+circumcision NN
+Dressed VBN
+frost NN
+microbes NNS
+tactile JJ
+Reforms NNS
+Us NNP NNPS PRP
+Hux NNP
+Waldholz NNP
+discuss VB VBP
+taper VB NN
+char-broiled JJ
+merveilleux FW
+Bandon NNP
+migratory JJ
+Manderbach NNP
+EUROP NNP
+Lisbeth NNP
+mother-in-law NN
+Time-servers NNS
+southern JJ
+Trustco NNP
+NORIEGA'S NNP
+Neitzbohr NNP
+visiting VBG JJ
+eight-thirty JJ
+Navistar NNP
+low-profit JJ NN
+clear-cut JJ
+uplifting JJ VBG
+fore NN RB
+Vallecas NNP
+night-watchman NN
+sites NNS
+Drivon NNP
+G-7 NNP CD NN
+DePaul NNP
+floorboards NNS
+Tong'Il NNP
+Khustndinov NNP
+kinetic JJ
+Funk NNP
+haystacks NNS
+Mercy NNP
+device NN
+satiric JJ
+Filippo NNP
+acquiesence NN
+Keene NNP
+bartered VBN
+appendages NNS
+Newall NNP
+crazy JJ
+twenty-year JJ
+moth-like JJ
+Overbuilt JJ
+electric-utility JJ NN
+Unfortunately RB
+neuroblastoma NN
+Panting VBG
+century NN
+Karim NNP
+crashlet NN
+SYDNEY-Qintex NNP
+Rainier NNP
+Cutrere NNP
+obtained VBN VBD VBP
+Pedestrian NNP
+low-polluting JJ
+caked VBN VBD
+AGS NNP
+Syrian JJ
+Rubin NNP
+warm-weather JJ
+Propaganda NNP NN
+Daley NNP
+Koch NNP
+flag-burner NN
+medical-products NNS
+Glazier NNP
+Mardon NNP
+self-reinsure VB
+reincorporating VBG
+KAL NNP
+McKim NNP
+stroke NN VB
+massing VBG
+Huge JJ
+recheck VBP
+primarly RB
+SCR NNP
+arylesterase NN
+large-volume JJ
+computer-age JJ
+utmosts NNS
+kids NNS VBZ
+officially RB
+unglamorous JJ
+pike NN
+oxidized JJ
+Sort NN VB
+soundings NNS
+executive-level JJ
+indicated VBD JJ VBN
+wracking VBG
+Bangalore NNP
+neighborliness NN
+Utahans NNPS
+scrape NN VB VBP
+theatre NN FW
+upgrades NNS VBZ
+pharmacuetical JJ
+Calvet NNP
+deliveries NNS NN
+interbank NN JJ RB NN|JJ NN|RB NN|JJ|RB RB|NN|JJ
+wider-than-expected JJ
+pluck VB NN
+Peninsula NNP
+Bartville NNP
+roundtable JJ
+Cirona NNP
+brain-wracking JJ
+KHAD\/WAD NN
+storekeepers NNS
+state-trading JJ
+nonsurgical JJ
+Harm NNP
+Oddly RB
+Lexus NNP
+accumulating VBG JJ
+widen VB VBP
+Chairman-Elect NNP
+une FW
+Portrayal NN
+pump-action JJ NN
+Astoria NNP
+rose VBD VBP JJ NN
+Foliage NN NNP
+President-elect NNP
+bugeyed JJ
+deoxyribonucleic JJ
+Low-Income NNP
+ring-around-a-rosy NN
+rhymes VBZ NNS
+imperiled VBN JJ
+Confirmation NN
+stiffened VBD VBN
+abandons VBZ
+sweet-sounding JJ
+Italian-based JJ
+Cooler NNP
+American-trained JJ
+beavered VBD
+MiniSport NNP
+jerking VBG
+Hepker NNP
+Defends NNS VBZ
+Irish JJ NNPS NNP
+nigger NN
+loan-production NN
+Lynford NNP
+Notwithstanding IN
+ball NN
+straddles VBZ NNS
+Monilia NN
+USIA NNP
+Abortion-rights NNS JJ
+essentially RB
+Baldor NNP
+bated JJ
+degradation NN
+geneticist NN
+distiller NN
+cataclysms NNS
+portrait NN
+outs NNS
+sari NN
+grafting VBG
+Safer NNP
+Rigoletto NNP
+union-management JJ
+innovated VBD
+Valero NNP
+Interested VBN JJ
+attendee NN
+Zero-coupon JJ NN
+external-trade JJ
+chatted VBD
+Discover NNP
+Bolinder NNP
+counter-arguments NNS
+sufficent JJ
+lower-middle-class JJ
+break VB NN VBP
+kazoo NN
+savagery NN
+prim JJ
+tell-all JJ
+dusty-slippered JJ
+non-Jew NN
+betrays VBZ
+specialists NNS
+all-America JJ
+bequest NN
+Keebler NNP
+Excuses NNPS
+household-type JJ
+Amherst NNP
+designed VBN VBD
+McGonagle NNP
+ex-convicts NNS
+Lada NNP
+extrusions NNS
+unique JJ NN
+Morrissey NNP
+retail JJ NN VB VBP
+gapped VBD
+habit-forming JJ
+Cassius NNP
+Bermuda NNP JJ NN
+inviolate JJ
+Camp NNP NN
+tax-exempts NNS
+Air-to-ground JJ
+miniaturized VBN
+Halperin NNP
+undersold NN
+jibes NNS
+snowman NN
+cow NN VB
+furrows NNS VBZ
+reassurances NNS
+insipid JJ
+rebuilds VBZ
+k NN
+Onset NN
+Graeme NNP
+jure FW
+Rep. NNP
+backwater NN JJ
+Nikita NNP
+Bendectin NNP
+Hispano NNP
+Distorts NNP
+barley NN
+hailing VBG
+virologist NN
+emission NN
+Kleinaitis NNP
+Advil NNP
+let-down NNS
+gusto NN
+falls VBZ NNS
+Archipelago NNP
+Parties NNS
+Alla NNP
+cultured JJ VBN
+Santucci NNP
+Situation NNP
+privatization-consulting JJ
+general-appeal JJ
+middle-age JJ NN
+manipulator NN
+Mitofsky NNP
+Bess NNP
+JAPANESE JJ
+two-way JJ
+triple-A-rated JJ VBN
+Campagnoli NNP
+rice NN
+spine-chilling JJ
+Vichy NNP
+TVSM NNP
+pressure... :
+generator NN
+boogieman NN
+cap-and-ball JJ
+devlopments NNS
+progressively RB
+cruelly RB
+government-controlled JJ
+Devlin NNP
+Softly RB
+tacking VBG
+Photoprotective NNP
+Peng NNP
+flared VBD VBN JJ
+rudiments NNS
+Burmese JJ NNP NNS
+Meidinger NNP
+Barth NNP
+timberland NN
+gymnasts NNS
+supersedes VBZ
+Engisch NNP
+recreational JJ
+assuming VBG
+Governor-General NNP
+tag'em NN
+alchemists NNS
+footprints NNS
+P&S NNP
+CH-47D NNP
+flail NN
+Bynoe NNP
+Acknowledges VBZ
+Gorenstein NNP
+Gustavo NNP
+Weinshienk NNP
+graceful JJ
+mural NN
+loading NN VBG
+Trustee NNP
+ACCOUNTANTS NNS
+prohibiton NN
+Ninomiya NNP
+Boxwood NNP
+Ratings NNS NNPS
+Kessler NNP
+F.G. NNP
+slants VBZ NNS
+arguments NNS
+Gertrude NNP
+tapes NNS
+Farmer-in-the-Dell NNP
+estimates NNS VBZ
+art-auction NN
+Gorbachev-era NN
+Homicide NNP NN
+Porsche NNP
+rekindling VBG NN
+Nation NN NNP
+U.N.F.P NNP
+Ebbutt NNP
+talented JJ
+Neb.-based JJ
+Stoppard NNP
+testament NN
+berths NNS
+double-crossing NN
+succumbed VBN VBD
+patrolled VBN VBD
+False NNP JJ
+Right-hander JJ
+eventshahleh RB
+Hash NNP NN
+redrawn JJ
+Collateral NN
+bumptious JJ
+Dolly NNP
+Disaster NN
+Esber NNP
+city-dweller NN
+Smokey NNP
+ten-gallon JJ
+ColoradoUte NNP
+Hassey NNP
+wintering VBG
+Dad NNP NN
+Hopson NNP
+Jacobsen NNP
+Combine VB
+coaching NN VBG
+cutlass NN
+Hanover-Bertie NNP
+Parliament NNP
+sewed VBD VBN
+Joanna NNP
+frets VBZ
+Ty NNP NN
+wherewithal NN JJ
+Per-share JJ
+semi-minor JJ
+utter JJ VBP VB
+blots NNS VBZ
+Karin NNP
+Nonsense NN
+poll-taker NN
+Dining NNP VBG NN
+Arriving VBG
+Forellen NNP
+Completes VBZ
+steroids NNS
+Derchin NNP
+Rubio NNP
+Gerosa NNP
+tool-kit NN
+redirected VBN VBD
+Beghin-Say NNP
+goofy JJ
+industrial-automation NN
+code-sharing NN
+Association-College NNP
+Lecheria NNP
+arbitrager NN
+moderate-income JJ NN
+fixed-repayment JJ
+Huy NNP
+Vicki NNP
+Neither CC DT IN RB
+medical-instrument JJ
+Prairie NNP NN
+bipartisan JJ
+twisty JJ
+Shorted JJ
+shelf NN
+refinements NNS
+what-will-T WP|MD|NP
+Hawkins NNP
+nearness NN
+Texoma NNP
+U.S.-backed JJ
+Koshare NNP
+LeCarre NNP
+Parsow NNP
+Antone NNP
+nice-looking JJ
+Medibank NNP
+word-weary JJ
+Rapier NN
+circumspection NN
+ayes NNS
+caffeine NN
+ruggedly RB
+Marvellee NNP
+Letter NNP NN
+inferior JJ
+slush NN
+cutouts NNS
+DM2,800 CD
+Bushes NNPS NNS
+Ribeiro NNP
+Credito NNP
+gloated VBD
+R.H. NNP
+bulb-making JJ
+borrowing NN JJ VBG VBG|NN
+once-balkanized JJ
+trims VBZ NNS
+Ninth NNP JJ
+decorticated VBN
+grouse VBP NN
+Krupp NNP
+consumer-finance JJ
+madcap JJ
+prowls VBZ
+Hwang NNP
+Cite VBP
+Antitrust NNP JJ
+two-sevenths NNS
+wished VBD VBN
+McKeon NNP
+kneel VB
+martyr NN
+fifth JJ NN RB
+seven-story JJ
+Blockbuster NNP
+Koerner NNP
+ever-expanding JJ
+Florian NNP
+Muki NNP
+song-writing NN
+natural-gas-pricing JJ
+concisely RB
+barrel-a-day JJ
+engineless JJ
+Sandlund NNP
+dresser NN
+unanswerable JJ
+high-yields NNS
+FK-506 NNP
+resonates VBZ
+rocket-propulsion NN
+costs NNS VBZ
+bus NN
+voce NN
+WNYW NNP
+Morgantown NNP
+weakling NN
+unforgettable JJ
+Breen NNP
+ROGERS NNP
+Barrick NNP
+diverge VB VBP
+forging VBG
+export-bound JJ
+permit VB VBP NN
+Jiaqi NNP
+untellable JJ
+Colin NNP
+unreflective JJ
+Sooraji NNP
+POWERS NNS
+A-plus JJ
+longer-range JJR JJ
+possessing VBG
+penny-stocks NN
+unsigned JJ
+paced VBD VBN
+bricklaying NN
+Japan-U.S NNP
+vie VBP VB
+Adds VBZ NNP
+reaches VBZ NNS
+Ghostbusters NNS NNP
+dragon NN
+basin NN
+Remington NNP
+Afield NNP
+great-grandchildren NNS
+grief NN
+Brookfield NNP
+debutante NN
+balm NN
+Reuschel NNP
+Muscovite NNP
+WABC NNP
+Determine VB
+Yukihiro NNP
+Terrell NNP
+Roswell NNP
+suds NNS NN
+Feigen NNP
+Gerardo NNP
+tuned VBN JJ VBD
+refresher NN
+Superconcentrates NNS
+self-sustaining JJ
+ached VBD
+comets NNS
+substandard JJ
+Maude NNP
+Arbitrary NNP
+simile NN
+Jackman NNP
+Trite JJ
+Olea NNP
+wavers NNS
+mini-supercomputers NNS
+Greasies NNS
+outshine VB
+Paychex NNP
+catering NN VBG
+united VBN VBD VBN|JJ JJ
+storyline NN
+Pels NNP
+storyteller NN
+Baily NNP
+squatter NN
+electives NNS
+wardrobes NNS
+Old-timers NNS
+Although IN
+Abrams NNP
+rhu-beb NN
+Politizdat NNP
+repulsions NNS
+Universal-Morning NNP
+incorrigible JJ
+doble NN
+Sportdom NN
+nerdy JJ
+Aterman NNP
+much-discussed JJ
+Aspencade NNP
+Rocket NNP
+outperform VB JJ VBP
+Franklin NNP NNPS
+Engelken NNP
+regrouped VBD VBN
+Erfurt NNP
+attracting VBG
+explusion NN
+Yuli NNP
+lats NNS
+Stringfellow NNP
+regardless RB
+Jewboy NN
+remote-site NN
+UnionFed NNP
+one-restaurant NN
+then-market JJ
+outlandish JJ
+flutter NN
+dynastic JJ
+Hafer NNP
+HRE NNP
+Subdivision NNP
+House-Senate NNP JJ
+telomeric JJ
+frigid JJ
+summed VBD VBN
+legitimating VBG
+snuffed VBN VBD
+all-Negro JJ
+Merchandising NNP
+skirted VBN VBD
+Behavior NN
+anachronistically RB
+toting VBG
+Olatunji NNP
+cosmopolitan JJ
+tiredness NN
+'20's CD
+Vehicles NNPS NNS
+Latvian JJ NNP
+flocculation NN
+reunited VBN
+Nijinska NNP
+multi-product JJ
+influence NN VB VBP
+DOONESBURY NNP
+BAY NNP
+stomachs NNS
+Best JJS NNP RBS|JJS RBS
+back-alley JJ
+Amneris NNP
+Moderate JJ
+jewelled JJ
+Assurances NNP NNPS
+aircraft-navigation NN
+firstpreference NN
+sogo-shosha NN
+predicting VBG NN
+inapt JJ
+crackers NNS
+Politicians NNS
+ANSA NNP
+letdown NN
+Narver NNP
+Blumberg NNP
+kebabs NNS
+clampdown NN
+even-handed JJ
+Brandy NNP
+successorship NN
+Penh NNP
+combat-tested JJ
+fermentation JJ NN
+electoral JJ
+vicars NNS
+Riordan NNP
+teats NNS
+formulations NNS
+Shook VBD
+paranoiac NN
+slam-dunk NN VB
+blabbed VBD
+growth-stunting JJ
+Lorentz NNP
+affidavits NNS
+limit NN VB VBP
+Tawana NNP
+Denali NNP
+legume NN
+concurred VBD VBN
+theoretically RB
+bid-to-cover JJ NN
+invisible JJ
+non-social JJ
+McN NNP
+mottled VBN JJ
+Transfer NN NNP
+Brandel NNP
+pushes VBZ NNS
+meridian NN
+Klipstein NNP
+rougher JJR
+adornments NNS
+Kansan NNP
+Coatings NNP
+reinterpret VB
+Zuckerman NNP
+doubled VBD VBN
+Runtagh NNP
+Siedlungs NNP
+Behind-the-scenes JJ
+l NN NNS
+gastronomy NN
+now-evident JJ
+Board-listed JJ
+alibis NNS
+Vectra NNP
+Buren NNP
+Price-earnings JJ
+supervoting JJ
+Delahanty NNP
+applause NN
+Yuko NNP
+wood-treating JJ
+permanent JJ
+genetic-engineering JJ
+probes NNS
+Brasilia NNP
+Newburgh NNP
+abate VB
+investing VBG VBG|JJ VBG|NN JJ NN
+deafened VBN
+Tannhaeuser NNP
+squeeze NN VBP VB
+GM-10s NNP
+Reds NNPS NNP NNS
+Polysilicon NN
+ceaselessly RB
+sewage NN
+air-service NN
+permanence NN
+stratum NN
+temperate JJ
+cesspools NNS
+ususal JJ
+blood-chilling JJ
+Nett NNP
+adrenal JJ NN
+Psalm NNP NN VB
+Gaylor NNP
+Nurses NNS
+receptionists NNS
+clemency NN
+Unwarranted JJ
+indices NNS
+Aden NNP
+amended VBN VBD
+gaucherie NN
+garnish NN
+freespender NN
+Tiber NNP
+UniHealth NNP
+options NNS
+Morocco NNP
+fast-developing JJ
+Fungible JJ
+resurrect VB VBP
+dresses NNS VBZ
+tear-jerking JJ
+absurdly RB
+well-bound JJ
+cross-subsidies NNS
+burglaries NNS
+double-breasted JJ
+medical-school NN
+Dae NNP
+elaborate VB JJ
+saluting VBG
+gossamer NN
+tone-generating JJ
+glossy JJ
+Moxley NNP
+hens NNS
+dullness NN
+motorbike NN
+Desir NNP
+Blondes NNP NNS NNPS
+vs. IN CC FW JJ NN
+Nasdaq\/National NNP
+wheels NNS
+post-split JJ
+Reverse VB VBP
+NATIONWIDE NNP
+Pedigree NNP
+spirituality NN
+Weinroth NNP
+million-unit JJ
+vices NNS
+Haijac NNP
+finalized VBN VBD
+dignified VBN JJ
+hewed VBD VBN
+agriculture NN
+Urals NNPS NNS
+filibuster NN VB
+Amstel NNP
+Cholet-Dupont NNP
+reasoning NN VBG
+beadwork NN
+flashlight NN
+unload VB VBP
+sweatsuit NN
+Ablard NNP
+Compromise NNP NN
+transcription NN
+Gide NNP
+indistinct JJ
+returning VBG
+bolted VBN VBD
+irretrievably RB
+journeyed VBD
+Anchisi NNP
+Nacchio NNP
+bidding NN VBG JJ
+Maddry NNP
+Hazel NNP
+Covell NNP
+hypoglycemia NN
+mopping VBG
+blood-pressure JJ NN
+mood NN
+phenomenon NN
+microwaved VBN
+Pensupreme NNP
+twofold JJ RB
+once-stodgy JJ
+persist VB VBP
+Otsego NNP
+union-represented JJ
+Rosenthal NNP
+Bridges NNP NNS NNPS
+reigning VBG
+gambled VBN
+Lown NNP
+Demery NNP
+unfriendly JJ
+retain VB VBP
+industry-funded JJ
+Duty NNP NN
+accent NN VB
+Haro NNP
+cassettes NNS
+Does VBZ NNP
+Maya FW
+Yusen NNP
+Yongjian NNP
+horse-playing JJ
+detests VBZ
+Robbins NNP
+Neapolitan NNP JJ
+Quietist NNP
+Objections NNS
+widowed VBN JJ
+sufficient JJ
+follow-through JJ IN NN
+vampire NN
+cps NNS
+good-night JJ
+High-yielding JJ
+Komurasaki NNP
+halvah NN
+teased VBN VBD
+contiguous JJ
+Job NNP NN
+Stoltzman NNP
+McVay NNP
+Paxson NNP
+Artzt NNP
+rests VBZ NNS
+slitter NN
+diapers NNS
+employee-owned JJ
+drafters NNS
+trilateral JJ
+customized VBN JJ
+burrowing VBG
+but CC IN JJ RB
+counterchallenge VB
+eosinophilic JJ
+spectrally RB
+clothbound JJ
+royalty NN
+car-leasing NN
+quantitative JJ
+shorter JJR
+superfast JJ
+Bonn NNP NN
+DALKON NNP
+Trucks NNS NNPS
+cathodes NNS
+block-buster NN
+Feldman NNP
+Zeros NNS
+infraction NN
+clothing NN
+antifraud NN
+Sandalphon NNP
+dairy NN JJ NN|JJ
+engineering-services NNS
+cocu NN
+aerator NN
+memorial NN JJ
+Belleville NNP
+GIVE VBP
+skirmished VBD VBN
+scanner NN
+Bussey NNP
+decoration NN
+handstands NNS
+pervert NN
+Sainsbury NNP
+Artificer NN
+thrown VBN
+mussels NNS
+self-government NN
+ejection NN
+mustache NN
+grassed VBN
+propagandists NNS
+rangelands NNS
+IRNA NNP
+pads NNS
+Hannes NNP
+Golomb NNP
+panic-driven JJ
+apex NN
+dust-swirling JJ
+shoving VBG
+about-faced VBD
+fire-fighting JJ NN
+SEI NNP
+Dominated VBN
+computer-related JJ
+trapdoor NN
+C-plane NN
+bilges NNS
+snitched VBN
+Amy NNP
+motel-keeping NN
+hinder VB
+Pampel NNP
+examples NNS
+Basket NNP
+tsh NN
+tandem NN JJ
+milkshakes NNS
+Emotional JJ
+mulitiplier JJ
+vodkas NNS
+equating VBG
+Hamilton-Dorgan NNP
+infantile JJ
+roofer NN
+comprising VBG
+micrometers NNS
+locating VBG
+business-as-usual JJ
+Six CD NNP
+Shin NNP
+loan-guarantee NN
+Panet-Raymond NNP
+discussions.. NNS
+bountyhunters NNS
+Ordered VBD VBN
+Enter VB
+Resist VB
+diffusion NN
+S*/NNP&L NN
+purchase-and-lease JJ
+were't VBD
+archaeologist NN
+Pflugerville NNP
+compete VB VBP
+Helms NNP
+Dearly RB
+Beallsville NNP
+findings NNS
+self-reliance NN
+Baytos NNP
+myocardium NN
+montgolfing NN
+vertebrate JJ
+Berndt NNP
+honoured VBN
+thumbnail NN
+foments VBZ
+Aon NNP
+Noon NNP
+Marciano NNP
+barns NNS
+hypoglycemic JJ
+PTL NNP
+Sully NNP
+feather NN VB
+Tartan NNP
+Steichen NNP
+makers NNS
+Schopenhauer NNP
+derogate NN
+cockroaches NNS
+Bibles NNPS NNP
+carry VB NN VBP
+asset-allocation JJ NN
+revolve VB VBP
+perceive VB VBP
+boomers NNS
+PMs NNS
+hellfire NN
+under IN JJ RB RP
+subpenaed VBN
+colds NNS
+embryos NNS
+skier NN
+Gras NNP
+Tosca NNP
+Hundred CD NNP
+Damas NNP
+coy JJ
+Jeffersons NNPS
+stitched VBN
+Nadelmann NNP
+quite-literal JJ
+Cliffs NNP NNPS
+bursting VBG
+Bonwit NNP
+Baseman NN
+disppointed JJ
+non-cyclical JJ
+Perham NNP
+Tettamanti NNP
+amalgamate VB
+PACS NNS
+Olay NNP
+Vikulov NNP
+child-care NN JJ
+superbly RB
+winds NNS VBZ
+trivializing VBG
+University-based JJ
+Lucretius NNP
+self-realized JJ
+rewt NN
+Panda NNP NN
+musicologists NNS
+helio-copter NN
+Compiegne NNP
+Melissa NNP
+Captain NNP NN
+Coupe NNP
+Berthelier NNP
+Tintoretto NNP
+Breweries NNP NNPS NNS
+bellowing VBG
+class-conscious JJ
+information-display JJ NN
+cures NNS VBZ
+distribute VB VBP
+Dershowitz NNP
+DIGS NNS
+switched VBD VBN JJ
+torch NN
+acceptance NN
+Edwina NNP
+Sintel NNP
+garment-industry NN
+Lift VB
+Whitley NNP
+curbing VBG
+sentimentalists NNS
+merited VBD
+Joachim NNP
+Fortman NNP
+Vector NNP
+abuse NN VB VBP
+fail-safe JJ
+unnumbered JJ
+precautions NNS
+Bridget NNP
+longshot NN
+Byzas NNP
+palliative JJ
+out-plunging JJ
+Law NNP NN
+Vegas NNP
+deader JJR
+wrath NN
+lowincome JJ
+Paperin NNP
+nuts-and-bolts JJ
+Fried NNP
+communicator NN
+hevin VBG
+MicroGeneSys NNP
+Paredon NN
+graham-flour-based JJ
+principal JJ NN NN|JJ
+Ellmann NNP
+Yields NNS
+Celebration NNP
+al-Husseini NNP
+p.m RB FW NN
+Sentry NNP
+Voroba NNP
+Faxes NNS
+binational JJ
+poised VBN VBD JJ
+achievement NN
+basically RB
+Hugh NNP
+bowling NN VBG
+weariness NN
+Soldiers NNS NNPS
+Bis NNP
+Palladio NNP
+thwarted VBN VBD
+explaining VBG VBG|NN
+baron NN
+Einsatzkommandos NNP
+hand-knit JJ
+Svevo NNP
+m NN
+monied JJ
+radii NNS
+slopped VBD
+woolly-minded JJ
+Selkin NNP
+become VB VBD VBN VBP
+SFD NNP
+Hergesheimer NNP
+Weybosset NNP
+Diggers\/Noise NNP
+hooves NNS
+Adrianople NN
+publishable JJ
+Possibly RB
+Provinces NNP NNPS
+Ant NN
+acknowledgment NN
+confuses VBZ
+carloading NN
+Sikes NNP
+Mutant NNP
+twister NN
+hands-off-all-sweets NNS
+Loire NNP
+seemingly RB
+Peterpaul NNP
+opponent NN
+Gersony NNP
+combination NN
+Struthers NNP
+sociological JJ
+involves VBZ
+novel NN JJ
+truck NN VB VBP
+b-Current JJ LS|JJ
+racket NN
+flatiron NN
+lumberyard NN
+Bankrolled VBN
+Uncertainty NN
+cash-flow JJ NN
+movingly RB
+fearsome JJ
+spurting VBG
+minicars NNS
+dimethylglyoxime NN
+social-services JJ
+Jean-Marie NNP
+Delegates NNPS NNP NNS
+Boesel NNP
+footballer NN
+superb JJ
+interrelated VBN JJ
+Delmore NNP
+Dynafac NN NNP
+cannibalism NN
+cliff NN
+Lea NNP
+remember VB VBP
+enslaving NN
+Lackland NNP
+tripe NN
+Amperex NNP
+Lottery NNP
+wignapping NN
+Agnos NNP
+Bilbrey NNP
+jostle VBP VB
+well-known JJ NN
+tooth NN RB
+Anac NNP
+intrauterine JJ
+Pyrex NNP
+abstracted JJ VBD
+yield VB VBP JJ NN
+Chardon NNP NN
+Pinola NNP
+Kleissas NNP
+Embassy NNP NN
+homopolymers NNS
+lonesome JJ
+rancor NN
+Guandong NNP
+tam-o'-shanter NN
+strains NNS
+eye-blink NN
+cadaverous JJ
+BRISTOL-MYERS NNP
+Ranks NNP
+harnessed VBN
+kylix NN
+Yves NNP
+Motherwell NNP
+overridden VBN
+Palmtops NNS
+Survey NNP NN
+unmurmuring JJ
+birthplace NN
+UNDER IN
+slopes NNS VBZ
+HUNGARY'S NNP
+plastic-coated JJ
+Flagler NNP
+Hiker NN
+backhoe NN
+Ladd NNP
+storehouse NN
+be... :
+archetypes NNS
+n-dimensional JJ
+April-June NNP
+mishaps NNS
+nagging JJ NN VBG
+Cheerios NNPS
+interlocking VBG JJ
+Drawing VBG NNP NN
+Mercer NNP
+Boogaard NNP
+Kodyke NNP
+programs NNS
+Komleva NNP
+publically RB
+obscuring VBG
+advanced-ceramics NN NNS
+Deland NNP
+retake VB
+galaxy NN
+art-historian NN
+K.L. NNP
+monk NN
+bronchiolitis NN
+overreact VB VBP
+Heebner NNP
+drafts NNS
+phosphor-screen NN
+Altman NNP
+Surviving NNP VBG
+Stirlen NNP
+rename VB
+dizzying JJ VBG
+plant-location JJ
+Burlington NNP
+Sabhavasu NNP
+quipped VBD NN
+Warman NNP
+Neurological NNP
+Locally RB
+Norddeutsche NNP
+Woodstream NNP
+published VBN JJ VBD
+Sorecom NNP
+celebrity NN
+pimplike JJ
+watery JJ
+nought NN
+world-freight NN
+Nuclear NNP JJ
+band NN VB
+Heave VB
+Aviva NNP
+prerequisites NNS
+zombie NN
+matured VBD VBN
+rubbin VBG
+fusillades NNS
+Equities NNPS NNP NNS
+Burge NNP
+Swank NNP
+fissures NNS
+rich JJ NNS NN
+orgasms NNS
+Volney NNP
+Weir NNP
+mechanisms NNS
+ABUSE NN
+car-happy JJ
+endurance NN
+lighters NNS
+paginated VBN
+tranquility NN
+Helibor NN
+Bel-Air NNP
+fearfully RB
+Barnum NNP
+skies NNS
+late-summer JJ
+bending VBG
+Oerlikon-Buehrle NNP
+A.C. NNP
+sluices NNS
+Deering NNP
+Krispies NNPS
+face-off NN
+bonuses NNS VBZ
+Hecht NNP
+hemmed VBN
+stockroom NN
+state-federal JJ
+anti-French JJ
+Oreos NNPS
+quadruple VB JJ
+glen NN
+Monitoring NN VBG
+Orso NNP
+backdated VBD
+spiritually RB
+Digital NNP JJ NN
+IMF NNP
+dispatch NN VB
+Nashville NNP
+lean-to JJ NN
+Death's-Head NNP
+Laurentian NNP
+Phillippe-Francois NNP
+worse JJR JJ RBR
+roped VBD
+fouled VBD JJ VBN
+Tibet NNP
+post-season NN
+proficient JJ
+Lobsenz NNP
+Noble NNP
+rough-tough JJ
+spire NN
+S&Ls NNS NNP NNPS
+optical-storage JJ
+W.M. NNP
+officals NNS
+vibrate VB
+all-American-boy NN
+hair-care NN JJ
+Renshaw NNP
+Gagarin NNP
+hypothyroidism NN
+dazzling JJ VBG
+Economic NNP JJ
+preventing VBG
+Branches NNS
+tellingly RB
+steeled VBN
+could MD
+ill-fitting JJ
+behind IN NN RB RP
+wider JJR RBR
+lambaste VB VBP
+Mayumi NNP
+David NNP NNPS
+TRUCK NNP
+Jobson NNP
+rentals NNS
+Chane NNP
+ludicrous JJ
+bottlers NNS
+swarmed VBD VBN
+Karpov NNP
+Caryl NNP
+nurture VB NN
+hydrostatic JJ
+Wasserstein NNP
+Wyoming NNP VBG
+Sykes NNP
+dreading VBG
+amputation NN
+soiled VBN JJ VBD
+climes NNS
+DeBakey NNP
+depict VB VBP
+ESPs NNPS NNS
+oaf NN
+Jenni NNP
+Krogers NNPS
+McGlade NNP
+idiomatic JJ
+Gershman NNP
+ecumenical JJ
+chunks NNS
+outsells VBZ
+ferris JJ
+classified-ad NN
+consultative JJ
+accumulation NN
+Hershey NNP
+Stalins NNPS
+catch-all JJ
+brow NN
+too-large JJ
+romping VBG
+Fitzroy NNP
+M.D. NNP NN
+inure VB VBP
+Leszek NNP
+VOLUME NN
+Onstage RB
+multiplication NN
+Schaumburg NNP
+realest JJS
+needlelike JJ
+chinos NNS
+adjunct NN JJ
+no-fuss JJ
+Florida NNP
+Report NNP NN VB VBP
+Flom NNP
+Forked NNP
+feeble JJ
+tablemodel NN
+Computerized JJ
+Ruberg NNP
+spoilage NN
+memorialization NN
+council NN
+mettle NN
+Suzuki NNP
+temerity NN
+murmured VBD
+hundred-and-fifty JJ
+horselike JJ
+Sunay NNP
+originations NNS
+precedents NNS
+Year NN NNP
+garden-shrub NN
+water-ski NN
+navels NNS
+Chatham NNP
+clench VB
+trustingly RB
+Coastal NNP JJ
+'ceptin VBG
+top-flight JJ
+--mortgage-backed JJ
+Woodruff NNP
+ebony NN JJ
+gaming NN
+devastated VBN VBD JJ
+Muscolina NNP
+wisest JJS
+orderings NNS
+Scarpia NNP
+Kendrick NNP
+dynamically RB
+maverick NN JJ
+Revision NNP
+Left-Wing NNP
+Hingorani NNP
+penises NNS
+walk-on NN
+halfmile NN
+metalized VBN
+retraction NN
+Skepticism NN
+screenplay NN
+clattered VBD
+Immunex NNP
+STOPPED VBN
+strange-sounding JJ
+parenchyma NN
+quasi-xenophobic JJ
+fifth-largest JJ
+stick VB VBP NN
+Amcap NNP
+Savelyeva NNP
+Shcherbitsky NNP
+tie-breaking JJ
+Bobbie NNP
+Wigglesworth NNP
+itch VB NN
+specialty-chemicals NNS
+academy NN
+scientists NNS
+Bit NN RB
+four-engined JJ
+gusts NNS
+semisecret JJ
+F.R NN
+expressible JJ
+Episodes NNS
+Historian NN
+fertility NN
+newspaper-publishing JJ
+oversoftness NN
+Dag NNP
+Fielding NN
+anemias NNS
+Wedbush NNP
+S-10 NNP NN
+Aroused VBN
+Jones-Imboden NNP
+antigen NN
+explosives NNS
+Aside RB NNP IN
+SFE NNP
+induce VB
+steppingstone NN
+leather-bound JJ
+hypocellularity NN
+circumspectly RB
+Cecconi NNP
+Headquarters NNP NNS NN
+creamier JJR
+spends VBZ
+purification NN
+well-lighted JJ
+recommends VBZ
+Confectioner NNP
+Sleep-disorder JJ
+Liechtenstein NNP
+far RB IN JJ
+tempos NNS
+SKIES NNS
+Kaolin NNP
+fabricating VBG NN
+Sloan NNP
+unleashed VBN VBD
+Hathcock NNP
+address NN VBP VB
+Castleman NNP
+ex-Yankee NN
+superfluous JJ
+'re VBP
+leitmotif NN
+Masada NNP
+Propulsion NNP
+SETSW NN
+INA NNP
+Joanne NNP
+Taxable NNP
+Vecchio NNP
+ever-growing JJ
+Oestreich NNP
+endogenous JJ
+Prisca NNP
+overshoots VBZ
+cranberries NNS
+gaps NNS
+Belzec NNP
+carve VB VBP
+intial JJ
+Anthropic NNP
+n NN CC
+doddering JJ
+linen NN JJ
+suffuse VB
+Abner NNP
+crazes NNS
+dedicate VB
+sojourners NNS
+call-in JJ
+enclave NN
+whaling NN
+Afrikanerdom NNP
+Intermoda NNP
+dishwashers NNS
+colossal JJ
+Workshops NNS
+Budweiser NNP
+Andras NNP
+Clinton NNP
+Caleb NNP
+intermixed VBD
+Private-sector JJ
+Orleans NNP
+Cowessett-East NNP
+Nouns NNS
+indictments NNS
+hawkish JJ
+essayists NNS
+obliged VBN VBN|JJ JJ VBD
+earth-moving JJ
+WINSTON-SALEM NNP
+Healthcare NNP JJ NN
+uncritically RB
+informality NN
+upper-lower JJ
+sportsmen NNS
+Antoni NNP
+cpu NN
+whereabouts NN NNS
+harvest NN VB VBP
+ad-lib NN
+Townley NNP
+divisive JJ
+'low VB
+cross-promotion NN
+storing VBG NN
+good-natured JJ
+Abroad RB NNP
+miserly JJ
+personalities NNS
+rock-and-roll NN
+Indicator NN
+all-star JJ
+degenerate JJ VB
+installation NN
+Ship NNP NN
+increasing VBG JJ NN
+definable JJ
+bane NN
+heard VBN VBD
+Maoist JJ
+archenemy NN
+Sophomore NN
+Pattenden NNP
+there EX RB UH
+philosophically RB
+non-job-connected JJ
+bridesmaids NNS
+trail-worn JJ
+accessibility NN
+Greenbelt NNP
+priced VBN JJ VBD
+second-guess VB JJ
+enormous JJ
+preoccupation NN
+Saab NNP
+Video NNP NN
+coral-colored JJ
+accomplishment NN
+groundbreakers NNS
+Atop IN
+counterparts NNS
+Caufield NNP
+absurdity NN
+Similarly RB
+Servanda FW
+yelped VBD
+extrapolated VBN
+triol NN
+Cezannes NNPS
+flawless JJ
+A.J.C. NNP
+Mailer NNP
+Dellums NNP
+squirting VBG
+thumbs NNS VBZ
+swoons NNS
+briefly-illumed VBN
+EC-wide JJ
+Armide NN
+mess NN VBP VB
+Hollings NNP
+lashings NNS
+infighting NN
+payoffif NN
+Reckon VB VBP
+wryness NN
+Shropshire NNP
+Alternative JJ NNP
+neatly RB
+Asleep RB
+announcing VBG
+deserted VBN VBD JJ
+auxiliaries NNS
+flip-flopped JJ
+bastards NNS
+Satires NNPS
+inhabitation NN
+celebrants NNS
+Lack NN NNP
+man-to-man RB
+swearing-in NN
+Billed VBN
+EXPRESS NNP
+income-producing JJ
+Quotation NNP
+statement NN
+self-hatred NN
+Tamara NNP
+Chesly NNP
+Nagorno-Karabakh NNP
+most-contentious RBS|JJ
+Raider NNP
+shellfish NN NNS
+Cawdron NNP
+Quattro. NNP
+experience-oriented JJ
+Tarheelia NNP
+Jungian NNP
+four-door JJ
+Managed VBN
+anchorage NN
+Leatherman NNP
+non-traders NNS
+pretend VB JJ
+efficacy NN
+Sagan NNP
+Radzymin NNP
+One-day JJ
+scrumptious JJ
+lead VB VBN VBP JJ NN
+LoSpam NNP
+handgun NN
+Applying VBG
+Road NNP NN
+box-office NN
+waivers NNS
+Lousiness NN
+mass-media NN NNS
+FORD NNP
+Grenoble NNP
+oxen NNS
+HRH NNP
+Townsend NNP
+Plain NNP JJ
+windows NNS
+molten JJ
+baleful JJ
+creation NN
+quadrillionth NN
+sexualized JJ
+backfiring VBG
+irked VBN VBD
+Drinkhouse NNP
+wax NN VB
+Belisle NNP
+Greening NN
+reasserting VBG
+Gilded NNP
+Excellence NN
+Provato NNP
+Coble NNP
+beers NNS
+food-aid JJ
+crannies NNS
+sash NN
+pre-penicillin JJ
+Book NNP NN
+watered VBN VBD
+reprocess VB
+hooliganism NN
+conflicted VBD VBN
+pressures NNS
+Cathleen NNP
+elegiac JJ
+chronological JJ
+dauntless JJ
+revolts NNS
+Initial JJ
+rebuffing VBG
+whole-wheat JJ
+sockets NNS
+longhaul NN
+Orestes NNP
+Dynamite NNP
+discharged VBN VBD
+decaying VBG JJ
+Lafarge NNP
+oddest JJS
+Marry NNP
+mortgage-backed-securities NNS
+Metatrace NNP
+checkpoints NNS
+winehead NN
+McCrory NNP
+Rederi NNP
+Future NNP JJ NN
+fevers NNS
+foreign JJ
+Propylene NN
+non-monetary JJ
+PVC NNP
+Absolutely RB
+Indians NNPS NNP
+Quotrons NNPS
+Change-ringing NN
+Cano NNP
+weeklong JJ NN
+creativity NN
+unjacketed JJ
+Charts NNS
+homoerotic JJ
+Lycra NNP
+Grooms NNP
+status-dropout NN
+Mmes NNPS
+poplin NN
+Mastering VBG
+Home-made JJ
+F-A-18 NN
+G.O.P. NN
+fulminations NNS
+freest JJS
+galvanize VB
+VIACOM NNP
+Erle NNP
+utterly RB
+faded VBN VBD JJ
+million-member-Teamsters NNPS
+girls NNS
+imperialism NN
+Pirie NNP
+enthusiasts NNS
+McMahon NNP
+strays NNS
+Zilligen NNP
+Ushikubo NNP
+Sullivan NNP
+Antoine NNP
+remembrances NNS
+yd. NN
+forty-fifth CD
+Detroit-to-Tokyo JJ
+Pagong NNP
+Seats NNS
+overshadows VBZ
+kitty NN
+SETTING VBG
+bumblebee NN
+cucumber NN
+commonness NN
+redesigned VBN VBD JJ
+near-at-hand JJ
+Lay NNP VBD VBP VB
+economy... :
+web NN JJ
+yeasts NNS
+S*/NNP&P NN
+characters NNS
+S-11 NN
+shirking VBG
+Muenchen NNP
+swamped VBN VBD
+energized VBN
+Evidence NN
+refurbished VBN
+jetplane NN
+Elbaz NNP
+robust JJ
+Mustafa NNP
+gigolo NN
+conductorship NN
+Nickle NNP
+ante NN FW VB
+glinting VBG
+Risks NNS
+restrictive JJ
+electronic-bomb NN
+Kringle NNP
+Scientology NNP
+dervishes NNS
+scandal-wracked JJ
+small-business NN JJ
+decreases NNS VBP VBZ
+added:`` ``
+live-hauled VBD
+case-by-case JJ
+feuds NNS VBZ
+grandfather NN VB
+Three CD JJ LS NNP
+Taxpayers NNS NNP NNPS
+Wockenfuss NNP
+Drawbacks NNS
+Kidnaper NN
+Academically RB
+bother VB VBP
+Varese NNP
+storefronts NNS
+sweltering JJ
+needles NNS
+Friedman NNP
+tract NN
+told VBD VBN
+solidified VBD VBN
+Ruskin NNP
+restraints NNS
+issuance NN
+multiparty NN JJ
+timbre NN
+Fulmar NNP
+Esnard NNP
+page NN VB
+Hansmann NNP
+gene-splicing NN JJ
+Giamatti NNP
+gapt NN
+Celimene NNP
+Amman NNP
+Petit NNP
+close-mouthed JJ
+Tet NNP
+counterclaim NN
+implored VBN VBD
+Brezinski NNP
+routine JJ NN
+sputniks NNS
+Mean VB
+twirling VBG NN
+practitioners NNS
+poultry NN
+Kuperberg NNP
+Azerbaijani NNP
+premix NN
+preschool JJ
+dike NN
+Simulation NN
+ex-Justice NN
+fancied VBD
+hard-hit JJ
+krautheads NNS
+revel VB NN VBP
+quips VBZ NNS
+are... :
+catastrophe NN
+memoir NN
+Plenty NN NNP RB
+Altimari NNP
+devotees NNS
+McClintick NNP
+Groggins NNP
+Berner NNP
+tendencies NNS
+Amen UH FW JJ NNP
+feed-grain NN
+peter VB
+Airmail NN
+INB NNP
+Decide VB
+nodding VBG JJ
+Callan NNP
+Lovers NNPS NNP
+GoldCard NNP
+Veronica NN
+heare VBP VB
+munitions NNS
+lawmen NNS
+Freudian JJ NNP
+built-soap NN
+Beside IN
+fine-tuning NN VBG VB
+gunmen NNS
+subways NNS
+institutionally RB
+frolicking VBG
+binges NNS
+statue NN
+rustling NN VBG
+selle VB
+Voter NN NNP
+non-books NNS
+Odysseus NNP
+Faneuil NNP
+coasted VBD VBN
+collectibles NNS
+studying VBG NN
+whirled VBD
+Leyse NNP
+worded VBN JJ VBD
+Misanthrope NN
+rock-steady NN
+cardinal JJ NN
+weevil NN
+molal JJ
+Parenthood NNP NN
+Coatedboard NNP
+LAWYER NN
+re-injecting JJ
+yielding VBG JJ NN
+Petrone NNP
+screamed VBD VBN
+hurricanes NNS
+restrict VB VBP
+ergotropic JJ
+treads VBZ
+dustjacket NN
+unthinkingly RB
+A-340s NNS
+bunters NNS
+buoying VBG
+Joe NNP
+Chimerine NNP
+Sinfonica NNP
+electronics-product NN
+yardwork NN
+preservation NN
+entranceway NN
+Ludwigshafen NNP
+cuts NNS VBZ NN
+parapsychology NN
+airmen NNS
+bodybuilder NN
+white-stucco JJ
+aniseikonic JJ
+indispensible JJ
+Length NN
+reaping VBG
+Intelligence NNP NN
+Regional NNP JJ
+Chang NNP
+o IN NN RB
+Alfonso NNP
+peace NN
+one-million-letter JJ
+forgotten VBN JJ
+Roffman NNP
+Edinburgh NNP
+hundred-and-eighty-degree JJ
+Labouisse NNP
+redeployment NN
+Tyler NNP
+property-rich JJ
+startled-horse JJ
+plaid-floored JJ
+Molesworth NNP
+Vonnegut NNP
+Eighth NNP JJ
+Basinger NNP
+Toshiki NNP
+Herrin-Murphysboro-West NNP
+N.Y. NNP NN
+spiced JJ
+lop JJ
+Outrunning VBG
+corrective JJ
+pile NN VBP VB
+'thirties NNS
+acetate NN
+Reformed NNP JJ
+Worried VBN JJ
+troupe NN
+Ierulli NNP
+state-of-the-art JJ
+dozens NNS
+interns NNS
+'Do NNP VBP
+barrier NN
+eight CD
+Lithuanian JJ
+mule-drawn JJ
+friers NNS
+octopus NN
+optional JJ
+spacer NN
+on-the-spot JJ
+antique-car NN
+emanated VBD VBN
+most-active JJ JJS
+AIM NNP
+drunkenness NN
+Motor NNP NN
+lunatic-fringe JJ
+Inquisition NNP NN
+eccentricity NN
+Verboort NN
+Negotiable JJ
+gold-backed JJ
+ministered VBD
+AMERICANS NNS
+six-thirty JJ
+undisguised JJ
+basis NN
+rote NN JJ
+Followin VBG
+Druggan-Lake NNP
+majeure NN FW
+gung-ho JJ
+Syms NNP NNS
+pawning VBG
+mega-deal NN
+seven-session JJ
+Reaganites NNPS
+Tiles NNS
+trimmings NNS
+PLAYER NNP
+Maxhuette NNP
+candlelight NN
+beeper NN JJR
+Emancipation NNP
+tsk UH
+joking VBG
+fork NN VB
+Bang-Jensen NNP
+Keio NNP
+mungus NN
+ascent NN
+Helmsley-Spear NNP
+hunched-up JJ
+inside-the-Beltway NN
+grimed VBN
+Rothmeier NNP
+ninety-six CD
+bull-like JJ
+Boon-Sanwa NNP
+Clemensen NNP
+deflects VBZ
+reconciles VBZ
+lightning-fast JJ
+radiophonic JJ
+Customary NNP
+Lappenberg NNP
+CAHNERS NNP
+Lehar NNP
+backbeat NN
+prowling VBG
+Deng NNP
+Tippecanoe NNP
+convening VBG NN
+yachtel NN
+pre-drilled JJ
+Replied VBD
+themselves PRP
+evocation NN
+workaholic NN JJ
+McRaney NNP
+catheters NNS
+Af-values NNS
+Iran-Contra NNP JJ
+Bookwalter NNP
+-.10 CD
+millinery NN
+spuds NNS
+SGA NNP
+relinquishing VBG NN
+health-care NN JJ
+AYER NNP
+peccadilloes NNS
+meat-processing JJ
+Avocados NNS
+Ashland NNP VBP
+Kurt NNP
+Cabernet NNP
+omnia FW
+brisker JJR
+Glorioso NNP
+way NN RB
+Seebohm NNP
+transport NN VBP VB
+Isola NNP
+DESPITE IN
+typesetters NNS
+Cmdr. NNP
+stagnated VBD
+brushy JJ
+Shartzer NNP
+Spaeth NNP
+debt-ridden JJ
+followup JJ
+Chartwell NNP
+patties NNS
+Emperor NNP NN
+Trail NNP VB
+slurs NNS
+recompense NN
+low-density JJ NN
+redefining VBG
+lexical JJ
+biomedical-products NNS
+whiz-bang UH
+coastline NN
+hooker NN
+edginess NN
+flexibility NN
+Kansas NNP
+piglets NNS
+exhaled VBD
+ego NN
+concise JJ
+gallbladder NN
+Montrachet NNP
+recusant NN
+underage JJ
+expecting VBG
+Curiae FW
+Additionally RB
+sarcastic JJ
+dollar\ JJ
+Tartar JJ NNP
+Catcher NNP NN
+Nischwitz NNP
+Korbin NNP
+gunflint NN
+Luftwaffe NNP
+manager NN
+confiding VBG JJ
+Alma NNP
+Fallick NNP
+Tuxapoka NNP
+flair NN
+practically RB
+uncollectable JJ
+heavy-tracked JJ
+NP-27 NNP
+Bets NNS
+commercial-litigation NN
+Barry NNP
+ride VB NN VBP
+DeMar NNP
+noninterest-income NN
+topless JJ
+import NN VB VBP
+virtuous JJ
+ensuing VBG
+clinching VBG
+quaintly RB
+placeless JJ
+Vagabond NNP
+ravings NNS
+Korps NNP
+Immediate NNP JJ
+Visa NNP NN
+planetoids NNS
+dollar-sellers NNS
+gearing VBG
+emasculated VBD
+complaining VBG
+shirtwaist NN
+Hecla NNP
+Eurocrooks NNPS
+hostage NN
+Animated JJ
+Graduates NNS
+Orthodontic JJ
+Interviu NNP
+first-run JJ
+eventfully RB
+Anonymous NNP
+nonqualified VBN
+Beaubien NNP
+staggeringly RB
+accusingly RB
+Katangans NNPS
+soil-bearing JJ
+tole NN VBD
+impolite JJ
+Loveways NNP
+surfacing VBG
+Tempe NNP
+stroking NN VBG
+Cape NNP NN
+Hamiltonian JJ
+transitions NNS
+arouses VBZ
+Soto NNP
+F.H. NNP
+Anti-Americanism NNP
+Longest NNP
+exempt JJ VB
+sympathized VBD
+cigar-making JJ
+law-breaking JJ NN
+Konner NNP
+Multi-employer JJ
+esthetics NNS
+packaged VBN JJ
+Gridley NNP
+crewcut NN
+rear-seat NN
+Subtitled VBN
+dog-rose NN
+Naive JJ
+Santa NNP
+Yesiree UH
+Carraway NNP
+Smitty NNP
+fudging NN
+fabled JJ
+gangs NNS
+Votes NNS
+shell NN JJ VB
+Dai NNP
+Finberg NNP
+crouches VBZ
+engineers NNS
+Pegasus NNP
+over-40 JJ
+Tass NNP
+valueless JJ
+wearying VBG
+credentialized JJ
+hanky NN
+Weld NNP
+backpedal VB
+Flashed VBN
+sidewise RB JJ
+stockynges NNS
+Ziggy NNP
+furnishing NN VBG
+a'to-whom-er NN
+low-key JJ
+organize VB VBP
+victims NNS
+badge-toter NN
+Petrie NNP
+LaCroix NNP
+Aikman NNP
+Count NNP VBP VB
+Nora NNP
+bang NN VB UH VBP
+fat JJ NN
+acquirers NNS
+unguaranteed JJ
+Atra NNP
+dawdled VBD
+Corning NNP VBG
+Ebasco NNP
+disbursements NNS
+admixed VBN
+Berard NNP
+academeh NN
+Facing VBG
+Minns NNP
+field-flattening JJ
+INC NNP
+Mfg. NNP
+M-Whatever NNP NN
+Aaron NNP
+Footnotes NNS
+whoops VBZ
+premieres NNS VBZ
+stoked VBN
+Jerrico NNP
+transfered VBN
+Assyrian NNP
+Alix NNP
+Row NNP NN
+Led VBN VBD
+pardon VB NN
+lendable JJ
+DeBeauvoir NNP
+samplings NNS
+Nonperformers NNS
+canvassed VBN
+Daywatch NNP
+spaces NNS
+eighties NNS
+Sumarlin NNP
+pinpoints NNS
+provocation NN
+unification NN
+Concerto NNP
+inscriptions NNS
+Damonne NNP
+R.I. NNP
+conned VBN
+collar-to-collar JJ
+polyesters NNS
+foreign-flag NN
+speculator NN
+welcoming VBG NN JJ
+departs VBZ
+Orlowski NNP
+mutual-fund JJ NN
+Keough NNP
+outlines NNS VBZ
+hotel\/casino NN
+andrenas NNPS
+recalled VBD VBN
+neo JJ
+Kaitaia NNP
+automakers NNS
+investments NNS
+accessible JJ
+accordion-folding JJ
+offhandedly RB
+stockholders... :
+three-point JJ
+criminalizing VBG
+adversarial JJ
+recovering VBG
+pollution NN
+objectively RB
+Pohl NNP
+sub-conscious-level NN
+simperers NNS
+exhaust NN VB VBP
+throws VBZ
+mough NN
+Yehuda NNP
+Arctic NNP JJ
+Scanlon NNP
+impels VBZ
+jiu-jitsu FW
+dailies NNS
+Erma NNP
+faction NN
+Fault-tolerant JJ
+unappreciated JJ
+gawky JJ
+Martinez NNP
+deduct VB VBP
+Ara NNP
+F.Supp.235 CD
+rhinestones NNS
+Lifestyles NNPS NNP
+occasioned VBN
+biophysicist NN
+hatcheries NNS
+glover NN
+severing VBG NN
+Gulliver NNP
+insurgents NNS
+melting VBG JJ NN
+Sportscasters NNS
+Marcus NNP
+Fraumeni NNP
+Feshbach NNP
+eclat NN
+leaf NN
+subjugate VB
+Kasriel NNP
+bodies NNS VBZ
+Battenkill NNP
+bombers NNS
+Inefficient JJ
+irrevocably RB
+Croma NNP
+megabytes NNS
+marring VBG
+cleaved VBN
+Gitanes NNP
+Desert NNP NN
+Westminister NNP
+no-man JJ
+Inisel NNP
+play-girl NN
+Kurzweil NNP
+Rockwell NNP NN
+Wisman NNP
+Golovanov NNP
+high-purity JJ NN
+Greenhouse NN
+sues VBZ
+Massimi NNP
+provided VBN VBD
+Inspectorate-Adia NNP
+programing NN VBG
+Zug NNP
+Assn. NNP
+gall-bladder NN
+thyronine NN
+consumer-price JJ NN
+Hendrik NNP
+routing VBG NN
+semen NN
+Halloran NNP
+Boom NNP
+sit-ins NNS NN
+savvy JJ VB NN
+manages VBZ
+executors NNS
+SEM NNP
+p NN
+road-map NN
+FormBase NNP
+horsedom NN
+ponds NNS
+Dai-ichi NNP
+Crumlish NNP
+containable JJ
+Medicine NNP NN
+bond-insurance JJ
+burnt-red JJ
+calculus NN
+Urging NNP
+Floridabanc NNP
+Andrea NNP
+plant-sciences JJ
+metrical JJ
+veil NN
+Takashima NNP
+Old-time JJ
+Cruger NNP
+gentlemanly JJ
+Brooklyn NNP NN
+restaurants NNS
+estancia NN
+double-step JJ
+Wedgeworth NNP
+dowel NN
+saline NN JJ
+suburbanite JJ NN
+speculatively RB
+realm NN
+renouncing VBG
+Hemispheric NNP
+low-ability JJ
+ground-glass JJ
+vaunted JJ VBN
+figuring VBG
+Baths NNPS
+second-biggest JJ
+transferee NN
+gauze NN
+aides NNS
+nightclubs NNS
+SGB NNP
+re-incorporated VBN
+overflow NN
+read-my-lips JJ
+Sibson NNP
+freight NN VB
+desperate JJ
+Labs NNPS NNP
+leavin VBG
+assembled VBN VBD JJ
+big-name JJ
+Economdis NNP
+shipboard-weapons NNS
+All-weather JJ
+Ezra NNP
+Hart NNP
+Feds NNPS
+vigorously RB
+'Nightline NNP
+transcribed VBN JJ
+carts NNS
+proprietors NNS
+Believe VB
+Bernet NNP
+slave NN
+post-nuptial JJ
+brutalism NN
+Dorrances NNPS
+thills NNS
+corporate-development NN
+proclaiming VBG
+Burkhardt NNP
+digest-size JJ
+VLSI NNP
+War-era NNP
+extravagant JJ
+astronomy NN
+P350 CD
+dog-eat-dog JJ
+Brandes NNP
+Monterrey NNP
+Havilland NNP
+Cherry NNP
+introduced VBN VBD
+setup NN
+gyro-platform-servo JJ
+compiling VBG
+Klopfenstein NNP
+malevolence NN
+Bifutek-san FW
+Congregational-Baptist NNP
+sadly RB
+Venti NNP
+Todays NNP
+solution-type JJ
+FSLIC NNP
+Sticks NNP
+The DT NNP JJ NN VB
+Interferon NNP
+henchman NN
+Herald-Post NNP
+encircled VBD JJ
+pawed VBN
+Burdett NNP
+damn-the-torpedoes JJ
+much-craved JJ
+Valente NNP
+rocket-bomb NN
+Oleg NNP
+Sidecar NN
+BCS NNP
+Rooms NNS
+Beckworth NNP
+Stabenau NNP
+spot-market JJ
+near-misses NN
+slew NN
+authentications NNS
+laissez-faire FW JJ NN
+daisy NN
+Kieslowski NNP
+Dictates NNS
+incubus NN
+la-la JJ
+Trupin-related JJ
+dualities NNS
+Corrado NNP
+repulsive JJ
+preempt VB
+organ NN
+hummed VBD VBN
+prickly JJ RB
+largesse NN VB
+Brenmor NNP
+aorta NN
+BROADCASTING NNP
+pregnant JJ
+pledging VBG
+amahs NNS
+floor-level JJ
+judged VBN VBD
+foothills NNS
+wed VBN VB
+Continuous JJ
+Maryanne NNP
+low-pass JJ
+consumer-minded JJ
+atelier NN
+collated VBN
+mono JJ NN
+inter-relation NN
+theretofore RB
+SH-11 NNP
+scapulars NNS
+Eggum NNP
+Rees NNPS NNP
+inquiries NNS
+Diery NNP
+Israel NNP
+Carver NNP
+share-holders NNS
+Creme NNP
+GMAC NNP
+Fogelman NNP
+overpayments NNS
+restaging VBG
+RIT NNP
+knees NNS
+d-NAV NNP
+herb NN
+Gallium NN
+Tirello NNP
+well-populated JJ
+Ryusenji NNP
+Jacqueline NNP
+bookseller NN
+smalltime JJ
+graying VBG NN
+Vt NNP
+Revell NNP
+near-mutiny NN
+Hendl NNP
+Melbourne NNP
+It-wit NN
+dilating VBG
+Kenyon NNP
+roll-call JJ NN
+register VB NN VBP
+award-winning JJ
+eyesore NN
+veered VBD VBN
+re-enforces VBZ
+Gordin NNP
+toursists NNS
+Millen NNP
+stock-taking NN
+Semi-Tech NNP
+equitably RB
+shibboleth NN
+Wilkinson NNP
+Penn NNP
+incurring VBG
+Foncier NNP
+athletically RB
+hubris NN
+benefit-plan JJ
+Preambles NNS
+Shrove NNP
+torched VBD VBN
+moneys NNS
+absolve VBP
+tacitly RB
+sometimes-exhausting JJ
+Furuta NNP
+Provincie NNP
+climate NN
+A.R.A. NNP
+traveller NN
+periodontal JJ
+Attribute NNP
+pre-sale JJ
+action\ JJ
+authoritarianism NN
+imperialist NN
+gloves NNS
+Bandow NNP
+quarter-to-quarter JJ
+Transvaal NNP JJ
+Junkins NNP
+Abolition NNP
+corollaries NNS
+IND NNP
+reverts VBZ
+pratakku FW
+promised VBD JJ VBN
+Coupons NNS
+earthworm NN
+West-Point NNP
+W.Va. NNP
+calamity NN
+luminosity NN
+Subcommittee NNP NN
+Panama-based JJ
+praises VBZ NNS
+copings NNS
+Chevrolets NNPS
+licks VBZ
+Harlow NNP
+Nervousness NN
+possession NN
+supplemental JJ
+pro-mark JJ
+fatigued VBN JJ
+Taui NNP
+edgewise RB
+requires VBZ
+Lee NNP
+clearnace NN
+Scherer NNP
+Wo MD
+Barrah NNP
+parapet NN
+PARENT NN
+market-weighted JJ
+Clardy NNP
+Y-region NN
+mounds NNS
+wines NNS
+bronchial JJ
+Skyline NNP
+HUNTING NN VBG
+distress NN
+tertian JJ
+Mail-Order JJ
+murdering VBG JJ
+scraping VBG NN
+Carmody NNP
+publicist NN
+supertanker NN
+Intercontinental NNP
+Greyhound NNP
+nonogenarian NN
+Sarney NNP
+impassiveness NN
+Anti-Deficiency NNP
+flasher NN
+Awad NNP
+venom NN
+unwittingly RB
+Lorraine NNP
+scimitar NN
+worries NNS VBZ
+Flanked VBN
+similar-sized JJ
+professing VBG
+classrooms NNS
+Carr-Lowrey NNP
+Palms NNPS
+stairs NNS
+form NN VBP JJ VB
+Mawr NNP
+Mercantile NNP
+Train NNP NN
+Diest NNP
+Congel NNP
+Haughton NNP
+scandal-stench NN
+says. VBZ
+kennings NNS
+Croix NNP
+acerbic JJ
+purse NN
+buy VB VBP VB|NN JJ NN
+parried VBD
+winced VBD VBN
+bough NN
+Boon NNP
+vogue NN
+uncaused JJ
+attraction NN
+affronted VBN
+O'Lakes NNP
+Belgians NNPS NNP
+Quesada NNP
+Flakes NNPS NNP
+Lederer NNP
+X-rayed VBN
+judgeships NNS
+Hollister NNP
+perfume NN
+steprelationship NN
+decimal NN JJ
+risible JJ
+HEALTH NN NNP
+ANF-Industrie NNP
+anti-foreigner NN
+acetylene NN
+sweepstakes NN NNS
+stationmaster NN
+accentuated VBN VBD
+liner NN
+Entex NNP
+Party. NNP
+Respond VBP
+Muncie NNP
+befoh RB
+Petruzzi NNP
+fuzzier JJR
+Equality NNP
+Moldavian NNP
+limelight NN
+prediction NN
+Lipowa NNP
+injecting VBG
+obstructed VBN VBD
+Clay NNP NN
+Fascists NNPS
+quirk NN
+replies VBZ NNS
+shrilly RB
+Tehran NNP
+restively RB
+Insider NNP JJ NN
+Shere NNP
+Gontran NNP
+Jimmie NNP
+hard-liners NNS
+Mason NNP
+pickoff NN
+Stumpf NNP
+Indebted JJ
+miniskirts NNS
+Solomons NNPS
+props NNS
+edgy JJ
+Genigraphics NNP
+plunkers NNS
+margin-the NN|DT
+thermometers NNS
+diaries NNS
+cufflinks NNS
+taffy JJ
+Thunderbirds NNPS
+lightest JJS
+mechanochemically RB
+elms NNS
+Rotelli NNP
+implanting VBG
+Olympian JJ
+Ye NNP
+term'nonfat JJ NN
+Kosonen NNP
+assimilate VB
+Heideman NNP
+bankruptcylaw NN
+vistors NNS
+intelligence-briefing NN
+Issuers NNS
+Hellman NNP
+welding NN VBG
+SGC NNP
+leftover JJ
+first-degree JJ NN
+seasonal JJ
+Leinonen NNP
+Blackmer NNP
+Barenholtz NNP
+Matamoras NNP
+advisors NNS
+shimmer NN
+BALLOT NN
+windy JJ
+randomization NN
+Critics NNS NNP
+Folklore NN NNP
+Hoyte NNP
+tub NN
+heaps NNS
+completing VBG
+Bonn-sponsored NNP
+SARK NNP
+high-frequency JJ
+r-Revised VBN VB
+woomera NN
+Lullaby NN
+uranyl NN
+Klerk NNP
+drowsed VBN
+gardenettes NNS
+cultist NN
+Adelaide NNP
+Calling VBG
+reused VBN
+unnameable JJ
+Carothers NNP
+HMSS NNP
+sheeting NN
+out-trade VB
+Medgyessy NNP
+sleazebag NN
+photocathodes NNS
+half-life NN
+heartstring-plucking JJ
+Elecktra NNP
+hypoactive JJ
+concurs VBZ
+afire RB JJ
+ruthlessly RB
+dissociated VBN
+co-payments NNS
+swimmer NN
+Peduzzi NNP
+Stuart NNP
+Enersen NNP
+back-slapping JJ
+idolatry NN
+don't VB
+Vittoria NNP
+Siecle NNP
+peach NN
+Billionaire NN
+Modular NNP
+incitement NN
+good-for-you JJ
+Bundesbank NNP
+reminiscence NN
+world-leading JJ
+Kazuo NNP
+reviewed VBN VBD
+shuttered JJ VBD VBN
+exercises NNS VBZ
+Schlieren NNP
+made-up JJ
+Band-Aid NNP
+ledgers NNS
+sensations NNS
+prepared VBN VBD JJ
+high-balance JJ
+Argentina NNP NN
+itching VBG NN
+nomias NNS NNPS
+Auntie NNP
+rusty JJ
+super-condamine NN
+life-enhancement NN
+Robb NNP
+roller NN
+laymen NNS
+monologist NN
+cohorts NNS
+sleep-wakefulness NN
+standard-issue JJ
+sipped VBD
+expiration-related JJ
+P-3 NN
+choppiness NN
+bakers NNS
+wade VB
+coughs NNS
+solar-electromagnetic NN
+Eurasian NNP
+Market-leader NN
+Genova NNP
+radio NN VB
+previews NNS
+tailpipe-emissions NNS JJ
+non-priority JJ
+girlfriend NN
+miscreant JJ NN
+wee JJ PRP
+leaguers NNS
+carpentry NN
+ENTREPRENEURSHIP NN
+BMIRs NNPS
+machine-masters NNS
+Pharmics NNP
+Burgundian JJ
+wild-sounding JJ
+cramps NNS
+Kissak NNP
+mid-1970s NNS CD
+BEI NNP
+mathematician NN
+prorated VBN
+betrayed VBN VBD
+deplorably RB
+WHO'S JJ NNP PRP WP
+ruler NN
+gunslingers NNS
+cannibalistic JJ
+flashes NNS VBZ
+Stinky NNP
+Dehmelt NNP
+faxing VBG
+department-store NN JJ
+innocent JJ
+adoring VBG
+Dodds NNP
+achieve VB VBP
+stripes NNS
+farm-trade JJ
+York-SF NNP
+Mervyn NNP
+Expand NNP
+Laima NNP
+cataclysmic JJ
+single-lane JJ
+Aegean NNP
+bianco NN
+counterpointing VBG
+coalesced VBN
+Bix NNP
+composer-pianist-conductor NN
+topping VBG NN
+mementos NNS
+Kaulentis NNP
+Lavallade NNP
+drip NN
+straining VBG
+displace VB
+Gray NNP
+financial-service NN JJ
+Dak NNP
+drafty JJ
+three-sevenths NNS
+cotillion NN
+hitching NN VBG
+rectified VBN
+MEDUSA NNP
+styrenes NNS
+underreacting VBG
+Troopers NNS
+Gracias FW
+consign VB
+mollify VB
+Occident NNP
+Discipline NN
+expresses VBZ
+non-call JJ
+MacMillan NNP
+lumbered VBD
+Any DT
+pentameter NN
+Willenson NNP
+social-affairs NNS
+Huey NNP
+PROMISE NN
+Algemene NNP
+overestimation NN
+thinker NN
+England NNP
+jargon NN
+Couturier NNP
+Advent NNP
+Trudeau NNP
+notation NN
+prepositioning JJ
+Banners NNS
+anticoagulants NNS
+extrapolates VBZ
+Hualien NNP
+Online NNP
+tax-shelter JJ NN
+Vu NNP
+Hafez NNP
+woodsmoke NN
+Rheumatism NNP
+Mullendore NNP
+five-home JJ
+anti-competitive JJ
+Wagoneer NNP NN
+succesful JJ
+Savoca NNP
+Guard NNP NN VB
+deutsche NN FW
+XR-7 NNP
+esteemed VBD VBN
+reformation NN
+Roy NNP
+REPORTED VBN
+micelle NN
+symphony NN
+regular-featured JJ
+laborers NNS
+Terminiello NNP
+shareholding NN
+Thereupon RB
+Headland NNP
+blue-blood JJ
+Champ NNP
+textile-importing NN
+Extrapolation NN
+blown-up VBN
+Fifties NNPS
+ribs NNS
+lowball NN
+Hippodrome NNP
+Umkhonto NNP
+Drastic JJ
+Measuring VBG NN
+shafts NNS
+recoverability NN
+tomb NN
+lines NNS VBZ
+Strivers NNPS
+gleened VBN
+commits VBZ
+Hellenic NNP JJ
+unclouded JJ
+Working NNP JJ NN VBG
+semi-obscure JJ
+Boating NNP NN VBG
+candidates NNS
+ratings-getter NN
+Flor NNP
+B.A.T NNP NN
+chain NN VBP
+Soul NNP
+Pfohl NNP
+drooling VBG
+furrowed JJ VBN
+dislocation NN
+spectrum NN
+guiding VBG JJ
+higher-salaried JJR JJ
+Lawrenceville NNP
+cancer-ridden JJ
+Kwik NNP
+thin-tired JJ
+edema NN
+Threepenny NN NNP
+Marum NNP
+grimace NN VB
+vein NN
+sufficiency NN
+Bush-supported JJ
+religions NNS
+Arc NNP
+sixteen-year-old JJ
+business-judgment NN
+Valery NNP
+seven-month-old JJ
+Aliah NNP
+Sanitary NNP
+PWA NNP
+Kasen NNP
+appreciations NNS
+generalist NN
+conferences NNS
+requisite JJ
+undergrowth NN
+helix NN
+memory-images NNS
+miners NNS
+amiss JJ
+Negro NNP JJ
+Hinduish JJ
+redefinition NN
+Awkwardly RB
+BDO NNP
+Elkin NNP
+urns NNS
+Airplanes NNS NNP NNPS
+Skanska NNP
+refreshments NNS
+COHERENT NNP
+ascertainable JJ
+marching VBG NN
+Stanley NNP
+provoked VBD JJ VBN
+synchrony NN
+Kansas-Nebraska NNP
+E-6A NN
+non-family JJ
+denies VBZ
+hydrocarbons NNS
+chunky JJ
+vivified VBN
+cell NN
+arborists NNS
+gerundial JJ
+Elliot NNP
+just-say-no JJ
+CAC NNP
+sainthood NN
+insistent JJ
+blockading VBG
+shoot-out NN
+laser NN
+cocao NN
+spawning VBG
+a-coming VBG
+cabanas NNS
+Hellisen NNP
+damping VBG JJ
+non-military JJ
+flanker NN
+overruled VBD VBN
+moments NNS
+Ozarks NNPS
+Thrive VBP
+anti IN NN
+learning-curve JJ
+typefaces NNS
+Confederate NNP JJ NN
+RADIO NN NNP
+tends VBZ
+top-level JJ
+Narita NNP
+platitudes NNS
+Atari NNP
+Saba NNP
+prototype NN JJ
+coal-seam-gas JJ
+A.D. NNP FW NN RB
+Inter-American NNP
+Phonemes NNS
+appearing VBG
+fabrication NN
+infertile JJ
+skittishness NN
+more-senior JJR JJ
+Brody NNP
+proctors NNS
+breakneck JJ
+eight-week JJ
+monetary JJ
+Concerts NNPS NNP NNS
+lethargy NN
+oxidizer NN
+bid-asked JJ
+subset NN
+Meriwether NNP
+photon-counting JJ
+diluted VBN JJ VBN|JJ VBD
+solstice NN
+reversing VBG
+totalistic JJ
+indicates VBZ
+vintage JJ NN
+immediacies NNS
+proprietory JJ
+recovery-program NN
+Menzel NNP
+aircraft NN NNS
+Palazzo NNP
+restoring VBG NN
+Heitman NNP
+Shantou NNP
+unbounded JJ
+millionth JJ
+workstations NNS
+Solved VBD
+noncommercial JJ
+obviate VB
+others NNS
+cavort VBP VB
+enacts VBZ
+countdown NN
+W.N. NNP
+History NN NNP
+Solvay NNP
+not-strictly-practical JJ
+Okla NNP
+succeeds VBZ
+Octavia NNP
+irradiated VBN JJ
+masterful JJ
+immobilized VBN
+twos NNS
+collagen NN
+sector... :
+rubble NN
+adman NN
+one-o'clock CD|RB
+Kim NNP
+O.K UH
+cause... :
+self-criticism NN
+tachyarrhythmia NN
+microwaves NNS
+Amer NNP
+Anything NN NNP
+cross-ownership NN
+often-fatal JJ
+pacem FW
+Secaucus NNP
+Manzoni NNP
+beta-blocker NN
+USN. NNP
+Boogie NNP
+plumpness NN
+Duncan NNP
+suicide NN
+Euro-cigarette NN
+foreshadow VB VBP
+intones VBZ
+copy-cat JJ
+jade-handled JJ
+DePauw NNP
+Moises NNP
+Combat NNP
+aluminum-industry NN
+Qing NNP
+mix NN VBP VB
+Browns NNP NNPS
+ECPA NNP
+perseverance NN
+herd NN VB
+hottest-selling JJS
+Sankyo NNP
+oak NN
+Nord NNP
+rules NNS VBZ
+cooperate VB VBP
+warrantless JJ
+bumped VBD VBN
+r NN
+Explosions NNS
+citations NNS
+Tatian NNP
+soulful JJ
+Scholars NNPS NNS
+non-seamen NNS
+Doaty NNP
+M.E. NNP
+systematic JJ
+these DT
+Bartleby NNP
+initially RB
+sickliest JJS
+coursed VBN
+Bronco NNP
+Zaharah NNP
+patronage NN
+fiat NN
+neuroses NNS
+spruced VBN
+precedent-based JJ
+Stalker NNP
+supermarkets NNS
+Eleanor NNP
+Greeks NNPS NNS
+lootings NNS
+Century NNP NN
+designer NN
+latest JJS JJ
+handsomely RB
+government-funded JJ
+Geatish JJ
+Northwest NNP JJ NN RB
+chugs NNS
+Bayerische NNP
+blurred VBN JJ VBD
+gusty JJ
+imperfectability NN
+squeak NN
+anti-men JJ
+disentangle VB
+Einstein NNP
+overcomes VBZ
+skirmishes NNS
+quok FW
+Glass NNP NN
+buoyancy NN
+twinjets NNS
+speeded-up JJ
+buzz-buzz-buzz NN
+Hungarian-born NNP JJ
+Aristotelian JJ NNP
+disturbs VBZ
+building NN VBG
+Crashing VBG
+Outer NNP NNPS JJ
+Stiritz NNP
+numerically RB
+sexpot NN
+Sterbas NNPS
+posthumous JJ
+Noces NNP FW
+Ehrlichman NNP
+Revolution NNP NN
+backlash NN
+shatteringly RB
+lapses NNS VBZ
+much-anticipated JJ
+Theatre NNP
+'Em NNP
+Pride-Venus NNP
+approval NN
+Stoltz NNP
+--when WRB
+hangout NN
+reapportioned VBN
+Diamandis NNP
+cover VB NN VBP
+undigested JJ
+Callas NNP
+unteach VB
+ROTC NNP
+Regionalism NNP
+frequency-independent JJ
+sensed VBD VBN
+sightings NNS
+S-20 NN
+engineering NN VBG
+safety-first JJ
+parliamentary JJ
+Vane NNP
+near-monopolies NNS
+interconnected VBN
+Tex NNP
+Salmon NNP
+Hawksley NNP
+accompanied VBN VBD
+undid VBD
+speedier JJR JJ
+retroviruses NNS
+seventy-eight JJ
+Heinze NNP
+have-nots NNS
+Computer NNP NN
+Antwerp-based JJ
+hard-earned JJ
+casbah NN
+fallback NN JJ
+NALU NNP
+fatuous JJ
+Seismographic NNP
+Trunkline NNP
+McAuliffe NNP
+prior-year JJ
+blissfully RB
+nicest JJS
+Lifetime NNP NN
+Sununu NNP
+joiners NNS
+underwiters NNS
+undress NN
+DeForest NNP
+parkway NN
+robbed VBN VBD
+wisecrack NN
+tailored VBN JJ
+whodunnit-style JJ
+slats NNS
+Leg NNP NN
+Fitch NNP
+per-pupil JJ
+Factoring NN
+preconference JJ
+Eight-foot-tall JJ
+denials NNS
+Olson NNP
+Desarrollo NNP
+filters NNS VBZ
+screw-loose JJ
+Hugo NNP NN
+Kantorei NNP
+disallowance NN
+marveling VBG
+Burnes NNP
+sergeant NN
+entitle VB VBP
+Microwave NNP
+whacker NN
+epigenetic JJ
+Sante NNP
+clipboard-sized JJ
+Analyzer NNP
+wistful JJ
+transparent JJ NN
+Vicks NNP
+network-services JJ
+on-again-off-again JJ
+admirably RB
+neutral JJ
+precision-materials NNS
+withdrew VBD
+ADMAN NN
+Capshaw NNP
+Marlene NNP
+Monetta NNP
+idling VBG NN
+Dixiecrats NNS
+checkup NN
+cornea NN
+Senium FW
+shockwave NN
+overcrowding NN JJ
+six-lane JJ
+clinch VB
+visions NNS VBZ
+identities NNS
+acceptability NN
+honeysuckle NN
+peculiarity NN
+typescript NN
+cornmeal NN
+township NN
+Chatter-Proofed JJ
+Zoladex NNP
+Innis-Maggiore-Olson NNP
+good-humoredly RB
+Bonjour FW
+ELDERLY JJ
+insoluble JJ NN
+Ivies NNPS
+overshot VBD
+RULES NNS
+lot NN RB JJ
+Donohoo NNP
+management-consulting JJ
+whirlpool NN
+bellboy NN
+Hedman NNP
+inspected VBN VBD
+Mahatma NNP
+Baffin NNP
+Schroder NNP
+Proximate JJ
+DRACULA'S NNP|VBZ
+tax-and-budget JJ
+GASB NNP
+undedicated VBN
+numbers NNS VBZ
+gash NN
+Sickness NN
+light-rail JJ
+Bernard NNP
+Witnessing VBG
+knackwurst NN
+decidely RB
+Skill JJ NN
+shrilling VBG
+Reames NNP
+huh-uh JJ
+prevention NN
+evening NN VBG
+apologetically RB
+revolutionary JJ NN
+Forty-one JJ
+Brookhaven NNP
+Suggests NNS
+Pitt-Rivers NNP
+Pawleys NNP
+zitless JJ
+squawk VB
+thoroughbred JJ NN
+pro-Soviet JJ
+drinking-water NN
+diversionary JJ
+Wirthlin NNP
+doc NN
+suzerainty NN
+drop-out JJ
+prose NN
+auto-maker NN
+fluke NN
+Belmonts NNPS
+Pharmacal NNP
+circumpolar JJ
+refueling NN VBG
+cerebral JJ
+post-attack JJ
+caskets NNS
+secretive JJ
+FREDERICK'S NNP
+redistributing VBG
+Encyclopedia NNP
+Adequate JJ
+underperform VB JJ
+cultures NNS
+Toshiko NNP
+domes NNS
+originate VB VBP
+corralled VBN
+delude VB VBP
+Insurers NNS NNP
+Glynis NNP
+elbows NNS
+reinvesting VBG
+Inner NNP JJ
+Ames NNP
+drugged VBN JJ
+swingin NN VBG
+ridicule NN VB
+contests NNS
+Ransom NNP NN NNPS
+Giroldi NNP NNS
+reharmonization NN
+alkalis NNS
+Valenti NNP
+hardwoods NNS
+fathuh NN
+six-ton JJ
+bye VB
+asynchrony NN
+contendere FW
+pressure-cooker NN
+propagated VBN
+COVER NN
+Cutlass NNP
+Quebequois NNP
+high-capacity JJ
+pre-empting JJ
+Sa'dawi NNP
+Andree NNP
+non-Greek JJ
+Hafif NNP
+allied VBN JJ VBD
+homozygous JJ
+here RB
+York-born NNP|VBN
+upfield RB
+Winger NNP
+Vitamins NNS
+Scholey NNP
+pityingly RB
+alcohol-producing JJ
+bank NN VBP VB
+Trickster NNP
+Rehnquist NNP
+breath-taking JJ NN
+greenhouse-gas JJ
+lawless JJ
+Leyte NNP
+bite VB VBP NN
+squeal VB NN
+employs VBZ
+hunger NN
+preventative JJ
+article NN
+floral JJ
+polynomial NN JJ
+Deryck NNP
+Rodgers NNP
+prepupal JJ
+fast-rising JJ
+relative JJ NN
+Jno NNP
+respecting VBG
+horsemeat NN
+Institutional-type JJ
+bulletins NNS VBZ
+Dollar-De NNP
+finance NN VBP VB
+Sancho NNP
+hold VB VB|NN NN RB VBP
+servicing NN VBG
+Illinois NNP
+backbench JJ
+abstained VBD
+saviour NN
+Grunnfeu NNP
+Minor NNP
+cookie-and-cracker JJ
+hydrochloride NN
+strategic-planning JJ
+crack-using JJ
+light-flared JJ
+occupants NNS
+Narrative JJ
+Pru-Bache NNP
+reimbursing VBG
+Petrobras NNP
+operate VB VBP
+stroll NN VB VBP
+church-owned JJ
+cranks NNS
+Risky NNP
+whoosh VBP NN
+clerical-lay JJ
+killers NNS
+coves NNS
+shrewder JJR
+Joshi NNP
+preponderance NN
+rangy JJ
+Etch-a-Sketch NNP
+gambits NNS
+substantial JJ
+charged VBN VBD JJ
+leadership NN
+ABIOMED NNP
+moonlike JJ
+lunation NN
+boite NNP
+modify VB VBP
+curiously RB
+sweetly RB
+initialing VBG
+re-energized JJ
+wohaws NNS
+INSEAD NNP
+damages NNS VBZ
+thermos NN
+profitability NN
+arrogating VBG
+angers VBZ
+Devario NNP
+Abney NNP
+REFUSED VBD
+Dresser NNP
+Crises NNS
+Shigezo NNP
+Colston NNP
+companywide JJ RB
+ritualized VBN
+Sheraton-Dallas NNP
+Virtually RB
+over-50 JJ
+doable JJ
+tool-and-die JJ
+ANNUITIES NNS
+sor'l NN
+Redeemer NNP
+Dodge NNP
+Jeep\/Eagle NNP
+tumbling VBG NN
+hypothesize VB
+lawmkers NNS
+s PRP NN
+Bagnoli NNP
+accusatory JJ
+excavated VBN
+cavalcades NNS
+slammed VBD VBN
+apparent JJ NN
+Constantin NNP
+acclamation NN
+upper-crust JJ
+fright NN
+foods NNS
+Morikawa NNP
+round-tipped JJ
+slid VBD NNP VBN
+barbarians NNS
+Pan-Alberta NNP
+propagandistic JJ
+prisoners NNS
+municipality NN
+vignettes NNS
+Burnet NNP
+footstep NN
+Ashmolean NNP
+Argentine JJ NNP
+Suhler NNP
+alfresco JJ NN RB
+diagnosis NN
+Murata NNP
+Furman NNP
+enforce VB VBP
+Apologia NN
+emigres NNS
+Editorial JJ NN
+mothers-in-law NNS
+Airgas NNP
+TURMOIL NN
+while IN JJ NN RB VB
+Ciera NNP
+Radcliffe NNP
+sauterne JJ
+Cinegrill NNP
+Prieta NNP
+Bauer-Ecsy NNP
+ADRs NNS NNP NNPS
+waste-treatment NN
+abscesses NNS
+plastic-pipe JJ
+Dreisers NNPS
+seven-figure JJ
+stripped VBN JJ VBD
+ECONOMY NN
+dabbed VBD
+Probable JJ NNP
+Independents NNPS
+well-fed JJ
+home-city NN
+fax NN JJ
+further JJ RB|RBR JJR RBR RB VB
+equation NN
+Traditionalism NN
+Gwyn NNP
+molar NN
+anti-organization JJ
+barbed JJ VBN
+location NN
+inflammation NN
+brandin NN
+cost-cutters NNS
+programmers NNS
+lawbreakers NNS
+xenophobia NN
+whiteface JJ NN
+capitalist-exploiters-greedy-American-consumers-global JJ
+sensible JJ NN
+Mainz NNP
+Miller NNP
+forcefully RB
+Rockport NNP
+oil-bath NN
+Accidental JJ
+racism NN
+unwillingness NN
+Merighi NNP
+detestation NN
+disapproving JJ
+misfired VBN
+Greene NNP
+Falegnami NNP
+anti-Semites NNS NN
+Haavelmo NNP
+Libya NNP
+App NNP
+Dumpty NNP
+Bohane NNP
+Shore NNP NN
+casters NNS
+Livermore NNP
+Irv NN
+tolerate VB VBP
+parking NN JJ VBG
+ashen JJ
+signers NNS
+spaciousness NN
+appropriations NNS
+non-dairy-creamer NN
+Jana NNP
+hugging VBG NN
+giants NNS
+rumpus NN
+challenge NN VB VBP
+leeway NN
+severe JJ
+out-of-doors NNS NN
+Shippings NNS
+tax-accounting NN
+faxed VBD VBN
+Areas NNS
+anti-pocketbook JJ
+headwalls NNS
+off-Broadway JJ NNP NN
+Piszczalski NNP
+self-consuming JJ
+CMOS NNP
+alumnus NN
+SLHD NNP
+Nigel NNP
+Herrington NNP
+grouped VBN
+artificially RB
+Systeme NNP
+handcuffs NNS
+third-period JJ
+Shortcuts NNS
+dignifies VBZ
+Forest-products NNS
+affinity NN
+Divine NNP JJ NN
+blown VBN
+wows VBZ
+Angel NNP
+Rumania NNP
+accumulator NN
+Remaining VBG JJ
+Are VBP NNP
+public-interest JJ NN
+Morale NN
+accept VB VBP
+Cubs NNPS NNP NNS
+Silas NNP
+congresssional JJ
+disciplinary JJ
+Perrin NNP
+half-moons NNS
+satellites NNS
+learning VBG NN
+Osaka NNP
+Recruited VBN
+Innes NNP
+trivial JJ NN
+Profit NN NNP
+muggy JJ
+chatter NN VB VBP
+Justinian NNP
+divertimento JJ
+pound-DM JJ
+Meat NNP NN
+whoe WP
+ex-housing JJ
+verboten FW
+re-entered VBD
+parades NNS VBZ
+carousel NN
+Tuskegee NNP
+low-back JJ
+evoked VBN VBD
+Sauerteig NNP
+airless JJ
+Avantor NNP
+Edmund NNP
+middles NNS
+Kreuter NNP
+producers NNS
+agin IN RB
+AIR NNP NN
+reviving VBG JJ
+Adia NNP
+Doubled VBD
+superimposed VBN JJ
+afterwards RB
+CAE NNP
+Crosby NNP
+surprise-filled JJ
+foul-up NN
+Kennon NNP
+lorded VBD
+already-known JJ
+Myself NNP
+categorizing VBG
+coals NNS
+Nelson-Atkins NNP
+worth JJ IN NN RB VBN VBP
+bluffing VBG
+of'no NN
+metaphosphate NN
+not-so-rich NN
+horizontally RB
+Swenson NNP
+warmish JJ
+Psychotherapist NN
+trowel NN
+Beowulf NNP
+HOTELS NNPS
+fide FW JJ
+anaesthesia NN
+RJR NNP
+Caplan NNP
+Reinforcements NNS
+single-A\ NN NNP
+Burnand NNP
+Arney NNP
+Athearn NNP
+westwards NNS
+Lobar NNP
+embalming NN
+KuwAm NNP
+Marschalk NNP
+Options NNPS NNP NNS
+ventilator NN
+satin-covered JJ
+non-consolidated JJ
+past-due JJ
+policyholders NNS
+exclude VB VBP
+Dresses NNS
+rawboned JJ
+eulogizers NNS
+powpow NN
+busboy NN
+tampons NNS
+surges NNS VBZ
+Vernon NNP
+by-passing VBG
+wood-burning JJ
+Tripoli NNP
+vibrato NN
+permeated VBN VBD
+Massimo NNP
+CLEARS VBZ
+hole NN VBP VB
+McFarland NNP
+covet VB VBP
+wigs NNS
+anti-nausea JJ
+focused VBN JJ VBD
+autonavigator NN
+Pissarro NNP
+countersued VBD VBN
+Kobacker NNP
+unblinking JJ
+Tooth-hurty NN
+wonder NN VBP JJ VB JJR
+discernible JJ
+Berche NNP
+Kay-Bee NNP
+teddy NN
+Offenses NNS
+water-filled JJ
+prayin NN
+process-control NN
+Allowing VBG
+begin VB VBP
+Bidding NN
+ROOSEVELT'S NNP
+Chung NNP
+typify VBP VB
+fellow-employees NNS
+Marrill NNP
+jute NN
+Resler NNP
+convexity NN
+Prentiss NNP
+growth-controlling JJ
+McGinty NNP
+Sheri NNP
+relations NNS
+Thi NNP
+Emmert NNP
+timeouts NNS
+two-timing JJ
+absent-minded JJ
+Evelyn NNP
+stalled VBN JJ VBD
+checkout NN
+equity-to-asset NN
+Expedition NNP
+P.R. JJ NN
+potpourri NN
+colonels NNS
+work-release NN
+dark-gray JJ
+distinguish VB VBP
+Mangino NNP
+unfair-trade JJ
+speaking VBG NN
+India NNP
+leak NN
+pigeon-holed JJ
+intelligence-sharing NN
+meaningless JJ
+cut-down JJ
+chafed VBN
+tomorrow,will NN
+clonazepam NN
+censors NNS VBZ
+titian-haired JJ
+manliness NN
+Vita NNP
+slowball NN
+fairest JJS
+Secret NNP JJ
+larks NNS
+distantly RB
+mater NN
+commemorating VBG
+clear-it-out JJ
+thankfully RB
+anti-lobbying JJ
+precocity NN
+patsy NN
+time-table NN
+airbags NNS
+climbing VBG NN
+glissade NN
+sphynxes NNS
+Ruhollah NNP
+Royalty NNP
+phrasings NNS
+Shorter JJR NNP
+Diets NNS
+Pimlott NNP
+seniors NNS
+Lavity NNP
+Burkette NNP
+drone NN JJ
+frizzling VBG
+Nightshade NNP
+Schuylkill NNP NN
+Stansfield NNP
+slop-bucket NN
+Hubacher NNP
+spinoffs NNS
+Scanner NNP
+showerhead NN
+active JJ NN
+prestigious JJ
+xenophobic JJ
+Caton NNP
+Biofeedback NNP
+scrawny JJ
+Brantford NNP
+Minny NNP
+portion NN
+Yankee-hatred NN
+Salary NN
+brutes NNS
+PriMerit NNP
+Dan NNP
+cantered VBD
+moon NN VB
+Traditionalist NN
+sedan NN
+Comptroller NNP NN
+affordability NN
+non-answer JJ NN
+show-biz NN
+Morinaga NNP
+kneeling VBG
+Nesbit NNP
+lifeblood NN
+raptors NNS
+Baird NNP
+anti-aircraft JJ
+Bolet NNP
+primates NNS
+bankrupt JJ NN VB VBP
+shipowners NNS
+publisher NN
+t NN
+avenues NNS
+property-casualty JJ NN
+constatation NN
+low-profile JJ
+Radhakrishnan NNP
+sliding-rate JJ
+unifying VBG JJ
+Aeronautical NNP
+Spectators NNS
+Serkin NNP
+encore NN
+Hoeve NNP
+golf-ball NN
+three-way JJ
+mother-only JJ
+convertibility NN
+Fiberglas JJ NN NNP
+abortive JJ
+Giraud NNP
+advisory JJ NN
+kudos NNS
+unmixed VBN
+six-mile JJ
+up-or-down JJ
+stepping VBG JJ
+ternational JJ
+wavering VBG NN
+glycerin NN
+Studwell NNP
+You've NN
+Affiliated NNP VBN
+jocund JJ
+orange-juice NN
+Celebrities NNS
+admitting VBG
+extending VBG
+wholehearted JJ
+Agatha NNP
+solvency NN
+forages NNS
+meat-hungry JJ
+program-dominated JJ
+sliding VBG JJ
+oblivious JJ
+cardmembers NNS
+bankruptcy-reorganization NN
+front-runners NNS
+subtended JJ
+budgeteers NNS
+reinvestment NN
+Cosmology NNP
+volubly RB
+heartthrob NN
+pork-barreling NN
+dramatize VB VBP
+overhaul NN VB
+Changyong NNP
+implicate VB
+scraps NNS VBZ
+R.J. NNP
+AMVISC NNP
+fresh-faced JJ
+Martinsville NNP
+McCovey NNP
+councilman NN
+Doubtful JJ
+card-holder NN
+Underwriter NNP
+sign-off NN
+earned-run JJ
+discharges NNS VBZ
+daylights NNS
+net JJ NN VB
+class-warrior NN
+Embryos NNS
+ruinous JJ
+Gulfstream NNP
+psychoanalyst NN
+d'Eiffel NNP
+Coombs NNP
+Canaan NNP
+unready JJ
+diagrams NNS
+quasi-performer NN
+flippers NNS
+Hinduism NNP
+mouth-watering JJ
+unavailable JJ
+coarse JJ
+Bernie NNP
+Sherwood NNP
+role-experimentation NN
+spiraling VBG JJ
+six-count JJ
+jeweled JJ
+Petrarchan JJ
+straighteners NNS
+Transtar NNP
+chive NN
+Blaber NNP
+Yasuo NNP
+anxious JJ
+quixotic JJ
+Cowen NNP
+Basra NNP
+grammar-school NN
+cabal NN
+Vases NNS
+groundwave NN
+calligraphers NNS
+third-story JJ
+Complaints NNS
+Benzedrine NNP
+semi-retired JJ
+Hayne NNP
+catapults VBZ
+H.A. NNP
+D/NNP.A. NN
+Colorful JJ
+abandoned VBN VBD JJ
+jock NN
+Minot NNP
+than IN RB IN|RB RBR
+delicately-textured JJ
+interessant FW
+vulnerability NN
+specifications NNS
+Steiner NNP
+ivy-covered JJ
+hiked VBD VBN
+swindling VBG
+dioxide NN
+princely JJ
+Gottesfeld NNP
+Prolusion NNP
+three-month JJ
+submucosa NN
+smugglers NNS
+stewed JJ VBD
+snuffer NN
+Metamorphosis NN
+corporate-raider JJ
+accruing VBG
+Wrangling VBG
+best-selling JJ JJS
+spritzers NNS
+splice NN
+buggy NN
+dower NN
+DEFECTOR NN NNP
+Merited JJ
+eight-piece JJ
+Botswana NNP
+dismounting VBG
+dismember VB
+serious-minded JJ
+inexpensive JJ
+running VBG NN|VBG JJ NN RB
+medical-care NN
+narratives NNS
+Shrontz NNP
+strutting VBG JJ
+above-ceiling NN
+unturned JJ
+Provo NNP
+Coughlin NNP
+union-industry NN
+fighter NN
+alerted VBD VBN
+missile-guidance JJ
+Olga NNP
+doe NN
+Alabamas NNPS
+starchiness NN
+stitches NNS
+systems NNS
+quite RB PDT
+Waxman NNP
+novel-in-progress NN
+reluctance NN
+redistribution NN
+those DT
+TeleCable NNP
+uninitiate NN
+synchronize VBP VB
+Mennis NNP
+Climb VB
+chair NN VB
+Vizcaya NNP
+hazardous-waste NN JJ
+quivers NNS
+solidifies VBZ
+Prestige NN NNP
+stropping VBG
+Prizzi NNP
+good-living JJ
+national-priority JJ
+Whelan NNP
+Daugherty NNP
+Y&R NNP
+vocalic JJ
+overinvested VBN
+Bowling NNP
+categorize VB
+pill NN
+Tentative JJ
+collages NNS
+Aganbegyan NNP
+last-ditch JJ
+Barcus NNP
+lobster NN
+Montreal NNP JJ
+switches NNS VBZ
+nude JJ NN
+pax-ordo NN
+state-sector JJ
+depreciable JJ
+wanted VBD JJ VBN
+Lockian JJ
+Vento NNP
+Unitrode NNP
+Blier NNP
+junketeering NN
+counterbid NN
+policing VBG NN
+together RB IN RP
+supplemented VBN VBD
+ancient JJ NN
+piety NN
+categorical JJ
+EWDB NNP
+Leery JJ
+publishes VBZ
+Swissair NNP
+Romances NNP
+Anatomically RB
+T.B. NNP
+Balmain NNP
+incompetence NN
+Fees NNS NNPS
+intimacy NN
+metaphysical JJ
+gelatin NN
+Lokey NNP
+milestone NN
+Kip NNP
+Chernobyl-type JJ
+Quotidien NNP
+walk-through JJ
+guises NNS
+redouble VB
+successfully RB
+Mac NNP
+Cronkite NNP
+Waggin NNP
+asset-stripping JJ
+acre-feet NN
+mates NNS
+Minister NNP
+scholastics NNS
+opinions NNS
+nearing VBG
+IOC NNP
+fruitbowl NN
+federation NN
+dissonance NN
+Operators NNP NNS
+Senate-backed JJ
+erudition NN
+disinfectant NN
+six-bottle JJ
+CREDIT NNP
+Magadan NNP
+Index NNP NN
+backdrop NN
+Cup-Tote NNP
+substerilization NN
+Wakabayashi NNP
+sarcasm NN
+quasi-recitative JJ
+SUES VBZ
+Computer-peripherals NNS
+gate NN
+suey NN
+Bouygues NNP NNS
+Cotty NNP
+Vencor NNP
+tallied VBN VBD
+rushed VBD VBN JJ
+coosie NN
+anemics NNS
+Louisville NNP
+outburst NN
+Precinct NNP
+Chmn. NNP
+fictions NNS
+Wallachs NNP
+Winston NNP
+Discos NNS
+parenthetically RB
+kinda RB
+reversal NN
+metabolized VBN
+Rhona NNP
+Ryosuke NNP
+Locate VB
+Bjerre NNP
+consciously RB
+shelter NN VB
+oracles NNS
+arithmetic NN
+Vadstena NNP
+out-of-pocket JJ
+Soup NNP NN
+habitual JJ
+less-than-exacting JJ
+per-capita JJ NNS
+Joint-venture JJ
+one-fourth NN CD JJ
+Interviews NNS
+indemnify VB
+retrograde JJ
+full-point JJ
+Diving NN NNP
+automobile-manufacturing JJ
+kills VBZ NNS
+Delano NNP
+seven-million-ton JJ
+Barcelona NNP
+artificial-heart JJ
+Comer NNP
+rate-increase JJ
+dulling VBG
+launch VB NN
+Steffes NNP
+Rummaging VBG
+Registration NN
+strides NNS VBZ
+Tunis NNP
+Maturity NN
+predict VBP VB
+Broncs NNP
+orgies NNS
+wei NNS
+shone VBD VBN
+stethoscope NN
+proudest JJS
+Moves NNS
+town-house JJ NN
+Victor-Butler NNP
+execuitive NN
+Branagan NNP
+sorriest JJS
+Hedge NNP
+Avoiding VBG NNP
+Fresnel NNP
+fortuitously RB
+asymptotically RB
+Karamazov NNP
+Conger NNP
+relativistic JJ
+pastry NN
+distilleries NNS
+patristic JJ
+respect NN VBP VB
+gambler NN
+Negro-appeal JJ
+Brad NNP
+coincident JJ
+mandatory JJ NN
+first-person NN
+artifically RB
+bothered VBN VBD
+Calvin NNP
+term NN VB VBP
+triage NN
+expressivness NN
+Kohrs NNP
+Bangkok-based JJ
+High-Tech JJ
+Estonians NNPS
+materials-handling JJ
+SX-21 NNP
+near-completion NN
+H&M NNP
+widower NN
+bell-ringing JJ
+Bibb NNP
+home-building JJ NN
+deregulaton NN
+procure VB
+Cowles NNP
+Toffenetti NNP
+consummate JJ
+Greg NNP
+rescuers NNS
+Simmon NNP
+smooching VBG
+Clinique NNP
+Seller NN
+Grafil NNP
+Agriculture-ministry NN
+processed-meats NNS
+Larchmont NNP
+Ensign NNP
+wisher NN
+THOSE DT
+Cinemactor NNP
+Construction NN NNP
+toll NN VB
+Bonuses NNS
+Softletter NNP
+Thirteen CD
+willow NN
+food-preservation NN
+Ramparts NNS
+probings NNS
+British-Dutch JJ
+curtails VBZ
+optical-products NNS
+lawn NN
+acts... :
+dwindle VB
+Dan'l NNP
+massed VBD VBN
+INCOME NN NNP
+Hayeses NNPS
+Western-Central JJ
+Jewry NNP
+corrugations NNS
+comforts NNS
+Volokhs NNPS
+through IN JJ RB RP
+HDTV NN NNP
+Ziegfeld NNP
+newborn JJ
+preliterate JJ
+whereever WRB
+metalworkers NNS
+card-carrying JJ
+tva NN
+binders NNS
+Shuman NNP
+pronouns NNS
+Hoppe NNP
+Che NNP
+Dogs NNS NNPS NNP
+kwashiorkor NN
+Ione NNP
+RMC NNP
+EQUIPMENT NNP
+patrolman NN
+endlessly RB
+u PRP NN
+guidance NN
+clarinetist NN
+accentuates VBZ
+Bevo NNP
+denude VB
+thermoforming JJ
+Aluminum NNP JJ NN
+Impressive JJ
+required. VBN
+Construcciones NNP
+tacked VBD VBN
+Sleepwalkers NNS
+cathedra FW
+twice-extended JJ
+anhydrous JJ
+two-mark JJ
+Parisians NNPS
+Kaddish NNP
+unalluring JJ
+Dorothy NNP
+turbofan NN
+Compulsive JJ
+single-crystal NN
+passwords NNS
+Tie VB NNP
+mid-50s NNS
+unseated JJ VBD
+drug-industry NN
+PG&E NNP
+tax-policy NN
+unleashes VBZ
+exchangeable JJ
+Aprile NNP
+PipeLines NNP NNPS
+four-mile JJ
+doubles NNS VBZ
+Calabrese NNP
+strip NN VB VBP
+Roessler NNP
+annoy VB VBP
+Remaking VBG
+operatives NNS
+Atlanta-Chicago NNP
+adorns VBZ
+evil JJ NN
+Warehouse NNP NN
+nineties NNS
+mountaintop NN
+Carvey NNP
+size NN VBP VB
+underwrite VB VBP
+atune NN
+Apologie NNP
+low JJ NN RB RP
+poverty-stricken JJ
+forged VBN JJ VBD
+fed VBN JJ NN VBD
+Dorado NNP
+requisitioned VBD VBN
+micro JJ
+Cara NNP
+Bagley NNP
+Bellwood NNP
+Skybolt NN
+charter-type JJ
+Shatilov NNP
+Carlson NNP
+panelboard NN
+Charging VBG
+Rexene NNP
+Anouilh NNP
+Stillerman NNP
+Agone NNP
+elegance NN
+Turpin NNP
+sewer NN
+non-academic JJ
+cutoff NN JJ
+scientist-consultant NN
+eighth-floor JJ
+book-publishing NN JJ
+imput NN
+ringsiders NNS
+Council NNP NN
+bounds NNS VBZ
+Firms NNS NNPS NNP
+amortized VBN
+Olds NNP
+BioScience NNP
+responsible JJ
+Fiddler NNP
+Ballistic NNP
+bargain-hunt VB
+Sydney-based JJ
+Ste. NNP
+revulsion NN
+cakes NNS
+treasured VBN JJ
+Madrid NNP
+lineman NN
+wash-outs NNS
+summer NN
+flares NNS VBZ
+Casualties NNS
+SES NNP
+package-holiday JJ
+unique-ingrown-screwedup JJ
+Encouraging VBG
+Stalinists NNPS NNS
+Gardner-Denver NNP
+Grassley NNP
+Yehudi NNP
+VENTURE NN
+score-wise JJ
+meets VBZ NNS
+Pohs NNP
+commence VB VBP
+spite NN VB
+makeup NN
+Large-screen JJ
+perestrokia NN
+Podolsky NNP
+five-course JJ
+bakery NN
+NavforJapan NNP
+Palmingiano NNP
+Peters NNP
+niggardly JJ
+expeditiously RB
+intermediate-term JJ
+foreheads NNS
+domestic-inflation NN
+consonants NNS
+shallow-water NN
+greased VBD VBN
+grille NN
+lecherous JJ
+fireballs NNS
+comedy\ JJ
+dissociates VBZ
+student-test JJ
+reservations NNS
+existing VBG JJ
+commentator NN
+export-related JJ
+diametrically RB
+glare NN VB
+consider VB VBP
+injunctive JJ
+IMO NNP
+bookshelf NN
+swoops NN VBZ
+Academy NNP
+Datuk NNP
+start-up JJ NNS NN VB
+APPELLATE NN
+Arbuckle NNP
+re-use VB
+Ifni NNP
+PRODUCTS NNS NNP
+Nocturne NNP
+Summa NNP
+billboards NNS
+zany JJ
+snails NNS
+piazza NN
+SAMURAI NNP
+Ecuador NNP
+NOT-GUILTY JJ
+introductory JJ
+slimmed-down JJ
+Dolley NNP
+non-Canadian JJ NN
+tug NN VB
+Pabor NNP
+stronghold NN
+nonstops NNS
+Jiri NNP
+Elton NNP
+brinkmanship NN
+gambles NNS
+anti-Semitic JJ
+index-linked JJ
+predigested VBN
+Duration NN
+editorials NNS
+Deno NNP
+Boot NNP NN
+dowdy JJ
+LePatner NNP
+breed NN VB VBP
+Inland NNP RB
+Mad NNP JJ
+Christian-Democratic NNP
+Comes VBZ
+Cristini NNP
+accrediting NN
+waterfall NN
+Tumor NNP
+Benazir NNP
+Shops NNPS VBZ NNP NNS
+ill-trained JJ
+inmate NN
+Address NNP
+Flow NNP
+turbulence NN
+secondary JJ
+Andrei NNP
+Partly RB
+chastisement NN
+power-generation NN JJ
+Glamorous JJ
+Pleasantville NNP
+Cullinet NNP
+Poetics NNP
+invisibly RB
+pro-neutralist JJ
+pacer NN
+Captured VBN
+socialized VBN VBD
+tiled JJ VBN
+silver-conspiracy NN
+Beregevoy NNP
+On-to-Spokane NNP
+quick-fix JJ
+pianism NN
+Otis NNP
+Ruark NNP
+pickiest JJS
+run-down JJ
+triphenylstibine NN
+sulks NNS
+Boksen NNP
+detribalize VB
+tire-patching JJ
+troopships NNS
+unheated JJ
+irredentism NN
+photocopy VB
+medium-distance JJ
+PUBLISHING NN NNP
+appoint VB
+yelling VBG NN
+illuminate VB
+Etruscan JJ
+Aeronauticas NNP
+niceties NNS
+Margarito NNP
+healing NN JJ VBG
+Harvest NNP
+relic NN
+Brae NNP
+plastered VBN JJ
+gametes NNS
+Intertech NNP
+wishes VBZ NNS
+daydream NN
+frau FW
+quasi-public JJ
+leitmotiv FW
+laser-treatment NN
+Buick NNP
+alert JJ VBP NN VB
+irreparable JJ
+publicity NN
+young JJ NN NNS
+returns NNS VBZ
+Zorn NNP
+I.E.P. NNP
+grasses NNS
+mispronunciation NN
+Loomis NNP
+Winthrop NNP
+majored VBN
+Varigrad NNP
+glib JJ
+chateaux NN
+pleasantly RB
+diminishing VBG
+forgettable JJ
+STRIP VB
+infection-screening JJ
+Boisvert NNP
+separatist JJ
+sinkhole NN
+geysering VBG
+Depression-era JJ
+unalterable JJ
+filament NN
+douse VB
+more-than-terrible JJ
+Water NNP NN
+hotdog NN
+preppie NN
+flame NN VBP VB
+MICRO NNP
+suspends VBZ
+Sprinkled VBN
+Milman NNP
+Chyron NNP
+liquid-nitrogen NN
+frown VBP
+Pasternak NNP
+Saltis-McErlane NNP
+unlabeled JJ
+Stroh NNP
+bluest JJS
+Chiller NNP
+bi-modal JJ
+Daberko NNP
+bouncy JJ
+vacillated VBD
+EQUITY NNP
+Zones NNS
+Robinowitz NNP
+anti-drug-law NN
+exonerating VBG
+warmed-over IN
+hardier JJR
+Trivest NNP
+Eileen NNP
+wanderings NNS
+importers NNS
+reviled VBN JJ
+Lilliputian JJ
+callable JJ
+Muenchmeyer NNP
+profession NN
+shell-shocked JJ
+communistic JJ
+amateurs NNS
+PS\ NN NNP NNS
+mindful JJ
+truism NN
+semiliterate JJ
+semi-independent JJ
+unites VBZ
+fungus-produced JJ
+outposts NNS
+pomp-filled JJ
+Beneficial NNP
+explains VBZ
+cub NN
+cloudburst NN
+Trichieri NNP
+licensees NNS
+teaser NN
+panjandrum NN
+edit VB
+re-activate VB
+kwh NNS
+Balag NNP
+unreported JJ
+demoniac JJ
+Knit VB
+nodded VBD VBN
+prevents VBZ
+practicality NN
+lackadaisical JJ
+energizes VBZ
+teetotaler NN
+Fiddles NNS
+enshrouding VBG
+Well UH RB NNP
+downtrodden JJ
+Busch NNP
+Goldberg NNP
+Lloyd NNP NN
+Pretend VB
+Archibald NNP
+stockbroker NN
+Lek NNP
+vanities NNS
+welcome JJ NN VB VBP
+Feelings NNS
+Seaborg NNP
+potato-like JJ
+Nori NNP
+Yoshizawa NNP
+Focus NNP
+Rich-affiliated JJ
+Spot NN
+Windows NNP NNS NNPS
+street NN
+T-shirts NNS
+Venetoen NNP
+hacksaw NN
+handing VBG
+A135 NN
+Sciences NNPS NNP
+stiff JJ NN VB
+dhow NN
+non-durable JJ
+portfolio-maker NN
+introduces VBZ
+father-and-son JJ
+DiIulio NNP
+Valu NNP
+Potsdam NNP
+HLTs NNS
+Pornsen NNP
+MACMILLAN NNP
+Hongkong NNP
+SP-44001 LS
+fairness NN
+cracks NNS VBZ
+reservoir NN
+generality NN
+factually RB
+no-win JJ
+Ephron NNP
+masks NNS
+Kornevey NNP
+voted VBD VBN
+acoustics NNS
+Rodney-Miss NNP
+fiber-photocathode NN
+Accounting-profession NN
+world-wide JJ RB
+disseration NN
+Rhyme VB
+evacuation NN
+overcharge NN
+dismembered VBD
+Inspector NNP
+exactly RB
+scriptwriter NN
+Danvers NNP
+yore PRP$ NN RB
+Canberra NNP
+chants NNS
+Etablissements NNP
+Chatsworth NNP
+Referrals NNS
+Titans NNS
+Scania NNP
+Excellency NNP
+Foreign NNP JJ
+Have VBP NNP VB
+provisons NNS
+salicylic JJ
+Laband NNP
+assuring VBG
+HDTV-screen JJ
+fee NN
+Deloris NNP
+bashful JJ
+O'Dwyer's NNP
+pinpointing VBG
+Ensrud NNP
+conservator NN
+pre-dawn JJ
+Rego NNP
+arrangers NNS
+Canada NNP
+fleshpots NNS
+non-representation JJ
+jet-setters NNS
+shrank VBD
+engendered VBN VBD
+HEADED VBD
+Red-prone JJ
+traditionalists NNS
+Christiana NNP
+.10-a-minute JJ
+completion NN
+coconut-lime JJ
+masers NNS
+retrospect NN
+infestations NNS
+shortcovering NN
+Inspection NNP
+superintendent NN
+market-style JJ
+utility-cost NN
+Pietro NNP
+altruists NNS
+aujourd'hui FW
+jobs NNS
+SET VBD
+lean JJ VBP VB
+new-car NN JJ
+dog NN VBP
+enhancements NNS
+social-economic JJ
+Richebourg NNP
+raddled VBN
+grayed JJ
+curriculums NNS
+Comet NNP
+Swamped VBN
+Renovo NNP
+fort NN VB
+self-taught JJ
+third-shift JJ
+YOUNG JJ NNP
+Tasurinchi NNP
+Brookmont NNP
+rethinking VBG
+oratio FW
+ageless JJ
+consumables NNS
+pharamaceuticals NNS
+A.E. NNP
+defense-equipment JJ
+mid-shimmy NN
+gravitas NNS
+GM-CSF NNP
+beets NNS
+straight-from-the-shoulder JJ
+problematic JJ
+denominationally RB
+urbanization NN
+poppies NNS
+unitized VBN
+fleeing VBG
+paces NNS
+culpas FW
+Neuharths NNPS
+Perozo NNP
+Kooten NNP
+hotelier NN
+eagles NNS
+ultimatums NNS
+shadings NNS
+Portfolio NNP NN
+Sour NNP
+marooned VBD
+Drexel-managed JJ
+Schwalbe NNP
+Florido NNP
+fermenting VBG
+Osake NNP
+tunes NNS VBZ
+enzymatic JJ
+aches NNS VBZ
+pared-down JJ
+Tindal NNP
+double-digit JJ NN
+telephone-marketing JJ
+Marty NNP
+Reid NNP
+abatement NN
+Grafin NNP
+Called VBN VBD NNP
+Routine JJ
+W.O. NNP
+Reporters NNS NNPS
+Diabetes NNP
+Poultry NN
+Procedural JJ
+pre-selling VBG NN
+hiking VBG NN
+spraying NN VBG
+St-Laurent NNP
+iron NN VB
+BAe NNP
+reassuringly RB
+Anti-union JJ
+Industri NNP
+recklessness NN
+Mae NNP
+status-conscious JJ
+alleys NNS
+cruzados NNS
+Bazy-Sire NNP
+Vernor NNP
+lizards NNS
+surfers NNS
+Nodding VBG
+Coalition NNP
+assists VBZ NNS
+Malott NNP
+biologist NN
+MarCor NNP
+isotonic JJ
+aromatic JJ
+sea-village NN
+Maker NN
+occlusion NN
+treatise NN
+hypervelocity NN
+home-grown JJ
+tenet NN
+motor-vehicle NN
+Subways NNS
+gaseous JJ
+prefund VB
+Permian NNP
+participants NNS
+Steinbrenner NNP
+Morarji NNP
+stricter JJR
+Taras NNP
+Getty NNP
+analyst NN
+Jane NNP NN
+Montagu NNP
+straight-out JJ
+scapegoat NN
+rapid-fire JJ
+liberalism NN
+Correspondents NNPS
+Vamp NNP
+cartwheels NNS
+Aztar NNP
+Children NNS NNP NNPS
+owne JJ
+notified VBN VBD
+implores VBZ
+hulks NNS
+An-12 NN
+price-setting NN
+SP-44002 LS
+loquacious JJ
+drawling VBG
+valuations NNS
+N-acetylcysteine NNP
+Jin-Shung NNP
+A.T.B. NNP
+Discount NNP JJ
+Bankler NNP
+blisters NNS
+stock-pickers NNS
+titular JJ
+animalcare JJ
+self-indulgence NN
+Wu NNP
+analogously RB
+accompanies VBZ
+lingo NN
+tollhouse NN
+pious JJ
+industrywide JJ RB
+U.S.A NNP NN
+equips VBZ
+districts\/states NNS
+Beutel NNP
+Treiger NNP
+VOTED VBD
+studious JJ
+endevor NN
+Expected VBN NNP
+oligopoly NN
+birefringence NN
+dabbled VBD
+Reasonable JJ
+Vitarine NNP
+glanced VBD
+matures VBZ
+frowned VBD VBN
+polemics NNS
+Romulo NNP
+try VB VBP NN
+worldly JJ
+imagine VB VBP
+noticed VBD VBN JJ
+Steinhardt NNP
+Diocesan JJ
+Caius NNP
+trucked VBN
+Barrier NNP
+Nintendo NNP NN
+Octopus NNP
+Pawlowski NNP
+sicker JJR
+Florican-Inverness NNP
+chip-making NN
+Amex NNP
+Barell NNP
+Intair NNP
+presence NN
+CBC NNP
+Later RB JJR RBR JJ
+Zvi NNP
+infuriating JJ VBG
+Canaveral NNP
+life-time JJ
+Klauber NNP
+Leppard NNP
+Tempo NNP
+mentalities NNS
+Priam NNP
+Lovett NNP
+pre-emption JJ
+Attorney NNP
+intrusion NN
+recession-wary JJ
+fur-making JJ
+Amazonia NNP
+Janeiro NNP
+strong JJ RB
+Top-20 JJ
+Anti-Semite NN
+Tosco NNP
+crudities NNS
+Jamestown NNP
+forests NNS
+Newtonville NNP
+intuitively RB
+overhead JJ NN RB
+fragmentarily RB
+Playground NNP
+turban NN
+Eritreans NNPS
+Baskin NNP
+equidistantly RB
+presupposition NN
+Durcan NNP
+series-production NN
+Petrochemical NNP
+confusin NN
+per-game JJ
+extenuating VBG
+Vicky NNP
+once-profitable JJ
+superimposes VBZ
+lower-house NN
+Zamiatin NNP
+third-year JJ
+stinking VBG JJ
+Thursdays NNPS
+realign... :
+now-repentant JJ
+imperatives NNS
+tobacco-ad JJ
+Junk-portfolio NN
+FIAT NNP
+Eurocrats NNS NNP
+paid VBN VBD VBN|JJ JJ
+mother-naked JJ
+cast-iron NN JJ
+Wimsatt NNP
+Specifics NNS
+Yachtel NN
+motor-operated JJ
+drifts VBZ NNS
+Rahill NNP
+abetting VBG
+Fever NN
+fraternity NN
+controllers NNS
+Disclosure NN
+materialism NN
+pushin NN
+collided VBD
+Apt JJ
+aprons NNS
+resuscitating VBG
+Bros. NNP NNPS
+WYSE NNP
+Lafe NNP
+Chg NN
+trippin NN
+prie-dieu FW
+Buddha NNP
+seasonally RB
+Adnan NNP
+paintbrush NN
+sisters NNS
+decision-makers NNS
+nastier JJR
+vulnerable JJ
+COUNTRY NN
+humiliated VBN JJ
+decimeter-wave-length NN
+injection NN
+Bicyclists NNPS
+purrs VBZ
+new JJ
+rationalizations NNS
+Freightways NNP NNPS
+Tillotson NNP
+definitions NNS
+Hastings-on-Hudson NNP
+irresolution NN
+illegally RB
+rabbinical JJ
+ashes NNS
+pussy-willow NN
+tweaked VBD
+Jon NNP
+side-arm NN
+hatchings NNS
+self-content JJ
+Doner NNP
+epigrams NNS
+pre-bankruptcy NN
+Concise JJ
+Polaris NNP NN JJ
+Seiren NNP
+filtration NN
+preservative JJ
+lesion NN
+Tipasa NNP
+used-equipment NN
+stoves NNS
+Nieman NNP
+helplessness NN
+elemental JJ NN
+Marocaine NNP
+outnumbered VBD VBN
+rattlesnake NN
+Salesmanship NN
+neglect NN VB VBP
+Triangle NNP NN
+too-simple-to-be-true JJ
+Ito NNP
+Manager NNP NN
+withstanding VBG
+Karolinska NNP
+Luthringshausen NNP
+Blomfield NNP
+hello UH NN
+despairs VBZ
+nettled VBD VBN
+thorn NN
+authentic JJ
+knock-offs NNS JJ
+blows NNS VBZ
+foodservice NN
+carnival NN
+revaluation NN
+truckloads NNS
+Bore VB
+chancery NN
+Saison NNP
+comas NNS
+non-existant JJ
+kidnapped VBN VBD
+bizarre JJ
+thought VBD NN VBN
+spatter NN
+flat-bottomed JJ
+Interlude NNP
+less-toxic JJ
+disgruntled JJ VBN
+Siewert NNP
+subbing VBG
+Hostage NNP
+planar JJ
+Szold NNP
+defense-contract NN
+new-loan JJ
+cranky JJ
+THANKS NNS
+twenty-nine-foot-wide JJ
+Schacht NNP
+color-glutted JJ
+aunts NNS
+misstated VBN VBD
+sights NNS
+bragged VBD
+Biaggi NNP
+plant-closing JJ
+chiefdom NN
+sunlight NN
+depositors NNS
+nineteen-year-old JJ
+McCaughan NNP
+w IN
+Nazario NNP
+trips NNS
+Reservation NNP NN
+Like IN RB
+judgments NNS
+Laboratories NNPS NNP
+Makes VBZ
+get-out-the-vote JJ
+water-borne JJ
+Laurel NNP
+specifying VBG
+courtiers NNS
+hard-fought JJ
+Erbamont NNP NN
+annoyances NNS
+poises NNS
+ruffian NN
+Entwhistle NNP
+dilation NN
+down-and-outers NNS
+Luray NNP
+Shapiro NNP
+readjusted VBN
+heralded VBN VBD
+president NN NNP
+GORBACHEV NNP
+LICENSE NN
+chiropractor NN
+husbandry NN
+monies NNS
+intercity JJ NN
+provider NN
+Salesman NN
+Micronite NN
+Mayo NNP
+Mound NNP
+stock-options NNS
+Sexism NN
+panels NNS
+Victims NNS NNP
+statewide JJ RB
+Kis NNP
+exhibiting VBG
+Williamson NNP
+careless JJ
+bathe VB
+Benedetti NNP
+milligrams NNS
+broad-scaled JJ
+Chajet NNP
+Sky NNP NN
+Quebecor NNP
+desuetude NN
+Tropic NNP
+at-bat NN
+gainful JJ
+vaquero NN
+Kinnett NNP
+Caraiba NNP
+tickertape NN
+optioned VBN
+Brendan NNP
+Stringing VBG
+trainman NN
+sculpts VBZ
+rectilinear JJ
+Riunite NNP
+Stratus NNP NN
+prepublication NN
+ravenous JJ
+'RED JJ
+Massa NNP
+obliges VBZ
+'89s NNS
+Subcontractors NNS
+quick-kill JJ
+winner NN
+budgetary JJ
+maladjustment NN
+Pettibone NNP
+Orange NNP JJ NN
+packages NNS VBZ
+sales-of IN
+clinked VBD
+novelist NN
+well-oriented JJ
+Bennington NNP
+high-income JJ NN
+vendetta NN
+Nomia NNP
+Alice NNP NN
+Semifinished VBN
+singular JJ NN
+Sprouting NN
+alors FW
+Omission NN
+Hovnanian NNP
+shingle NN
+Baker NNP
+Nazi-occupied JJ
+Capo NNP
+quirt NN
+Podger NNP
+Gotaas-Larsen NNP
+misrepresents VBZ
+infatuation NN
+Kogyo NNP
+Boland NNP
+spy-chaser NN
+progandist NN
+quarter NN
+Greenberg NNP
+disruptive JJ
+Whosever WP
+Steinbach NNP
+sambur NN
+Bocas NNP
+fairgoers NNS
+Stocks NNS NNPS
+assembles VBZ
+Tidewatch NNP
+Ashington-Pickett NNP
+two-year JJ
+manumitted VBN
+FOOTNOTE NNP
+Linger NNP VB
+Doerig NNP
+fancier JJR
+one-year-old JJ
+war-rationed JJ
+dales NNS
+higher-education JJ NN JJR
+due-diligence JJ
+Kochaneks NNPS
+leasing NN VBG|NN VBG
+out-of-kilter JJ
+Cheerios-brand JJ
+vestige NN
+Imitation NN
+doctrine NN
+Odell NNP
+sayin NN VBG
+transmitting VBG NN
+L'Imperiale NNP
+ejected VBN VBD
+daylong JJ
+nuclear-propulsion JJ
+redefine VB
+Sterling NNP NN
+Selman NNP
+effecte VB
+Macmillan\/McGraw NNP NN
+thar RB
+suffocate VB
+Retrieval NNP
+five-nation JJ
+Bank-Texas NNP
+secretions NNS
+abdomens NNS
+gossiping VBG
+vibrating VBG
+gathers VBZ
+humbled VBN VBD
+Glorious JJ
+BANK NNP NN
+Bombers NNS
+Nice JJ RB NNP
+worry-free JJ
+encircles VBZ
+paprika NN
+RICO NNP
+pre-`` ``
+denominated VBN
+prognostication NN
+short-to-medium JJ
+Debate NN VBP
+coaster NN
+autoimmune JJ
+secant NN
+adult NN JJ
+feminism NN
+Novo\ NNP
+Qureshey NNP
+sold-out JJ
+temblor-prone JJ
+Ferrero NNP
+mails NNS
+paie VB
+recurrences NNS
+Card NNP NN
+Rhone NNP
+irritated VBN JJ VBD
+one-two-three NN
+HOLD VB
+Ab4,500 CD
+outdone VBN
+non-earning JJ
+streaming VBG
+Chans NNS
+ABC-TV NNP
+Philharmonique NNP
+Fritze NNP
+Bailey NNP
+pro-life JJ
+liberated VBN JJ VBD
+chaplains NNS
+skeptic NN
+fifty CD
+dime NN
+Laff NNP
+Gott FW
+chiefs NNS
+four-man JJ
+Longshoremen NNS NNPS
+Fries NNP
+cud NN
+four-person JJ
+recapturing VBG
+single-foot JJ
+metal-hydrido NN
+screenland NN
+home-bred JJ
+Bebear NNP
+Boley NNP
+proficiency NN
+Unless IN NNP
+Windels NNP
+AP600 NN
+derision NN
+TRIPS NNS
+disrespect NN
+replicated VBN
+Niger NNP
+dissenting JJ VBG
+Worlders NNPS
+canonist NN
+alphabet NN
+tapestries NNS
+Christiane NNP
+Bergamaschi NNP
+Goebbels NNP
+nearsightedly RB
+antique JJ NN
+Kunashir NNP
+Grabe NNP
+invigorate VB
+Undeterred JJ
+Aoyama NNP
+Weinberger NNP
+Nantucket NNP
+noteholders NNS
+Anger VBP NN
+pigeon NN
+retro JJ
+Keystone NNP NN
+half-forgotten JJ
+defile VB
+Scriptural JJ
+Tikopia NNP
+Freight NNP NN
+haggardly RB
+co-author NN
+constellations NNS
+loosening VBG NN
+X-gyro NN
+AFRICA NNP
+vacationers NNS
+co-anchor NN JJ
+provides VBZ
+Theodosius NNP
+pending VBG JJ VBG|JJ
+hilltop NN
+Hoenemeyer NNP
+roundup NN
+Centel NNP
+public-fund JJ
+Tenements NNS
+Retardation NNP
+eye-catching JJ
+tribal JJ
+Sauter NNP
+leap NN VBP VB
+discussing VBG
+Factor NNP NN
+Sener NNP
+ice-cream NN
+beer-bellied JJ
+lettering NN
+Medecine NNP
+vestibule NN
+sunroof NN
+Leyva NNP
+kerchief NN
+Functions NNPS
+brushlike JJ
+oil-patch JJ NN
+Replogle NNP
+compulsory JJ
+Fosdick NNP
+ineffectively RB
+destroy VB VBP
+One-Leg NNP
+analogy NN
+Cheveralls NNP
+electronic-test JJ
+mahua NN
+nucleic JJ
+Melody NNP
+'Today NNP
+imaging NN JJ
+Pudwell NNP
+linchpin NN
+Magnavox NNP
+unprovable JJ
+Comeback NNP
+Richeson NNP
+Charterhouse NNP
+pine NN VBP
+squelched VBN
+modules NNS
+twenty-seven CD
+pencil NN
+touchdowns NNS
+McCann-Erikson NNP
+Pakistani JJ NNP
+well-read JJ
+worry VB NN VBP
+vis FW
+surface-active JJ
+technocratic JJ
+Eurodollar NN JJ NNP
+feckless JJ
+Mizuno NNP
+Ambassador NNP NN
+Links NNP
+sponsoring VBG
+halved VBN JJ VBD
+precocious JJ
+rollbacks NNS
+AIW NNP
+watch VB JJ NN VBP
+Mustangs NNP
+coefficients NNS
+standard-weight JJ
+Prickly JJ
+DuroTest NNP
+Syntex NNP
+Chipello NNP
+Semiconductors NNPS NNP
+Bromfield NNP
+Moune NNP
+step-up NN
+Willman NNP
+tax-collecting JJ
+implied VBN JJ VBD
+museums NNS
+Did- NNP
+diehards NNS
+Barrette JJ
+slanted VBN VBD JJ
+rove VB
+doi FW
+Masterworks NNPS
+BILZERIAN'S NNP
+Wilmette NNP
+ruminations NNS
+Gilder NNP
+linguists NNS
+opulent JJ
+astigmatism NN
+woodwind NN
+Hardiman NNP
+Hamilton NNP
+goggles NNS
+correspondingly RB
+full-blown JJ NN
+deregulating VBG
+over-simple JJ
+Hypotheses NNPS
+orchid-strewn JJ
+worker-years NNS
+continuously RB
+oceanography NN
+Southmark NNP
+Lieber NNP
+Kristiansen NNP
+pursuant JJ
+Muncke NNP
+Sitter NNP
+breakoff JJ
+racist JJ NN
+boat-building JJ
+Swapo NNP
+brashest JJS
+Harte-Hanks NNP
+fancies VBZ
+foul-mouthed JJ
+tidily RB
+non-network JJ
+combo NN
+Knoll NNP
+chi-chi FW JJ
+dolls NNS
+commodity-options NNS
+explicit. JJ
+SP-44005 LS
+boastfully RB
+Napkin NN
+Bakes NNP
+Nutting NNP
+Reddington NNP
+mashed VBN
+Beauregard NNP
+fugitive JJ NN
+Chevron NNP NN
+rebate NN
+electronic-quote NN
+home NN VBP RB VB
+self-willed JJ
+Ellen NNP
+unimproved JJ
+Tchalo FW
+unlock VB VBP
+campagna NN
+Sucks NNS
+paperback NN JJ
+Hartford NNP
+difficulty NN
+dinosaurs NNS
+pessimists NNS
+Aronson NNP
+Climate NNP NN
+requisition NN VB
+contenders NNS
+Taruffi NNP
+long-sleeved JJ
+category NN
+Mag NNP
+doorman NN
+x NN
+AMA NNP
+naval JJ
+rectifier NN
+purchasers NNS
+Nijinsky NN
+Substance NN NNP
+freshwater JJR
+potting VBG NN
+dogmatism NN
+fancy JJ NN VB
+Praises VBZ
+pro-Republican JJ
+exhusband NN
+work-space NN
+cocaine-processing NN
+suspender-clad JJ
+cooking NN VBG JJ
+confers VBZ
+fire-engine JJ
+water-tank NN
+fundraiser NN
+incensed VBN JJ
+Hexen FW
+Kaifu NNP
+PaineWebber-involved JJ
+blasphemy NN
+new-rich JJ
+left-of-center JJ
+pantaloons NNS
+ropes NNS
+worst JJS RBS JJ
+therapists NNS
+systems-integration NN
+Treatment NNP NN
+SMYRNA NNP
+cannibalize VB
+clearinghouse NN
+RNA NNP
+vertical-restraint JJ
+rife JJ
+Diety NNP
+McFall NNP
+Raymon NNP
+sometimes-tawdry JJ
+termed VBD VBN
+flue-cured JJ
+clubby JJ
+vexatious JJ
+Francoise NNP
+wreaking VBG
+Griswold NNP
+Bester NNP
+Minute NNP
+Boeskys NNP
+brushed VBD VBN JJ
+Worries NNS
+jumps NNS VBZ
+awry RB RB|JJ JJ
+auctioneer NN
+reliant JJ
+ein FW
+DLINE NN
+workable JJ
+kilter NN
+eligible JJ NN
+Wertheimer NNP
+ironic... :
+computer-matching JJ
+Davis NNP
+reams NNS
+Chant NNP NN
+envisioned VBD VBN
+re-emphasis NN
+labor-force NN
+combined VBN JJ VBD
+nouveaux FW
+Kuriles NNP
+sacrificium FW
+Conan NNP
+Helps VBZ
+fasciculations NNS
+tone NN VB
+morrow NN
+aloud RB
+picture-palace NN
+peopled VBN
+flight-attendant NN
+exclamations NNS
+promises VBZ NNS
+personae NNS
+Hannibal NNP
+Noblesville NNP
+Iran\ NNP
+Care NNP VB VBP NN
+Barend NNP
+Vitale NNP
+flu-like JJ
+Nonbuilding JJ
+exploitation NN
+dictionary NN
+Dirion NNP
+F.J. NNP
+Utsunomiya NNP
+fatigues NNS
+detested VBD VBN
+Aggrieved JJ
+Chayefsky NNP
+get-together NN
+Vittorio NNP
+birdlike JJ
+favor NN VBP VB
+overuse NN
+costumed VBN
+Perfume NN
+plaid JJ NN
+No-Smoking NNP
+Camaro-Firebird NNP
+Alida NNP
+breeder NN
+premeditated JJ
+blotch NN
+reviewer NN
+ALQ-135 NN
+Mahfouz NNP
+subdirector NN
+prices NNS VBZ
+Lila NNP
+friar NN
+preparer NN
+academia NN
+polka-dotted JJ
+validated VBN
+Towson NNP
+store-name JJ
+Harriers NNPS
+smitten VBN
+defenses NNS
+thriftiness NN
+Electronic NNP JJ
+Brazen NNP
+Oedipus NNP
+peppermints NNS
+Politics NNP NNPS NN NNS
+fickle JJ
+status NN FW
+inflicted VBD VBN
+Das NNP
+heritage NN
+H&Q NNP
+WATCH VB
+mobile JJ
+Tzora NNP
+expense-account NN
+Nasty JJ
+ring-around-the-rosie NN
+unenvied JJ
+salting VBG NN
+Replies NNS
+News NNP NN NNS NNPS
+wings NNS
+HMOs NNP
+smoking-cessation NN
+Orthodox NNP JJ
+double-A1 NN
+Framatome NNP
+Westerners NNPS
+enshrouds VBZ
+outputs NNS
+Lauren NNP
+cue NN
+Forty-five CD
+Paramus NNP
+Atta NN UH
+Oriani NNP
+assai FW
+down-the-line JJ
+chin-wagging JJ
+high-society NN
+betrayer NN
+Suarez NNP
+Sidekick NNP
+jubilation NN
+Rolland NNP
+Panel NNP
+dack-rihs NNS
+cleans VBZ
+Zicklin NNP
+loins NNS
+added-value JJ
+Indulgence NNP
+snorts VBZ
+Palos NNP
+Kajar NNP
+ultra-low-tar JJ
+Junor NNP
+Zapfel NNP
+Hugely RB
+shut-off JJ
+Bowan NNP
+Confiscated VBN|JJ
+Hayasaka NNP
+Rooker NNP
+cottages NNS
+Len NNP
+SP-44006 LS
+brutality NN
+municipal JJ NN
+cathodophoretic JJ
+Oubati NNP
+Liberals NNPS NNS
+cleaver NN
+Eurobond NNP NN
+Seigel NNP
+renegade NN
+vote-loser NN
+harboring VBG
+forever RB
+long-dated JJ
+exceed VB VBP
+augen FW
+land-rich JJ
+quartet NN
+privvy JJ
+Stirring VBG
+Chi NNP
+coalesces VBZ
+enthusiam NN
+Euromarket NNP
+cowpony NN
+Germain NNP
+owls NNS
+watchful JJ
+occurrences NNS
+paralyzed VBN JJ
+challengers NNS
+uneducated JJ
+interest-rate-sensitive JJ
+Tropez NNP
+taxidermist NN
+anti-American JJ
+Amid IN NNP
+profanity NN
+ascendency NN
+repurchasing VBG
+defamed VBN VBD
+emit VB VBP
+foyer NN
+magnificent JJ
+vagrant JJ
+''$ $
+Pennview NNP
+Bigfoot NNP
+Dempsey NNP
+McCarran-Ferguson NNP
+dill NN
+Millie NNP
+acres NNS
+Amsterdam-Rotterdam NNP
+Disappointment NN
+Muni JJ
+Brownlow NNP
+three-fold JJ
+Jerusalem NNP UH
+higher-yielding JJ
+toxins NNS
+brutal-and JJ|CC
+Haun NNP
+Ark NNP NN
+hence RB
+delectable JJ
+Strategists NNS
+foppish JJ
+inexact JJ
+Sanlandro NNP
+beakers NNS
+cautions VBZ NNS
+moot JJ
+majority NN JJ
+cereal NN
+red-frocked JJ
+Porkapolis NNP
+Auxiliary NNP
+amateurish JJ
+Focusing VBG
+courtesy NN
+mini-slip NN
+Sikhs NNPS
+Recall VB VBP
+Exterior NNP
+Cheval NNP
+Payola NN
+lengthier RBR
+indecisively RB
+Itching VBG
+gas-tax NN
+Wimpy NNP
+Price NNP NN
+played VBD VBN
+ribbons NNS
+Ornithological NNP
+Asteroidal JJ
+wallpapers NNS
+NAIRO NNP
+Montrose NNP
+Gene-Spliced JJ
+fray NN VB
+Scenes NNS
+dubious JJ
+solemn JJ
+renowned JJ VBN
+defamation NN
+equated VBN VBD
+Hercules NNP NNS
+MetWest NNP
+Covent NNP
+heath NN
+rainbows NNS
+mistrials NNS
+pastoris NN
+pester VB
+Keeny NNP
+Sicurella NNP
+latch NN VB VBP
+high-rises NNS
+composing VBG
+Troubled JJ VBN NNP
+Aurelius NNP
+kimchi FW
+brainwashed VBN
+jockey NN VBP
+Badges NNS
+demonologist NN
+gasp NN VB
+ambled VBD
+open-face JJ
+Tanzi NNP
+Northampton NNP NN
+hears VBZ
+USIS NNP
+bothersome JJ
+illiterate JJ
+Crum NNP
+Asher\/Gould NNP
+legality NN
+Nightline NNP NN
+flatnesses NNS
+Pola NNP
+psychologists NNS
+comprehend VB
+Slough NNP
+knowns NNS
+cynically RB
+moist JJ
+ridings NNS
+incompetency NN
+Underseas NNP
+Tartaglia NNP
+destinations NNS
+sells VBZ
+Stripes NNP NNPS NNS
+IMS NNP
+Topping VBG
+halving VBG
+Metamucil NNP NN
+prepares VBZ
+laws NNS
+Cinema NNP
+animal-based JJ
+high-spirited JJ
+remote-controlled JJ
+palely RB
+Youngsters NNS
+optimism NN
+Alphametrics NNP
+Dietz NNP
+Saab-Scania NNP
+fewer-than-expected JJ
+HRT NNP
+buck NN VBP VB
+Cariaga NNP
+Antony NNP
+absentee-ballot NN
+Advanced NNP JJ
+market-sensitive JJ
+Neuberger NNP
+exhorts VBZ
+Better-educated JJ
+inflation-fuels-growth JJ
+Amway NNP
+sanctity NN
+alpha-beta-gammas NNS
+electric-power JJ
+twenty-nine CD
+stop-overs NNS
+untested JJ
+co-exist VB
+riff NN
+non-service JJ
+overrules VBZ
+Moscow-Shannon JJ
+old-grad-type NN
+Studds NNP
+THAN IN
+Cowley NNP
+that IN DT NN RB RP UH WP VBP WDT
+age-bias JJ
+handmade JJ
+educating VBG NN
+weavers NNS
+courtship NN
+Capetown NNP
+newly-created JJ
+casuals NNS
+alternately RB
+Consolidated NNP VBN JJ
+Farooquee NNP
+messiah NN
+fluctuations NNS
+out-reaching JJ
+bungalow NN
+Bennis NNP
+Har-Lev NNP
+SIA NNP
+Jenny NNP
+Norm NNP
+bans NNS VBZ
+Comex NNP
+banana NN
+Rudibaugh NNP
+Sumitomo NNP
+high-net NN
+post-Black JJ
+sophisticate NN
+SP-44007 LS
+personifying VBG
+pink-petticoated JJ
+incineration NN
+non-repetitious JJ
+family-business NN
+Cid NNP
+Gabe NNP
+musculature NN
+Bougie NNP
+shrines NNS
+distastefully RB
+shimmered VBD
+residue NN
+linkup NN
+vestments NNS
+braved VBD VBN
+halfbacks NNS
+sarcoma NN
+Sheboygan NNP
+unheard-of JJ
+parities NNS
+Sistemas NNP
+Authority-Garden NNP
+maximization NN
+government-operated JJ
+y NNP NN
+nurturing VBG
+disincentive NN
+swami NNS
+vis-a-vis FW IN NN
+Inasmuch RB
+guitar NN
+underfunded VBN JJ
+salespeople NN NNS
+Committed VBN
+Johns NNP
+unfairness NN
+Maxell NNP
+Mainstream NN NNP
+yori FW
+resuscitation NN
+All-Star NNP JJ
+subordinated VBN JJ VBD
+bluesy JJ
+gab NN
+bicentennial NN JJ
+statistical JJ
+eccentrics NNS
+och FW
+seasoned JJ VBN
+vagabondage NN
+Completions NNS
+ACRES NNP
+abbot NN
+recaptilization NN
+trolley NN
+shirked VBN
+abscess NN
+acknowledgments NNS
+inconspicuous JJ
+Lowenstein NNP
+Lacy NNP
+romanticism NN
+Nuzhet NNP
+comparative JJ NN
+Newt NNP
+meting VBG
+Comrades NNPS
+numerals NNS
+pornographer NN
+snaked VBD
+orbiting VBG
+paranormal JJ
+spices NNS
+Wellington NNP
+specie FW NN
+tapped VBD VBN
+Microlog NNP
+Infant JJ
+simplification NN
+ferrets VBZ
+stoker NN
+gushed VBD
+baptism NN
+schoolers NNS
+brashness NN
+punters NNS
+yielded VBD VBN
+non-oil JJ
+mothballing NN
+Servifilm NNP
+Heyward NNP
+more-sophisticated JJ
+consented VBD VBN
+Specthrie NNP
+Stumbles VBZ
+Stalling VBG
+outselling VBG
+non-executive JJ
+sweating VBG NN
+unleash VB VBP
+lather NN
+recharging VBG
+computer-accessory JJ NN
+Spiller NNP
+save VB IN VBP
+H&R NNP
+substitutionary JJ
+fades NNS VBZ
+Imperiales NNPS
+Impressions NNS
+Long-Term NNP JJ
+verandah NN
+Recreation NNP NN
+prowled VBD
+Moments NNS NNPS
+Hon'ble NNP
+rakish JJ
+well-trampled JJ
+Strom NNP
+wage-earning JJ
+crouchin JJ
+Tootsie NNP
+Flavio NNP
+Masius NNP
+apportionment NN
+Operations NNP NNS NNPS FW
+JIM NNP
+writedowns NNS
+givebacks NNS
+serenade NN
+Sherwin NNP
+visa-free JJ
+day-watch NN
+Abstracts NNP
+senior-management NN
+consistence NN
+microelectronic JJ
+termites NNS
+Dent NNP
+largely RB VBN
+Rullo NNP
+TCF NNP
+lobbyists NNS
+Hillhaven NNP
+HEARS VBZ
+pruned VBN VBD
+federal-court JJ NN
+missile-engineering JJ
+long-arranged JJ
+unworthy JJ NN
+depository NN JJ
+Ekaterinoslav NNP
+ping NN VB
+compressibility NN
+ES250 NNP
+wasn't NN
+Shattuck NNP
+proscription NN
+shutter NN VB
+boozing VBG
+provokes VBZ
+academic JJ NN
+Hoping VBG
+Petery NNP
+Leo NNP
+trussed-up JJ
+ransacking VBG
+Monteverdi NNP
+adversaries NNS
+perceptions NNS
+Fiske NNP
+pampering VBG
+burden-sharing NN
+insidiously RB
+geometry NN
+dope-ridden JJ
+Vistoso NNP
+KSAN NNP
+emancipated VBN JJ
+one-act-play JJ
+epics NNS
+urbanized VBN JJ
+bled VBD
+conservative-liberal JJ
+Photek NNP
+firma FW NN
+captivity NN
+Flaxseed NN
+Symbol NN NNP
+recommended VBD VBN JJ
+inward RB JJ
+Suicide NN
+reconciliations NNS
+Thaxter NNP
+longrun JJ
+well-cut JJ
+GENERAL NNP
+Laing NNP
+curio NN
+Heller NNP
+homeland NN
+G-24 NNP
+Heidrick NNP
+Lorenzo NNP
+amplified VBN
+Lippman NNP NN
+heart NN RB VB
+ters NNS
+HUD NNP
+inability NN
+McEnany NNP
+cadets NNS
+export-promotion JJ
+Compulsions NNP
+dilated VBN
+survival NN
+Infotab NNP
+Santo NNP
+incessantly RB
+management-labor JJ
+adjacent JJ
+Murville NNP
+promote VB VBP
+Engine NNP NN
+ants NNS
+ahem UH
+Thrush NNP
+bugle NN
+davits NNS
+lull NN VB
+Casa NNP
+chalking VBG
+Theatre-by-the-Sea NNP
+aide-de-camp NN
+Shopkorn NNP
+tin-roofed JJ
+recurrently RB
+replacement-car NN
+Lathouris NNP
+local-service JJ
+Kutzke NNP
+devastatingly RB
+Committee NNP NN
+Kalevi NNP
+Ekstrohm NNP
+buy-stop JJ
+resistance NN FW
+Strike VB NN NNP
+dioxalate NN
+tax-collection JJ NN
+unwarrantable JJ
+threateningly RB
+Seerey NNP
+Albertson NNP
+Anglia NNP
+nitrates NNS
+exoneration NN
+cloaks NNS
+Comic NNP
+housewares NNS
+narrowed VBD VBN
+coexistence NN
+Zur FW
+Vermonters NNPS
+Renfrew NNP
+Ephesians NNPS
+Melanto NNP
+backhanded JJ
+transit-association NN
+Ogunjobi NNP
+Armistice NNP
+kick-off NN
+Olympics NNPS NNP NNS
+Comair NNP
+Secesh NNP
+Cycads NNS
+Bauer NNP
+missionaries NNS
+Disgusted VBN
+whom WP
+endings NNS
+asinine JJ
+Metzenbaums NNPS
+currants NNS
+motorist NN
+Shorn VBN
+AGIP NNP
+Lieutenant NNP NN
+Emboldened JJ VBN
+electrogalvanizing VBG
+Whiteford NNP
+aristocrat NN
+G.m.b NNP
+Mapplethorpe NNP
+mashing VBG
+mingle VB VBP
+four-star JJ
+pre-determined JJ
+taking VBG NN
+Ngoc NNP
+short-circuited VBD VBN
+proud JJ
+derelict NN JJ
+hitched VBN VBD
+uptown NN JJ
+mass-building JJ
+floors NNS
+torches NNS
+co-conspirators NNS
+boastful JJ
+pass-through JJ
+lifelong JJ
+agilely RB
+Mo.-based JJ
+cornbread NN
+gambler-politician NN
+redistributive JJ
+elders NNS
+chest-back-lat-shoulder JJ
+pro-environmental JJ
+Politburo NNP
+foursome NN
+dealer-led JJ
+Martinelli NNP
+Martineau NNP
+hells NNS
+bludgeoned'em NN VB
+siphoning VBG
+marched VBD VBN
+mega-mergers NNS
+CLAIMANTS NNS
+fables NNS
+handicaps NNS
+SIMPLIFYING VBG
+identified VBN JJ VBD
+picture-tube JJ
+Perdido NNP
+pantheon NN
+first-quarter JJ NN
+ornate JJ
+truer JJR
+stolid-looking JJ
+sulky JJ NN
+decorative JJ
+wilfully RB
+Maidenform NNP
+pianist NN
+cookfire NN
+Conceding VBG
+smoggy JJ NN
+SoundView NNP
+'He PRP
+Affiliates NNP NNPS
+amity NN
+Alaska NNP
+crooked JJ
+carcinogenic JJ
+rollercoaster NN JJ
+Mai NNP
+Tijuana NNP
+glowed VBD
+AMC NNP
+Nazarova NNP
+Abandoning VBG
+forklift NN
+dock-siders NNS
+Abnormal JJ
+NSPA NNP
+orations NNS
+treasonous JJ
+meal-to-meal JJ
+giving VBG NN
+takeovers NNS
+Jalalabad NNP
+eyewitness NN JJ
+Joiners NNPS
+republic NN
+allowances NNS
+becometh VBZ
+Parkway NNP NN
+babble NN
+Yugoslav-born JJ
+extruding VBG
+zillion NN|CD
+ENTEL NNP
+Soldado NNP
+Harbert NNP
+fervente NNP
+oat NN
+Denials NNS
+nationally RB
+Exeter NNP
+malleable JJ
+U.Cal-Davis NNP
+amber JJ NN
+Cie NNP NN
+Irimajiri NNP
+Kid-Isoletta NNP
+lathes NNS
+Zehnder NNP
+denizens NNS
+turned-up JJ
+humid JJ
+futility NN
+advertiser-sponsored JJ
+private-school JJ NN
+life-supporting JJ
+attacked VBN VBD
+illusionist NN
+Riddle NN
+QUOTABLE JJ
+Lauritz NNP
+Nyheter NNP
+Roger NNP
+disciples NNS
+Neutral NNP JJ
+external JJ
+Habeas FW
+slurped VBD
+Rush NNP NN
+abortions NNS
+Smith-Hughes NNP
+fomented VBD
+Kell NNP
+reexamination NN
+CIRCUIT NNP
+assassinate VB
+delegating VBG
+once-sleepy JJ
+superconductivity NN
+Grill NNP
+African JJ NNP
+Rhinoceros NNP
+FLIGHT NN
+Biotechnology NNP NN
+rots VBZ
+tansy NN
+effaces VBZ
+bookshelves NNS
+cigar NN
+iodothyronines NNS
+Aegis NNP
+Grace-Sierra NNP
+draconian JJ
+bolognaise FW
+justified VBN VBD JJ VBN|JJ
+Toledo NNP NN
+protects VBZ
+Embarcaderothe NNP
+Letterman NNP
+credit-softening NN
+mistreat VB
+epoxy JJ
+I.W. NNP
+LeRoy NNP
+fumble NN
+finally RB
+slim JJ VB
+distributorship NN
+strollers NNS
+puppeteers NNS
+Benedetto NNP
+Masse NNP
+Hashidate NNP
+powerless JJ
+ossification NN
+Manufacture NN
+awnings NNS
+Numbers NNS NNPS
+Breath NN
+Judith NNP
+flintless JJ
+eke VB
+Whampoa NNP
+Paisley NNP
+Booz NNP
+mentor NN
+misnomer NN
+authoritarian JJ
+sidestep VB VBP
+demagogic JJ
+Convocation NN NNP
+hoops NNS
+Showmanship NN
+Evening NNP NN
+Lynne NNP
+policymaker NN
+homecoming NN
+Heliopolis NNP
+Prosecutorial JJ
+Recruiter NNP
+handily RB
+Toronto-based JJ NNP
+third-round JJ
+half-an-hour NN
+more JJR RBR|NN JJ JJR|RBR NN RB RP RBR|JJR RBR
+pre-arranged JJ
+diamond-polishing NN
+Famine NN
+autonomic-somatic JJ
+epicycle NN
+daft JJ
+superpowers NNS
+teacart NN
+unwashed JJ
+T-Max NNP
+anti-prostitution JJ
+debasement NN
+attendant NN JJ
+fantasized VBN
+suable JJ
+niches NNS
+Munk NNP
+emeritus NN JJ
+Matunuck NNP
+Raoul-Duval NNP
+baneful JJ
+slanderer NN
+Lutheran NNP
+Grubb NNP
+incarcerate VB
+pooch NN
+airline-deregulation NN
+staff-written JJ
+Swingin NNP
+Cashman NNP
+breakdown NN
+counters NNS VBZ
+Baldry NNP
+press NN VBP VB
+mean-spirited JJ
+free-for-all NN
+policeman-murderer NN
+Soares-Kemp NNP
+Etsuko NNP
+Allegra NNP
+incompatibles NNS
+Accessories NNS NNP
+Roch NNP
+slaughters VBZ
+wavered VBD
+Lep NNP
+multiscreen JJ
+dowdy-looking JJ
+Mays NNP
+Incidentally RB
+subcontinent NN
+fiberglass NNS NN
+spandex NN
+pur-poises NNS
+hay-wagon NN
+Cydonia NNP
+caucuses NNS
+Pirandello NNP
+ROSS NNP
+sanatorium NN
+Otradovec NNP
+consensual JJ
+condensing VBG
+Rameau NNP
+rosy JJ
+three-panel JJ
+astonished VBN VBD
+Lateiner NNP
+Elaborating VBG
+class-biased JJ
+slugfest NN JJS
+Tibetan JJ NNP
+ends NNS VBZ
+deacon NN
+strong-made JJ
+resolutions NNS
+hamper VB NN
+Gehrig NNP
+supernatural JJ NN
+Karstadt NNP
+RMI NNP
+NagyAntal NNP
+Unable JJ
+manned JJ VBD VBN
+Lawless NNP
+most-jingoistic JJ
+Vague JJ
+yet... :
+overstrained VBN
+theare NN
+Diabetic NNP
+Article NN NNP
+Zoghby NNP
+subterranean JJ
+Signature NNP
+mandate NN VB
+Taylor NNP NN
+SEC. NNP
+condominiums NNS
+approved VBD VBN JJ
+Eating NN NNP VBG
+nightmare NN
+advantage NN VB
+costcutting NN
+stripper NN
+Anat NNP
+Valencia NNP
+exuded VBD
+Movie NNP NN
+harmful JJ
+SHORTAGE NN
+obelisk NN
+ministry NN
+caterpillars NNS
+foolishly RB
+Vermont NNP
+carriage-step NN
+Bourguiba NNP
+insecure JJ
+Finance NNP NN
+unpacking VBG
+briefings NNS
+Saviour NNP
+impulses NNS
+Arm NN VB NNP
+McCaskey NNP
+Duponts NNPS
+CHECKOFF NN NNP
+Geraghtys NNPS
+Lakers NNP
+epigraph NN
+Fluor NNP
+millidegree NN
+euphemism NN
+Its PRP$ NNP
+Scenarios NNS
+WFXT NNP
+Animal NN NNP
+uncooperative JJ
+Gubers NNP
+pleading VBG JJ NN
+Falcon NNP NN
+tunic NN
+Fendrick NNP
+healthily RB
+rectlinearly RB
+test-tube NN
+Adjustment NNP NN
+barbaric JJ
+only RB IN JJ
+Shimizu NNP
+Cline NNP
+campaigners NNS
+Killers NNPS
+cumulate VB
+ladies NNS
+Boa NN
+heights NNS
+recounting VBG
+whisky-on-the-rocks NN
+Parkshore NNP
+vaster JJR
+Sardina NNP
+Remic NNP JJ
+smaller-capital JJ
+bit-like JJ
+Isaiah NNP
+higher-technology JJR
+approximated VBN JJ VBD
+geographers NNS
+Rence NNP
+weakens VBZ
+infuriation NN
+item NN
+Wiggins NNP
+Histories NNP
+Damages NNS NNPS
+sevices NNS
+Ceylon NNP
+Benzinger NNP
+KCS NNP
+odd JJ
+Flamingo NNP
+Svenskarna FW
+capacities NNS
+embracing VBG
+Biopharm NNP
+ever-changing JJ
+jury NN
+Over-50 JJ
+restlessly RB
+palisades NNS
+healthiest JJS
+kapok-filled JJ
+uncurled VBD
+Dockray NNP
+hero NN
+Hulse NNP
+smoothness NN
+judges NNS VBZ
+Spa NNP
+provocative JJ
+Eighty CD
+brown-tobacco JJ
+isle NN
+mobsters NNS
+Tiant NNP
+droplets NNS
+A.F. NNP
+Soya NNP
+condemn VB VBP
+altitude NN
+neutralization NN
+Sandburgs NNPS
+Yardeni NNP
+Kuwaiti JJ
+mapping NN VBG
+amateurism NN
+Musee NNP
+two-color JJ
+Jacksonville NNP
+unlashed VBD
+tolled VBN
+Sparks NNP VBZ
+noteworthy JJ
+crescent NN
+application NN
+Yuppily RB
+juxtapose VBP
+bobby NN JJ
+Sapio NNP
+Mobil NNP
+injunctions NNS
+emphases NNS
+troubling JJ VBG
+real-estate-related JJ
+afresh RB
+chroniclers NNS
+Roulac NNP
+pinch-hitters NNS
+one-size-fits-all JJ
+lunchtime NN
+dreamlessly RB
+Enforce VB
+reflections NNS
+Shionogi NNP
+terming VBG
+transcontinental JJ
+rifled JJ
+snobbery NN
+assured VBN VBD JJ NN
+seventh-largest JJ
+blood-specked JJ
+Cleo NNP
+agronomist NN
+eye-to-eye JJ RB
+co-ordinating VBG
+parting NN VBG
+Characteristics NNS
+A-1-plus JJ
+airstrip NN
+dollar-cost JJ NN
+insignificances NNS
+O'Connell NNP
+Castrol NNP
+Clarksburg NNP
+defeatists NNS
+digitalized JJ
+Ranyard NNP
+guardians NNS
+junks VBZ
+Further RB JJ JJR NNP RBR
+tapis NN
+warms VBZ
+free JJ , JJ|RB RB VB VBP
+backbends NNS
+Yo NNP
+Insomnia NN
+crimps VBZ
+drawled VBD
+mackinaw NN
+One-inch JJ
+l'identite FW
+shipment NN
+short-wave JJ
+POOCH NN
+engraving NN
+mismanaging VBG
+unbreakable JJ
+Juan NNP
+reactivated VBN VBD
+Crossfire NNP
+subversives NNS
+addressing VBG
+rumor-driven JJ
+intraocular JJ
+overlap NN VB VBP
+underclassman NN
+Cif NNP
+Head NNP NN
+Reagan-era NN NNP JJ
+Signers NNS
+farfetched JJ
+Chorale NNP
+M.G. NNP
+scattered VBN VBD JJ
+positivism NN JJ
+unpredictability NN
+kryptonite NN
+semiannual JJ
+detracting VBG
+Swaps NNS
+MetroCorp NNP
+acetone NN
+Teeley NNP
+flurried VBD
+deregulation NN
+distressingly RB
+permeates VBZ
+gyros NNS
+arsenide NN
+Mifflin NNP
+Davidson NNP
+raining VBG
+congruent JJ
+Hazard NNP
+CATFISH NNS
+complaisant JJ
+responsibly RB
+rebound NN VBP VB
+all-night JJ
+Alphonse NNP
+Emmett NNP
+high-water JJ
+glazing VBG
+international-payments NNS
+surgicenters NNS
+longhorn NN
+Micropolis NNP
+Seurat NNP
+quake NN
+parallel JJ RB VB VBP NN
+unmatched JJ
+sponge NN VBP VB
+Ash NNP
+Nicholas NNP NNS
+city-like JJ
+viruses NNS
+crudest JJS
+Junior JJ NNP NNS NN
+whine NN VB
+lessons NNS
+Warrick NNP
+sober-faced JJ
+Velcro NN
+jogging NN
+systematically RB
+spatial JJ
+BET NNP
+HansGeorg NNP
+Guilin NNP
+roughneck NN
+Vietnam-veteran JJ
+intereference NN
+tulip-shaped JJ
+stockyards NNS
+DAWDLING NN
+Schick NNP
+Hyperlite NN
+rejoinder NN
+sniffing VBG
+bustlin NN
+Airless JJ
+mailroom NN JJ
+froze VBD VBN
+oppressed JJ VBD VBN
+shivering VBG NN
+City NNP NN
+pollution-control JJ NN
+Appel NNP
+l987 CD
+Basse NNP
+shifts NNS VBZ
+Corsica NNP
+seepage NN
+Vogtle NNP
+Cesare NNP
+biographer\ NN
+Chemicals NNPS NNP NNS
+unfeasible JJ
+sports-oriented JJ
+Lodestar NNP
+word-of-mouth NN
+just RB JJ RP
+bedlam NN
+velociter FW
+Paints NNP
+dilutes VBZ
+Pratap NNP
+Spilman NNP
+sun-suit NN
+Senate-House NNP JJ
+raincoats NNS
+McNair NNP
+smartest JJS
+attempting VBG
+conservation NN
+fox-terrier NN
+doctors NNS
+Creamery NNP
+Crafts NNPS
+Proceeds NNS NNP
+Patton NNP
+on-again JJ
+to-do NN
+exchange NN VB VBP
+regards VBZ NNS
+Pere NNP
+feminist JJ NN
+SEEKING VBG
+Hydro-Electric NNP
+unheralded JJ
+undergo VB VBP
+explorers NNS
+Symbolizing VBG
+three-day-old JJ
+loads NNS
+Sewell NNP
+small-arms JJ NNS
+nonchurchgoing JJ
+Shalom NNP FW
+straight-haired JJ
+Amabile NNP
+curtains NNS
+hardliner NN
+newspaperman NN
+{ (
+chalk NN VBP VB
+MacAndrews NNP
+hindmost JJ
+Conversation NN
+rent-control NN
+KFC NNP
+Buster NNP
+projectiles NNS
+ventricle NN
+laze VB
+freedom NN
+segregationist NN JJ
+thyroid-stimulating JJ NN
+energetic JJ
+nobody NN
+carry-on JJ NN
+moved VBD VBN
+Bernstein NNP
+beer-industry NN
+boutiques NNS
+yukked VBD
+stiffing VBG
+awoke VBD
+Indefinite JJ
+obligations NNS
+Illeman NNP
+JKD NNP
+characterizations NNS
+fenced-in JJ
+wartime NN
+Remain VB
+gagwriters NNS
+positioning VBG NN
+Lumped VBN
+Broner NNP
+Unloved NNP
+Benzes NNP
+mainframes NNS
+do-gooders NNS
+haole FW NN
+SCANDALS NNS
+bicycles NNS
+Bodner NNP
+theorized VBD
+AMDAHL NNP
+Aung NNP
+unaided JJ
+laughter NN
+fields NNS VBZ
+Calgary-based JJ
+socializes VBZ
+ex-Marine NN
+Dunlop NNP
+Curly JJ
+Dunn-Atherton NNP
+notebook NN
+chart-room JJ
+courses NNS
+greeters NNS
+elite NN NNS JJ
+Jos NNP
+kicking VBG NN
+Venus NNP NN
+Sanwa NNP
+synonym NN
+Netherlands-based JJ
+parlors NNS
+counselor NN
+feebly RB
+irreparably RB
+op-ed JJ
+unsettling JJ VBG
+Aloe NNP
+Alexandrine JJ
+Pontius NNP
+Satisfactory JJ
+idiotic JJ
+stiletto NN
+cleavage NN
+sweated VBD VBN
+Stalled VBN
+Cacao NNP
+assisted-living JJ
+Armies NNP
+Hooper NNP
+Uncertain NNP
+allegro JJ
+... :
+thaw NN VB
+MANUALS NNS
+decipher VB
+Sino-British JJ
+Snatching VBG
+Elvira NNP
+'All DT
+outrage NN VB
+syrup NN
+market-allocation JJ
+Aztec JJ
+bawling VBG
+REPLICATION NN
+ballets NNS
+lustre NN
+Bob NNP
+cry NN VB VBP
+decolletage NN
+heute FW
+BCED NNP
+pharmacological JJ
+Karl-Birger NNP
+embolisms NNS
+FM21 CD
+Hammond NNP
+Terral NNP
+Dieux NNP
+lieutenant-governor NN
+UBS-Phillips NNP
+vehemently RB
+advancing VBG JJ
+hunch NN VB
+equivalence NN
+Savath NNP
+Heartwise NNP
+hyacinths NNS
+concrete-product-making NN
+Battelle NNP
+ode NN
+stratification NN
+shotgun NN JJ
+seventeen-year-old JJ
+rowdiness NN
+mobilized VBN VBD
+Plane NNP NN
+Chaos NNP
+publicize VB
+ever-increasing JJ
+prolusions NNS
+Seniors NNS NNP
+wingbeat NN
+PINDLING NNP
+bouquet NN
+Susitna NNP
+EXAMINE VB
+laughingstock NN
+purgation NN
+gumption NN
+safaris NNS
+enveloping VBG
+Bankshares NNPS
+Micelli NNP
+Berland NNP
+Morbid JJ
+Packards NNPS
+noncompliant JJ
+blot-appearance NN
+belching NN VBG
+Clerfayt NNP
+dewars NNS
+Paddy NNP
+mutters NNS VBZ
+goldstock NN
+conflicts. NN
+reshaping VBG NN
+sponsorship NN
+sworde NN
+CCC NNP
+Data-destroying JJ
+non-British JJ
+interpretable JJ
+tax-backed JJ
+precipices NNS
+Handyman NNP
+corporate-identity JJ
+structure NN VB
+Grace NNP NN
+mil. NN
+Peerless NNP
+bumper NN JJ JJR
+Blanco NNP
+gunned VBN VBD
+fluoresces VBZ
+confess VB VBP
+bloodsucking VBG
+Xu NNP
+arrearage NN
+Dreams NNS NNPS NNP
+mysticisms NNS
+sycophantic JJ
+Irvine NNP
+uranium-recovery JJ
+Note VB NN
+off-exchange JJ NN
+'Unsolved NNP
+rueful JJ
+child-as-required-yuppie-possession NN
+WAFA NNP
+Avenues NNP
+gingerly RB JJ
+highest-ranking JJ
+pause NN VBP VB
+trademark NN
+Heavy NNP JJ NN
+quake-hit JJ
+mercy NN
+student-physicists NNS
+prized VBN JJ
+remarried VBD VBN
+security-services NN
+pornographic JJ
+Bork NNP
+MiniScribe NNP
+Soren NNP
+FICO NNP
+smarmy JJ
+Encino NNP
+anti-lobbyist NN
+Mirage NNP
+Pharaoh NNP
+monitors NNS VBZ
+slammer NN
+iron-casting JJ
+judgement NN
+import-restricting JJ
+sixty-nine CD
+FEDERAL NNP JJ
+industralization NN
+fiercer JJR
+Familism NN
+Arhats NNPS
+spenders NNS
+Samson NNP
+nostrums NNS
+souped-up JJ
+Kazikaev NNP
+Lustgarten NNP
+stiffed VBD VBN
+Shreveport NNP
+oncogenes NNS
+MOVED VBD
+Purepac NNP
+anti-abortionists NNS
+delenda FW
+marble-columned JJ
+Unitarian NNP JJ NN
+duties NNS
+vulcanized VBN
+heart-pounding JJ
+Indemnity NNP
+idioms NNS
+delivering VBG
+depths NNS
+mica NN
+Reik NNP
+planed VBN
+representing VBG
+open-end JJ
+hoydenish JJ
+sculpture NN
+Gerstner NNP
+money-transfer JJ NN
+slovenly JJ
+Center NNP JJ NN
+western-style JJ
+specials NNS
+ramps NNS VBZ
+spiders NNS
+Erich NNP
+suspenseful JJ
+dance-committee JJ
+sitcom NN
+lease-back NN
+oddly RB
+wedged VBN VBD
+l988 CD
+Anxious JJ
+pressure-measuring JJ
+Intrapreneurship NN
+questioned VBD VBN
+befriends VBZ
+WASHINGTON NNP
+bascially RB
+rebuttal NN
+Winawer NNP
+avaricious JJ
+souled JJ
+faciunt FW
+Inflow NN
+Danubian JJ
+bellowed VBD VBN
+Heigh-ho UH
+Fahlgren NNP
+re-engineered VBD VBN
+seven-year-old JJ
+restructurings NNS
+Assistance NNP NN
+snare VB NN
+investigations NNS
+Boatel NN
+comprehension NN
+unscrew VB
+reclaims VBZ
+Separately RB NNP
+musicians NNS
+market-basket JJ
+PAPERS NNS
+Nowadays RB
+Walkman NNP NN
+Ellerman NNP
+Traxler NNP
+better-than-average JJ
+normally RB
+hypodermic JJ
+acidulous JJ
+robber NN
+termini NNS
+tweezed VBN
+Adelos NNP
+personal JJ NN NNP
+CBI NNP
+mailbox NN
+safer JJR
+red-faced JJ
+Running VBG NNP NN
+truck-rental JJ
+adjudging VBG
+obscured VBN JJ VBD
+slipshod JJ
+Robertson NNP
+COMMUNISTS NNS
+exaggerated VBN JJ VBD
+numerology NN
+Fighter NNP
+beaching VBG
+Moorhead NNP
+symphonies NNS
+grouper NN
+Unocal NNP JJ
+etched VBD VBN
+Systems NNPS NNP NNS
+Donbas NNP
+Pole NNP NN
+cardiomegaly NN
+Southlife NNP
+dine VB
+LAC NNP
+liquid-crystal JJ NN
+day-to-day JJ
+Jurisprudence NN
+dribbled VBD
+Grantor NNP
+Daralee NNP
+TCI NNP
+Alberding NNP
+treasurer NN
+pimp NN
+Clarke NNP
+modality NN
+incidental JJ
+rebuilder NN
+A-men NNS
+Detective NNP
+mob NN
+cityscapes NNS
+Blumenkrantz NNP
+lattice NN
+figure NN VB VBP VBZ
+HOLIDAY NNP NN
+Jean-Jacques NNP
+THROUGHOUT IN
+entreated VBD
+Winiarski NNP
+jurors NNS
+Impartiality NN
+Campitelli NNP
+assassins NNS
+Blanton NNP
+Broil VB
+onset NN
+Lobster NN
+Eades NNP
+extract VB NN VBP
+Commodities NNS NNP NNPS
+pediatrician NN
+maryed VBN
+pollen-producing VBG
+Tariff NN NNP
+Yoshihashi NNP
+Ancient NNP JJ
+non-Humana JJ
+renegotiable JJ
+Altair NNP
+Belzberg NNP
+England-born NNP|VBN
+orchids NNS
+taming VBG
+insulin NN
+bulked VBD
+Breslin NNP
+Welt NNP FW
+awhile RB
+Spagna FW
+point-blank JJ
+squirted VBD
+darkening VBG
+Paperweight NNP
+Kings NNP NNPS
+three-year JJ
+assaulted VBD VBN
+Dayton NNP
+Nearing VBG
+commemorative JJ NN
+WARNER-LAMBERT NNP
+McCaw NNP NN
+Scenic JJ
+uniform NN JJ
+pre-May JJ
+haughtily RB
+soutane NN
+beefed VBN VBD
+zoned VBN
+Noonan NNP
+Nick NNP
+wads NNS
+Really RB UH NNP
+caste NN
+hurling VBG
+Purchase NNP NN
+fighter-bombers NNS
+consumer-electronics NNS JJ
+charges NNS VBZ
+SharesBase NNP
+Barred VBN
+badminton NN
+Triple NNP
+Tim NNP
+Aro NNP
+expenditures NNS VBZ
+Wednesday NNP
+corporate JJ
+Wallenberg NNP
+CyCare NNP
+flaky JJ
+Deor NNP
+groomsmen NNS
+Hanwa NNP
+Leopoldville NNP NN
+consumer-led JJ
+pulmonary JJ
+personal-computer NN JJ
+cut-price JJ
+dollar-denominated JJ
+Spec. NN
+intracompany JJ
+Brunei NNP
+Unimin NNP
+Bugatti NNP
+fetishize VBP
+resettled VBN
+graced VBD VBN
+Sign NNP NN
+morsels NNS
+gypsum NN
+Nerien NNP
+Petrofina NNP
+RALLIED VBD
+tighten VB VBP
+Gathering NN VBG
+dealer-managers NNS
+Shelter NN NNP
+presaging VBG
+retaliatory JJ
+batting VBG NN
+mismeasurements NNS
+Hedding NNP
+Kahwaty NNP
+artifical JJ
+Lowenthal NNP
+non-`` ``
+old-fashioned JJ
+over-corrected VBD
+Bridgeview NNP
+fashion NN VB
+Leighton NNP
+exhibition NN
+Questions NNS NNP VBZ
+alternative-fueled JJ
+restaurant-industry JJ
+Dames NNPS NNP
+false JJ RB
+Philosophic JJ
+Andres NNP
+memorandum NN
+memories NNS
+Luzon NNP
+secretary-treasurer NN
+computer-assembly NN
+variegated JJ
+mops NNS
+self-chosen JJ
+Keeps VBZ
+subaltern NN
+impossibility NN
+guarantee NN VB VBP
+don VB NN VBP
+Birnbaum NNP
+more-realistic JJ
+Superstar NNP
+Antori NNP
+air-interdiction NN
+Rusk NNP
+Vigreux NNP
+fractionally RB
+D.S. NNP
+fellows NNS
+apologizing VBG
+plasterer NN
+that'ugly JJ
+SciMed NNP VBD VBN
+distancing VBG NN
+Fitzpatrick-Davis NNP
+Respect NN
+Users NNS NNPS
+partaker VB
+general-practitioner NN
+Moroccan NNP JJ
+subordinates NNS VBZ
+subservient JJ
+machine-gun-toting JJ
+Scandinavians NNPS
+crowded VBN VBD JJ
+Schwartau NNP
+persevered VBD
+CCD NNP
+palletized VBN
+unsightly JJ
+mangled JJ VBN
+private-management NN
+meadow NN
+generics-maker NN
+Intl NNP
+slip VB NN VBP
+rock-carved JJ
+WACS NNPS
+Spectradyne NNP
+guanidine NN
+cogs NNS
+half-century NN JJ
+authorizing VBG
+useful JJ
+hone VB VBP
+paralleled VBN
+Stock-index NN JJ
+senses NNS VBZ
+Lieutenant-Governor NNP
+seminars NNS
+pricey JJ
+disbanded VBN VBD JJ
+Nanjing NNP
+cutting-tools NNS
+Obedience NN
+playfulness NN
+Evadna NNP
+light-transmitting JJ
+transistor NN
+Warrenton NNP
+observatory NN
+regulator NN
+Mon-Columbia NNP
+Lobby NNP
+treasures NNS
+impetuousness NN
+Multiple NNP JJ
+reorganize VB
+ninth JJ
+moneymaking JJ NN
+ice-cubes NNS
+Mal NNP
+pink JJ NN
+AMF NNP
+Priest NNP
+russet JJ
+optimist NN
+not-so-pale JJ
+Batista NNP
+psoriasis NN
+neutrino NN
+writeoff NN
+Caves NNP
+re-examining VBG
+santos FW
+jumpy JJ
+germane JJ
+henchmen NNS
+IBC\ NNP
+self-sacrifice NN
+Packs NNPS
+charlatan NN
+kilns NNS
+Tierney NNP
+humiliates VBZ
+simulators NNS
+pleasure-boat NN
+arylesterases NNS
+price\/earnings NNS
+Through IN NNP
+diversifying VBG
+understandable JJ
+pro-rata JJ
+mid-watch JJ
+honestly RB
+fealty NN
+Reproduced VBN
+thinkin VBG NN
+Coolidges NNPS NNP
+Bizet NNP
+Sleep NN VB NNP VBP
+Janus-faced JJ
+eateries NNS
+Hardware NNP NN
+momentary JJ
+Hitter NN
+exults VBZ
+Philippoff NNP
+Enough JJ RB NNP
+dossiers NNS
+Demonstrations NNS
+quicksand NN
+appareled VBN
+Shamir NNP
+Onondaga NNP
+toughened VBD VBN
+bashed VBD VBN
+Rock NNP
+silver-blue JJ
+steel-hungry JJ
+Oman NNP
+Recycling NNP NN
+Pride NNP
+Viva FW
+despots NNS
+Gravelle NNP
+Bran NNP
+Glycerinated JJ
+unnamed JJ
+creepers NNS
+Ikegai-Goss NNP
+Energie NNP
+Guerrilla NN
+t-tau NN
+injected VBN VBD
+Weickerian JJ
+Shotwell NNP
+remarketings NNS
+Martinsek NNP
+wildest JJS
+Youth NNP NNS NN
+historicism NN
+solely RB
+home-sharing NN
+Mendes NNP
+sesame NN
+Mockler NNP
+oohs UH NNS
+near-blind JJ
+coordinator NN
+R2-D2 NN
+reigns VBZ
+Conaway NNP
+Doubles NNP
+neige FW
+nightgown-clad JJ
+trite JJ
+back... :
+congregated VBD
+head-injury NN
+Case NNP NN
+search-and-examination JJ
+Sabo NNP
+Streeter NNP
+Yours PRP
+Oldham NNP
+stiffness NN
+Sunman NNP
+Thousands NNS NNP
+somewhat-ambiguous JJ
+lateral JJ
+HOME NNP NN
+barber NN
+Jeanene NNP
+Kutz NNP
+strained VBD JJ VBN
+Interior NNP NN JJ
+fathoms NNS
+conquests NNS
+Garson NNP
+sevenfold RB
+narcissistically RB
+profound JJ
+christianizing VBG
+eloquently RB
+digress VB
+Stotler NNP
+railed VBD VBN
+dryly RB
+blue-black JJ
+generalize VB VBP
+Lima NNP
+Figone NNP
+double-helix JJ
+GROUP'S NNP
+Leigh-Pemberton NNP
+Greens NNPS NNP NNS
+hemetin NN
+co-defendants NNS
+ubiquitousness NN
+campers NNS
+decays VBZ
+Klux NNP
+Wesleyan NNP
+dialogues NNS
+Empire-Berol NNP
+s.r.l. NNP
+discussion NN
+Burgundies NNPS
+gun-shot NN
+pontifical JJ
+Fontana NNP
+privately-owned JJ
+rulings NNS
+consume VBP VB
+Cuisinart NNP
+Perimeter NNP
+Banoun NNP
+Minn.-based JJ
+voucher NN
+reversed VBD JJ VBN
+wheeled VBD JJ VBN
+folk-lore NN
+Leyden NN
+jeweler NN
+Cetron NNP
+C.C.B NNP
+adjoins VBZ
+hackneyed JJ
+semiconductor-coating NN
+DeMeo NNP
+nest-egg NN
+Nellies NNPS
+lustily RB
+focuses VBZ NNS
+wreak VB
+biwa FW
+dissidents. NN
+audited VBN JJ VBD
+Preparations NNP NNS
+ALL PDT NNP
+partakes VBZ
+backing VBG NN
+cultivate VB
+borrow VB VBP
+woken VBN
+coverlet NN
+provincially RB
+retools VBZ
+Eduardo NNP
+evocative JJ
+Budapest NNP JJS
+Added VBD NNP VBN
+Salomonovich NNP
+Morals NNS
+soirees NNS
+Wheelan NNP
+insularity NN
+tequila NN
+slant-wise JJ
+Changing VBG JJ
+comics NNS
+Les NNP FW
+ignore VB VBP
+dismal JJ
+Wratten NNP
+Windheim NNP
+Irving NNP
+merge VB NN VBP
+ordeal NN
+Burke NNP
+raisers NNS
+Entrance NN
+unstylish JJ
+pumpkin NN
+shook VBD NN VBN
+pesatas NNS
+Ekco NNP
+R.L. NNP
+Elburn NNP
+mornings NNS
+grimmer RBR
+Litvinchuk NNP
+observe VB VBP
+slim-waisted JJ
+allies NNS
+Christians NNPS NNP NNS
+seventies NNS
+pail NN
+skiis NNS
+shrilled VBD
+sacrilegious JJ
+Nawal NNP
+Ensolite NN
+compact-disk NN
+chignon NN
+broadcastings NNS
+Compromising VBG
+Sorge NNP
+coconut NN
+zorrillas NNS
+Pickin VBG
+Prick VB
+delicatessen NN
+Chapdelaine NNP
+masculinity NN
+Deb NNP
+fatalities NNS
+fanatic NN JJ
+Flumenophobe NNP
+PENCILS NNS
+FRICTION NN
+protocol NN
+line-hand-wired JJ
+co-ordination NN
+Lonski NNP
+Muskegon NNP
+harmoniously RB
+Arianists NNS
+Tin NNP
+shirtfront NN
+Richardson-Vicks NNP
+Capistrano NNP
+HUH NNP
+Arp NNP
+firehoops NNS
+co-signers NN
+unfolds VBZ
+under-depreciated NN
+Exponents NNS
+hypnosis NN
+various JJ
+maiestie NN
+paxam NN
+Multi-Income NNP
+Vollrath NNP
+Peake NNP
+bedazzlement NN
+H.C. NNP
+shvartze NN
+basketball-playing NN
+say... :
+Lond. NNP
+howlers NNS
+FiberWorld NNP
+grabbin VBG
+Blumstein NNP
+psalm NN
+testimonial JJ NN
+West-German JJ
+foul JJ RB VB UH
+cross-state JJ
+Firearms NNP NNPS
+sacrament NN
+Poehl NNP
+overexpose VB
+deductibility NN
+pseudo-history NN
+MerchantsBank NNP
+mannerism NN
+no-trading JJ
+Bigger JJR
+diagonalizable JJ
+Venezuela NNP
+dejeuner FW
+} )
+inordinate JJ
+younger JJR
+sermons\/From JJ
+self-respecting JJ
+Conveniently RB
+cyclists NNS
+stepchild NN
+Ate VBD
+dubiously RB
+Rizzuto NNP
+Bourke NNP
+Krumpp NNP
+Talsky NNP
+horizons NNS
+Returns NNS
+avail NN VB
+pre-Anglo-Saxon JJ
+doo NN VB
+Tsur NNP
+contriving VBG
+five-session JJ NN
+per-ad JJ
+short-cutting JJ
+Maricopa NNP
+Training NNP NN
+almanac NN
+outdo VB VBP
+Good-bye UH NN
+Velasquez NNP
+awe-inspiring JJ
+Billie NNP
+Gloucester NNP
+Captures NNP
+current-generation JJ NN
+cooperating VBG
+Edmondson NNP
+long-bodied JJ
+Reznichenko NNP
+ex-reporters NNS
+playing VBG JJ NN
+random JJ NN
+insulate VB VBP
+trooping VBG
+thumping VBG NN
+indignant JJ
+PHOENIX NNP
+Rue NNP FW NN
+stackers NNS
+Karpa NNP
+Orchestra NNP NN
+processed VBN VBD JJ
+Dramatic JJ
+hazel JJ
+saving VBG JJ NN
+Consensus NNP
+ironclad JJ
+flaunting VBG
+Quackenbush NNP
+luminescence NN
+Conn. NNP
+brockle NN
+Mediobanca NNP
+mercilessly RB
+less-sweeping JJ
+affiliations NNS
+Shelly NNP
+contingent JJ NN
+pointers NNS
+countess NN
+Assume VB
+thermoplastic JJ
+freeze NN VB VBP
+McInnes NNP
+T.D. NNP
+Haut NNP
+Albany NNP NN
+overshadowed VBN VBD
+unfairly RB
+Duke-EPA JJ
+Kiz NNP
+LeGere NNP
+RAAF NNP
+barb NN
+Thorndike NNP
+Horwath NNP
+Neo-Romanticism NNP
+Ewing NNP
+Arshinkoff NNP
+voyageurs NNS
+whoring NN
+SEATO NNP
+divestiture-related JJ
+risk-analysis NN
+gynecological JJ
+repurchase NN VBD VBN JJ VB
+cancelled VBN
+floured VBN
+Kirnan NNP
+finger-paint NN
+vibration NN
+Asser NNP
+countermove NN
+deluge NN
+access NN VB
+meekest JJS
+Prielipp NNP
+liberality NN
+printers NNS
+Breeden NNP
+preferrance NN
+Muzyka NNP
+gave VBD
+sales... :
+Printout NNP
+Darkness NN NNP
+crisscross VBP
+striving VBG NN
+Welcome NNP NN UH VB
+Groucho NNP
+glaucoma NN
+Unum NNP
+imperishable JJ
+single-step JJ
+goings-on NNS
+Hacksaw NNP
+locked VBN JJ VBD
+Handing VBG
+salves NNS
+Feenberg NNP
+assemblage NN
+time-temperature JJ NN
+Probably RB NNP
+Baluchis NNPS
+Universities NNS NNPS NNP
+Celtic JJ NNP
+dollars NNS
+Viss NNP
+competitors NNS
+WESLEY NNP
+sugar-cane JJ NN
+ice-breaker JJ NN
+Minsk NNP
+squandering VBG
+zeros NNS
+uneasiness NN
+mixers NNS
+Prepayments NNS
+sensibly RB
+Dropping VBG
+endure VB VBP
+Savoyards NNP
+therapy NN
+Crus NNP
+Illingworth NNP
+positivist NN
+Francisco-Oakland NNP
+intelligently RB
+pewter NN
+free-drink JJ
+Pirko NNP
+kilowatt-hour NN
+Fonta NNP
+Bonnier NNP
+pillage VB NN
+acrid JJ
+flicking VBG
+gag NN
+blistering VBG JJ
+Agent NNP
+Ethan NNP
+coffee-house NN
+Exactly RB
+Aureliano NNP
+Egils NNP
+Conde NNP
+Ask VB NNP
+McCay NNP
+fraternize VB
+C.J.B. NNP
+OmniBank NNP
+years... :
+Associated NNP VBN JJ
+maniacs NNS
+Bontempo NNP
+stock-conspiracy NN
+recognizance NN
+tutoring VBG NN
+Communications NNPS NNP NNS
+Lady NNP NN
+Ponoluu NNP
+sanctions NNS VBZ
+contemptuously RB
+Next JJ RB NNP IN
+shyly RB
+calcium NN
+rehash NN VBP
+schizoid JJ
+reignite VB NN
+Tarter NNP
+Addison NNP
+Flameco NNP
+Incidents NNS
+defectors NNS
+Spirit NNP NN
+Samuel NNP
+Estate NNP NN
+Squier NNP
+enter VB VBN VBP
+THAT WDT DT
+evokes VBZ
+conventionally RB
+displaying VBG
+NHTSA NNP
+naps NNS
+Holdings NNP NNPS NNS
+Day NNP NN
+ambling VBG
+Yr NN
+Team NNP NN
+Withholding NN
+Japan-U.S. JJ
+Kiefferm NNP
+Lasmo NNP
+hers PRP JJ
+kidnapper NN
+Ally VBP
+Chorney NNP
+Sander NNP
+Grisoni NNP
+Skates NNP
+mostaccioli NN
+bits NNS
+madstones NNS
+instantly RB
+hopefuls NNS
+low-grade JJ
+wrap-around JJ
+epidemiological JJ
+telemarketing NN
+approximates VBZ
+degrading JJ VBG
+Kirkendall NNP
+law-making NNS
+Bias NNP
+disposing VBG
+rubber-stamp VB
+Carl NNP
+square-built JJ
+INS NNP
+Kerensky NNP
+regaining VBG
+retractable JJ
+Kloner NNP
+Settlement NN NNP
+transfusion NN
+turtlebacks NNS
+Daikin NNP
+Equus NNP
+half-gainer NN
+Taxi NN
+defrauded VBD VBN
+Sens. NNP NNS NNPS
+Indio NNP
+Let VB NNP VBD
+bitterly RB
+Chadwick NNP
+sin-ned VB
+Dutch-based JJ
+unburdened JJ
+doubtfully RB
+Nutrition NNP
+Souper NNP
+Dalloway NNP
+Airfone NNP NN
+heftiest JJS
+let-the-locals-decide JJ
+indescribable JJ
+Ackerman NNP
+tallies NNS
+Oval NNP JJ
+oversupplied JJ VBN
+AirTran NNP
+Sophisticated JJ
+coupe NN
+half-chapter NN
+mandatory-retirement JJ
+decedent NN
+Bassi NNP
+Atomic NNP JJ
+ANB NNP
+anti-Catholicism NN
+Iodinated VBN
+Pageants NNS
+sadism NN
+diarrhea NN
+overhear VB
+flank NN
+Lendrum NNP
+high-level JJ NNP
+Dec NNP
+Preferences NNP NNS NNPS
+face-saving JJ NN
+enactment NN
+Howzit NN
+thease NN
+whack VB NN
+Marxist-dominated JJ
+tradeoffs NNS
+Depicting VBG
+Lasorda NNP
+Northeastern JJ NNP
+Dress NNP VB
+wild JJ RB
+Rookie NN NNP
+Nine-month JJ
+exposed VBN JJ VBD
+Patrice NNP
+Humberto NNP
+Analyst NN NNP
+breakup NN
+Cocoons NNS
+Heflin NNP
+Born VBN NNP
+Chauncey NNP
+transitional JJ
+Tortorello NNP
+Franchisees NNS
+oblique JJ
+Harmon NNP
+Angie NNP
+Short JJ RB NNP
+fried JJ VBN
+Sack NNP
+mucosa NN
+Griffin-Byrd NNP
+leprae NNS
+anthropomorphic JJ
+holdovers NNS
+factories NNS
+loosened VBN VBD
+cloned VBN
+cynicism NN
+Departure NN
+peacock NN
+Enthoven NNP
+retreating VBG
+eldest JJS
+rankings NNS
+jetting VBG
+possessive JJ
+resurging VBG
+Meek NNP
+internal JJ
+Native NNP JJ
+sequels NNS
+Balkanizing VBG
+Bilbao NNP
+Baltensweiler NNP
+faxes NNS
+Uniroyal NNP
+snaps VBZ
+registrar NN
+southward RB JJ
+mysteries NNS
+chafes VBZ
+regulation\/deregulation NN
+patronage-free JJ
+corner NN JJ VB
+GANNETT NNP
+daughters NNS
+Stepanian NNP
+big-shouldered JJ
+scrounging VBG
+seven-stories JJ
+intervene VB
+failings NNS
+planetary-science JJ
+Kililngsworth NNP
+pollster NN
+wrondgoing NN
+Persia NNP
+contrasting VBG JJ
+operations... :
+arrayed VBN
+externally RB
+smartly RB
+Bowers NNP
+thicken VB
+reappraisal NN
+Pekin NNP
+segregate VB
+Kenmore NNP
+Rein NNP
+highly-leveraged JJ
+Virnich NNP
+suave JJ
+Fassbinder NNP
+Titche NNP
+Busby NNP
+Worldly RB NNP
+Imagine VB NNP
+swamp NN VB
+Asses NNS
+Teleflora NNP
+weather-related JJ
+vaguely-imagined JJ
+scarred JJ VBN
+moldboard NN
+Moffett NNP
+Flash NN
+judiciaries NNS
+profundity NN
+money-supply JJ NN
+notifies VBZ
+Flying NNP VBG
+assisting VBG
+monster NN
+attractive JJ
+stemming VBG
+thimble-sized JJ
+Third-Period JJ
+self-employed JJ
+Hardee NNP
+finger-tips NNS
+WordStar NNP
+Telegraphers NNS NNPS
+German-language JJ
+no-men NNS
+Handel NNP
+erred VBN VBD
+Forests NNPS NNP NNS
+prod VB NN
+speedway NN
+cowed VBN
+Ahmanson NNP
+Welton NNP
+conundrum NN
+persisting VBG JJ
+Ch'in NNP
+pathogenesis NN
+kitschy JJ
+inducements NNS
+revamp VB NN
+Eschewing VBG
+PERFORMANCE NN
+Man NN UH NNP
+misstates VBZ
+globalization NN
+educated VBN JJ
+volunteers NNS
+K-resin NN
+AmeriGas NNP
+Blancs NNP
+hairtonic NN
+ranks NNS VBZ
+sewing-machine NN
+light-colored JJ
+calibers NNS
+guidewheels NNS
+predictive JJ
+stations NNS
+Proleukin NNP
+Hopwood NNP
+khaki-bound JJ
+not-so-favorite JJ
+Waterman NNP
+clowns NNS
+intolerant JJ
+hiker NN
+speeded VBD VBN
+non-verbal JJ
+outspends VBZ
+Modeling NNP
+Baudelaire NNP
+d-Percent LS|NN
+endangered VBN VBD JJ
+Oley NNP
+Halprin NNP
+philosophers NNS
+Shamrock NNP
+Dalfen NNP
+Nimitz NNP
+Whirpool NNP
+banging VBG NN
+rites NNS
+Merit NNP
+neurosis NN
+sun-kissed JJ
+prove VB VBP
+margarine NN
+Beatitudes NNPS
+paper-clip NN
+SECTION NN
+Sisters NNP NNS NNPS
+pampered JJ
+Balch NNP
+Minnesota NNP
+Dillingham NNP
+perinatally RB
+Smilin NNP
+PANDA NNP
+maharajahs NNS
+experience NN VBP VB
+Euzhan NNP
+kneebreeches NNS
+leveraged JJ VBN NN
+Ruth NNP
+quits VBZ NNS
+Dutil NNP
+Collectors NNS
+Idiot NN
+Namely RB
+ITEL NNP
+colonnaded JJ
+Dubinsky NNP
+baked JJ VBD VBN
+manacles NNS
+health-oriented JJ
+cockeyed JJ
+Okinawa NNP
+Coast NNP JJ NN
+Enlargement NN
+numerator NN
+wage NN VB
+counter-efforts NNS
+heave NN
+well-paid JJ
+Braden NNP
+Duarte NNP
+Elman NNP
+swank JJ
+SA-12 NN
+honors NNS VBZ JJ
+wet JJ NN VBD VB VBP
+Neglect VBP NN
+Kiryat NNP
+malediction NN
+-ing JJ
+educationalist NN
+-0.06 CD
+then-Secretary NNP
+Brecht NNP
+bunked VBD
+Vicon NNP
+eight-cent JJ
+Schuette NNP
+lung NN
+Australian-based JJ
+waste-to-energy JJ NN
+arguing VBG NN
+Tambrands NNP
+pencil-and-sepia JJ
+taffeta NN
+adversely RB
+exhaustively RB
+Bizarre JJ
+Oakmont NNP
+Thought NNP VBD NN
+Machinists NNS NNS|NPS NNPS NNP
+Morvillo NNP
+enemy-Jew NN
+shipshape JJ
+government-held JJ
+Andreassen NNP
+staggered VBD JJ VBN
+Tollman-Hundley NNP
+order-taking NN
+body-numbing JJ
+Summerspace NNP
+sacral JJ
+wellbeing NN
+emaciated VBN JJ
+Disposti NNP
+fixed-term NN
+Josephine NNP
+pain NN
+greases NNS
+intensive JJ NN
+Safeco NNP
+public-works NNS JJ
+Hovercraft NNP
+Industry NN NNP
+bake-oven NN
+angiotensin NN
+SFX NNP
+consulted VBN VBD
+nightmarish JJ
+nutshell NN
+Silverstein NNP
+insuring VBG
+Hackmann NNP
+pharmacists NNS
+enrolling NN
+noble JJ FW
+Syse NNP
+Entergy NNP
+nomenclatural JJ
+ex-truck JJ
+above-normal JJ
+Ma'am NNP NN UH
+unavailability NN
+Lili NNP
+encouragingly RB
+Goose NNP
+hyped-up JJ
+untracked JJ
+cul NN
+trailing VBG
+sparrows NNS
+Suntory NNP
+powers NNS VBZ
+Creon NNP
+Ex-Oriole NNP
+warns VBZ
+Grimm NNP NN
+Colonialism NN
+Leavenworth NNP
+Italian-cut JJ
+Basler NNP
+Lauchli NNP
+barbarisms NNS
+dimmed VBN VBD
+impersonalized JJ
+CDA NNP
+Daniele NNP
+Viking\/Penguin NN
+iconoclastic JJ
+crowding VBG
+painlessly RB
+wahtahm NN
+shivered VBD
+Rafer NNP
+Artemis NNP
+steel-exporting JJ
+Rebuilding VBG
+actions NNS
+Leu NNP
+race-car NN
+tighter JJR RBR
+inter-city JJ
+aspirations NNS
+partitioned VBN
+voting NN JJ VBG
+exuberant JJ
+Chong-sik NNP
+forger NN
+Phrase NNP
+Sparky NNP
+industrials NNS VBZ
+Safeguards NNS
+test NN VBP VB
+refashion NN VB
+intimidate VB
+UtiliCorp NNP
+penny-brokerage JJ
+skiddy JJ
+archaeologists NNS
+tax-deductions NNS
+Three-and-a-half JJ
+inexcusable JJ
+Truckee NNP
+stockpiling NN
+set-up NN
+TEA NNP
+Goya NNP
+bulldozed VBN
+temperature NN
+calloused JJ
+ANC NNP
+irritates VBZ
+inextricable JJ
+Into IN NNP
+penetrating JJ VBG
+registrants NNS
+costlier JJR
+un-Christian JJ
+difficile FW
+Altama NNP
+gullies NNS
+placed VBN VBD
+Camusfearna NNP
+Ackerley NNP
+digestibility NN
+searchlights NNS
+Doulgas NNP
+Renck NNP
+retry VB
+Shortages NNS
+ribozymes NNS
+Ambulances NNS
+geologist NN
+define VB VBP
+RICHMOND NNP
+grievances NNS
+momentous JJ
+disappearance NN
+counterrevolutionaries NNS
+Tip NNP
+Epsilon NNP
+Westdeutsche NNP
+sticklike JJ
+pre-reform JJ
+poolside NN
+sultan NN
+brassy JJ
+WSJ\/NBC NNP NN
+Asset NNP NN
+Nagoya NNP
+Sparcstation NNP
+Veterans NNP NNPS NNS
+Broke NNP
+Vaska NNP
+DeConcini NNP
+Tebuthiuron NN
+first-term JJ
+rushes VBZ NNS
+Alamito NNP
+MORE JJR RBR RB
+months NNS
+boy-meets-girl NN
+Silbermann NNP
+fringed-wrapped JJ
+electrodynamics NNS
+mice NNS
+Hagen NNP
+kindergarten NN
+U.S.that NN
+slaughtering VBG
+Quarter NN NNP
+Petipa-Minkus NNP
+thee PRP
+egotism NN
+less-junky JJR
+Embarrassed JJ
+understandably RB
+conventional-arms NNS JJ
+sulfuric JJ
+scoff VBP NN
+underserved JJ
+astronomer NN
+Single-A-2 JJ
+Ahlerich NNP
+primly RB
+married''-style JJ
+Keng NNP
+carcinoma NN
+overheat VB
+bard NN
+Stefan NNP
+Nyberg NNP
+CAR NN
+Restructuring NN
+Radio-transmitter NN
+Camels NNS
+asymptomatic JJ
+narrated VBN
+primers NNS
+Winery NNP
+units-Texas NNP
+Tsitouris NNP
+altruistically RB
+banned VBN VBD
+innocently RB
+Leasing NNP NN VBG
+Kenya NNP
+education NN
+decisiveness NN
+shipbuilding NN
+counterbidder NN
+Introduction NN NNP
+cooling-heating JJ
+pollution-free JJ
+Ashtabula NN NNP
+Cynthia NNP
+aside RB RP
+verandas NNS
+Doosan NNP
+Genscher NNP
+fractionation NN
+Rummel NNP
+zounds UH
+rifleman NN
+FRAUDS NNS
+inscribed VBN VBD JJ
+buffalo NN NNS
+Tevye NNP
+A.G. NNP
+consistency NN
+Jonesborough NNP
+Andi NNP
+capital-gains NNS JJ NN
+swaggered VBD VBN
+Reedville NNP
+Mega JJ
+Frustrated JJ VBN
+kitten NN
+Andrew NNP
+third-leading JJ
+Machine-tool JJ
+Paprika NN
+Castros NNPS
+small-scale JJ
+hikes NNS
+braving VBG
+re-emergence NN
+Slipping VBG
+half-turned JJ
+well-set JJ
+charcoal-broiled JJ
+rhythmic JJ
+smokescreen NN
+inflation-hedge JJ
+Cash NNP NN
+cupped VBD JJ
+Olayan NNP
+Picturing VBG
+gesticulated VBD
+beginner NN
+dispersants NNS
+Kokubu NNP
+DOWNEY NNP
+Eamonn NNP
+opportuning NN
+paper-shuffling NN
+radar-eluding VBG NNP JJ
+hairshirt NN
+accomplishments NNS
+controversial JJ
+shifty JJ
+day-by-day JJ
+agreements NNS
+low-price JJ
+delegation NN
+decorated VBN VBD JJ
+Algol NNP
+dungeons NNS
+Hawk NNP
+subnational JJ
+middle-market JJ
+buckshot NN
+nouns NNS
+Mao NNP NN
+World-Wide NNP JJ
+Ralston-Purina NNP
+AMI NNP
+appreciatively RB
+dabbler NN
+knowhow NN
+Unanimity NN
+identifier NN
+Pathology NNP
+as'housing VBG
+KGB NNP
+accelerate VB VBP
+separateness NN
+bank-affiliated JJ
+Woodhaven NNP
+Antique NNP
+waste-energy NN
+trucker NN
+Scribe VB NNP
+Kemm NNP
+integrator NN
+lymph NN
+Donuts NNP NNPS NNS
+Orchestre NNP
+acclaimed VBN VBD JJ
+masses NNS
+rout NN
+professionalism NN
+fulfilling VBG
+shrinkage NN
+JURY NN
+Pending VBG NNP
+ferroelectric JJ
+slash-mouthed JJ
+cookie-cutter NN
+Roundup NNP
+creative JJ
+grow-or-die JJ
+HERO NN
+systemwide JJ
+pronouncement NN
+Depicted VBN
+Allendale NNP
+Newark NNP
+Wolfe NNP
+obviousness NN
+Court NNP NN
+surest JJS
+video NN JJ
+Nico NNP
+three-building JJ
+Single-A-3 JJ
+Congregation NNP
+spits VBZ
+Dreyer NNP
+Heel-Kaola NNP
+non-building JJ
+psychotherapeutic JJ
+acid-fast JJ
+gai FW
+pushover NN
+Memotec NNP
+Jemela NNP
+Destroy NNP
+Oeschger NNP
+mains NNS
+Garrick-Aug NNP
+Aboff NNP
+Toyotas NNS
+detract VB VBP
+titre FW
+Kaisers NNPS
+rule-making JJ NN
+Merle NNP
+Partisan NNP
+gratifying JJ VBG
+Imaging NNP
+half-hour NN JJ
+patrolmen NNS
+hipper JJR
+steamier JJR
+Lucisano NNP
+Asiatic JJ
+druggists NNS
+rearmed JJ
+Unsinkable NNP
+Sol NNP
+Commerciale NNP
+deepen VB
+Cover-Up NNP
+CFM56-56s NNS
+Sherwin-Williams NNP
+tractor-trailer NN
+YORK NNP
+white-bearded JJ
+occupations NNS
+Security NNP NN
+Piscopo NNP
+Grossner NNP
+Manger NNP
+forges VBZ
+Danehy NNP
+anxiety-free JJ
+TAX NN
+overstate VB VBP
+upstream RB JJ
+H-2 NNP
+officered VBN
+walk-to JJ
+REVISED VBN
+juridical JJ
+bedfast JJ
+Ct. NNP
+annexation NN
+trackless JJ
+standing VBG JJ NN
+Circus NNP
+matador NN
+Dromey NNP
+credit-market JJ
+brains NNS
+Punching VBG
+dagers NNS
+Laude NNP
+below-market JJ
+Grade NNP
+Rayle NNP
+Museums NNS NNPS
+classifying VBG
+mullah NN
+sharpening VBG NN
+tire-making JJ NN
+Sunbelt NNP
+over-subscribed JJ
+transform VB VBP
+earworm NN
+Barely RB
+inventions NNS
+Sonntag FW
+colicky JJ
+blasphemous JJ
+newsmaker NN
+plain JJ NN RB
+militias NNS
+spidery JJ
+Mixte NNP
+other-directed JJ
+Spegititgninino NNP
+outplacement NN
+arrangement NN
+Slavic NNP JJ
+counter-argument NN
+pension-plan NN
+rewrote VBD
+hating VBG
+skimpy JJ
+bandaged VBN JJ
+identifies VBZ
+stooped VBD
+spyglass NN
+seminary NN
+Presley NNP
+fightin VBG
+'mon UH
+trustees NNS
+commission-driven JJ
+slit NN VB
+bruising JJ VBG
+escorts VBZ NNS
+Mementoes NNS
+candour NN
+all-married JJ
+Lev NNP
+Zawia NNP
+commends VBZ
+scientific JJ
+three-wood JJ
+dripping VBG
+adventitious JJ
+marry VB VBP
+mud-sweat-and-tears JJ
+Three-year-old JJ
+Verplanck NNP
+Armor NNP
+far-afield JJ
+Lounge NNP NN
+molds NNS
+riotous JJ
+all-in-all RB
+bouanahsha FW
+privatizations NNS
+pretentious JJ
+one-paragraph JJ
+AND CC NNP
+Journal-Bulletin NNP
+ContiTrade NNP
+Nyers NNP
+pre-introduction JJ
+forty-four CD JJ
+satisfy VB VBP
+spurious JJ
+unaddressed JJ
+--Dell NNP
+above-target JJ
+Dee NNP
+pavement-performance NN
+Sakaguchi NNP
+warehouses NNS VBZ
+droop VBP NN
+best-financed JJ
+haulers NNS
+MYERSON NNP
+neo-swing NN
+Snead NNP
+snaking VBG
+Cooking NNP
+grayer JJR
+bare JJ VB
+seats NNS VBZ
+blankets NNS VBZ
+fallible JJ
+no-hitters NNS
+Jacchia NNP
+JUST RB
+Anyway RB
+boozed-out JJ
+auto-industry NN JJ
+deterring VBG
+Plank VB
+Bingaman NNP
+fish-processing JJ
+Galina NNP
+Omar NNP
+Jeep\ NNP
+risks NNS VBZ
+Vive FW
+dabbles VBZ
+tapping VBG NN
+tempts VBZ
+glances NNS VBZ
+resubmit VB
+possiblities NNS
+plumbers NNS
+Perk NNP
+penciled VBN
+olivefaced JJ
+instruments NNS
+gaffes NNS
+vaguer JJR
+gymnastic JJ
+coil NN
+flung VBD VBN
+OCCIDENTAL NNP
+deadbeats NNS
+notices NNS VBZ
+prof NN
+upper-income JJ NN
+Henceforth RB
+three CD LS
+gushing VBG
+VIDEO NN NNP
+paralyzes VBZ
+unplug VB
+Aggies NNP
+Jew-haters NNS
+RobertsCorp NNP
+tipsters NNS
+Paxton NNP
+countersuit NN
+Pickard NNP
+mews NN
+Algom NNP
+Macropathology NN
+Beirut NNP
+resurrected VBN VBD
+Sows NNS
+petit FW
+unconvinced JJ
+two-story JJ
+Ceramics NNPS
+ornamentation NN
+Geary NNP
+Machinery NNP NN
+Nazism NNP
+Railroads NNPS NNP NNS
+entries NNS
+constructively RB
+Layout NN
+Breeder NNP
+compensate VB VBP
+Lime NNP JJ
+biped NN
+Liquidity NN
+Broadcasts NNS
+indwelling VBG JJ
+aural JJ
+TBS NNP
+one-dimensional JJ
+toehold NN
+knockdown NN
+Shoe NNP
+cholesterol NN
+sub-group NN
+Worksheets NNS
+ethanol NN
+chipped VBN VBD JJ
+subconferences NNS
+Yok. NNP
+Giancarlo NNP
+theocracy NN
+helmets NNS
+ungodly JJ
+lower-level JJ NN
+ProCyte NNP
+possessed VBD VBN
+Woodland NNP
+guilder NN
+TREND-SETTER NN
+plumed JJ
+Saltzburg NNP
+sprouts NNS
+merchants NNS
+Cortland NNP
+kissing VBG
+earlier-the IN
+Wolff NNP
+Hudbay NNP
+dollar-selling NN
+Unconfirmed JJ
+plugs NNS VBZ
+voter NN
+entire JJ NN
+Kaganovich NNP
+Nonrecurring JJ
+combines VBZ NNS
+Outputs NNS
+southeast RB JJ NN
+Map NNP
+handsets NNS
+Acquiring VBG
+preventive JJ NN
+DJIA NNP
+writ NN VBN
+power-train NN
+Replacement NN
+effects NNS VBZ
+unintentional JJ
+quashing VBG
+get-tough JJ
+punchy JJ
+sweeps NNS VBZ
+jump-start VB
+Winnipesaukee NNP
+Nederlandsche NNP
+imbibe VB
+indentured VBN
+sunset NN VB
+costumes NNS
+Kymberly NNP
+jonquils NNS
+capitalizations NNS
+hood NN
+Boddington NNP
+Fidelity NNP
+Manges NNP
+forget VB VBP
+Graham NNP
+ballistics NNS
+stagemate NN
+Cleaver NNP
+unseasonable JJ
+antipathy NN
+Tawney NNP
+embittered VBN JJ
+six-month JJ
+Hideaki NNP
+nihilism NN
+Forever NNP RB
+Quartet NNP NN
+tackled VBN
+rate-sensitive JJ
+inhibit VB VBP
+Pauline NNP
+otters NNS
+conquer VB VBP
+GARY NNP
+percenter NN
+Dole NNP
+orange-and-blue JJ
+piracy NN
+fanning VBG NN
+shouldering VBG
+Ciba-Geigy NNP
+Retracing VBG
+supporters NNS
+production NN
+pawnshop NN
+A-320 NN
+non-propagating JJ
+Grabowiec NNP
+Gotschall NNP
+prowazwki NN
+performance-related JJ
+predispositions NNS
+OPEC NNP
+Futotsu FW
+Glass-Steagall NNP
+Noxzema NNP
+Mosher NNP
+Norwitz NNP
+Globe NNP
+motor NN JJ VB
+flinging VBG
+stowed VBN VBD
+delicacies NNS
+saints NNS
+Luciano NNP
+Cleopatra NNP
+sizzle NN VB
+Negus NNP
+Giacomo NNP
+Meetings NNS
+BROWN-FORMAN NNP
+fighter-jet NN
+Nature NNP NN
+Quant NN
+stamens NNS
+astute JJ
+nibble VB NN
+stock-margin JJ
+tiles NNS
+infested VBN JJ
+furthering VBG
+wellhead NN
+exploitative JJ
+undersubscription NN
+Labans NNP
+Gentility NN
+Berle NNP
+Searle NNP
+art-historical JJ
+creditor NN
+bedfellows NNS
+physiology NN
+starchy JJ
+wealthier JJR
+television-viewing NN
+Chesley NNP
+amplifier NN
+glutting VBG
+inspector-general JJ
+concerning VBG
+janglers NNS
+substituting VBG
+tiptoe VB
+overestimate VB
+wind-swept JJ
+Isetan NNP
+recession-oriented JJ
+derailed VBD VBN
+encamped VBN
+Bick NNP
+delectably RB
+picnickers NNS
+occupy VB VBP
+THREE CD
+Rickel NNP
+thirty-three CD
+half-completed JJ
+swung VBD VBN
+overlay NN VBP
+Gascony NNP
+Frenchwoman NNP
+Shealy NNP
+Cheryl NNP
+hundred-yen JJ
+pizzazz NN
+choices NNS
+Bochniarz NNP
+H.P.R. NNP
+Gayle NNP
+understands VBZ
+wetlands NNS
+wood-chip NN
+Marous NNP
+Beige NNP
+Landover NNP
+urgent JJ
+effort NN
+pruning VBG NN
+stylization NN
+venture-capital JJ NN
+customer-service JJ NN
+Brouwer NNP
+boosting VBG
+fishing\ JJ
+frightens VBZ
+Tinsman NNP
+coal-mining JJ
+trail NN VBP VB
+bedeviled VBN
+Amin NNP
+wallowed VBD VBN
+Sandia NNP
+well-traveled JJ
+householders NNS
+retrace VB
+CDC NNP
+else RB JJ NN
+telltale JJ NN
+sight-seeing JJ NN
+polymyositis NN
+blind-pool JJ
+dispatching VBG
+redcoat NN
+Simba NNP
+Lew NNP
+salesparson NN
+myriad JJ NN
+Kloeckner NNP
+assaying VBG
+Morozov NNP
+misgivings NNS
+piggybacking VBG
+BID NNP
+downturns NNS
+prairies NNS
+Calif NNP
+Seahorse NNP
+strengths NNS
+Dance NNP NN
+Bertelsmann NNP
+Suntrust NNP
+runner NN
+Soviet-built JJ
+mould VB
+Snecma NNP
+Romagnosi NNP
+immutable JJ
+conservatism NN
+listed VBN VBD JJ
+Aeschylus NNP
+Beijing NNP VBG
+Osler NNP
+Tregnums NNPS
+blem NN
+Mineola NNP
+PIPELINES NNPS
+Still RB NNP JJ
+Lawsuits NNS NNP NN
+backfired VBD VBN
+moon-washed JJ
+France NNP
+Craddock NNP
+thicker JJR RB RBR
+mark-up NN
+edged VBD JJ VBN
+ACCOUNTS NNS NNPS
+Joy NNP NN
+More-detailed JJR
+pesos NNS
+Def NNP
+right-to-life JJ
+Torme NNP
+Weavers NNS NNPS
+imagining VBG
+Johnnie NNP
+chagrin NN
+hyphenated JJ VBN
+Financo NNP NN
+guesstimates NNS
+epileptic JJ
+Dundeen NNP
+Messiah NNP
+free-traders NNS
+misused VBN VBD
+all-American JJ
+psychology NN
+Robots NNP NNS
+sparkling JJ RB VBG
+salutation NN
+opting VBG
+Prussia NNP
+super-absorbent JJ
+Juergen NNP
+essays NNS
+Waleson NNP
+Art NNP VBZ NN
+Scypher NNP
+total-ban NN
+Keynotes NNS
+WNYC-FM NNP
+landlord-tenant JJ
+deep-eyed JJ
+Classical NNP
+Pueblo NNP
+sixfold RB JJ
+Marylanders NNPS
+lulu NN
+majority-held JJ
+Vancouver-based JJ
+Arlauskas NNP
+generously RB
+self-defeat NN
+pipe NN
+Laurie NNP
+thin-lipped JJ
+patriarchal JJ
+dissident-shareholder NN
+Colonsville NNP
+Yu NNP
+redecorated VBN
+Lederle NNP
+heats VBZ
+Frequently RB NNP
+ratifiers NNS
+capers NNS
+mid-1980s NNS CD
+Mergens NNP
+verbiage NN
+MinisPort NNP
+Ebel NNP
+vitriol NN
+Polk NNP
+Naples NNP
+Usery NNP
+worriedly RB
+Henley NNP NN
+movies NNS
+Family NNP NN
+humane JJ
+Gift NNP NN
+Shortageflation NN
+politicize VB
+Advances NNS NNPS
+Lavoisier NNP
+interst NN
+wiggled VBD
+naive JJ NN
+machinelike JJ
+Kinji NNP
+stock-swap JJ
+CAT NNP NN
+Newells NNPS
+software-development NN JJ
+Cornwallis NNP
+documents NNS VBZ
+private-line JJ
+we're-all-in-this-together JJ
+race NN VB
+votes NNS VBZ
+debtor-in-possession NN
+inscrutable JJ
+chooses VBZ
+Finanziaria NNP
+streaks NNS
+J/NNP.A.C. NNP
+glamorized VBN
+grateful JJ
+Whaler NNP
+MOTOR NNP
+quacks NNS VBZ
+savoring VBG
+See-through JJ
+bust-up JJ
+bilious JJ
+append VB
+exacting JJ
+cent NN FW
+D.T. NNP
+Decliners NNS
+tuitions NNS
+weakly RB
+wringing VBG
+nil JJ
+Beddall NNP
+amplifies VBZ
+lightning NN
+beret NN
+volume NN
+Harpoon NNP
+RECRUITS VBZ
+count NN VB VBP
+Braitman NNP
+in-groups NN
+blasted VBD VBN
+Charlemagne NNP
+Shortening VBG
+Ghent NNP
+Nomani NNP
+Eiffel NNP
+Kluckhohn NNP
+century-old JJ
+Harmless JJ
+ministries NNS
+Minpeco-Manufacturers NNPS
+Lithell NNP
+heatedly RB
+single-sentence JJ
+ups NNS
+Donohue NNP
+roundabout JJ
+-.50 CD
+Gelly NNP
+Mathematics NNP NN
+Plugging VBG
+adhered VBN VBD
+taverns NNS
+snarl NN
+Mustain NNP
+programed VBN
+agricultural JJ
+disparity NN
+Burle NNP
+irreverent JJ
+narrower JJR
+mercenary JJ
+Magazine NNP NN
+hot-dog JJ
+street-corner JJ
+SWUNG VBD
+hefted VBD
+Leica NNP
+A-321 NN NNP
+Angeles-based JJ
+reprovingly RB
+songful JJ
+go-getters NNS
+overstaying VBG
+missions NNS
+consoled VBD VBN
+wheeling NN VBG
+Earthquakes NNS
+tenting NN
+Norris NNP
+postured VBD
+birch-paneled JJ
+Largely RB
+Gensichen NNP
+Kaufmann NNP
+writing-instruments JJ
+Unificationism NNP
+Rolfes NNP
+turmoils NNS
+sub-headlines NNS
+codfish NN
+prosy JJ
+Metzler NNP
+transactionstructuring NN
+Reykjavik NNP
+Shutter NNP
+LIVESTOCK NNP NN
+Unflattering JJ
+ruble NN FW
+Prexy NNP
+line-item-veto JJ
+scientist\/traders NNS
+Hickman NNP
+nolle FW
+legalize VB VBP
+fertilizers NNS
+verity NN
+Fehr NNP
+consummation NN
+Jude NNP
+Destec NNP
+Alesio NNP
+Neo-Classicism NNP
+DB2 CD
+eye-popping JJ
+inspirations NNS
+Peale NNP
+Mississippian NNP
+Lipshie NNP
+Beardslee NNP
+Carolyne NNP
+Molard NNP
+Pengally NNP
+Chemists NNS
+Pamela NNP
+McCulley NNP
+untidiness NN
+twenty-six CD JJ
+Relating VBG
+whims NNS
+fine-grained JJ
+precompetitive JJ
+disabuse VB
+implanted VBN VBD
+removable JJ
+Hafiz NNP
+chicago NNP
+blithe JJ
+completed VBN JJ VBD
+cracker-box JJ
+Hayter NNP
+oak-log NN
+Promoters NNP NNS
+Sischy NNP
+P-E NNP NN
+Chase NNP
+health-maintenance NN
+acclimatized VBN
+Away RB NNP IN
+proxy-solicitation JJ
+Hanover-Ceyway NNP
+Horton NNP
+gratingly RB
+trance NN
+auditing NN VBG
+decisional JJ
+DIFFERENCE NNP
+lump NN VBP
+unconcerned JJ
+EURODOLLARS NNS NNPS|NNS NNPS
+rearrangement NN
+Cate NNP
+electricity NN
+Revere NNP
+Saco NNP
+waste-management JJ NN
+implies VBZ
+office-furniture JJ
+Danieli NNP
+Ageny NNP
+self-congratulatory JJ
+Son NNP NN
+stop VB NN VBP
+F.L. NNP
+boom-and-bust JJ
+Basel-based JJ
+honk VBP
+Moreton NNP
+cooperation NN
+scaffoldings NNS
+tinkers NNS VBZ
+horseradish NN
+questioner NN
+Wilsonian JJ
+treaty-negotiating JJ
+three-inning JJ
+long-range JJ
+apparitions NNS
+Fools NNS
+Dysan NNP
+Greenmoss NNP
+synergies NNS
+free-spiritedness NN
+Stratforde NNP
+attacker NN
+leaders NNS
+Scripps NNP
+CBO NNP
+cologne NN
+States-Yugoslav NNP
+suntan NN
+Shiloh NNP
+baths NNS VBZ
+slightly-smoking JJ
+SANTA NNP
+Palace NNP NN
+Sorrentine NNP
+Tizard NNP
+Washed VBN
+Karol NN
+Harrison NNP
+California NNP JJ
+economic-reform JJ NN
+Deaths NNP NNS
+White NNP JJ NN
+Ellie NNP
+manufactured VBN VBD JJ
+grimness NN
+haggard JJ
+harpsichordist NN
+mother. NN
+aftershock-resistant JJ
+deposed VBN VBD
+Blackboard NNP
+Shalov NNP
+Treitel NNP
+baited VBN
+earlier-than-expected JJ
+fire-control JJ
+Wis.-based JJ
+intently RB
+Nova NNP
+co-founders NNS
+justifies VBZ
+Mexicali NNP
+indestructibility NN
+Crisis NNP NN
+pranks NNS
+Streisand NNP
+Orangeburg NNP
+Shtern NNP
+Kohut NNP
+Conceptually RB
+Ziff NNP
+Oce-Van NNP
+Madsen NNP
+glorified VBN JJ
+POWs NNS
+extravagance NN
+Petruchka NNP
+artist-nature NN
+Cornish NNP
+Tidewater NNP NN
+jettisoned VBN
+smelling VBG
+impossible JJ
+part-owner NN
+REITs NNS
+Lex NNP
+chemical-weapons NNS JJ
+proscriptive JJ
+deductible JJ
+co-operated VBD
+coin NN VB
+Pauling NNP
+horse-breeding NN
+twinkle NN
+Kohi FW
+flights NNS
+pompons NNS
+Pischinger NNP
+multiple-paged JJ
+charted VBN
+Gaveston NNP
+took VBD
+grudgingly RB
+Malaysian JJ
+conspicuous JJ
+owns VBZ
+management-union JJ NN
+tie-in NN JJ
+Visx NNP
+invitation NN
+rooms NNS
+glossary NN
+show-offy JJ
+Cask NNP
+Topper NNP
+snubbing VBG NN
+Crooked JJ
+Grew VBD
+TED NNP
+DISASTER NN
+McCullough NNP
+groomed VBN
+ANF NNP
+callousness NN
+'emselves PRP
+tableland NN
+risk-fraught JJ
+jell VB
+Platonic JJ NNP
+Terrible NNP
+Teaneck NNP
+subsoil NN
+Jindo NNP
+sweetish JJ
+spelling NN VBG
+IBEW NNP
+Poll NNP NN
+prayer-requests NN
+''. NN JJ VB . : SYM
+governmemt NN
+all-too-sincere JJ
+vintner NN
+Sporadic JJ
+fieldwork NN
+Bakkers NNPS
+Aguiar NNP
+mutton NN
+comradeship NN
+IIs NNPS
+Mendez NNP
+Two-Head NNP
+brushes NNS
+cobwebs NNS
+aciduria NN
+Hawn NNP
+Trotting VBG
+coincidentally RB
+reauthorize VB
+pre-emptive JJ
+delicate JJ
+Societa NNP
+kneecap NN
+geochemistry NN
+Comin VBG
+fer IN
+NASA NNP
+Beahrs NNP
+top-secret JJ
+Aloys NNP
+passengers NNS
+Institutionalization NN
+Magleby NNP
+gloomier JJR RBR
+peoples NNS
+anti-slavery JJ
+Kopcke NNP
+Jennison NNP
+Deleage NNP
+kinds NNS
+administration... :
+biographers NNS
+Caucus NNP
+'ve VBP VB NNP
+Henritze NNP
+Hamburger NN NNP
+admen NNS
+IRA NNP NN
+Metropolis NNP
+surrogacy NN
+Kemp NNP
+keeping VBG NN
+sneered VBD
+tailpipe-emission JJ NN
+unpunished JJ
+Privately RB NNP
+commuted VBN VBD
+Status-roles NNS
+brokerage-stock NN
+Timen NNP
+Catalyst NNP
+memorialized VBN
+burdening VBG
+all-news JJ
+tangled JJ VBD VBN
+Molloy NNP
+undertaking NN VBG
+iself NN
+by-passed VBN
+straits NNS
+thrift-fraud JJ NN
+Hypothesis NN
+commercial-jetliner JJ
+pre-school JJ
+PROPERTIES NNPS
+deportation NN
+four-color JJ
+Pickle NNP
+persuasions NNS
+holdouts NNS
+dot NN VBP VB
+liveried JJ
+Norris-LaGuardia NNP
+informs VBZ
+lopped VBD VBN
+consequently RB
+egg-throwing JJ
+Coats NNP NNS NNPS
+awareness NN
+Rangoni NNP
+Barrel NN
+baseless JJ
+Colloton NNP
+bladder NN
+hoof NN
+festivity NN
+Finally RB
+Exposition NNP
+Patrick NNP
+non-Aryan JJ
+fateful JJ
+meantime NN RB
+intrinsic JJ
+pair NN FW VB
+prided VBD VBN
+amicus NN
+Malec NNP
+Panic NN NNP
+Dimensions NNP NNS NNPS
+horse-meat NN
+Ricken NNP
+silence NN VB
+answered VBD VBN
+lays VBZ NNS
+arak FW
+Siciliana NNP
+wood-product NN
+Tipperary NNP
+Finland NNP NN
+penalty NN
+frontrunner NN
+Rulers NNPS
+Argentinian JJ
+anaerobic JJ
+drug-education NN
+grey-skied JJ
+Unificationist JJ
+Hager NNP
+cranny NN
+Baltimore NNP NN
+survived VBD VBN
+duplicating VBG
+Surrendering VBG
+powerful JJ
+Bovin NNP
+self-starters NNS
+peddling VBG JJ NN
+Germanized VBN
+auctions NNS VBZ
+Sewickley NNP
+T.E. NNP
+debt-to-equity JJ NN
+comprehensive JJ
+premier NN JJ JJR
+Managerial JJ
+Tamiris NNP
+Tramp NNP
+Dwor NNP
+Yokum NNP
+monosyllable NN
+Coopers NNP NNPS
+thicket NN
+Scully NNP
+inquiring JJ VBG
+Mar NNP
+Malay NNP
+homage NN
+Parker NNP
+propects NNS
+Baliles NNP
+mix-up NN
+trans-lingually RB
+counterproposals NNS
+raucous JJ
+joblessness NN
+inconsistency NN
+four CD LS
+Olszewski NNP
+palms NNS
+persuaders NNS
+Currier NNP
+eatable JJ
+Udall NNP
+receivers NNS
+innoculated VBN
+Specialist NNP
+train NN VB VBP
+thermonuclear JJ
+Tax-exempt JJ
+Thy PRP PRP$
+stiffen VB
+grizzly NN
+Practical JJ NNP
+Free-trade JJ
+crevasse NN
+disseminate VB
+epsiode NN
+Designated NNP
+motifs NNS
+Responsibility NNP
+debility NN
+bourbon NN
+FRANKLIN NNP
+research NN VB VBP
+rivalries NNS
+highest-grossing JJS
+ringing VBG NN
+ultimately RB
+phase-two JJ
+cousin NN
+materialize VB VBP
+Bennigsen-Foerder NNP
+multidimensional JJ
+Burma NNP
+having VBG
+Investigators NNS NNP
+Langhorne NNP
+serve-the-world JJ
+Gornto NNP
+Brahmaputra NNP
+Regnery NNP
+THACHER NNP
+unqualified JJ
+operable JJ
+Mandate NN
+grade-equivalents NNS
+beggars NNS
+kinfolk NNS
+non-communist JJ
+clientele NN NNS
+secular JJ
+liberal-democratic JJ
+Morristown NNP
+Harmful JJ
+Comdisco NNP
+daunted VBD VBN JJ
+double-edged JJ
+bond-holders NNS
+Obelisk NNP
+Alurralde NNP
+reopens VBZ
+ALLOWED VBD
+gal NN JJ
+wholesale-sized JJ
+Pharmacia NNP
+book-lined JJ
+maternal JJ
+Soria NNP
+meteors NNS
+Half-time JJ
+chimera-chasing JJ
+Montana NNP
+Ismaili NNP
+uninviting JJ
+single-issue JJ NN
+Horowitz NNP
+U.N.F.P. NNP
+historicity NN
+funnels NNS
+repackaged VBN
+equates VBZ
+mastered VBN VBD
+Saddle NNP
+Reis NNP
+U.N.-chartered JJ
+perhaps-decisive JJ
+infection-fighting JJ
+fine-looking JJ
+Ballooning NN
+possibility NN
+party-giving NN
+Soo NNP
+thei PRP
+Playboy-at-Night NNP
+Kamieniec NNP
+private-detective NN
+crew-pairing JJ
+sovereign JJ NN NN|JJ
+fryers NNS
+sinecure NN
+mason NN
+hottest JJS
+Heights NNP NNPS
+Mythological JJ
+metered VBN
+lawyer NN
+anti-secrecy JJ
+Augustines NNPS
+Meanings NNS
+Weakens VBZ
+over-stored JJ
+actuated VBN
+MacArthur NNP
+Turnbull NNP
+swab VB
+under-35 JJ
+halves NNS VBZ
+Tacloban NNP
+commander-in-chief NN
+fussy JJ
+ICAO NNP
+JoAnn NNP
+charmers NNS
+Desc NNP
+Both DT CC PDT
+frieze NN
+approves VBZ
+deeper JJR RBR RB
+Optic-Electronic NNP
+Alastair NNP
+marketization NN
+Well-received JJ
+Dieppe NNP
+men-of-war NNS
+acquiescence NN
+warmhearted JJ
+Hallmark NNP
+TRANSFER NN
+Saitoti NNP
+Answer NN VB
+lumping VBG
+Good-faith NN
+perseveres VBZ
+--271,124 CD
+brothels NNS
+assent NN
+pleased VBN JJ VBD
+methacrylate NN
+scoffed VBD VBN
+unanalyzed JJ
+cup NN VB
+dot-matrix NN
+dental-products NNS
+tool NN
+scarcity NN
+papering VBG
+I.R.S NNP
+farmsteads NNS
+onerous JJ
+AVOIDED VBD
+Basso NNP
+Bowery NNP
+Caltrans NNP NNS
+Kushkin NNP
+Millis NNP
+Hodgepodge NN
+Durant NNP
+moi FW
+booboo NN
+power-hitter NN
+Koreans NNPS NNP NNS
+rigors NNS
+Autodesk NNP
+Gorce NNP
+soak-the-rich JJ
+alumni NNS
+compounds NNS VBZ
+Eben NNP
+Implementation NN
+districting NN
+rested VBD VBN
+gouged VBD
+Ragan NNP
+Wedgwood NNP
+Cluck NNP
+consigned VBD VBN
+Huggins NNP
+Chivas NNP
+extraterrestrials NNS
+fiberoptic JJ
+post-Vietnam JJ
+mid-morning NN
+denouncing VBG
+narration NN
+oppresses VBZ
+salt-edged JJ
+buff NN JJ
+round-faced JJ
+She'arim NNP
+selloff NN
+wooing VBG NN
+scandal NN
+tousled VBN JJ
+Simai NNP
+Yamaguchi NNP
+deftly RB
+Louis NNP
+fallen VBN JJ
+brigades NNS
+Giuffrida NNP
+eviscerating VBG
+Discours NNP
+detriment NN
+Anabel NNP
+player NN
+turban10 NN|CD
+cosmopolitans NNS
+week-long JJ
+manipulators NNS
+meandering VBG
+Downham NNP
+Nelson NNP
+Strauss NNP
+loaves NNS
+Prieur NNP
+Glantz NNP
+hazes NNS
+indistinguishable JJ
+IPM NNP
+Schiff NNP
+Goldwater NNP
+country... :
+atmosphere NN
+youngster NN
+soubriquet FW
+Help-wanted JJ
+basophilic JJ
+Renee NNP
+apologists NNS
+Karns NNP
+polybutene NN
+nonpriority NN
+Fellowships NNS NNP
+Would MD
+trounced VBD
+rambunctious JJ
+suit NN VBP RB VB
+transferable JJ
+Furs NNP
+disaster-assistance JJ
+reside VBP VB
+Bruner NNP
+'The NNP DT
+two-page JJ
+Larry NNP
+Indirectly RB
+crummy JJ
+adapt VB VBP
+firecracker NN
+oversight NN
+macroeconomic JJ
+HERS NNP
+portended VBD
+computer-activated JJ
+Commenting VBG
+Audiovisual NNP
+incomprehension NN
+musicals NNS
+venue NN
+proposals NNS
+Cilcorp NNP NN
+Poitrine NNP
+contradicts VBZ
+chameleon NN
+push-ups NNS
+Payments NNS NNP
+Standardization NN
+extended-care JJ
+dromozoa NNS
+Jist RB
+Two-Year JJ
+commodity-market NN
+tremulous JJ
+Phyfe NNP
+five-week JJ
+Sarah NNP
+Bosses NNS
+Bailit NNP
+Escudome NNP
+high-altitude JJ
+optimo FW
+Carr NNP
+then-Minister JJ
+v-senv5 NNP
+Viruses NNS
+Lessons NNS
+dinosaur... :
+theatrical JJ NN
+Apolo NNP
+lessening NN VBG
+surreptitiously RB
+thin-walled JJ
+Minpeco NNP
+purveyor NN
+Spatial JJ
+inaccurately RB
+managament NN
+restating VBG
+Levittown NNP
+identity NN
+re-echo VB
+pepper-coated JJ
+non-option JJ
+Rademacher NNP
+inferable JJ
+prattle NN
+Cyoctol NNP
+Milledgeville NNP
+Staircase NN
+taxi-ways NNS
+aflatoxin-free JJ
+oneyear JJ
+highlands NNS
+aikido FW
+cutting-edge JJ NN
+crossbars NNS
+golfing NN VBG
+Knight NNP VBP
+CCK NNP
+fiveyear JJ
+guard NN JJ VB VBP
+sanipractor NN
+limos NNS
+oversimplification NN
+natural-resources NNS JJ
+lesser-developed-country JJ
+Russ NNP
+Tech NNP
+flurries NNS
+Co-Renitec NNP
+wholeness NN
+Plano NNP
+asset-valuation NN
+micrographics NNS
+Varian NNP
+RESOURCES NNP
+two-button JJ
+dauphin NN
+unison NN
+anticompetitive JJ
+strapped VBN VBD JJ
+Leeza NNP
+Mount NNP NN VB
+Wooded JJ
+Dufresne NNP
+Doctors NNS NNPS
+Procedures NNPS NNP NNS
+champ NN
+inertial JJ
+braver JJR
+Gentiles NNPS
+process-server NN
+instance NN
+Duty-free JJ
+deliverance NN
+Trophy NNP NN
+Laurentiis NNP
+filberts NNS
+flunk VBP
+consult VB
+Antibody NN
+debt-portfolio NN
+neighbhorhoods NNS
+sameness NN
+Holloway NNP
+drafted VBN VBD
+sadist NN
+penetration NN
+Parthenon NNP
+TDK NNP
+Presupposed VBN
+Africanist NNP
+fermentations NNS
+theories NNS
+sunshades NNS
+wonderland NN
+Generalissimo NNP
+caravan NN
+Generating NNP
+Mademoiselle NNP
+IOS NNP
+Commencing VBG
+formulaic JJ
+metamidophos NNS
+damed VBD VBN
+Ragavan NNP
+Chavanne-Ketin NNP
+monodisperse JJ
+enthusiastic JJ
+Populares NNP
+KGF NNP
+strongly RB
+Chorus NNP
+KLERK NNP
+antianemia JJ
+Quad NNP
+teaming VBG
+Freedom NNP NN
+personal-care JJ NN
+Kinder-Care NNP
+trickery NN
+beefsteak NN
+Total JJ NNP
+millenium NN
+'Big JJ
+torpedoing VBG
+Hatakeyama NNP
+Visher NNP
+Whelen NNP
+pins NNS VBZ
+Warburg NNP
+Fearon NNP
+Faustus NNP
+Weinbach NNP
+masculine JJ NN
+builder-dealer JJ
+abreast RB
+haddock NN
+fifty-year JJ
+Fourth-of-July NNP
+negro NNP
+Transition NN NNP
+subfigures NNS
+gusher NN
+gabbing VBG
+dilates VBZ
+twenty-four CD
+Junsheng NNP
+murkier JJR
+minifying VBG
+Gottshall NNP
+commercialization NN
+sororities NNS
+current-account JJ NN
+howled VBD
+Glaxo NNP
+outrun VB VBN
+DeMoulin NNP
+waivered VBN
+Courses NNS NNP
+more-favored JJ
+commonstock NN
+Receivables NNPS NNP
+Secom NNP
+Meselson NNP
+Lederberg NNP
+Adirondacks NNPS
+Junk-fund NN
+overactive JJ
+crinkles NNS
+quadrennial JJ
+Helva NNP
+everyone NN
+Addict NNP NN
+deltoids NNS
+shit-sick JJ
+delegated VBN
+Downgraded VBN
+dismaying JJ
+Strohman NNP
+Portraits NNPS
+legacy NN
+parimutuels NNS
+Oatnut NNP
+indigestible JJ
+servants NNS
+big-time JJ
+Protesting VBG
+Charm NNP
+knockout NN
+Allegro NNP FW
+non-Communist JJ
+infesting VBG
+glowing VBG JJ|VBG JJ
+unfunny JJ
+colonization NN
+aggregation NN
+Therefore RB CC
+corrode VBP VB
+goldsmith NN
+Woodrow NNP
+bottled JJ VBD VBN
+Flush JJ
+Ballets NNP NNS
+Colon NN NNP
+mini-component JJ
+admirers NNS
+Grippo NNP
+Rosabelle NNP
+Quill\/William NNP
+professional-design JJ
+caved VBD VBN
+Eminonu NNP
+cinematography NN
+Self-sufficiency NN
+heraldic JJ
+dragnet NN
+cash-strapped JJ
+Marsam NNP
+Division NNP NN
+outdoor JJ
+mastermind NN VB
+year-earlier JJ NN
+Carsten NNP
+grown-ups NNS
+hitches NNS VBZ
+growls VBZ
+Grey NNP
+Auf NNP
+Cobra NNP
+Ritschl NNP
+Barnevik NNP
+insulators NNS
+workroom NN
+Board NNP NNPS NN
+whores NNS
+firstround JJ
+Cruz NNP
+Blaustein NNP
+Bharati NNP
+Barren NNP
+misleadingly RB
+egrets NNS
+twin-engined JJ
+Sayre NNP
+roiling VBG JJ
+candybar NN
+Medford NNP
+Hosomi NNP
+Soyuz NNP
+conservative JJ NN
+decades-old JJ
+intravenously RB
+Oct. NNP NN
+Bouquet NNP
+marches NNS VBZ
+Roussel-Uclaf NNP
+sweepingly RB
+misfortune NN
+Thief NN
+reconnect VB
+intensity NN
+drinkable JJ
+taboos NNS
+Nawbo NNP
+Antonini NNP
+extinct JJ
+Venusians NNPS
+enabled VBD VBN
+sycamore NN
+Technodyne NNP
+Overstreet NNP
+hothouse JJ
+gray-haired JJ
+PROSPER VBP
+Activists NNS
+inextricably RB
+Stansbery NNP
+solitudes NNS
+photosensitive JJ
+glimpse NN
+violated VBD VBN
+Fulke NNP
+Confess VB
+Fujisawa NNP
+mortaring NN
+marts NNS
+BIG NNP JJ
+WAGE NN
+counteracting VBG
+floating VBG JJ
+developing-country JJ
+coke NN
+Indo-German NNP
+Chu NNP
+tenuously RB
+airline-industry NN
+RMS NNP
+melamine NN
+wine-dark JJ
+messaging NN VBG
+Makin NNP VBG
+Lurgi NNP
+breakthroughs NNS
+Shakya NNP
+Herman NNP NN
+hoosegows NNS
+wrangled VBD VBN
+Chains NNS
+guitar-strumming VBG
+Trelleborg NNP
+Rincon NNP
+unsuccessfully RB
+Mossman NNP
+adolescents NNS
+revolted VBD
+higher-profit JJR JJ
+derailing VBG
+bookers NNS
+snag NN VB
+egotist NN
+use NN VB VBP
+chutney NN
+counterguarantee NN
+Sony\/Columbia NNP
+Dei NNP FW
+Rodrigo NNP
+delivered VBN VBD
+self-aggrandizement NN
+Scandalios NNP
+dissolve VB VBP NN
+MRCA NNP
+anti-communist JJ
+non-member NN
+Cities-ABC NNP
+tons NNS
+substitution NN
+Owners NNS NNP
+Alquist NNP
+Thirty-six CD
+Cars NNPS NNP NNS
+exachanges NNS
+Michel NNP
+JMB NNP
+forswore VBD
+backwoods NNS JJ
+Afghan JJ NN NNP
+Rimini NNP
+minerals NNS
+pay-TV NN
+old-age JJ
+Viyella NNP
+spades NNS
+glass NN
+flatness NN
+prefectural JJ
+blood-flecked JJ
+holy JJ
+re-enter VB VBP NN
+self-effacing JJ
+outer JJ
+Advest NNP
+draftee NN
+Houlian NNP
+Maccabee NNP
+chemical-arms NNS JJ
+Wynston NNP
+shashlik NN
+aspired VBD
+device. NN
+Seagle NNP
+neutralized VBN
+all-stock JJ
+Samengo-Turner NNP
+Mexicana NNP
+translators NNS
+Associates NNPS NNP NNS
+ohmic JJ
+Reuss NNP
+Devans NNP
+anti-science JJ
+inverse JJ NN
+Rondanini NNP
+Studach NNP
+reduced-instruction-set-computer JJ
+Commercials NNS
+medium NN JJ
+self-financed JJ
+Proxy NN
+Knopf NNP
+horde NN
+Equibank NNP
+zinc-consuming JJ
+headcount-control NN
+Ostroff NNP
+'T- PRP
+go-it-alone JJ
+drawing-room NN
+Narberth NNP
+defensively RB
+Crescott NNP
+footstool NN
+comeuppance NN
+Flotte NNP
+well-drilled JJ
+misappropriated VBD VBN
+Images NNP
+Rust NNP
+engender VB
+lurching VBG
+ridiculously RB
+occurs VBZ
+COMPANY NN NNP
+worshipful JJ
+Iceland NNP
+Latin NNP JJ NNPS
+Vineland NNP
+Compilation NN
+clergyman NN
+darkly RB
+marimba NN
+shoot VB NN VBP
+gathering-in NN
+Tipoff NNP
+A.H. NNP
+Gadhafi NNP
+hoaxes NNS
+collector NN
+applaud VBP VB
+nothingness NN
+coincidences NNS
+Moon-faced JJ
+punctuation NN
+flotations NNS
+ZENITH NNP
+walk-up NN
+ATARI NNP
+AMUSEMENT JJ
+distort VB VBP
+snakes NNS VBZ
+Shirwen NNP
+globe-girdling JJ
+piroghi NNS
+Salhany NNP
+mention VB NN VBP
+clearing-firm JJ
+postal JJ
+gushes VBZ
+Ava NNP
+debtor NN JJ
+econobox NN
+Glaze VB
+fangs NNS
+wallcoverings NNS
+reappraised VBD VBN
+Tashkent NNP
+houseboats NNS
+safeguard VB NN
+Ireland NNP
+ambush NN VB
+thrice RB
+downpour NN
+tiring VBG
+Janney NNP
+horrifying JJ
+wrestlings NNS
+contrived VBN JJ
+central-planning JJ
+utopians NNS
+W.R. NNP
+Berko NNP
+cradle NN VB
+espionage NN
+Bedminster NNP
+grousing VBG
+Unlisted NNP
+DILLARD NNP
+Lind NNP
+Antinomians NNS
+Staar NNP
+eight-member JJ
+brainy JJ
+art-world NN
+pint NN
+Bauman NNP
+Xiaoqing NNP
+nonregulated JJ
+portable JJ NN
+EQUITIES NNPS
+Kongsberg NNP
+obese JJ
+perpetrators NNS
+Schweiz NNP
+Fella UH
+air-quality NN
+Electrolux NNP
+when-issued JJ VBN
+Lattice NNP
+signaled VBD VBN
+prunes NNS
+sonobuoy NN
+caliper NN
+buds NNS
+know... :
+play-off NN
+prongs NNS
+vivre FW
+deter VB VBP
+Times-Mirror NNP
+Brittany NNP
+Tockman NNP
+Driscoll NNP
+Brendel NNP
+Klatsky NNP
+reassumed VBN
+Jidge NNP
+Brunsdon NNP
+PLC. NNP
+Nippon NNP
+low-margin JJ
+everyday JJ
+OPPENHEIMER NNP
+numbness NN
+religious JJ IN NN
+obscures VBZ
+Dese NNP
+Egnuss NNP
+Sodium NN
+indulge VB VBP
+Murder NN NNP
+Lotos NNP
+submits VBZ
+Simak NNP
+greenmail NN
+labored VBD VBN JJ
+Uniform JJ
+flagship NN JJ
+Vadies NNP
+fast-cut JJ
+inter-governmental JJ
+wallowing VBG
+McToxics NNP
+nihilist NN
+Kohl NNP
+skill NN
+consent-decree JJ
+Rodeph NNP
+Know-nothings NNS
+broadcast NN JJ VB VBD VBN
+sherry NN
+Charges NNS
+computer-room JJ
+restyled VBN JJ
+exam NN
+Harbor NNP
+on-the-scene JJ NN
+ECONOMIC JJ
+Lesch-Nyhan NNP
+Antisubmarine JJ
+crunchier JJR
+ASSETS NNP NNPS NNS
+Algiers NNP
+prettier JJR
+high-resolution JJ
+seaquake NN
+Jeffrey NNP
+parent NN JJ
+Schmitt NNP
+bribers NNS
+Akerson NNP
+attesting VBG
+winningest JJS
+orators NNS
+allergies NNS
+knowing VBG JJ NN
+Virology NNP
+Heisch NNP
+Polo NNP
+tummy NN
+postcards NNS
+Adcock NNP
+Galligan NNP
+Ashwood NNP
+customs NNS
+sorely RB
+separations NNS
+foreign-country JJ
+uneventful JJ
+basses NNS
+Teferi NNP
+delineaments NNS
+ELECTRONICS NNP
+Fashion NNP NN VB
+white-clad JJ
+Producing NNP NN VBG
+Cabin NNP
+inner JJ
+necessaries NNS
+set-aside JJ NN
+Josephthal NNP
+simplified JJ VBN
+tetrasodium NN
+government NN
+cayenne NN
+constrain VB
+Adolph NNP
+NASD NNP
+Controls NNP NNPS
+REMICs NNS
+vagina NN
+Wyvern NNP
+Crockett NNP
+Remphan NNP
+myne PRP$
+Wiener NNP
+reason NN VB VBP
+grained JJ
+ginkgo NN
+businesslike JJ
+Econoclast NNP
+psychosocial JJ
+litany NN
+manner NN
+BGS NNP
+Y.J. NNP
+Hempstead NNP
+Pete NNP
+solar-wind NN
+assures VBZ
+courted VBN VBD
+appeals-court NN JJ
+inspectors NNS VBZ
+Fellows NNS
+Jaguar NNP NN
+betters NNS
+relate VBP VB
+moldy JJ
+Christian-dominated JJ
+bloomed VBD
+greenware NN
+R-5th JJ
+sanguineum NN
+blackmail NN VB
+assay NN
+rift NN
+cur NN
+Rothwell NNP
+Softness NN
+trigger-happy JJ
+downed VBD VBN
+MD11 NNP
+Biogen NNP
+Lasers NNS
+Invictus NNP
+D'Amato NNP
+sweater NN
+Stockholders NNS NNP
+TCR NNP
+poseur NN
+Apergillus NN
+Teen-age JJ
+Dominique NNP
+ALT NNP
+omnipresent JJ
+lurch NN VBP
+Showa NNP
+network-writer JJ
+Brenna NNP
+disposition NN
+Titus NNP
+incorporating JJ VBG
+Nutritional NNP
+resin-saturated JJ
+prepackaged VBN
+geyser NN
+interviewing VBG NN
+Societe NNP
+Schrier NNP
+health NN
+toiletries NNS
+asbestos-disease NN
+hemlines NNS
+adjourn VB
+obsessively RB
+peaked VBD JJ VBN
+four-lane JJ
+Orondo NNP
+Scriptures NNPS NNP NNS
+Muncipal NNP
+inquisitor NN
+Island NNP NN
+reaps VBZ
+balkiness NN
+Liffe NNP
+Dutch\/Shell NNP
+rebutted VBN VBD
+soon-to-be JJ
+Pond NNP NN
+D'Agosto NNP
+l'Ouest NNP
+Mauritania NNP
+minor JJ NN
+Cartridge NNP
+crunched VBD
+mid1984 CD
+annum NN FW
+Palomino NNP
+ventured VBD VBN
+agriculture-based JJ
+grubby JJ
+wavy-haired JJ
+Lockerbie NNP
+ruminants NNS
+Lummus NNP
+record-high JJ
+leisure-services JJ
+Spencer NNP
+soggy JJ
+Clubs NNPS NNP NNS
+America. NNP
+poetizing VBG
+Harland NNP
+Windham NNP
+Signor NNP
+typing NN VBG
+Improprieties NNS
+eyesight NN
+risky JJ
+minted VBN
+avenge VB
+IPO NNP NN
+A-330 NNP
+Ochs NNP
+vermeil JJ
+encomiums NNS
+surveying VBG NN VBG|NN
+occlusive JJ
+presidential JJ
+open JJ VBP NN RB RP VB
+decrying VBG
+BiiN NNP NN
+loopholes NNS
+nacho-crunching JJ
+disingenuous JJ
+earthly JJ
+Brea NNP
+Fundamentalists NNS NNPS
+Judi NNP
+district NN JJ
+oldline NN
+healthy-looking JJ
+fingernails NNS
+Neill NNP
+Arx NNP
+base NN VBP JJ VB
+arbitrate VB
+space-systems NNS
+grade-equivalent NN
+Harkess NNP
+better-capitalized JJ
+importantly RB
+objects NNS VBZ
+tappet NN
+stern-to RB
+Newquist NNP
+higher-margin JJR JJ
+dodge VBP NN VB
+Kyodo NNP
+Reprimand NN
+ballot NN
+MasterCards NNS
+Sandler NNP
+restuarant JJ
+Plump JJ
+rate-slashing JJ
+fluffy JJ
+Palladian NNP
+gyrations NNS
+towboats NNS
+Tidal NNP
+addictions NNS
+Woven VBN
+slowdown NN
+campuses NNS
+swans NNS
+'Onward RB
+more-mundane JJ
+lethargies NNS
+Couve NNP
+Grid NNP
+Abreaction NN
+complimentary JJ
+chambermaid NN
+Bol NNP
+unimpeded JJ
+Endowment NNP
+Triland NNP
+less-than-half-time JJ
+will MD VBP NN RB VB
+'till IN
+ENERGY NN NNP
+Lie NNP NN VB
+Exabyte NNP
+Seven-Eleven NNP
+gutsy JJ
+Court-awarded JJ
+flotillas NNS
+resents VBZ
+sockdologizing VBG
+Connelly NNP
+Sinatra NNP
+Ferber NNP
+Botts NNP
+Roman-camp NN
+stampings NNS
+Weedon NNP
+US8.9 CD
+liberalize VB VBP
+alabaster NN JJR
+BURBANK NNP
+much-criticized JJ
+what-nots NNS
+hexagon NN
+blonde-haired JJ
+manufacturer NN
+housing-discrimination NN
+winded JJ VBN
+Styrofoam NNP
+nip NN VB
+Lateral NNP
+outpace VB VBP
+mid-twentieth-century JJ
+chintz VBP
+Martians NNP
+Abigail NNP
+Guimet NNP
+barrels-a-day JJ
+Transgenic NNP
+Thistle NNP
+enlist VB
+Line NNP NN
+Hildy NNP
+stiffer JJR
+Dubai NNP
+Mortage NNP
+gratifyingly RB
+seal NN VB VBP
+platoons NNS
+stock-watch JJ
+elk NNS NN
+Jugend NNP
+Rum NNP
+Amis NNP
+juleps NNS
+romanticize VB
+blowtorch NN
+WBAI NNP
+exposure NN
+laddered JJ
+intrusive JJ
+Petitions NNS
+two-thirds NNS JJ NN RB
+attachment NN
+abolitionist NN
+subsidary JJ
+Caltech NNP
+affadavit NN
+impetus NN
+cavern NN
+Simca NNP
+min. NN
+six-minute JJ
+launchers NNS
+premium-beer NN
+heresy NN
+SCHOOL NN
+Inventors NNS
+Godunov NNP
+unindicted JJ
+impersonation NN
+palm-studded JJ
+Unhappily RB
+ferried VBD VBN
+Valedictorian NNP
+legalizing VBG
+Raymonda NNP
+cross-currency JJ
+Cecchini NNP
+abundantly RB
+line-up NN
+unpleased VBN
+Sea-Land NNP
+precipitin NN
+shore NN JJ RB VB
+Maxwell NNP
+bark NN VB
+interchanges NNS
+Bekkai NNP
+cola NN
+ticketing VBG
+Herwig NNP
+minutely RB
+Benington NNP
+darkhaired JJ
+Kentfield NNP
+lovable JJ
+Ilona NNP
+balanced JJ VBD VBN
+areas NNS VBN
+Backing VBG
+unhurried JJ
+non-freezing JJ
+asocial JJ
+Pizza NNP
+Blvd. NNP
+unsurmountable JJ
+Varalli NNP
+IOU NNP
+rumen NN
+thoughtprovoking JJ
+philandering VBG
+elongated VBN JJ
+public-employee NN
+Edwardh NNP
+discrepancy NN
+heart-stopping JJ
+bruinish JJ
+Eishi NNP
+sensational JJ
+kicks VBZ NNS
+Tequila NNP
+second-to-die JJ
+hitless JJ
+manufactures VBZ NNS
+laid-off JJ VBN
+bitterest JJS
+contributed VBD VBN
+stereotypically RB
+morgue NN
+Domokous NNP
+angel NN
+lug VB NN
+heir-apparent JJ NN
+Edelman NNP
+winders NNS
+clinic NN
+denounced VBD VBN
+Hilliard NNP
+Hanover-Lucy NNP
+fortified VBN VBD JJ
+Toseland NNP
+bitterness NN
+vines NNS
+Medicare-approved JJ
+Pumpkin NNP
+processes NNS VBZ
+Hirzy NNP
+survivalist NN
+McKinley NNP
+windowpanes NNS
+Covering NNP
+Dome NNP
+Named VBN
+MINOR JJ NNP
+Flustered JJ
+Shanken NNP
+Schaeffer NNP
+Oscar NNP
+Representative NNP NN
+remounting VBG
+Odeon NNP
+multipurpose JJ
+travel-service NN
+pasteurized VBN
+jurists NNS
+Coconut NNP
+feeder NN
+Matisses NNPS
+Unease NN
+reverses VBZ NNS
+rephrased VBN
+involutorial JJ
+concessionaire NN
+behaviorally RB
+Bryant NNP
+Ramona NNP
+disruptions NNS
+Turin-based JJ
+Sparc NNP
+massive JJ
+habitues NNS
+proclaimed VBD JJ VBN
+gasket NN
+Hammons NNP
+decorous JJ
+Muses NNP
+relevant JJ
+instant-replay NN
+SELF-DESTROYED VBN
+Various JJ NNP
+bunkmate NN
+Franck NNP
+Kildare NNP
+foregone JJ VBN
+Rival NNP JJ
+Wixom NNP
+unbiased JJ
+Anspach NNP
+Emerson NNP NN
+anye JJ
+annals NNS NN
+non-sales JJ
+perforated JJ
+free-agent NN
+Shostakovich NNP
+Flute NN
+Finanziario NNP
+British-based JJ
+doings NNS
+interact VBP VB
+ash-blonde JJ
+Correlatively RB
+Lapointe NNP
+wreck NN VB
+serial JJ NN
+Rowland-Molina NNP
+cheeks NNS
+controversies NNS
+darlin NN
+COMPARE VB
+CBS NNP
+hilar JJ
+Younger JJR NNP
+appended VBN
+ten-fifty-five CD
+Lautner NNP
+pale JJ VBP NN
+Contrary JJ
+Rodent NN
+lease-rental JJ
+mufti NN
+Specifically RB
+leadership... :
+dewdrops NNS
+seller-financed JJ
+adopting VBG
+Perception NN NNP
+Koa NNP
+Sting NNP
+clammy JJ
+Night NNP NNPS NN
+Almanac NNP
+underwriting NN VBG
+Policies NNS
+nationalities NNS
+veracious JJ
+collisions NNS
+prurient JJ
+Selve NNP
+hippie NN
+Spontaneity NN
+Kirghiz NNP
+allying VBG
+beween NN
+investment-grade JJ NN
+khaneh FW
+earlier-period NN
+de-stocking NN
+purposed VBN
+Satanic JJ NNP
+Playing VBG
+small-boat NN
+recycled VBN JJ VBD
+ALU NNP
+yuppie NN
+independent JJ NN
+virgins NNS
+Buser NNP
+Russian-language JJ
+unfunnily RB
+pre-game JJ
+non-cash JJ
+Borghese NNP
+Textiles NNP NNS
+precipitous JJ
+Rights NNP NN NNS NNPS
+Canute NNP
+overworking VBG
+face NN VBP JJ RB VB
+Machold NNP
+Gregorius NNP
+doctor-patient JJ
+quick-tempered JJ
+UTILITIES NNP
+marketshare NN
+rifles NNS
+prophesying VBG
+Ribas NNP
+improvisers NNS
+Viceroy NNP
+GROWTH NN
+'Il NNP
+Terree NNP
+waiters NNS
+feasible JJ
+central-bank NN JJ
+Went VBD
+Olive NNP
+moodily RB
+institutions NNS ,
+summit NN JJ
+reckless JJ
+ICBM NNP
+retinal JJ
+Datsuns NNPS
+parkish JJ
+Classified JJ NNP
+Teck NNP
+Frederic NNP
+misallocated VBD
+maelstrom NN
+Businessland NNP
+guerilla NN
+Greene\/Worldwide NNP
+Mousie NNP
+Wakefield NNP
+miliaris NN
+Basques NNPS
+dumped VBD VBN
+accustomed VBN VBN|JJ JJ
+Spartan NNP JJ NN
+multicolor JJ
+pinkly RB
+dog-eared JJ
+pathologic JJ
+Hume NNP
+astronaut NN
+allocate VB VBP
+irritant NN
+Cannibal NNP
+Orlando NNP
+Merieux NNP NN
+Caesar NNP
+sheep-like JJ
+fresh-fruit JJ NN
+jealous JJ
+engineered VBN VBD JJ
+anti-plaque JJ
+GATT NNP
+trend-spotter NN
+non-insider NN
+diets NNS
+five-by-eight-inch JJ
+Dollars NNPS NNS
+Tragically RB
+Gurria NNP
+analyze VB VBP
+Sorrentino NNP
+Effie NNP
+Emmanuel NNP
+flighty JJ
+treacheries NNS
+Meet VB NNP VBP
+assets* NNS
+needlessly RB
+swords NNS
+exasperated JJ
+U.S.based JJ
+Therapy NNP NN
+public-address JJ
+Gautier NNP
+overambition NN
+Richter-Haaser NNP
+Shots NNS
+Half-man JJ
+emigrate VB VBP
+Adios-Direct NNP
+Carriers NNP NNS NNPS
+seam NN
+Baptist NNP JJ NN NNP|JJ
+gunner NN
+void NN JJ VB
+reforestation NN
+Christopher NNP
+Norgle NNP
+indigestion NN
+thrashing NN VBG
+voiceless JJ
+McMaster NNP
+advertising-backed JJ
+pre-empted VBN VBD
+Barrymores NNPS
+steady JJ RB
+horse-blanket RB
+Tamotsu NNP
+Doerflinger NNP
+feminine-care JJ
+rusted JJ
+egg-sized JJ
+Times NNP NNPS NNS
+them PRP DT
+Oncology NNP
+popular-priced JJ
+portfolios NNS
+Vasa NNP
+reimbursed VBN VBD
+c.i.f JJ
+floodlit JJ
+commanding VBG JJ NN
+pre-vision JJ
+feudal JJ
+Soxhlet NN
+Commack NNP
+Epilady NNP
+pad NN VB
+Candela NNP
+Calcium NN
+Nimbus-7 NNP
+mover NN
+offense NN
+ell NN
+Clint NNP
+biodegradable JJ
+KISSINGER NNP
+Run NNP NN VB
+battery-driven JJ
+bo'sun's NN
+Lockies NNPS
+multilateral JJ
+BANKERS NNS NNPS
+Easthampton NNP
+gray-black JJ
+tycoon NN
+rear-looking JJ
+uncontrollable JJ
+Coffee-House NNP
+byinge VBG
+maturities NNS
+creole NN
+unobtrusive JJ
+Contrast NN
+suggestions... :
+turkeys NNS
+diction NN
+cockroach NN
+fecal JJ
+Tune NNP
+fez-wearing JJ
+stimulating VBG JJ
+electrodes NNS
+designate VB JJ NN
+Pretax JJ NNP NN
+'OK UH
+prom NN
+Morever RB
+Sherman NNP
+hope NN VB VBD VBP
+reapportionment NN
+graduated VBN VBD JJ
+temperament NN
+Amtech NNP
+Phoenix-based JJ NNP
+mayhem NN
+testimony NN
+balk. VBP
+Hiding VBG
+HUDSON NNP
+manning VBG
+planer NN
+savvier JJR
+Levina NNP
+Local JJ NNP
+AMP NNP
+Brazil NNP
+cliche NN
+reviewed\/designed VBN
+Riegger NNP
+Interest-rate JJ
+Pitch NN VB NNP
+mpg NN
+Diceon NNP
+Redgrave NNP
+moth NN
+Eber NNP
+Jinshajiang NNP
+unlocked VBD VBN JJ
+gauntlet NN
+Harbridge NNP
+Rev. NNP
+facilitated VBN
+respective JJ
+things NNS
+non-controlling JJ
+Etess NNP
+obscurity NN
+verbal JJ
+Heldring NNP
+freshly-ground JJ
+Biafra NNP
+Brahmin NNP
+--at IN
+caters VBZ
+Cir NNP
+Orlick NNP
+shortchanging VBG
+rack NN VB VBP
+ocular JJ
+Aunt NNP NN
+improbable JJ
+Sounion NNP
+toweling NN
+vases NNS
+quarter-moon NN
+detecting VBG NN
+Ettore NNP
+accreditation NN
+Saintsbury NNP
+storytellers NNS
+crickets NNS
+nominally RB
+bursts NNS VBZ
+Metal NNP NN
+giblet NN
+indifferent JJ
+infidel JJ
+peddle VB VBP
+hardboard NN
+Reinsurance NNP NN
+Plans NNS NNP NNPS VBZ
+Armentieres NNP
+Nonperforming JJ VBG
+low-tension JJ
+patiently RB
+Cavanagh NNP
+gap NN
+printmaking NN
+bilateral JJ
+Swiss-franc NN
+forgive VB VBP
+Whaley NNP
+weekly JJ RB|JJ NN|JJ NN RB
+footnoted VBN
+feler NN
+Lateran NNP
+bulldozer NN
+glycerol NN
+Donald NNP
+Hetman NNP
+crabbed JJ
+bravura NN JJ
+Alien NNP
+Wankui NNP
+hook NN VB
+Clarks NNS
+Bordner NNP
+Burden NNP
+climb VB VBP NN
+Waveland NNP
+slogan NN
+party-line JJ NN
+retard VB VBP
+bark-nibbling JJ
+Junk-bond JJ NN
+Karnsund NNP
+Porres NNP
+hexameter NN
+Pampa NNP
+azalea NN
+tenants NNS
+co-operates VBZ
+stock-trader NN
+test-market NN
+tradesmen NNS
+Rectangular JJ
+Ketchikan NNP
+inducted VBN
+Doll NNP
+Affair NNP NN
+Goloven NNP
+procrastination NN
+staphylococcal JJ
+decadent JJ
+Wendells NNPS
+Montgomery NNP NN
+moderately RB
+beggary NN
+Iwo NNP
+smudged JJ
+raucously RB
+panthers NNS
+duplication NN
+Encouraged VBN JJ
+Arrayed VBN
+science NN JJ
+prehistoric JJ
+peptide NN
+antithyroid JJ
+Emyanitoff NNP
+monograph NN
+leery JJ
+gibberish NN
+Cipriani NNP
+under-50 JJ
+creatures NNS
+Reilly NNP
+sends VBZ
+Overpriced NNP
+overeating NN VBG
+matched VBN JJ VBD
+Beset VBN
+Weici NNP
+middle-aged JJ
+Russians NNPS NNP NNS
+McGhie NNP
+bureaus NN NNS
+baseballs NNS
+LAN NNP
+jitters NNS NN
+pallets NNS
+agitators NNS
+cut VB VBD VBN VBP JJ NN
+ex-smokers NNS
+slo-mo JJ
+roomy JJ
+conjugate NN
+peeved VBN
+valiantly RB
+Moloch NNP
+Macfadden NNP
+String NNP VB
+biologic JJ
+Aspenstrom NNP
+recordings NNS
+mom NN
+PACs NNPS NNS
+reauthorization NN
+telephone NN VB
+Workforce NNP
+coalitions NNS
+unchangeable JJ
+CFCs NNS NNP NNPS
+Shrewsbury NNP
+Alvero-Cruz NNP
+doormen NNS
+action-oriented JJ
+drops VBZ NNS
+rubbery JJ
+Cochrane NNP
+Monster NN NNP
+Yinger NNP
+desks NNS
+plaintive JJ
+congress NN
+peridontal JJ
+index NN VB
+battlefields NNS
+promptly RB
+mid-continent JJ
+Zipperstein NNP
+waft VB
+pondering VBG
+Treadwell NNP
+Hear VB
+Marilee NNP
+confirms VBZ
+affied VBD
+Color NNP JJ NN
+repudiate VB
+R.N. NNP
+defunct JJ VB
+supervising VBG
+pinpointed VBN JJ VBD
+deadwood NN
+dismay NN
+mystery-story JJ
+catalogue NN
+Spiegelman NNP
+Furlaud NNP
+Ndola NNP
+hyaluronic JJ
+suspected VBN VBD JJ
+Dona NNP
+color-coding VBG
+law-based JJ
+Anniversary NNP NN
+Cutter NNP
+fiber-end JJ
+Trupin NNP
+Holcombe NNP
+Veniamin NNP
+Lafite-Rothschild NNP
+prizes NNS VBZ
+bio-medicine NN
+Del NNP
+tartan-patterned JJ
+principle NN
+markup NN
+January-June JJ
+subskill NN
+capitalizing VBG
+actress\ JJ
+neuromuscular JJ
+Germanys NNS NNPS
+heavyweights NNS
+benefits NNS VBZ
+comer NN
+Waited VBN
+transgressed VBD
+unidentifiable JJ
+hypnotic JJ
+utilized VBN VBD
+imminent JJ
+results NNS VBZ
+Glassworks NNP
+spy-in-training NN
+legendary JJ
+unreservedly RB
+sample NN JJ VB VBP
+Katmandu NNP
+marbleizing NN
+interprets VBZ
+authenticity NN
+--consented VBD
+Urbanski NNP
+angriest JJS
+Spinning VBG
+moves NNS VBZ
+apple-pie NN
+ROK NNP
+Semon NNP
+action-adventure JJ
+sustains VBZ
+Plenitude NNP
+Ahmiri NNP
+few JJ NN RB NNS
+NBC-TV NNP
+H.E. NNP
+Gordon NNP
+Staffe NNP
+television-related JJ
+Mycenae NNP
+cession NN
+bluestocking NN
+hedge VB JJ NN VBP
+then RB IN JJ
+COURTS NNS
+Behold VB
+deinstitutionalization NN
+Sandman NNP
+marjoram NN
+unequal JJ
+prevayle VB
+Placido NNP
+Bon NNP FW
+Vitaly NNP
+Parish NNP
+fowl NN
+Harrell NNP
+Cofide NNP
+Occupation NNP
+ambrosial JJ
+girth NN
+straw-hat JJ
+rationale NN
+Performed VBN
+accordingly RB
+sorrel JJ NN
+beltway NN
+Indonesian JJ NNP
+gas-gathering JJ VBG
+Shahrabani NNP
+shacked VBN
+special-service JJ
+planes NNS
+Split VBN
+capital-formation NN
+fusty JJ
+maraschino NN
+bullhorn NN
+bargain-hunters NNS
+Kofcoh NNP
+could'nt NN VB
+illogic NN
+three-foot JJ
+whole-heartedly RB
+traverse VB
+Autocamiones NNP
+abstractly RB
+emptying VBG
+Spare JJ
+Matuschka NNP
+Grecian JJ NNP
+Bargen NNP
+pianistic JJ
+Wallop NNP
+Superstores NNPS NNS
+Kathryn NNP
+Wabash NNP
+IBC\/Donoghue NN
+graduating VBG NN
+hollowware NN
+second-guessing NN VBG
+nostrils NNS
+disposable JJ NN
+Unbelievable JJ
+unpleasantly RB
+Arguing VBG
+button NN VB
+forwards RB
+TOOK NNP
+substrate NN
+consoling VBG
+Hull NNP
+Crude-goods NNS
+subcontract VB JJ NN
+elm NN
+bedazzled VBN
+Westlake NNP
+price-wise JJ
+Eggers NNP
+Author NNP NN
+algaecide NN
+tug-of-war NN
+Yuri NNP
+Greases NNS
+institutional-type JJ
+Jeremiah NNP
+off IN RB|IN JJ NN RB RP
+crosscurrents NNS
+Dataproducts NNP NNPS
+quarter-century NN JJ
+trait NN
+Lags VBZ
+patent NN JJ
+certificates NNS
+homelessness NN
+Doronfeld NNP
+Elba NNP
+LONDON NNP NN
+BHP NNP
+preconditions NNS
+posturing NN VBG
+shorelines NNS
+rosebuds NNS
+T.F. NNP
+Feis NNP
+digested VBN
+AT* NNP
+liberal JJ NN
+Soifer NNP
+psychics NNS
+Israeli-occupied JJ
+butterfly NN
+basher NN
+fosters VBZ
+decision-making NN JJ
+casts VBZ NNS
+Mansfield NNP
+pontificates VBZ
+Plant NNP NN
+gm. NN
+discretionary JJ
+Tennessee NNP
+foodstuff NN
+field-services JJ
+territoire FW
+Bedford-Stuyvesant... :
+cyclorama NN
+icebox NN
+Velveeta NNP
+Requirements NNS
+Yonkers NNP
+Eire NNP NN
+disenfranchised VBN
+price-support JJ NN
+interned VBN
+sharpshooter NN
+Complying VBG
+mph NN JJ
+Beatlemania NN NNP
+Frantisek NNP
+Tripod NNP
+squarely RB
+urn NN
+goons NNS
+LeSabre NNP
+deloused VBN
+Gruene NNP
+North-Rhine NNP
+MEDICINE NNP
+Karos NNP
+GRiDPad NNP NN
+Actions NNS
+leaflets NNS
+perennial JJ
+to-and-fro RB
+f-plane NN
+--such JJ
+Becton NNP
+New-issue JJ
+lui FW
+Priem NNP
+electrolysis NN
+unsolved JJ
+throttle NN
+stalemate NN
+acquaintance NN
+two CD LS
+cross-sectional JJ NN
+management-pilots JJ
+Confabulation NN
+INDEX NN
+Interfaith JJ
+cruelty NN
+intergroup JJ NN
+Boss NNP NN
+fertile JJ
+withdrawn VBN
+so-far JJ
+di-iodotyrosine NN
+Kunze NNP
+expressly RB
+preacher-singer NN
+incorporation NN
+descendents NNS
+reinstating VBG
+ExPe NNP
+Gifford NNP
+Bultmann NNP
+Stack NNP
+Exchange-sponsored JJ
+Pong NNP
+brakes NNS VBZ
+Geographical JJ
+Appreciation NNP
+risk-management NN
+blood-soaked JJ
+pecked VBD
+Astronauts NNS
+Klimpl NNP
+firms NNS VBZ
+warm-ups NNS
+phonologic JJ
+Berks NNP
+stylized JJ VBN
+Jell-O NNP
+McCarran NNP
+proposition... :
+wizard NN
+tyke NN
+Listenin NN
+Blodgett NNP
+Checchi-Skinner NNP
+dullish JJ
+excavators NNS
+Washington-Alexandria NNP
+Gaspee NNP
+luminaries NNS
+executive-legislative JJ
+impediment NN
+mEq. NN
+clicked VBD VBN
+student-led JJ
+telephone-access JJ
+extolling VBG
+Mosque NNP NN
+substitute NN JJ VB VBP
+Cardiovascular NNP
+monoliths NNS
+smuggled VBN VBD
+toppled VBN VBD
+iced JJ
+MOVES VBZ
+communications-technology NN
+Calmat NNP
+margins NNS
+malignancy NN
+Arranging VBG
+interplay NN
+graces NNS
+conjure VB VBP
+MATERIALS NNP
+compelling JJ VBG
+Zinman NNP
+bash NN VB
+Impact NNP NN
+circumscribing VBG
+fret VBP NN VB
+railways NNS
+Ranked VBN
+Felicity NNP
+Ulisse NNP
+Gelbart NNP
+corrals NNS
+Pabst NNP
+exposing VBG JJ
+stellar JJ
+nonvirulent JJ
+limps VBZ
+sufficed VBD
+retiring VBG JJ
+Merlo NNP
+white-walled JJ
+housecleaning NN
+Escanaba NNP
+FOUR CD
+Hard-Hearted NNP
+testicle NN
+cheerfully RB
+y'know VB
+Bowser NNP
+Banknote NNP
+Trump NNP
+Safe NNP JJ
+Niem NNP
+Bailard NNP
+Louisiana NNP
+truley RB
+Buffalo NNP NN
+Yoder NNP
+Marrie NNP
+promulgating VBG
+patting VBG
+Dearborn NNP
+unrestricted JJ
+TCU NNP
+quaking VBG
+unamortized JJ
+Rotenberg NNP
+greatest JJS
+unnoticed JJ
+comes VBZ NNS
+prodigies NNS
+housewives NNS
+tumor NN
+liftoffs NNS
+shops NNS VBZ
+Braving VBG
+caress VB
+dealerships NNS
+mon FW
+Towing NNP
+motorcycled VBD
+Albertville NNP
+Orphic JJ
+Keffer NNP
+parcels NNS
+unmanned JJ
+ambidextrous JJ
+Ingersoll NNP
+organizing VBG NN
+Feldberg NNP
+perpetual JJ
+Gumbel NNP
+SHV NNP
+dais NN
+wig NN
+overhanging VBG
+Kreditanstalt NNP
+vaulted VBD
+Ural NNP
+Jastrow NNP
+yonder NN
+Linh NNP
+Tracys NNP NNS
+rudimentary JJ
+Prechter NNP
+extradite VB
+particularly RB
+Calenda NNP
+Babel NNP
+blessed VBN JJ VBD
+planet NN
+Rapid NNP JJ
+passport NN
+legible JJ
+concealed VBN JJ VBD
+TOURISM NN
+McCaughey NNP
+distractedly RB
+hotels NNS
+flashpoint NN
+preoccupations NNS
+grapeshot NN
+camouflage NN VB
+undeclared JJ
+Eros NNP
+body-and-assembly JJ
+imported VBN VBD JJ VBN|JJ
+nonstrikers NNS
+accurately RB
+Anders NNP
+Astrophysicist NN
+mergers NNS
+AZT-resistant JJ
+Saran NNP
+chargin VBG
+Bagcraft NNP
+leggy JJ
+Chaucer NNP
+Halleck NNP
+--about IN
+barn NN
+princess NN
+Rogin NNP
+cold JJ NN
+Simplesse NNP
+Fuss VB
+knell NN
+Dyer NNP
+redound VB
+partners NNS
+PolyGram NNP
+sickle JJ
+wind NN VBP VB
+optical-scanning JJ
+Val NNP
+Vladilen NNP
+anti-Nazi JJ
+towardes IN
+cobblestone NN
+SWITCH NN
+Kanska NNP
+organ-transplant JJ NN
+clears VBZ
+icicle NN
+Multiply VB
+Micronic NNP
+provost NN
+public-sector NN JJ
+Densmore NNP
+phasing VBG
+bronchiole NN
+Doberman NN
+paternally RB
+Anacomp NNP
+water NN VB JJ
+non-Federal JJ
+excesses NNS
+digit NN
+buy-out-related JJ
+Guarini NNP
+endeavours NNS
+Hostetter NNP
+Shoup NNP
+appraisingly RB
+bashes NNS
+Trunk NN NNP
+chapels NNS
+ignoring VBG
+unmated VBN
+coldest JJS
+goooolick NN
+lithographs NNS
+filming VBG
+zones NNS
+persuasively RB
+Masterpiece NNP
+impassive JJ
+Godspeed NN
+Hazlitt NNP
+growth-oriented JJ
+Kitcat NNP
+FIRMS NNS
+belting NN VBG
+whining VBG
+SKILLED JJ
+Reactionaries NNS
+Renville NNP
+commending VBG
+Lascivious NNP
+Dirvin NNP
+outbidding VBG
+Pinpoint NNP
+flautist NN
+Cheeseheads NNS
+non-stop JJ
+microeconomic JJ
+Amoco-led JJ
+sedately RB
+alkylbenzenesulfonates NNS
+sharecropper NN
+new-generation NN
+Grinten NNP
+RF-082 NN
+ANNUITY NNP
+SPRUCING VBG
+Francaises NNP
+barring VBG
+thout VBD
+ethane NN
+rifling NN
+emphasis NN
+gouverne FW
+Brownings NNP
+Verde NNP
+seduce VB
+Ab1,040 NNP
+Grenier NNP
+Birmingham NNP
+Grigoriy NNP
+NewVector NNP
+fastens VBZ
+cringed VBD
+axiom NN
+Ave NNP
+Shanker NNP
+Laird NNP
+Slavin NNP
+Guiana NNP
+deciphered VBD
+locker NN
+SHAREDATA NNP
+donkeys NNS
+SUIT NN
+Chaves NNP
+stretching VBG NN
+Fury NNP NN
+focus NN VBP VB
+WEIRTON NNP
+menace NN
+couscous NN
+Widow NN NNP
+ZZZZ NNP
+'40's CD
+Puccio NNP
+Gilda NNP
+Soloviev NNP
+Hearings NNS
+LBJ NNP
+Herridge NNP
+Carlton NNP
+Covert NNP
+Max NNP NN
+Ashok NNP
+cow-blood NN
+Cosmic NNP
+AMR NNP
+truck-parts NNS
+RATTLED VBD
+firearm NN
+burrows NNS
+Barret NNP
+superhighways NNS
+Violetta NNP
+Downs NNP
+fore-play NN
+Maumee NNP
+Bryner NNP
+elongation NN
+billable JJ
+renationalize VB
+nearly-30 JJ
+counter-escalation NN
+Bonner NNP
+Dassault-Breguet NNP
+Avis NNP
+Mints NNS
+SHOPS NNS
+bumpin VBG
+Escorts NNS
+mid-priced JJ
+rhyme NN
+Angkor NNP
+Tartarughe NNP
+eyepiece NN
+Griesa NNP
+integers NNS
+rigged VBN VBD JJ
+Entitlements NNS
+Kilty NNP
+shock-damping JJ
+clamor VBP NN
+Rupert NNP
+Dabbling VBG
+neurotic JJ
+Umberson NNP
+non-porous JJ
+dickered VBD
+Petre NNP
+laggards NNS
+Rhine-Westphalia NNP
+fabulously RB
+sepulchred VBN
+Rudkoebing NNP
+Kupcinet NNP
+Wainaina NNP
+mortis NN
+exposes VBZ
+Sugarman-led JJ
+possesses VBZ
+daytime JJ NN
+crupper NN
+doctorate NN
+Frowning VBG
+packing VBG NN
+increasing-rate JJ
+Transco NNP
+extemporize VB
+interminable JJ
+Vladivostok NNP
+Pictures NNPS NNP NNS
+effluents NNS
+puberty NN
+A.D.L. NNP
+steam-baths NNS
+Additional JJ
+shuttle-busing NN
+decoction NN
+SKF NNP
+shipping-rate JJ
+Lidov NNP
+egg-hatching JJ
+rows NNS
+denoted VBN VBD
+grumbled VBD VBN
+Factorex NNP
+inc. NNP NN
+Inventory NN VB NNP
+Shearon NNP
+prowl NN VBP JJ
+bandages NNS
+scripts NNS
+Immigration NNP
+concomitant JJ NN
+Daniels NNP
+Noticing VBG
+stingrays NNS
+helio-copters NNS
+twilight NN
+Archbishops NNS
+composite JJ NN
+Conduits NNS
+comet NN
+planetary JJ
+convene VB VBP
+Nott NNP
+Librarians NNS
+slotted VBN
+deceiving VBG
+confide VB VBP
+Agnelli NNP
+office-systems NNS
+Ramone NNP
+Ugh UH
+Cossacks NNPS
+Fredericksburg NNP
+listen VB VBP
+Norcross NNP
+cocoa-trading JJ
+Shukri NNP
+Heat NN NNP
+televison NN
+French JJ NNP NNS NNPS
+Globo NNP
+Hyman NNP
+pyramiding VBG
+signified VBD VBN
+over-pretended JJ
+reroofing NN
+Nevsky NNP
+Olin NNP
+slave-laborers NNS
+Zairean JJ
+Giolito NNP
+Franco NNP
+hundreds NNS CD JJ
+Fundamental JJ NNP
+truncated VBN JJ
+alibi NN
+chump NN
+charlatanry NN
+power-surge NN
+homebound JJ
+Trucking NNP NN
+Killow NNP
+muddy-tasting JJ
+sacred JJ
+Nurse NNP
+enjoined VBN VBD
+Incumbent NNP
+Macrodantin NNP
+thumbed VBD VBN
+triple-sealed JJ
+distaste NN
+sea-transport JJ
+Levamisole NN
+Malek NNP
+weasel-worded JJ
+Lahus NNP
+Madelon NNP
+'round RB IN
+Major NNP JJ NN
+inventively RB
+cottonseed NN
+successful JJ
+Dukes NNPS NNP
+aide NN
+Entries NNS
+Summcorp NNP
+the'federales FW
+intifada NN
+Sylvan NNP
+bribery NN
+Clemence NN
+oratory NN
+symmetrically RB
+Gates-Warren NNP
+CDK NNP
+Dawkins NNP
+Ostro NNP
+Stardel NNP
+cutting VBG VBG|NN JJ NN
+pre-recorded JJ
+pump-priming NN
+transferring VBG
+less-restrictive JJ
+nihilistic JJ
+rearm VB
+maker NN
+affluence NN
+stout-hearted JJ
+Alpo NNP
+beseiged VBN
+blunder NN VB
+pinholes NNS
+Kissing VBG
+unasked JJ
+cole NN
+streams NNS
+racial-minority JJ
+neutralizes VBZ
+rigs NNS
+wood-oil NN
+uncontrollably RB
+wine NN JJ
+DALIS NNPS
+belt-tightening NNS
+overbuilt JJ NN
+Gardena NNP
+constructional JJ
+Vanguardia NNP
+workplaces NNS
+countian NN
+Tylenol NNP
+microbiological JJ
+Purified VBN
+variable-speed JJ
+Unwanted JJ
+SoHo NNP
+slithering VBG
+deadline NN
+TEK NNP
+supernaturalism NN JJ
+cirrhosis NN
+shambled VBD
+Dussa NNP
+findings. NNS
+drug-pricing NN
+rabbits NNS
+reciting VBG
+pay-and-benefit JJ
+Effects NNPS
+trade-ad NN
+Peru NNP NN
+labile JJ
+Resourceful JJ
+Sedgwick NNP
+Grenadian JJ
+calibre NN
+Renaults NNPS
+Boase NNP
+near-luxury JJ
+Den NNP
+Serlin NNP
+Troops NNS NNP
+prop VB VBP NN
+entrepreneur NN
+daunt VB
+apprenticeship NN
+voluminous JJ
+lineage NN
+seedcoat NN
+book-burning JJ
+Hollywood NNP
+pillorying VBG
+order-delivery JJ
+university-based JJ
+ironworks NN
+Danco NNP
+backups NNS
+cuddly JJ
+chairmanship NN
+nucleoli NNS
+Cass NNP
+Ga. NNP
+Navin NNP
+seafaring JJ
+amoral JJ
+Trofeo NNP
+Feld NNP
+Pompadour NNP
+criminal JJ NN
+philosophizing VBG NN
+--plus RB
+Roberta NNP
+fast-track JJ
+Farmington NNP
+Watchers NNPS NNP
+peninsula NN
+Fanning NNP
+clime NN
+chunk NN
+spectator-type JJ
+lorries NNS
+Relation NN
+news-division NN
+rapidly RB
+Nicolas NNP
+navel NN
+portrayal NN
+Madaripur NNP
+traitor NN
+coup-planning NN
+Barnumville NNP
+NASDAQ NNP
+Bentleys NNPS
+schmoozing NN VBG
+unalienable JJ
+later RB JJ RP JJR RBR
+freakish JJ
+TransNet NNP
+Schenley NNP
+palindromes NNS
+smokable JJ
+docks NNS
+theatergoing JJ
+pectoral-front JJ
+backfires VBZ
+tempo NN
+credit NN VB VBP
+captains NNS
+futureeither NN
+Generation NNP NN
+audition NN VB
+PerkinElmer NNP
+Tedi NNP
+.01 CD
+habits NNS
+holdup NN
+indoctrinated VBN
+deluxer NN
+Geneva NNP
+hypocracy NN
+tank-related JJ
+Saga NNP NN
+amusedly RB
+shouldered VBD VBN
+crone NN
+COKE NNP NN
+discriminating VBG JJ
+Lockhart NNP
+Contribute VB
+Trans NNP
+poorly RB
+presage VB VBP
+earthquake-ravaged JJ
+Appalled JJ
+QVC NNP
+subparts NNS
+ground-floor JJ
+ALQ-178 NNP
+ward-heelers NNS
+Inter-City NNP
+Sealtest NNP
+Baton NNP
+satire NN
+outside IN JJ NN RB
+Eberly NNP
+Berean NNP
+flex-time JJ
+bronzed JJ
+bergs NNS
+weapons NNS
+coups NNS
+chlorine-carbon NN
+forebear NN
+economic-crime JJ
+fever NN
+Italo-American NNP
+black-and-orange JJ
+Gazette NNP
+seaboard NN
+Millions NNS
+spokewoman NN
+trench NN
+Chart NN NNP
+marvelled VBD
+Shaffer NNP
+Oats NNPS NNP NN
+Cottrell NNP
+Scientifique NNP
+Centralizing VBG
+six-inch-square JJ
+Critical NNP JJ
+Supercritical NNP
+Leasure NN
+paleoexplosion NN
+EARTHQUAKE NN
+Missoula NNP
+confronting VBG
+W.S. NNP
+Choices NNS NNPS
+communicators NNS
+tony JJ
+Qualities NNPS NNP
+Atreus NNP
+prostaglandin NN
+datum NN
+Cary NNP
+vivacity NN
+phenomena NNS
+Pro-Choice JJ
+nabbing VBG
+abode NN
+brotherly JJ
+longed-for JJ
+picocassette NN
+Lover NNP NN
+Karre NNP
+May NNP MD
+variance NN
+nut-like JJ
+end NN VBP JJ RB VB
+radon NN
+Tenn.-based JJ
+state's-responsibility JJ
+matricide NN
+Yaohan NNP
+profess VBP VB
+boyars NNS
+Graff NNP
+inceptor NN
+Retrace VB
+co-produce VB
+fulfills VBZ
+Fitzwater NNP
+situation NN
+half-well JJ
+Telesis NNP
+FXTV NNP
+UAE NNP
+bunker NN
+school-based JJ
+LDCs NNPS
+waif NN
+Deputies NNPS NNP NNS
+O'Brian NNP
+property-claim NN
+Levine NNP
+rearrange VB
+splurge NN
+tokens NNS
+Vigier NNP
+ransack VB
+burnished VBN
+M.J. NNP
+PaineWebber NNP NN VB
+roughly RB
+break. NN
+standard-bearer NN
+Mussolini-like JJ
+pre-noon NN
+seized VBN VBN|JJ VBD
+Berne NNP
+antacid NN
+consorted VBD
+Peaceful JJ
+Attu NNP
+curls NNS VBZ
+Lurie NNP
+scooting VBG
+Salerno NNP
+Camera NNP NN
+Rangoon NNP
+Tacoma NNP
+gas NN VB
+de-inking JJ
+Studio NNP NN
+break-up NN JJ
+Hirudo FW
+Shoals NNP NNS
+however RB RBR WRB
+Flottl NNP
+Rudyard NNP
+Bowen NNP
+income NN
+Gamper NNP
+catchwords NNS
+dosages NNS
+Open-adoption NN
+dispassionately RB
+shrieked VBD
+Tohmatsu NNP
+uncertified JJ
+arch NN VBP
+sables NNS
+gentlelady NN
+raped VBN VBD JJ
+stockholder NN
+pemmican NN
+greying VBG
+scurry NN VBP VB
+Indeterminate NNP
+bubblelike JJ
+standardizing VBG
+Seeds NNS
+Berkshire NNP
+plazas NNS
+Woman NNP NN
+Warranties NNS
+dimmer RB JJR
+ISC NNP
+Sabinas FW
+thirty-mile JJ
+CERA NNP
+Hwan NNP
+Babelists NNS
+actuality NN
+makes VBZ NNS NN
+clones NNS
+brazenly RB
+Adrian NNP
+Monoclonal JJ
+nufs NNS
+cower VBP VB
+selfish JJ
+wrenching JJ VBG
+plaintively RB
+Genel NNP
+Aul NNP
+well-intended JJ
+electrons NNS
+per-share JJ NN
+redder JJR RBR
+clings VBZ
+Single-color JJ
+semi-controlled JJ
+hustling VBG
+overpaid VBN VBD JJ
+Deactivation NN
+Sulgrave NNP
+speeding VBG JJ NN
+delusion NN
+coated-magnetic JJ
+skilled-nursing JJ
+marble NN
+mishandling VBG
+sons-in-law NNS
+Felix NNP
+melancholy NN JJ
+completes VBZ
+Warned VBD
+criminalization NN
+damning VBG
+intending VBG
+parakeet NN
+osmium NN
+mound NN
+bull's-eye NN
+microorganism NN
+Ruined VBN
+scabbard NN
+adoption-assistance JJ
+coureurs FW
+Dominica NNP
+Applebee NNP
+quake-torn JJ
+Semra NNP
+blew VBD
+Hurley NNP
+KEISHI NNP
+expansions NNS
+Desk NNP
+squashy JJ
+Geothermal NNP
+mop VB NN
+lower-value JJR
+CDL NNP
+entrusting VBG
+spume NN
+savior NN
+kill VB VBP NN
+Jerr-Dan NNP
+puddle NN
+Sifton NNP
+overheating VBG JJ NN
+acids NNS
+iron-clad JJ
+forfeitures NNS
+Dallara NNP
+scrawl NN
+mutiny NN
+sentinel NN
+Pettee NNP
+unrevealing VBG
+Super-Protein NNP
+baker NN
+O.B. NNP
+Cast VBN VBP
+pistachio JJ
+antitrust JJ NN
+unconcernedly RB
+Pension-fund NN
+Bismarck NNP NN
+commercializing VBG
+Euroshuttle NNP
+ineptitude NN
+mouth-up JJ
+ANN NNP
+burgs NNS
+Kretchmer NNP
+increasingly RB
+Louisiane NNP
+Bonnet NNP
+Fairlawn NNP
+half-straightened VBD
+'Forget VB
+generations NNS
+corporate-lending JJ
+market-on-close JJ
+banner NN
+Deo NNP
+repressers NNS
+vents NNS
+sensuous JJ
+Agricoles NNP
+castigate VB
+honour NN
+negotiations NNS
+diggers NNS
+Finkel NNP
+pistils NNS
+bushy-tailed JJ
+shortly RB
+cloying JJ JJ|VBG
+Shop NNP NN VB
+Risques NNP
+Fujitsu NNP
+Post-Dispatch NNP
+COMPUTER NN NNP
+Van NNP
+Ozark NNP
+realign VB
+chipper JJ
+Cultural NNP JJ
+glorifies VBZ
+scoundrel NN
+spongy JJ
+Harrows NNPS
+microbiology NN
+LIFETIME NNP
+enact VB
+lithography NN
+Ripper NNP
+SUBURBIA NN
+Prussin NNP
+DiNardo NNP
+determine VB VBP
+long-depressed JJ
+wolde MD
+IBM-bashing NN
+alcohol-related JJ
+IRI NNP
+scream VB VBP NN
+small-employer NN
+kimpap FW
+tumor-suppressing JJ
+Breaux NNP
+Westvaco NNP
+Downgrades NNS
+hiatus NN
+Chicago NNP
+despairing JJ VBG
+arbitrary JJ
+Slatkin NNP
+dotted VBN VBD JJ
+Mayor-nominate NNP
+saws NNS
+consoles NNS VBZ
+Holliston NNP
+aggravate VBP VB
+Hitlers NNPS
+boyish-looking JJ
+DiVall NNP
+Waksman NNP
+Globe-Democrat NNP
+Millard NNP
+Hund FW
+'we'd MD
+goal-values NNS
+steel-reinforced JJ
+postures NNS
+Wustman NNP
+Poxon NNP
+executive-office NN
+SEi NNP
+Prefecture NNP
+Brethen NNP
+infertility NN
+export-control JJ NN
+Loves VBZ NNP
+.02 CD
+O'Linn NNP
+overborrowing VBG
+detoured VBD VBN
+realtors NNS
+dastardly JJ
+Close-up NNP
+Delamuraz NNP
+furrow NN
+supersonic JJ
+withdraws VBZ
+society NN
+Kerkorian NNP
+retaliate VB
+Picasso NNP NN
+boyfriends NNS
+fries NNS
+far-left JJ NN
+Astec NNP
+Timex NNP
+Zealand-based JJ
+peeked VBD
+feeding VBG NN
+contributes VBZ
+Rating NNP NN
+Czechs NNPS
+Cipriano NNP
+creeds NNS
+Leaders NNS NNPS
+Cologne NNP
+niger NN
+stonelike JJ
+obscurities NNS
+MAKES VBZ
+fevered JJ
+Hoopla NNP
+who WP NN
+lackeys NNS
+OPEN JJ
+Utley NNP
+Palamara NNP
+seven-inch JJ
+suspecting VBG
+commuter NN
+Reorganization NNP
+Withdrawals NNS
+Frenchman NNP NN
+pothole NN
+anger NN VBP
+gulf NN
+retrenching NN VBG
+Hanover-Chalidale NNP
+cheeky JJ
+unknowing JJ
+insistence NN
+Haggard NNP
+voice-activated JJ
+LeFrere NNP
+Music NNP NN
+interludes NNS
+Forty-Four CD
+coma NN
+out-of-sight JJ
+Mahmoud NNP
+by-passes VBZ
+entitlement NN JJ
+bright-eyed JJ
+southeastern JJ
+soviets NNS
+stimulated VBN VBD
+Haddix NNP
+renal JJ
+sopranos NNS
+missile-defense JJ
+U.B.U. NNP
+AMT NNP
+Mulhouse NNP
+shameful JJ
+Folmar NNP
+Rauschenberg NNP
+Euler NNP
+Zayadi NNP
+steady-Eddies NNS
+parachutes NNS
+Ky. NNP
+MAINTENANCE NNP
+migrant JJ NN
+Name-dropping NN
+preening VBG
+WILL MD
+Vindication NNP
+Strub NNP
+pro-reform JJ NN
+lured VBN VBD
+equity NN
+assigning VBG
+Compson NNP
+clocking NN
+Pirelli NNP
+portering NN
+n-trial NN
+Flights NNS
+Responses NNS
+Surgical NNP
+post-conviction JJ
+option NN VBP
+lenient JJ
+diffraction NN
+Cato NNP
+INSURERS NNS
+criminal-law NN
+supervised VBD JJ VBN
+carbon-halogen NN
+Done VBN
+Bombieri NNP
+Takeover NN NNP
+rejoice VBP VB
+geneticists NNS
+Northwestern NNP
+luggage NN
+Bridge NNP NN
+policy-oriented JJ
+BAKER NNP
+Abortion NNP NN
+needle-sharp JJ
+Toying VBG
+stunted VBN
+closely RB
+Lohmans NNP
+galloped VBN
+impossibly RB
+outflows NNS
+links NNS VBZ NN
+densities NNS
+Marwick NNP
+shorter-term JJ JJR
+extinguishers NNS
+motor-control JJ
+TUCSON NNP
+shoot-down NN
+Link NNP VBP NN
+newsworthiness NN
+sear VB
+Selway-Swift NNP
+remuda NN
+short-contact JJ
+screech NN
+Rising VBG
+places NNS VBZ
+calculations NNS
+moulding NN
+Maanen NNP
+midsized-car JJ NN
+weekend NN
+woodlots NNS
+uncolored JJ
+can.. MD
+Serenity NN
+embryo NN
+Beaulieu NNP
+Truly NNP RB
+distraught JJ
+ther RB EX JJR PRP$
+Pincus NNP
+glanders NNS
+ponying VBG
+Donnan NNP
+or... :
+Frederik NNP
+probly RB
+hovels NNS
+constrictors NNS
+Yoichi NNP
+Asian-Americans NNPS
+Peoples NNPS NNP NNS
+fiancee NN
+enchant VB
+Kent NNP
+sweetheart-secretary NN
+supplant VB
+scrimped VBD
+social-issue JJ
+Zadel NNP
+forefront NN
+gaped VBD VBN
+Heck NNP
+Miscellany NNP
+wavelength NN
+Keeping VBG NNP
+eyelets NNS
+Hammersmith NNP
+ILLINOIS NNP
+Carnegie-Mellon NNP
+wing NN VBP
+Tudor NNP JJ
+zippo NN
+Nagrin NNP
+Loman NNP
+Neils NNP
+Cable NNP NN
+Kaina NNP
+delved VBN
+Twenty CD
+anticipate VB VBP
+Palestine-General NNP
+chicanery NN
+knoll NN
+cast-proof JJ
+DeVoe NNP
+Straits NNPS NNP NNS
+leprosy NN
+Mammograms NNS
+stimulation NN
+bakes VBZ
+Vereinsbank NNP
+Mainland NNP JJ
+Evangeline NNP
+Hoskyns NNP
+Summerdale NN NNP
+Sikh NNP JJ
+nerd-and-geek JJ
+Durkheim NNP
+Idaho NNP
+moorings NNS
+Walinsky-Rubinstein NNP
+fliers NNS
+loose-knit JJ
+this.`` ``
+Rickey NNP
+sucks VBZ
+Minkow NNP
+Kuhlman NNP
+pretest NN
+bio-analytical JJ
+attacks. NN
+gunplay NN
+Schwemm NNP
+Withrow NNP
+dwarfism NN
+diners NNS
+all-black JJ
+Catastrophic-health NN
+chain-smoking NN VBG
+bound VBN JJ NN VBD
+Dooleys NNPS
+flare NN VB VBP
+brocade NN
+Iraj NNP
+Torrijos NNP
+Silence NN NNP
+headed VBN VBD
+Wyo. NNP
+Saledo NNP
+first-preference NN
+Capitalincludes NNS
+shuttle NN JJ
+middle-brow JJ
+chantier FW
+Varadero NNP
+Elbe NNP
+Ruwe NNP
+fade VB VBP NN
+strayed VBD VBN
+labeled VBN VBD
+Hammacks NNP NNPS
+culminating VBG
+Containers NNPS NNP
+Hosea NNP
+strategic-arms JJ NNS NN
+commutes NNS VBZ
+salicylate NN
+Puglisi NNP
+umbrella NN
+Schloss NNP
+deployment NN
+poetic JJ
+wiederum FW
+late-summer\ JJ
+cent-a-bushel JJ
+emergencies NNS
+Premier NNP
+dust-settling JJ
+homebuilder NN
+diety NN
+Boy/NNP... :
+BIA-COR NNP
+Corpus NNP
+clasping VBG
+concrete JJ NN
+sycophantically RB
+expended VBN VBD
+tackles VBZ NNS
+Durning NNP
+bolster VB VBP NN
+grinds VBZ NNS
+Robards NNP
+Ponchartrain NNP
+mortgaged-backed JJ
+psychically RB
+confronted VBN VBD
+Achaeans NNPS NNP
+Georgian JJ NNP
+belonged VBD VBN
+Matra NNP
+Replacing VBG
+espouse VBP
+Outright JJ
+jittery JJ
+Reactors NNP
+Tweed NNP
+Fausto NNP
+dreariness NN
+McGowan NNP
+wags NNS
+ankle-deep JJ
+Cordova NNP
+Auberge NNP
+Galveston-Houston NNP
+cross-party JJ
+cellists NNS
+non-wireline JJ
+seeded VBN
+chant NN VB
+armpits NNS
+car-sales NNS
+impudence NN
+dieting NN VBG
+affirms VBZ
+Sucre NNP
+contravened VBD VBN
+Biggio NNP
+Derr NNP
+helps VBZ VBP NNS
+Fialkow NNP
+Civilized JJ
+transmission-product NN
+heightening VBG NN
+West-End NNP
+Propertius NNP
+D.O.A. JJ
+pandanus NN
+Bourbon NNP JJ NN
+Harveys NNPS
+overcrowded JJ VBN
+syndications NNS
+Jetway NNP
+Barges NNS
+gratuities NNS
+Wooden JJ
+field-crop-seeds JJ
+Ringing NN NNP VBG
+gobbled VBD VBN
+commuting VBG NN
+Strategy NN NNP
+conspiring VBG
+multimegaton JJ
+hoop NN
+courthouses NNS
+Aviv NNP
+Grads NNS
+Durney NNP
+Bolinas NNP
+survives VBZ
+chauvinistic JJ
+downtime NN
+arch-enemy NN
+workman NN
+boatman NN
+Secular JJ
+trumped-up JJ
+Walkmen NNP
+variations NNS
+dominated VBN VBD
+Performing VBG
+kangaroo NN
+credit-information NN
+Zaishuo NNP
+Osamu NNP
+Comprecin NNP
+chums NNS
+moss NN
+pithiest JJS
+reactor NN
+Ivy NNP JJ
+Union. NNP
+Jutish JJ
+emotional JJ
+Empedocles NNP
+nasty JJ
+determing VBG
+discrimination NN
+papyrus NN
+Flaum NNP
+.03 CD
+Otaiba NNP
+disembarking VBG
+Vermouth NNP
+Tarwhine NNP
+Neversink NNP
+Miniscribe NNP
+Kuomintang NNP
+Airborne NNP JJ
+BASF NNP
+Unresolved JJ
+Margie NNP
+simplifies VBZ
+ideational JJ
+US116.7 CD
+fireplace NN
+mushroom NN VBP VB
+comb NN VB
+pouty-looking JJ
+Kuparuk NNP
+Commissary NNP
+facilitates VBZ
+Wenz NNP
+Garine NNP
+staff-reduction NN JJ
+phonograph NN
+Rus NNP
+Coffield NNP
+bicameral JJ
+Patagonians NNPS
+Orkney NNP
+by-ways NNS
+panel NN
+unofficial JJ
+Debugging VBG
+a-Includes VBZ
+KEY JJ
+pleadingly RB
+Bioengineers NNS
+Annapolis NNP
+Iraqis NNPS
+boxed-in JJ
+load NN VB VBP
+Safi NNP
+undergrads NNS
+retract VB
+court-reporting JJ
+SWAPO NNP
+Lipchitz NNP
+Wrongdoers NNS
+tantalizingly RB
+upcoming JJ
+Elvekrog NNP
+Transportek NNP
+per-passenger NN
+bobby-sox NN
+fiction-writing NN
+supervision NN
+Aslanian NNP
+roller-coaster NN
+torso-defining JJ
+counteroffensive NN
+fairer JJR
+Homebuilders NNPS
+windswept JJ
+notifying VBG
+Attanasio NNP
+Lt. NNP
+magnified VBN VBD
+grazed VBD
+Foont NNP
+Samoilov NNP
+sweet-sour JJ
+Ellman NNP
+Shout VB
+willya MD
+sit-in NN JJ
+expansion-minded JJ
+reworking NN
+JERSEY NNP
+selfishness NN
+Soothsayer NNP
+Gibbs NNP
+laudable JJ
+revitalizing VBG
+special-edition JJ
+spiralled VBD
+Cudmore NNP
+live-in JJ
+JUMPING NNP
+regulations NNS
+transfer-pricing JJ
+scorned VBN VBD
+turnaround NN
+Moreover RB JJR
+Ravine NNP
+global-market JJ
+BSPP NNP
+shortcoming NN
+orderly JJ NN RB
+shopkeepers NNS
+Stop-loss NN
+airplay NN
+FLARE VBP
+latter NN JJ
+fledging VBG
+hoots NNS
+Medicare-catastrophic-care JJ
+reproducibility NN
+seas NNS
+Londoner NN NNP
+Lancret NNP
+tauntingly RB
+breweries NNS
+human-sounding JJ
+VCRs NNS
+Department NNP NN
+Sargent NNP
+fluent JJ
+Scandal NN NNP
+Borneo NNP
+conservative-led JJ
+intrepid JJ
+Verdi NNP
+unread JJ
+presumption NN
+Hispanic JJ NNP
+Boulroud NNP
+Ruder NNP
+Busey NNP
+Featherbed NN
+picketers NNS
+sorely-needed JJ
+price NN VBP VB
+ambuscade NN
+STANDARDS NNPS
+short-dollar JJ NN
+nonce NN
+exempted VBN VBD
+typicality NN
+Acme-Cleveland NNP
+futures-related JJ
+Seekonk NNP
+front-running JJ
+womb-to-tomb JJ
+up-tight JJ
+triumph NN VB
+Telephones NNP NNS
+departed VBD JJ VBN
+uncomforted JJ
+Beaumont NNP
+tore VBD VBN
+lightyears NNS
+COLLATERAL NN
+preclearance NN
+Critic NNP
+specks NNS
+Serbantian NNP
+Meisenheimer NNP
+Cave NNP
+kiln NN
+saliva NN
+isms NNS
+Flats NNP NNPS NNS
+Laurence NNP
+Beaver NNP
+contended VBD VBN
+Ansley NNP
+Scene NNP NN
+Jacobson NNP
+accommodate VB VBP
+F.N. NNP
+HOPE VBP
+Sox NNP NNPS
+HELPS VBZ
+ledger NN
+Reuben NNP
+contrivance NN
+florid JJ
+pros NNS
+five-count JJ
+beyond IN RB
+dishing VBG
+splicing VBG
+Waldheim NNP
+now-discontinued JJ
+Englander NNP
+post-modern JJ
+Symbolist NNP
+Shrewd JJ
+Offsetting VBG
+congenital JJ
+stinkpotters NNS
+Bikers NNS
+charter NN JJ
+straightening VBG NN
+red-blood JJ
+role-playing NN
+Imasco NNP
+provinces NNS
+--a DT IN JJ
+Inside IN NNP NN RB
+bandoleers NNS
+materialistic JJ
+Dai-Ichi\/Nippon NNP
+clobber VB
+Bullocks NNP
+Closed VBN NNP JJ
+Kilhour NNP
+mitigating VBG JJ
+Bernhard NNP
+l'oeil FW
+stolen VBN JJ
+joie FW
+grime NN
+igloo NN
+Wakes NNP
+Precious-metals NNS JJ
+Fixing VBG
+sexuality NN
+adheres VBZ
+near-rich NN
+rule`` ``
+money-hungry NN
+adjudication NN
+inglorious JJ
+Elisabeth NNP
+reorient VB
+delegates NNS
+notebook-sized JJ
+questioningly RB
+apostle NN
+unraveled VBN JJ VBD
+overpowering JJ
+laundering NN VBG
+mor JJR
+listener-supported JJ
+rippling VBG
+thinke VBZ VB
+answering VBG NN
+Columbus NNP NN
+Simat NNP
+Quotas NNS
+coercion NN
+Poole NNP
+bucket-shop JJ
+Amdec NNP
+sleek JJ
+Sterba NNP
+gas-turbine JJ
+PANEL NN
+drawings NNS
+Liberating VBG
+resubmitted VBD
+Portwatchers NNPS
+Japs NNPS
+thanks NNS VBZ VB UH
+Dauphin NNP
+Cawthorn NNP
+Koji NNP
+lathe NN
+Thiep NNP
+exacerbate VB VBP
+Technically RB NNP
+Krebs NNP
+grandmother NN
+mayorship NN
+English-born JJ
+Kwong NNP
+plumes NNS
+ACQUISITIONS NNS
+Huntsman NNP
+Lawford NNP
+arduous JJ
+pall NN VB
+still-mammoth JJ
+wage-rates NNS
+humans NNS
+Drafted VBN
+criminology NN
+floppy JJ
+capital-coverage NN
+ANP NNP
+shenanigans NNS
+Blampied NNP
+injustices NNS
+reconstitute VB
+snap VB VBP JJ NN
+placating VBG
+CFC NNP NN
+Caravan NNP
+CITIZEN NNP
+reorganization-plan JJ
+herewith RB
+push-button JJ
+Moynihan NNP
+government-business NN
+whitewalled JJ
+Zelda NNP
+nose-dive NN
+SJO NNP
+Nisshin NNP
+Nordmann NNP
+Helmerich NNP
+Humor NN
+Bolstering VBG
+mini-cars NNS
+escorting VBG
+Downers NNP
+Clerks NNS NNP
+ideally RB
+spill-cleanup NN
+Afraid JJ
+Mikulski NNP
+subordinator NN
+well-understood JJ
+Document NNP
+most RBS JJ NN RB RBS|JJS JJS
+Adobe NNP
+surviving VBG
+optimize VB
+Coronets NNPS
+price-to-book JJ
+Spark NNP
+non-wage JJ
+Abreast NNP
+H.F. NNP
+trumpeted VBD VBN
+Hoelzer NNP
+timberlands NNS
+north-flowing JJ
+imparts VBZ
+rent-subsidized JJ
+REVENUE NN
+opportunism NN
+chamber-music JJ
+contacts NNS VBZ
+overdrive NN
+Gumport NNP
+Gruppe NNP
+triggered VBN VBD JJ
+all-cargo JJ
+wynne VB
+proscribe VBP
+faires NNS
+Janizsewski NNP
+stabilizing VBG
+wrangler NN
+Cluff NNP
+McAlpine NNP
+Sicilians NNS
+bad-expectations JJ
+Lil NNP
+BRUT NNP
+Euro-pillows NNS
+temporize VB
+alkylarysulfonate NN
+building-supplies NNS
+dislodged VBD VBN
+ba-a-a UH
+dragging VBG NN
+Grass-roots JJ
+Hollingshead NNP
+PR-wise JJ
+B'Gosh NNP
+Levinger NNP
+center-punch VB
+alcoholics NNS
+Stateswest NNP
+transmitted VBN JJ VBD
+economic-efficiency NN
+advertisers NNS
+whimper NN VB
+anti-Americanism NN
+Burlingham NNP
+Punjab NNP
+contemptuous JJ
+Ptolemaists NNS
+reuse VB
+accentual JJ
+wilt MD NN VB
+miscellanies NNS
+tanning NN
+Strolling VBG
+gunpowder NN
+regurgitating VBG
+Kenosha NNP
+skimp VB
+Creighton NNP
+Sheffield NNP
+wails NNS
+gravestone NN
+Spiritual JJ
+Assassination NNP
+reacquired VBN
+indispensability NN
+Dragnet NNP
+CCT NNP
+Outdoor JJ NNP
+Dong NNP
+Mossoviet NNP
+Matos NNP
+abstruse JJ
+Gimenez NNP
+Konishi NNP
+Lucky-Goldstar NNP
+Strangely RB
+Avi NNP
+Woessner NNP
+Waban NNP
+unpartisan JJ
+abnormalities NNS
+Lupton NNP
+mirrors VBZ NNS
+rep'tation NN
+Ostrager NNP
+Mo. NNP
+Dailey NNP
+idiom NN
+glass-bottom JJ
+semi-heights NNS
+razed VBN
+encumbrance NN
+untreated JJ
+unfrozen JJ
+foreign-airline NN
+L'Heureux NNP
+Principles NNS NNPS
+seat NN VB VBP
+deflected VBD VBN
+Marches NNPS
+drownings NNS
+PROSECUTIONS NNS
+clapped VBD
+tree-shaded JJ
+Yippies NNPS
+Andris NNP
+traced VBN VBD
+Debt-free JJ
+Pharmacopoeia NN
+encasing VBG
+Dalldorf NNP
+global JJ
+hard-wire JJ
+thet DT NN VB
+Concetta NNP
+alias NN
+dusky JJ
+temps NNS
+ledges NNS
+Defrost VB
+acquisitions.s NNS
+public-health JJ NN
+deadly JJ RB
+surreal JJ
+Alps NNP NNPS
+Repairing VBG
+Sandip NNP
+Gargantuan JJ
+Benigno NNP
+Z-gyro NN
+bars NNS VBZ
+Huo-Shan NNP
+highrisk NN
+primitive JJ
+Ultraviolet NN
+business-automation NN
+Sandinista NNP JJ
+Beardsley NNP
+coli NNS
+Recognize VB
+frontier NN
+grandsons NNS
+swam VBD
+Highland NNP
+gastrocnemius NN
+Shakespearean JJ NNP
+sneakers NNS
+microscopes NNS
+LDC NNP
+maneuverability NN
+Evershed NNP
+Prater NNP
+excitedly RB
+Ash-Can NNP
+Volokh NNP
+Liptak NNP
+under-three-years JJ
+Uchida NNP
+Runge NNP
+Janachowski NNP
+Rental NNP JJ
+ORTEGA NNP
+double JJ VBP NN RB VB
+contempt-of-court NN
+geology NN
+vacuolated VBN
+week-old JJ
+megalomaniac NN
+KID NNP
+masquers NNS
+Spinney NNP
+scoffer NN
+businessmen-authors NN
+botanists NNS
+now-scuttled JJ
+moralizing VBG JJ
+comic JJ NN
+high-performance JJ NN
+insincere JJ
+tribes NNS
+Diller NNP
+over-the-road JJ
+coahse NN
+grokked VBD VBN
+hub-and-spoke JJ
+lazy JJ
+volley-ball NN
+seminal JJ
+MINISTER NN
+Magwitch NNP
+rendezvoused VBD
+Sidestepping VBG
+Were VBD VB
+Opa-Locka NNP
+mosquito NN
+befits VBZ
+shorn VB
+crew-rest NN
+transistor-radio-sized JJ
+finely RB
+motorcycles NNS
+FADA NNP
+wallets NNS
+Dexatrim NNP
+Baker-Shevardnadze NNP JJ
+falling VBG JJ NN
+violates VBZ
+Fair-priced JJ
+Tirpak NNP
+Babylon NNP
+OUTLOOK NNP
+dipping VBG
+historian NN
+bath NN
+all-something-or-the-other JJ
+attains VBZ
+S-Cargo NNP
+Guinea NNP
+monopolists NNS
+single-lot JJ
+nerly RB
+Stubblefield NNP
+Wohlstetter NNP
+anti-assignment JJ
+reimburses VBZ
+vivify VB
+Bethlehem NNP
+ICCO NNP
+big-stock JJ
+assembly-line NN
+year-to-year JJ
+damsel NN
+Memorials NNP
+imitations NNS
+counterbalancing VBG
+Siano NNP
+Coudersport NNP
+Kiarti NNP
+Hebrews NNPS
+Personality NNP
+'Come VB
+evoke VB VBP
+subverted VBN
+daises NNS
+Polypropylene NN
+Koh NNP
+Sage NNP
+kind NN JJ RB
+district\/state NN
+upgrade VB JJ NN
+Eskandarian NNP
+Leominster NNP
+patient-interview JJ
+floor-length JJ
+Suzman NNP
+Odds NNS NNPS
+outings NNS
+passenger-car NN
+Bids NNS
+coachman NN
+Rheingold NNP
+Hung NNP
+lizard NN
+Lakes NNPS NNP
+palm NN VB
+autonomously RB
+Targo JJ
+Desprez NNP
+million-and-counting JJ
+corporate-wide JJ
+legacies NNS
+upsetting VBG JJ NN
+mos NNS
+anthropic JJ
+fairies NNS
+enterprisingly RB
+Alexander NNP
+trigonal JJ
+clapboard NN
+searchings NNS
+Hisaya NNP
+chromed JJ
+medication-dispensing JJ
+handled VBN VBD
+inversions NNS
+Confused VBN JJ
+banalization NN
+Bosque NNP
+iodocompounds NNS
+program-related JJ
+wil MD
+mused VBD
+Bonhoffer NNP
+Reagan-like JJ
+Spogli NNP
+Involved VBN
+workshops NNS
+Scheduled VBN
+nullify VB VBP
+Lilian NNP
+dehydration NN
+forest NN
+BIP NNP
+shillings NNS
+grovelike JJ
+steroid JJ
+little-noticed JJ
+corded VBN
+northern JJ
+clannishness NN
+McClatchy NNP
+gardens NNS VBZ
+'Is VBP VBZ
+crisper NN
+build-better-for-less JJ
+panic-stricken JJ
+reelected VBN
+Solidarity NNP NN
+QuesTech NNP
+Sukarno NNP
+avuncular JJ
+Sterilized JJ
+CFD NNP
+graduation NN
+Lily NNP
+indicator NN
+Strouds NNP
+Der NNP
+Electrification NNP
+exemplify VBP VB
+Fluorescent JJ
+railings NNS
+fluctuated VBD VBN
+elixir NN
+hatchery NN
+wigmakers NNS
+Merola NNP
+swirled VBD
+Victim NN
+ayni NNS
+semi-finished JJ
+Barrie NNP
+grill NN VB VBP
+sophomore NN
+mathematical JJ
+Tuohy NNP
+SFr2 NNP
+Prompted VBN
+Harch NNP
+factory-automation NN
+nary DT PDT
+Camel NNP
+aegis NN
+self-delusion NN
+Boun NNP
+rudder NN
+Veracruz NNP
+four-game JJ
+Craftsmen NNPS NNP
+jacketed JJ VBN
+benighted JJ
+single-handedly RB JJ
+loaf NN
+Masur NNP
+poll-takers NNS
+Adaptations NNS
+mythic JJ
+similarly RB
+Bullshit UH
+knee-jerk JJ RB
+industryas NNS
+Payco NNP
+masse FW NN RB
+Edwards NNP
+Davidge NNP
+relocated VBD VBN
+transcend VBP
+justiciable JJ
+Ellis NNP
+Lo-Jack NNP
+Lim NNP
+price-and-seasonally RB
+haughty JJ
+recognised VBD
+edges NNS
+prior-notice JJ
+defeats NNS VBZ
+module NN
+plumb RB JJ
+limitations NNS
+Cafferarelli NNP
+endotoxin NN
+double-glaze VB
+riflemen NNS
+Pachyderms NNPS
+long-dollar JJ
+'Chief NNP
+superego NN
+Taconic NNP
+boucle NN
+ALUMINUM NNP
+nondeductible JJ
+example NN
+.05 CD
+suppressing VBG
+uncaring JJ
+supranational JJ
+campaign NN VB
+chouise NN
+innovator NN
+Heartland NNP
+Hattiesburg NNP
+quotation NN
+finding VBG NN
+COMMUNICATIONS NNPS NNP
+big-business JJ NN
+Roxboro NNP
+solidify VB VBP
+Knowing VBG
+bounding VBG
+bright-red JJ
+sex-change JJ
+operas NNS
+tempt VB VBP
+talons NNS
+Goulde NNP
+cypress-like JJ
+skunks NNS
+diamonds NNS
+Aggie NNP
+prorata FW
+cave-in NN
+patria FW
+Customs NNPS NNP NNS
+Boesky NNP
+Carrington NNP
+detection NN
+showered VBN VBD
+pleases VBZ
+Zach NNP
+Confidence NN NNP
+Jewishness NN NNP
+coal-preparation JJ
+gunning VBG NN
+general-director NN
+corduroy NN
+tactlessness NN
+lightning-like JJ
+clamps NNS
+USACafes NNP NNPS
+speedily RB
+briskly RB
+Scotchgard NNP
+reschedulable JJ
+involve VB VBP
+trash-bag NN
+females NNS
+Dissident NNP JJ
+Mouse NNP NN
+fig NN
+flaps NNS
+adoption NN
+arbitragers NNS
+Laban NNP
+Sri NNP
+painless JJ
+re-examined VBD
+photojournalism NN
+government-imposed JJ
+Schleswig-Holstein NNP
+schoolteacher NN
+swan NN
+counseling NN VBG
+Lortie NNP
+mass-produce VB
+medical-leave JJ
+LBO NNP NN
+inaction NN
+gazed VBD
+Bien NNP
+domiciled VBN
+Ciavarella NNP
+vague JJ
+three-family JJ
+Christmas-like JJ
+arkylbenzene NN
+Yakov NNP
+dipotassium NN
+thirteenth-century JJ
+unfaltering VBG
+Andy NNP
+your... :
+Garrard NNP
+area NN
+HIAA NNP
+Periodic JJ
+conceive VB VBP
+movie NN
+Printemps NNP
+bottler NN
+home-equity JJ NN
+Pooh NNP
+wretched JJ
+rollovers NNS
+propylene NN
+shirts NNS
+Corinthian JJ NNP
+adroitly RB
+Croom-Helm NNP
+cleave VB
+Muse NNP
+pl. NNP
+timed VBN VBD JJ
+carinii NN
+illegalities NNS
+Acquisition NNP NN
+bacteria-contaminated JJ
+reposed VBD VBN
+Muzzling JJ
+Cleveland-Cliffs NNP
+indexing NN VBG VBG|NN
+Cabana NNP
+intercontinental JJ
+Keerist UH
+Kinsell NNP
+upper-management NN
+fleets NNS VBZ
+mastering VBG
+AmBrit NNP
+severity NN
+losing VBG JJ NN
+Canestrani NNP
+re-animated JJ
+Roots NNPS
+Trittico FW
+two-hour JJ
+theologian-philosophers NN
+clonic JJ
+robotics NNS
+Ebbetts NNP
+no-muss JJ
+Taipei NNP
+president-international NN
+Shot VBN
+constitutions NNS
+Cezanne NNP
+extempore RB
+Charters NNP
+sleeps VBZ
+sweatshop NN
+direct-investment JJ
+novices NNS
+happiest JJS
+Foggia NNP
+transvestites NNS
+Anglo\ JJ
+Poeme NNP
+four-bagger NN
+Frisbee NNP
+YOU'RE PRP
+turnaround\/takeover JJR
+Varo NNP
+ratification NN
+jasmine NN
+non-exclusive JJ
+Objects NNS NNPS|VBZ
+sounding VBG JJ NN
+eased... :
+SCECorp NNP
+white-dominated JJ
+Meg NNP NN
+place-name JJ
+protons NNS
+double-bladed JJ
+looked VBD VBN
+taxpayers NNS
+drawbacks NNS
+Bowes NNP
+i860 NN
+wimp NN VB
+crunches NNS
+calibrating VBG
+Sholom NNP
+Ginghams NNS
+denounces VBZ
+Crete NNP
+ruble\/gold JJ
+reweave VB
+ventures NNS VBZ
+interrelationship NN
+Ethel NNP
+sputnik NN
+disaffiliation NN
+detonate VB VBP
+thumbs-down NN
+Matilda NNP
+fiber-optics NN
+drop NN JJ VB VBP
+Wardwell NNP
+Poulin NNP
+immobility NN
+Zainuddin NNP
+Pietruski NNP
+Bohart NNP
+hour-and-a-half NN
+Arianism NNP
+crudes NNS
+newsletter NN
+self-critical JJ
+Abernathys NNPS
+desserts NNS
+rears VBZ
+Shochiku NNP
+Presbyterians NNPS
+series. NN
+Chavez NNP
+move NN VBP VB
+ever-tightening JJ
+liniments NNS
+pigments NNS
+CARTER NNP
+Thermo NNP
+Damage NN
+co-managing JJ VBG
+Attica NNP
+sorption-desorption NN
+Wessels NNP
+Whah WRB
+Sybil NNP
+non-interventionist JJ
+harvesting NN VBG
+adventuring NN
+LBOs NNS NNPS NNP
+Borner NNP
+upper-medium JJ
+Neusteter NNP
+business-venture JJ
+single-engine JJ
+foreseen VBN
+gyroscopes NNS
+financiers NNS
+mot FW
+voltages NNS
+Choosing VBG
+student-loan JJ NN
+Butch NNP
+producer-hubby NN
+Awe NN
+flavors NNS
+Salvadoran JJ NNP
+Elan NNP
+warheads NNS
+folk-tale NN
+prides VBZ
+Cornwall NNP
+Impetus NN
+passing VBG JJ NN
+Hieronymus NNP
+Insisting VBG
+life-style NN JJ
+polyphosphates NNS
+gluts NNS
+undertaken VBN
+Cattrall NNP
+Parade NNP
+algebraic JJ
+skinny JJ
+Rios-embryos NNS
+slob NN
+airborne-radar NN
+home-team JJ
+Scowcroft NNP
+Hard-Line JJ
+come VB VBD VBN VBP VBZ JJ
+sexes NNS
+rankest JJS
+non-instinctive JJ
+bused VBN
+SFr3 NNP
+Slovenia NNP
+Nehru NNP NN
+his\/her JJR
+Physicians NNP NNS NNPS
+hallways NNS
+outline NN VB VBP
+photographically RB
+course NN RB
+Happened VBD VBN
+water-submersion JJ
+Wertheim NNP
+spruce NN VB
+Motivated VBN
+TEP NNP
+Discs NNP
+Statistics NNP NNS NNPS
+cooperative JJ NN
+ANR NNP
+Ghose NNP
+swaps NNS
+Dennis NNP NNS
+amble VB
+Rohrer NNP
+braweling VBG
+Carleton NNP
+achievements NNS
+twenty-page JJ
+resurgence NN
+Bonilla NNP
+French-Italian JJ
+Des NNP FW
+backstitch NN VB
+NORTHEAST NN NNP
+Mehl NNP
+Kayabashi NNP
+MONTHLY JJ
+liquidations NNS
+Jervis NNP
+recycler NN
+latex NN
+tops NNS VBZ
+enthuses VBZ
+Analog NNP
+youths NNS
+redoing VBG
+Cats NNP
+surpassing VBG RB
+Showrooms NNS
+Image NN
+runnin VBG
+state-approved JJ
+shrewdly RB
+spider NN
+Montfaucon NNP
+aquam FW
+defenseless JJ
+FRANKENBERRY NNP
+choral JJ
+SAATCHI NNP
+reverent JJ
+debuting VBG
+antagonised VBN
+many-fold RB
+correspond VB VBP
+corporeal JJ
+Jurists NNP
+comedy-oriented JJ
+Ass'ns NNP
+Mintz NNP
+stone-still JJ
+aesthetically RB
+overloaded VBN JJ
+verified VBN
+respondents NNS
+serotonin NN
+Behringwerke NNP
+bottles NNS VBZ
+Lin NNP
+six-foot-four JJ
+pleasance NN
+recipient JJ NN
+incantation NN
+charge NN VBP VB
+REMIC NNP
+Massive JJ NNP
+balances NNS VBZ
+overpowers VBZ
+Belgian JJ NNP
+overblown JJ
+Bookings NNS
+Oracle NNP
+epiphany NN
+Rehabilitation NNP
+Baeyens NNP
+shadowed VBN JJ
+weakest JJS
+jogs VBZ
+electric-sewer-water JJ
+matryoshka FW
+Acourse NN
+Igaras NNP
+thirty-five CD JJ
+eight-year-old JJ NN
+Chihuahua NNP
+Solomon NNP
+CalComp NNP
+soft-shell JJ
+flounders VBZ
+deduced VBN VBD
+school-leaving JJ
+Novo NNP
+Intervoice NNP
+A.J. NNP
+Rothamsted NNP
+unpadded JJ
+supermachine NN
+contestants NNS
+armored JJ VBN
+decade-old JJ
+Colgate NNP
+vocally RB
+customary JJ
+pal NN JJ
+stock-picking JJ NN
+corn-producing JJ
+wink NN VB
+digitalization NN
+banquetings NNS
+Yiren NNP
+terminology NN
+sorrier JJR
+Wyckoff NNP
+preview NN
+inundated VBN JJ
+Apostles NNPS
+ghazals FW
+garbage-out JJ
+pliant JJ
+enables VBZ
+open-necked JJ
+tunnels NNS
+subjects NNS VBZ
+Nederlanden NNP
+felicities NNS
+posted VBD VBN JJ
+laborer NN
+poetry-writing JJ
+us... :
+five-hour JJ
+vent NN VB
+W.T. NNP
+opportunist NN
+suitable JJ
+MacNeil\/Lehrer NNP
+big-game JJ
+Newtonian JJ
+unfold VB VBP
+one-time JJ
+cash-interest JJ
+Wesco NNP
+stock-loan NN
+trifled VBN
+Pankki NNP
+clingy JJ
+diphosphopyridine JJ
+nightgowns NNS
+arbs NNS
+Chalon-sur-Saone NNP
+electrolytic JJ
+Events NNS NNP
+wildlife-related JJ
+Iran NNP
+Workshop NNP NN
+Virgins NNPS
+superiors NNS
+Shilling NNP
+Cognex NNP NN
+distributing VBG NN
+curly JJ
+Waugh NNP
+tax-loss NN JJ
+Mussorgsky NNP
+nine-press NN
+missile-launch JJ
+severance NN JJ
+grand-slam JJ
+combinations NNS
+forthright JJ
+Laboratorium NNP
+Atorino NNP
+Irvin NNP
+six-dollar JJ
+Iturup NNP
+brimful JJ
+non-objective JJ
+retailer-sales JJ
+Schuller NNP
+allocations NNS
+Palsy NNP
+Ryutaro NNP
+Stalingr NNP
+Congregationalism NNP
+Jase NNP
+lethality NN
+month-old JJ
+Equivalent NN
+Heed VB
+cacao NN
+Dominici NNP
+tie-breaker NN
+uncollaborated JJ
+Gouldings NNPS
+Baldrige NNP
+arching VBG
+immediate JJ
+linguist-anthropologist NN
+inclusiveness NN
+lappets NNS
+knelt VBD VBN
+rest-room NN
+Wolf NNP NN
+ribbed JJ
+hospitalized VBN JJ
+CAMBREX NNP
+seclusion NN
+semi-skilled JJ
+graduates NNS VBZ
+self-defense NN JJ
+insecticides NNS
+Assist NNP
+Balsbaugh NNP
+highlights VBZ NNS
+c-Domestic JJ LS|JJ
+anonymous JJ
+Kathie NNP
+Maalox NNP
+Orrick NNP
+aspires VBZ
+purposes NNS
+full-scale JJ
+recycles VBZ
+budget-altering JJ
+Bonnie NNP
+countervailing JJ VBG
+pre-employment JJ NN
+now-troubled JJ
+specially-trained JJ
+unfrosted VBN
+Feldemuehle NNP
+business-like JJ
+two-room JJ
+hipster NN
+Bar-Shavit NNP
+recoilless JJ
+Isham NNP
+Crowder NNP
+audiences NNS
+sale-purchase NN
+explosively RB
+Hollinger NNP
+composting NN
+RPM NNP
+Steele NNP
+conceits NN
+hoot NN VBP
+plane NN VB
+chaos NN
+cheap-shot JJ
+Gorby NNP
+knighted VBN
+Hessan NNP
+manipulate VB VBP
+inhabited VBN VBD JJ
+nothing-down JJ
+Mexicans NNPS NNS
+concentrate VB VBP NN
+C.B. NNP
+pervasive JJ
+Castroism NNP
+subtitled VBN
+wedging VBG
+credit-easing JJ NN
+much-respected JJ
+enthralled JJ VBN
+Rogaine NNP
+Roberti NNP
+Effective JJ
+strategicarms NNS
+Carlile NNP
+quasi-governmental JJ
+catheter NN
+skims VBZ
+swiping VBG
+Trager NNP
+agro-industry JJ
+Datatech NNP
+inexhaustible JJ
+Supermatic JJ
+traditionalized VBN
+grease NN
+Emhart NNP
+Jameses NNP
+progressivism NN
+Najarian NNP
+jutting VBG
+Lauer NNP
+programmed VBN JJ
+stomach-churning JJ
+Linsey NNP
+half-off JJ
+psyches NNS
+Toklas NNP
+illicit JJ
+threw VBD
+Conroe NNP
+Sonambula NNP
+john NN
+Eliminating VBG
+propelling VBG
+ordained VBN
+grace NN VB VBP
+Burleson NNP
+tidbits NNS
+colonials NNS
+swathings NNS
+mountings NNS
+Frills NNP
+CHILDREN NNS
+Lomas NNP
+amateurishness NN
+engineer NN VB
+class-warfare JJ NN
+Germans NNPS NNP NNS VBP
+Chelmno NNP
+buoys NNS VBZ
+Praisegod NNP JJ
+dirge NN
+guaranteeing VBG NN
+no-new-taxes JJ
+Englishy JJ
+TRAVELS VBZ
+belled JJ
+Olympia NNP
+queerest JJS
+gears NNS VBZ
+postride JJ
+leguminous JJ
+Effjohn NNP
+wail NN VB
+DISCOUNT NN NNP JJ
+sampling NN VBG
+PREDAWN NN
+impregnable JJ
+Facts NNP NNPS NNS
+Sloves NNP
+direct-marketed JJ
+miniatures NNS
+footnotes NNS
+heavy JJ NN RB
+Murjani NNP
+Gloomy JJ
+cleaning-fluid NN
+Stalinism NNP
+Stonehenge NNP
+whips NNS VBZ
+revellings NNS
+Assiniboine NNP
+would-be JJ NN
+scratchy JJ
+resurfaced VBD VBN
+Ogilvyspeak NNP
+Hannon NNP
+better-prepared JJ
+frugality NN
+Corsia NNP
+surtax NN
+sugars NNS
+Fewer JJR RB
+foibles NNS
+win VB NN VBP
+spinoff NN JJ
+gleamed VBD
+small-fry JJ
+co-workers NNS
+smelters NNS
+Eubie NNP
+non-prescription JJ NN
+Lake NNP NN
+suability NN
+inpatients NNS
+arms-production NN
+escort NN VB
+long-run JJ
+dealings NNS
+'Struggling VBG
+Catt NNP
+demand-supply JJ
+moon-drenched JJ
+pastimes NNS
+grandest JJS
+churned VBD
+dockworkers NNS
+midocean JJ
+thyrotrophic JJ
+Caruso NNP
+Manning NNP
+Kenzo NNP
+surplus NN JJ
+Co-cola NNP
+glance NN VB
+dabble VB
+nuisances NNS
+ATTORNEY NNP
+munching VBG
+railbikers NNS
+prefectures NNS
+upper-class JJ
+Pasadena NNP
+nobly RB
+speech NN
+Skidmore NNP
+Uniate NNP
+new-share JJ
+scotched VBD
+fixed-rate JJ NN
+Niedermaier NNP
+premonition NN
+SEAQ NNP
+collage NN
+Zumbrunn NNP
+dockside NN
+salesperson NN
+grotesque JJ
+barrier-island NN
+just-ended JJ
+Pavillion NNP
+depriving VBG
+medley NN
+gearboxes NNS
+imperfection NN
+p-aminobenzoic JJ
+suburbs NNS
+Kathe NNP
+Lyonnais NNP
+instancy NN
+Mac-Laren NNP
+two-valued JJ
+Lamberjack NNP
+stimulant NN
+cash-deferred JJ
+Babe NNP
+Hackel NNP
+fitfully RB
+multi-gear JJ
+archaeology NN
+compositional JJ
+fantods NNS
+Carnevale NNP
+best-preserved JJ
+Teraoka NNP
+Divinity NNP
+Wheeler NNP
+Sequent NNP
+bodily JJ RB
+sandy-haired JJ
+goggle-eyed JJ
+swap NN VBP VB
+transportation NN
+Ordnance NNP
+plodding VBG NN
+safe-conduct NN
+Hannover NNP
+Livery JJ
+technophiliac JJ
+cling VBP VB
+--combined VBN
+affectionate JJ
+Stanza NNP
+prepreg NN
+humble JJ VB
+improbably RB
+Forgive VB
+deep-pocket JJ
+JOB NN
+pseudo-patriotism NN
+choose VB VBP
+Hochman NNP
+blinkers NNS
+co-heads NNS
+PROFESSOR NN
+misunderstand VB
+livelihood NN
+.07 CD
+prow NN
+voodoo NN
+placid JJ
+Pettigrew NNP
+Rene NNP
+hackers NNS
+Disclosed VBN
+Sanyo NNP
+Mmmm UH
+concealing VBG
+Meeker NNP
+invincible JJ
+FCB\/Leber NNP
+ITC NNP
+Youngish JJ
+still-ravaged JJ
+breathalyzer NN
+Males NNPS
+crystallites NNS
+sepsis NN
+entertainments NNS
+servers NNS
+confict NN
+aberrant JJ
+Mondays NNPS NNP NNS
+Shuiski NNP
+Lindsay NNP
+Tenants NNPS
+sooty JJ
+friable JJ
+tinker VB
+fishy JJ
+Individuals NNS
+transferor NN
+southern-central JJ
+Experimentally RB
+gear NN VB VBP
+broil NN VB
+culmination NN
+double-A\ NNP JJ
+Red-Greens NNPS
+flight NN
+hijacked VBN VBD
+shareholder NN
+threetranche JJ
+movie-production NN JJ
+Science NNP NN
+Lotte NNP
+first-rate JJ
+portentous JJ
+back-pay NN
+prodding VBG NN
+heisted VBD
+moratorium NN
+Bureaus NNP NNPS
+trills NNS
+Benoit NNP
+Tutunik NNP
+nuclei NNS
+crepe JJ
+Forman NNP
+AIRCOA NNP
+kings NNS
+grind VBP NN VB
+SP1 JJ
+society-measured VBN
+Bricks NNS
+Yedisan NNP
+dramatists NNS
+HEAVY JJ
+oncologist NN
+king NN
+antiCommunist JJ
+Axa NNP
+rations NNS
+predictable JJ
+Cocoa NNP NN
+oscillated VBD
+hunted VBN VBD JJ
+autopsy NN VB
+Trend-following JJ
+beggar NN
+outperforms VBZ
+dame NN
+Laugh NNP
+effectinge VBG
+Iraqi JJ NNP
+Cameo NNP
+Recognition NNP NN
+unstaring VBG
+Height NN
+opposition NN
+contour-obliterating JJ
+trouncing NN
+hedgers NNS
+drizzling VBG JJ
+Rabkin NNP
+disappointments NNS
+pickaxe NN
+bulletin NN VB
+credential NN
+lookout NN
+etching NN
+Roederer NNP
+Korean JJ NNP
+Pitman-Moore NNP
+indiscriminating JJ
+AON NNP
+System-specific JJ
+Outgoing JJ
+threats NNS VBZ
+swift-footed JJ
+appointees NNS
+arrears NNS
+Ilotycin NNP
+thoughtfully RB
+underselling VBG
+egalitarianism NN
+clinically RB
+First NNP NNPS JJ LS RB
+your PRP$ PRP|VBP
+i.d NN
+Automotive NNP JJ
+Piedmont NNP
+eroded VBN JJ VBD
+self-designated JJ
+hotel-casino NN
+side-looking JJ
+reappeared VBD VBN
+empathize VB
+relented VBD VBN
+gay JJ
+Torquemada NNP
+plume NN
+Commandment NN
+licensed VBN VBD JJ
+Ugly JJ
+Results NNS NNP
+Mahathir NNP
+Nederlander NNP
+Fernberger NNP
+Matteson NNP
+keeps VBZ NNS
+Shortstop NNP
+pine-knot JJ
+tribesmen NNS
+Creating VBG
+undertaker NN
+epicyclical JJ
+Elegies NNP
+prepay VB
+Sorenson NNP
+unceremoniously RB
+exhume VB
+Bradlee NNP
+downer NN
+Staffing NNP
+blueprints NNS VBZ
+gull NN
+well-managed JJ
+Dominick NNP
+Ramathan NNP
+paranoia NN
+colder JJR RBR
+HNSX NNP
+Trapp FW
+load-shedding NNS
+ISI NNP
+newcasts NNS
+computer-oriented JJ
+users NNS
+Schnabel NNP JJ
+popping VBG
+Feedback NN
+Reconsider VB
+Kolb NNP
+inclosed VBN
+Teleport NNP
+largess NN
+Datatronic NNP
+Beltway NNP NN
+shrinks VBZ
+catlike JJ
+toxicity NN
+D*/NNP&B NN
+Investment-Grade NNP
+Serenissimus NNP
+Harcourt NNP
+Manfred NNP VBN
+overtaxed JJ VBN
+atom-like JJ
+Olle NNP
+exec NN
+pane NN
+phrasing NN
+toured VBD
+Longue NNP
+preambles NNS
+Kok NNP
+.12 CD
+Schmidl-Seeberg NNP
+Venezuelans NNPS
+larger-than-normal JJ
+jumped-up JJ
+impinge VB VBP
+attribute VBP NN VB
+marchin NN
+Mustang NNP NN
+productive JJ
+limited-scale JJ
+Pope NNP
+diehard JJ
+endocrinologists NNS
+sorting VBG NN
+minter NN
+Spalsbury NNP
+Datafleet NNP
+dire JJ FW
+Hump NNP
+ferries NNS
+fourth-fifths NNS
+abolition NN
+utilizes VBZ
+LAW NN NNP
+Quadrant NNP
+lobby NN VB
+crassest JJS
+Mojave NNP
+Reuters NNP NNS
+Malizia NNP
+Elvis NNP
+Pozen NNP
+elevated VBN VBD JJ
+Crouched VBN
+catapult VB VBP
+Seated VBN
+Whitlow NNP
+layette NN
+Hockett NNP
+smuggler NN
+syngeries NNS
+Dundee NNP
+northers NNS
+caves NNS
+reminding VBG
+Blind JJ NNP
+STERLING NNP
+perfunctorily RB
+packs NNS VBZ
+Keeler NNP
+orator NN
+propagandizes VBZ
+Bradsher NNP
+improvisation NN
+endrocrine JJ
+custom NN JJ RB
+Fierce JJ
+defense NN
+semiconductor-production NN
+tax-revenue NN
+Appendixes NNS
+Fellow NN JJ NNP
+averaged VBD VBN
+famous JJ NNS
+unchecked JJ
+clergymen NNS
+DAF NNP
+truculent JJ
+penalty-free JJ
+sleep VB NN VBP
+Liberal NNP JJ NN
+Jordanian JJ
+reconstituting VBG
+Zack NNP
+freemail NN
+cantons NNS
+ADMITTED VBD
+workability NN
+amalgamation NN
+eligibility NN
+Ancistrodon NNP
+polarities NNS
+Underhill NNP
+Bloomberg NNP
+quavered VBD
+Starch NNP NN
+object NN VBP VB
+Hoosier NNP
+Samsung NNP
+Indochina NNP
+Grady NNP
+smallpox NN
+Thieu NNP
+Caldera NNP
+Deterioration NN
+pride NN VBP
+blowout NN
+Azabu NNP
+broker-sold JJ
+transposed VBN
+Nagasaki NNP
+second-tier JJ
+troublemakers NNS
+Boutflower NNP
+Lintas NNP
+youth NN
+Dornan NNP
+Treating VBG
+grand-daughter NN
+Thirty-four CD IN
+prorate VB
+Soiree NNP
+pricks NNS
+daisies NNS
+winder NN
+Constitutional NNP JJ
+microscopic JJ
+theology NN
+undertakes VBZ
+smoke-stained JJ
+Telecharge NNP
+light-blue JJ
+trespass NN VBP
+Naples-born JJ
+Lottie NNP
+Partnerships NNS
+Cruelty NNP
+Niccolo NNP
+playin VBG
+yours PRP JJ
+differs VBZ
+numeral NN
+case-law NN
+disloyal JJ
+DnC NNP
+Event NN NNP
+frontiersmen NNS
+API NNP
+headsets NNS
+Begins VBZ
+Pertamina NNP
+bell-ringer NN
+descendant NN
+heartily RB
+Bow NNP
+Donna NNP
+univalent JJ
+unremittingly RB
+reverted VBD VBN
+Combis NNPS
+sonnets NNS
+enrollments NNS
+decapitalized JJ
+Ostlandske NNP
+Socialists NNS NNPS
+bankruptcy-law NN JJ
+inherently RB
+Pathans NNPS
+Constance NNP
+self-sacrificing JJ
+Fell NNP VBD
+Aegon NNP
+Alienus NNP
+grade-A JJ
+chap NN
+Nac NNP
+importer NN
+contaminate VB
+mots FW
+wide-ranging JJ
+virtuosos NNS
+licensee NN
+flowers NNS
+bottom-dwelling JJ
+fibers NNS
+Olympic NNP JJ NNPS
+Opponents NNS
+Walbridge NNP
+Ballinger NNP
+extraordinary... :
+virile JJ
+FADE VBP
+dandelion NN
+Weigand NNP
+Genocide NN
+Theodore NNP
+D.W. NNP
+ranged VBD VBN
+Show NNP NN VB
+Grandmothers NNP
+pan NN VB
+four-to-one RB
+Biblical JJ NNP
+heeded VBD VBN
+Margins NNS NNP
+freehand JJ RB
+innocence NN
+Advice NNP NN
+profit-taking NN NNS JJ
+bed-type JJ
+feuded VBD
+Gibby NNP
+installations NNS
+over-optimistic JJ
+Neuharth NNP
+Honeybee NNP
+protect VB VBP
+man-in-the-European-street NN
+tenant NN
+Stellar NNP
+computerrelated JJ
+price-conscious JJ
+added VBD JJ VBN
+Kaufhaus NNP
+Bales NNP
+Ottauquechee NNP
+disembarked VBD
+scathingly RB
+Chetta NNP
+heftier JJR
+phonies NNS
+Oresteia NNP
+Erlenborn NNP
+supersede VB
+intruding VBG
+head-butting JJ
+Pershing NNP VBG
+pre-Freudian JJ
+Laboratory NNP NN
+circa RB
+Eritrean JJ NNP
+bulking VBG
+Thursday NNP
+babyhood NN
+roused VBD
+Leiby NNP
+magnificently RB
+Brassnose NNP
+lengthily RB
+Confectionery JJ NNP
+largest JJS RBS
+prestidigitation NN
+Tahitian JJ NNP
+awfully RB
+kraut NN
+prick NN
+dominion NN
+small-game JJ NN
+Montbrial NNP
+braking VBG NN
+portrayed VBN VBD
+UAL NNP
+neckties NNS
+Hays NNP
+indignantly RB
+courtier NN
+Juge NNP
+strainin VBG
+Alta NNP
+snooping VBG
+hackwork NN
+cautious JJ
+rotations NNS
+patient-physician JJ
+gobblers NNS
+Tecumseh NNP
+sung VBN
+convoys NNS
+memorizing NN VBG
+Kauffmann NNP
+Blessed NNP VBN
+weather-royal JJ
+shareholder-owned JJ
+Assurance NNP
+Shvets NNP
+news-release NN
+Gundy NNP
+soaking VBG JJ NN RB
+Sulya NNP
+sweepers NNS
+Daolet NNP
+affected VBN JJ VBD JJ|VBN
+bodyweight NN
+SMALL-BUSINESS NN
+Commitment NNP
+botched VBN JJ
+coalfields NNS
+Advancement NNP
+sloe NN
+encircle VB
+Hondius NNP
+Platzer NNP
+denims NNS
+Mergers NNPS NNP NNS
+Lovie UH
+penny-ante JJ
+faithful JJ NN
+moans VBZ
+Topeka NNP
+Macao NNP
+Schantz NNP
+amalgamated VBN
+cylindrical JJ
+Shearn NNP
+ignited VBD VBN
+non-political JJ
+Petro NNP
+freighters NNS
+Chardonnays NNPS
+McGlynn NNP
+Pruett NNP
+AFRICA'S NNP
+founded VBN VBD
+chronically RB
+Fasken NNP
+sweets NNS
+beefing VBG
+Staining VBG
+handstand NN
+spender NN
+F.O. NNP
+multipart JJ
+double-B-plus JJ NN
+Provost NNP
+Holliday NNP
+upwardly RB
+associatively RB
+wily JJ
+Kerby NNP
+profit-oriented JJ
+Cabrera NNP
+forgit VB VBP
+Kwon NNP
+transmitter NN
+wanderers NNS
+narcotraficantes FW
+Ambrosiano NNP
+Notice NN VB NNP
+whisperings NNS
+lighthouses NNS
+outstrips VBZ
+stooping VBG
+fibrin NN
+reflecting VBG JJ
+Werke NNP
+omitted VBN VBD
+Helmet NN
+Cutbush NNP
+Respectability NN
+tiefes FW
+caliphs NNS
+Baldy NNP
+Filming NN
+shirt-sleeved JJ
+Arfeen NNP
+Transformers NNPS
+Microorganisms NNS
+Kinney NNP
+Pizzo NNP
+foresees VBZ
+Integra NNP
+substances NNS
+Shylock NNP
+unsloped JJ
+arbitrating VBG
+walrus NN
+severally RB
+mid-April NN
+curtness NN
+Staff NNP NN
+energy-producing JJ
+Fairchild NNP
+beneficence NN
+swooping VBG
+Molecular NNP
+incentive-bonus NN
+Barring VBG
+chemically RB
+Fortenbaugh NNP
+Tupelev-144 NNP
+imitating VBG
+Chennault NNP
+grandmasters NNS
+seminar NN
+farmwives NNS
+Shawomet NNP
+developers NNS
+languid JJ
+palest JJS
+they PRP
+thunderstorms NNS
+mow VB
+Sparta NNP
+thereupon RB
+formats NNS
+Dictator NNP
+originating VBG
+lure VB NN
+Pharmical NNP
+hangers NNS
+denominator NN
+Lubkin NNP
+albino NN
+beards NNS
+COLH NNP
+stimulates VBZ
+aeternitatis FW
+desktop NN JJ
+hawk-hatching JJ
+ADDED VBD
+USOM NNP
+Merrick NNP
+measuring VBG NN JJ|VBG
+cancer-related JJ
+Halpern NNP
+signifies VBZ
+Tupolev NNP
+ungentlemanly JJ
+Alperts NNS
+particulates NNS
+Oder NNP
+counter-offensive NN
+R.P. NNP
+corruptions NNS
+stinkin JJ
+Russo-American JJ
+morning NN
+Waite NNP
+execs NNS
+distributed VBN VBD JJ
+stairways NNS
+highway-relief JJ
+feeblest JJS
+panes NNS
+POLITICS NNS
+toughness NN
+Required VBN
+multiplied VBN VBD
+analytically RB
+Criterion NNP NN
+pain-relief NN
+Pool NNP NN
+debunk VB
+Grips NNS
+DEAE-cellulose NNP NN
+supervises VBZ
+clearing VBG JJ NN
+foamy-necked JJ
+sheaths NNS
+turned VBD VBN
+Accurate JJ
+ex-husband NN
+pouted VBD
+rev'rend NN
+agent NN
+adventure-based JJ
+Julius NNP
+X-Tru-Coat NNP
+frantically RB
+comparisons NNS
+awkwardly RB
+design-side JJ
+airplanes NNS VBZ
+House. NNP
+prudent-man JJ
+visionary JJ
+job-classification NN
+strapping JJ VBG NN
+mien NN
+Yakovlevich NNP
+Iraq NNP
+Calculated VBN
+Backseat NN
+warbler NN
+DuVol NNP
+knocked VBD VBN
+salvaged VBN
+H.G. NNP
+Greisler NNP
+Well-wishers NNS
+evenhanded JJ
+Wackenhut NNP
+Bharat NNP
+compliment NN VBP VB
+Daytime NNP
+Antarctic NNP
+saintliness NN
+Tilly NNP
+amidst IN
+Collyer NNP
+bombs NNS
+Box NNP
+Packing NNP VBG
+fearlast NN
+Laval NNP
+pardoned VBN VBD
+cloakrooms NNS
+comfy JJ
+Explained NNP
+Slivka NNP
+tackle VB VBP NN
+nw. NN
+Waertsilae NNP
+numbingly RB
+Celnicker NNP
+Meanwhile RB
+in-room JJ
+armpit NN
+treatments NNS
+artificiality NN
+Westland NNP
+Olivier NNP
+straightway RB
+specialty-machinery NN
+Image-processing NN
+buyback JJ NN
+elusive JJ
+Dugdale NNP
+augurs VBZ
+passages NNS
+weaker-performing JJ
+Eriskay NNP
+Bigg NNP
+Hixson NNP
+transplant NN VBP VB
+Wheaton NNP
+excavate VB
+Popes NNPS
+lobe NN
+teleological JJ
+.09 CD
+'Ma NNP
+penniless JJ
+warrants NNS VBZ
+Pets NNS
+Supplementing VBG
+window-film NN
+B'dikkat NNP
+saleslady NN
+briefing NN VBG
+Geraghty NNP
+fastenings NNS
+whooped VBD
+Godown NNP
+MacAllister NNP
+Sardi NNP
+Bourn NNP
+Oryx NNP
+Volkenstein NNP
+matches VBZ NNS
+fishpond NN
+Prevented VBN
+CLEARED VBD
+offal NN
+reconcile VB
+fountains NNS
+traceable JJ
+Steelmakers NNS
+guardian NN
+backbend NN
+no-man's-land NN
+court-appointed JJ
+insurgents. NNS
+sparrow NN
+Milling-Stanley NNP
+palatability NN
+Ungava NNP
+Deslonde NNP
+Gantos NNP
+exacts VBZ
+congressman NN
+entrenched VBN VBD JJ
+T.H. NNP
+Dr. NNP
+eye-machine NN
+Pizarro NNP
+MOST JJS
+grumbles VBZ
+rhinos NNS
+bakeware NN
+nightingale NN
+headcount NN
+Cross-margining NN
+refectories NNS
+papers NNS
+-Yr. NN
+Markovitz NNP
+non-linear JJ
+typecasting VBG
+Oratory NNP
+Cernuda NNP
+Hands-off JJ
+polyester NN
+EniChem NNP
+multifiber JJR
+mirror NN VBP VB
+Curtin NNP
+automaker NN
+Toa NNP
+subliterary JJ
+paranoid JJ
+stomach-belly NN
+objectors NNS
+Pentagonese NNP
+Edmiston NNP
+balloting NN
+merrymaking NN
+Georges NNP
+Rivoli FW
+Announced JJ
+Cutting VBG NNP NN
+urbane JJ
+Khivrich NNP
+bass NN
+gaze NN VB VBP
+asphalt-hard JJ
+loved VBD VBN JJ
+DeMunn NNP
+tuxedo-rental JJ
+dress NN VBP VB
+Expectations NNS NNP NNPS
+paean NN
+satiety NN
+abundance NN
+fundamentally RB
+pseudo-sophistication NN
+styled VBN VBD JJ
+semiconductor-depreciation JJ
+Schulman NNP
+militia NN
+outing NN
+disproportionately RB
+oncogene NN
+short JJ NN RB VB
+mitigation NN
+northwest RB NN JJS JJ
+power-driven JJ
+Ryc NNP
+Cantoni NNP
+disheveled JJ
+towels NNS
+plan NN VB VBN VBP
+self-completion NN
+Rabbits NNS
+Steckles NNP
+Marcella NNP
+Burly JJ
+crime-infested JJ
+condemned VBN JJ VBD
+blanket NN VBP NN|JJ JJ VB
+ft. NN NNS
+Boarts NNP
+sagged VBD VBN
+Goetz NNP
+explanation NN
+Czechoslovak-made JJ
+credulousness NN
+illuminating JJ VBG
+Alysia NNP
+Tropicana NNP
+disquisition NN
+ADVANCED NNP
+Clearasil NNP
+Lovelace NNP
+please VB UH VBP
+tyme NN
+appetites NNS
+Soeren NNP
+Brandon NNP
+keelson NN
+Kinkaid NNP
+goatee NN
+suppression NN
+Ingrassia NNP
+lunged VBD
+proprietorships NNS
+cross-border JJ
+eulogy NN
+meminisse FW
+costume NN JJ
+well-prepared JJ
+Altairians NNPS
+thyrotrophin NN
+adulterers NNS
+THC NNP
+Messrs NNPS
+campgrounds NNS
+Musil NNP
+clockwise RB
+Liberation NNP
+airlift NN
+SEAT NNP
+asses NNS
+B-flat NN
+Names NNS NNPS
+Anabaptist NN NNP
+marinade NN
+lemmas NNS
+unreal JJ
+Mihaly NNP
+more-informed JJ
+equipping VBG NN
+SMD NNP
+Fogg NNP
+Traitor NN
+flash NN VBP JJ VB
+Coolidge NNP
+three-story JJ
+bazaars NNS
+bayonets NNS
+Pakistan NNP
+pro-enterprise JJ
+Ramcharger NNP
+distribution NN
+shambles NN
+Brittan NNP
+Sneed NNP
+expectantly RB
+clipboards NNS
+worthiest JJS
+comparability NN
+converging VBG
+ALBERTA NNP
+Heywood NNP
+Becker NNP
+Stronger JJR NNP
+conspicuously RB
+hesitantly RB
+Intermarco NNP
+bottle NN VB
+antecedent NN
+accounted VBD VBN
+Gabriela NNP
+to-morrow RB
+Walters-Donaldson NNP
+X-chromosome NN
+takeout NN
+up-front JJ
+tunnel NN VBP
+noncriminal JJ
+helpless JJ
+Holzfaster NNP
+teammates NNS
+Arianist NNP
+Terrours NNS
+appeasement NN
+dollar-yen JJ
+gee UH
+CDT NNP
+factoring NN VBG
+Outside IN JJ NN RB
+busloads NNS
+Truesdell NNP
+runoff NN
+Weapons NNP NNPS
+earth-touching JJ
+strawberries NNS
+undeniable JJ
+TALENT NN
+symbolic JJ
+begot VBD
+Manzella NNP
+junk-financed JJ
+halting VBG JJ
+Fjelstad NNP
+tormenters NNS
+microwave NN
+Staffs NNS
+Huxley NNP
+exhausting VBG JJ
+socialistic JJ
+Storeria NNP
+castle-themed JJ
+Fears NNS VBZ
+merit NN VB VBP
+throwed VBD
+ultramarine NN
+char VB
+morale-enhancing JJ
+cutglass JJ
+confounded VBD VBN
+peripheral JJ
+Incident NN
+permissibility NN
+Zacks NNP
+swarm NN VB
+Planters NNP
+coded VBN JJ
+demography NN
+Eliades NNP
+recoiled VBD
+`` ``
+elucidations NNS
+Practices NNPS NNP NNS
+idiot JJ NN
+inactivation NN
+strictly RB
+Monday NNP
+confederations NNS
+Cigna NNP
+Dixiecrat NNP
+coast NN
+two-track JJ
+WOULDN'T NNP
+whirl NN VB VBP
+Bureau NNP
+formed-tooth JJ
+DeVon NNP
+outfitting VBG
+backlots NNS
+Bloomingdales NNP
+textual JJ
+Griggs NNP
+pilfering VBG
+sladang NN
+Schweiker NNP
+capitulation NN
+COPPER NN NNP
+incompetents NNS
+undiversifiable JJ
+topgallant NN
+proximate JJ
+imbecility NN
+radiopasteurization NN
+dashed VBN JJ VBD
+Reductions NNS
+spitfire NN
+non-brain JJ
+Roughly RB
+protagonist NN
+undercapitalization NN
+zaiteku FW
+Rozella NNP
+Mushr NN
+Tegal NNP
+tripartite JJ
+calibration NN
+fairy-tale NN
+Traps NNS
+Boy NN NNP UH
+low-ball JJ
+revivalism NN
+enforcement NN
+Burgesses NNS
+opportunity NN
+five-row JJ
+fixedrate JJ NN
+SHORT JJ NNP
+Zeiss NNP
+Oddy NNP
+Morgenzon NNP
+filibusters NNS
+convenience NN
+Foreseeing VBG
+world-weary JJ
+Brannigan NNP
+pals NNS
+self-correcting JJ
+Kurtzig NNP
+re-examines VBZ
+Nae UH
+misquoted VBN
+seed NN VBN
+Stovall NNP
+preradiation NN
+musical JJ NN
+However RB RBR WRB
+Pediatricians NNS
+Macare NNP
+linden NN
+Maddalena NNP
+allergic JJ
+Aguirre-Sacasa NNP
+humorous JJ
+'Son NN
+Goldston NNP
+Margin NN
+Pons NNP
+Tuchman NNP
+Rundfunk-Sinfonie-Orchester NNP
+unorthodox JJ
+lauded VBD VBN
+thundering VBG JJ
+dips NNS
+Spy NNP
+irritate VB
+Seagate NNP
+collision-damage NN
+circumstantial JJ
+Wham UH
+outstandingly RB
+Lion NNP
+Korea-basher NN
+sleepy JJ
+Uhl NNP
+ma'am NN UH
+flashlights NNS
+emphatic JJ
+Kagakushi NNP
+goose NN
+compounding VBG NN
+pap NN
+more-hazardous JJ
+graded VBN
+order-entry JJ NN
+Caliphobia NNP
+leafmold NN
+Coney NNP
+ImmunoGen NNP
+Compromises NNS
+Florentine NNP JJ
+order-taker NN
+Forbidden NNP
+Racquet NNP
+bluebush NN
+greater JJR RBR
+thermodynamically RB
+Michaelson NNP
+Telemunchen NNP
+talk-show NN JJ
+still-building JJ
+shelved VBD JJ VBN
+hewn VBN
+Coulomb NNP
+trickster NN
+half-witted JJ
+Lemont NNP
+chorused VBD
+throwback NN
+slog VB
+centerpiece NN
+mass-murderer NN
+publicizing VBG
+democratize VB
+menstrual JJ
+commissioners NNS
+Koito NNP
+trade-liberalizing JJ
+Mussett NNP
+re-animates VBZ
+mineral NN JJ
+loan-forgiveness NN
+Wildwater NNP
+Rahway NNP
+Joint NNP
+meager JJ
+slanderous JJ
+verb NN
+Malia NNP
+impersonated VBN
+truck-building JJ NN
+Job-Bias JJ
+Eskimos NNPS
+suede NN
+mathematically RB
+Gris NNP
+Kissin NNP
+Pikeville NNP
+CEO NNP NN
+Silk NNP
+Trastevere NNP NN
+Cadam NNP
+progressivity NN
+two-fold JJ
+peeves NNS VBZ
+thick JJ NN RB
+propane NN
+listlessly RB
+stewards NNS
+narrative NN JJ
+Bernz-O-Matic NN
+laminating VBG
+dribble NN
+Backup JJ
+Across IN NNP
+driveways NNS
+IV-drug-free JJ
+Flesher NNP
+reconnoiter VBP
+asset NN
+Angotti NNP
+Interactive NNP JJ
+zappers NNS
+DBC NNP
+broke VBD VBN JJ RB VB
+LDI NNP
+Circus-Circus NNP
+three-to-five-page JJ
+Scarborough NNP
+Fenner NNP
+nonessential JJ
+largest-ever JJ
+Cozying VBG
+bangish JJ
+crook NN
+Weapon NNP
+trans-Canadian JJ
+Interview NNP VB
+jurisdiction NN
+flecked VBN
+mid-1990s NNS CD
+self-multilation NN
+machine-vision NN
+Abstraction NNP NN
+no-lose JJ
+Lint NNP
+Otherwise RB
+Sugarman NNP
+Air-traffic NN
+homophobia NN
+Fergusson NNP
+wider-than-normal JJ
+Iranians NNPS
+voir FW
+Kegler NNP
+four-quarter JJ
+Davenport NNP
+ill-suited JJ
+contraptions NNS
+virtually RB IN JJ
+CHEWING VBG
+rads NNS
+French-Canadian NNP
+Intriguing JJ
+Rawleigh NNP
+demonic JJ
+Zooey NNP
+enlarged VBN JJ VBD
+Domestic JJ NNP
+wake NN VBP VB
+Shortly RB
+UCC NNP
+Juarez NNP
+floorshow NN
+incapacitating JJ
+downturn NN
+houseful NN
+recovers VBZ
+proteges NNS
+unproved JJ
+COAST NNP
+Teen NNPS NNP
+Eskimo NNP
+negotiators NNS VBZ
+BART NNP
+once-unthinkable JJ
+Mel NNP
+Preliminary JJ
+Stalinist JJ NN NNP
+implements NNS VBZ
+dial-a-banker JJ
+Warner-Lambart NNP
+coordinate VB JJ NN VBP
+schemers NNS
+Guillermo NNP
+Sidorenko NNP
+swat NN
+Apparatus NN
+deliriously RB
+Contras NNPS NNP NNS
+Stag NNP
+Shevardnadze NNP
+editorial NN JJ
+Vogelstein NNP
+fine-arts NNS
+viewers NNS
+groans VBZ
+home-owners NNS
+schmumpered VBD
+Harco NNP
+Assuredly RB
+Ihmsen NNP
+impasse NN
+troopship NN
+Jesuits NNPS
+Teresa NNP
+certificate-of-need NN
+AREA NN
+UDAG NNP
+sympathetically RB
+Millkens NNP
+greate NN
+hops VBZ NNS
+Southern NNP JJ NN
+Jeeps NNS
+escapees NNS
+Visiting VBG NNP
+initials NNS
+Kon NNP
+Pesaro NNP
+Zafris NNP
+HOUSTON-CALGARY NNP
+Medialink NNP
+astrology NN
+interior-decorating JJ
+turboprops NNS
+Cheung NNP
+Teslik NNP
+Emshwiller NNP
+Mode NNP
+Anthropologists NNS
+two-component JJ
+expandable JJ
+Piscataway NNP
+Ahmad NNP
+Society NNP NN
+Lionel NNP
+Lomax NNP
+trials NNS
+worrying VBG JJ
+month-long JJ
+co-lead JJ
+Antoinette NNP
+Feeding NNP
+non-merger JJ
+syndicators NNS
+CDU NNP
+Roberto NNP
+RENAISSANCE NNP
+milieu NN
+blossoms NNS
+Maniago NNP
+corn-buying JJ
+insurance-premium-finance JJ
+'Are VBP VB
+Comany NNP
+cashiers NNS
+cleansed VBD VBN
+Daddy NNP
+proximal JJ
+deserved VBD VBN
+Kimbell-Diamond NNP
+caseloads NNS
+pegboards NNS
+shaved VBN VBD
+sternly RB
+endometriosis NN
+sores NNS
+ex-convict NN
+racy JJ
+Stacy NNP
+engineering-design JJ
+chipping VBG NN
+cone NN VB
+misimpressions NNS
+once-prevailing JJ
+unmodified JJ
+Owing RB
+wipe VB VBP
+anthropology NN
+valuation NN
+grassland NN
+Confirming VBG
+Farberware NNP
+newsstands NNS
+repercussions NNS
+nontrade NN
+Soviets NNPS NNP NNS
+mugged VBN
+Germany NNP
+spurned VBN VBD JJ
+benefit NN VB VBP
+By-word JJ
+shortcuts NNS
+Upgrades NNS
+APPB NNP
+high-strung JJ
+male-only JJ
+dissents NNS
+prohibits VBZ
+unbeknownst JJ
+Eastate NNP
+low-frequency JJ
+methyl NN
+court NN VBP VB
+associations NNS
+table-tennis NN
+Thrall NNP
+Orrie NNP
+SIGNAL NN VB
+remaining VBG JJ
+thespians NNS
+Hacienda NNP
+high-legged JJ
+computer-security JJ
+Migrant NNP
+twice-yearly JJ
+sectors NNS
+hard-cover NN
+Congo NNP NN
+DPX\ NNP
+capability... :
+automated-teller-machine JJ
+assert VB VBP
+expounded VBD VBN
+disc NN
+psychic JJ NN
+reproducing VBG
+two-class JJ
+scientifically-trained JJ
+influence-peddling NN JJ
+middle-level JJ
+proposal NN
+corrupted VBN
+fiance NN
+life-contracts JJ
+APMS NNP
+waterproof NN
+astuteness NN
+metallurgy NN
+recruited VBN VBD
+fractional JJ
+Kanter NNP
+duplicative JJ
+Gaafer NNP
+entrenchment NN
+waked VBD VBN
+unearthed VBN VBD
+agents NNS
+denotes VBZ
+warm-up NN
+MOVE NN
+vesting VBG
+Ltee NNP
+chaps NNS
+annoyance NN
+symphonic JJ
+suttee NN
+relationship NN
+Pont NNP NN
+Spherical JJ
+railway NN
+drug-law NN
+Robeson NNP
+dialects NNS
+Sutherland NNP
+son-of-a-bitch NN
+low-value JJ
+Closely RB
+skins NNS
+counterterror JJ
+AIEE NNP
+Whitney NNP
+convent NN
+MGM\ NNP
+Monde NNP
+Portrait NN JJ
+Anne-Marie NNP
+Donnay NNP
+Psychiatric NNP
+princes NNS
+resuspended VBN VBD
+Elimination NN
+R&D NN
+smarts VBZ
+Bailly NNP RB
+overharvesting NN
+sleet NN
+snickers NNS
+Barnett NNP
+grade NN VB
+Weekend NNP NN
+DISTRESSFUL JJ
+Papasan NNP
+.270 CD
+fact NN
+capital-assets NNS
+copolymers NNS
+Cities\/ABC NNP
+gulp NN
+Judy NNP
+discolors VBZ
+Wade-Evans NNP
+Stifel NNP
+universally RB
+gas-glass NN
+test-marketing VBG JJ NN
+overbuilding NN
+COME VBN
+ARA NNP
+Gouldoid JJ
+Designed VBN
+stub NN VB
+dependable JJ
+dinghy NN
+encompassing VBG
+crotchety JJ
+ITG NNP
+touchdown NN
+Vinnin NNP
+burlap NN
+rapprochement NN
+achievable JJ
+dexamethasone NN
+edited VBN VBD
+gobble NN VB
+Robert NNP
+resettle VB
+receptacle NN
+Stadt NNP
+accompaniments NNS
+Kupor NNP
+deconstructed JJ
+rigger NN
+Bardagy NNP
+capability NN
+whaddya WP
+Defeat NNP
+canted JJ
+Supervisors NNPS NNP
+contender NN
+migrated VBN VBD
+near-market JJ
+Sill NNP
+state-provided JJ
+Ransy NNP
+Becket NNP
+credit-enhancement NN
+sheiks NNS
+disaster-prone JJ
+Emission NN
+Bombardier NNP
+obsessive-compulsive JJ
+Similarities NNS
+just-completed JJ
+precaution NN
+Horace NNP NN
+Schmalensee NNP
+Battalion-2000 NN
+Renault NNP
+misleading JJ VBG
+gumming VBG
+dominates VBZ
+armor NN
+carrier-based JJ
+drawn-back NN
+bashing JJ VBG NN
+Finish VB
+Strum NNP
+Prudential NNP JJ
+Hemisphere NNP
+screed NN
+gleam NN VBP
+Timbuktu NNP
+arcs NNS
+Sansome NNP
+trudged VBD VBN
+sensitivity NN
+stickers NNS
+EMPIRE NNP
+sub-assemblies NNS
+Samuelson NNP
+Merom NNP
+excessive JJ
+On-Site NNP
+unaccounted JJ
+Thevenot NNP
+transparency NN
+once-prestigious JJ
+dereliction NN
+LBO-related JJ
+Axe NNP
+homophobic JJ
+liquidators NNS
+Shows NNS VBZ
+permanent-looking JJ
+fluctuating VBG
+Digges NNP
+Shuttle NNP NN
+bugs NNS VBZ
+Grants-in-aid NNS
+microns NNS
+Identifying VBG
+inter-bank JJ
+Reichenberg NNP
+fast-selling JJ
+Assuming VBG NNP
+believable JJ
+Katie NNP
+Closen NNP
+NATO NNP
+OFFENSIVE JJ
+verifiers NNS
+Anglo NNP
+M.L. NNP
+Graceful JJ
+pained JJ VBD VBN
+left VBN JJ NN RB VBD
+von NNP
+Milgrim NNP
+outcasts NNS
+Ear NNP NN
+contracted-for JJ
+sugary JJ
+morning-session NN
+plank NN
+fluctuates VBZ
+fascinated VBN JJ VBD
+mettlesome JJ
+Organification NN
+Vermejo NNP
+shoppers NNS
+Siniscal NNP
+arbitrageur NN
+Rye NNP NN
+Tackles VBZ
+Hama-style JJ
+product-design JJ
+Chiusano NNP
+witchy JJ
+CGE NNP
+IRA-Plus NN
+conversely RB
+Interhome NNP
+Worthy NNP
+Slyke NNP
+demon-ridden NN
+sub-zero JJ
+SWAO NNP
+Reproduction NNP
+Jittery JJ
+uncomplicated JJ
+infractions NNS
+prompt VB JJ VBP
+incanted VBD
+magnifies VBZ
+incalculable JJ
+Elmer NNP
+writedown NN
+COURT NNP NN
+dud NN
+Discussed VBN
+Organizations NNP NNPS NNS
+torn VBN JJ
+consortia NNS NN
+realtor NN
+counter-tenor NN
+bow-tied JJ
+Riben NNP
+Coaching NN
+gamut NN
+plummetted VBD
+Wellcome NNP
+Waste NNP NN VB
+Blade NNP
+procreate VB
+Federal-Tiger NNP
+Landscape NNP
+miscount NN
+Berol NNP
+Shantytowns NNS
+NIH-appointed JJ
+THE DT NNP
+C.C. NNP
+black-owned JJ
+interest-only JJ
+SECOND JJ
+Pyongyang NNP
+Wegener NNP
+Hurwitt NNP
+Steroids NNS
+Foreign-exchange JJ NN
+waitress NN
+junta NN
+Berettas NNS
+trapeze NN
+queerer JJR
+high-topped JJ
+mid-fifties NNS
+Uniqueness NNP
+chat NN VBP VB
+Loans NNS NNP
+co-develop VB
+Junius NNP
+Dare-Base NNP
+Byronism NN
+Nearness NN
+ROSTY'S NNP
+expanded VBN VBD JJ
+trumpeter NN
+eight-month JJ
+decorations NNS
+Honiss NNP
+join VB VBP
+freezing VBG JJ NN
+BACKED VBD
+fattening VBG NN
+permanently RB
+Isfahan NNP
+believed VBD VBN
+psychobiology NN
+slovenliness NN
+bronzes NNS
+.16 CD
+bundled VBN
+snow-white JJ
+compassionately RB
+leverage NN VB
+Juet NNP
+two-fisted JJ
+Sentencing NN VBG
+weaponsmaking NN
+MAKING VBG
+Ealy NNP
+fiberglas NNS
+Stupid JJ
+inter-tribal JJ
+Sorkin NNP
+Billock NNP
+Ungermann-Bass NNP
+overburdened VBN JJ VBD
+sublimate NN VB
+thoughtful JJ
+psyllium NN
+horse-trading NN
+parboiled VBD
+violating VBG
+Khrush NNP
+unkind JJ
+plague-sized JJ
+quirking VBG
+embroideries NNS
+Altar NNP
+intra-city NN
+anastomoses NNS VBZ
+Twenty-eight CD
+trap NN VB
+Champlain NNP
+cost-cutting JJ NN
+Elvador NNP
+cosmology NN
+modicum NN
+Kostelanetz NNP
+Vandringsar NNP
+Bambi NNP
+mowed VBN
+Uhhu UH
+pelting JJ VBG
+Flower NNP
+replying VBG
+relaxed VBN JJ VBD
+Debenture NN NNP
+electromagnetic-test NN
+Geech NNP
+position... :
+Alusik NNP
+heart-disease NN
+tackling VBG
+palette NN
+Canellos NNP
+guardianship NN
+KRAFT'S NNP
+nonpareil JJ
+taxiing VBG
+Asheville NNP
+Rochford NNP
+counterclaims NNS
+hesitance NN
+THIDIU NNP
+Brougham NNP
+advertised VBN JJ VBD
+Dey NNP
+specialty-store NN
+paid-in JJ
+downstairs NN RB
+globe NN
+Prescribed VBN
+investment NN JJ
+foot-thick JJ
+blatant JJ
+Hedison NNP
+Niarchos NNP
+geo-political JJ
+Torquato NNP
+marinated VBN
+Format NN
+pricetags NNS
+Bowie NNP
+Vax NNP
+during IN
+Bahrain NNP NN
+adulation NN
+sunk VBN VBD
+intima NN
+battled VBD VBN
+Presiding NNP
+foul-smelling JJ
+Newfoundland NNP
+prolusion NN
+thunders VBZ
+Apple NNP NN
+wayside NN
+Filtertek NNP
+brewed VBN
+Black NNP JJ NN
+Reno-Lake NNP|NP
+proofread VBD
+Yamashita NNP
+restaurant NN
+grandmotherly JJ
+violate VB VBP JJ
+experiencing VBG
+over-produce VB
+cypress NN
+Trevino NNP
+Norment NNP
+outfought NN
+Dunlaevy NNP
+Faulknerian JJ
+Nuttle NNP
+APM NNP
+wrangling VBG NN
+courtyards NNS
+bulk-buying JJ
+ServiceMaster NNP
+A$ $
+IRS NNP
+DuPont NNP
+consumer-advocacy JJ
+week-one JJ
+Harnischfeger NNP
+COFFEE NN NNP
+Gabriele NNP
+Safra NNP
+puttered VBD
+Goodyear NNP VBP
+regulating VBG NN
+fly-dotted JJ
+chapel-like JJ
+Karcher-Everly NNP
+says VBZ NNS
+shudders NNS
+Literature NNP NN
+flask NN
+railing NN
+commercial-products JJ
+US45.9 CD
+bearer NN
+dunked VBD
+lifters NNS
+world-commerce JJ
+Peterbroeck NNP
+BMA NNP
+immensity NN
+dross NN
+Chairs NNS
+loan NN VB
+fifty-third CD
+barometers NNS
+Byrd NNP
+Bergelt NNP
+co-presidents NNS
+Ryan NNP
+glean VB
+shuddering VBG JJ
+sulfur NN
+malignancies NNS
+Mouth NNP
+Bovard NNP
+mid-flight RB
+show\ NN
+jellies NNS
+about-face NN
+dockyards NNS
+revolting JJ
+glitzy JJ NN
+creased VBN
+Fleury NNP
+par NN FW IN JJ
+beige JJ
+re-explore VB
+top-to-bottom JJ
+tentative JJ NN
+Catz NNP
+stolid JJ
+backfire VB VBP
+spans VBZ NNS
+intensification NN
+Kohnstamm NNP
+doctor-oriented JJ
+Delay NNP NN
+Charter NNP NN
+accompanist NN
+copper-rich JJ
+cottonmouth NN
+hard-liner NN
+ShareData NNP
+Muggeridge NNP
+voice-over JJ
+longsuffering JJ
+Wenceslas NNP
+mortally RB
+Canal NNP NN
+Otero NNP
+unimaginable JJ
+why WRB
+Redland NNP
+motto NN
+Expressionism NNP
+warhead NN
+Georgia NNP
+Populaires NNP
+embroidered VBN
+Mijbil NNP
+frequent-flyer NN
+fin NN
+Rayon NNP
+Takoma NNP
+imported-food NN
+asserts VBZ
+dance NN VB VBP
+gadget NN
+Handicapped NNP
+Saklad NNP
+petroleum-related JJ
+Darkhorse NNP
+complete JJ VB VBP
+Fraas NNP
+ups-and-downs NNS
+ill-conceived JJ
+trammel VB
+huskily RB
+Zukin NNP
+Givaudan NNP
+operators NNS
+open-ended JJ
+still RB JJ NN VB
+enchantment NN
+Tamerlane NNP
+Meridian NNP
+Illustrated NNP
+domponents NNS
+Attrition NN
+Secutities NNPS
+charismatic JJ
+animosities NNS
+Christian NNP NNS JJ NN
+celebrated VBD JJ VBN
+Stage NNP NN
+subject NN JJ VB NN|JJ
+ghettos NNS
+cubbyholes NNS
+nitrocellulose NN
+Azerbaijan NNP
+Offer VB VBP NN
+economical JJ
+frisky JJ
+calico JJ NN
+conference NN
+Southmark-supported JJ
+overseeing VBG
+Approximately RB
+GEnie NNP
+partisanship NN
+UAP NNP
+interior-furnishings NNS
+typhus NN
+expository JJ
+purpose NN
+specified VBN JJ VBD
+Applause NN
+steepest JJS
+CELTICS NNPS
+replicate VB
+Heiser NNP
+societyonly RB
+non-com NN
+Bureaucrats NNS
+lemonade NN
+Bhagat NNP
+B-cell NN
+dealing VBG NN
+Renk NNP
+Gursel NNP
+reliability NN
+applauded VBD VBN
+smokers NNS
+Lassie NNP
+undone VBN JJ
+Micron NNP
+Broder NNP
+rummaging JJ
+exceeded VBD VBN
+trenchermen NNS
+mustard NN JJ VB
+beehive NN
+hungrier JJR
+due JJ IN NN RB NNS
+despairingly RB
+Cooch NNP
+grillwork NN
+plunder NN VB
+BORLAND NNP
+intimal JJ
+Calais NNP
+Warner NNP
+highboy NN
+Cress NNP
+pre-18th-century JJ
+Hosokawa NNP
+Sheckley NNP
+Ideally RB
+interest-rate-type JJ
+bottomless JJ
+Sparling NNP
+synthetical JJ
+Rochdale NNP
+Nuggets NNPS
+aerosols NNS
+five-year-old JJ
+Men NNS NNP NNPS NN
+THF NNP
+Sinton NN
+double-whammy NN
+FmHA NNP
+inning NN
+strove VBD
+sloshing VBG
+Gentile-Jewish NNP
+paucity NN
+contusions NNS
+gaining VBG
+Modigliani NNP
+endemic JJ
+retroviral JJ
+Perier NNP
+Pa. NNP
+drahve VB
+warranty NN
+pungent JJ
+plastically RB
+by-laws NNS
+levels NNS VBZ
+wiped VBD VBN
+Connectables NNP
+grandeur NN
+microcomputer NN JJR
+Renfro NNP
+responded VBD VBN
+ribald JJ
+vertebrates NNS
+Barrio NNP
+Fanny NNP
+Margenau NNP
+half-inch JJ
+syringa NN
+ebbing VBG
+properly RB
+electrocardiogram NN
+restful JJ
+Graft NN
+penny-stock JJ NN
+grapefruit NN NNS
+structuring VBG NN
+temperately RB
+programmer NN
+trilogy NN
+presumptuous JJ
+Lesley-Anne NNP
+deducted VBN VBD
+LaBoon NNP
+Molly NNP
+customer-driven JJ
+this.... :
+pluralistic JJ
+Norske NNP
+Inferential NNP
+junk-LBO JJ
+Fischer NNP
+begged VBD VBN
+expertly RB
+ubiquity NN
+reinforced-fiberglass JJ
+master NN JJ VB JJR
+cataloging VBG
+YOUR JJ PRP$
+wit NN
+Rozelle NNP
+Aggressively RB
+riveted VBN VBD
+allgedly RB
+Territory NNP
+tour\/theme NN
+relaxation NN
+Newgate NNP
+molton NN
+illumination NN
+watchings NNS
+dippy JJ
+run-from-above JJ
+Blistered VBN
+grandson NN
+Theological NNP
+fumed VBD
+sympathize VBP VB
+finely-spun JJ
+bowed VBD VBN JJ
+bituminous JJ
+RMd NN
+unwomanly RB
+lethargic JJ
+bewhiskered JJ
+Bekaa NNP
+Clothing NN NNP
+stock-price JJ NN
+frauds NNS
+croon VB
+Schmetterer NNP
+three-mile JJ
+toothbrush NN
+Memorial NNP
+Stjernsward NNP
+Covington NNP
+craft-industrial JJ
+edifice NN
+marshlands NNS
+Mitsuru NNP
+soft-currency JJ
+Calabria NNP
+microfossils NNS
+turrets NNS
+Vizas NNP
+adventuresome JJ
+stud NN
+Parkinson NNP NNPS
+philosophies NNS
+quarrymen NNS
+chase NN JJ VB VBP
+warehouse NN VB
+Delco NNP
+wigmaker NN
+Receiving VBG
+Zivley NNP
+restudy NN
+multivalent JJ
+Truell NNP
+hierarchy NN
+spotless JJ
+Diario NNP
+intra-company JJ
+monasticism NN
+transcribe VB VBP
+ROY NNP
+impatiently RB
+soothsayers NNS
+rehear VB
+pullbacks NNS
+Roustabouts NNPS
+Peralta NNP
+issues-such JJ
+Examples NNS
+merriest JJS
+eyeballs NNS
+Valerie NNP
+miasmal JJ
+fearful JJ
+radar-threat JJ
+Pherwani NNP
+Schedules NNS
+transplantation NN
+uncovering VBG
+Harriton NNP
+scholastic JJ NN
+stalks NNS VBZ
+ballistic JJ
+Canam NNP
+EXBT NNP
+internationally RB
+computer-operated JJ
+Duvalier NNP
+titanium NN
+Geology NNP
+hedgehogs NNS
+seizes VBZ
+geographically RB
+fools NNS
+Canadian-dollar JJ
+Liu NNP
+P.S NN
+electrophoresis NN
+Danes NNPS NNP NNS
+Architecture NNP
+ecumenists NNS
+drawback NN
+ARCO NNP
+servitors NNS
+Blimp NNP
+rage NN VB
+Thevenow NNP
+barn-burner NN
+Findings NNS
+overexploitation NN
+rotunda NN
+Ephesus NNP NN
+pay-hike JJ
+maskers NNS
+Guttman NNP
+Significance NN
+AmeriTrust NNP
+househld JJ
+arbitration NN
+governmentally RB
+Kerstin NNP
+Lefty NNP
+Mobs NNS
+ongoing JJ
+white JJ NN
+Longinotti NNPS
+entirely RB
+warning-signals NN
+Maxentius NNP
+Toros NNP
+infernal JJ
+aids NNS VBZ
+Eurodebentures NNS
+Rorer NNP
+programmes NNS
+Falling VBG NNP
+Mathilde NNP
+pas FW
+flapping VBG JJ
+demolition NN JJ
+Hellfire NNP
+Did VBD
+drains NNS VBZ
+deceit NN
+four-stock JJ
+Macari NNP
+inviolable JJ
+Silberman NNP
+protege NN
+somber JJ
+talismanic JJ
+origination NN
+Bowl NNP
+Curtis NNP
+Stitched VBN
+above-mentioned JJ
+foreign-debt NN JJ
+Hornaday NNP
+Bursting VBG
+distorted VBN VBD JJ
+Kooning NNP
+oft RB
+enlightening VBG JJ
+immortal JJ
+Textron NNP
+guidelines NNS
+Axelrod NNP
+region-by-region JJ
+aeromedical JJ
+paeans NNS
+Kurds NNPS
+Determined VBN
+Chrome NNP
+Handle VB
+vomiting VBG NN
+hose NN VB
+wins VBZ NNS
+Diprivan NNP
+clarifying VBG
+audience NN
+jury-duty NN
+fiscal-agent NN
+fellers NNS
+off-budget JJ NN
+Schlumberger NNP
+Lama NNP
+mounting VBG JJ NN
+colonial JJ NN
+scornfully RB
+Gabrielle NNP
+Advocates NNS NNPS
+Carlin NNP
+counterpart NN JJ
+Barkley NNP
+glamorous JJ
+Crouch NNP
+Yosemite NNP
+Financials NNPS NNP
+Eritrea NNP
+gully NN
+Toe NNP
+Crest NNP
+sticker NN
+clomped VBD
+Handled VBN
+distributer NN
+fullness NN
+pyrometers NNS
+affectations NNS
+bushels NNS
+Gilchrist NNP
+toneless JJ
+Alternatives NNP
+weight-control JJ
+obeisance NN
+Vandervoort NNP
+Know VB VBP NNP
+Eat NNP VB
+Weymouth NNP
+rile VBP VB
+Gardens NNPS NNP NNS
+Ouellette NNP
+comin VBG NN
+cave-men NNS
+hollows NNS
+life-changing JJ
+bossman NN
+shorts NNS
+HUNTLEY NNP
+Design NNP NN
+sages NNS
+departments NNS
+delver NN
+unmasks VBZ
+Blasphemers NNS
+Boorse NNP
+Cosmetics NNS NNP NNPS
+collectible JJ
+gobbles VBZ
+Benackova NNP
+Evangelical JJ NNP
+highlighting VBG
+Burns NNP
+Wyndham NNP
+KIM NNP
+entrants NNS
+Conalco NNP
+single-domain JJ
+spring-joints NN
+midst NN
+preamble NN
+CONVICTS VBZ
+Jewell NNP
+Dandy NNP
+pantomimed VBD
+Curry NNP
+Ecco NNP
+Lusignan NNP
+smoothed-muscled JJ
+good-humored JJ
+Baar NNP
+divers NNS JJ
+adamantly RB
+Dorothee NNP
+tote VB NNP
+Prab NNP
+souffle NN
+Iberia NNP
+biennium NN
+definition NN
+Dominic NNP
+browned VBN
+Namib NNP
+CHASE NNP
+Burckhardt NNP
+Sago NNP
+twenty-three CD JJ
+Emmies NNPS
+dropoffs NNS
+eighty-one CD
+contradictory JJ NN
+Roberts NNP
+rustic JJ
+coats NNS
+DHAWK NNP
+CONELRAD NNP
+thickeners NNS
+sprinkled VBD VBN
+Brook NNP
+Employees NNS NNP NNPS
+catalyzed VBN
+viscoelasticity NN
+commercial-free JJ
+autopsied VBN
+ISO NNP
+Tichy NNP
+grabs NNS VBZ
+mobilization NN
+Splendide NNP
+Gaillard NNP
+Quattro NNP
+bridge-lending JJ
+aerosol NN
+down-home JJ
+Flatiron NN
+header NN
+agriculture-extension NN
+activism NN
+granite NN
+Glauber NNP
+Ventspils NNP
+riggers NNS
+panic NN VB VBP
+Nazarene NNP
+Pacta FW
+engine... :
+pregnancy NN
+LaMacchia NNP
+toll-free JJ
+transitory JJ
+Remember VB
+Domtar NNP
+distributes VBZ
+mentioned VBN VBD
+receptionist NN
+joke NN VBP VB
+eyeball NN
+Example NN
+contemptible JJ
+self-confidence NN
+recurrence NN
+Lior NNP
+Genie NNP
+Rendell NNP
+once-proud JJ
+Copaken NNP
+Finding VBG NNP
+JAUNTS NNS
+middle-school JJ NN
+refunds NNS
+noteholder NN
+IUD NNP
+Plate NNP NN
+CONTINENTAL NNP
+rapes NNS VBZ
+tramp JJ NN
+Lonesome JJ
+anybody NN
+tincture NN
+Mohawk NNP
+Phnom NNP
+Kouji NNP
+Brent NNP
+necessarily RB
+leopard-trimmed JJ
+acceptances NNS
+'Europeans NNPS
+long-neck JJ
+Edgewater NNP
+Billiards NNP NN
+straightforward JJ
+predictably RB
+Pechora-class JJ
+Zebek NNP
+rumination NN
+real-estate-investment NN
+wrapping VBG NN
+Said VBD VBN NNP
+trends NNS
+forever-Cathy NN
+Misery NN
+Mahal-flavor NNP
+wait VB VBP NN
+moneyed JJ
+shred NN VB
+Treasurys NNPS NNP NNS
+overpayment NN
+Jars NNS
+Females NNPS
+Dionysian JJ
+Cygne NNP
+legislatures NNS
+rarely RB
+Programs NNS NNP
+machos NNS
+Hartwell NNP
+breach NN VB
+wicked JJ
+anesthetized JJ VBN
+tide NN VB
+appetite NN
+metalworking NN
+half-filled JJ
+high-tailed VBD
+waste-disposal JJ NN
+ANZ NNP
+fume-filled JJ
+alligatored VBN
+McCanna NNP
+CFM NNP
+decisively RB
+Follow-up JJ
+inspector NN
+bewilderedly RB
+Tacitus NNP
+haunts NNS VBZ
+anti-clotting JJ
+wriggling VBG
+august JJ
+Gaynor NNP
+Fortney NNP
+Nassau NNP
+referrals NNS
+Maize NNP
+Sleepwalking NN
+Frenchmen NNPS NNS
+Then-Navy NNP
+job-boosters NNS
+papery JJ
+grille-route NN
+well-developed JJ
+garment NN
+Corault NNP
+breathed VBD VBN
+Emery NNP
+Devastation NN
+Kraemer NN
+dioxin NN
+prerequisite NN
+Forseth NNP
+impersonates VBZ
+musings NNS
+Sapanski NNP
+H.H. NNP
+tenuous JJ
+DeVos NNP
+payoffs NNS
+Herald NNP
+Y-MP NNP
+cross-dressing JJ
+anti-infective JJ
+canteen NN
+drove VBD NN
+forfeit VB NN
+horticultural JJ
+INT-1 CD
+recovery NN
+despatched VBD
+Worcester NNP
+railroader NN
+Cause NNP VB
+instituting VBG
+Parsons NNP
+sums NNS VBZ
+Pritchett NNP
+Jath NNP
+fingerlings NNS
+extracting VBG
+McClave NNP
+Dispatch NNP
+prohibitions NNS
+resign VB VBP
+bestirred VBN
+technologies NNS
+speedboat NN
+stance NN
+nine-page JJ
+BMC NNP
+Vass NNP
+eduction NN
+Frustrate VBP
+gratings NNS
+discouragement NN
+Stuff NN
+approximations NNS
+sextillion CD
+hydrocarbon NN
+cross-currents NNS
+Gyula NNP
+tumbrels NNS
+lurk VB VBP
+electric-generating NN
+superstitions NNS
+Watkins NNP
+S&P-500 NNP CD
+basics NNS
+relational JJ
+Price-boosting JJ
+remunerated VBN
+compressors NNS
+caseload NN
+pegboard NN
+Jasmine NNP
+grazer NN
+uncomfortable JJ
+Corinne NNP
+no-fault JJ
+marauders NNS
+shortcut NN
+colt NN
+conclusively RB
+steel-related JJ
+isothermally RB
+thespian JJ
+Protons NNS
+single-country JJ
+gold-plated JJ
+re-incorporation NN
+Egg-industry NN
+dang JJ
+Silvershoe NNP
+Alakshak NNP
+declassifying VBG
+pat JJ NN VB
+SHOULD MD
+honeybees NNS
+Lamb NNP NN
+mental-health JJ NN
+Farthing NNP
+Sinemet NNP
+tick VB NN
+natural-gas NN JJ
+Etsuro NNP
+Die NNP FW VBP VB
+Portman NNP
+Domingo NNP
+Quarry NNP
+portfolio NN
+basso NN
+Lufkin NNP
+unlinked JJ
+Syrian-backed JJ NNP
+Farnum NNP
+Rosman NNP
+animal-human NN
+Sputnik NNP
+Bottlers NNP NNS
+Gawdamighty UH
+Hummerstone NNP
+assess VB VBP
+glob-flakes NN
+radicalized VBN
+reporters NNS
+Poor NNP JJ
+ulcerative JJ
+delves VBZ
+verifier NN
+air-injection NN
+Kelsey-Hayes NNP
+cluck NN
+Wycoff NNP
+.23 CD
+absorb VB VBP
+Calmer JJR
+poncho NN
+fourth-level JJ
+Near-Term RB
+slow-bouncing JJ
+Scratchard NNP
+sect NN
+unsuited VBN
+Poong NNP
+Whirlwind NNP
+Burnt NNP
+yodel NN
+chaw NN
+anti-Fascist JJ
+louis NNS
+divert VB VBP
+Usines NNP
+Knox NNP
+coalition NN
+Lizhi NNP
+family-planning JJ NN
+horrid JJ
+dodging VBG
+hospitality NN
+non-church JJ
+newspapers NNS
+free-marketers NNS
+cuvees NNS
+Spoilage NN
+Houdaille NNP
+flash-bulbs NNS
+uncoached JJ
+architect-developer NN
+anti-Sandinista JJ
+Straights NNS
+bats NNS VBZ
+fifty-ninth JJ
+Passing VBG VB
+geographer NN
+manufacturing-cost NN
+would MD
+video-store NN
+Heem NNP
+Valued VBN
+LaBonte NNP
+Right-to-Die JJ
+garments NNS
+rumor-happy JJ
+mounded VBD VBN
+salads NNS
+Trash NNP VB
+average JJ NN VB VBP
+unnaturalness NN
+Cujo NNP
+reflection NN
+Vary VBP
+CanadianImmigration NNP
+moonlight NN VB
+chucked VBD VBN
+Vasvani NNP
+Harold NNP
+professoriate NN
+doubtingly RB
+Anti-apartheid JJ
+mainstays NNS
+misusing VBG
+Outline NN
+detachment NN
+photomicrography NN
+Roslev NNP
+signaling VBG NN
+Beckett NNP
+influenced VBN VBD
+Congregationalist NN
+manipulations NNS
+Masami NNP
+Generales NNP
+high-standard JJ
+Myers NNP
+Stoddard NNP
+broken VBN JJ
+excavator NN
+Claeys NNP
+burnt-orange JJ
+ordinarily RB
+nonfunctional JJ
+single-copy JJ
+Arnold NNP
+flourish VB NN VBP
+lineal JJ
+Sundstrand NNP
+Closer RBR
+crysanthemum NN
+dug VBD VBN
+burglarized VBN
+interferometer NN
+Richard NNP NNPS
+Michio NNP
+vesicular JJ
+affable JJ
+projectile NN
+watching VBG NN
+inspect VB VBP
+clannish JJ
+scalar JJ
+Trexler NNP
+Pilots NNS NNPS NNP
+another... :
+unnnt NN
+pivotal JJ
+Cammack NNP
+abstain VB VBP
+lures VBZ NNS
+syllabicity NN
+passion NN
+dramatization NN
+market-jarring JJ
+communicable JJ
+opinion-makers NNS
+Pro-Iranian NNP
+thinks VBZ
+Greifswald NNP
+Mix-Up NN
+Optical-storage JJ
+Tithing NN
+Miert NN
+Bundle NN
+illustrators NNS
+mai'teipa VB
+Alisky NNP
+Pinsoneault NNP
+salvage VB NN
+Bach NNP NN
+unpolarizing VBG
+unthinkable JJ NN
+Terrizzi NNP
+Roemer NNP
+plaster NN
+memory NN
+investigated VBN VBD
+Weakest JJS
+capsule NN
+hews VBZ
+checkout-stand NN
+Knorr NNP
+Cash-heavy JJ
+addicted VBN JJ
+jointly RB
+base-wage JJ
+Celine NNP
+DiLoreto NNP
+swath NN
+mount VB NN VBP
+noconfidence JJ
+groveling VBG NN
+fizzy NN
+Doorne NNP
+Richardot NNP
+newsweekly RB
+Armored NNP
+No-Tobacco NNP
+scaled-back JJ
+Marsha NNP
+Thesis NN
+COLLAPSE NN
+Build VB
+lumpish JJ
+commuter-airline NN
+specifics NNS
+Pyhrric JJ
+Priorities NNPS
+Euroissues NNS
+pay-cable JJ NN
+Grunberg NNP
+PLAN NN
+Moccasin NNP
+Kikkoman NNP
+most-likely JJ
+southwestern JJ
+subtitles NNS
+elaborately RB
+nighters NNS
+ability NN
+him. NN
+Indonesia NNP NN
+crusaded VBN
+x-Year-to-date JJ
+drunk-driving JJ
+LENSES NNS
+Helane NNP
+gnaw VB
+total JJ NN VB VBP
+lending NN VBG NN|VBG JJ
+palates NNS
+.9.76 CD
+photocathode NN
+Wintour NNP
+mainstay NN JJ
+NT&SA NNP
+effete JJ
+no-profit JJ
+metal-tasting JJ
+optimizing VBG
+Yoneyama NNP
+Intermediates NNPS NNS
+Hadhazy NNP
+ionized VBN JJ
+contract-services NNS
+Fourth-quarter JJ NN
+desktop-presentation JJ
+HOLDINGS NNPS
+Organized NNP
+untradeable JJ
+pastors NNS
+Enormous JJ
+Alabama-Coushatta JJ
+MINISTER'S NN
+LOUIS NNP
+sowbelly NN
+scatter NN VB
+outmatched VBD
+polyunsaturated JJ
+cedar-roofed JJ
+be.... :
+enrage NN
+Superslims NNPS
+dishearten VB
+grab-bag NN
+Eighteenth NNP JJ
+B-1B NNP JJ NN
+robustly RB
+burnishing VBG
+self-scrutiny NN
+four-speed JJ
+Sommers NNP
+disenchanted VBN JJ
+face-lifting NN
+Air-raid JJ
+kilts NNS
+stimulative JJ
+skimmed VBD VBN
+Sub NNP
+immunodeficiency NN
+contrarieties NNS
+Whitcomb NNP
+Aguirre NNP
+Vast JJ
+summonses NNS
+mortgage-banking NN
+overvalued VBN VBN|JJ VBD JJ
+Hatters NNP
+boyfriend NN
+bridegroom NN
+pleated JJ
+charm NN VB
+Bastards NNS
+shove VB NN
+O'Linn's NNP
+weaned VBN
+imaginable JJ
+Nipsco NNP
+interlude NN
+regression NN
+discursive JJ
+Boudreau NNP
+laudably RB
+pepper NN VB
+oversubscribed VBN JJ
+flush JJ NN RB VB VBP
+zeal NN
+prompts VBZ
+colon NN
+lower-than-anticipated JJ
+sway VB VBP NN
+Maung NNP
+T-helper NN
+Cardizem NNP
+Hawesville NNP
+Two-income NN
+photo-montage JJ
+Courter NNP
+scop NN
+Buy'em VB
+seat-sale JJ
+discriminated VBD JJ NN VB
+Maneuvers NNS
+God-curst JJ
+peel-off JJ
+Braumeisters NNPS
+pests NNS
+intendants NNS
+absorbency NN
+migrate VB VBP
+Transactions NNS NNP
+wiggling VBG
+cobra NN
+Sustaining VBG
+finger NN VB
+Hilton NNP
+board NN RB VB
+Pelin NNP
+Ede NNP
+Agree VBP
+enhancement NN
+tenement NN
+Creation NN
+abscissa NN
+lemon-lime JJ
+consorting VBG
+render VB VBP
+S-curve NN
+Gabriel NNP
+Capitalists NNPS
+ARE VBP
+reconverting VBG
+coddle VBP
+subtle JJ
+Jeepers UH
+followership NN
+bedevil VB
+afflicted VBN JJ
+thief NN
+branchline JJ
+Over IN NNP
+Sansone NNP
+seven-course JJ
+Domenici NNP
+stony-meteorite JJ
+cheere VBP
+foster-care JJ
+devils NNS VBZ
+Tateishi NNP
+kalega NN
+christen VB
+weight-height NN
+Jutting VBG
+Volga NNP
+happens VBZ
+Dubois NNP
+Stikeman NNP
+Ollie NNP
+Pikaia NNP
+second-degree JJ NN
+fads NNS
+Rohm NNP
+Cross NNP NN
+Nortek NNP
+R-shaped JJ
+spurring VBG
+.50-caliber JJ
+Antinori NNP
+Magnet NNP
+RNA-based JJ
+handles VBZ NNS
+Tokai NNP
+Dorcas NNP
+theater-going NN
+Closes VBZ
+Hucksters NNP
+Blackhawk NNP
+Fidler NNP
+reemphasizes VBZ
+hyperzeal NN
+normalized VBN
+had VBD VBN
+Nezhari NNP
+stringing VBG
+regime NN
+sweet-clover NN
+gaspingly RB
+slippage NN
+frantic JJ
+magnetisms NNS
+Companies NNS NNPS NNP
+Strangelove NNP
+aspiration NN
+Transmation NNP
+industrial JJ
+low-load JJ
+Ginsburg NNP
+disinflation NN
+Bondi NNP
+aristocratically RB
+Poyne NNP
+Checchi NNP
+veers VBZ
+non-callable JJ
+ideologies NNS
+damn JJ NN RB VB UH
+prefab JJ
+Zhok NNP
+sprouting VBG NN
+Time-Mynah NNP
+dish NN VB
+Superfund NNP
+Milano NNP
+trolls NNS
+sommelier FW
+liberal-led JJ
+diverse JJ
+computer-data-storage JJ
+cellophane NN
+Legend NNP NN
+Kidder NNP JJR
+Hoelterhoff NNP
+multiplies VBZ
+Maureen NNP
+policyholder NN
+Nonelectrical JJ
+paradigms NNS
+redemptions NNS
+sickly JJ
+Skala NNP
+Visual JJ
+Pony NNP NN
+hijacker NN
+Supavud NNP
+--even JJ
+Surplus NNP JJ
+ineptly RB
+self-respect NN
+Ottaway NNP
+Domingos NNP
+typesetting NN
+distillers NNS
+CoGen NNP
+unharmonious JJ
+clowning NN
+syringe NN
+allegiances NNS
+explicitly RB
+Thorne NNP
+imitation NN
+misshapen JJ
+blacked VBN
+lyrical JJ
+rigorously RB
+Rushforth NNP
+Gazing VBG
+merits NNS VBZ
+proxy NN JJ
+say'direct VB
+succumbs VBZ
+Byers NNP
+Islamabad NNP
+Issuance NN
+information-services JJ NNS
+Hoyvald NNP
+icons NNS
+DISNEY NNP
+retrieval NN
+elected VBN JJ VBD
+overaggressive JJ
+Suburbs NNP NNS
+legs NNS
+blip NN VBP VB
+Wisner NNP
+emperors NNS
+bookkeeping NN VBG
+Dubovskoi NNP
+gangster NN
+swart JJ
+beef-hungry JJ
+rambling NN JJ
+Futhermore NN
+--unlike JJ
+EDISON NNP
+shuddery NN
+Synergistics NNP
+Ribes NNP
+dual JJ
+Smelov NNP
+Mendelssohn NNP
+Ferrier NNP
+lumbar JJ
+Roulet NNP
+minor-leaguer NN
+exhaustion NN
+Spillane NNP
+debunking NN
+blotches NNS
+Devotees NNS
+p.m.-conclusion NN
+Umberto NNP
+Fisons NNP
+overwhelmed VBN VBD JJ
+Aeritalia NNP
+back-lighted JJ
+Mambo NNP
+lowest-paying JJ
+reread VB VBD VBN
+connoisseurs NNS
+beaming VBG JJ
+rapid-transit JJ
+absenteeism NN
+refugees NNS
+brothers NNS
+pith NN
+Carliner NNP
+Erdmann NN
+extenuate VB
+glaze NN VB VBP
+obstruct VB VBP
+swarms NNS
+Cameron NNP
+puckered VBN JJ
+Liverpool NNP
+Kos NNP
+deterrence NN
+undergraduates NNS
+slaughterhouse NN
+scotches NNS
+agony NN
+Keatingland NNP
+crowning JJ VBG
+BOARD NNP
+Dried VBN JJ
+Ironically RB NNP
+Studying VBG
+Asada NNP
+Schwarzman NNP
+Cardinal NNP JJ
+Hapoalim NNP
+Hartley-Leonard NNP
+blasting VBG JJ
+Terminating VBG
+Farneses NNPS
+itself PRP
+endpoints NNS
+anti-semite NN
+anti-nuclear JJ
+memorable JJ
+two-line JJ
+bric-a-brac NN NNS
+Goldwag NNP
+O'Grady NNP
+manikins NNS
+Restrict VB
+Khan NNP
+once-faltering JJ
+humly RB
+artifacts NNS
+Tomkin NNP
+Old-House NNP
+ki-yi-ing VBG
+welfare-state JJ
+ex-franchise NN
+Seafirst NNP
+Macrophages NNS
+repugnant JJ
+fluctuation NN
+drewe VBD
+misspent VBN
+Barris NNP NNS
+armchairs NNS
+fella NN UH
+Morningstar NNP
+tiered JJ
+Three-part JJ
+Linz NNP
+Hurwitz NNP
+sublunary JJ
+perennially RB
+uneven JJ
+Formed VBN
+Pertschuk NNP
+crusade NN
+dry JJ RB VB VBP
+marketable JJ
+Launching VBG
+Also RB
+Symbion NNP
+Mormon NNP
+InfoCorp. NNP
+trillion-dollar JJ
+resourcefully RB
+tenements NNS
+--products NNS
+Nowacki NNP
+methode NNP
+congregate VB
+text NN
+boasting VBG
+grenades NNS
+Contel NNP NN
+tilled JJ
+idiots NNS
+Creations NNPS NNS
+a-reflects VBZ
+grandfathers NNS
+catchers NNS
+subpenas NNS
+PrimeTime NNP
+Reduce VB
+entity NN
+foully RB
+Zeffirelli NNP
+Genevieve NNP
+bodyguards NNS
+Kolff NNP
+stolidly RB
+glycerolized VBN
+functions NNS VBZ
+Mitropoulos NNP
+Somalia NNP NN
+ambition NN
+e-In IN
+usually RB
+Toynbee NNP
+Kahler-Craft NNP
+facets NNS
+traces NNS VBZ
+laureate NN
+securities-based JJ
+credit... :
+Ursuline NNP
+Reorganized NNP
+Upon IN NNP
+majority-owned JJ
+Novick NNP
+Berra NNP
+Gill NNP
+Takasago NNP
+dimwitted JJ
+behavior-modification NN
+PacifiCare NNP
+Timing NN
+cartoonish JJ
+cash-short JJ
+surname NN
+non-core JJ
+coasts NNS
+Fennessy NNP
+oomph NN
+blighted VBN VBD JJ
+Amboy NNP
+Koppel NNP
+sporting VBG JJ NN
+adhering VBG
+Lookout NNP
+business-machines NNS
+wield VB VBP
+envision VBP VB
+Reno NNP
+bockwurst NN
+uptick NN NN|JJ VB
+Red-Green NNP
+prognosticators NNS
+office-equipment NN
+DGAULT NNP
+Source NN NNP
+Lifland NNP
+scold VB
+long-settled JJ
+.9.82 CD
+Papal JJ
+Elec NNP
+big-stage JJ
+Threats NNS
+equivalent-choice JJ
+cumulatively RB
+wrongfully RB
+Boothby NNP
+locking JJ VBG
+danced VBD VBN
+understructure NN
+spontaneously RB
+Masillon NNP
+higher-fat JJR
+chemicals-industry NN
+cabin NN
+Biggs NNP
+UDC NNP
+caterpillar NN
+plastic-products NNS
+bugged VBN VBD
+medical JJ
+Boyd NNP
+Mineralogy NNP
+Torstar NNP
+Photofrin NN
+Danish-American NNP
+sonofabitch NN
+ARF NNP
+A.L. NNP
+attends VBZ
+Strips NNS
+Uhr NNP
+stormed VBD VBN
+Plath NNP
+Sunni NNP JJ
+stressful JJ
+Andrzej NNP
+Initiating VBG
+lobes NNS
+cocked VBD VBN
+NCAAs NNS
+rammed VBD
+Fuchs NNP
+pussy NN
+satellite-delivered JJ
+Dig VB
+czar NN
+non-enzymatic JJ
+extravagantly RB
+Popping VBG
+classifiers NNS
+Matamoros NNP
+harming VBG
+Chiuchow NNP
+storehouses NNS
+scraggly JJ
+Underage JJ
+divestitures NNS
+horn NN VB
+Parity NN
+black-market JJ NN
+Meir NNP
+garroting VBG
+Presidio NNP NN
+fir NN
+Saouma NNP
+Kennedy'joie NN
+Hunt NNP
+elaborated VBN
+Yucatan NNP
+Jerebohm NNP
+exorbitant JJ
+Giffen NNP
+designs NNS VBZ
+malnourished JJ
+Civilization NN NNP
+Sorting VBG
+licenses NNS VBZ
+seek VB VBP
+cosmologists NNS
+Onan NNP
+dumbbell NN
+mEq NNP
+substance NN
+clubs NNS
+non-exempt JJ
+antelope NN NNS
+ripping VBG
+Slenczynka NNP
+collective-bargaining JJ NN
+kitchenware NN
+Australian-Chinese JJ
+stimulate VB VBP
+tested VBN VBD JJ
+Hedrick NNP
+billfold NN
+feedstock NN
+three-round JJ
+preclinical JJ
+investigating VBG NN
+Staged VBN
+chip-packaging NN
+dynodes NNS
+Dirks NNP NNS
+Satoko NNP
+seceding VBG
+champions NNS VBZ
+sawtimber NN
+Rydell NNP
+What WP NNP PDT WDT
+Harding NNP
+Endgame NNP
+resplendent JJ
+treatment NN
+delightfully RB
+enduring VBG JJ
+Itsuo NNP
+precariously RB
+Cincinnati NNP NNS
+Defense NNP NN
+Bockius NNP
+slighted JJ VBN
+unproven JJ
+necklace NN
+Aycock NNP
+degenerated VBD VBN
+Cordell NNP
+pulverized VBN
+Blazer NNP
+Olvey NNP
+mid-century JJ
+pfennig NN FW
+overlying JJ
+Stroking VBG
+stanch VB JJ
+FM9.4 CD
+jettison VB
+Obernauer NNP
+Barasch NNP
+vos FW
+miuchi FW
+Westmin NNP
+underarm NN
+entombed VBN
+puritan JJ
+Millicom NNP
+plump JJ
+Tordella NNP
+thereby RB
+dependence NN
+boardings NNS
+free-fall JJ NN
+tidal JJ
+Brew NNP
+lush JJ
+with-but-after JJ
+globalized JJ
+now-ousted JJ
+woven VBN JJ
+Elianti NNP
+industriously RB
+financial-aid NN
+tearfully RB
+cassocked JJ
+Epsom NNP
+Yvon NNP
+Fully RB
+Giselle NNP
+Tex-Mex NNP
+jillions NNS
+Chavis NNP
+Situations NNS
+immanent JJ
+catastrophes NNS
+inveigh VBP
+Mor-ee-air-teeeee NNP
+MAC NNP
+H.M.S.S. NNP
+Littlepage NNP
+well-placed JJ
+Mahayanist NN
+bargain-hunting NN JJ
+Allday NNP
+elevates VBZ
+retrofitted VBN
+fragrances NNS
+velvety JJ
+Barreiro NNP
+aggrieved VBN JJ
+LOSS\ NN
+steaming VBG
+counterculture JJ
+Petroleos NNP
+erotically RB
+citizen-plaintiffs NNS
+Mugabe NNP
+unimpassioned JJ
+LaBow NNP
+MasterCard NNP
+nobleman NN
+levitation NN
+Telefonos NNP NNPS
+Irec NNP
+McKenna NNP
+recit FW
+C.D. NNP
+Numeral NNP
+mendacious JJ
+LIN-BellSouth JJ NNP
+nonunionized VBN
+cathode-ray NN
+too-rapid JJ
+anti-growth JJ
+averages NNS VBZ
+deduces VBZ
+carted VBD VBN
+devotedly RB
+admit VB VBP
+Lindens NNPS
+Petry NNP
+newswire NN
+reading-rooms NNS
+real-estate NN JJ
+shelf-registered JJ
+gazer NN
+catastrophic-health-care NN
+bill-introduced NN
+associating VBG
+Emory NNP
+Elco NNP
+reprimanded VBN
+Treasury-Fed NNP
+Flowers NNPS NNP NNS
+Calls NNS VBZ
+gunk NN
+eqns. NN
+Leigh NNP
+treble JJ NN VB
+Eighties NNP
+Tepid NNP
+banded VBN
+sanity NN
+Boats NNS NNP
+blackballed VBN
+ASA NNP
+desultory JJ
+inhalation NN
+synonymous JJ
+capacious JJ
+ruthlessness NN
+worker-safety NN
+Kona NNP
+newsstand NN
+generators NNS
+Ghadiali NNP
+unprovocative JJ
+shewe NN
+grieved VBN
+statuses NNS
+yearago JJ
+Newcomers NNS
+timer NN
+Silver NN JJ NNP
+signify VB
+terrific JJ
+Algeria NNP
+Y'r PRP|VBP
+subjectivists NNS
+senatorial JJ
+countertop NN
+ozonedepletion NN
+pizza NN
+gel NN
+loch NN
+Persky NNP
+multi-valued NNS JJ
+governess NN
+sedimentation NN
+sophistication NN
+gays NNS
+Sing NNP VBP
+Relief NNP NN
+Bonnierforetagen NNP
+Alistair NNP
+several-year JJ
+VecTrol NNP
+areosol NN
+pittance NN
+M.I.M. NNP
+Tokuyama NNP
+.30 CD
+reticulate JJ
+Croydon NNP
+Amstrad NNP
+SECURITY NN
+Stan NNP
+bivouac NN
+well-springs JJ
+tort NN
+Certs NNP
+fluctuate VBP VB
+crunching VBG
+O.E. NNP
+apprehensions NNS
+Flaws NNS
+Schober NNP
+Yooee UH
+fur-lined JJ
+Janissaries NNS
+Universal-International NNP
+named VBN VBD JJ
+Bumiputra NNP
+O'Brien NNP
+escalated VBN VBD
+electrophorus NN
+Poems NNPS
+drooped VBD
+Sharfman NNP
+matronly JJ
+CFP NNP
+Parkersburg NNP
+venturing VBG
+CLUBS NNS
+Stiling NNP
+murmurs VBZ
+Jimmy NNP
+EUROPE NNP
+magically RB
+pilot-training JJ NN
+Oh-Hyun NNP
+hare-brained JJ
+Provided VBN
+orphaned VBN JJ
+trollop NN
+indivisibility NN
+Pedigree-contemplating VBG
+Braking NNP
+GENERIC-DRUG NN
+Paramount-MCA JJ NNP
+vehicular JJ
+auxiliary JJ NN
+viscometer NN
+muses VBZ NNS
+Nilsen NNP
+sprinted VBD
+protestors NNS
+septic JJ NN
+Strut VB
+Montedision NN
+JOIN VB
+Langsdorf NNP
+in-house JJ NN RB
+rival JJ NN VB VBP
+Jean-Louis NNP
+tall-tale NN
+Sabbath NNP
+gripe VBP NN VB
+Birgfeld NNP
+sweepings NNS
+programmatic JJ
+flute NN
+Hodgkin NNP
+Minneapolis NNP NNS
+family-welfare NN
+Adjournment NN
+Toronto NNP NN
+Ifint NNP
+Optek NNP
+Rakestraw NNP
+nonpartisan JJ
+blurted VBD VBN
+sneak VB NN VBP
+Bushell NNP
+last-mentioned JJ
+frivolous JJ
+enterteyned VBD
+Ignazio NNP
+modish JJ
+flickering VBG
+condo NN
+commodity-trading NN
+Balafrej NNP
+Louchheim NNP
+Harel NNP
+Figuring VBG
+phase-in NN
+poster NN
+factory-jobs NNS
+stalls NNS VBZ
+Cocom NNP
+dictators NNS
+Lintas:New NNP
+STSN NNP
+Birch NNP
+vernal JJ
+Ricca NNP
+serious JJ
+Higher-income JJR
+Pro-choice JJ
+Matrix NNP
+high-definition JJ NN
+Founded VBN
+electors NNS
+Richards NNP
+ENGRAPH NNP
+sting NN VB
+night NN RB
+damp VB VBP JJ NN
+Devereux NNP
+Beefing VBG
+onto IN
+hardbake NN
+curiosities NNS
+unattended JJ
+ditched VBD
+Backstairs NNS
+Hiring VBG
+thirties NNS
+paw NN VB
+porches NNS
+committees NNS VBZ
+pleasin VBG
+jungle NN
+Bristol-Meyers NNP
+VOLUNTARISM NN
+Demanding VBG
+preventable JJ
+cold-blooded JJ
+booklists NNS
+cabinetmakers NNS
+Cardillo NNP
+non-union JJ
+Choctaws NNPS
+potash NN
+surtout NN
+Regrettably RB
+Infection NN
+Adios-Trustful NNP
+Vacancies NNS
+electronography NN
+Unconscious NNP
+effecting VBG
+disabled JJ NN VBN
+Hughes NNP
+Lugosi NNP
+teleconferences NNS
+salute NN VB
+Kern NNP
+taxable-fund JJ
+all-cash JJ
+movie-studio NN
+Epson NNP
+Entre NNP
+propitious JJ
+sewage-treatment NN
+airlifting VBG
+Collegiate NNP
+Fittro NNP
+Departing VBG
+Hardis NNP
+roughened VBN
+dismantling VBG NN
+Back RB NN RP NNP VBP JJ
+olive JJ NN
+Sonnett NNP
+congressional JJ
+Seminar NNP
+French-modeled JJ
+passions NNS
+amuse VB VBP
+retribution NN
+weapons-control JJ
+Wong NNP
+handlers NNS
+Toi NNP
+engrossed JJ VBN
+Nikkhah NNP
+gulling VBG
+exegesis NN
+barging VBG
+Lancet NNP
+Force NNP FW NN
+warts NNS
+bimonthly JJ
+Fendi NNP
+market-system NN
+crony NN
+paddleball NN
+farmed VBD JJ
+reappraise VB VBP
+stomped VBD VBN
+gringos NNS
+Nausea NN
+Bibliography NN
+egotistic JJ
+dynamical JJ
+Steels NNP NNS
+Desktop NNP
+Edwardsville NNP NN
+collaborated VBD VBN
+Shayne NNP
+slanders NNS
+WTBS NNP
+BankWatch NNP
+underpinned VBN VBD
+LOAN NNP NN
+resiliently RB
+MINING NNP
+ointment NN
+growth-stock JJ NN
+casino-company NN
+procrastinated VBD
+prelate NN
+LDP NNP
+Hoses NNS
+pea NN
+Hutchinson NNP
+hijackers NNS
+Morning NNP UH NN
+computer-service JJ
+interventionists NNS
+wordplay NN
+committed VBN JJ VBN|JJ VB VBD VBD|VBN
+trisodium NN
+profitable JJ
+Cathodic NNP
+melodramatic JJ
+gazes VBZ
+concluding VBG JJ
+Cardoso NNP
+gliders NNS
+Centurion NNP
+bodybuilders NNS
+Microphones NNS
+shots NNS
+Oremland NNP
+Bloeser NNP
+Squadrons NNP
+Odors NNP
+Pamour NNP
+Register NNP
+Mackinac NNP
+buttery JJ
+spatula NN
+Enjoy VB
+Forty-seven JJ
+Generalized NNP
+forfeiture NN
+pinnacle NN
+Targetted NNP
+Churchill NNP
+Antioquia NNP
+d-Limited NNP
+JNR NNP
+Sin\/Your NNP
+A&E NNP
+subtends VBZ
+tasteless JJ
+reseller JJR JJ NN
+Bidard NNP
+archaized VBD
+unbidden JJ
+dinnertime NN
+ten-by-ten-mile JJ
+Proceedings NNP NNS
+Announces VBZ
+anticipations NNS
+estate-tax JJ NN
+times NNS VBZ CC RB
+broker NN
+summon VB
+testaments NNS
+Littau NNP
+feistier JJR
+wishy-washy JJ
+Centoxin NNP
+redfish NN
+momentarily RB
+Macklin NNP
+arrowed JJ
+nudged VBD
+penitentiary NN
+scandalous JJ
+maintain VB VBP
+mathematicians NNS
+Petroles NNP
+FIDELITY NNP
+paper-making JJ
+Reuther NNP
+choreography NN
+Rendering VBG
+wheat-growing JJ
+worst-hit JJ
+Promised JJ
+Bantam NNP
+Calamity NNP
+pervading VBG
+Claim VB NN
+showcase NN JJ
+chlorofluorocarbon NN
+off-base JJ
+Kashpirovsky NNP
+lye NN
+dandily RB
+Elusive NNP
+Marcello NNP
+Cortizone-5 NNP
+withholdings NNS
+'20s NNPS NNS
+Inefficient-Market NNP
+Dunaway NNP
+spot-television JJ
+Va.-based JJ
+nesters NNS
+circumlocution NN
+layoff NN
+information-processing NN
+grocer NN
+computer-driven JJ
+agents-in-training NNS
+quick-drying JJ
+rebellions NNS
+abstracts NNS
+embossed VBD VBN
+Labatt NNP
+overjoyed JJ
+Kyushu NNP
+moth-eaten VBN
+dank JJ
+underbracing NN
+flirtatious JJ
+yearned VBD VBN
+Carmel NNP
+activist NN JJ
+four-element JJ
+Swiss-born JJ
+pharmacology NN
+longing NN VBG
+warring VBG
+mortals NNS
+equines NNS
+Foote NNP
+bodyguard NN
+four-wheel JJ
+YORK'S NNP
+rock-hard JJ
+counties NNS
+pangs NNS
+local JJ NN
+Deseret NNP
+paychecks NNS
+horse-chestnut NN
+waffle-pattern NN
+Japanese-financed JJ
+road-show NN
+avant FW
+gem NN
+gunslinging VBG
+courthouse NN
+salvages VBZ
+pitch NN JJ VB VBP
+piasters NNS
+pre-kidnap JJ
+ensconced VBN VBD
+side-by-side RB
+ringleader NN
+scurvy NN
+ignominiously RB
+twin-jet NN
+Hinton NNP
+marshal NN VB VBP
+counter-productive JJ
+ranchers NNS
+Cod NNP
+Muss NNP
+grimly RB
+ex-Cubs NNS
+Stanford-Idec NNP
+Fawkes NNP
+coughed VBD VBN
+AIDS-like JJ
+Antiquity NN
+senior-debt NN
+regulation NN JJ
+PATRON NNP
+reduced VBN VBD JJ
+neurotransmitters NNS
+deshabille NN
+single-season JJ
+contour NN
+methane NN
+Java NNP
+adenocard NN
+Adrien NNP
+enviable JJ
+nicotine-choked JJ
+carboxy-labeled JJ
+Wert NNP
+one-acters NNS
+Red-blooded JJ
+beardless JJ
+fragrance NN
+Hart-Scott NNP
+Board-traded JJ
+rebounded VBD VBN VBP NN VB
+uncut JJ
+plasters NNS
+dressy JJ
+ab NN
+metal NN
+envenomed VBN
+all-woman JJ
+interference NN
+much-maligned JJ
+work-weary JJ
+zenith NN
+Neurosciences NNP
+Holler NNP
+capsules NNS
+plans NNS VBP VBZ
+imagnation NN
+Extensions NNS
+bitten VBN
+AMBASSADOR NN
+feare NN
+above-water JJ
+pay-for-performance JJ
+pay-down JJ
+congressmen NNS
+plea NN VB
+fascinates VBZ
+Fiddlesticks NNS
+non-dealer JJ
+Thomajan NNP
+wimping VBG
+seawall NN
+Periclean NNP
+Given VBN
+human-based JJ
+Sue NNP
+suitably RB
+intra-stellar NN
+carbons NNS
+tied VBN JJ VBD
+baklava NN
+lobo NN
+advertiser NN
+stayed VBD JJ VBN
+enshrined VBN
+committee NN
+easier-to-read JJ
+gangsters NNS
+figment NN
+transportation-cost JJ
+moaning VBG
+Militia NNS
+McLaughlin NNP
+Gillers NNP
+darned RB
+alien JJ NN
+APS NNP
+buses NNS
+by-wheelchair JJ
+cramped JJ
+Carvalho NNP
+yuletide NN
+Fossan NNP
+Owens-Corning NNP
+Shribman NNP
+rhythm-and-blues NN NNS
+disk NN
+most-actives JJS
+timber-state JJ
+silk-stocking JJ
+ramblings NNS
+Ghost NN NNP
+gnash VB
+armistice NN
+Hanover-Sally NNP
+diluents NNS
+Forrestal NNP
+Liz NNP
+seem VB VBP
+constellation NN
+blot-like JJ
+agitated VBD VBN
+disgusted VBN JJ
+low-speed JJ
+distillery NN
+intrapreneurship NN
+entities NNS
+Nam NNP
+all-nighters NNS
+KCs NNS
+Shellpot NNP
+Seasonal JJ NNP
+hand-held JJ
+Security-Connecticut NNP
+TROUBLES NNS
+precious JJ RB
+Advisors NNPS NNP NNS
+neighborhoods NNS
+spectrophotometer NN
+one-acter JJ
+coincidence NN
+pre-academic JJ
+grueling JJ VBG
+switchgear NN
+protoplasm NN
+MacInnis NNP
+fascinate VB VBP
+file VB NN VBP
+Exxon-owned JJ
+epilepsy NN
+Labovitz NNP
+not-knowing RB|VBG
+Fascio-Communist JJ
+beset VBN JJ VBD
+pax FW
+unrecoverable JJ
+Luigi NNS
+TIMES NNP
+Winter NNP NNPS NN
+SELL-OFFS NNS
+Burghardt NNP
+emigrations NNS
+KLA NNP
+market-reform JJ
+discriminates NNS VBZ
+conciliate VB
+Sheeting NN
+Mueslix NNP
+Deaconess NNP
+loneliest JJS
+hunter NN
+O'Donnell-Usen NNP
+Mohammad NNP
+grandfather-father-to-son JJ
+Orrin NNP
+Polian NNP
+English-rights JJ
+well-designed JJ
+Dionysus NNP
+Pap-pap-pap-hey UH
+slop NN VB
+Moonachie NNP
+Skyros NNP
+Fall-in NNP
+conceding VBG
+fit VB VBN VBP JJ NN RB VBD
+anterior JJ
+artisan NN
+insuperable JJ
+Powicke NNP
+outrank VBP
+connecting VBG JJ
+alcohol-powered JJ
+U-Save NNP
+uncomfortably RB
+uncataloged VBN
+commercialized VBN
+assets NNS
+color NN JJ VB VBP
+Rashomon NNP
+anti-rejection JJ
+Lana NNP
+ADVANCES NNS
+commissaries NNS
+Prepared JJ
+belles NNS
+gene-therapy NN
+Once RB NNP IN
+blacklisting NN
+inconveniences NNS
+attorney-consultant NN
+occasions NNS VBZ
+founder NN VB
+Radius NNP
+turnings NNS
+Chieftains NNP
+sausages NNS
+amputations NNS
+filtered VBN JJ
+mufflers NNS
+Cooperatives NNP
+investigates VBZ
+Hymen NN
+dollops NNS
+Ventres NNP
+divest VB VBP
+Securities-trading JJ
+Danger NNP NN
+EnClean NNP
+non-operating JJ
+Luxurious JJ
+acupuncture NN
+PITCH NNP
+back-disability NN
+respondent NN
+p.m. NN RB
+Halting VBG
+gentians NNS
+false-fronted JJ
+Prague NNP
+contestant NN
+Alva NNP
+Spumoni NNS
+pre-Vatican NNP
+Leaguers NNP NNPS
+Traub NNP
+third* JJS
+dally VB
+various-sized JJ
+Malik NNP
+Muhammad NNP
+half-reformed JJ
+advertises VBZ
+rime NN
+Dyke NNP
+Whoopee NN UH
+bastions NNS
+Fagan NNP
+Tieken NNP
+Betrayed NNP
+Carlucci NNP
+cranelike JJ
+trendy JJ
+Moby NNP
+housebound JJ
+purifiers NNS
+AIDS NNP
+Thefts NNS
+arrivals NNS
+Blackburn NNP
+Model NN NNP
+premarital JJ
+crooks NNS
+institution NN
+Innocent JJ
+fragile JJ
+aspirin NN
+dampening JJ
+undeniably RB
+McGuane NNP
+Threshold NNP
+Frost-Debby NNP
+mass-merchandise NN
+adventurism NN
+violation NN
+outboard JJ
+oil-drilling NN
+aliquots NNS
+workmen NNS
+evasion NN
+letterman NN
+split NN VBN|JJ JJ VB VBD VBN VBP
+test-like JJ
+Hitching VBG
+PLANS VBZ
+Pennzoil NNP
+scairt VBN
+America NNP
+nod NN VB VBP
+Gustafsson NNP
+triple-digit JJ
+shaven JJ
+Kassebaum NNP
+unphysical JJ
+PhacoFlex NNP
+unexplained JJ
+spare JJ VB VBP
+crack-ridden JJ
+profit-seeking JJ
+share-price JJ
+gun-running JJ NN
+abuzz JJ
+Met NNP FW VBD VBN
+rescinded VBN VBD
+WINS VBZ
+pavements NNS
+Matsushita-made JJ
+hide VB VBP NN
+Brendle NNP
+stagflation NN
+home-ownership NN
+U.S.-produced JJ
+diminish VB VBP
+Bible-emancipated JJ
+midwest JJS
+CIA NNP
+Walsifer NNP
+transit NN JJ
+Individual JJ NN NNP
+Shrieves NNP
+acrimonious JJ
+corrupter NN
+Herber NNP
+Valspar NNP
+grey-haired JJ
+turbine NN JJ
+Funari NNP
+Lisa NNP
+disclaimed VBD
+recruiter NN
+Leser NNP
+committee... :
+highly-confident JJ
+Nairne NNP
+Deutsche NNP FW NN
+Brodie NNP
+red-bellied JJ
+granulocytic JJ
+orthographies NNS
+printing-ink JJ
+Shoney NNP
+Musical NNP JJ
+battlefield NN
+worshiping VBG
+sediment NN
+Symphony NNP
+non-commissioned JJ
+distributive JJ
+Addis NNP
+unpolitical JJ
+Goebel NNP
+Must MD
+vindicated VBN VBD
+heavyweight NN JJ
+Sundance-based JJ
+trekked VBD
+coachmen NNS
+Pyle NNP
+Hazy NNP
+mouthed VBD
+ASC NNP
+Tenth NNP JJ
+razors NNS
+Roylott NNP
+Cogeneration NNP
+Hubble NNP
+terrier NN
+Arimathea NNP
+plant NN VBP VB
+Midwesco NNP
+costing VBG NN
+larvae NNS
+Gibbons NNP
+Valrico NNP
+property-liability NN
+Afanasyeva NNP
+Topkapi NNP
+participated VBD VBN
+Rhett NNP
+Foggs NNP
+Iraqw NNP
+Joker NNP
+Tompkins NNP
+retrench VBP
+Haskayne NNP
+gen NN
+GRANTING VBG
+Simonds NNP
+Sidak NNP
+borrowings NNS
+testifying VBG
+negativism NN
+Spectrum NNP
+gums NNS
+Wolzein NNP
+clipboard-size JJ
+Rican JJ NN NNP
+lute NN
+aftuh RB
+Ter. NN
+PLODDERS NNS
+Greater NNP JJR
+energy NN
+shampoo NN
+Coe NNP
+rooster NN
+geographic JJ
+banquet-hall NN
+RTC NNP
+Brookline NNP
+flood-ravaged JJ
+Duesseldorf NNP
+flexible JJ
+Ticker NNP
+ago,'crack NN
+higher-caffeine JJ
+Karalis NNP
+celebrates VBZ
+R.R. NNP
+Insurrecto FW
+fuel-efficiency JJ
+Cardinals NNP NNPS
+Deus FW
+signature NN
+Audubon NNP
+Waterhouse NNP
+tombstone NN
+Mineral NNP
+Safford NNP
+RESIGNATIONS NNS
+two-inch JJ
+Sanderson NNP
+instigators NNS
+Ryzhkov NNP
+labor-funded JJ
+Lancia NNP
+Dora NNP
+Marching NNP
+biography NN
+Microdyne NNP
+hick NN
+hyphens NNS
+picture-images NNS
+nursing-homes\/retirement-living JJ
+copycat NN
+triable JJ
+Andruses NNPS
+poison NN NN|JJ JJ VB
+stack NN VB
+MIDDLEMAN NN
+cutting-and-pasting NN
+Bricom NNP
+custom-tailored JJ
+Hawaiian NNP JJ NNPS
+marketing-and-distribution JJ
+whooper NN
+outperforming VBG
+Propane NNP
+scenarios NNS
+Niebuhr NNP
+Worthless JJ
+self-starting JJ
+Citicorp NNP NNPS NN VB
+tecum FW
+seen VBN VBD JJ
+Door NNP NN
+Luthuli NNP
+Boneh NNP
+Exxon NNP NN
+Dayan NNP
+one-dumbbell JJ
+school NN VB
+Asset-management JJ
+catastrophic JJ
+grubs NNS
+ranger NN
+Talton NNP
+cleanser NN
+tri-colored JJ
+purport VBP
+concertina NN
+horrible JJ NN
+gadgets NNS
+JOKE NN
+thin JJ RB VB
+soft-drinks NNS
+Rothshchild NNP
+tardy JJ
+APT NNP
+investigation NN
+Entenmann NNP
+sleeve NN
+Leningrad NNP VB
+price-gouging NN
+charting NN VBG
+Establishment NNP NN
+remonstrated VBD
+choruses NNS
+cantaloupe NN
+madhouse NN
+agencies NNS
+defense-authorization NN
+Harper NNP
+screen NN VB VBP
+Jackals NNS
+histories NNS
+Woodworth NNP
+Monetary NNP JJ NN
+Honorable NNP
+Extensor NNP
+Sabena NNP
+Nika NNP
+suns NNS
+communication-cluttered JJ
+demographics NNS
+post-quake JJ
+manually RB
+Bogdanor NNP
+flashy JJ
+scatters VBZ
+licked VBD VBN
+satellite-launching JJ NN
+Nan NNP
+panoramas NNS
+hairpin NN
+Aircraft NNP NNS
+Projected VBN
+erodes VBZ
+private-insurance NN
+church NN NNP
+Valparaiso NNP
+trump NN VB
+Turf NNP
+repeal NN VB
+coals-to-Newcastle JJ
+cloning VBG NN
+guerrilla-th'-wisp JJ
+quota-increase JJ
+linear JJ
+secede VB
+deviating VBG
+useless JJ
+horticulturist NN
+Collagen NNP
+marketability NN
+no-waste JJ
+Imperials NNPS
+non-brand JJ
+ITO NNP
+death-sentence NN
+pay VB VBD VBP NN
+Stonestown NNP
+second-look JJ
+winos NNS
+express... :
+Megarians NNPS
+Metromedia NNP
+nomenclature NN
+Safeway NNP
+processed-meat JJ
+astronomically RB
+Wieden NNP
+Coplandesque JJ
+Falkland NNP
+Euroconsumer NN
+Viewers NNS
+Solaia NNP
+grooming NN VBG
+mischief NN
+Babin NNP
+chef NN
+Xerox NNP
+Impasse NNP
+play VB NN VBP
+POTABLES NNS
+Woodin NNP
+tantamount JJ
+exclusivity NN
+Griffith-Jones NNP
+b-Percent NN
+jumpiness NN
+cheese NN
+ethnic JJ
+Boehringer NNP
+laundries NNS
+Werther NNP
+Carmen NNP
+Unitholders NNS
+series NN NNS
+Forwarding NNP
+balancing NN VBG
+handcuffed VBN
+viciously RB
+double-hamburger NN
+labels. NNS
+Potlatches NNPS
+pausing VBG
+T.J. NNP
+federal-systems JJ
+Liriano NNP
+Calabasas NNP
+cochannel JJ NN
+four-family JJ
+enlarges VBZ
+blue-sky JJ
+likelihood NN
+babel NN
+Marmara NNP
+issuable JJ
+rapid JJ
+self-portraits NNS
+foothold NN
+Istiqlal-sponsored JJ
+metrics NNS
+Giles NNP
+Women NNP NNS NNPS
+barrel-wide JJ
+MARKETING NN
+Defect NN
+Situs NN
+Mersa NNP
+tablecloths NNS
+Designer NN
+Clarcor NNP
+Prohibited NNP
+Flames NNPS
+crossfire NN
+Tok NNP
+bowel NN
+mailings NNS
+Hueglin NNP
+chased VBN VBD
+microinjection NN
+Police NNP NNS NN NNPS
+Payline NNP
+numbered VBN VBD
+UAW NNP
+anti-Catholic JJ
+machikin FW
+pedimented VBN
+Viola NNP
+hotel\/entertainment NN
+DBL NNP
+hypothalamically RB
+Building NNP VBG NN
+mobcaps NNS
+J.A. NNP
+chasm NN
+boastings NNS
+lock VB VBP JJ NN
+rejoin VB VBP
+convivial JJ
+Benefit NNP VB
+Dickensian JJ
+Philippines NNP NNPS
+Millennium NN
+Approval NN NNP
+unlaced VBD VBN
+new-country JJ
+mid-to-late JJ
+crept VBD VBN
+speeds NNS VBZ
+Pasterns NNPS
+ashare NN
+grins NNS
+Misses NNPS
+Trappings NNP
+journalism NN
+fine-chiseled JJ
+trunk NN
+Grail NNP
+Trichrome JJ
+CARTER-WALLACE NNP
+full-range JJ
+Solodar NNP
+PS\/2 NNP
+Kempinski NNP
+pituitary JJ NN
+oblong JJ
+Yeutter NNP
+Sure-sure JJ
+chromic JJ
+shake-up NN
+Carboni NNP
+paratroopers NNS
+proffered VBD VBN
+vertical-takeoff-and-landing JJ
+invaders NNS
+Chancellor NNP
+Jokes NNS
+servings NNS
+deserves VBZ
+Lips NNS
+self-supporting JJ
+Railway NNP
+grant-in-aid NN
+growth NN JJ VB
+Bettencourt NNP
+Rowman NNP
+purview NN
+slower-than-expected JJ
+LVMH NNP
+wheelbase NN
+disobedience NN
+dewy-eyed JJ
+Copeland NNP
+special-technology NN
+Boettcher NNP
+bawh NN
+Teodorani NNP
+Galophone-Kimberly NNP
+chemicals NNS
+precondition NN
+reciprocal JJ
+thrower NN
+cuter JJR
+Deparment NNP
+rill NN
+commoner JJR
+circuit-breaker NN JJ
+saxophonists NNS
+keening NN VBG
+globigii NNS
+puffed VBN VBD
+Princes NNPS NNS
+stereotyped JJ VBN
+--especially RB
+Stygian JJ
+enthralling JJ VBG
+Rohr NNP
+ex-chairman NN
+basis-point NN
+plastic NN JJ
+Levesque NNP
+JPI NNP
+squealing VBG NN
+Wood NNP NN
+Kuttner NNP
+Operationally RB
+gloat VB NN
+Remingtons NNPS
+flim-flam NN
+Bronx NNP
+grass-covered JJ
+ambitions NNS
+kolkhoz NN
+Saying VBG
+money-fed JJ
+Mirabella NNP
+Hees NNP
+what's-his-name NN
+Sergeant NNP NN
+widow NN
+rejoicing VBG NN
+Sowell NNP
+honoring VBG
+insect NN JJ
+life-death JJ
+violations NNS
+glycosides NNS
+succeeded VBN VBD
+home-market JJ
+Frazee NNP
+ranges NNS VBZ
+Bittania NNP
+tray NN
+Muscovites NNS NNPS
+Auckland NNP
+week-ends NNS
+Villagers NNS
+CPAs NNS NNP NNPS
+Figurines NNS
+downs NNS
+circulating VBG
+Plaintiffs NNS
+goddam JJ
+superefficient JJ
+peaks NNS VBZ
+evil-but-cute JJ
+nomenklatura FW
+Flannagans NNPS NNP
+dams NNS
+embodying VBG
+potentiometer NN
+accreted VBN
+mints NNS
+Miranda NNP
+laureates NNS
+pinned VBN VBD
+weather NN VB VBP
+Evangelism NNP NN
+Corelli NNP
+Sniper NNP
+Township NNP
+Romain NNP
+Spitalnick NNP
+Fenn NNP
+Omnibank NNP
+Vocal NN
+vastly RB
+Flashdance NNP NN
+extraction NN
+B-cells NNS
+Sinai NNP
+virility NN
+Bashing VBG
+Three-fourths NNS
+LaLonde NNP
+journalistic JJ
+spoon-fed JJ
+Microelectronics NNPS NNP
+Cece NNP
+believer NN
+Remy NNP
+Tineo NNP
+college-oriented JJ
+privatization NN
+defaulted VBD VBN JJ
+Formby NNP
+twin-line JJ
+silicon NN
+Ubberroth NNP
+expire VB VBP
+Forster NNP
+puppet NN
+skips VBZ
+Cedvet NNP
+amalgam NN
+sassafras NN
+SAVINGS NNP NNPS
+scaled VBN VBD
+eaters NNS
+Reitman NNP
+grimy JJ NN
+misbegotten JJ
+programming NN VBG
+rejiggering VBG
+sunt FW
+edified VBD
+doubly RB
+uncertain JJ RB
+million-a-year JJ
+two-bits NNS
+epiphyseal-diaphyseal JJ
+Hiroshima NNP
+redeem VB VBP
+snatching VBG
+Yacht NNP
+superlatives NNS
+supplements NNS VBZ
+sycophants NNS
+migrates VBZ
+Cerebral NNP
+TGS NNP
+visionaries NNS
+huddled VBD VBN JJ
+semi-sterile JJ
+back-door JJ
+thrift NN
+cartoonists NNS
+sneering VBG
+leather-men NNS
+Europe-wide JJ RB
+pterygia NN
+leg-split JJ
+dysplasia NN
+fiber-optic JJ
+Aermacchi NNP
+comically RB
+isotopic JJ
+caviar NN
+deadheads NNS
+Cultures NNS
+Incarnation NNP
+blasts NNS
+diversifications NNS
+Fumio NN
+Waist-High JJ
+Hoag NNP
+believably RB
+MBA NN NNP
+pans NNS VBZ
+chin-ups NNS
+financial-planning JJ
+R&M NNP
+steamily RB
+BMI NNP
+Joban NNP
+griping NN
+Realtor NN
+deuterated VBD
+storylines NNS
+boring JJ VBG NN
+Blackwell NNP
+Macmillan\ NNP
+salarymen NNS
+nurse NN
+lurid JJ
+Buchbinder NNP
+overview NN
+ad NN FW
+Pops NNP
+Examination NN NNP
+reminiscent JJ NN
+Money-saving JJ
+bellows VBZ NN
+first-strike JJ
+Dunston NNP
+court-supervised JJ
+depressions NNS
+major JJ NN VBP
+second-stage JJ
+Muskoka NNP
+Termination NN
+brewery-scion-turned-banker NN
+pique JJ NN VB
+Syracuse NNP
+multibillion-dollar JJ
+childbearing VBG
+River NNP NN
+legitimacy NN
+Telescope NNP
+B-47 NN
+Valhalla NNP
+resilience NN
+modal JJ
+dicate VBP
+sloppy JJ
+Enver NNP
+disinfected VBN
+forcing VBG
+Billiken NNP
+Descartes NNP
+insecticide NN
+paradox NN
+Presentation NN
+scarfing VBG
+Relative JJ
+Harwood NNP
+TeleVideo NNP
+airworthiness NN
+envisions VBZ
+Warners NNS
+falsify VB
+kale NN
+Zycher NNP
+steering NN JJ VBG
+leaned VBD VBN
+out-of-the-way JJ
+proposed VBN VBD VBP VBN|JJ JJ
+spray-dried JJ
+fastest JJS RBS
+bounced VBD VBN
+PAYMENTS NNS
+unthinking JJ
+moving VBG JJ NN
+Reebok NNP
+paragraphing NN
+Waycross NNP
+scroll NN
+Might MD
+Fyodor NNP
+video-game NN
+swimsuits NNS
+longterm JJ NN
+Lehne NNP
+endearments NNS
+cobalt-60 NN
+ballyhooed VBN
+Moreira NNP
+disengagement NN
+Abell NNP
+malevolent JJ
+Giuliani NNP
+staphylococcus NN
+freelance JJ
+Sudol NNP
+commodity-oriented JJ
+self-styled JJ
+Confucius NNP
+Sink NNP
+Aspencades NNPS
+Koreagate NNP
+deposit NN VB VBP
+XL\/Datacomp NNP
+dainty-legged JJ
+Cathcart NNP
+gender NN VB
+business-oriented JJ
+lunger NN
+bomb-proof JJ
+Ticket NN
+Star NNP JJ NN
+Wilhite NNP
+stink NN VBP
+womanizing VBG
+Realty NNP
+Savona NNP
+post-chemotherapy JJ
+derivations NNS
+Ecolab NNP
+Shemona NNP
+Vacaville NNP
+Stuttgart-based JJ
+compile VB
+delayed VBN JJ VBD
+fiction-writer NN
+Intelsat NNP
+piss VB
+indemnity NN
+d'etre FW NN
+receipt NN
+topical JJ
+vow NN VBP
+Tumbling JJ
+feasting VBG
+LDS NNP
+Ueberroth NNP
+impressionistically RB
+Rent NNP NN
+appropriators NNS
+bean-counting NN
+diagnometer NN
+believes VBZ
+anastomosis NN
+veining NN VBG
+.9.92 CD
+Shimon NNP
+Owings NNP
+Waterloo NN NNP
+computer-power-supply NN
+aftertax JJ NN
+pseudonymous JJ
+full-spectrum NN
+Dubnow NNP
+innings NN NNS
+Weissman NNP
+Gradmann NNP
+Partnership NNP
+weeknights NNS
+presale JJ NN
+name-calling NN
+Reproductive NNP
+Hooray UH
+BDDP NNP
+mid-70s CD
+Herschel NNP
+service NN VB VBP
+biographies NNS
+physical JJ NN
+Malay-based JJ
+DDB NNP
+feline JJ
+Rohs NNP
+demons NNS
+Pompeii NNP
+fluting NN
+easement NN
+Homeowner NNP
+Arpanet NNP
+Hamiltonians NNPS
+era NN
+singed VBD
+dispensation NN
+Cypress NNP NN
+Gresham NNP
+ozone-forming JJ
+twister-coners NNS
+frenzied JJ
+muscatel NN
+specifies VBZ
+Location NNP NN
+Lujan NNP
+derogatory JJ
+nondriver NN
+comma NN
+decontamination NN
+foreleg NN
+Transcendentalists NNPS
+baton NN
+double-wall JJ
+Rafael NNP
+highness NN
+leathered JJ
+Within IN
+the... :
+pollution-causing JJ
+Study NNP NN VB
+Tattingers NNPS
+corporate-owned JJ
+Re-enactments NNS
+made VBN VBD JJ
+hors FW
+yrs. NNS
+doughty JJ
+chart NN VB VBP
+Rumasa NNP
+employed VBN VBD
+God-forsaken JJ
+cable-television NN
+sending VBG NN
+Simes NNP
+Chukchi NNP
+Greylag NNP
+shelves NNS
+Maryinsky NN
+older-skewing JJR
+seep VB VBP
+detective NN
+B-52 NNP NN
+merchandised VBN
+seasonality NN
+Sweat NN
+lover NN
+adventurist JJ
+MAJOR JJ
+COS. NNP
+Lawmakers NNS NNPS
+courts NNS VBZ
+Lefcourt NNP
+chortled VBD VBN
+Holman NNP
+Retrovir NNP
+Shades NNP
+adapting VBG NN
+substantive JJ NN
+non-striking JJ
+Crowd NNP NN
+corporate-settlement NN
+Rommel NNP
+sweatshirts NNS
+Watkins-Johnson NNP
+mateless JJ
+runaway JJ VBN NN
+Department-sponsored JJ
+Kerr NNP
+Alto NNP
+Australia NNP
+masts NNS
+Hanover-Mauri NNP
+Ittleson NNP
+shredded JJ VBD
+handless JJ
+walk VB VBP NN
+cope VB NN
+Bostonians NNPS
+bleached JJ VBN
+post-operative JJ
+alertly RB
+Verey NNP
+wire NN VB
+BLIP NNP
+Learning NNP VBG
+Asserts VBZ
+Malin NNP
+traditionnel FW
+Kitaro NNP
+-ism NN
+privileged JJ
+Gaja NNP
+projecting VBG
+stock-selection JJ
+doubloon NN
+south-central JJ
+kangaroo-committee NN
+Wilcock NNP
+Audits NNPS
+metaphysics NNS NN
+post-colonial JJ
+evaders NNS
+Humpty NNP
+Eurofima NNP
+Korando NNP
+Sail NNP
+harmonious JJ
+gimmick NN
+defensiveness NN
+Presbyterian NNP
+pompous JJ
+Galway NNP
+Subject NN JJ
+congeniality NN
+Arena NNP
+Ghettos NNPS
+environmental JJ
+Qualitative JJ
+Mr. NNP NN
+personal-property NN
+Xyvision NNP
+conditioning... :
+pleasure NN JJ VB
+dark-squared JJ
+Schwarzenberger NNP
+Five-Year NNP
+Szanton NNP
+Automatically RB
+Land NNP VBP NN
+toss VB NN VBP
+SIGNED VBN
+UBS NNP
+constitutionally RB
+Hammerschmidt NNP
+Sappho NNP
+pant NN
+influences NNS VBZ
+parlayed VBD
+Suh NNP
+Purpose NNP NN
+honest JJ
+Ovalle NNP
+stabs NNS VBZ
+voyager NN
+Undersecretary NNP
+delivers VBZ
+management-information JJ NN
+Horne NNP
+Zantac NNP
+disorganization NN
+gathering NN VBG
+Barrios NNP
+coordinating VBG NN
+sequenced VBN
+formalities NNS
+grader NN
+consonantal JJ
+plainer JJR
+nondairy JJ
+APV NNP
+nodes NNS
+Outokumpu NNP
+Nacht FW
+seeds NNS
+degrade VB
+Rinehart NNP
+dirt NN JJ
+woman NN VB
+SS. NNP
+Saloon NNP
+bitter JJ
+subindustry NN
+styles NNS
+Waldo NNP
+common-position JJ
+Feinstein NNP
+questions NNS VBZ
+Dealing VBG
+Smokers NNS
+Barokocy NNP
+Lilien NNP
+Igor NNP
+breached VBD VBN
+breeches NNS
+advanced-technology JJ NN
+MBB NNP
+one-plane JJ
+hibernate VBP VB
+SELLING NNP VBG
+minimum-fee JJ
+collaborates VBZ
+Mehta NNP
+Bostic NNP
+outpouring NN
+Cipolla NNP
+Huntsville NNP
+Mustard NN
+darkest JJS
+Nap NNP
+enumeration NN
+association NN
+weighted JJ VBD VBN
+non-packaging JJ
+Italo NNP
+superstar NN
+mittens NNS
+tetrachloride NN
+son-in-law NN
+Gulick NNP
+Victoria NNP
+Adonis NNP
+second-time JJ
+Blackpool NNP
+sorest JJS
+Grain NNP NN
+lunges VBZ
+income-oriented JJ
+Sabras NNS
+surgeries NNS
+Mudugno NNP
+sickroom NN
+videotex NN
+A.M. NNP NN RB
+fifth-grade NN
+PRICIEST JJS
+disturbed VBN VBD JJ
+curse NN VB
+Lower-than-expected JJ
+cook NN VB VBP
+behooves VBZ
+Rostenkowski NNP
+Monel NNP
+cartoonist NN
+anti-Negro JJ
+Gaining VBG NNP
+identity-management NN
+Hefner NNP
+TOYOTA'S NNP
+graveyard NN
+Acts NNPS
+MEXICAN JJ
+Yell NNP
+churn VB VBP
+rundown NN JJ
+mini-revolution NN
+degenerates VBZ
+space-time JJ
+venereal JJ
+Marxist-leaning NNP
+Intermark NNP
+Meteorological NNP
+Zen-like JJ
+Mariam NNP
+genuine JJ
+sprinkler NN
+obedience NN
+Congresswoman NNP
+Ditmar NNP
+Fredericton NNP
+Registered VBN NNP
+Invariably RB
+checkers NNS
+management-research NN
+movie-themed JJ
+employee NN
+clampdowns NNS
+W.W. NNP
+Philadelphia-based JJ
+Cerus NNP
+vultures NNS
+downplaying VBG
+pestilence NN
+roost VB NN
+cholesterol-free JJ
+bulb NN
+outdrew VBD
+drinker NN
+IVF NNP
+Vowing VBG
+enduringly RB
+yield-hungry JJ
+Speaking VBG NN NNP
+Iowa NNP
+pierced VBN VBD
+shoring VBG
+Strongin NNP
+Anania NNP
+Anthea NNP
+clicks NNS VBZ
+fainted VBD VBN
+woodshed NN
+hunching VBG
+disease NN
+Atonio NNP
+Brieff NNP
+nacelle NN
+Lions NNP
+Tom NNP
+cyclicality NN
+scribing NN
+blurry JJ
+Oswego NNP
+whoever WP
+Symes NNP
+unadjusted JJ
+field-service JJ
+crops NNS VBZ
+Effoa NNP
+ribcage NN
+eighty-year-old JJ
+raft NN
+pecan NN
+overcharging VBG
+laypersons NNS
+Azioni NNP
+Climbing VBG
+chairing NN
+MICROPOLIS NNP
+auditioning VBG
+flyways NNS
+three-and-a-half JJ
+Durmoy NNP
+characterized VBN VBD JJ
+inbound JJ
+FiberCom NNP
+recycling NN VBG|NN VBG
+half-past JJ
+Levinson NNP
+Deity NN
+Before IN NNP RB
+guerrilla NN JJ
+fungus NN
+signatures NNS
+deceive VB
+Dustin NNP
+irrationality NN
+Monogamy NN
+Waggoner NNP
+cavin VBG
+Telegraphie NNP
+corrosion-resistant JJ
+Spinoffs NNS
+tombstones NNS
+farflung NN
+Facetious NNP
+Hofstad NNP
+Stoops NNP
+Bardall NNP
+aviary NN
+Clive NNP
+computer-marketing NN
+Kakutani NNP
+greats NNS
+CF6-6 NNP NN
+waning VBG
+dun NN
+heaped VBN VBD
+low-lifes NNS
+Johansson NNP
+editorial-page NN JJ
+masters NNS
+Bradley NNP NN
+Restudy VB
+redneck NN
+informally RB
+thousands NNS CD
+semi-precious JJ
+coverage NN
+president-marketing JJ
+Bourse NNP FW
+debt-to-assets JJ
+Kneeling VBG
+Accudyne NNP
+loves VBZ NNS
+burne VB
+numb JJ
+Smaby NNP
+maneuver NN VB
+said:`` ``
+Jerebohms NNP
+depended VBD VBN
+Kiddie NNP
+Korbich NNP
+Quek NNP
+enacted VBN VBD
+IATA NNP
+C.E. NNP
+filers NNS
+Thrombinar NNP
+Fearful JJ
+many-much NN
+Grammys NNS
+dashes NNS VBZ
+tropocollagen NN
+bulldog JJ
+relaxer NN
+asserting VBG
+SEEK VB
+Crowe NNP
+Canadian-owned JJ
+H-P NNP
+terrified VBN JJ VBD
+disclose VB VBP
+toadying JJ
+Mohamad NNP
+non-circumvention NN
+tollgate NN
+sound\ JJ
+Advisory NNP JJ NN
+Missionary JJ NN NNP
+invisibles NNS
+adroit JJ
+shaver NN
+self-incrimination NN
+perimeter NN
+Errol NNP
+enraged JJ VBD VBN
+Tanganika NNP
+Baeyenses NNP
+ostentatiously RB
+voyages NNS
+Chicago-style JJ
+Rotunda NNP
+seeped VBD VBN
+Mired NNP
+Gabler NNP
+unhealthily RB
+unsanctioned JJ
+second-half JJ NN
+dumbbells NNS
+goosey JJ
+scramble NN VBP VB
+Clair NNP
+Indeed RB UH
+glistening VBG
+Back-of-the-envelope JJ
+locomotive NN
+votive JJ
+wall NN VBP VB
+switch NN VB VBP
+music NN
+R-6th NNP
+tendering VBG NN
+thwart VB NN RB
+Frequent-flier JJ
+Navajo NNP
+Angellism NNP
+ousting VBG
+loan-to-value JJ
+Chicopee NNP
+artfully RB
+Munich-based JJ
+Childe NNP
+Bloomingdale NNP
+acted VBD VBN
+Twenty-second NNP JJ
+B-I-G NNP
+proliferated VBN VB VBD
+Protege NNP
+grades NNS
+Iberian NNP JJ
+upward RB JJ
+glands NNS
+newdrug NN
+slot NN
+sprinkles VBZ
+betwen NN
+air-to-air JJ
+buckets NNS
+quadrillion CD
+narrowly RB
+Guyana NNP
+stench NN
+stumbling-block NN
+autopsies NNS
+baseball-card JJ
+Icahns NNP
+.'crack NN
+smile NN VB VBP
+recession-sensitive JJ
+Gottlieb NNP
+decontaminated VBN
+store-sales NN
+Colts NNP
+intimidating VBG JJ
+already-developed JJ
+Bedford NNP
+Fisheries NNP NNPS
+weaker-than-expected JJ
+Lane NNP NN
+Mia NNP
+mascara NN
+Plato NNP NN
+DAT NNP
+slogs VBZ
+Zimmerman NNP
+now-vacant JJ
+Aggressive NNP
+Mather NNP
+radical-moderate JJ
+overbroad JJ
+steaks NNS
+eyelids NNS
+thuringiensis FW
+Money-market NN
+counterbalanced VBN
+Swede NN
+vessel NN
+enlargements NNS
+local-news NN
+Donner NNP
+man. NN
+soccer NN
+Hughey NNP
+newcomer NN
+foreign-movie NN
+Cluett NNP
+socking VBG
+Galecke NNP
+oil NN
+Rindos NNP
+browbeat VB
+indirect JJ
+closedown NN
+futuristic JJ
+Sticker NN
+exponents NNS
+Initiation NN
+self-indulgent JJ
+inflation-free JJ
+Pallavicini NNP
+Bushels NNS
+suitcases NNS
+Ditch NNP NN
+syringes NNS
+geosciences NNS
+qualitatively RB
+cajun JJ
+Consciousness NN
+Nabokov NNP
+cotton-growing JJ
+unifications NNS
+Diesel NNP NN
+pin-point JJ
+shaken VBN JJ
+truly RB
+whispered VBD VBN JJ
+merchandisers NNS
+CBS-owned JJ
+farewell NN UH
+Lyons NNP
+fruitless JJ
+Artois NNP
+Marian NNP
+Gives VBZ
+sociopath NN
+Connolly NNP
+tree NN
+Patman NNP
+Residence NNP
+connoisseur NN
+shocking JJ VBG
+ferocity NN
+cool JJ NN RB VB VBP
+Scheetz NNP
+BROKERAGE NN
+brighten VB
+Maintaining VBG
+bag'em NN
+evidence... :
+canter NN
+antebellum JJ
+hysteria NN
+Kong NNP
+under-achievers NNS
+codes NNS
+harmonization NN
+heeds VBZ
+announce VB VBP
+drummed VBD VBN
+airline-landing JJ
+pubs NNS
+falsehoods NNS
+passionately RB
+pretext NN
+Organization NNP NN
+cable NN VBP JJ
+recipe NN
+disco NN
+messhall NN
+Hurd NNP
+resistant JJ NN
+greasy JJ
+Switches NNS
+Sarasate NNP
+facial JJ
+congressionally RB
+bronc NN
+Milties NNP
+off-balance JJ
+not-less-deadly JJ
+full-throated JJ
+verbs NNS
+Together RB NNP
+mutual-funds NNS
+Ashton-Tate NNP
+business-related JJ
+WNBC-TV NNP
+PWA-owned JJ
+Conroy NNP
+Traditionally RB
+wide-eyed JJ
+renounce VB
+Rowley NNP
+breather NN
+bundles NNS
+smithy NN
+orchestra NN
+expressway NN
+summate NN VB
+Dim VBP
+snowed VBD
+fifty-four CD
+consensus NN
+McCormick NNP
+entertain VB
+Opinions NNS NNPS
+ninety-two CD
+Johnstone NNP
+Granite NNP
+entropy-increasing JJ
+Sherblom NNP
+raid NN VB
+necklaces NNS
+astrophysics NNS
+fueloil NN
+Commander NNP
+warty JJ
+nonminority NN
+Defendant NN
+Trusk NNP
+hymn NN
+Peruvian JJ NNP
+Democratic-led JJ
+Crusaders NNPS NNS
+good-hearted JJ
+fixed-income NN JJ
+Sellars NNP
+soil-nutrients NNS
+aggrandizing VBG
+fix VB VBP NN
+retrain VB
+undressed VBD
+daunting JJ VBG
+embezzlement NN
+Intermec NNP
+Benedick NNP
+unusally RB
+knuckleball NN
+gored VBN
+well-turned-out JJ
+Cranston-Mitchell NNP
+pornography NN
+Reversal NNP
+DeVillars NNP
+homeownership NN
+Refunds NNS
+Sovietized JJ
+relaxes VBZ
+forty-eight CD
+narrow JJ VB
+Surmanek NNP
+teeming VBG
+cheap-money NN
+whatever WDT RB WP
+Anybody NN
+Emanuel NNP
+Gumbel\/Walt NNP
+parses VBZ
+Stevric NNP
+Carmer NNP
+million-square-foot JJ
+enchantingly RB
+Alison NN
+tweed NN
+lifer NN
+Polystyrene NNP NN
+gadfly NN
+.40 CD
+Moneyed NNP
+toasted VBD VBN
+school-lunch NN
+rooted VBN JJ
+Baines NNP
+guzzlers NNS
+toto FW
+swirls NNS
+Tartikoff NNP
+High-tension JJ
+heroics NNS
+grit-impregnated JJ
+Paradoxically RB
+confidences NNS
+bullet NN
+scowled VBD
+postponing VBG
+one-over-par JJ
+shaves VBZ
+participates VBZ
+Bud NNP
+silent JJ
+Zambia NNP
+Berri NNP
+staunch JJ VB
+Sims NNP
+hipline NN
+mortgage-insurance JJ NN
+battles NNS VBZ
+Skopbank NNP
+Stahl NNP
+adult-literacy NN
+Gables NNP NNPS
+H.M.S.S NNP
+grads NNS
+mudslinging NN
+CGP NNP
+stocking VBG NN
+Woodcliff NNP
+cadenza NN
+romantic JJ NN
+imbued VBN
+company-managed JJ
+depreciating VBG
+Frelinghuysen NNP
+seer NN
+MAI NNP
+Invest\ NNP
+villager NN
+heart-rending JJ
+duo NN
+Salomon NNP NN
+bassist NN
+Inspectorate NNP
+gaucheries NNS
+dispossession NN
+minorities NNS
+Juras NNP
+quantification NN
+Discussions NNS
+Cech NNP
+gloomily RB
+birthdays NNS
+Xylogics NNP
+journalist NN
+Rutherford NNP
+conclaves NNS
+Garment NNP
+monochrome JJ
+Oldsmobile NNP
+Gibault NNP
+C/NNP.A.J. NNP
+paunch NN
+humbly RB
+incidents NNS
+Surprising JJ
+choosy JJ
+trumpets NNS VBZ
+Environmentalists NNS NNPS
+superstition NN
+Nike NNP
+Retin-A NNP
+perquisites NNS
+hopelessly RB
+Pecorone NNP
+Yasser NNP
+blarney NN
+whipsawing NN VBG
+Cheap JJ
+KKK NNP
+DISPLAYED VBD
+Riverboat NNP
+resurrects VBZ
+creases NNS
+Nevah NNP
+pertinence NN
+nostalgically RB
+remitted VBN
+Clapper NNP
+Oistrakh NNP
+recollectivization NN
+outcuss VBZ
+subsidiaries NNS
+Snyder NNP
+Lindsey NNP
+handhold NN
+Sain NNP
+capital-punishment NN
+Compton NNP
+Pankowski NNP
+chemical-bomb NN
+infirm JJ
+CABLE NN
+unswagged JJ
+Richmond-Petersburg NNP
+Galvin NNP
+Abend NNP
+tolerable JJ
+Texasness NN
+Drag VB
+pro-student JJ
+superstitious JJ
+lawmaker NN
+diagramming VBG
+squeamishness NN
+prospectuses NNS
+Momma NNP
+locomotives NNS
+Bobbsey NNP
+Chinese-Soviet NNP
+subverts VBZ
+lordly JJ
+snowsuit NN
+braiding VBG
+Caitlin NNP
+Guidance NN NNP
+arrange VB VBP
+disarmingly RB
+Evangelista NNP
+angle NN VB
+shout VB VBP NN
+thirdquarter JJ NN
+breathes VBZ
+molecule NN
+child-abuse NN JJ
+Philosophy NN NNP
+spoon-feed VB
+Terpers NNPS
+Amon NNP
+economically RB
+magpies NNS
+Icelandic NNP
+chute NN
+Margolin NNP
+Weller NNP
+tightly RB
+carryforwards NNS
+elaborates VBZ
+infiltrated VBN VBD
+Ultracentrifugation NN
+dispensed VBN VBD
+Simpson NNP NN
+Schrunk NNP
+good-quality JJ
+cartel NN
+better-selling JJ
+Turbofan NN
+Single-seeded JJ
+splendid JJ
+nutrition NN
+university-educated JJ
+dimming VBG
+policy-research NN
+undulated VBD
+brewer NN
+``` NN VB
+hesitancy NN
+merriment NN
+fenoldopam NN
+callously RB
+camcorder NN
+philodendron NN
+retrieved VBN VBD
+U.S.-about IN
+coddled VBN
+Nineties NNPS
+metering VBG
+Space-net NNP
+psychoanalysis NN
+iodinated VBN
+Utopia NNP NN
+West NNP NNS NNPS JJ NN RB
+disguised VBN VBD JJ
+windshield NN
+Adamski NNP
+Twenty-one CD
+.292 CD
+Noriega NNP NN
+short-term JJ NN RB NNP
+Elegance NN
+depicting VBG
+reiterate VB VBP
+Leadbetter NNP
+asteroid JJ NN
+Floridian NN
+facto FW JJ NN
+thirtieth JJ
+big-league JJ
+regenerating VBG
+ear-piercing JJ
+ill-starred JJ
+safekeep VB
+gross-profit NN
+Lehman\/American NNP
+notions NNS
+glop NN
+coercive JJ
+EPO-treated JJ
+Tyner NNP
+hollowness NN
+Bramalea NNP
+officiating VBG
+Akzo NNP
+Holabird NNP
+fetus NN
+Average NNP JJ NN
+loco FW
+anti-Japanese JJ
+Otte NNP
+small-company NN JJ
+departure NN
+incentives NNS
+flats NNS
+crusader NN
+scene NN
+will-to-power NN
+Petrovich NNP
+same-store JJ CD
+U.S.-China NNP JJ
+Finevest NNP
+Hungary NNP JJ
+jerk NN VB
+inarticulate JJ
+widgets NNS
+cheered VBD VBN
+stately JJ
+Parkhaji NNP
+four-foot-high JJ
+Tightened JJ
+Pork NNP NN
+construction-management JJ
+Grist NNP
+workmanlike JJ
+Garvey NNP
+Gilt NNP
+Whee NNP
+Existing VBG JJ
+Consider VB NNP
+PepsiCo NNP
+Lotus NNP NN
+fivefold JJ RB
+parched VBN VBD JJ
+Start-up JJ
+Weinstein NNP
+villages NNS
+Inspect VB
+W/NNP.A. NN
+Erhart NNP
+collaborate VB VBP
+Zirbel NNP
+Inter-american NNP
+Eligio NNP
+disarray NN
+Placement NNP NN
+founds VBZ
+disrepair NN
+Kibbutzniks NNS
+Pocketing VBG
+semi-arid JJ
+Passion NNP
+timid JJ
+Handler NNP NN
+kinked JJ
+McKinzie NNP
+skin-care JJ NN
+out-smart VB
+goat-drawn JJ
+Riley NNP
+editors NNS
+Electrical NNP JJ
+Sylvia NNP
+ARM NNP NN
+wakes VBZ
+Witten NNP
+A. NNP JJ LS NN
+mud NN
+purportedly RB
+ITS PRP$
+dominating VBG JJ
+mower NN
+Earthquake-related JJ
+warfare NN
+Augusta NNP
+stylistic JJ
+lifes NNS
+Yaddo NNP
+lobular JJ
+Walzer NNP
+downhill RB JJ
+Parrillo NNP
+Hardy NNP
+Low-interest-rate JJ
+agricolas FW
+expends VBZ
+Kathy NNP NN
+recapitulation NN
+belongs VBZ
+Vattern NNP
+Upped VBN
+prospectively RB
+knocks VBZ NNS
+convenient-type JJ
+pariah NN
+plummeted VBD VBN
+Announcement NN
+Moscow-based JJ
+Labaton NNP
+vacating VBG
+Democratic-endorsed JJ
+Scopo NNP
+Plaster NNP NN
+German-Italian JJ
+wound NN VBD VBN VB
+sustenance NN
+small-time JJ
+cons NNS
+Saffer NNP
+PLEA NN
+communicational JJ
+embroiled VBN
+DRI\/McGraw-Hill NNP
+Geometric NNP JJ
+meritocracy NN
+starred VBD VBN
+Bogartian JJ
+eschewing VBG
+uncommunicative JJ
+trickier JJR
+Run-down JJ
+Arpege NNP
+caraway JJ NN
+loblolly NN
+amass VB VBP
+thinly RB
+Sutcliffe NNP
+plunge NN VBP VB
+l. DT NN
+left-hand JJ
+much-larger JJ
+lower-paid JJ
+Brooke NNP
+Bacardi NNP
+Ito-Yokado NNP
+philanthropists NNS
+oligarchs NNS
+Holley NNP
+gagline NN
+Teens NNS
+Too RB NNP
+Historical NNP JJ
+presentlye NN
+surpass VB VBP
+Koopman NNP
+stipulated VBD VBN
+corpocrat NN
+Type-O JJ
+contributors NNS
+Comerica NNP
+nerve-racking JJ
+informatics NNS
+consisted VBD VBN
+pleasing JJ NN VBG
+Unemployed JJ NNP
+humor NN VB
+sees VBZ
+I-5 NNP
+Copenhagen NNP
+Mackinack NNP
+Malibu NNP
+Linter NNP
+neighborhood NN
+planting VBG NN
+lanzador FW
+startling JJ VBG
+Lending NN VBG
+statistically RB
+planks NNS
+scoffing NN
+Orchesis NNP
+Timna NNP
+exhilarated VBN
+self-seeking JJ NN
+adobe NN
+peg VBP NN VB
+radioclast NN
+geeing VBG
+presentational JJ
+spark VB NN VBP
+impoundments NNS
+notched-stick JJ
+vilifying VBG
+earnestness NN
+murky JJ
+multipronged VBN
+this DT RB PDT
+pull-out NN
+toothbrushes NNS
+Bonds NNS NNP NNPS
+ag NN JJ
+less-effective JJ
+skylarking VBG
+c-Excludes VB
+Selmer-Sande NNP
+portrays VBZ
+Bronner NNP
+pasted-in JJ
+Garibaldi NNP
+weak-kneed JJ
+Euroflics NNPS
+Veslefrikk NNP
+joint-production JJ
+seriousness NN
+barrel-chested JJ
+maintained VBN VBD
+defense-industry JJ NN
+commerical JJ
+winding-clothes NNS
+fonts NNS
+draftsmen NNS
+C$ $
+Olof NNP
+Welles NNP
+dispensary NN
+placing VBG NN
+Callable JJ
+pretrial JJ
+cattle-car NN
+slight JJ VBP NN
+Introducing VBG
+Turk NNP
+admonition NN
+converge VB VBP
+Matsu NNP
+F.R. NN
+improvisational JJ
+contributor NN
+pill-factory JJ
+Butter-Nut NNP
+congeal VB
+crusades NNS
+replaster VB
+Rankin NNP
+Hypothalamic JJ
+Crosbie NNP
+chords NNS
+interpolations NNS
+beak NN
+affluent JJ NN
+Explains VBZ
+shipload NN
+ultrasonic JJ
+Ricci NNP
+oscillating VBG
+Curtiss NNP
+Churchyard NNP
+Thorpe NNP
+splotched JJ
+Lang NNP JJ
+Hoak NNP
+Sino-foreign JJ
+Urge VB
+redistricting VBG NN
+Lita NNP
+Foggy NNP
+Tickell NNP
+furrier NN
+Prevents VBZ
+overfunding NN
+suzerain NN
+metalsmiths NNS
+self-discipline NN JJ
+laggardness NN
+Interviewed VBN
+non-tariff JJ
+showers NNS
+individual-contributor NN
+Lerach NNP
+circular JJ NN
+motion-pattern NN
+Trujillo NNP
+confrontational JJ
+Vanities NNS NNPS NNP
+fourth-ranked JJ
+Globocnik NNP
+thump-thump NN
+Dellwood NNP
+reflexively RB
+pries VBZ
+Campeau-related JJ
+toilsome JJ
+reeked VBD
+Naga NNPS
+office-products NNS
+semi-abstract JJ
+It's NNP NNS
+drab-haired JJ
+agreeing VBG
+loved'em NN
+anxiety NN
+accompaniment NN
+Fairness NNP NN
+hassling VBG
+Torell NNP
+tiniest JJS
+Eisenhower NNP JJR
+Lockheed NNP VBN
+Szeto NNP
+Suggested VBN JJ
+suburbanites NNS
+beauty-care JJ
+merchandise NN
+kali FW
+Nationale NNP
+sway-backed JJ
+guns NNS VBZ
+Happens VBZ
+Airedales NNPS
+craning VBG
+integrating VBG
+unprofitable JJ
+Macel NNP
+negociants NNS
+queried VBN VBD
+Bajakian NNP
+long-sought JJ
+Trouble-free JJ
+Cuban JJ NNP
+followthrough JJ
+Zeitgeist NNP
+Corp.:8.725 NNP
+Italianate JJ
+dither NN
+Lube NNP
+Eshleman NNP
+excels VBZ
+Yamamoto NNP
+shadows NNS
+R.S. NNP
+earth-tone NN
+Nippur NN
+Melsungen NNP
+imposed VBN VBD JJ
+raged VBD VBN
+now-smaller JJ
+rededicate VB
+market-revision NN
+unrivaled JJ
+quadrupled VBN VBD
+Decca NNP NN
+shortages NNS
+growth-fund NN
+thicknesses NNS
+teakwood NN
+Sinan NNP
+Leventhal NNP
+Shelton NNP
+Exemption NN
+construction-related JJ
+Lamm NNP
+data-handling NN
+issuing VBG
+bovine JJ NN
+MacLeishes NNPS
+centuries NNS
+for-profit JJ
+deafness NN
+maquilas NNS
+critcism NN
+volley NN
+blood-thirsty JJ
+RUSSIANS NNS
+Dial NNP
+southerly JJ
+Uhlmann NNP
+Datapoint NNP
+Auto NN NNP
+furtively RB
+recraft VB
+Score VB NN
+controlling VBG JJ NN
+nominal JJ NN
+H.J. NNP
+werewolves NNS
+ECU-based JJ
+pantomimic JJ
+Booths NNS
+spineless JJ
+non-fat JJ
+hustings NN
+Jaime NNP
+hypothalamic-cortical JJ
+soft-heartedness NN
+Snedaker NNP
+transmissible JJ
+Fukuda NNP
+Ormstedt NNP
+connection NN
+Clemens NNP
+machetes NNS
+gibbet NN
+lustrious JJ
+whorls NNS
+Reader NNP
+Foil NNP
+MBE NNP
+Landau NNP
+Schwerdt NNP
+wanting-to-be-alone JJ
+DECstation NNP
+tirade NN
+ever-anxious JJ
+Zucker NNP
+anhydrously RB
+cockatoo NN
+Boym NNP
+tenor NN
+Elected VBN
+boatsmen NNS
+confronts VBZ
+Menomonee NNP
+THERE'S VB
+registry NN
+scaled-backed JJ
+Tadzhikistan NNP
+activity NN
+ruddy JJ RB
+Confuted NNP
+speedy JJ
+coming VBG JJ NN
+unrecognized JJ
+Alacrity NNP
+cont VBN
+Microsystems NNPS NNP
+breaking-out NN
+local-content JJ NN
+Francophone JJ
+Campus NNP NN
+rough-and-ready-sounding JJ
+Killingsworth NNP
+Benefactor NNP
+larval JJ
+Hackett NNP
+Spraying VBG
+usher NN VBP VB
+criminality NN
+reader-friendly JJ
+ITT NNP
+under-reported JJ
+diva NN
+Warmly RB
+Roybal NNP
+accosted VBN VBD
+shedding VBG NN
+laudanum NN
+rider-fashion JJ
+picturing VBG NN
+fourth-down NN
+circulation NN
+amusements NNS
+wrestler NN
+well-run JJ
+lakes NNS
+Fab NNP
+Ansco NNP
+Apostolakis NNP
+bower NN
+Overtega NNP
+merger-related JJ
+peals NNS
+Beaming VBG
+turnout NN
+Aerospatiale NNP
+woulda MD
+Truth NN NNP
+half-acceptance NN
+drumlin NN
+minus CC FW IN JJ NN
+ersatz JJ
+self-assertion NN
+Buzzy NNP
+Mmes. NNPS
+Coward NNP
+explicity NN
+Garratt NNP
+impetuous JJ
+flyers NNS
+reappearing VBG
+filmmakers NNS
+Monticciolo NNP
+urgently RB
+forensic JJ
+Hazelwood NNP
+ham NN
+breakaway NN
+undistinguished JJ
+winnowing NN
+fascinatingly RB
+unanimity NN
+pathology NN
+Fraga NNP
+pre-financed JJ
+stuck VBN VBD JJ
+powdered JJ VBN
+tranquil JJ
+coordination NN
+particularistic JJ
+industrial-vehicle NN
+affects VBZ NNS
+M.Ed NNP
+Crystallographic JJ NNP
+Hogue NNP
+agonizing JJ
+Louella NNP
+walked VBD VBN
+responds VBZ
+preadmission NN
+starstruck JJ
+mega-crashes NNS
+co-written VBN
+pantheist NN
+calories NNS
+decomposition NN
+unfocussed VBN
+spring-back JJ
+Implores VBZ
+Sears-McDonald NNP
+meatpacker NN
+Top JJ NNP NN
+liking NN VBG
+peeled VBN VBD
+fill VB VBP NN
+Knots NNP
+uplift NN VB
+invented VBN VBD
+stop-shipment JJ
+U.S.-Czech JJ
+Crusade NNP NN
+Diagnostic NNP
+contested VBN JJ VBD
+Flock NNP
+brighter JJR
+observational JJ
+reportedly RB
+Traditionalists NNPS
+-20-degrees-C CD|NN|NP
+Windflower NNP
+noncommissioned JJ
+camel NN
+pleats NNS
+Gesualdo NNP
+quash VB
+deflationary JJ
+Huskins NNP
+southernmost JJ
+J.B. NNP
+sexual JJ
+banning VBG NN
+adoptive JJ
+slow JJ VBP RB VB
+Oaklanders NNPS
+Immunetech NNP
+unlocking VBG
+half-interest NN
+Veba NNP
+Pease NNP
+Consitutional JJ
+Schweizer NNP
+chuckling VBG
+fleshy JJ
+stereotypes NNS
+offered VBN JJ VBD VBN|JJ
+guarantor NN
+underworked JJ
+prohibitively RB
+Usually RB
+inactive JJ
+almond NN
+delivery NN
+driven VBN JJ
+one-party JJ
+gift-products NNS
+Person NNP NN
+Presence NNP
+timorous JJ
+actuarial JJ
+pagoda NN
+enterprising JJ
+BLS NNP
+type NN VB
+glittered VBD VBN
+Highfield NNP
+massage NN VB
+Yogi NNP
+forceful JJ
+characterizes VBZ
+decline NN VB VBP
+puzzle NN VB
+CD-4 NNP
+orchestrating VBG
+minutiae NNS
+Brady-type JJ
+overcapacity NN
+Poppins NNP
+onion NN
+incongruities NNS
+ah UH VBP
+Newtown NNP
+Overhead NN RB
+eatery NN
+THR NNP
+package-sort JJ
+slighter JJR
+ere IN
+Digest NNP NN
+T'ai-Shan NNP
+unqualifiedly RB
+Chandra NNP
+phonology NN
+bondholder NN
+incomparable JJ
+betas NNS
+Sperry NNP
+Zhitkov NNP
+Manske NNP
+Experimental JJ
+sidetracked VBD
+girlie NN
+wand NN
+Locking VBG
+softening VBG JJ NN
+rector NN
+post-Deng JJ
+insiders NNS
+air-cargo NN
+Dwarfing VBG
+literacy NN
+Japanese-language JJ NN
+peaky JJ
+squelch VBP
+selfless JJ
+long-lasting JJ
+Sunward NNP
+behahn RB
+reindicting VBG
+Particular JJ
+McKeever NNP
+Whence WRB
+tendency NN
+sextet NN
+redone JJ NN
+Mozart NNP
+Medical NNP JJ
+insuperably RB
+pickup-bed NN
+catapulted VBD VBN
+wicker NN
+Sake FW
+U.S.-style JJ
+savings-and-loan JJ NN
+Rawlings NNP
+Spitzenburg NNP
+social-security NN
+rhubarb-like JJ
+duck NN VB
+mouse NN
+disclaimer NN
+commission NN VB
+recollect VBP
+festering VBG
+invalidated VBN VBD
+won-lost JJ
+Eisler NNP
+tumor-suppressors NNS
+lease-funded JJ
+inconceivable JJ
+Baby NNP NN
+materially RB
+Beach NNP NN
+rioters NNS
+hardball NN
+Leleiohaku NNP
+chary JJ
+Wah NNP
+nonvoting JJ
+tiff NN
+Clement NNP
+lorazapam NN
+cream-of-the-crop NN
+overly RB
+idea NN
+cones NNS
+confidently RB
+ethicists NNS
+light-hearted JJ
+Visigoths NNPS
+get VB VBP
+suspense NN
+wrestles VBZ NNS
+big-daddy JJ
+Rush-Presbyterian-St NNP
+Dusty NNP
+modulate VBP VB
+dans FW
+salaried JJ
+Ludwig NNP
+frustrating JJ VBG
+.38 CD
+five-volume JJ
+afflicts VBZ
+Waldenbooks NNP
+contributory JJ
+FARMING NNP
+wipes VBZ
+Lish NNP
+Novello NNP
+Mid NNP
+Comanche NNP
+bimbos NNS
+time-strapped JJ
+AIDS-treatment NN
+Designs NNS VBZ
+Presumably RB
+Siegal NNP
+thickly RB
+buckskin NN
+Carnival NNP NN
+Chancery NNP
+well-stocked JJ
+socioeconomic JJ
+crypt NN
+calmest JJS
+Sudanese NNP
+incentive-pay JJ
+Fabric NN NNP
+roots NNS
+grinders NNS
+little-girl JJ
+powering VBG
+townspeople NN
+comparatively RB
+minaces NNS
+Caused VBN
+rocket-bombs NNS
+Haying NN
+Auburn NN NNP
+Development NNP NN
+uranium-waste JJ
+Pinkerton NNP
+anti-Newtonian JJ
+Rushmore NNP
+indicted VBN VBD
+Howell NNP
+butterflies NNS
+ironed VBN
+extinction NN
+navy NN JJ
+CB-radio-style JJ
+babes NNS
+whale NN
+Kabalevsky NNP
+adorable JJ
+Allstate NNP
+tellers NNS
+British-built JJ
+acclaim NN VB
+silently RB
+concentration-camp NN
+SS-20 NNP
+mini-post JJ
+fumes NNS VBZ
+Puritan NNP JJ
+Thereby RB
+Sunlight NNP
+vacationing VBG NN
+Franklyn NNP
+ensue VB VBP
+Wright-style JJ
+breaded VBN
+Cyril NNP
+JT8D-200 NN
+Engler NNP
+especially RB
+acquisition-hungry JJ
+jersey NN
+triumvirate NN
+Cranston NNP
+Wassily NNP
+supervote NN
+businesswoman NN
+Syllabification NN
+prettily RB
+Common NNP JJ
+near IN RB VB JJ
+Nat NNP
+Wrighting NN
+self-served VBD
+shaker NN
+ajar RB
+Tippet NNP
+Deaver NNP
+MADD NNP
+strongest JJS
+Fifty-three JJ
+DEA NNP
+Rossides NNP
+machinery NN
+Nisbet NNP
+Shearson NNP
+marinas NNS
+MARCOS NNP
+railroads NNS
+Colossians NNPS
+Performances NNPS
+dependency NN
+Vanuatu NNP
+untold JJ
+Britten NNP NN
+liquidity NN
+intimidation NN
+Isotechnologies NNPS
+Apartments NNP
+Developed VBN
+talkfest NN
+.337 CD
+reciprocate VB
+make-work JJ NN
+unwholesome JJ
+Back-to-back JJ
+specialist-credit JJ
+clinician NN
+narcosis NN
+Stirs VBZ
+province-wide JJ
+Cabanne NNP
+Ragged JJ
+Careless NNP
+foreigners NNS
+managment NN
+Dip VB
+Subsidizing VBG
+wheelbases NNS
+Grais NNP
+best-hearted JJ
+ring NN VB VBP
+pathogenic JJ
+Meils NNP
+fiftieth JJ
+carrot NN
+re-education NN
+Shareholders NNS NNP
+unholy JJ
+BOC NNP
+Ruys NNP
+baldness NN
+heartfelt JJ
+one-month JJ
+uninformed JJ
+Shinton NNP
+Philadelphia NNP
+ambivalence NN
+Packages NNS
+film NN VB
+U.S.56 CD
+maven NN
+magnets NNS
+less-developed JJ JJR
+seven-fold JJ
+outhouse NN
+mini-saga NN
+uprooted VBN VBD JJ
+retainers NNS
+Madrid-based JJ
+blacker JJR
+Dist. NN
+boomerangs NNS
+han NN
+acquiring VBG
+double-A-rated JJ
+Nortex NNP
+Asked VBN VBD
+catchup JJ NN
+Culp NNP
+solicitors NNS
+just-in-time JJ
+leafing VBG
+Pennell NNP
+repeat VB JJ NN VBP
+Rylie NNP
+understood VBN VBD
+discs NNS
+Popeye NNP
+Elsinore NNP
+thynke VBP
+Imposition NN
+Czeslaw NNP
+Widespread JJ
+deceitful JJ
+anti-militarists NNS
+aria NN
+Knife-grinder NNP
+reject VB VBP
+latecomer NN
+Franke NNP
+summation NN
+Pavlova NNP
+wheezed VBD
+Stat. NNP NN
+Two-year JJ
+computer-game NN
+Bolsa NNP
+Solomonic JJ
+Posh JJ
+self-portrait NN
+Dickman NNP
+beam NN VB
+coquette NN
+Being VBG NNP NN
+Yasushige NNP
+Bohemia NNP
+P*/NNP&G NN VB
+second-hand JJ
+pany NN
+Doctrine NNP NN
+Petrossian NNP
+arrive VB VBP
+pits NNS VBZ
+Algerian JJ NNP
+image NN VB
+non-existent JJ
+seizin VBG
+retracing VBG
+schooldays NNS
+flatulence NN
+Bug NN NNP
+trans-Pacific JJ
+null JJ NN
+Sarsaparilla NN
+deterence NN
+Angolan JJ
+Seminole NNP
+Lehman NNP
+housewarming JJ
+Mancini NNP
+least-cost JJ
+aperture NN
+Since IN RB
+Closed-end JJ
+Rumor NN
+Cotten NNP
+said.`` ``
+Beatty NNP
+contend VBP VB
+postponable JJ
+skyrocketed VBD VBN
+Guenter NNP
+Euralliance NNP
+crosswalk NN
+Atonement NN NNP
+Feminism NN
+Heusen NNP
+Pechman NNP
+trigger VB NN VBP
+rags NNS
+Petty NNP JJ NN
+wane VB VBP NN
+Volkswagens NNPS
+half-baked JJ
+large-denomination NN JJ
+greater-fool JJ JJR
+insolvencies NNS
+reminiscences NNS
+nawt RB
+Boutwell NNP
+NCNB NNP
+microcircuits NNS
+A&M NNP NN
+manometer NN
+riled VBN
+Copiague NNP
+gentility NN
+three-second JJ
+Radio-Television NNP
+inadequacy NN
+Character NN NNP
+safeties NNS
+Pro-life JJ
+underbedding NN
+outguess VB
+sky-high JJ
+oeufs FW
+simultaneously RB
+coop NN
+New-Waver NNP
+Furniture NNP NN
+decanted VBN
+Rayburn NNP
+methods NNS
+Plunkett NNP
+Craton NNP
+Farrar NNP
+Gail NNP
+unscientific JJ
+four-member JJ
+InterMedia NNP
+MCA NNP
+contending VBG
+Occupational-Urgent NNP
+--will MD
+doll-sized JJ
+high-art JJ
+committes NNS
+thigh NN
+purchasing VBG VBG|NN JJ NN
+hoss NN NNS
+early-season JJ
+ai VBP VB VBZ
+Serious JJ NNP
+surfeited VBN
+clips NNS
+anchor NN VBP VB
+Margolis NNP
+onus NN
+magnesium NN
+tire-industry NN
+preceeding VBG
+gentleness NN
+disputed VBN VBD JJ
+denunciations NNS
+Pearl NNP
+cracking VBG JJ NN
+have'the VB
+mastery NN
+bohemian JJ
+courtroom NN
+DiLeo NNP
+fearlessly RB
+lodged VBN VBD
+workmanship NN
+Dian NNP
+investigative JJ
+Shui NNP
+Forty-third JJ
+tobacco-industry NN
+hybrid JJ NN
+nuceoside NN
+Bottorff NNP
+MISFIRE NN
+drown VB VBP
+Amsterdam NNP NN
+Babies NNS NNP
+CBS-TV NNP
+interlibrary JJ
+Garish JJ
+Dunkelberg NNP
+zoning NN VBG
+hinged VBN
+futurists NNS
+goad NN
+ex-player NN
+corporate-pension JJ
+depreciation NN
+unprecedentedly RB
+fulfilment NN
+Engles NNP
+JERSEY'S NNP
+version NN
+GOLDEN NNP
+expunged VBN
+proofreading VBG
+interspersed VBN
+Bankverein NNP
+palsy NN
+Ruoff NNP
+tended VBD VBN JJ
+conservatories NNS
+world-famous JJ NN
+DAX NNP
+Banstar NNP
+arteriolar-pulmonary JJ
+Mediumistic JJ
+wise JJ
+escrowed VBN
+Insurgent JJ
+shakes VBZ NNS
+Cheat NNP
+cash-laden JJ
+Claude NNP
+Waddell NNP
+bd NNS
+weed-killing JJ
+fishmongers NNS
+Finmeccanica NNP
+Unger NNP
+Fanuc NNP
+Volksgeist FW
+millimeter NN
+cauterize VB
+Discovered VBN
+baroreceptor NN
+seedy JJ
+headship NN
+Newburger NNP
+deviation NN
+Unquestionably RB
+Platt NNP
+intersections NNS
+geocentric JJ
+Deane NNP
+steals VBZ
+orderliness NN
+shameless JJ
+Brig. NNP
+Avon NNP NN
+custom-made JJ VBN
+closely-held JJ
+DIRECTORS NNS
+drop-block NN
+Bernadine NNP
+Haferkamp NNP
+classical JJ
+Vickstrom NNP
+oversize JJ
+Ninety CD
+redheaded JJ
+globes NNS
+Diehards NNS
+paot NN
+workweek NN
+Sum NNP
+snaring VBG
+Gogol NNP
+--if IN JJ
+Feruzzi NNP
+Hutchins NNP
+keddah FW
+homespun JJ
+legends NNS
+Values NNPS NNP NNS
+anacondas NNS VBZ
+recorded VBN VBD JJ
+marvelously RB
+courteous JJ
+Ideologues NNS
+Touch NNP
+cheers NNS VBZ
+one-gee JJ
+ENCYCLOPAEDIA NNP
+drugtrafficking NN
+lower-quality NN JJR
+NonProfit NNP
+Parrino NNP
+Liro NNP
+securities-fraud NN
+rigorous JJ
+rutabaga NN
+closest JJS
+cortege NN
+self-perpetuating JJ
+B-58 NN
+challenging VBG JJ
+Gantry NNP
+carpetbaggers NNS
+Eisenstat NNP
+endorse VB VBP
+Banque NNP
+toted VBN
+fellow-creatures NN
+D'Art NNP
+homosexuality NN
+Christi NNP
+McConnell NNP
+Ferembal NNP
+decliners NNS
+treatable JJ
+processor NN
+Crispin NNP
+overage JJ
+Hachiya NNP
+six-footer NN
+tracking VBG NN
+freewheelers NNS
+federal-funds JJ
+non-newtonian JJ
+acorns NNS
+profitably RB
+Funds NNS NNPS NNP
+check-out NN
+Mevalotin NN
+Sala NNP
+Luxembourg-based JJ
+A.N. NNP
+COPE VB
+P.D.I. NNP
+fraud''-based JJ
+mug NN
+payroll-reduction NN
+facts NNS
+self-sufficiency NN
+Wollo NNP
+Putty NN
+gruff JJ
+lectured VBD VBN
+estanciero NN
+five-fold JJ
+wrought-iron JJ
+visuals NNS
+CuK JJ
+cursory JJ
+J&B NNP
+Apples NNS NNPS
+gulps NNS
+extralegal JJ
+Geoff NNP
+property-sector NN
+conservatively RB
+Turn VB NN NNP
+tactually RB
+BOD NN
+Blacks NNS NNPS NNP
+Toch NNP
+confabulated VBN
+wicket NN
+Amra NN
+Glenbrook NNP
+fewer JJR RB RBR
+epidemiologic JJ
+re-thought JJ
+dollar-mark NN
+crashed VBD JJ VBN
+Sylvie NNP
+Atkissons NNPS
+Witter NNP
+regeneration NN
+overeager JJ
+bean NN VBN JJ
+decree NN
+Yorkers NNPS NNP
+craftsman NN
+Donor NN
+fur-and-leather JJ
+neglecting VBG
+rumbled VBD
+anti-Kennedy JJ
+Contrarian JJ
+Bafflers NNPS
+consist VB VBP
+non-liquid JJ
+consistently RB
+Galland NNP
+atrocious JJ
+Warring NNP
+Mortals NNS
+Veille NNP
+metaphors NNS
+preferable JJ
+aerodynamic JJ
+spunky NN
+Amor FW
+Lower JJR NNP
+Scrupulous JJ
+Mesaba NNP
+Buying VBG NNP NN
+Guglielmo NNP
+poaches VBZ
+WORKERS NNS NNPS
+outcomes NNS
+Keilin NNP
+drafting VBG NN NN|VBG
+Idrissa NNP
+red-rimmed JJ
+Specialties NNP
+Herbig NNP
+luminously RB
+Hardings NNPS
+Distressed JJ
+Cranston-D'Amato JJ NNP
+dollar-and-cents JJ
+Buffetts NNPS NNP
+Puche NNP
+U.S.-Canadian JJ NNP
+stubs NNS
+constitutional-law JJ NN
+Shige NNP
+perpetually RB
+freebies NNS
+Clericis NNP
+ladling VBG
+Marshal NNP
+Combined VBN JJ NNP
+PRIMERICA NNP
+market-hog JJ
+runes NNS
+Wrong JJ NNP
+Nouveaux NNP
+Moneyletter NNP
+mignon NN
+photographic-paper NN
+Happy NNP JJ
+boobify VB
+nonviolence NN
+Promises VBZ
+DBS NNP
+Reduced NNP JJ VBN
+listeria FW
+wastrel NN
+Michigan-based JJ
+relished VBD
+whistle NN VB VBP
+lethal JJ
+Holguin NNP
+businesses NNS
+overstaffed JJ
+Gillett NNP
+two-term JJ
+strictures NNS
+legalistic JJ
+sectarian JJ NN
+Sulamite NN
+lady-bugs NNS
+overreacted VBN
+single-room-occupancy JJ
+circulations NNS
+underground-storage NN
+Nedelya NNP
+Manac NNP
+promoters NNS
+conciliator NN
+carpet-cleaning JJ
+traded VBN VBD VBN|VBD JJ
+Chesebrough-Pond NNP
+tactically RB
+pawns NNS
+CRITICAL NNP
+prearranged VBN JJ
+Ms. NNP
+McLuhan NNP
+Hispanic-market JJ
+Zayed NNP
+asbestos-related JJ
+Consob NNP
+imperialists NNS
+convert VB VBP NN
+Heritage NNP
+rock-strewn NN
+monsieur NN
+Bank-America NNP
+censored VBN
+Crosfield NNP
+futile JJ
+empathetic JJ
+amiable JJ
+Uninhibited NNP JJ
+throbbed VBD
+Tailors NNP
+flag-burning NN
+incubated VBN
+obvious JJ
+unhook VB
+host NN VB
+WIN\ NNP
+magnetic JJ
+Heinkel NNP
+albums NNS
+Crest-Colgate JJ
+Duane NNP
+hit-making JJ
+Stay VB NNP
+ponder VB VBP
+Vajna NNP
+trade-group NN
+non-compliance NN
+first-families NNS
+formability NN
+pfennigs NNS
+high-tech-sounding JJ
+thirteenth JJ NN
+males NNS
+t'gethuh RB
+unraveling NN VBG
+Lithuanians NNPS
+Movats NNP
+titled VBN JJ VBD
+SMU NNP
+Bluff NNP
+patriarchy NN
+projection NN
+Former JJ NNP
+railroading VBG
+sure JJ PDT RB UH
+evens VBZ
+Macquarie NNP
+Cortes NNP
+tussle NN
+Letch NNP
+Coldwell NNP
+Walbancke NNP
+remind VB VBP
+selected VBN JJ VBD
+mortgage-servicing NN
+Grits NNP
+crab NN
+non-surgical JJ
+specialized JJ VBD VBN
+Afterward RB
+Dietisa NNP
+tiller NN
+Scandia NNP
+potato NN
+Experienced VBN
+Dimitriadis NNP
+Bordel NNP
+ASK NNP
+Thakhek NNP
+Sills NNP
+impartial JJ
+sweeteners NNS
+shown VBN VBD
+Eliot-or-Martin NNP|CC|NP
+cannibalizing VBG
+undrinkable JJ
+inhuman JJ
+tidewater NN
+bookies NNS
+much-despised JJ
+rhapsodize VBP
+genes NNS
+Christies NNP
+spoilables NNS
+Larkins NNP
+icebergs NNS
+Blandings NNPS NNP NNS
+flagrant JJ
+winnow VB
+thinned VBN VBD
+dubs VBZ
+cocoa NN
+newsman NN
+sobriquet NN
+Com NNP
+stair-step JJ
+resigned VBD VBN JJ
+acoustical JJ
+Warnke NNP
+cooing VBG
+newlywed NN
+gleans VBZ
+Chinese-American JJ NNP
+FEWER JJR
+laugh NN VBP VB
+prior-review JJ
+Apogee NNP
+Magnin NNP
+Co-operative NNP
+shackle VB
+Jolas NNP
+cameo NN JJ
+frightful JJ
+Cautions NNPS
+DAY NNP
+joked VBD
+N'Djamena NNP
+Majority NNP
+O.G. NNP
+neat JJ
+Cassiopeia NNP
+pachinko NN
+Vice-President NNP
+cigarettes NNS
+intimidations NNS
+journalists NNS
+psychoanalytic JJ
+Shayol NNP
+Grgich NNP
+align VB VBP
+Weigel NNP
+dancer NN
+Missouri NNP
+full-of-the-moon NN
+steel-toothed JJ
+Founder NN NNP
+Thornburg NNP
+twinned VBN
+personally-owned JJ
+monochromes NNS
+Litigants NNS
+hovers VBZ
+cupboards NNS
+Nando NNP
+first JJ CD LS NN RB JJS RBS
+intimate JJ NN VB
+Avdel NNP
+calculator-toting JJ
+SEEQ NNP
+Moosilauke NNP
+depends VBZ
+ditcher NN
+Renowned VBN
+Capello NNP
+pocketful NN
+Dever NNP
+Illustration NNP
+apple-industry NN
+someday RB
+Walden NNP
+Emotionally RB
+Sun NNP NN
+Elisha NNP
+be VB VBN VBP
+nosing VBG
+heavens NNS UH
+festival NN
+Austins NNPS
+hamburger NN
+Krueger NNP
+Rojo NNP
+redwood NN
+E-Systems NNP NNPS
+slaying NN VBG
+fragrant JJ
+annunciated VBN
+neolithic JJ
+chattering VBG NN
+privately RB
+amplification NN
+Vilnius NNP
+Fiscal-year JJ
+Dingman NNP
+WALL NNP
+KRON NNP
+restaurateur NN
+agricultural-research JJ
+massacre NN VB
+children's-rights JJ
+Appleby NNP
+motion NN
+replanted VBN
+Fragile NNP
+Aspirin NNP
+derided VBD VBN
+Jean-Luc NNP
+Goldenberg NNP
+bystanders NNS
+A320 NN
+Simple JJ NN
+Bather NN
+then-minister NN
+Workmen NNS
+a'break-up NN
+BMP NN NNP
+lust NN
+longer-term JJ JJR
+Boatmen NNPS NNP NNS
+gleaned VBN
+Younis NNP
+Soviet-accredited JJ
+Politically RB
+sore-ridden JJ
+Optimism NN
+rewrapped NN
+flexural JJ
+Athlone NNP
+Billboard NNP
+unidirectional JJ
+outrageous JJ
+poet-painter NN
+DEC NNP
+Innocenti NNP
+upmarket JJ
+chutzpah NN
+summarizing VBG
+miscues NNS
+exploded VBD VBN
+supertankers NNS
+tossed VBD VBN JJ
+pool-table NN
+Chickasaws NNPS
+Viper NNP
+white-haired JJ
+tester NN
+birdied VBD VBN
+borates NNS
+COMMUTERS NNS
+Symons NNP
+Lite NNP
+Transit NNP NN
+Midwest NNP JJS JJ NN
+Stagecoach NNP
+recreated VBN
+secrecy NN
+random-storage JJ
+Jaques NNP
+propel VB VBP
+Amos NNP
+California-bashing JJ
+SNP NN
+Turbine NNP
+saggy JJ
+Fitchburg NNP
+Bonenfant NNP
+J&C NNP
+air-cell JJ
+Newton-John NNP
+mine-safety JJ
+live-oak NN
+Handmade NNP
+Delays NNS
+reveal VB VBP
+mafiosi NNS
+typist NN
+Colgate-Palmolive NNP
+protein NN
+blind JJ NNS NN VB
+orchestration NN
+Senor NNP
+Langton NNP
+rocketing VBG
+discounted VBN JJ VBD
+watch-spring JJ
+command NN VBP VB
+self-protection NN
+amendatory JJ
+tricolor JJ
+metropolitian JJ
+disclaims VBZ
+blue-green JJ
+'Oh UH
+tissue. NN
+pernicious JJ
+grazin VBG
+Lenwood NNP
+Money-making JJ
+find VB VBP NN
+Bostik NNP
+raindrops NNS
+cruiser NN
+centrist JJ
+continuing VBG JJ
+pied-a-terre FW
+armory NN
+rescheduling VBG NN
+Tunisian NNP
+rustle NN VB
+soak VB
+Toshiyuki NNP
+Walford NNP
+non-event NN
+ketchup NN VB|IN
+--one CD
+arms-reduction NN JJ
+Terrier NNP
+overcooked VBN
+easy-to-spot JJ
+Eurofighter NNP
+Single-occupancy NN
+broach VB
+Bike NNP
+cross-buying NN
+whiskeys`` ``
+warfront NN
+Hampshire NNP
+firmness NN
+African-safari JJ
+oil-futures NNS
+brood NN JJ VB
+trek NN VB VBP
+Quasimodo NNP
+Eastwick NNP
+Psychiatry NNP
+Smolensk NNP
+depositary NN JJ NN|JJ
+Netherland NNP
+pledge NN VB
+co-occurring JJ
+practical JJ NN
+Mirek NNP
+There'a NN
+Mirabello NNP
+stupefying JJ
+privileges NNS VBZ
+Shampoo NNP
+Linus NNP
+.45 CD
+Althaus NNP
+Assessors NNS
+red-visored JJ
+Seasoned JJ
+Copies NNS
+Gain NN VB NNP
+five-inch JJ
+Rahman NNP
+principals NNS
+COCOA NN
+murkily RB
+ONEZIE NNP
+Check VB NNP
+Frumil NNP
+spate NN
+Capellan NNP
+Heydrich NNP
+alizarin NN
+utilizing VBG
+event NN
+Orbiting NNP
+cranked VBD VBN
+accomodate VB
+Shanghai NNP
+one-quarter-cent JJ
+cardiologists NNS
+Phelan NNP NN
+phosphide NN
+dioxins NNS
+crediting NN VBG
+donna NN
+powders NNS
+willy-nilly JJ RB
+Conveyance NN
+Copycat NN
+half-time NN JJ RB
+terrify VB
+Mogg NNP
+lighting NN VBG
+out-of-date JJ
+film-maker NN
+Meagher NNP
+MAN NNP NN
+cowardly JJ
+Sweating VBG
+lovering VBG
+shareholdings NNS
+stormbound JJ
+harangued VBD
+Meritor NNP
+outsmarted VBD VBN
+doubleA-2 JJ
+Caesarean JJ
+FIRST NNP CD JJ RB
+oilman-rancher NN
+panted VBD
+EYEWEAR NN
+McCracken NNP
+hovered VBD VBN
+frill NN
+hydra-headed JJ
+surf NN VBP
+counter-revolutionary JJ NN
+kingdom-wide JJ
+Wittenberg NNP NN
+wanton JJ
+artist NN
+accrue VB
+metal-forming JJ
+DDI NNP
+Hulbert NNP
+flight-crew NN
+ungrateful JJ
+eightball NN
+beach-party NN
+mourn VB
+betties NNS
+Gigenza NNP
+driver NN
+banshee NN
+Edict NNP
+tsunami-warning JJ
+hit-man NN
+Serenade NNP
+booming JJ VBG
+surfboard NN
+confrontation NN
+Connall NNP
+immigrants NNS
+Oopsie-Cola NNP
+half-transparent JJ
+Mongi NNP
+idled VBN VBD
+Nile NNP NN
+drought NN
+Mavis NNP
+Tetris NN
+reformulation NN
+reducer NN
+omelet NN
+brinksmanship NN
+ditches NNS VBZ
+MCC NNP
+kilowatt NN
+barbarous JJ
+water-use NN
+dispensable JJ
+undamaged JJ
+chores NNS
+demonstrate VB VBP
+pp. NNS
+Monet NNP
+drug NN
+dances NNS VBZ
+pare VB
+Significant JJ
+Academic NNP
+groaning VBG
+bales NNS
+leakers NNS
+lyking VBG
+TAKEOVER NN
+technicalities NNS
+Chandross NNP
+corporate-law NN
+Todd NNP
+unitary JJ
+stint NN
+cleaner-burning JJ
+Castparts NNP
+Squint NN
+Burchette NNP
+Blackwells NNPS
+Glaciology NNP
+ABORTION NN
+followeth VBZ
+boroughs NNS
+Balkans NNPS NNS
+bottling NN VBG
+Milkaukee NNP
+Shroeder NNP
+dive NN VBP VB
+credit-policy NN
+concertmaster NN
+introverted VBN JJ
+Built VBN NNP
+Ginn NNP
+Grinsfelder NNP
+PostScript NNP
+waste-water NN
+Dice NNS
+parchment NN
+amnesty NN
+drop-in JJ
+consequence NN
+coalescence NN
+Chatwal NNP
+Homemaster JJ
+Legent NNP
+Hills NNP NNPS
+propylthiouracil NN
+chanting VBG NN
+unsatisfactorily RB
+angered VBN JJ VBD
+Homeland NN
+U.N.C.L.E NNP
+NIAGARA NNP
+commiserating VBG
+unsaturated JJ
+Kristen NNP
+Con NNP JJ NN
+perfumery NN
+orginate VB
+newly-plowed JJ
+Synar NNP
+records NNS VBZ
+McCombs NNP
+Harley-Davidson NNP
+recurrent JJ
+c-Yields NNS LS|NNS
+berms NNS
+Post-tragedy RB
+Phone NN NNP
+tabulated VBN JJ VBD
+trumpeting VBG
+inequitable JJ
+Nasser NNP
+Mig NN
+Survival NNP
+Pausing VBG
+Yankus NNP
+juices NNS
+short-range JJ
+feature NN VBP JJ VB
+distrusted VBN VBD
+Landowners NNS
+A.L/NNP.S/NNP.A.C. NNP
+stills NNS
+I... :
+pinnacles NNS
+Strenuous JJ
+delicti FW
+Indigenes NNP
+reinbursement NN
+followers NNS
+purpling VBG
+Argas NNP
+fazed VBD
+early-childhood NN
+Bones NNS
+confederacy NN
+Eastland NNP
+Shaped JJ
+Waltermire NNP
+geometrically RB
+acute-care NN
+Southport NNP
+seances NNS
+Maura NNP
+comandancia FW
+DC-10s NNPS NNS
+beauties NNS
+whirring VBG
+contortion NN
+Song-sam NNP
+Lifson NNP
+LeMasters NNP
+unwind VB
+g-10.06.89 CD
+ussr NN
+selects VBZ
+second-rate JJ
+.50 CD
+schema NN
+A321 CD
+Herald-American NNP
+Burro NNP
+multiple-use JJ
+cruises NNS
+illnesses NNS
+stonily RB
+resigns VBZ
+resellers NNS
+office-product NN
+Newberg NNP
+Charnock NNP
+aviators NNS
+Westboro NNP
+preschoolers NNS
+richer JJR
+anti-oil JJ
+triggering VBG
+arid JJ
+Tschilwyk NNP
+Windmere NNP
+Barataria NNP
+amusing JJ
+handicraftsman NN
+Handley NNP
+Offers VBZ
+oscillation NN
+stances NNS
+Penal NNP
+firebug NN
+shadowy JJ
+encapsulate VB
+FELLED VBD
+superstrong JJ
+bruise NN VB
+Subaru NNP
+proverb NN
+pillow NN
+sensor NN
+tennis NN
+bottom NN JJ VB
+extraneousness NN
+Berte NNP
+Shirley NNP
+MBI NNP
+blackout NN
+Tegner NNP
+bioherbicide NN
+industry-wide JJ
+Polevoi NNP
+fictional JJ
+Brazos NNP
+Piovra FW
+Naw UH
+investment-oriented JJ
+abrupt JJ
+educational JJ
+Firzite NN
+destitute JJ
+Cabot NNP
+as-Sa'dawi NNP
+Greensville NNP
+natty JJ
+adjourned VBD VBN
+averting VBG
+research-staff NN
+Pualani NNP
+Slower JJR
+contractors NNS
+Carboloy NNP
+Role NN
+federal-corporate JJ
+twined VBD VBN
+TIP NN NNP
+Pantheon NNP
+Ulric NNP
+largest-selling JJ
+rarities NNS
+Autocollimator NN
+Konopnicki NNP
+fine JJ NN RB VB
+capercailzie NN
+Not-Held NNP
+staircase NN
+one-horse JJ
+Unlike IN
+staff NN VBP VB
+Puppeteer NN
+individual-investor NN JJ
+auditorium NN
+over-hired VBD
+boxing NN
+grazers NNS
+between IN RB
+no-frills JJ
+Cattlemen NNPS
+decorator NN
+Delia NNP
+sharp-jawed JJ
+meditations NNS
+farmer NN
+Lyrics NNS
+antagonisms NNS
+glottochronological JJ
+self-important JJ
+samovar FW NN
+Sulamith NNP
+Billard NNP
+campaigning VBG NN
+integration NN
+Aftershocks NNS
+Republic NNP NN
+rasping JJ
+digressions NNS
+magnetically RB
+maintains VBZ
+follow-on JJ
+Sloanaker NNP
+duty-free JJ
+Huffman NNP
+Daewoo NNP
+Plastic JJ NNP
+vacuolization NN
+pro-labor JJ
+tandem-seat JJ
+Aroostook NNP
+SS-24 NNP
+F16s NNS
+precede VB VBP
+arms-control NN JJ
+bleedings NNS
+Borden NNP NN
+hove VBD
+service-oriented JJ
+head-tossing NN
+nonexecutive JJ
+facilitators NNS
+Warwickshire NNP
+Denizens NNS
+ca MD
+fullscale JJ
+abrogate VB
+Distinguished NNP
+Canned JJ
+insufficient JJ
+can't MD
+vacancy NN
+demythologization NN
+technicians NNS
+reduces VBZ
+Trohan NNP
+Kajima NNP
+non-research JJ
+alertness NN
+External JJ NNP
+disdained VBN
+terrifying JJ VBG
+Puttin NNP
+Postels NNPS
+periodicals NNS
+Damon NNP
+drives NNS VBZ
+Pick VB NNP
+mid-section NN
+assertion NN
+multichannel JJ
+Fiechter NNP
+grips NNS
+Prime NNP JJ
+snowbirds NNS
+potentialities NNS
+Sheiner NNP
+all-purpose JJ
+solid-waste NN JJ
+Weather NNP
+haflis NNS
+Carbones NNPS
+underpin VB
+six-man JJ
+summary NN
+touch-screen JJ
+workings NNS
+Deals NNS
+chronicling VBG
+Christiev NNP
+cellular JJ
+Ainus NNPS
+Bonneville NNP
+Durocher NNP
+two-and-a-half JJ
+late-afternoon JJ
+defiance NN
+classics NNS
+equivalents NNS
+drenching NN
+Krepon NNP
+Sarpsis NNP
+showcases NNS
+Chisholm NNP
+side-stepped VBD VBN
+Silicon NNP
+appraisers NNS
+rebirth NN
+counter-attacked VBD
+Somalis NNPS
+Ricco NNP
+geography NN
+umber JJ NN
+Ranieri NNP
+junk-fund NN
+unappealing VBG JJ
+Kittler NNP
+deeply RB
+municipally-sponsored JJ
+form-letter JJ NN
+U/NNP.S.C. NNP
+preface NN
+windshields NNS
+production-rate JJ
+Hallwood NNP
+Dinerstein NNP
+clanging NN VBG
+teary-eyed JJ
+authorities NNS
+storage NN JJ
+wish VBP NN VB
+portraits NNS
+Columnists NNS
+oops UH
+glasnost FW NN
+Amelia NNP
+Funded VBN
+Vaux NNP
+Punishment NN
+cocky JJ
+Stackup NNP
+non FW JJ
+lower-court JJ NN
+Yeni NNP
+therefore RB CC
+all-natural JJ
+A&P NNP NN
+nonpaying JJ
+Ever-more RB
+policy-makers NNS
+Worthington NNP
+still-secret JJ
+liquid JJ NN
+Cotter NNP
+shearing NN VBG
+inaugurating VBG
+low-down NN JJ
+Emeritus NNP
+International NNP JJ
+symptomatic JJ
+CALIFORNIA NNP
+overshoes NNS
+include VBP VBN VB
+shuttling VBG
+domestic-policy JJ NN
+printing-systems NNS
+formulate VB
+Cyprian NNP
+enabling VBG
+Speak VB NN NNP
+poisoning NN VBG|NN VBG
+hard-sell JJ
+Gino NNP
+instantaneously RB
+jumble NN
+Sussex NNP
+unroll VBP
+Counters VBZ
+Classicist NN
+orchestrations NNS
+attendees NNS
+fighter-plane NN
+BNL NNP
+Brandeis NNP
+Wrestlemania NNP
+finagled VBN
+HISPANIC JJ
+hall-mark NN
+'No UH NNP
+changed VBN VBD JJ
+Leninskoye NNP
+Cultor NNP
+Gazinosu NNP
+Snopes NNP
+transportable JJ
+Pyne NNP
+Bellows NNP
+groundwater NN
+triple-checked VBD
+paydown NN
+Wales NNP
+Hopley NNP
+chauvinism NN
+A3 CD
+knitwear NN
+decelerating VBG
+pre-set JJ
+Ovens NNS
+Ceco NNP
+Dilworth NNP
+transmittable JJ
+bearable JJ
+rink NN
+rank-and-file JJ NN
+Blackmun NNP
+emote VB
+activists NNS VBZ
+Emigrant NNP
+Approved VBN VBD
+Bolling NNP
+Calgary NNP
+smeared VBN JJ
+riches NNS FW NN
+Harbison NNP
+Paradox NNP
+soften VB
+Araskog NNP
+Bila NNP
+pharmacy NN
+Reviglio NNP
+opportunities NNS
+Oversized JJ
+definitive JJ
+Ministry NNP
+Fel-Pro NNP
+mammography NN
+Torsten NNP
+EEOC NNP
+Chatterton NNP
+pumas NNS
+Katsive NNP
+Shiu-Lok NNP
+disturber NN
+Luce NNP
+absorbs VBZ
+Mullenax NNP
+Epigraph NN
+pervaporation NN
+Astin NNP
+washing VBG NN
+entertainers NNS
+R.T. NNP
+Cult NNP NN
+two-letter JJ
+corporate-entertainment JJ
+resiliency NN
+Vesco NNP
+Scrapings NNS
+loathsome JJ
+neck NN RB VB
+tight-fistedness NN
+employer NN
+Unlimited NNP JJ
+traditionalistic JJ
+non-life JJ
+pacemakers NNS
+fourth-largest JJ
+gallant JJ
+lexicon NN
+LUTHER NNP
+conduct NN VBP VB
+Pettis NNP
+retirement NN
+gulped VBD
+untamed JJ
+Reconciliation NNP NN
+Ebaugh NNP
+Yachtsman NNP
+swathe NN
+Hopkins NNP
+Sibly NNP
+Crown NNP NN
+B. NNP . LS NN
+finery NN
+burly JJ
+Deposit NNP NN
+joins VBZ
+loss-expense JJ
+Somoza NNP
+airings NNS
+statutorily RB
+Washington-area JJ
+domination NN
+Spahnie NN
+flinched VBD
+Braintree NNP
+B-70 NNP NN
+most-respected JJS
+unassuming JJ
+renew VB VBP
+charge-a-plate NN
+fit-looking JJ
+stands VBZ NNS NN
+Ease VB
+Delayed JJ
+KLUC-FM NNP
+radial JJ
+overcooks VBZ
+apparency NN
+Nagymaros NNP
+Messerschmitt NN NNP
+sieben FW
+ATTRACTS VBZ
+H.K. NNP
+differential JJ NN
+patchwork NN JJ
+illegality NN
+anastomotic JJ
+hyperventilating NN
+jarringly RB
+shredder NN
+social-climbing JJ
+Moet NNP JJS
+proposes VBZ
+al NNS FW NN
+Rolf NNP
+Reedy NNP
+bombastic JJ
+bleacher NN
+Boeing NNP VBG
+names NNS VBZ
+succession NN
+NTSB NNP
+Branum NNP
+sources NNS
+collectives NNS
+SS-25 NNP
+Crescent NNP
+retrievable JJ
+Instructions NNS NNP
+exposited VBN
+Hydrochlorothiazides NNS
+yea NN
+Nathanael NNP
+Altenburg NNP
+Krohn NNP
+cryptographers NNS
+Pagurian NNP
+Australian JJ NNP
+digesting VBG
+Reward VB
+Service NNP NN
+helpmate NN
+Anglo-Protestant JJ
+spinnability NN
+finest JJS
+swearing NN VBG
+Taxing VBG
+fence NN
+Bilanz NNP
+Wilmouth NNP
+meted VBN VBD
+slated VBN VBD
+compartment NN
+Sunny NNP
+possessor NN
+stiffly RB NN
+Biosource NNP
+Melcher NNP
+less-educated JJ
+catty JJ
+advisers NNS
+glow NN VB
+root-canal NN
+mysterious JJ
+palatial JJ
+Calor NNP
+large-diameter JJ
+Jacquette NNP
+cocaine NN
+Visitation NNP
+Chantilly NNP
+twin-jets NN NNS
+PRO-CHOICE JJ
+hexagonal JJ
+sequences NNS
+seven-year JJ
+Italy NNP
+Relentless JJ
+Transwestern NNP
+debacle NN
+Timken NNP
+DIRECTORY NN
+availing VBG
+Semiramis NNP
+closets NNS
+Lamalie NNP
+savage JJ NN
+confabulations NNS
+chapter NN
+High-priced JJ
+frustration NN
+Kearney NNP
+cutback NN
+Safavids NNPS
+tax-reducing VBG
+retentiveness NN
+Corp.-Toyota JJ
+hype NN
+mailgrams NNS
+CONTACT NN
+unmeasurable JJ
+deflecting VBG
+micro-liquidity NN
+bulk NN JJ
+outdated JJ VBN
+warrior NN
+Gumucio NNP
+Sandra NNP
+save-the-earth JJ
+willingess NN
+fears NNS VBZ
+recognizing VBG
+rail NN VB
+fence-line JJ
+prophesized VBD
+woodchucks NNS
+industries NNS
+Agreement NNP NN
+guided-missile JJ NN
+non-daily JJ
+rapeseed NN
+Klansmen NNPS
+interning VBG
+Tashi NNP
+morphophonemic JJ
+nothing NN
+bomblets NNS
+myth NN
+pestilent JJ
+cache NN
+deflate VB
+Wonda NNP NN
+Neb NNP
+Obviously RB
+jokingly RB
+California-based JJ
+John-Henry NNP
+scare-tactic NN
+credit-quality JJ
+fronting VBG NN
+Mikulich NNP
+Longhorn NNP
+Adelman NNP
+Craven NNP
+Parallel JJ
+ceremonially RB
+imprison VB
+triptych NN
+Bootle NNP
+clocks NNS VBZ
+ballyhooey NN
+converted VBN JJ VBD
+Boys NNPS NNP NNS
+satellite-assembly NN
+particularistic-seeming JJ
+Tahoe NNP
+HEXX NNP
+aggressions NNS
+Frontieres FW
+well-served JJ
+apprenticed VBN
+J.C. NNP
+administer VB VBP
+Neste NNP
+maturational JJ
+vocational JJ
+shootouts NNS
+non-paper NN
+Sanctam NNP
+Reeder NNP
+emissions NNS
+employes NNS VBZ
+Medicaid-paid JJ
+unaccommodating JJ
+Sohmer NNP
+unchallenged JJ
+traps NNS VBZ
+delousing VBG
+Adults NNS
+Heng-Shan NNP
+Sniffing VBG
+spasm NN
+Madagascar NNP
+themselves'pro-choice JJ
+orange-flavored JJ
+Atomics\/Combustion NNP
+flooded VBN VBD
+Metallurgical NNP
+Howsabout RB
+palm-fringed JJ
+godhead NN
+softy NN
+intersperses VBZ
+Euro-cards NNS
+conic JJ NN
+Alter VB NNP
+Co-Chief NNP
+epithet NN
+longrange JJ
+wombs NNS
+incoherently RB
+incomparably RB
+JOINS VBZ
+sleeplessness NN
+Trust NNP NN VB VBP
+waiving VBG
+chortles VBZ
+openended VBN
+Lazard NNP
+pricecutting NN
+arraigned VBD VBN
+Voyager NNP
+Uh-uh UH
+quasisports NNS
+less-influential JJ
+enviably RB
+pilot-union JJ
+Fogle NNP
+Bucharest NNP
+Exchange NNP NN
+plugged VBN VBD
+unreliability NN
+skirt NN VB VBP
+Roma NNP
+coherently RB
+Feminist NNP
+Fenerty NNP
+producing VBG JJ NN
+Muslims NNPS NNP
+statistics-keepers NNS
+mustached JJ
+clues NNS
+AIDS-infected JJ
+KKR NNP
+serialized VBN
+considerate JJ
+Ohioans NNPS
+rock-like JJ
+footing NN VBG
+generals NNS
+Alaska-based JJ
+attention-grabbing JJ
+hostelries NNS
+O'Boyle NNP
+public-owned JJ
+reflective JJ
+terrorists NNS
+arising VBG
+Pettit NNP
+depiction NN
+legation NN
+hashers NNS
+Musicale NNP
+shoved VBD VBN
+extravaganza NN
+Sale NNP NN
+SUNY NNP
+filets NNS
+overpurchase VB
+Doolittle NNP
+ensemble NN
+Richardson-Merrell NNP
+yet-to-be-formed JJ
+deep-sounding JJ
+interfering VBG
+restaurant-development NN
+Derails NNS
+trotted VBD VBN
+width NN
+Ryerson NNP
+Hmmm UH
+quart NN
+Filed VBN
+shouting VBG NN
+joint JJ NN
+Boxy JJ
+Barneys NNP
+sirens NNS
+lioness NN
+Triamcinolone NN
+Boxer NNP
+oft-quoted JJ
+ex-wives NNS
+semi-gelatinous JJ
+impersonator NN
+BPB NNP
+cartridge NN
+evacuant NN
+muted VBN VBD JJ
+totaling VBG
+Frazer NNP
+bear VB NN VBP
+Cop NNP
+clairaudiently RB
+Every DT
+monopolizing VBG
+Genuine NNP
+Refractories NNPS NNP
+Sienkiewicz NNP
+Axel NNP
+Niciporuk NNP
+Hamish NNP
+safekeeping NN
+credulous JJ
+terrifies VBZ
+breaches NNS
+ailment NN
+gemsbok NNS
+skouting VBG
+Himont NNP
+abdicate VBP VB
+irrationally RB
+Fuster NNP
+stipulates VBZ
+Gamecock NNP
+eighty-five CD
+tidelands NNS
+Drinker NN
+Thurgood NNP
+commandeering VBG
+rise-perhaps RB
+Dyna NNP
+is... :
+attributing VBG
+Gillian NNP
+FEARS NNS
+denuclearized VBN
+flouted VBN
+aspiring JJ VBG
+Disease NNP NN
+jubilant JJ
+tailor-made JJ
+Single-cell JJ
+Siegler NNP
+Djangology NNP
+ether NN CC
+Whoever WP NNP
+early-departure NN
+manifestation NN
+impeding VBG
+Schafer NNP
+cord NN
+defuse VB
+Nymphomaniacs NNS
+determinant NN
+bed-liner NN
+skinless JJ
+dishonouring VBG
+Elshtain NNP
+by-products NNS
+steams VBZ
+collaborating VBG
+pomologist NN
+salvos NNS
+Bordetella NN
+furnishings NNS
+invests VBZ
+kitchen NN
+Biologicals NNP
+public-service JJ NN
+Calderon NNP
+anathema NN
+endowment NN
+quivered VBD
+under-funded JJ
+advertiser-programming NN
+Homeowners NNP NNS
+Diron NNP
+shortened VBN JJ
+noncompetitive JJ
+IOCSIXF NN
+Prescription NNP
+tour NN FW VB
+airline NN
+environs NNS
+Dniepr NNP
+acceded VBD VBN
+charge-offs NNS
+ague NN
+MBK NNP
+Tieck NNP
+Romana NNP
+Stake VB
+cost-shifting NN
+every-day JJ
+echelons NNS
+patty-cake JJ
+guesswork NN
+Poltrack NNP
+DAYAC NNP
+Adding VBG
+Masters NNP NNPS NNS
+then-Treasury JJ NNP
+foward JJ
+re-opening VBG
+insta-book NN
+Doyle NNP
+REINSURERS NNS
+Gorham NNP
+Shlenker NNP
+landslide NN
+Indelicato NNP
+Spofford NNP
+waist-length JJ
+conniver NN
+am VBP FW RB
+fairway NN
+fenugreek NN
+Developments NNPS NNP NNS
+bull NN VB
+Gingerly RB
+Criminal-defense NN
+higher-multiple JJ
+Shun NNP
+palazzos NNS
+two-foot JJ
+know'til VB
+Centre NNP
+petitions NNS VBZ
+KLM NNP
+Earl NNP
+death-wish NN
+intrigue NN VB
+wod MD
+DIAPER NN
+recriminations NNS
+inventors NNS
+transversely RB
+Levenson NNP
+glittery NN
+Mannesmann NNP NN
+bank-holding JJ VBG NN
+unhappily RB
+savings-deposit JJ
+Monitors NNP
+Pervanas NNP
+lettermen NNS
+Withuhn NNP
+cross-striations NNS
+Ludwin NNP
+blasphemed VBD
+Heel-Beryl NNP
+Freeberg NNP
+recoverable JJ
+Delhi NNP
+trespassed VBN VBD
+Midmorning NN
+daddy NN
+members NNS
+Sandor NNP
+Langendorf NNP
+woolen JJ
+Thutmose NNP
+BECHTEL NNP
+mandrel NN
+Agreed VBD VBN
+life-bettering JJ
+regressive JJ
+Polygram NNP
+Crews NNP
+resistors NNS
+carryovers NNS
+washboard NN
+etcetera NN FW
+Plaines NNP
+has VBZ VBN .
+ATI NNP
+self-sufficient JJ NN
+hurricane-stricken JJ
+home-furnishing NN
+appliques NNS
+owing JJ VBG
+medium-size JJ
+Woodberry NNP
+enameling NN VBG
+timely JJ RB
+Lazare NNP
+Police-man NNP
+self-assertive JJ
+Windsor NNP
+Birinyi NNP
+foreman NN
+Texts NNS
+swashbuckling JJ
+JOINT JJ
+London-bred JJ
+scalded VBN
+retrospective NN JJ
+panaceas NNS
+Open-end JJ
+privies NNS
+Nec FW
+commodity-chemical JJ
+Buckets NNS
+laundry-type JJ
+region NN
+bakery-mix JJ
+'Three's NNP
+galvanized JJ VBD VBN
+unliterary JJ
+silke NN
+tier NN
+Colbert NNP
+Ankara NNP
+debt-laden JJ
+PARS-Datas NNP
+misjudgment NN
+Poore NNP
+assessed VBN VBD
+quadruples VBZ
+flustered VBN
+impressionism NN
+perverse JJ
+Elyria NNP
+lights NNS VBZ
+initiate VB NN VBP
+on-line JJ NN
+kingpins NNS
+pen NN VB
+rehearing NN
+morphophonemics NNS
+Amaury NNP
+confrontations NNS
+energy-efficient JJ
+Hyundai NNP NNS
+frothy JJ
+community-service NN
+oysters NNS
+off-network JJ
+Inflation-adjusted JJ VBN
+dispenser NN
+Winchester NNP NN
+admire VB VBP
+Kombo NNP
+Viator NNP
+Normally RB NNP
+Jeffery NNP
+Birds NNP NNPS NNS
+stock-fraud NN
+artist-author NN
+dockets NNS
+Hospitals NNS NNP NNPS
+routed VBN VBD
+huddles NNS
+Crewmembers NNP
+Pro-Am NNP
+Keul NNP
+Pemex NNP
+Berth NNP
+monde FW
+Victrola NN
+retriever NN
+Personal JJ NNP
+off-stage NN
+proportion NN
+cc NN
+Cortex NNP
+barbequed JJ
+Prison NNP NN
+noblemen NNS
+tablespoonful NN JJ
+puff NN VB
+regimen NN
+Monocite NNP
+Transylvania NNP
+Loring NNP
+Cennini NNP
+trebled VBN VBD
+solidifying VBG
+Palmer NNP
+Cefiro NNP
+post-earthquake JJ
+enlisting VBG
+schoolhouse NN
+DFS\/Pacific NNP
+Boxes NNP NNPS
+smuggling VBG NN
+extra-caffeine JJ
+salamander NN
+CIM NNP
+Nancy NNP
+unsubsidized JJ
+Anthem NNP
+rapport NN
+key-punched JJ
+Fawzi NNP
+creeks NNS
+Hewett NNP
+hypertrophied VBN
+Metabolite NN
+old JJ
+Deductions NNS
+subtly RB
+Thermometer NNP
+Hush NN UH
+Greenstein NNP
+demonized VBN
+Fiala NNP
+Ansel NNP
+croons VBZ
+Knight-Ridder NNP
+cheery JJ
+Silvio NNP
+business-class JJ
+WINDOW NN
+Ethiopia NNP NN
+infinitum FW NN
+snobs NNS
+Ellington NNP
+high-pressure JJ
+igneous JJ
+Kirkwood NNP
+courier NN
+foreign-policy NN JJ
+BEAM NNP
+schnapps NN
+Whitelock NNP
+ClothesTime NNP
+mansions NNS
+Hemus NNP
+horribly RB
+Temptation NN NNP
+fought-for JJ
+very RB JJ
+prancing NN VBG
+Yenakiyevo NNP
+Grzesiak NNP
+non-negative JJ
+undue JJ
+teratologies NNS
+Leftovers NNP
+explicitness NN
+bounces VBZ NNS
+wagons NNS
+Garea NNP
+pulpit NN
+Goizueta NNP
+pity NN VBP
+Disasters NNS
+Caught VBN
+Wan NNP
+Flavell NNP
+rough-housing NN
+Times-Picayune NNP
+bartenders NNS
+less-ambitious JJR
+exit-load JJ
+Astrid NNP
+IOCSIXG NN
+smother VB
+speculators NNS
+long-successful JJ
+criminalize VB
+jealousies NNS
+cheekbone NN
+glitterati NNS
+nondestructive JJ
+Rainman NNP
+Wilson NNP
+MV40000 NN
+Fueloil NNP
+BPC NNP
+Nagykanizsa NNP
+Pymm NNP
+perceived VBN VBD JJ
+laughingly RB
+Sulcer NNP
+shows VBZ NNS
+richissimos NNS
+Danis NNP
+endosperm NN
+opted VBD VBN
+oral JJ
+black-majority JJ
+Petroleum NNP NN
+squeezed VBN VBD
+Washington-based JJ
+eminent JJ
+vacation NN VBP
+Hobbes NNP
+aquatic JJ
+detectives NNS
+core NN JJ
+Iacocca NNP
+championship-team JJ
+lowdown JJ
+Mij NNP
+rims NNS
+rapers NNS
+Forbes NNP
+Slab NN
+precautionary JJ
+exhaustive JJ
+prayers NNS
+Disorderly JJ
+Gala NNP
+home-furnishings NNS
+gaming-card NN
+management-controlled JJ
+wildness NN
+banishment NN
+Tivoli NNP
+:35.3 CD
+Marico NNP
+FRANKFURT NNP
+constituted VBD VBN
+Monex NNP
+delist VB
+self-administration NN
+annualized VBN VBD JJ
+declaimed VBD
+Koeppel NNP
+Onleh RB
+Surprisingly RB
+avocation NN
+budget-sensitive JJ
+replacements NNS
+fictionalized VBN
+CEOs NNS NNP
+hopscotched VBD
+nascent JJ
+ASSOCIATES NNP NNPS
+Memories NNPS NNP NNS
+A5 NN
+Slope NNP
+Thompson NNP
+writers NNS
+Antigone NNP
+breastworks NNS
+Panglossian JJ
+Cays NNP
+best-run JJS
+CEO-designate NN
+Minnie NNP
+Sur FW NNP
+hindrances NNS
+Zelig NNP
+Lublin NNP
+Lewelleyn NNP
+Gaieties NNPS
+shootings NNS
+snowdrift NN
+Wendler NNP
+closeup JJ
+vowels NNS
+waste NN VBP JJ VB
+Verret NNP
+Hagura NNP
+dispenses VBZ
+blade NN
+Port NNP
+PrudentialBache NNP
+Census NNP NN
+lessens VBZ
+stock-market NN JJ
+Cubism NN NNP
+investment-holding JJ
+Protectorate NNP
+Darrell NNP
+shorthanded JJ
+supplementary JJ NN
+Attorneys-at-Large NNP
+Marron NNP
+Special-election NN
+bond-financed JJ
+Photographers NNP
+Sixteenth NNP JJ
+vanishing VBG
+government-provided JJ
+When WRB NNP
+O'Donnell NNP
+pundits NNS
+imitative JJ
+immemorial JJ
+scheme NN
+Lawful JJ
+Maeterlinck NNP
+writhed VBD
+Goolick NN
+eradicate VB
+absorbed VBN JJ VBD
+DeGregorio NNP
+leaner JJR RBR
+vacanices NNS
+rain NN VB
+disguises VBZ NNS
+evened VBN
+loans NNS VBZ
+last-season JJ
+Reichstag NNP
+Francisco NNP
+BMT NNP
+Nader NNP
+eminence NN
+desiring VBG
+fainter JJR
+Zinc NN
+always RB
+auspices NNS
+Balfour NNP
+judicial JJ
+Liberia NNPS NNP
+fancy-free JJ
+Rychard NNP
+Panetta NNP
+solitary JJ NN
+Battat NNP
+mail-order JJ NN
+Edmunston NNP
+Skiing NN
+entail VB VBP
+Yum-Yum NNP
+grain-exporting NN
+democratically RB
+receivership NN
+A.O. NNP
+skeletal JJ
+liquefy VB VBP
+Sakura NNP
+docters NNS
+moisturizers NNS
+hard-to-fault JJ
+mushrooming NN
+flippantly RB
+doggone JJ UH
+Packwood-Roth NNP
+Brubaker NNP
+woe NN
+home-comings NNS
+predicting-machines NNS
+Export-Import NNP
+effectively RB
+iron-willed JJ
+Zubkovskaya NNP
+Hittner NNP
+fairing NN
+Pence NNP
+altar NN
+Vidunas NNP
+building-products NNS
+ice-feeling NN
+Decker NNP
+subverting VBG
+Workplace NN NNP
+refreshingly RB
+Courtis NNP
+zero-magnitude NN
+job-destroying JJ
+nonchalant JJ
+Bostitch NNP
+monkey NN
+Accelerated VBN
+reciprocates VBZ
+trachea NN
+an DT CC JJ NNP ,
+spurn VBP VB
+appointment NN
+Honestly RB
+revenge-seeking JJ
+masterly JJ
+vest NN VB
+ties NNS VBZ
+Famcorp NNP
+inscrutability NN
+births NNS
+synergism NN
+hat NN
+blini NNS
+improvement NN
+co-owner NN
+Warner-Chilcott NNP
+Majdan-Tartarski NNP
+tense JJ NN
+macaque JJ
+veracity NN
+Arrange VB
+bombing NN VBG
+trading-a NN
+conditional JJ NN
+Bohmerwald FW
+Fungi NNP
+Kellmer NNP
+megabit NN
+Ned NNP
+harrumphing NN
+thaw'em VB
+Creepers UH
+Zarett NNP
+Border NNP NN
+colonies NNS
+production-sharing JJ NN
+switchblade NN
+forerunner NN
+Irwin NNP
+b-plane NN
+Minoan-Mycenaean NNP
+Dozen NNP
+Brierley-controlled JJ
+anti-Yankee JJ
+Longmont NNP
+reshufflings NNS
+hideouts NNS
+pyramids NNS
+orthopedic JJ
+Buffet NNP
+Disadvantaged NNP
+Phil NNP
+Expansion NN
+singer NN
+oilcloth NN
+centennial NN JJ
+eagerness NN
+Urdis NNP
+high-efficiency NN
+drug-supply JJ
+Diasonics NNP
+M.P. NNP
+Bum NNP
+apple NN
+unneeded JJ
+Broome NNP
+minuet NN
+senile JJ
+undivided JJ
+racially RB
+black JJ NN VB
+bi IN
+lipid NN
+McFadden NNP
+deliberations NNS
+Seigner NNP
+Bessarabia NNP
+slimmed VBN
+'Hagura NNP
+Schnuck NNP
+thirty-caliber JJ
+Chernobyl NNP
+Allergan NNP
+specializes VBZ
+detaining VBG
+quackery NN
+dredged VBD
+Year-round RB
+raggedness NN
+gunship NN
+Postipankki NNP
+lightning-quick JJ
+Zhongshan NNP
+Abboud NNP
+Update NNP
+motored VBD
+Mantha NNP
+debilitated VBN JJ
+Ricardo NNP
+uttuh VB
+housings NNS
+Lautenbach NNP
+anteriors NNS
+scales NNS VBZ
+hardboiled JJ
+talent NN
+still-continuing JJ
+milking VBG
+begun VBN
+incorrectly RB
+Towsley NNP
+Zachrisson NNP
+plunking VBG
+Throw VB NNP
+smattering NN
+temblors NNS
+buckling VBG NN
+arch-heretic NN
+dulled VBN
+mouth NN
+Crosse NNP
+ScheringPlough NN
+diphtheria NN
+stardom NN
+beat VB JJ NN VBD VBN VBP
+junk-bond NN NNS JJ
+Pravda NNP
+Heimbold NNP
+sandwich NN
+cohesively RB
+Unloading VBG
+Drobny NNP
+Cheered VBN
+Grigorss NNP
+tidy JJ
+preference NN
+Silly NNP
+brownouts NNS
+Slim-Fast NNP
+midsized JJ VBN
+gardeners NNS
+ole JJ NN
+NUMBER NN
+Wardair NNP
+decommissioned VBN
+Ondaatje NNP
+delay NN VB VBP
+butler NN
+tarred VBN VBD
+BellSouth NNP
+degree NN
+definitional JJ
+victuals NNS
+information-products NNS
+Wishart NNP
+Photos NNS
+Boasts VBZ
+powdery JJ
+long-known JJ
+canal NN
+southernisms NNS
+infirmity NN
+Calculating VBG
+quibbling VBG
+indecent JJ
+sandbars NNS
+Eurodynamics NNPS
+espousing VBG
+whistleblower NN
+Sultanov NNP
+government-plus JJ
+SHORT-TERM JJ
+copper NN
+Subscribers NNS
+rayon NN
+Money NNP NN
+Chiggers NNS
+reflects VBZ
+ASP NNP
+gasconade VB
+Editors NNS
+abortion-related JJ
+bluntness NN
+soap NN
+Redding NNP
+human-resource JJ
+violence NN
+workforce NN
+undermine VB VBP
+sizenine JJ
+overboard RB
+well-defined JJ
+Makepeace NNP
+underplayed VBN
+Clearwater NNP
+blue-chips NNS
+Servatius NNP
+collonaded VBN
+Frondel NNP
+smoothed VBD VBN
+decade-long JJ
+stage NN VBP VB
+propped VBN VBD
+City-type JJ
+Phouma NNP
+BPD NNP
+blitzkrieg NN
+now-dominant JJ
+Protocol NNP
+offer NN VB VBP
+Fragonard NNP
+biplane NN
+leftist JJ
+Dowty NNP
+navies NNS
+splotches NNS
+theoretical JJ
+lumber NN VBP
+unallocable JJ
+lanthanum NN
+dolledup JJ
+kimono FW
+razor-edged JJ
+veto NN VB
+tout VB FW NN
+poems-in-drawing-and-type JJ
+proper JJ
+lairs NNS
+IDEC NNP
+Hypnosis NN
+overbilled VBD
+notorious JJ
+drummer NN
+precociously RB
+impressionist NN JJ
+designees NNS
+habeas-corpus JJ
+Otto NNP
+money-management NN JJ
+tribunals NNS
+horses NNS
+stable JJ NN
+Grimaldi NNP
+softer JJR RB
+individual-type JJ
+counterproductive JJ
+Alcoholic NNP
+Madam NNP
+three-hour-show NN
+Rottger NNP
+Milacron NNP
+reveled VBD
+polling NN JJ VBG
+inauguration NN
+operetta NN
+McKenzie NNP
+circumspect JJ
+wangled VBD
+Hildebrandt NNP
+still-undeveloped JJ
+SENIOR JJ
+whites NNS
+Wallenstein NNP
+Prucker NNP
+earners NNS
+Thaddeus NNP
+deliberated VBD
+otherworldliness NN
+Siegman NNP
+theatres NNS
+gorge NN
+pounced VBD
+criss-crossed JJ VBN
+plenitude NN
+Noyes NNP
+recitation NN
+malcontent NN
+Horizons NNP
+scuttled VBD VBN JJ
+Fold VB
+Gideon NNP
+admonitions NNS
+repelled VBN VBD
+Discovery NNP NN
+Tanker NNP
+Krystallographie NNP
+tight-lipped JJ
+jolt NN VB
+Managua NNP
+rerouted VBN
+Flite-King JJ
+proprietary JJ NN
+muzzled VBN
+Beaman NNP
+performed VBN VBD
+AIB.PR NNP
+simpliciter FW
+Other JJ NNP
+F.S.L.I.C NNP
+competitiveness NN
+APPLE NNP
+superstate NN
+BLACK JJ NNP
+muscled VBD VBN
+Insulate VB
+nemeses NNS
+deceleration NN
+examined VBD VBN
+Expect VB
+turnover NN
+delicto FW
+Inpex NNP
+guard-room NN
+Mt. NNP
+surprise... :
+pseudo-willing NN
+Gallen NNP
+unintelligible JJ
+Zero-Based NNP
+CalMat NNP NN
+skill-dilution JJ
+A330 NN
+lower-class JJ
+gatherings NNS
+hoarseness NN
+dealmaker NN
+certifying VBG
+diverted VBN VBD
+MS-DOS NNP
+evaporation NN
+inoperable JJ
+humanely RB
+shining VBG JJ
+Kafkaesque JJ
+severalty NN
+Sasea NNP
+Neihart NNP
+relayed VBD VBN
+Cinzano NNP
+Figger VB
+deriving VBG
+Placing VBG
+Middlesex NNP
+populism NN
+Desrosiers NNP
+Pointers NNS
+fanny NN
+graft NN VB
+Suvorov NNP
+a-Discounted JJ VBN LS|JJ
+Ronkonkoma NNP
+udders NNS
+Beulah NNP
+Personages NNS
+indium NN
+mum JJ NN
+countenance NN VB
+clumps NNS
+toaster NN
+administration-Fed JJ
+Mohammed NNP
+ultrasonics NNS
+submarine-launched JJ
+terrains NNS
+prospect NN
+laboring VBG
+inferences NNS
+better-off JJR JJ
+'We've PRP NN
+importing VBG NN
+Elbow NN NNP
+Ahrens NNP
+undergoes VBZ
+Gauleiter NNP
+faultlessly RB
+BOJ NNP
+munchkin NN
+embryonic JJ
+Showers NNP
+W.I.L.D NNP
+Undugu NNP
+Jujo NNP
+Galamian NNP
+aiming VBG
+pronounce VB
+lost-profits JJ
+GAMBLE NNP
+fernery NN
+waving VBG NN
+Burzon NNP
+less-liquid JJR
+handpicked VBN VBD
+Onegin NNP
+complying VBG
+stealer NN
+D'Arcy NNP
+rootless JJ
+throwin VBG NN
+womb-leasing NN
+simplicity NN
+Squire NNP
+Anxiety NNP NN
+Publick NNP
+FileNet NNP
+pleasure\ CC
+first-time JJ
+Chevenement NNP
+Horns NNS
+Fiasco NNP NN
+cooked VBN VBD
+hiders NNS
+redistribute VB VBP
+Giant NNP JJ NN
+mini-empire NN
+forisque FW
+omens NNS
+Contributing VBG
+new-issue JJ NN
+Amoco NNP
+worked-out JJ
+drought-stunted JJ
+dislocations NNS
+Tunica NNP
+Veraldi NNP
+Luci NNP
+Symantec NNP
+Queried VBN
+truth-packed NN
+dare VB VBP MD NN
+home-health-care JJ
+ammonium NN
+and... :
+Camaret NNP
+Laufenberg NNP
+crystallographers NNS
+Romanesque JJ
+supreme NN JJ
+event-driven JJ
+Imposed VBN
+Bun NN
+shiver NN VB
+pep NN VB
+yearbook NN
+neutron NN
+created VBN VBD JJ
+stream-of-consciousness NN
+Redoute NNP
+lacking VBG JJ
+prominant JJ
+petered VBN
+jollying VBG
+coinciding VBG JJ
+nationalism NN
+ulcers NNS
+pooling-of-interests JJ
+JAGRY NNP
+Culver NNP
+beau NN
+willingness NN
+boded VBD
+Bache NNP
+storytelling NN
+Insureres NNS
+Martek NNP
+hormonal JJ
+Eq. NN NNP
+spectrophotometric JJ
+crapshoot NN VB
+produce VB VBP NN
+Issuing VBG NN
+catamaran NN
+UCLA NNP
+Infectious JJ
+Confession NN NNP
+Jean-Honore NNP
+Schenectady NNP
+strong-willed JJ
+equator NN
+enmeshed VBN
+boast VBP NN VB
+pipedreams NNS
+self-diagnostic JJ
+albicans NNS
+nor CC
+Baghdad NNP
+Scrap NN
+side-conclusions NNS
+McClements NNP
+alleviating VBG
+profit-maximizing JJ
+circuits NNS VBZ
+Banawans NNPS
+arranging VBG
+jerkings NNS
+upsurge NN
+unionists NNS
+fantasy NN
+Gordon\/Pick NNP
+choppy JJ
+one-set JJ
+Hymowitz NNP
+CODE-NAMED VBN
+Illinois-based JJ
+Childs NNP
+Segal NNP
+fellowship NN
+tele-processing JJ
+Biopure NNP
+mazurka NN
+McKellar NNP
+prisoners. NNS
+Heitschmidt NNP
+factory-outlet JJ
+moustache NN
+Cushing NNP
+Seeks VBZ
+unscathed JJ
+Issak NNP
+conceived... :
+induction NN
+subtler JJR NN
+immunoglobulin NN
+monetarism NN
+chopped JJ VBD VBN
+Devey NNP
+Vale\ IN
+Castellanos NNP
+turtleneck NN
+superstars NNS
+Weingarten NNP
+waggishly RB
+signal NN VB VBP
+foreign-led JJ
+Playa NNP
+Edsel NNP
+hypocrisies NNS
+BNP NNP
+collaboration NN
+Lavaro NN
+need NN VBP MD VB
+assimilated VBN JJ
+satisfying JJ VBG
+Naganawa NNP
+DFC NNP
+duct NN
+highbrow JJ
+thirty-sixth JJ
+nozzle NN
+awards NNS VBZ
+Yaobang NNP
+Dorney NNP
+lathered VBN VBD
+WFAA-TV NNP
+peppers NNS
+Douglas NNP
+Histrionix NNP
+revitalization NN JJ
+Historians NNS NNPS
+warily RB
+Teatime NN
+Amenitskii NNP
+receivable JJ NN
+orchards NNS
+Presenting VBG
+symbolism NN
+mockingly RB
+Blues NNPS NNP NNS
+nerve NN
+Wander VB
+emulated VBN
+Stinnett NNP
+Schweppes NNP
+SNET NNP
+villas NNS
+flannel NN
+snotty JJ
+devise VB VBP
+Nerves NNS
+outboards NNS
+Murphy NNP
+compatible JJ
+crest NN VB
+Turnout NN
+cushion NN VB
+succor NN
+Cos NNP NNPS
+Developer NNP
+unanimously RB
+Gotham VB
+surrogate JJ NN
+inveigle VB
+Reporting NNP
+Keenan NNP
+junk-bond-financed JJ
+infusion NN
+highest-yielding JJ
+tiresome JJ
+Arnolphe NNP
+vice-presidents NNS
+thousandth JJ
+Candu NNP
+packaged-goods NNS JJ
+oilseeds NNS
+one-family JJ
+gas-cooled JJ
+alginates NNS
+ANGELES NNP
+Jaya NNP
+fund-selling JJ
+Baslot NNP
+Frazzano NNP
+coiffed JJ
+Kingman NNP
+Aboveground JJ
+Nathan-Bond NNP
+mapped VBN VBD
+intermissions NNS
+interagency NN JJ
+materals NNS
+Rankings NNS
+goal NN
+characterizing VBG
+blink VB NN
+full-body JJ
+mortgage-backed JJ
+Internal NNP JJ
+role-experiment NN
+parted VBD VBN JJ
+burns NNS VBZ
+hypercellularity NN
+verge NN
+electronics-instruments JJ
+Farmingdale NNP
+Drexel-underwritten JJ
+forgot VBD VBN
+Wharf NNP
+dandy JJ
+curry VB NN
+Augusto NNP
+Pedde NNP
+tapioca NN
+rained VBD VBN
+hard-won JJ
+architecturally RB
+Arabian NNP JJ
+glazed VBN
+Crows NNPS
+unborn JJ NN
+Sut NNP
+underweighted VBN
+broadcasters NNS
+locust NN
+reliefs NNS
+Skadden NNP
+DRUG NN NNP
+Dooling NNP
+Woos VBZ
+Race-drivers NNS
+park NN VB
+drum VB NN
+Indulgers NNS
+Existentialism NNP
+Dumas NNP
+angelica NN
+Plain-vanilla JJ
+CO. NNP
+closeted JJ VBD VBN
+single-valued JJ
+No. NN JJ VB NNP
+Banning VBG
+brook NN
+Reefs NNS
+turntable NN
+Lawn-Boy NNP
+tainted VBN VBD JJ VBN|JJ
+Padre NNP
+Offered NNP VBN
+Forrester NNP
+poltically RB
+ill-timed JJ
+Antigua NNP
+empire NN
+relocating VBG
+beleaguered JJ VBN
+mid-afternoon JJ NN RB
+unemployment NN
+reguli NNS
+visited VBD VBN
+Epidemiological JJ NNP
+--fawning VBG
+Dick NNP
+--in NN
+regulative JJ
+outshines VBZ
+ginseng NN
+rake NN VB VBP
+fingers NNS
+Colson NNP
+judgmental JJ
+direct-mail JJ NN
+TechDesign NNP
+Massage NN NNP
+Decline NN
+Boom-city NNP
+DeWitt NNP
+longings NNS
+Hiltons NNPS
+Himmler NNP
+legislatively RB
+'My PRP
+a-tall JJ
+blob NN
+Edw NNP
+capital-raising JJ NN
+Management NNP NN
+Drift NNP
+BOAST VB
+two-floor JJ
+Rome NNP NN
+exerting VBG
+grafted JJ VBN
+wry-faced JJ
+genie NN
+Fords NNS NNP NNPS
+Speedway NNP
+Victor NNP
+Erotic NNP
+Previously RB
+squatters NNS
+Alusuisse NNP
+receive VB VBP
+Terrorism NNP
+masquerades VBZ
+audio\/visual JJ
+meat-packing JJ NN
+ultra-high-speed JJ
+drillers NNS
+graveyards NNS
+plate NN
+kennel NN
+elephant NN
+Expenditure NNP
+Leila NNP
+TREATING VBG
+Dallas-based JJ
+monarchy NN
+program-driven JJ
+MDC NNP
+Blish NNP
+non-Jews NNS
+Stations NNS NNPS
+money-fund JJ NN
+catastrophic-healthcare JJ
+renders VBZ
+Petrus NNP
+graining NN
+bequests NNS
+particles NNS
+September NNP
+counsel NN VB VBP
+lounging VBG NN
+as-it-were RB
+Fleisher VB NNP
+scribblers NNS
+crooning VBG
+tracers NNS
+habe FW
+cops NNS
+pavian FW
+earnings-per-share JJ
+USSR NNP
+magician NN
+howe WRB
+nationalistic JJ
+unmentioned VBN
+Elkus NNP
+neighboring VBG JJ
+Khaju NNP
+petitioned VBD VBN
+unhedged VBN
+silicate NN
+assigned-risk NN
+diversifed VBN
+jabbing VBG
+listing NN VBG
+BAKKER NNP
+Husk NNP
+intitiative NN
+emerging VBG
+Abdul-Raheem NNP
+spring NN VB VBP
+discounter NN
+INSTITUTE NNP
+Around IN NNP
+AMs NNS
+second JJ CD LS NN RBS RB
+Zajick NNP
+snoozing VBG NN
+hop-skipped VBN
+Toy NNP NN
+wowed VBD
+folders NNS
+Holderlin NNP
+willow-lined JJ
+warehouse-management NN
+B2 NN JJ
+totem NN
+sprinklers NNS
+obediences NNS
+courting VBG NN
+Amtrak NNP
+Caddy NNP
+Capoten NNP
+Celestial NNP
+seditious JJ
+Bangles NNPS
+enigma NN
+data-communications NNS
+over-large JJ
+backed VBN JJ VBD
+Verwoerd NNP
+develops VBZ
+interrelationships NNS
+oil-lease JJ
+blooming VBG NN
+videodisk NN
+educator NN
+soda NN
+ripe JJ
+viscoelastic JJ
+saluted VBD VBN
+Italia NNP
+Confederates NNS
+making VBG NN
+Tahiti NNP
+switchboard NN
+overexercised VBN
+Suites NNPS NNP
+Eiszner NNP
+decent JJ
+Roanoke NNP
+outclass VBP VB
+skittish JJ
+Wheatena NNP
+hallelujahs NNS
+idolize VBP
+Seasonings NNPS
+uninjured JJ
+inventory NN
+London-based JJ NNP
+darkroom NN
+ASDA NNP
+Alexandra NNP
+specificity NN
+blabs VBZ
+Via NNP
+alluring JJ
+cause NN VB VBG VBP
+soar VB VBP
+arteriolar JJ
+MAT NNP
+with IN JJ RB RP
+Margler NNP
+Bongo NNP
+solicitous JJ
+safeguarding VBG
+Baer NNP
+mother-introject NN
+Entry NN
+covert-operations NNS
+Resnik NNP
+Tempesst NNP
+Rilke NNP
+double-married JJ
+Internationale NNP FW
+Glaris NNP
+Wm. NNP
+microprocessors NNS
+overtaken VBN
+sherbet NN
+horseshoers NNS
+nos NNS
+Schmidt-Chiari NNP
+Gershen NNP
+stuff NN VB VBP
+doling VBG
+segment NN VBP
+Yanes NNP
+Sako NN
+voice-mail NN
+Insuring VBG
+Corollary NN
+Werkstell NNP
+Super NNP JJ
+trouble-shooter NN
+marshals NNS
+mountainously RB
+Acclaim NNP
+higher-than-expected JJ
+Pounds NNS
+Mae-backed JJ
+monument NN
+salaries NNS
+ardor NN
+Forand NNP
+sediments NNS
+light-mindedness JJ
+obesity NN
+fabrications NNS
+Norths NNPS
+psychotic JJ
+indispensable JJ NN
+Trailing VBG
+grandiose JJ
+scattershot JJ
+Sparrows NNP
+Eccles NNP
+Known VBN
+capitalism NN
+a.m RB NN
+chinoiserie NN
+endangerment NN
+Hanukkah NNP
+best-case JJ
+Hock NNP
+strands NNS
+straight-line JJ
+cliques NNS
+Sween NNP
+redheader NN
+general-management NN
+nauseated VBN JJ
+dearer JJR
+EAC NNP
+immunologist NN
+Mattei NNP
+Rhythm NN NNP
+suppository NN
+travesty NN VB
+eyeful NN
+Londe NNP
+Interhash NNP
+gay-ess VBP
+MCI NNP
+pro-union JJ
+incumbent JJ NN
+forgiveness NN
+epistemology NN
+federalism NN JJ
+sputters VBZ
+Arequipa NNP
+Verges NNP
+unintended JJ
+revenue-law JJ NN
+rehearsals NNS
+Carlsbad NNP
+Menell NNP
+Pentecostal NNP
+Lipsky NNP
+Pirrie NNP
+Sforzt NNP
+fiscal-first-quarter JJ
+Artificial JJ
+Contrasted VBN
+Marinas NNS
+notepad NN
+midsts NNS
+moralistic JJ
+governance NN
+Brodsky NNP
+etc FW NN
+Katsuya NNP
+Spangled NNP
+grievous JJ
+enlargers NNS
+stubby JJ
+vandalized VBD VBN
+dedifferentiated JJ
+unconditional JJ
+archbishop NN
+persimmons NNS
+panoramic JJ
+burnt VBN JJ
+Nicolson NNP
+Earp NNP
+Budweisers NNS
+legions NNS
+Nederlandse NNP
+bishops NNS
+Rousell NNP
+sensibility NN
+Complicating VBG
+Cadet NNP
+variety NN
+threshed VBD
+Currys NNP
+backfield NN
+trafficked VBD
+Ketchum NNP
+Knauer NNP
+insinuations NNS
+coffee NN
+costume-jewelry NN
+Brit NNP
+boomtown NN
+cause-and-effect JJ
+towers NNS VBZ
+Homosexuals NNS
+Manual JJ NNP
+civil-service JJ NN
+oceans NNS
+Palmdale NNP
+Elder NNP
+full-service JJ
+Proprietorship NNP
+biochemistry NN
+impassively RB
+clubhouses NNS
+nonsmokers NNS
+secondbiggest JJS
+AIDS-research JJ
+Egg NNP NN
+contours NNS
+diffidence NN
+bitingly RB
+synthetic-diamond NN
+Panama NNP
+Marrakesh NNP
+conversions NNS
+atrocities NNS
+prosecuting VBG NN VBG|NN
+Matheson NNP
+trash NN VB
+klieg NN
+Spice-Nice NNP
+headlights NNS
+mezzo NN JJ
+soldier-masters NNS
+never-to-be-forgotten JJ
+Draper NNP
+subscribed VBN VBD VBN|JJ
+Gunter NNP
+Season NN NNP
+medium-term JJ
+insults NNS
+capitalgains NNS
+amorous JJ
+finger-held JJ
+glees NNS
+thoroughbreds NNS
+Facilities NNPS NNP NNS
+spearheading VBG
+peremptory JJ
+MILEAGE NN
+Etzioni NNP
+Vetere NNP
+FDA-approved JJ
+deficit-cutting JJ NN
+Pray NNP
+Barksdale NNP
+Lundberg NNP
+messing VBG
+water-holding JJ
+F.S.B. NNP
+Dorr NNP
+Sequester NN
+METALS NNS NNPS
+Suu NNP
+nestbuilding NN
+Hildegard NNP
+Sylvio NNP
+Reyes NNP
+yearall NN
+tyrannical JJ
+spacesuit NN
+H.L. NNP
+grass-green JJ
+clean-water NN
+chomping VBG
+Enterprises NNPS NNP NNS
+finger-post NN
+stratify VB
+bloc NN
+German-built JJ
+non-Hispanic JJ
+Tela NNP
+fail VB VBP NN
+individuation NN
+window-washing NN
+gig NN
+regimes NNS
+unbanning VBG NN
+Tribuna NNP
+tax-exemption NN
+da NNP NN
+bureaucracies NNS
+Inject VB
+reconsideration NN
+bond-fund NN
+joining VBG NN
+Nina NNP
+Manalapan NNP
+Contend VBP
+Anna NNP
+Rhythmic JJ
+Zweibel NNP
+Declan NNP
+smack RB VB UH VBP
+antisera NN
+concededly RB
+Frayne NNP
+flagrantly RB
+models-on-the-way-up JJ
+dehumanized VBN
+Tabacs NNP
+BMW NNP
+Definitely RB
+whisks VBZ
+Gilbraltar NNP
+DOLLAR NN
+unknowns NNS
+un-American JJ
+Byzantine JJ NNP
+prophecy NN
+Gotterdammerung NNP
+tailin NN
+Hibler NNP
+Hardly RB
+Provincial NNP JJ
+Cipher NNP
+written VBN JJ
+exclusiveness NN
+Sokolsky NNP
+Anselmo NNP
+methanol-gasoline JJ
+REQUIRED NNP
+Bowne NNP
+injuries NNS
+investigator NN
+medals NNS
+STUDIES NNS
+Luck NNP NN
+fanned VBD VBN
+Brooks NNP
+still-raging VBG
+eavesdropping NN
+Mateyo NNP
+similar JJ
+competed VBD VBN
+entertainment-industry NN
+emblem NN
+Posner NNP
+continue VB VBP
+Finley NNP
+mispriced VBD
+sequined JJ
+Professionally RB
+narrator NN
+florist NN
+A330-300s NNS
+rookie-of-the-year NN
+Synbiotics NNP
+Dumbo NNP
+Aikawa NNP
+commmon JJ
+Methods NNS NNPS
+tottering JJ VBG
+lookit NN
+build VB VBN VBP NN
+recorder NN
+Castro-led JJ
+buzzing VBG JJ
+low-cal JJ
+J&J NNP
+Dewar NNP
+curfew NN
+school-sponsored JJ
+Indicators NNP NNS NNPS
+INC. NNP
+stroked VBD VBN
+finance-director NN
+embodied VBN VBD
+Panny NNP
+lap-top JJ
+Greville NNP
+qualities NNS
+roleplayed VBN
+medical-airlift NN
+Issam NNP
+unperturbed JJ
+apprentices NNS
+'Look VB UH
+ticket-transfer NN
+Countered VBD
+inequitably RB
+languish VB
+pettiness NN
+stratagem NN
+radiation-produced JJ
+cockpit NN
+schoolmaster NN
+Leasco NNP
+Henri NNP NNPS
+queries NNS VBZ
+ATM NN NNP
+Heel-Terka NNP
+Spear NNP VB
+sonatas NNS
+chew VB VBP
+obeys VBZ
+credit-reporting JJ NN
+Creative NNP JJ
+Sibley NNP
+American NNP JJ NN RB
+underscore VBP NN VB
+clubbed JJ VBD
+Punch VB
+cross-shareholdings NNS
+Beseler NNP
+Hotei NNP
+ShowBiz NNP
+soot-stained JJ
+bachelor NN
+numbing JJ
+red-tile JJ
+underperforms VBZ
+imposes VBZ
+Second-quarter NNP JJ NN
+Madson NNP
+empathy NN
+Absolution NN
+still-commanding JJ
+Mayans NNS
+identifiable JJ
+Switzer NNP
+Leinberger NNP
+Roll NNP NN VB
+Raesz NNP
+colonialists NNS
+Avoidance NNP
+burley NN
+noncash JJ NN
+presorting NN
+influenza NN
+lecturer NN
+invitational JJ
+Brownstein NNP
+Merry NNP JJ
+electric JJ NN
+maladjusted JJ
+militiamen NNS
+Moreau NNP
+realized VBD JJ VBN
+Version NNP
+connections NNS
+broken-backed JJ
+Presse NNP
+U.M.C.I.A. NNP
+Ridiculous JJ
+Gale NNP
+guerrillas NNS
+state-sponsored JJ
+Greatness NNP
+Sense NN NNP
+per IN FW RP NNP
+J.D. NNP
+Lassila NNP
+macaw NN
+Necessary JJ
+Appalachian NNP
+rockers NNS
+fullest JJS
+peace-loving JJ
+panics NNS
+Gilels NNP
+Correcting VBG
+Friars NNS
+Ruckdeschel NNP
+curve NN
+Sophomores NNS
+matte NN
+Bisque NN
+Cyriac NNP
+volatility NN
+PROCTER NNP
+scraped VBD VBN
+disputes NNS VBZ
+confessionals NNS
+ineffectual JJ
+Debora NNP
+relatively RB
+EC-1 NN
+Avner NNP
+Longfellow NNP
+Merkurs NNPS
+once-dull JJ
+Decay NNP
+Sheridan NNP
+quarreled VBD VBN
+return-printing JJ
+Krisher NNP
+Standing VBG NNP
+Stale JJ
+Hon. NNP
+redactions NNS
+best-managed JJ
+Verit NNP
+Disadvantages NNS
+commingled VBN
+Masaaki NNP
+Thackeray NNP
+magnetic-tape-coating JJ
+not RB
+feast NN VB
+long-distance JJ NN
+Raoul NNPS NNP
+Lenaghan NNP
+perforce RB
+Castile NNP
+resublimed VBN
+Upper NNP JJ
+financial-futures NNS
+scope NN
+agree VB VBP
+Legends NNPS
+noisier JJR
+Lamy NNP
+revolved VBD VBN
+divide VB NN VBP
+nominee NN
+Liss NNP
+Rona NNP
+costly JJ RB
+courtesan NN
+dog-powered JJ
+branch-by-branch RB
+pools NNS VBZ
+Schwab NNP
+Bodleian NNP
+Rebellion NN
+bankrupcy NN
+unclaimed JJ
+adaptation NN
+wealth NN
+Mengistu NNP
+Accomplishments NNS
+details NNS VBZ
+oral-care JJ
+Zubin NNP
+sooner RBR RB
+solvents NNS
+cross-bay JJ
+Seminary NNP NN
+Sixty-seven CD
+broom NN
+stock-optioned JJ
+Trustees NNS NNPS NNP
+loadings NNS
+UEP NNP
+Zing NNP
+Bagh NNP
+rodder NN
+ARBITRAGE NN
+torchbearer NN
+resignedly RB
+stick-and-carrot NN
+swished VBD VBN
+C. NNP FW LS NN
+Bailiffs NNS
+Word NNP NN
+trade-in NN
+cross VB JJ NN RB VBP
+practiced VBN VBD JJ
+Caucasus NN
+peritoneal JJ
+phoning VBG
+Lueger NNP
+Passat NNP
+Same JJ
+satirically RB
+Flav-O-Rich NNP
+nationalist JJ NN
+Cairns NNP
+behalf NN
+generic-drug NN JJ
+V.E. NNP
+Mediterranean NNP JJ
+explicable JJ
+cheesy JJ
+all-powerful JJ
+nonfat JJ
+dickering NN
+Freeport-McMoRan NNP
+killing VBG JJ NN
+War NNP JJ NN
+overcerebral JJ
+Folkston NNP
+Cennino NNP
+Tolstoy NNP NN
+accelerating VBG VBG|NN JJ
+Banca NNP
+That-a-way RB
+visibility NN
+harelips NNS
+Bindal NNP
+guests NNS
+myrtle NN
+Overfall NNP
+unregisterd JJ
+dye NN VB
+undisputed JJ
+Transfers NNS
+embezzling VBG
+giggle NN
+uranium NN
+Refuge NNP
+hour NN
+Plessey NNP
+McMoRan NNP
+Summertime NN
+Cosgrove NNP
+Loan-loss JJ
+supporting VBG JJ
+Viking NNP
+Greiff NNP
+cartons NNS
+Secretariate NNP
+cavity-fighting JJ
+RTS NNP
+Farouk NNP
+passively RB
+Sturch NNP
+Wempner NNP
+Policy NNP NN
+Weasel NNP
+Reider NNP
+Kyong NNP
+management-consultant NN
+Eighty-Eight NNP
+denominations NNS
+PW4000 NNP
+Porsches NNPS
+uplands NNS
+toughs NNS
+Plates NNS
+yellerish JJ
+Safely RB
+miscellaneous JJ
+Birdwood NNP
+Webber NNP
+Rosen NNP
+lumpen-intellectual JJ
+faim FW
+shibboleths NNS
+Ganado NNP
+flat-out JJ RB
+Hollis NNP
+beautify VBP
+Forty-second JJ
+tramps VBZ
+guessing VBG NN
+commissioning NN VBG
+LEADER NN
+kegful JJ
+better-remembered JJ
+down-to-earth JJ
+lectures NNS VBZ
+English-language JJ NN
+cowhand NN
+preventatives NNS
+Jardin NNP
+brainpower NN
+pretensions NNS
+sweathruna FW
+waxing NN
+Republican NNP JJ NN
+boat-yard NN
+preferably RB
+Intellectual NNP
+cobbled VBN VBD
+Hogwash NN
+Wastrel NN
+orchestral JJ
+ton-mile JJ
+head-cold NN
+Salk NNP
+Oakhurst NNP
+contraception NN
+Jenning NNP
+Portage NNP
+Washoe NNP
+Fought VBN
+expiring VBG
+scavanged VBN
+CHW NNP
+Hutchings NNP
+Koop NNP
+Rheims NNP
+Isao NNP
+Warden NNP
+Pacitti NNP
+exchangers NNS
+Off-season JJ
+infusion-therapy JJ
+untouched JJ
+distributor NN
+overthrowing VBG
+Casablanca NNP
+Eichmann NNP
+Disciplined VBN
+Bartlesville NNP
+weigh VB VBP
+Forge NNP
+Verrone NNP
+Fazio NNP
+Spinola NNP
+Bawer NNP
+noninterference NN
+Leisurely RB
+mild JJ
+Warner-Lambert NNP
+casting VBG NN
+wide-door JJ
+signing VBG NN
+heyday NN
+U.N.-supervised JJ
+frowningly RB
+mushy JJ
+narcotic JJ
+sliver-like JJ
+superficiality NN
+strongrooms NNS
+walker NN
+soybean NN
+.357 CD
+dried VBN VBD JJ
+Amudarya NNP
+Sesshu NNP
+Adsi NNP
+three-stage JJ
+Povich NNP
+twenty-eighth JJ
+boned VBN
+Princeton\/Newport NNP NN
+Monchecourt NNP
+cleansers NNS
+second-round JJ
+scent NN
+Birtcher NNP
+pyocanea NN
+long-suffering JJ
+Bleeker NNP
+cartoon NN
+development... :
+Grand NNP FW JJ
+vaporization NN
+ocelot NN
+HUD-related JJ
+relishes VBZ NNS
+horribles NNS
+Strapless NNP
+Abdul NNP
+Konrad NNP
+Scranton NNP
+Strumwasser NNP
+Payout NN
+reiterated VBD VBN
+plasm NN
+studs NNS
+tube-nosed JJ
+exalting VBG
+Rolm NNP
+affianced VBN
+equals VBZ NNS
+battered VBN VBD JJ
+Carrara NNP
+lovin JJ
+profit-eating JJ
+turbine-engine JJ
+recuperate VB
+stepped VBD VBN
+Lifecodes NNPS
+Manjucri NNP
+Bartholf NNP
+Hein NNP
+Cristo NNP
+abstentions NNS
+fittest JJS
+subspaces NNS
+fist-fighting NN
+ingenious JJ
+Domaine NNP
+once-bloated JJ
+flipping VBG JJ RB
+endurable JJ
+fly-by-nighters NNS
+evergreens NNS
+Deyo NNP
+chartings NNS
+grumbling VBG NN
+Amcor NNP
+spurs NNS VBZ
+direct-selling JJ
+Torts NNP
+batches NNS
+Quotations NNPS NNS
+Siddo NNP
+Swiss-cheese NN
+Lolly NNP
+Bookies NNS
+bigoted JJ
+shreds NNS
+Steppan NNP
+USAir NNP NN
+statements NNS
+unbundle VB
+passive JJ NN
+class-action JJ NN
+policed VBN
+Vaudois NNP
+Boyce NNP
+renege VB
+Pre-Legislative NNP
+Scapin NNP
+Gladys NNP
+deliciously RB
+Tanabe NNP
+non-Magyars NNPS
+Hovdingar FW
+responses NNS
+Symonds NNP
+arabesque NN
+RUN NNP
+directorate NN
+recreates VBZ
+sub-segments NNS
+HURRICANE NNP
+post-Civil NNP
+unnaturally RB
+poohbah NN
+miscarriages NNS
+Subsystems NNS
+AVC NNP
+featherless JJ
+Overnite NNP
+gridded JJ
+Normalize VB
+belittle VBP VB
+Berry NNP NN
+misrepresented VBD VBN
+eyeballing VBG
+upholds VBZ
+Trikojus NNP
+Armitage NNP
+corporation NN
+Condliffe NNP
+possessions NNS
+coarsened VBN
+strange JJ
+jaunts NNS
+Volio NNP
+Nucor-like JJ
+hungry JJ
+Creditor NN
+Yalta NNP
+fund-raiser NN
+liquidated VBN VBD
+BULL NNP
+wonduh VB
+List NNP NN VB
+soft-rock JJ
+papal JJ
+tremor NN
+existential JJ
+Vic NNP
+Shut VB NNP
+ethic NN
+contented VBN JJ
+mistake NN VB
+hand-tooled JJ
+post-World NNP JJ
+bald-faced JJ
+anchorages NNS
+elicit VB
+Jaguar-GM NNP JJ
+Arens NNP
+Someday RB NN
+hi-graders NNS
+existed VBD VBN
+inter-plant JJ
+Jerald NNP
+A&W NNP
+Throat NNP
+semi-rigid JJ
+P-11 NN
+one-twentieth JJ NN
+Stardust NN
+Wheat-germ NN
+kite NN
+Redwood NNP
+cuckoo NN
+Swaggart NNP
+fertilizing VBG
+populating VBG
+duel NN
+outlaw VB NN
+Professional NNP JJ
+corona NN
+Norberg NNP
+obtrudes VBZ
+animal-rights NNS JJ NN
+CIR NNP
+Oriole NNP
+tarpon NN
+cicadas NNS
+wisp NN
+Vladimir NNP
+patted VBD
+Vadehra NNP
+distortable JJ
+luxuries NNS
+updating VBG NN
+middle-of-the-roaders NNS
+repeaters NNS
+uncertainly RB
+terroristic JJ
+Energieproduktiebedrijf NNP
+couplers NNS
+high-profitability NN
+million-mark JJ
+software NN
+Parkos NNP
+Pucik NNP
+Delegations NNS
+monetarist NN JJ
+thyroxine-binding JJ
+drover NN
+Fenwick NNP
+phased VBN VBD
+seniority-list NN
+showy JJ
+Contribution NNP
+Disney\/MGM NNP
+Alexandre NNP
+Badrawi NNP
+Lamson NNP
+slashing VBG
+Beccaria NNP
+Yukio NNP
+Amtran NNP
+Jean NNP
+Datastream NNP
+scrutinized VBN VBD
+usurious JJ
+constitutes VBZ
+Lukens NNP
+Wheelabrator NNP
+AST NNP
+Silkworms NNP
+Soros NNP
+harangues NNS VBZ
+Lakewood NNP
+lasso NN VB
+sacrosanct JJ
+listless JJ
+Dort NNP
+Barbados NNP
+dichondra NN
+unfettered JJ VBN
+stimulator NN
+Was VBD
+axles NNS
+Hyatt-Clark NNP
+harrassment NN
+spooks NNS
+Merryman NNP
+Delphi NNP
+A.M.A NNP
+misinterpreted VBN VBD
+big-boned JJ
+Pasztor NNP
+hospitalization NN
+Secrecy NN NNP
+longer-run JJ
+SOS NNP
+barrier-free JJ
+payer NN
+Ziegler NNP
+silicone NN
+brawle NN
+direct-mail-mogul NN
+UGF NNP
+mutational JJ
+Admistration NNP
+foxtail NN
+Wolpe NNP
+paternity NN
+truant JJ
+affirming VBG
+power-steering NN
+Keeeerist UH
+Command NNP NN
+vue FW NN
+accommodating VBG
+Textbooks NNS
+Bohemians NNPS
+telegram NN
+beatific JJ
+Caetani NNP
+wheezes NNS
+Predispositions NNS
+Walmart NNP
+Mio NNP
+highest-rated JJ
+Vietor NNP
+Cruiser NNP
+therein RB
+MD90 NN
+digestion NN
+scornful JJ
+supervisor NN
+non-profit JJ
+Over-achievers NNS
+non-ICO JJ
+abetted VBN VBD
+Ashcroft NNP
+Wagner-Peyser NNP
+artisans NNS
+shovel NN
+Illustrations NNS NNP
+replacing VBG
+Huerta NNP
+filial JJ
+handbag NN
+alternative-energy JJ
+pediatrics NN
+explodes VBZ
+remuneration NN
+outranks VBZ
+SNIA NNP
+should MD
+SOUTHERN NNP
+fully RB
+epsom NN
+non-regulated JJ
+dialectically RB
+Brest NNP
+less-aggressive JJ
+lambasted VBD VBN
+Galles NNP
+Iowa-based JJ
+civilized JJ VBN
+urethanes NNS
+quake-shocked JJ
+Nickless NNP
+Mattel NNP
+Loving NNP
+Wyeth NNP
+made-for-TV JJ
+fiscal JJ IN NN
+butchers NNS VBZ
+physiological JJ
+self-appointed JJ VBN
+flu NN
+Negligence NN
+CLAUSTROPHOBIC JJ
+telecopier NN
+D* NNP
+Grateful NNP
+archive NN
+geode NN
+electromechanical JJ
+Chiat\/Day\/Mojo NNP
+even-tempered JJ
+semi-ambiguous JJ
+reproductions NNS
+jest NN
+Giardini\/Russell NNP
+arcus NN
+mile NN
+hollyhock NN
+Post NNP NN
+engulfed VBN VBD
+cost-data JJ
+good-looking JJ
+Tuitions NNS
+Somers NNP
+spigots NNS
+crasher NN
+most-polluted JJS
+Pedigrees NNS
+high-rated JJ
+trail-setters NNS
+corporeality NN
+defections NNS
+wholesale-store JJ
+leavings NNS
+rages VBZ NNS
+waist NN
+hallowed JJ
+angina NN
+Sibra NNP
+pimpled JJ
+bosoms NNS
+characterless JJ
+Dioxins NNS
+year-to-date JJ NN
+Computations NNS
+enjoining VBG
+Amfac NNP
+M.D.C NNP
+Optique NNP
+gibes NNS
+Alcatraz NNP
+rescuing VBG
+once-closed JJ
+expensive JJ RB
+confounding VBG
+Diagnostics NNPS
+Candy NN NNP
+settle VB VBP
+Burry NNP
+BRACED NNP
+statutes NNS
+PL-480 NN
+day-today JJ
+flatcars NNS
+McKinney NNP
+financial-related JJ
+Fists NNS
+confidentially RB
+Waverly NNP
+propfans NNS
+Avnet NNP
+upperclassmen NNS
+spurt NN VBP
+shied VBD VBN
+calls VBZ NNS NN
+Norwalk NNP
+S'Mores NNP
+price-slashing JJ NN
+tepid JJ
+lagoon NN
+panning VBG
+A.P. NNP
+postmasters NNS
+boats NNS
+founders NNS
+antihistorical JJ
+cork NN
+schooling NN VBG
+Dantchik NNP
+ain't-it-great-to-be-a-Texan JJ
+seamstress NN
+pastels NNS
+tweety-bird JJ
+Booming JJ
+rescissions NNS
+Missions NNP
+Guangdong NNP
+Insitutional JJ
+operating-room NN
+Wheeling NNP
+Berto NNP
+Playboy-Show-Biz NNP
+Drought NN
+hemophilia NN
+Franks NNPS
+bushy JJ
+enigmatic JJ
+joint-implants NNS
+identification NN
+Adaptaplex NNP
+Falklands NNP
+convertible JJ NN
+executives NNS
+Fan NNP VB
+J&L NNP NN
+Lamar NNP
+Thurman NNP
+Intangible JJ
+Terrence NNP
+antiwar JJ
+roustabout NN
+fortune-cookie NN
+unserviceable JJ
+populist JJ NN
+Kong-dollar NN
+heartstopping JJ
+ground-based JJ
+drying VBG NN
+Cairenes NNPS
+poverty NN
+high JJ NN RB RP
+Barron NNP
+jagged JJ VBN
+Suppliers NNS
+Manila-based JJ
+Hurt NNP VBN
+SHOWY JJ
+iron-shod JJ
+victorious JJ
+hay NN VB
+Incorrect JJ
+Schockler NNP
+Forecasters NNS
+zeroing VBG
+water-cooled JJ
+Oberstar NNP
+intermediaries NNS
+flaws NNS
+disgorgement NN
+Didi NNP
+DC-8-62 NN
+death-like JJ
+demagogues NNS
+chisel NN VB
+anti-conservation JJ
+poems NNS
+economizing VBG
+portraiture NN
+pre-tax JJ
+notification NN
+black-body JJ NN
+restaurateurs NNS
+stop-loss NN JJ
+Bartlett NNP
+Processing NNP NN VBG
+antiviral JJ
+hangers-on NNS
+gossip NN
+Dowager NNP
+Ravencroft NNP
+riven VBN
+rematches NNS
+Hiatt NNP
+eyed VBD
+Diaz NNP
+whipping-boys NNS
+genii NN
+Records NNPS NNP NNS
+cyanide-laced JJ
+dthat IN
+Ears NNS
+Tomkins NNP
+attractions NNS
+assesment NN
+assailant NN
+retroactive JJ
+strut NN
+kerosene NN
+cram JJ
+axiological JJ
+Explanations NNS
+Puente NNP
+defensible JJ
+pet NN VB JJ
+stand-by JJ
+Cubist NN
+Cigarette NN NNP
+Feature NNP
+droves NNS
+Gaydon NNP
+reclusive JJ
+Sandoz NNP
+Thing NNP NN
+straightens VBZ
+Sabinson NNP
+money-minded JJ
+courageously RB
+burr-headed JJ
+Burst VBD
+Lok NNP
+Flavus NNP
+cement-and-glass JJ
+hilarious JJ
+Stevens NNP
+Primo NNP
+giddiness NN
+contentment NN
+Shakespearian JJ
+domains NNS
+superintendents NNS
+earnest NN JJ
+ordinarius NN
+A-1 JJ NN
+town NN
+stimulus NN
+clusters NNS VBZ
+Causes NNP
+write-down NN VB
+methadone NN
+headless JJ
+DDR NNP
+birch NN
+lenses NNS
+chic JJ NN
+ethanol-based JJ
+minority NN JJ NN|JJ
+patched VBN JJ
+intra-Community JJ
+plush JJ NN
+sonorous JJ
+aptitudes NNS
+Rouben NNP
+Winsor NNP
+thinner JJR NN
+dressers NNS
+balling VBG
+Makro NNP
+C.H. NNP
+Amusing JJ
+data-capture JJ
+streaking VBG
+Loyola NNP
+abusers NNS
+metric-ton-per-year JJ
+easy-to-operate JJ
+less-than-brilliant JJ
+Bowls NNP
+cripple-maker NN
+Senate NNP JJ
+implantable JJ
+capitalist JJ NN
+earnings-driven JJ
+Westinghouse-Mitsubishi NNP
+Friday NNP
+interlocutor NN
+befall VB VBP
+rewrites VBZ
+renewable JJ
+Lalaurie NNP
+content NN JJ VB
+aerialists NNS
+methodical JJ
+foe NN
+tender NN VBP JJ VB
+SOVIET JJ NNP
+pro-Europe JJ
+tholins NNS
+Mariel NNP
+federalist NN
+slumbering VBG
+rateable JJ
+hookup NN
+persuading VBG NN
+dystopian JJ
+Gallet NN
+humiliatingly RB
+Dubin NNP
+Elfner NNP
+crashes NNS VBZ
+complied VBN VBD
+Drabinsky NNP
+Ringler NNP
+Blechman NNP
+footholds NNS
+Makato NNP
+CALLS NNPS
+%CHG NN
+entre NN
+flextime NN
+participating VBG JJ
+anymore RB
+rumbles VBZ NNS
+confessed VBD VBN
+Hotel NNP NN
+perpetuating VBG
+bifurcate VB
+revoke VB
+forgings NNS
+trespasses NNS
+suppose VBP VB
+Goudsmit NNP
+Between IN
+MEA NNP
+Spelling NNP
+technologist NN
+Samovar NNP
+Evan NNP
+Slovakia NNP
+Reservists NNPS
+High-gain JJ
+ISC\/Bunker NNP
+duds NNS
+force NN FW VB NNP VBP
+Anku NNP
+theologian NN
+Cow NNP NN
+captors NNS
+viewings NNS
+outlive VB
+closedowns NNS
+Koor NNP
+Shattered JJ
+as IN NNP JJ RB
+railbirds NNS
+crisply RB
+Voroshilov NNP
+invested VBN VBN|JJ VBD
+two-week JJ
+Tribune NNP
+Social NNP JJ NNS
+Findlay NNP
+unenforcible JJ
+rebellious JJ
+stress NN VBP VB
+Convincing VBG JJ
+Babson NNP
+Institutional JJ NNP
+hoses NNS VBZ
+Died VBD VBN VBD|VBN
+collaborator NN
+Vacancy NN NNP
+returned VBD VBN
+Bretton NNP
+Physiologically RB
+Fantastico NNP
+dilemmas NN NNS
+Draw VB NNP
+Twin NNP
+peppery JJ
+Reduces VBZ
+consortium NN
+BEAT NN
+hypothesized VBN
+irate JJ
+Lodowick NNP
+differences NNS
+Designers NNPS NNP NNS
+third-quarter JJ NN NN|JJ
+Martha NNP NN
+patronized VBN VBD
+transom NN
+discount-borrowing NN
+X-ray-proof JJ
+doubte NN
+loggers NNS
+crossing VBG NN
+silvery JJ
+J'ai FW
+belched VBD
+coolers NNS
+Allis-Chalmers NNP
+decongestant NN
+Salvador NNP
+state-funded JJ
+briquette NN
+odors NNS
+arched JJ VBD VBN
+Trinova NNP
+rheum NN
+brindle NN
+enjoy VB VBP
+osteoarthritis NN
+unconditioned JJ
+Siberia NNP
+preordained VBN
+Summary NNP NN
+alleviation NN
+Locke NNP
+varmint NN
+Dusseldorf NNP
+castor-oil NN
+Burnison NNP
+new-telephone-line NN
+day-long JJ
+levers NNS
+Sidley NNP
+Saxons NNP NNS
+predictions NNS
+laptop NN JJ
+atrocity NN
+Veteri NNP
+undertones NNS
+next-to-last JJ
+incompatibility NN
+Cosmos NNP
+twinge NN
+Wetzler NNP
+paradoxical JJ
+Meantime RB NNP
+Argive NNP
+Hyatt NNP
+adjustable JJ
+Oakland-Berkeley NNP
+Seifert NNP
+Worcestershire JJ
+Breve NNP
+mausoleum NN
+Preface NNP
+sixth-biggest JJ
+DeVille NNP
+GenProbe NN
+A340 NN
+converter NN
+Storage NNP NN
+housing-related JJ
+Thatcher-style JJ
+two-syllable JJ
+administrator NN
+fairly RB
+gages NNS
+Plaza NNP
+claim NN VBP VB
+uppermost JJS JJ RB
+peace-treaty NN
+Mohamed NNP
+Saks NNP NNS
+squirming VBG
+nine-point JJ
+Compaq NNP VB
+McLean NNP
+binding NN JJ VBG
+tenfold RB JJ
+Powerful JJ
+proceeding NN VBG
+Survived VBD
+uphill JJ RB
+strolling VBG
+Scofield NNP
+evasions NNS
+outlay NN
+cumulus NN
+Auctions NNS NNPS
+Meson NNP
+shambling VBG
+bumblebees NNS
+spiritual JJ NN
+Jerseyite NNP
+Include VB
+unabsorbed JJ
+waive VB
+Live NNP VBP JJ VB
+timeliness NN
+Broberg NNP
+downpayment NN
+imbroglio NN
+Korneyev NNP
+strangely RB
+Initiative NNP
+popped VBD VBN
+interest-deferred JJ
+cunning JJ NN
+electorate NN
+inflammations NNS
+seducing VBG
+Aktiengesellschaft NNP
+auditor NN
+Zaffarano NNP
+Brauerei NNP
+sorted VBN VBD
+bondholders NNS
+aborigine NN
+self-consciousness NN
+curtailed VBN VBD
+nightfall NN
+seismological JJ
+Inverness NNP
+Fudosan NNP
+Americas NNP NNPS
+Syb NNP
+lend VB VBP
+Fetzer NNP
+growers NNS
+sternum NN
+jeunes FW
+Christy NNP
+embattled JJ VBN
+faceless JJ
+thoughtfulness NN
+drumroll NN
+assented VBD VBN
+Cauffman NNP
+Deans NNP NNS
+Winthrop-University NNP
+McLendon NNP
+debt-free JJ
+ATP NN
+Wainwright NNP
+Correctly RB
+Research NNP NN
+sock NN VB
+blindness NN
+burgeoning VBG JJ
+trader NN
+portfolio... :
+alike RB JJ
+pugh JJ
+Nearby RB JJ NNP
+seven-inning JJ
+administration NN
+interest-free JJ
+bomb-plant JJ
+repairing VBG NN
+harem NN
+wtih NN
+elastomer NN
+lodges NNS
+Buildings NNS
+thumped VBD
+retold VBD
+anti-missile JJ NN
+survivor NN
+Sometimes RB
+recognize VB VBP
+Glad JJ
+Levitt NNP
+strengtened VBN
+brittle JJ
+many-times RB
+Mont. NNP
+peppering VBG
+Indentical JJ
+Henney NNP
+dd VBD
+tenspot NN
+Pentagon-related JJ
+Filmed VBN
+rebuffed VBN VBD
+criminal-justice NN
+comforted VBN
+giveaway NN JJ
+FORCE VBP
+given VBN VBN|JJ JJ
+flicked VBD
+Bewkes NNP
+existance NN
+hinges NNS VBZ
+Eurostat NNP
+Washing NN NNP
+Bridgers NNP
+uncoated JJ
+Apollonian JJ
+food-color NN
+Bus NN NNP
+P.-T.A. NNP
+conditioned VBN VBD JJ
+Shrubs NNS
+tracery NN
+Matchett NNP
+Jackstadt NNP
+detach VB
+Scam NN
+exploratory JJ
+Gallant NNP
+bulletproof JJ
+Conduct NNP VB
+nibblers NNS
+submitted VBN VBD
+green-scaled JJ
+Segar NNP
+intimately RB
+one-sentence JJ
+clucks VBZ NNS
+periodically RB
+Vie NNP
+laxatives NNS
+ghost NN
+predispose VB VBP
+A-2 NN JJ
+Maybelline NNP
+analgesic JJ NN
+Skorich NNP
+Autobiography NNP
+blue-collar JJ
+plights NNS
+lynch-mob JJ
+less-than-truckload JJ
+news-magazine NN
+R/NNP.A. NN
+architectural JJ
+Clorox NNP
+freedom-loving JJ
+LaWarre NNP
+thenceforth CC
+jackass NN
+now RB JJ NN UH
+WSJ\ NNP
+absent JJ VB
+woodworms NNS
+distrust NN VBP VB
+Richelieu NNP
+Sandner NNP
+Hibor NNP
+Brodsly NNP
+Formosa NNP
+unwrinkled JJ
+err VBP VB
+Approvals NNS
+Rhodesia NNP
+CIT NNP
+Irradiation NN
+Nine CD NNP
+RESIDENTIAL NNP
+Scarcity NN
+Anne NNP VB
+deductable JJ
+Documentary NNP
+Sources NNS NNP
+Metrically RB
+memorials NNS
+Incredibly RB
+birdies NNS
+Lovingood NNP
+alternating VBG
+saddlebags NNS
+Oakbrook NNP
+Cardboard NN
+Turbulent JJ
+skits NNS
+trailed VBD VBN
+marketwide JJ
+pate NN
+turbines NNS
+Knows VBZ
+procurement NN JJ
+disclaimers NNS
+very-highly JJ
+decommissoned JJ
+unbelieving JJ
+pudding-faced JJ
+disabled-workers NNS
+scedule NN
+Chatterji NNP
+auto-emission NN
+Moriarty NNP
+Kalison NNP
+Millbrae NNP
+commissions NNS VBZ NN
+co-sponsor NN VB
+trusteth VBP NN
+dark JJ NN RB
+meditate VB
+civilian JJ NN
+riles VBZ
+Olerichs NNPS
+Damned JJ RB UH
+--fell VBD
+streptokinase NNP
+analysed VBN
+poking VBG
+balloons NNS VBZ
+roughness NN
+fixers NNS
+Concurrence NN
+toy-making JJ
+nuance NN
+longish JJ
+Cocaine NN
+encouragement NN
+farmhouses NNS
+Muffin NNP
+wherever WRB
+declaratory JJ
+scheduled VBN VBD JJ
+Risparmio NNP
+redress VB NN
+Kornfield NNP
+hymen NN
+compiled VBN VBD
+Chapter NN NNP
+Cox NNP
+financial-support JJ
+Elie NNP
+mist-like JJ
+treats VBZ NNS
+Vasso NNP
+Tegucigalpa NNP
+stoutly RB
+American-Negro NNP
+medicare NN
+Hearst NNP
+fake JJ NN VBP
+market-maker NN
+mustaches NNS
+postulate VB
+low-sugar JJ
+HEWLETT-PACKARD NNP
+Warrior NNP
+barnyards NNS
+Complicity NN
+trans-political JJ
+Exceptions NNS
+phyla NN
+boxed VBN
+no-strike JJ
+Fleet NNP NN
+gray-market JJ
+Broadbeach NNP
+vested VBN JJ
+Push-ups NNS
+fellowfeeling NN
+thrice-monthly JJ
+murdered VBN VBD JJ
+then-rampant JJ
+Corvette NNP
+Leipzig NNP NN
+Kiyotaka NNP
+photocopying VBG NN
+principally RB
+Nothing NN NNP
+debt-happy JJ
+willpower NN
+model NN JJ VB NNP
+reregulate VB
+innermost JJ
+hydrogens NNS
+under-secretary NN
+avowedly RB
+at IN VBD RB RP
+usefulness NN
+McFeeley NNP
+Tomlin NNP
+impulsively RB
+fibrillation NN
+button-down JJ
+craftsmen NNS
+tambourine NN
+elitist JJ
+motor-industry NN
+MinHa NNP
+Lander NNP
+urgencies NNS
+reelection NN
+earring NN
+Calvert NNP
+Moscone NNP
+readable JJ
+C1 NNP
+already-shaky JJ
+restlessness NN
+F.S.C. NNP
+Starke NNP
+Schwerin NNP
+energy-services NNS JJ
+patrol NN VBP VB
+subjugated JJ
+cosily RB
+long-troubled JJ
+orchestras NNS
+mythical JJ
+Emirates NNPS NNP
+fringed VBN JJ
+Espy NNP
+Isosceles NNP
+Dogtown NNP
+UNRESOLVED JJ
+Westendorf NNP
+Gramm NNP
+seamier JJR
+advocated VBN VBD
+straight-backed JJ
+firelight NN
+acceleration NN
+higher-density JJ
+Special-interest JJ
+Sumter NNP
+schoolbooks NNS
+trades NNS VBZ
+smog NN
+liens NNS
+Beads NNPS
+Ayers NNP
+frog NN
+Enasa NNP
+Sino-Soviet JJ
+photoluminescence NN
+heartland NN
+Heels NNS
+trapdoors NNS
+fast-closing JJ
+melodic JJ
+absent-mindedly RB
+Evergreen NNP
+waspishly RB
+hypo JJ
+alternatively RB
+majesterial JJ
+squabble NN
+carnage NN
+Sugar NNP NN
+duplicity NN
+entertains VBZ
+libretto NN
+unscramble VB
+vulture-like JJ
+Vs. FW
+tenth JJ NN
+Heintze NNP
+Afnasjev NNP
+Afif NNP
+socioeconomically RB
+determinate JJ
+feats NNS
+Thai-Cambodian JJ
+marshes NNS
+mus MD
+one-million-plus JJ
+Sameness NN
+thrill NN VB
+Espanol NNP
+unceasingly RB
+monei NN NNS
+Physicists NNS
+exports NNS VBZ
+Underlying VBG JJ
+gained VBD VBN VB
+tampers NNS
+Rent-A-Lease NNP
+MassMutual NNP
+Folk NNP NN
+terriers NNS
+PLANTS NNS
+Babin-Festival NNP
+Theories NNPS NNS
+Rosabeth NNP
+Huichol NNP
+Zink NNP
+HCFCs NNS
+crackling NN
+pranksters NNS
+blackberry NN
+Serv-Air NNP
+dissident JJ NN
+penalizing VBG
+Strongly RB
+Generally RB NNP
+intermediate JJ
+sell-offs NNS
+titles NNS
+Northy NNP
+Hardscrabble NNP
+Intech NNP
+Interpublic NNP
+Myrdal NNP
+Hashers NNS
+F18s NNS
+rocket-propelled JJ
+Beira NNP
+diazepam NN
+padlocked VBD
+prosecution NN
+Schwarzkopf NNP
+McNeal NNP
+live-haulers NNS
+dissimilar JJ
+perfectibility NN
+exploring VBG
+patriot NN
+Commanders NNPS
+Lara NNP
+Latvians NNPS
+corrected VBN VBD JJ
+Cried VBD
+Figgie NNP
+sacking VBG
+evaluating VBG
+PARK NN NNP
+quintessential JJ
+dune-grass NN
+unco-operative JJ
+Ogilvy NNP NN
+McArthur NNP
+recite VB VBP
+Vieira NNP
+DEPARTMENT NNP
+Scampini NNP
+ultrasonically RB
+recommendations NNS
+stubbed VBN
+Reclamation NNP
+Messina NNP
+Scan NNP
+Defendants NNS
+tax-sheltered JJ
+Tualatin NNP
+teems VBZ
+IBM\ NNP
+grounds-care JJ
+Stockton NNP
+animosity NN
+Resolving NNP VBG
+nutritive JJ
+Sagos NNS
+common-law-marriage NN
+Legislature NNP NN
+dry-ice JJ
+DM3,500 CD
+skinning NN
+unfitting JJ
+rarest JJS
+tobacco NN
+preapproved VBN
+cystic JJ
+Fiber NNP NN
+Foret NNP
+--it PRP
+Schueler NNP
+serviced VBN VBD
+commoners NNS
+Everyone NN NNP
+M-CSF NNP
+sticker-shock NN
+Timon NNP
+stressed-out JJ
+democrat NN
+knockers NNS
+order-to-ship JJ
+Flygplanet NNP
+Staniszkis NNP
+IXL NNP
+But CC NNP IN
+anti-viral JJ
+prime-time JJ NN
+sprawling VBG JJ
+spun-off JJ
+courtly JJ
+Timmy NNP
+limestone NN
+hydrotherapy NN
+Sporto NNP
+Technical NNP JJ
+Admirers NNS
+Gloria NNP
+Daschle NNP
+nationality NN
+Sweet NNP JJ
+Nennius NNP
+McGill NNP NN
+conformists NNS
+ASEA NNP
+steelworkers NNS
+incitements NNS
+questionnaire NN
+de FW IN JJ NNP
+bonheur NN
+dedicated VBN JJ VBD
+Vif NNP
+multifamily JJ RB
+accommodation NN
+MAY MD NNP
+refrained VBD VBN
+Echo NNP
+Meharry NNP
+.65 CD
+Hmpf UH
+Cellar NNP
+eight-acre JJ
+quasi-monopolistic JJ
+Scudder NNP
+Bill NNP NN
+Dannehower NNP
+Glennon NNP
+Credit-card NN
+Passed VBN
+ensnare VB
+little-noted JJ
+DDT NNP
+Tilghman NNP
+Luxemburg NNP
+Wasson NNP
+semi-inflated JJ
+deals... :
+attention... :
+kernel NN
+nonchlorinated JJ
+swear VB VBP
+Kitchen NNP NN
+copy NN VBP VB
+Sung-Shan NNP
+Hawker NNP
+Anti-abortion JJ
+finial NN
+hollers VBZ
+overallotment NN|JJ
+Southwest NNP JJ NN RB
+roosters NNS
+wiry JJ
+capital-intensive JJ
+demand... :
+insurrection NN JJ
+Step NN NNP VB
+McPherson NNP
+kittenish JJ
+BUYERS NNS
+aesthetes NNS
+Bengal NNP
+roster NN
+rose-tea NN
+Microprocessor NNP
+aroma NN
+surfing NN
+lavishing VBG
+Paper NNP NN
+radio-TV JJ NN
+Airline NNP NN
+majuh NN
+Amro NNP
+Westpac NNP
+Parmer NNP
+buttoned-down JJ
+fog NN VB
+skiffs NNS
+floated VBD VBN
+crystallizing VBG
+waved VBD VBN
+baking NN VBG
+motion-picture NN JJ
+Monteith NNP
+clunky JJ
+Floating VBG JJ
+bump VB NN VBP
+goitrogen NN
+aberrantly RB
+Glaser NNP
+buffoon NN
+Cowrtiers NNS
+Riefenstahl NNP
+ASW NN
+fair-market JJ
+impersonal JJ
+MACY NNP
+commitments NNS
+Melamine JJ
+swindled VBN VBD
+modem NN
+white-minority JJ
+Govern VB
+gametocide NN
+whisky NN
+coerced VBN VBD JJ
+general-merchandise NN
+Tractebel NNP
+enfant FW
+Farren NNP
+Milcote NNP
+pre-fund VB
+fleas NNS
+tosses NNS
+groused VBD
+frescos NNS
+women NNS
+Tables NNS
+Bunting NNP
+big-city JJ NN
+Ishii NNP
+drive-in NN
+insisting VBG
+Nickerson NNP
+situs NN
+low-boiling JJ
+Teen-agers NNS
+UGI NNP
+BUNDY'S NNP
+expendable JJ
+spats NNS
+putative JJ
+Sand NNP NN
+half-a-dozen NN
+granulocyte-macrophage NN
+influential JJ
+corn NN
+want VBP VB NN
+Jaws NNPS NNP NNS
+contracted VBD VBN
+Delchamps NNP
+WITH IN
+Members NNS NNPS NNP
+relocation NN
+rollup NN
+Mellanby NNP
+data NNS NN|NNS NNS|NN NN
+Divestiture NN
+subscripts NNS
+specimentalia NN
+tack NN VB VBP
+motivated VBN VBD JJ
+R.V. NNP
+signalled VBD
+defaces VBZ
+Minerals NNPS NNP NNS
+inundating VBG
+polemical JJ
+Flatness NN
+Mathis NNP
+checking-account JJ
+intentions NNS
+Anti-A NNP
+Farmboy NNP
+Bodin NNP
+D'Aumont NNP
+Cravath NNP
+Buckhead NNP
+U.S.-developed JJ
+non-economists NNS
+Fosset NNP
+harmed VBN VBD
+violator NN
+Donnell NNP
+generalities NNS
+Mazowsze NNP
+REMEMBER VB
+Ramfis NNP
+Poul NNP
+Maiden NNP
+Childhood NNP NN
+amphibology NN
+Lerman NNP
+text-form NN
+HUD-supervised JJ
+Wexler NNP
+harried VBN VBD
+frictions NNS
+Attridge NNP
+luncheon NN
+peccavi FW
+showrooms NNS
+troubie NN
+Armada NNP
+Ticor NNP
+Zwelakhe NNP
+idler NN
+Roses NNPS
+best-looking JJ
+drawer NN
+Kandinsky NNP
+midwife NN
+bluing NN
+Beaujolais NNP NNPS
+AWA NNP
+aircraft-electronics NN
+jeers NNS
+smarting VBG
+Umm UH
+technical-services NNS
+ramshackle JJ
+goods-producing JJ
+malevolencies NNS
+H.M. NNP
+modified VBN JJ VBD
+despondent JJ
+perceives VBZ
+EXXON NNP
+jokes NNS VBZ
+gush VBP VB
+dissolution NN
+cost-transfer NN
+au FW NN
+biggest-selling JJ
+Agreeable NNP JJ
+bull-headed JJ
+scoop NN VB
+sharpen VB
+AUTOMOBILES NNPS
+fabulations NNS
+P.m NN
+Democratic-sounding JJ
+underprepared JJ
+swig NN
+crap NN UH
+wildly RB
+someone NN
+Hygene NNP
+copycats NNS
+Sudden JJ
+block-grant JJ NN
+Institue NNP
+buccaneers NNS
+Interface NNP
+interpreters NNS
+correlating VBG
+dog-pin JJ
+overproducers NNS
+money-handling NN
+immunology NN
+cool-headed JJ
+self-inflicted JJ
+Pickup NNP
+Utopians NNPS
+Canner NNP
+seein VBG
+girlfriends NNS
+deviant JJ
+scratching VBG NN
+profiteering VBG NN
+Beaverton NNP
+mining NN VBG
+reparation NN
+changes NNS VBZ
+beef NN VB VBP
+surmounted VBD VBN
+taskmaster NN
+assesses VBZ
+legislation-delaying JJ
+unreinforced JJ
+Rapport NNP
+litmus NN
+Prandtl NNP
+Banda NNP
+underpricing VBG
+jawboning NN
+longed VBD VBN
+Doug NNP
+UFO NNP
+embellished VBN
+Jossy NNP
+sleep-deprived JJ
+jamboree NN
+reassessment NN
+folklike JJ
+Terminator NNP
+Ssmc NN NNP
+absorber NN
+Laos NNP
+differently RB
+Courier NNP
+confine VB VBP
+stand-off JJ
+Chromosome NN
+M.D.-speak JJ
+Quivar NNP
+bunk NN
+infuse VB
+delicate-beyond-description JJ
+Franconia NNP
+vocal JJ NN
+connective JJ
+space-weapons NNS
+readership NN
+desensitized VBN
+docketed VBN
+unmagnified JJ
+amorality NN
+evasive JJ
+applelike JJ
+Biographical NNP
+Purina NNP
+disbelieved VBD
+genome NN
+Da-da-da-dum JJ
+conciliatory JJ
+lower-middle JJ
+Far-reaching JJ
+Jackie NNP
+backlit JJ
+nations NNS
+left-leaning JJ
+Senate-passed JJ
+petitioner NN
+anti-defense JJ
+fair JJ NN RB
+Hawkes NNP
+lobules NNS
+cradle-to-grave JJ
+Vilaplana NNP
+B-52H NN
+premise NN
+WOMEN NNS
+dusts NNS
+bays NNS
+longest-standing JJS
+Bergsma NNP
+Stalk NNP
+collaborative JJ
+purple JJ NN
+new-product NN JJ
+sobs NNS
+career-bound JJ
+Juncal NNP
+get... :
+I-E NNP
+Yonehara NNP
+newage NN
+Translant NNP
+believeth VBZ
+Zimbabwean NNP JJ
+Malmo NNP
+Baylor NNP
+Iliad NNP
+buffetting NN
+Fig. NN NNP
+Game NN NNP
+go-ahead NN
+Harrah NNP
+yacht NN
+Prettier JJR
+participation NN
+sixty-eight CD
+at-home JJ
+pew NN
+Prayers NNS
+sounds VBZ NNS
+worsens VBZ
+Corinth NNP
+J.E. NNP
+simmer VB VBP
+vengeance NN
+vibrated VBD
+A[fj] SYM
+dystopias NNS
+Manas NNP
+Gadsden NNP
+Matchbook-sized JJ
+debuts VBZ
+numerous JJ
+Outhwaite NNP
+menacing JJ VBG
+eight-time JJ
+attired JJ VBN
+Owen NNP
+Stevenses NNPS
+Segalas NNP
+howl NN VB
+triple-witching JJ
+Panoz NNP
+butchery NN
+company-owned JJ
+Fireside\/Simon NNP
+Nadja NNP
+USED-CAR NN
+abolish VB
+Reub NNP
+Veterinary NNP JJ
+Solana NNP
+PENSION NN NNP
+Jamieson NNP
+trotter NN
+corner-posts NNS
+iguana JJ
+Shapes NNS
+ostentation NN
+Byrnes NNP
+Lisbon NNP
+lonely JJ
+mid-engine JJ
+Donato NNP
+intertwining VBG JJ
+warys NNS
+purports VBZ
+weirdest JJS
+Writers NNP NNS NNPS
+Reverend NNP
+Macho FW
+FortressEurope NN
+Waxworks NNP
+Delio NNP
+sceneries NNS
+derive VBP VB
+Yoknapatawpha NNP
+effective JJ VBN NN
+believers NNS
+gadgetry NN
+bank-owned JJ
+patron NN
+right-angle NN
+dynasties NNS
+Fricke NNP
+nitpicking JJ
+Superlative NNP
+canned-food NN
+Fleetwood NNP
+squeezes VBZ NNS
+spaceborn JJ
+Hoa-whup UH
+river NN
+lopping NN
+Pundits NNS
+biological JJ NN
+Readiness NN
+Coleridge NNP
+at-market JJ
+Priviet NNP
+money-retirees NNS
+felon NN
+image-processing NN JJ
+unseemly JJ
+microbial JJ
+non-European JJ
+yff IN
+Baltic JJ NNP
+foh IN
+Pluses NNS
+waits VBZ
+P-20 NN
+Impressed VBN
+Rauschenbusch NNP
+high-quality JJ NN
+Spread VB
+performer NN JJ
+unfit JJ NN
+Armenians NNPS
+HERE'S VB RB|VBZ
+griped VBD
+harbored VBN VBD
+Sane NNP
+out-of-mind JJ
+cataract NN
+Think VBP VB NNP
+satirical JJ
+Guerneville NNP
+presuppositions NNS
+Giraffe NNP
+berries NNS
+jet-engine NN
+reggae-and-rock JJ
+D'Artaguette NNP
+Ventured NNP
+junk-holders NNS
+might MD NN
+efficacious JJ
+invective NN
+Customers NNS NNP
+well-hit JJ
+Shochiku-Fuji NNP
+Seagram NNP
+mounts NNS VBZ
+SCUD NNP
+dustbowl NN
+composed VBN VBD JJ
+abortionist NN
+eying VBG
+expel VB
+nonreactivity NN
+obligated VBN VBD JJ
+Bonfiglio NNP
+be'greenlined VBN
+Wiess NNP
+fluted VBN
+price-reporting NN
+Fairing NN
+baffling JJ
+Decrying VBG
+Boyde NNP
+Apar NNP
+Putzi NNP
+scooted VBD
+Dividends NNS
+disarm VB
+Devil NNP NN
+District NNP NN
+singling VBG
+nurtured VBD VBN
+multiplexers NNS
+kick-up NN
+Trachea NN
+Bayaderka NNP
+rascal NN
+prognostications NNS
+Abbott NNP
+hustled VBD VBN
+Healthsource NNP
+staid JJ VBN
+chronic JJ NN
+bungling VBG
+winters NNS
+circuit-board NN
+gas-derived JJ
+trafficker NN
+sideshow NN
+tides NNS
+eventually RB
+Lencioni NNP
+ghoul NN
+Campuses NNS
+incur VB VBP
+mariner NN
+preprinting NN
+tandem-trainer NN
+hard-edged JJ
+Cannes NNP
+Rong NNP
+identical JJ
+pottage NN
+intermediary NN JJ
+commercially RB
+Buckeye NNP
+soreheads NNS
+Organizers NNS
+opulence NN
+Nordson NNP
+unsurprising VBG JJ
+age-specific JJ
+previsions NNS
+There's NNS
+onward-driving JJ
+cherubs NNS
+hydrous JJ
+Ait-Laoussine NNP
+cinder NN
+Asahi NNP NNS
+subscriber NN
+Pagan NNP
+fly VB NN VBP
+smoother JJ RB JJR
+siphoned VBD VBN
+Confidential NNP
+mattress NN
+clocked VBN
+Builds VBZ
+manservant NN
+takeoff-warning JJ
+print-developing JJ
+goat NN
+wattles NNS
+grammatical JJ
+Marthe NNP
+Erlenmeyer NN
+interstage NN
+doped JJ
+beautifully RB
+eject VB
+continuo NN
+Boltzmann NNP
+extended-body JJ
+gim VB
+Dred NNP
+reconvention NN
+demoralization NN
+Kopp NNP
+improvising NN
+actuaries NNS
+dash NN VB
+unsharpened VBN
+oks VBZ
+frittered VBN
+Platoons NNS
+Phillies NNP NNPS
+Squaresville NNP
+mega-deals NNS
+Bloody NNP
+Uzbekistan NNP
+repond VB
+perpetuation NN
+identically RB
+land-based JJ
+Exposure NN
+Magnetics NNPS NNP
+pre-split JJ
+demonstrated VBN VBD JJ
+pars NNS
+decomposing VBG
+Burts NNPS
+irregulars NNS
+jaunty JJ
+Kerrey NNP
+study NN VBP VB
+overwhelming JJ VBG
+Perinetti NNP
+Stravinsky NNP
+Tunick NNP
+bosons NNS
+Sandro NNP
+travail NN
+solids NNS
+jets NNS
+misogynist NN
+unpacked JJ
+fiber-coupled JJ
+computer-edited JJ
+disclosed VBN JJ VBD
+adorned VBN VBD
+LaMothe NNP
+Movieline NNP
+sugarcane NN
+imcomplete JJ
+Canard NNP
+memorabilia NNS
+opalescent JJ
+summer-winter JJ
+embraced VBN VBD
+straggled VBD
+overfeed VB
+Instructor NNP
+infringements NNS
+DREXEL NNP
+tonalities NNS
+de-listed VBN
+ambitious JJ
+Protestantism NNP
+manufacturing-automation NN
+disrupted VBN JJ VBD
+Balanced VBN
+slouchy JJ
+Haqvin NNP
+sweat NN VBD VBP VB
+Stall NN
+skindive VB
+BRANDS NNPS
+chemise NN
+engraved VBN JJ
+Couch-potato NN
+won VBD NN NNS VBN
+selectively RB
+hutment NN
+Far NNP JJ RB
+RIVER NNP
+Conservancy NNP
+securities-trading JJ NN
+astonishingly RB
+debt... :
+Antolini NNP
+Correction NN NNP
+Romm NNP
+infield NN
+crowd NN VBP VB
+examiner NN
+interfaces NNS
+polyps NNS
+self-determination NN
+Clams NNS
+once-promising JJ
+tracks VBZ NNS
+slug NN VB
+rippled VBD
+Blackfriar NNP
+Smith NNP
+offstage RB JJ
+Bubba NNP
+pulchritude NN
+urbanism NN
+'/''... :
+stoned VBN
+firm... :
+Infotechnology NNP
+reduced-instruction NN
+Convention NNP NN
+accusations NNS
+American-Jewish JJ
+MIGHT MD
+path NN
+Conreid NNP
+uncountered JJ
+panky NN
+arena NN
+Brett NNP
+eluate NN
+Neveh NNP
+Michelangelo NNP
+libertines NNS
+darn JJ VB
+Politrick NN
+encased VBD
+maximal JJ
+outlying JJ
+dermatological JJ
+homosexual JJ NN
+Household NNP NN
+Cunningham NNP
+epidemiologist NN
+Soviet-made JJ
+Debt-Burdened JJ
+Leftist JJ
+brainlessly RB
+subscribes VBZ
+autions NNS
+spooky JJ
+Sabaneta NNP
+sandals NNS
+totals VBZ NNS
+supercollider NN
+Relevant JJ
+Northerner NN NNP
+insight NN
+ironic JJ
+letters NNS
+shrieking NN
+Drummer NN
+ceasefire NN
+inculcation NN
+Dizzy NNP
+Galindez NNP
+D. NNP NN
+squander VB
+bird's-eye JJ
+Hamilton-oriented JJ
+Integrated NNP
+apparently RB
+Immaculate NNP
+infantryman NN
+Bialystok NNP
+Heorot NNP
+adjudged VBN
+Verreau NNP
+Beatrice NNP NN
+LaRosa NNP
+Owens-Illinois NNP
+sneer NN
+Norsemen NNPS
+Prettyman NNP
+disability NN
+revolutionizing VBG
+dishonest JJ
+rotate VB
+tightening VBG JJ NN
+readjustments NNS
+generation-skipping JJ
+meter NN
+Courtaulds NNP
+firming VBG NN
+cornstarch NN
+shortstop NN
+goose-stepping VBG
+grapes NNS
+Bergsten NNP
+biannual JJ
+topmost JJ
+Shipbuilders NNPS
+city-wide JJ
+latermaturing JJ
+scrambled VBD JJ VBN
+cumbersome JJ
+integrative JJ
+scrutinizes VBZ
+DeKalb NNP
+faltering VBG NN
+privatizing VBG
+self-congratulation NN
+bounded VBN VBD JJ
+Bahi NNP
+plastisols NNS
+large-computer NN
+public-school JJ NN
+fidgeting VBG
+beverage NN
+Szelenyi NNP
+nucleus NN
+Adopting VBG
+Newbery NNP
+uncoiling VBG
+Cornelius NNP
+SQUIBB NNP
+Fridman NNP
+Used VBN JJ
+CAMPEAU NNP
+fins NNS
+Sigoloff NNP
+RICO-forfeiture JJ
+fiduciary JJ
+grain NN
+pain-bringing JJ
+Devcon NNP
+Matter NN NNP
+marines NNS
+general-purpose JJ
+seedless JJ
+Freeholder NNP
+McLauchlan NNP
+estragole NN
+evocations NNS
+injure VB VBP
+nicked VBN
+property NN
+octahedron NN
+endearing JJ
+giver NN
+hardest-hit JJ
+shipmates NNS
+'Goodison NNP
+Addwest NNP
+epaulets NNS
+lighter-than-normal JJ
+Speed NN VB NNP
+Shining NNP VBG
+Dalian NNP
+pilgrim NN
+Symington NNP
+pyramidal JJ
+STUDY NN
+inhabiting VBG
+reshape VB
+veterinarians NNS
+tapings NNS
+anthropological-religious JJ
+ides NNS
+Consulate-General NNP
+no-o UH
+trade-ethnic JJ
+exertion NN
+elliptical JJ
+Ones NNP
+remolding VBG
+combustion NN
+Citizen\/Labor NNP
+Weingarten-Siegel NNP
+Riyadh NNP
+parentage NN
+causally RB
+PHYSICIANS NNS
+diplomatically RB
+flaunted VBD
+hand-squeeze JJ
+CDs NNS NNPS NNP
+Lavato NNP
+Spiotto NNP
+chiding VBG
+open-top JJ
+lions NNS
+scrupulously RB
+dangers NNS
+affinities NNS
+DeBartolo NNP
+one-square-mile JJ
+mid-80s NNS
+minimized VBN VBD
+dispose VB
+MRI-type JJ
+oscillator NN
+Shuz NNP
+non-taxable JJ
+Follow VB
+burglars NNS
+examines VBZ
+label NN VB VBP
+Birney NNP
+re-creating NN
+supply-driven JJ
+Barnicle NNP
+Yankeefication NNP
+except IN VB
+Barnhardt NNP
+Pleas NNPS NNP NNS
+market-place NN
+wive NNS
+transports NNS VBZ
+importation NN
+Carrozza NN
+Holmes NNP
+deposit-transfer NN
+CMA NNP
+Life-preservers NNS
+degraded JJ
+refillable JJ
+relegated VBN VBD
+persists VBZ
+Work NN NNP VB VBP
+munched VBD
+standby JJ NN
+caribou NN NNS
+begets VBZ
+Romano NNP
+Mister NNP
+homogenize VB
+dudgeon NN
+pastdue JJ
+failures NNS
+good-news NN
+Bonnor NNP
+mousy JJ
+mortars NNS
+Evren NNP
+lighter-than-air JJ
+tabs NNS
+invoices NNS
+Executions NNS
+tows NNS
+Guralnick NNP
+off-beat JJ
+Kynikos NNP
+highboard NN
+Coniston NNP NN
+fraught JJ
+part NN JJ RB VB
+assisted VBN VBD
+designating VBG
+presente JJ
+McCluskey NNP
+flowchart NN
+pheasant NN
+morphologic JJ
+Supreme NNP
+Cambodia NNP
+low-maintenance JJ
+millennia NN NNS
+humped NN
+collectively RB
+Web NNP
+Njust NNP
+Created VBN
+amputated VBN
+Lacking VBG
+toughest-guy-in-the-old-days JJ
+Teeth NNS
+chuffing VBG
+Lashof NNP
+Playworld NNP
+edifying JJ
+Faget NNP
+Peacekeeper NNP
+Wailbri NNP
+gin NN
+prints NNS VBZ
+Blain NNP
+hungrily RB
+fantasia NN
+INTERVOICE NNP
+McAvity NNP
+parasols NNS
+nystatin NN
+index-futures JJ NNS
+misbranded JJ
+ill-founded JJ
+enrolled VBN VBD JJ
+Weill NNP
+LaGrange NNP
+entirety NN
+shying VBG
+opponents NNS
+Produce VB
+Siegel NNP NN
+McSorley NNP
+Hearts NNPS NNP
+Equator NNP NN
+Leighfield NNP
+growth-minded JJ
+custom-make VB
+fait NN
+Waltana NNP
+warless JJ
+fleck NN
+mired VBN JJ
+FIRST-TIME JJ
+consomme NN
+Fantasy NNP
+pomaded VBN
+lurks VBZ
+C13532 NNP
+--had VBD
+tranquilizer NN
+marmalade NN
+creaking VBG NN
+one-sided JJ
+Ordinance NNP
+fee-forfeiture NN
+enny JJ
+anaprapath NN
+nonparticulate NN
+becoming VBG NN
+Billikens NNP
+Pinellas NNP
+piecewise RB
+less-than-dazzling JJ
+woo VB VBP
+virtue NN
+post-sale JJ
+Hillman NNP
+Yellen NNP
+hereinafter RB
+shut-in JJ
+CFTC NNP
+metal-benders NNS
+Normandy NNP
+Royale NNP
+talkative JJ
+sure-enough JJ
+whitewashing VBG
+slimmer JJR RB
+walkie-talkies NNS
+Khalifa NNP
+charms NNS VBZ
+Dedication NN NNP
+swooped VBD
+civil-liberties NNS
+sea-launched JJ
+Silverman NNP
+Sharrock NNP
+colts NNS
+Relatives NNS
+amused VBN JJ VBD
+counteroffer NN
+invariant JJ NN
+Leverkusen NNP
+aw UH
+pretence NN
+Cheshire NNP
+Greenspan NNP NN
+Peppers NNP
+Friesen NNP
+technical-ladder JJ
+Torrid-Mighty NNP
+Kyle NNP
+shoves VBZ
+wrongness NN
+McKinleyville NNP
+self-righteous JJ
+Woolard NNP
+certain JJ RB
+immersion NN
+Saint-Saens NNP
+undercuts VBZ
+Silvers NNP
+Porch NNP NN
+oceanographic JJ
+vampires NNS
+milk NN VB
+briefed VBN VBD
+seven-word JJ
+finalist NN
+link-ups NNS
+MACPOST NNP
+hotrod NN
+benignant JJ
+population NN
+Mattes NNP
+old-maid NN
+generalists NNS
+bums NNS
+demonstators NNS
+hangover NN
+journals NNS
+infrequently RB
+Kulturbund NNP
+Lipson NNP
+assurance NN
+Grune NNP
+ditch NN
+low-profitmargin NN
+coldly RB
+suspended VBN JJ VBD
+pullout NN
+watchdogs NNS
+Bavaria NNP
+Held VBN VBD
+hafta VB VBP
+Forced VBN
+camcorders NNS
+M.R. NNP
+Kenyans NNPS
+hick-self NN
+rancidity NN
+Devin NNP
+resifted VBN
+herpetological JJ
+perpetrated VBN VBD
+exterminated VBN
+Ahmet NNP
+Hip-pocket JJ
+somberly RB
+wasteful JJ
+Perskys NNPS
+gives VBZ
+Trianon NNP
+Sang NNP VBD
+ORDERS VBZ
+J.NTT NNP
+misnamed VBN
+Takeshi NNP
+Congolese NNP JJ
+Nishi NNP
+artworks NNS
+ticks NNS VBZ
+front-office NN
+Refco NNP
+Seems VBZ NNS
+decametrina NN
+refusers NNS
+Scrimgeour NNP
+Xavier NNP
+meringues NNS
+Della NNP
+Kampen NNP
+cleaners NNS
+coolest JJS
+concision NN
+A-6 NN
+circle NN VB
+charitable JJ
+red-and-white JJ
+Carlos NNP
+Concert-Disc NNP
+equestrian JJ
+hydrocarbon-storage NN
+Dimaggio NNP
+Productions NNPS NNP
+paso NN
+slitters NNS
+remembers VBZ
+bouts NNS
+C-minus JJ
+Activities NNP NNPS
+aesthetic JJ NN
+HIGH NNP JJ
+refight VB
+Sports NNPS NNP NNS
+Thurow NNP
+Dakotas NNPS
+slothful JJ
+surpluses NNS
+Posterity NN
+unofficially RB
+craftsmanship NN
+redevelopers NNS
+Businessmen NNS
+eventuate VBP
+Lapp NNP
+restarters NNS
+bond-futures NNS
+Sintered VBN
+minivan NN
+Yocum NNP
+Tsk UH
+option-related JJ
+repossesed JJ
+Cellulose NN
+shrugging VBG
+Brigadoon NNP
+Flyer NNP
+weaving VBG NN
+Thailand NNP NN
+contemporary JJ NN
+nuns NNS
+Durable-goods JJ
+Saxony NNP
+cm NN
+in-plant JJ
+Timor NNP
+caricature NN VB
+excitability NN
+Rothman NNP
+oozed VBD
+back-up NN JJ
+business-credit NN
+magnificence NN
+Worker NNP
+Fingers NNP
+persiflage NN
+ComputerWorld NNP
+Congress NNP NN
+selectors NNS
+Promptly RB
+Torres NNP
+Reorganizing VBG
+Polsky NNP
+protectively RB
+Veneto NNP
+home-entertainment JJ
+nukes NNS
+Y.S. NNP
+molecular JJ
+rummage VB
+IMF-approved JJ
+polivinylchloride NN
+otherworldly JJ
+Fifty-fifth NNP
+twangy JJ
+Deadwood NNP
+riot NN
+rummy NN
+instruction-set JJ NN
+Gottingen NNP
+contraceptive JJ NN
+frustratingly RB
+reiterates VBZ
+reliance NN
+Garonzik NNP
+Way NN NNP
+A40-AjK NN
+Philco NNP
+Culmone NNP
+Refill VB
+recapitalizations NNS
+Anti-Swapo JJ
+Landesbank-Girozentrale NNP
+efficient-market NN
+mandamus NN
+pocketbooks NNS
+Postbank NNP
+sessions NNS
+Repsol NNP
+VATICAN NNP
+dues NNS
+Floridians NNP
+verie RB
+boards NNS VBZ
+Sunoco NNP
+antithetical JJ
+compassion NN
+gratitude NN
+astound VB
+Wight NNP
+torquers NNS
+coffeepot NN
+Counsel NNP NN
+Benefits NNS
+soft-shoe JJ
+freight-rate JJ
+harking VBG
+pillars NNS
+Jameson NNP
+Tracers NNP NNPS
+RTZ NNP
+Santiveri NNP
+Obermaier NNP
+Companion NN NNP
+dewatering VBG
+Adamson NNP
+Civil-rights NNS JJ
+presidency NN
+rallying VBG JJ NN
+bottleneck NN
+Palmetto NNP
+increase NN VB VBP
+exclusionary JJ
+O.J. NNP
+sharper JJR RBR
+Mandela NNP
+criterion NN
+Preferred NNP JJ
+Fete NNP
+Agrees VBZ
+Todt NNP
+commonest JJS
+Entree NNP
+Scopes NNP
+Kuser NNP
+mothers NNS
+Marcile NNP
+Tiburon NNP
+inversely RB
+Jeep-like JJ
+projective JJ
+limiting VBG
+Asians NNPS NNS
+dolphin NN
+Aeschbacher NNP
+Angenics NNP
+conditioner NN
+tigers NNS
+warnings NNS
+peace-keeping NN JJ
+overcooled JJ
+fAs NNP
+Rafeedie NNP
+individualizing VBG
+well-paying JJ
+lessened VBN JJ VBD
+oil-based JJ
+work-force NN
+dredges VBZ
+rendezvous NN
+pre-signed VBN
+sects NNS
+Pseudomonas NNS
+Traverse NNP
+evacuate VB
+milked VBD VBN
+Fond NNP JJ
+Cheer NNP VB
+Greiner NNP
+percentage NN
+skirmishers NNS
+Dillon NNP
+Portago NNP
+maitre NNP FW
+judiciously RB
+passionate JJ
+Romo NNP
+scanners NNS
+Okies NNP
+a-crowing VBG
+Naturalization NNP
+mentally RB NN JJ
+unstoppable JJ
+HUTTON NNP
+explained VBD VBN
+non-Ford JJ
+marshmallows NNS
+Unpublished JJ
+facelifts NNS
+meanwhile RB NN
+landlord NN
+land-owning JJ
+%... :
+maximums NNS
+alternation NN
+rosier JJR RBR
+Jimenez NNP
+fifteen-minute JJ
+cheap JJ NN RB
+the'first JJ
+descend VB VBP
+unpaired VBN
+IBRD NNP
+Magarrell NNP
+Begbick NNP
+yen NNS NN
+polysiloxanes NNS
+routes NNS VBZ
+taragon NN
+Rhea NNP
+Dorfman NNP
+Frail JJ
+blutwurst NN
+parsimony NN
+Bulgaria NNP
+OS\/2 NNP CD
+Irises NNP NNS NNPS
+Behaviour NN
+birthright NN
+CLUBBING VBG
+deodorant NN JJ
+top-four JJ
+two-part JJ
+Petroliam NNP
+manifestations NNS
+isomers NNS
+flapped VBD
+Bartha NNP
+counting VBG NN
+Franciscan JJ NNP
+prevented VBN VBD
+casebook NN
+disadvantage NN
+foreign-exchange JJ NN
+decentralized JJ VBD VBN
+seamlessly RB
+Obesity NN
+Wood-products NNS
+Lockwood NNP
+CJS NNP
+Rotan NNP
+Lolita NNP
+departures NNS
+Plaude NNP
+naysayers NNS
+Porter NNP
+Mommy NNP
+rockets NNS
+super-expensive JJ
+Festivals NNS
+greatly RB
+Sider NNP
+chuckle NN VB VBP
+Goodwills NNPS
+wop VB
+Philmont NNP
+hares NNS
+Fat NNP JJ NN
+voume NN
+mill NN
+Attila NNP
+donating VBG
+Loudspeakers NNS
+used'em NN
+Sabella NNP
+suffused VBD VBN
+Norwegian JJ NNP
+European-American NNP
+attested VBN VBD
+Paolo NNP
+anesthetic NN
+radio-controlled JJ
+Poyner NNP
+float VB NN VBP
+flattening VBG NN
+Miguel NNP
+Unsolved NNP
+junior-year-abroad JJ
+newsmen NNS
+air-freight-forwarding JJ
+interject VBP
+hotelman NN
+Yeager NNP
+East NNP NNPS JJ NN RB NNS
+hands-off JJ
+observant JJ
+Minnesotans NNPS
+jabbed VBD
+Bishops NNP NNS
+publication NN
+announced VBD VBN JJ
+Petronas NNP
+Gaylord NNP
+boot-wearer JJ
+teddy-bear NN
+MFA NNP
+threatening VBG JJ
+cellular-phone NN
+Variety NNP
+Juice NN
+SLTI NNP
+Gene-Princess NNP
+itches VBZ
+hadd VBN
+honeymoon NN VB
+unsaleable JJ
+defrayed VBN
+hot-pink JJ
+Lonsdale NNP
+specious JJ
+Period NN NNP
+OFFICER NN
+charge-offs... :
+couture FW
+streamline VB
+Pelletier NNP
+discard VB VBP
+fallow JJ
+dowry NN
+ax NN
+SCHMIDT NNP
+date NN VBP VB
+masseuse NN
+risk-benefited NN
+duller JJR RBR
+chopper NN
+ex-Gov NNP
+watched VBD VBN JJ
+Stifter NNP
+retorted VBD
+titters NNS
+loft NN
+classify VB VBP
+anti-statist NN
+Pupils NNS
+well-experienced JJ
+Pascataqua NNP
+Dove NN NNP
+Tutu NNP
+Massacres NNS
+libertie NN
+human-resources NNS JJ
+Bargain-hunters NNS
+hobbyists NNS
+Ringel NNP
+heartening JJ
+treaty NN
+messed VBD VBN
+diseased JJ
+pseudo-government NN
+Clov NNP
+Xanax NNP
+heavers NNS
+Architect NNP
+RAVAGES NNS
+soaring VBG JJ
+super-regionals NNS
+joined VBD VBN
+twenty-two CD JJ
+Pittsboro NNP
+grist NN
+muzzles NNS VBZ
+Sensitive JJ
+Montesano NNP
+discrepency NN
+lotus NN
+inevitable JJ
+Eighty-seventh NNP
+Messing VBG
+muscles NNS
+Tranportation NNP
+Skillman NNP
+Dispersals NNS
+Northrop NNP NN VB
+Retiring VBG
+numbed VBN
+Martex NNP
+McDonald NNP NN VB
+French-made JJ
+Allegretti NNP
+Paglieri NNP
+thrashed VBD VBN
+Milunovich NNP
+Simply RB
+movie-to-be NN
+born-to-shop JJ
+deficiency NN
+Granada NNP
+Senesac NNP
+open-minded JJ
+Solidarityled NNP
+detectable JJ
+unbalance NN
+tines NNS
+Stand VB VBP NN
+Cancer NNP NN
+Sobibor NNP
+Technology NNP NN
+Bellevue NNP
+lampoon VB
+uncles NNS
+repairs NNS VBZ
+toadyism NN
+discorporated VBN
+school-board NN
+residentially RB
+Storer NNP
+TEAMSTERS NNPS
+Blake NNP
+one-upsmanship NN
+killed VBN VBD
+Masnadieri NNP
+unguided JJ
+KFAC-FM NNP
+bedside NN
+public-spirited JJ
+preparatory JJ
+Geldermann NNP
+couplets NNS
+Broun NNP
+home-trading NN
+Greatest JJS NNP
+coeds NNS
+Joining VBG
+ramifications NNS
+health-care-services JJ
+hardy JJ
+Viphakone NNP
+textured JJ
+burgers NNS
+Technik NNP
+Unmanned JJ
+upped VBD VBN
+Halebian NNP
+replace VB VBP
+seven-hit JJ
+Smedes NNP
+ozone-cancer JJ
+illusions NNS FW
+Fatimata NNP
+Forty-six CD
+SUSPECT JJ
+Begley NNP
+boasted VBD VBN
+throwers NNS
+neutered VBN
+duet NN
+beautifying VBG
+signed VBD JJ VBN
+Gramercy NNP
+progenitors NNS
+Written VBN
+dozed VBD
+Kiam NNP
+cancellation NN
+joint-venturing NN
+negotiate VB VBP
+Quattlebaum NNP
+Batten NNP
+stickier JJR
+drug-cartel JJ
+Passport NN
+preachy JJ
+Lambeth NNP
+Similar JJ
+ciliated VBN
+tethered VBN VBD JJ
+exit NN VB
+sagebrush NN
+renounced VBD
+CompuChem NNP
+Aerobacter NN
+Typically RB
+one CD PRP CC JJ LS NN
+demythologizing VBG
+diaphragmic JJ
+ECA NNP
+Landrum-Griffin NNP
+full-commission JJ
+revolver NN
+property-investment NN
+intravenous JJ
+tektites NNS
+Fossey NNP
+Imported NNP
+Antar NNP
+gummy JJ
+seceded VBN
+Konigsberg NNP
+teens NNS NN
+fast-frozen JJ
+introjects NNS
+Stroked VBD
+blitzes NNS
+plenipotentiary NN
+Riders NNPS NNP
+cargoes NNS
+baby-sitter NN
+Placements NNP
+thermocouple NN
+CONGRESSIONAL JJ
+paperwads NNS
+reemerged VBD
+Lesko NNP
+Aquinas NNP
+trade-processing NN
+Tatsunori NNP
+steamed VBN VBD
+call-ups NNS
+Princess NNP NN
+oerations NNS
+LJH NNP
+Partners NNPS NNP NNS
+Korowin NNP
+Khrushchevs NNPS
+strychnine NN
+eva NN
+cut-and-dried JJ
+Nineveh NNP
+Mitsotakis NNP
+Light NNP JJ NN VB
+accomplishing VBG
+Sonatas NNS NNP
+pesticide-free JJ
+nuclear-power JJ NN
+weapons-modernization JJ
+practices NNS VBZ
+Curb VB
+Jason NNP
+plastics NNS
+Dying NNP VBG
+stock-appreciation-based JJ
+bonds NNS
+wretch NN
+tetanus NN
+physicals NNS
+McNear NNP
+Sauternes NNP NNPS
+creates VBZ
+tantalized VBN
+animal-protection NN
+compendium NN
+Delbert NNP
+competes VBZ
+Ignoring VBG
+Kiyoi NNP
+wilderness NN
+Isquith NNP
+Hokan NNP
+unearthly JJ
+imprimatur NN
+Hillel NNP
+di NNP FW
+mass-producing VBG
+Beady JJ
+grief-stricken JJ
+Vowel NNP
+amaze VB VBP
+Bulba NNP
+AWE NNP
+attempt NN VBP VB
+product NN
+resting VBG
+posters NNS
+logo NN
+Salt NNP NN VB
+embodies VBZ
+kiss NN VB VBP
+Alderson NNP
+Ind.-based JJ
+amnesty. NN
+Victorian JJ NNP
+accomplice NN
+Sides NNP
+MANHATTAN NNP
+legislators NNS
+escapades NNS
+Adventure NNP NN
+Middle-Eastern JJ
+alfalfa NN
+gouging VBG NN
+Ment NNP
+post-independence JJ
+non-veterans NNS
+Cognos NNP
+juncture NN
+non-vaccinated JJ
+HEYNOW NNP
+easements NNS
+deceived VBN VBD
+Emphasis NN
+Massachussets NNP
+creepiest JJS
+feed-lot JJ
+Quatre NNP
+Cerise NNP
+Alaouite JJ
+foggy JJ
+OFFICES NNS
+Sahour NNP
+health-expenditure JJ
+miracles NNS
+Sino-U.S. JJ NNP
+Pte. NNP
+Kum NNP
+coverall NN
+Desolation NNP
+excelsin NN
+polymer NN
+long-cruise JJ
+ground-level NN
+entrust VB VBP
+mistresses NNS
+pinnings NNS
+LOTUS NNP
+DES NNP NN
+add-on JJ NN
+sanitizing NN
+Barter NN
+rose-of-Sharon NN
+Microsoft NNP
+FAKE JJ
+Rymer NNP
+bravado NN
+stags NNS
+Horse NNP NN
+dual-purpose JJ
+MX-6 NNP
+landfill NN
+LaserWriter NNP
+realizes VBZ
+cooker NN
+sleepwalked VBD
+CD-I NNP
+systemic JJ
+roadway NN
+sympathizers NNS
+salami NNS NN
+wolfishly RB
+forbidden VBN JJ
+EXPRESSED VBD
+reddish JJ
+functioning VBG NN
+Details NNS NNP
+captives NNS
+Hadera NNP
+Sarasota NNP
+Grayhound NNP
+glue NN
+Cobb NNP
+Timberlake NNP
+Restoration NNP NN
+house-cleaning NN
+Barrow NNP
+indefinitely RB
+Paus'l NN
+Kotobuki NNP
+Liberty-and-Union NN NNP
+anemated VBN
+Equations NNS
+Microbilt NNP
+Legers NNPS
+feathers NNS
+enunciate VB
+ex-musician NN
+blithely RB
+Elektronik NNP
+castorbean NN
+Christina NNP
+common-law JJ NN
+Acuvue NNP
+MYSTERY NNP
+LIN NNP
+wits NNS
+Rimes NNP
+Braverman NNP
+ex-National JJ
+Kristin NNP
+semper FW
+Lightfoot NNP
+Okla. NNP
+roughest JJS
+greeting NN VBG JJ
+knightly JJ
+fearing VBG
+Ruttenbur NNP
+Reding NN
+Mississippi NNP
+implausible JJ
+Killing NN NNP VBG
+leaving... :
+extra-high JJ
+B&B NNP
+Roussel NNP
+warping VBG NN
+megatons NNS
+Pomerania NNP
+invidious JJ
+b-As IN NNS
+Clow NNP
+revolves VBZ
+bikinis NNS
+Uranium NNP NN
+gilt-edged JJ
+support NN VB VBP
+delisting NN VBG
+sprint NN
+Stores NNPS NNP NNS
+submissions NNS
+Lambert NNP
+JSP NNP
+tax-uniformity NN
+Peanut NN
+.375 CD
+matching VBG JJ NN
+Gro-Lites NNPS
+Cartons NNS
+mimicking VBG
+Grumbled VBD
+antagonists NNS
+decal NN
+administrative JJ
+June NNP
+TransCanada NNP
+lasts VBZ
+appetizing JJ
+red-white-and-blue JJ
+from IN RB RP
+serpents NNS
+Executive-branch JJ
+Richardson NNP
+Twilight NNP
+Review NNP NN
+chromatography NN
+sofa NN
+localisms NNS
+interview NN VB
+Freddy NNP
+Buy VB JJ NNP
+Paperwork NNP
+betrothal JJ
+navigable JJ
+jungles NNS
+one-owner JJ
+score NN VB VBP
+Tigrean JJ
+Struggles NNP
+cheaper JJR RBR
+otherwise RB JJ
+Baja NNP NN
+infecting VBG
+misconceptions NNS
+Uplands NNPS
+glamor NN
+Kutak NNP
+davenport NN
+byline NN
+Loughman NNP
+Draftula NNP
+Nail NNP
+mullets NNS
+Rarer JJR
+comprehended VBD VBN
+over-stitched JJ
+Everglades NNP NNS
+BONDS NNS
+Schumpeter NNP
+whimsically RB
+Ramillies NNP
+Hundreds NNS NNP
+bleach NN
+correlation NN
+Tiffany NNP
+Rojas NNP
+Hormel NNP
+Ocean NNP
+Worn VBN
+fortunes NNS
+manuscripts NNS
+Postscript NNP
+CLASHED VBD
+modern-day JJ
+hack NN VB
+millimeters NNS
+one-kiloton JJ
+release NN VBP VB
+Mulrooney NNP
+apparatus NN
+overhauled VBN VBD
+refresh VBP
+smolderingly RB
+WHISPER NN
+Fawzy NNP
+Kian NNP
+Rabinowiczes NNPS
+modes NNS
+unsung JJ
+Reva NNP
+simpleton NN
+reeds NNS
+two-seater JJ
+Gold\/Minerals NNP
+assuredly RB
+million-to-$ $
+T-1600 NNP
+Rafale NNP
+anti-Castro JJ
+brow-beating NN
+sassing NN
+Diff NN
+concoct VB
+Comeau NNP
+Consulting NNP NN
+Dak. NNP
+Leroy NNP
+poultice NN
+Stephane NNP
+track-signal JJ
+Bulseco NNP
+Yemeni JJ NNP
+Mattia NNP
+non-issue NN
+fox-hounds NNS
+truth NN
+Peterman NNP
+purposive JJ
+off-again JJ
+pie NN RP
+larceny NN
+Casting VBG
+flatout NN
+dubbed VBN VBD
+asset-based JJ
+dibenzofurans NNS
+screening NN VBG
+pre-Revolutionary JJ
+O.S.K. NNP
+Ogisu NNP
+AS\ NNP NN
+five-foot JJ
+Vt. NNP
+Operational JJ
+makersa NNS
+User-friendly JJ
+Soybean NN
+modifying VBG
+Separating VBG
+TriStar NNP
+Chantal NNP
+Tough JJ
+INTERBANK NNP NN|JJ JJ NN|JJ|RB NN RB RB|NN|JJ
+demonstrates VBZ
+Cartoon NN NNP
+Natrona NNP
+nominating VBG
+Offenbach NNP
+spending NN VBG|NN JJ NN|VBG VBG
+diagnosing VBG NN
+Tell VB NNP
+irritations NNS
+corporatism NN
+Milpitas NNP
+Nonetheless RB
+knots NNS
+Wrap NNP
+Schnacke NNP
+all-federal JJ
+Significants NNS
+Inspiring VBG JJ
+perking VBG
+flock NN VB VBP
+self-help NN NNP JJ
+afferent JJ
+Kori NNP
+in-person JJ
+location-minded JJ
+reqion NN
+destiny NN
+Kelleher NNP
+R.W. NNP
+washable JJ
+McArtor NNP
+Criminal NNP JJ
+obituaries NNS
+nonverbal JJ
+brassieres NNS
+Preparation-Inquirers NNP
+bateau JJ NN
+Salu NNP
+Grow NNP VB
+darkling JJ
+withing IN
+jewelry NN
+haggle VB NN
+evil-doers NNS
+inauspicious JJ
+Prado NNP
+unperceived VBN
+psalmist NN
+architectures NNS
+quagmire NN
+limited-edition JJ
+agnostics NNS
+holidays NNS VBZ
+salutes NNS
+sheet-fed JJ
+Waking VBG
+fascinating JJ
+Menu NNP
+assertive JJ
+UIC NNP
+precut JJ
+hyenas NNS
+wall-paneling JJ
+Passive NNP
+bankruptcy NN
+Viktor NNP
+tooted VBD
+Ravitz NNP
+Hindu NNP NN
+Eurovision NNP
+infer VB
+state-registered JJ
+insurance-policy NN
+solicitousness NN
+Nymark NNP
+absentees NNS
+Uphoff NNP
+heightens VBZ
+Kabel NNP
+force-feeding NN
+Parretti NNP
+prefer VBP VB
+High-yield JJ
+younguh JJR
+spherical JJ
+horsemanship NN
+injurious JJ
+mermaid NN
+Economics NNP NNS
+clatter NN VB
+Romans NNPS NNP NNS
+Upholds VBZ
+stocked VBN VBD
+chaperon NN
+H.N. NNP
+Wee NNP
+legislate VB
+Melott NNP
+punched-card JJ
+Strange JJ NNP
+Roof NNP
+Coupal NNP
+Webster NNP
+MacFarlanes NNP
+Shultz NNP
+abolishing VBG
+SCORE NNP
+re-enacted VBN
+more-affordable JJ
+lucidly RB
+ungovernable JJ
+apple-flavored JJ
+Germont NNP
+optimistic JJ
+vernacular NN JJ
+Concurrently RB NNP
+minimally RB
+Lousy JJ
+nailing VBG
+evaluation NN
+Handmaid NNP
+Mistake NNP
+chartist NN
+limping VBG JJ
+.75 CD
+Mickelberry NNP
+rupees NNS
+persecute VBP
+tie-up NN
+Bing NNP
+encounter NN VB VBP
+Seaboard NNP
+press-forge NN
+corn-belt NN
+six-person JJ
+unthematic JJ
+Ponzi NNP
+Grano NNP
+nutrient JJ
+patenting NN
+disbelieves VBZ
+fallacious JJ
+WANT VBP
+Bally NNP
+Umschlagplatz NNP
+lambastes VBZ
+unk-unks NNS
+mediate VB
+embargoed JJ VBD VBN
+hand-in-glove JJ
+Gauntley NNP
+Woburn NNP
+officeholders NNS
+Dammit UH VB
+DATA NNP
+no-back NN
+foray NN
+return-on-savings JJ
+Nakayasu NNP
+Guides NNS NNP NNPS
+Prins NNP
+beach NN
+Hoff NNP
+Howsam NNP
+Japanese\/Chinese JJ
+Esso NNP NN
+Higgins NNP
+Telegraaf NNP
+videoconferencing NN
+oviform JJ
+locale NN
+devices NNS
+Tarkeshian NNP
+stock-registration NN
+olfactory JJ
+maladaptive JJ
+Turbinen-Union NNP
+Microbiological NNP
+Fulfills VBZ
+Shansi NNP
+Thorstein NNP
+Weisfield NNP
+catecholamines NNS
+appartus NN
+Scots NNS NNP NNPS
+discoid JJ
+teaspoon NN
+third-highest JJ JJS
+Pepperidge NNP
+fluently RB
+Sept. NNP JJ NN
+TR. NNP
+Pour NNP
+Lodge NNP
+dusty JJ
+suggesting VBG
+backer NN
+concoctions NNS
+fourth-ranking JJ
+Miantonomi NNP
+non-meat NN
+repressing VBG
+womanly JJ
+unfelt JJ
+kingside NN
+Sichuan NNP
+NAB NNP
+Blair NNP
+Andersen-Price NNP
+Schweitzer NNP
+successive JJ
+matinee JJ
+LETTER NN
+Barbier-Mueller NNP
+stabilities NNS
+Yeller JJ
+consequences NNS
+sanguine JJ NN
+Falstaff NNP
+erects VBZ
+AA JJ NN NNP
+congestion NN
+high-interestrate JJ
+feared VBD VBN JJ
+thanksgiving NN
+revenue-neutral JJ
+doting VBG JJ
+Horta NNP
+Treat VB NN
+burglary NN
+Kizzie NNP
+Messa FW NNP
+Merrill NNP NN
+tonnage NN
+autocrat NN
+grounding VBG NN
+embezzle VB
+inclined VBN JJ
+Nanofilm NNP
+U.S.-led JJ
+rampage NN
+Dryden NNP
+discerning JJ
+biscuits NNS
+MSD-200 NNP
+swim VB VBP NN
+evaporative JJ
+Bags NNS
+impartation NN
+bronchi NNS
+Truffaut NNP
+Huwa NNP
+J.F. NNP
+Oppressive JJ
+Considering VBG
+Home-keeping JJ
+seed-capital JJ
+Bernstein-Macaulay NNP
+fraying VBG
+nationalization NN
+Booby JJ
+Los NNP JJ
+Entertainment NNP NN
+terrine NN
+discussed VBN VBD
+discriminatory JJ
+Transcendentalism NNP
+BVIslanders NNS
+scarcely-tapped JJ
+INVESTIGATION NNP
+--offer VBP
+burnout NN
+Afghan-Pakistan JJ
+occluded VBN
+redeemded VBN
+Verne NNP
+capital-goods NNS
+Tillinghast NNP
+High-technologies NNS
+Finnegan NNP
+Syrians NNPS
+landscape NN
+social-welfare JJ
+Archer-Daniels-Midland NNP
+personally RB
+and'boiler NN
+nursery NN JJ
+played-out JJ
+junk-yard NN
+Archive NNP
+oboist NN
+Delusion NNP
+Ress NNP
+Pier NNP
+Philips NNP NNS
+Tylenol-tampering JJ
+glazes NNS
+Schaaf NNP
+prima NN
+townsman NN
+belowground NN
+representations NNS
+stirs VBZ
+Floey NNP
+knott NN
+harrowing JJ VBG
+Catherine NNP
+retrofitting NN
+WNYW-TV NNP
+ward NN VB
+antimaterialism NN
+Mayflower NNP
+Rubbermaid NNP
+bodes VBZ
+septuagenarian NN
+cracked VBD VBN JJ
+.80 CD
+discretion NN
+peasant NN JJ
+hounds NNS
+counterattack NN VB
+BUILDING NNP
+apparat NN
+Norbert NNP
+proclamations NNS
+judge-made JJ
+psychological-intellectual JJ
+strokes NNS VBZ
+measured VBN VBD JJ
+Peden NNP
+downplays VBZ
+Declining VBG JJ
+fussing VBG
+handwritten JJ
+yellow-gray JJ
+Lamphere NNP
+clarification NN
+austerity NN
+Incorporated NNP VBN
+clothing-store NN
+interstates NNS
+asked VBD VBN JJ VBN|JJ
+Menfolk NNS
+aspersion NN
+front-loads VBZ
+Solar-powered JJ
+cobbler NN
+market-stabilizing JJ
+Mabon NNP
+Everhart NNP
+MEI NNP
+hp. NN
+pedal VB NN
+Dotzler NNP
+theorist NN
+synchronized VBN JJ
+maid NN
+shell-psychology NN
+Contradictions NNP
+rebut VB
+Sajak NNP
+Briarcliff NNP
+Transol NNP
+sappy JJ
+Skid NNP NN VBP
+civil-investigative JJ
+debenture NN
+Arger NNP
+confiscating VBG
+Poverty NN NNP
+Whig NN NNP
+immortalized VBN
+being VBG JJ NN VBG|JJ
+fudge VB VBP NN
+financeer NN
+Trammell NNP
+oppressors NNS
+merrily RB
+Mix NNP
+chivying VBG
+splinters NNS
+camped VBD VBN
+Diem NNP
+Sunday NNP
+pipeline NN
+pocket NN VB
+ALCOHOL NNP
+creeping VBG JJ
+Oak NNP NN
+'Yeah UH
+bifocal JJ
+pussycat NN
+CME NNP
+Dependent NNP JJ
+cognizance NN
+metaphysicals NNS
+According VBG NNP
+Potter NNP
+S.O.B. NN
+theme-park NN
+pretending VBG
+arterioles NNS
+D2 NN
+restaffed VBD
+hang-ups NNS
+Constantine NNP
+Supt. NNP
+intensively RB
+easy-to-film JJ
+characterization NN
+pleasures NNS
+configuration-data JJ
+temptingly RB
+segmenting VBG
+Indochinese JJ NNS
+broad-appeal JJ
+eugenic JJ
+since IN RB
+Cocktails NNS
+Thoroughly NNP RB
+Apocrypha NNPS
+rumor NN
+macromolecular JJ
+remunerative JJ
+buttonholes NNS
+unwire VB
+midsession NN
+paperclip NN
+assumption NN
+satisfactions NNS
+Nazionale NNP
+cargo-handling NN
+autumn-touched JJ
+presiding VBG
+scrapes NNS
+Midvale NNP
+petty JJ
+confesses VBZ
+infer... :
+Dubose NNP
+dugout NN
+brown-black JJ
+Print VB
+less. NN
+Chicago-based JJ
+stealin VBG
+open-handed JJ
+wastewater NN
+Institutes NNPS NNP NNS
+plastic-bodied JJ
+dwellings NNS
+regular-season JJ
+lighted VBN VBD JJ
+Nagy NNP
+Chestman NNP
+footfall NN
+colorization NN
+nursing-home NN
+Office NNP NN
+Realtors NNS NNPS NNP
+Site NNP
+earthquake-related JJ
+Scott NNP
+Rumscheidt NNP
+galloping VBG JJ
+Mostly RB
+brochure NN
+Hambric NNP
+unscrewed VBD
+left-right JJ
+Criminalization NN
+single-A-plus JJ NNP NN
+chanted VBD VBN
+mechanized JJ VBN
+Buker NNP
+Fairmount NNP
+disabilities NNS
+hemorrhage NN
+pass VB VBP NN
+gold-oriented JJ
+unaware JJ RB
+nationalize VB
+Kodak NNP NN
+Mancuso NNP NN
+persecutors NNS
+Waikiki NNP
+estancieros NNS
+effloresce VB
+at-large JJ
+tailor-make VB
+Agee NNP
+remained VBD VBN
+Malson NNP
+rectum NN
+tablespoonfuls NNS
+mind NN RB VB
+floating-point JJ NN
+forbore VBD
+comedian NN
+Walla NNP
+broken-nosed JJ
+est FW
+jostling VBG
+ten-concert JJ
+pearl NN
+fellas NNS
+execute VB VBP
+proxies NNS
+Cuban-assisted JJ
+'80s-style JJ
+Thomasini NNP
+VAT NNP
+Sheraton-Biltmore NNP
+Onex NNP
+unfree JJ
+nevertheless RB
+Ignacio NNP
+Jung NNP
+reborn VBN JJ
+backside NN
+rosebush NN
+alienate VB
+Kroll NNP
+Cocteau NNP
+mucking VBG
+engagement NN
+accommodative JJ
+Commercializing VBG
+inclement JJ
+reseachers NNS
+Okrent NNP
+fabulous JJ
+Bretz NNP
+Content JJ
+overtakin VBG
+Q45 NNP
+ripening VBG JJ
+re-creation NN
+redesign NN VB
+Weight NN NNP
+Femina NNP
+Sturbridge NNP
+disinfectants NNS
+eluded VBD VBN
+fulcrum NN
+billings NNS
+fattened VBN VBD
+Portia NNP
+mundane JJ
+Non-money JJ
+capital-draining VBG
+NAC NNP
+Jerez NNP
+photograph NN VB
+alcoholism NN
+restatement NN
+price-competitive JJ
+Chenevix-Trench NNP
+Supercomputers NNPS
+cornices NNS
+shortfalls NNS
+unfortunately RB
+Aaronson NNP
+Johannesburg NNP
+attrition NN
+bandit NN
+CLK NNP
+cheat VB VBP
+stressing VBG
+mannequins NNS
+nipped VBD
+enveloped VBN
+outmaneuvered VBN
+allaying VBG
+Suppose VB
+understandingly RB
+over-leveraged JJ
+Rosie NNP NN
+Sisk NNP
+Brooklyn-born JJ
+Outflows NNS
+sidewalk NN
+automate VB
+overpass NN
+soulfully RB
+reprimanding VBG
+mavericks NNS
+PEDAL NN
+scherzo NN
+GENENTECH NNP
+cogeneration-plant NN
+designation NN
+PARS NNP
+baboon NN
+rogues NNS
+summons NN
+brokers NNS
+Abbenhaus NNP
+reserpine NN
+ecstasy NN
+Sasha NNP
+Cassim NNP
+long-yardage JJ
+AB NNP
+connexion NN
+Christine NNP
+BEING VBG
+non-skid JJ
+Rest VB NNP
+abalone NN
+offshoots NNS
+entanglements NNS
+shouted VBD VBN
+barrack NN
+doltish JJ
+touch NN RB VB VBP
+sopping JJ VBG
+Lot NN NNP
+thyroids NNS
+dissects VBZ
+re-entry NN
+meaningfulness NN
+perceptible JJ
+complies VBZ
+vial NN
+rhinovirus-receptors NNS
+effeminate JJ
+Cholet NNP
+cooling-off JJ NN
+Evian NNP
+'30s CD NNS
+ware NN
+three-man JJ
+Fridge NNP
+account NN VBP VB
+Coolers NNS
+SINCE IN
+Ophthalmic NNP
+Guthrie NNP
+coccidiosis NN
+RoadRailers NNPS
+downbeat JJ NN
+hel NN
+Grannell NNP
+filde VBN
+Tugaru NN
+teething VBG
+Scrambling VBG
+cherry-flavored JJ
+oneasy NN
+Cooke NNP
+piously RB
+guru NN
+democratization NN
+supine NN
+trend-setters NNS
+Barabolak NNP
+best-of-seven JJ
+stacking VBG
+malaise NN
+Frozen VBN
+allegorical JJ
+slum NN
+laity NN
+synce IN
+funds NNS VBZ
+Doc NNP
+stock-quote JJ
+McGillivray NNP
+cleanest JJS
+Hemenway NNP
+industry-specific JJ
+Vergessen FW
+high-button JJ
+Alson NNP
+Frist FW
+Mid-sized JJ
+putty NN
+Citadel NNP
+deworm VB
+Weisel NNP
+profile NN JJ VB
+niggers NNS
+Adele NNP
+Favour NN
+Italiana NNP
+PATH NNP
+vacuum-tube JJ
+Extricating VBG
+pointing VBG NN
+Singh NNP
+rail-traffic JJ
+Raucher NNP
+soulmates NNS
+Nishiki NNP
+windmill NN
+cigarette-tax NN
+pre-packed JJ
+Hicks NNP
+Unione NNP
+defects NNS
+scrimping VBG
+Sweig NNP
+self-exile NN
+darbuka NN
+fashioning VBG
+subsedies NNS
+livestock-dealing JJ
+altruistic JJ
+dart NN VBP
+Payne NNP
+Bye UH
+beds NNS
+pig NN
+interchangable JJ
+donor NN
+surrealists NNS
+shrouds VBZ
+ECUs NNS
+air-to-ground JJ
+stingier JJR
+steppes NNS
+computer-dependent JJ
+suspension NN
+Resourcesrose NNP
+espresso NN
+backhand NN
+Established VBN
+meningioma NN
+telegraphy NN
+KMW NNP
+lower JJR RBR VBP JJ RB VB
+Concrete NNP JJ
+printing NN VBG|NN VBG
+Clasping VBG
+colossus NN
+then-pending JJ
+Manitoba NNP
+brazenness NN
+bogged VBD VBN
+Willard NNP
+Backe NNP
+confidentiality NN
+territory NN
+Duston NNP
+Litz NNP
+LeMay NNP
+blistered VBN
+elastic JJ NN
+Naji NNP
+whooosh JJ
+tilting VBG
+Ouse NNP
+Consultation NN
+Growers NNPS
+polices NNS
+MacNeil\ NNP JJ
+quizzed VBD
+Mongolia NNP
+finite-dimensional JJ
+wrong JJ NN RB RB|JJ
+Kaufnabb NNP
+shortest JJS
+complemented VBD
+Hajak NNP
+happy JJ
+Veryfine NNP
+AUS NNP
+leaded JJ
+rectifying VBG
+baseline NN JJ
+Zion NNP
+bottom-fishers NNS
+Genson NNP
+nighttime JJ NN
+Stals NNP
+Bini NNP
+tucked VBN VBD
+sculpted VBN
+hot-rolled JJ
+weddings NNS
+Rococo JJ
+Wide NNP JJ
+reeled VBD VBN
+warbling VBG
+obsequies NNS
+meshed VBN
+querulous JJ
+retreated VBD VBN
+CORP NNP NN
+hypophysectomised VBN
+jocular JJ
+receiving VBG NN
+demonstrativeness NN
+camping NN VBG
+scops NNS
+pirate NN
+FHA-backed JJ
+Beise NNP
+Eddies NNP
+milion NN
+then-prevailing JJ
+Testicular NNP
+two-by-fours NNS
+foreseeable JJ
+indolently RB
+Kangaroo NN NNP
+leather NN JJ
+Kazushige NNP
+Girl NNP NN
+chosen VBN JJ
+Mulligan NNP
+bank-branch JJ
+Cullowhee NNP
+past JJ VBN IN NN RB
+back-on-terra-firma JJ
+worksheet NN
+multi-lingual JJ
+error NN
+handclasp NN
+TNF NNP
+Feud NN
+compiler NN
+objectivity NN
+Vegans NNPS
+phthalate NN
+cravings NNS
+malapropisms NNS
+schedules NNS
+Frito NNP
+layoffs NNS
+Kerouac NNP
+vrai FW
+grudge NN
+fog-free JJ
+mine NN PRP$ JJ VB PRP VBP
+weeded VBN
+headquarter JJ
+passiveness NN
+grocers NNS
+pronto RB
+Registrations NNS
+corporatist NN
+chemistries NNS
+export-subsidy NN
+anti-monopoly JJ
+lectern NN
+thrombosed VBN
+sanitationists NNS
+veiling NN
+upstaged VBN VBD
+bluff NN JJ
+Plessis NNP NN
+compliance NN
+Marcellus NNP
+colony NN
+megakaryocytic JJ
+murderer NN
+commercial-switch JJ
+bygone JJ
+hyperinflation NN
+Garman NNP
+Sulzer NNP
+off-hours JJ NNS
+raising VBG NN RP
+grits NNS
+Jussel NNP
+Productivity NN NNP
+Banco NNP
+sometimes-necessary JJ
+YEEEEEECH UH
+match-width NN
+jugglers NNS
+Lavin NNP
+Disagreement NN
+all-female JJ
+Angry JJ NNP
+participative JJ
+domestic-demand JJ
+ingots NNS
+A.R. NNP
+crooned VBD
+nuclide NN
+differentials NNS
+Rubendall NNP
+invite VB VBP NN
+multifigure NN
+earful NN
+Health-insurance NN
+Warwick NNP
+density NN
+E. NNP
+XYVISION NNP
+FUNDS NNS NNP NNPS
+Gang NNP NN
+Macassar NNP
+Commonweal NNP
+Gagne NNP
+tourist-advertising NN
+Goldstein NNP
+Presto FW
+Fax NNP NN
+Kirgizia NNP
+abroade RB
+modulation NN
+Wick NNP
+Everlys NNS
+go-go JJ
+Bangkok NNP NN
+poorest JJS
+Retailers NNS NNP
+thrombi NNS
+Prosecutors NNS
+beautifully-tapered JJ
+Bernardin NNP
+whereas IN
+airconditioner JJR
+conjectured VBN
+cash-rich JJ
+Cromwell NNP
+ultra-efficient JJ
+been VBN VBP
+Paragraph NNP NN
+Leach NNP
+wields VBZ
+pre-empt VB JJ
+setters NNS
+advocates NNS VBZ
+decontrol NN VB
+Oakland-Alameda NNP
+Manassas NNP
+deposits NNS VBZ
+Arnell NNP
+Arlene NNP
+Heilbron NNP
+Intrepid NNP
+Msec. NNS
+Oneida NNP
+undetectable JJ
+cristata FW
+being'imprinted VBN
+advertising NN VBG VBG|NN
+Torrid NNP
+howling VBG
+cancer-gene JJ
+episode NN
+bursitis NN
+nine-story JJ
+Londonderry NNP
+chin NN VB
+Sistine NNP
+Studds-Miller NNP
+ill-gotten JJ
+Haskin NNP
+Torrey NNP
+BRAINTRUSTERS NNS
+retails VBZ NNS
+p. NN
+loss-recovery JJ
+stampede NN VB VBP
+hexametaphosphate NN
+Piet NNP
+Atlantica NNP
+unmarketable JJ
+war-damaged JJ
+scolds NNS
+takeover-defense JJ
+resins NNS
+LOWER JJR
+data-storing JJ
+beribboned JJ
+Jinny NNP
+buns NNS
+freshman NN
+revelation NN
+Directionality NN
+state-supervised JJ
+Burma-Shave NNP
+Foreclosure NNP
+absences NNS
+Eats NNS
+upraised VBN
+domineering VBG JJ
+curvaceously RB
+ENVIRONMENTAL JJ
+polyelectrolytes NNS
+TML NNP
+hatchway NN
+Ark.-based JJ
+furthered VBD VBN
+cordial JJ NN
+glitches NNS
+Annual JJ NNP
+coiled VBD
+M.S. NNP
+CNA NNP
+cosmetics NNS
+Perspective NNP
+bribed VBD VBN
+patter NN
+Risley NNP
+Gaithersburg NNP
+laughing VBG JJ NN
+HAPPY JJ
+Hinkle NNP
+pervaded VBD VBN
+conjunction NN
+unorganized JJ
+Following VBG NN
+Lou NNP
+Doherty NNP
+Nino NNP
+haec FW
+Gorky NNP
+lessers NNS
+Chojnowski NNP
+ambitiously RB
+BSB NNP
+Udvar-Hazy NNP
+walled JJ VBN
+luxuriance NN
+guessed VBD VBN
+videotext NN
+panoply NN
+Hydraulic NNP JJ
+transmission NN
+referee NN
+Angst NN
+expired VBD VBN JJ
+reproduce VB
+analyses NNS VBZ
+pimples NNS
+drier NN JJR RBR
+brand-name JJ NNP NN
+Bamboo JJ
+sorption NN
+Ethics NNP NN NNS
+logs NNS VBZ
+nation-state NN JJ
+Vickie NNP
+Tsuruo NNP
+whenever WRB
+infantry NN
+Dowd NNP
+hem NN
+ChemPlus NNP
+employees NNS VBZ
+Uno NNP
+Selden NNP
+Agfa NNP
+Lucy NNP
+upper-middle-class JJ
+truck-maker NN
+Vietnam NNP
+compiles VBZ
+leisure NN
+C.J. NNP
+households NNS
+boy-manager NN
+Aiding NNP
+sambuca NN
+vellum JJ
+Gignac NNP
+fruitfulness NN
+Raised VBN
+cabins NNS
+Microchannel NNP
+well-fortified JJ
+intervention NN
+third-party JJ
+silky JJ
+Repository NNP NN
+self-insurance NN
+All-You-Can-Eat NNP
+Ruding NNP
+naggings NNS
+tagging VBG
+floundering VBG JJ
+MCV NNP
+genteel JJ
+disengaged VBN
+slashed VBD VBN
+undefeated JJ
+downgrading NN VBG
+correct JJ VBP VB
+receipts NNS
+field-officials NNS
+Palfrey NNP
+Corrette NNP
+implicitly RB
+twenty-dollar JJ
+merchandising NN VBG
+Atsushi NNP
+Tend VBP VB
+Bertolotti NNP
+Beechnut NNP
+J/NNP.G.L. NNP
+sales-loss JJ
+Incinerator NNP
+made-for-television JJ
+dedicates VBZ
+protruding VBG
+computerize VB
+headdress NN
+Aftereffects NNS
+Easy NNP JJ RB
+Cambridgeport NNP
+Nikitas NNP
+Theo-Dur NNP
+billiards NN NNS
+Marshes NNP
+feathery JJ
+Decorating VBG
+bewildering VBG JJ
+Hines NNP
+cremate VB
+swerve VBP NN VB
+Alvear NNP
+effusive JJ
+Exports NNS NNPS
+automated-trading NN
+Mattie NNP
+gazelle NN
+real-estate-asset JJ
+Mallet-Prevost NNP
+Sentiments NNS
+Mafia-tainted JJ
+Handelsbanken NNP
+dictatorial JJ
+Shak. NNP
+coaxial JJ
+--players NNS
+Petipa NNP
+Short-sellers NNP NNS
+nickel NN JJ
+high-wire JJ
+uninvited JJ
+litterbug NN
+nephews NNS
+Threlkeld NNP
+afternoons NNS RB
+tact NN
+phosphate-buffered NN
+Symbol:HRB NNP
+predilection NN
+black-crowned JJ
+erosion NN
+inanimate JJ
+eve NN
+Cremonie NNP
+Smithfield NNP
+Futures-related JJ
+O.K. UH NNP
+Vinogradoff NNP
+Patriot NNP
+unsuspecting JJ
+self NN PRP
+intergovernmental JJ
+dimensionally RB
+check NN VBP VB
+Belasco NNP
+follow-up NN JJ
+power-plant NN
+revolutionize VB
+seventh-biggest JJ
+righteousness NN
+Contacts NNPS
+degree-granting JJ
+day-after-day JJ
+Cottle NNP
+LAWYERS NNS NNP
+Brotherhood NNP
+hot-water NN
+Wrangler NNP
+lankmark NN
+interrelation NN
+precipitate VB NN
+Mediation NNP
+state-administered JJ
+deCordova NNP
+interpretation NN
+p'lite NN
+continuing-education JJ
+worrisome JJ
+microcosm NN
+OVERHAUL NN
+price-jarring JJ
+Dragging VBG
+Tobacco NNP NN
+Hichens NNP
+Geingob NNP
+Cuyahoga NNP
+acrylic-fiber JJ
+galbula FW
+Mitzel NNP
+Biederman NNP
+Food NNP NN
+baskets NNS
+condom NN
+Doraville NNP
+preordainment NN
+unbent JJ
+realignments NNS
+excoriating VBG
+Sandhills NNP
+Cusa NNP
+laendler JJ
+highyield JJ
+persecutory JJ
+E.B. NNP
+offhand JJ
+Gibraltar NNP
+edict NN
+patches NNS
+heptachlor NN
+git VB VBP
+petro-dollar JJ
+county-wide JJ
+motivates VBZ
+parallel-computing JJ
+think-tanks JJ
+frustrate VB
+ingestion NN
+JVC NNP
+Motoren NNP
+Coal NNP NN
+parklike JJ
+torso NN
+moccasins NNS
+NewsEdge NNP
+tents NNS
+maladroit JJ
+worker-compensation NN
+masseurs NNS
+yes UH RB
+Euro-barbecue NN
+Fulghum NNP
+Middle-class JJ
+Ringer NNP
+Col. NNP
+Lippi NNP
+AMR-Delta NNP
+dismissing VBG
+figuratively RB
+Lauderhill NNP
+Badura-Skoda-Vienna NNP
+gathered VBD VBN
+Constructions NNP
+Underwriters NNS NNPS NNP
+Ardent NNP JJ
+purpose... :
+re-establishing VBG JJ
+Exchange-rate JJ
+Isaacson NNP
+complicated VBN JJ VBD
+overweening JJ
+bridge-loan JJ
+cetera NN FW
+Lazybones NNP NNS
+pre-tested VBN
+Lark NNP
+luxury-goods NNS
+Tahse NNP
+passthrough JJ
+hard-hitting JJ
+humanitarian JJ NN
+mastiff NN
+denominational JJ
+services NNS VBZ
+built VBN JJ VBD
+flicker NN VB
+omniscient JJ
+oozing VBG
+five-minute JJ
+modifier NN
+bilked VBN VBD
+myelogenous JJ
+misstep NN
+Fay NNP
+Bratislava NNP
+rand NN NNS
+recitative NN
+Bustard NN
+M8.7sp NNP
+intensifying VBG JJ
+tagua NN
+hills NNS
+unregulated JJ
+enraptured VBD VBN
+Thirty CD
+farrowings NNS
+Battalion NNP
+belonging VBG NN
+Alsop NNP
+Valen NNP
+sulked VBD
+Sec. NN NNP
+refurnished VBN
+congregational JJ
+Riklis NNP
+bunt NN VB
+whirlwind NN JJ
+cellular-telephone JJ NN
+Frontier NNP
+Plays NNP NNS VBZ
+Henry NNP
+millionaire NN
+phases NNS VBZ
+phone NN VB VBP
+lifeboats NNS
+Binary JJ
+Desperately RB
+mild-winter JJ
+louse VB NN
+raku NN
+fingering VBG NN
+mid-Atlantic JJ
+Candice NNP
+resists VBZ
+Overt JJ
+Gettysburg NNP
+bouffe NN
+surimi FW
+air-express NN
+skinhead NN
+chopsticks NNS
+degeneration NN
+Graph NN
+urban-fringe JJ
+high-yielding JJ
+Minden NNP
+antibody-producing JJ
+histology NN
+Baraclough NNP
+Landrieu NNP
+D'Argent NNP
+Coca NNP
+unashamedly RB
+dries NNS VBZ
+bones NNS
+Groused VBD
+Unexpected JJ
+endothelial JJ
+straights NNS
+Alvarez NNP
+intelligible JJ NN
+under-performing JJ
+Net JJ NNP NN
+Resolution NNP NN
+priori FW
+projections NNS
+Cementos NNP NNS
+net-capital JJ
+Maury NNP
+vegetables NNS
+Provisional NNP
+VeloBind NNP
+Lepercq NNP
+khaki JJ
+Twiggy NNP
+--you JJ
+oftener RBR
+Moods NNP
+Minnetonka NNP
+gazpacho NN
+SPLIT-UP NN
+trailer NN
+Sermon NN NNP
+hot-buttons NNS
+Pearce NNP
+disgrace NN
+low-yielding JJ
+Sirs NNPS NNS
+compute VB
+gas-saving JJ
+Shurtleff NNP
+canister NN
+somethin NN
+respectable JJ
+target NN VBP VB
+spared VBN VBD
+arbitraging VBG
+tippling JJ
+unveil VB
+penal JJ
+Komatsu NNP
+tamper-proof JJ
+interlayer NN
+Moleculon NNP
+Indoor JJ
+early-warning NN
+Masato NNP
+sayings NNS
+Glemp NNP
+self-rule NN
+nemesis NN
+zoooop NN
+commanded VBD VBN
+OBrion NNP
+more-established JJR
+Muncie-Peru NNP
+hen NN
+you-know NN
+critique NN
+hot-slough JJ
+governorship NN
+reinvested VBN VBD
+Born-again JJ
+flagging JJ VBG
+golden JJ
+low-heeled JJ
+pro-shareholder NN
+Doe NNP
+JenMar NNP
+underperformed VBN
+Hiller NNP
+Hatfield NNP
+eh UH
+STC NNP
+Nipe NNP
+po'k NN
+self-promotion NN
+nectareous JJ
+Yuk-sui NNP
+clicking VBG NN
+Jeanette NNP
+Ushuaia NNP
+trading-house JJ
+almost-industry NN
+violinist NN
+Breene NNP
+Pagliuca NNP
+Originally RB NNP
+jinks NNS
+Chrissake UH
+rapacious JJ
+small-denomination NN JJ
+AD NN NNP
+meanest JJS
+students NNS
+comments NNS VBZ
+Beauty NNP NN
+sleepwalker NN
+octillion CD
+Someone NN NNP
+apply VB VBP
+indentations NNS
+pave VB
+conveying VBG
+Metroplex NNP
+alphabetical JJ
+Sann NNP
+Stieglitz NNP
+protests NNS VBZ
+toppling VBG
+regulation-writing JJ
+noncompetitively RB
+buyout NN
+vacuum NN JJ VB VBP
+manhandled VBN
+tartans NNS
+Pace NNP
+realism NN
+pacts NNS
+Northern NNP JJ
+Galt NNP
+Butterwyn NNP
+octogenarian JJ
+jazzy JJ
+cardholders NNS
+lovelorn JJ
+Stop-limit JJ
+Changes NNS NNP VBZ
+optic JJ
+rotenone NN
+latter-day JJ
+becomed VBN
+Soukhouma NNP
+Patrimony NNP
+Navigation NNP
+loan-management NN
+finality NN
+Shinagawa NNP
+groped VBD
+nonproliferation NN
+Cynewulf NNP
+doubts NNS VBZ
+Romanee-Conti NNP
+Bolshoi NNP
+himselfe NN
+modifies VBZ
+Queen NNP NN
+XYLOGICS NNP
+fraud-related JJ
+Feeds NNS
+anywhere RB
+OHIO NNP
+agonized VBD JJ
+people... :
+Prior RB
+massuh NN
+consumer-paint JJ
+bid-rigging NN
+Nishima NNP
+mistress NN
+instrumentalities NNS
+information NN
+velours NN
+Manson NNP
+imagination NN
+Dalgety NNP
+Clara NNP
+prime JJ NN
+fame NN VB
+J/NNP.A.W. NNP
+Traverso NNP
+HILLS NNP
+technology-based JJ
+Pascale NNP
+sashay NN
+Mussolini NNP
+deals NNS VBZ
+rotary JJ
+Frankfurter NNP NN
+bracelet NN
+pseudo-emotion NN
+mail-room NN
+organized VBN VBD JJ
+pro-NATO JJ
+S&L NNP NN
+Dream-Torkin NNP
+Denrees NNP
+PHONE NNP
+Carlta NNP
+dusting VBG NN
+Institut NNP
+moored VBN
+disheartening JJ
+junkbond NN
+Payers NNS
+opaque JJ
+funnier JJR
+Westfield NNP
+coverages NNS
+Nations NNPS VBP NNP|NPS NNP NNS
+Watts NNP
+ANCHORAGE NNP
+spoons NNS
+Poets NNS
+counted VBN VBD
+composer NN
+Premise NNP
+eluding VBG
+biconcave JJ
+truck-manufacturing JJ
+gargle NN
+Merc NNP NN
+stain NN VB
+psychotherapists NNS
+variable JJ NN
+Nikolai NNP
+obligates VBZ
+flim-flammery NN
+one-parent JJ
+monarchists NNS
+homicidal JJ
+motors. NNS
+acquired VBN JJ VBD
+perforations NNS
+Ninety-nine CD
+Friedmann NNP
+kits NNS
+Campaign NNP NN
+Emanuele NNP
+trepidation NN
+nurturer NN
+Wei NNP
+blokes NNS
+more-conventional JJR
+Personnel NNP NNS NNPS
+MD-11 NNP
+SSI NNP
+beep NN
+tuneful JJ
+spawn VB VBP
+maneuvers NNS VBZ
+Europeanization NN
+hocking VBG
+softwood JJ
+polynomials NNS
+cost-accounting JJ
+tonsils NNS
+Tredding NNP
+speak VB VBP
+chauffeur-driven JJ
+immeasurable JJ
+Hester NNP
+Frankfurt-based JJ
+Trotter NNP
+wherewith VB
+Calmly RB
+Panhandle NNP VB
+over-magazined VBN
+chip NN
+contract-drilling NN VBG
+yet RB CC
+Comstron NNP
+McDowell NNP
+Constantino NNP
+Mme NNP
+matchmaker NN
+ex-Beecham JJ
+plead VB VBP
+phosphor NN
+recording-company NN
+sorrow NN
+splintery NN
+confiscation NN
+over-achievement NN
+travellers NNS
+Adoption NN NNP
+Rachel NNP JJ NN
+openings NNS
+psychosomatic JJ
+clarinet NN
+passbook NN
+tamale NN
+twelve CD
+Milburn NNP
+fire NN VB
+wales NNS
+Jump NN VB
+Attributes NNS
+waterproofing NN
+Quaker NNP
+twelvefold JJ
+commonly RB
+health-related JJ
+Grant NNP VB
+Lingus NNP
+ovens NNS
+subsidiarity NN
+non-success NN
+Langstaff NNP
+spiral NN VB
+Lojack NNP
+CRRES NNP
+Freshbake NNP
+techniques NNS
+non-professionals NNS
+BRAMALEA NNP
+statutory JJ
+romantick JJ
+diminished VBN JJ VBD
+disaffection NN
+Knife NNP NN
+Patagonia NNP
+break-even JJ NN VB
+family-centered JJ
+son-of-exchange JJ
+Mitchells NNP
+genetically RB
+Steidtmann NNP
+Korn NNP
+blips NNS
+kitchen-sink JJ
+albumin NN
+taffycolored VBN
+atrophic JJ
+spare-parts JJ NNS
+CONTAIN VB
+walkin VBG
+displacing NN VBG
+Avoids VBZ
+Lieberman NNP
+companies NNS
+costive JJ
+double-talk NN
+Indexing NN VBG
+pushers NNS
+columns NNS
+Hoge NNP
+Coxon NNP
+shies VBZ
+Hurrican NNP
+splashy JJ
+months-long JJ
+medically RB
+Fas-antigen NN
+despaired VBD
+vapors NNS
+Ohlman NNP
+Weksel NNP
+EDA NNP
+o'clock RB NN
+operatorship NN
+discloses VBZ
+careworn JJ
+N.Y.-based JJ
+fascination NN
+earthworms NNS
+Cabletron NNP
+second-largest JJ JJS
+Direction NNP NN
+Locks NNP
+Meaningful JJ
+excepting VBG
+SHIBUMI NNP
+crown NN VB
+Robotics NNP
+ever-existent JJ
+nobility NN
+occupancies NNS
+doorbell NN
+budget-strapped JJ
+Poesy NN
+diminution NN
+priming VBG NN
+Bronces NNP
+Bribe NN
+skulk VB
+propionate NN
+reprobate NN
+engraver NN
+Walle NNP
+low-calorie JJ
+cropping VBG
+plumbing NN
+Gunlocke NNP
+well-heeled JJ
+flag NN VB
+celebrating VBG
+Winters NNP
+PRIME JJ NN NNP
+lowest-rated JJ
+Intuition NN
+Icelandic-speaking JJ
+rise NN VBP VB
+metamorphosed VBN
+shoelace NN
+Sinyard NNP
+'Damn VB
+Fieldcrest NNP
+whitecollar JJ
+floater NN
+News-American NNP
+Maoist-style JJ
+anti-airline-takeover JJ
+drifting VBG JJ NN
+pains-taking JJ
+dermal JJ
+femme FW
+Low NNP JJ
+Cheez NNP
+snooker NN
+Fed NNP VBN JJ
+reedy JJ
+Reactionary JJ NNP NN
+ordo FW
+bedstraw NN
+arterial JJ
+plumps VBZ
+cattle NNS NN
+Never RB UH NNP
+fervid NN
+motive NN JJ
+UJB NNP
+Terror NN
+Ventures NNP NNPS
+encephalitis NN
+Franchise NNP
+Guam NNP
+Floresville NNP
+Hell UH NNP NN
+Bahr NNP
+composes VBZ
+Mokaba NNP
+fringes NNS
+posing VBG
+unnourished JJ
+synthesised VBN
+interconnectedness NN
+five-month JJ
+encroachment NN
+jostled VBD
+baby-boomers NNS
+yanked VBD VBN
+Davidow NNP
+Odessa NNP
+Nosebleed NN
+eschew VB
+Everything NN NNP
+arches NNS VBZ
+served VBN VBD
+Escadrille NNP
+Balmy JJ
+cleverness NN
+F.W. NNP
+Siti NNP
+unlucky JJ
+Sungene NNP
+Invitations NNS
+delights VBZ NNS
+sunny JJ
+Beneficiaries NNS
+hunters NNS
+stymie VB
+misplace VB
+shot-up JJ
+air-defense JJ
+demandingly RB
+Queensland NNP
+wall-stabilized JJ
+sorcery NN
+Bellingham NNP
+Broadway NNP NN
+pointed VBD VBN JJ
+Loftus NNP
+multimillion-dollar JJ NN
+coolness NN
+crofters NNS
+Francoisette NNP
+dealt VBN VBD
+Blowers NNS
+stunningly RB
+Ritz-Carlton NNP
+Medicaid NNP
+Slote NNP
+Stop-close-only JJ
+prototyped VBN
+lazily RB
+NLRB NNP
+Jersey-based JJ
+prudent JJ
+scrambles NNS
+Murray NNP NN
+Junk NN
+shelter. NN
+outta IN
+FROM IN
+now-purged JJ
+one-night JJ
+odd-looking JJ
+Sturge NNP
+fros NNS
+Griselda NNP
+Hassenfeld NNP
+welfare NN
+destabilizes VBZ
+overprotection NN
+Fabian NNP
+Viewpoint NNP NN
+fuddy-duddy JJ
+loath JJ
+impervious JJ
+stabilizing-conserving JJ
+unjustified JJ
+tinkering NN VBG
+Mesta NNP
+cheerleader NN
+Procreation NN
+vectors NNS
+Ciudad NNP
+oyabun NN
+Thread VB
+brokerage-by-brokerage JJ
+ramble VB VBP
+launching VBG NN
+Praver NNP
+outskirt NN
+Brophy NNP
+Mollusks NNS
+sligthly RB
+Tex. NNP
+Dieter NNP
+Bruyette NNP
+Ramesh NNP
+trombone NN
+Accademia NNP
+half-seriously RB
+Nigeria NNP
+Raich NNP
+kilometer NN
+publicists NNS
+self-defeating JJ
+creations NNS
+post-fray RB
+sinking-fund JJ NN
+Jays NNPS
+Hamlet NNP
+overflights NNS
+VAX9000 NN
+LJN NNP
+Nadir NNP
+symbolize VB VBP
+and\/or NN
+misperceives VBZ
+NBA NNP
+Starks NNP
+Coan NNP
+falseness NN
+CMI NNP
+cresting VBG
+top-drawer NN JJ
+Nihon NNP
+half-measure NN
+Ihor NNP
+Kangyo NNP
+unpunctured JJ
+kinship NN
+skyward RB
+comrade NN
+Frito-Lay NNP
+Andalusians NNPS
+virutally RB
+inflame VB
+stumble VB VBP NN
+vaulting JJ NN VBG
+conceiving VBG
+Duchess NNP
+unopened JJ
+Popolare NNP
+embraces VBZ NNS
+Dorenzo NNP
+transformed VBN JJ VBD
+capital-market JJ NN
+fucks NNS
+far-flung JJ
+Plutarch NNP
+oil-transport JJ
+supernormal JJ
+Esteli NNP
+alter VB VBP JJ
+Dillow NNP
+Noranda NNP
+Balances NNP
+Epiphany NNP
+quailing VBG
+Branigan NNP
+rainless JJ
+obstetrician NN
+Occasional JJ NNP
+engraves VBZ
+kindred JJ
+well-written JJ
+trust NN VBP VB
+nervy JJ
+flutist NN
+clumsy JJ
+Insight NNP
+garde FW
+Letters NNS NNP NNPS
+Prednisone NN
+unwise JJ
+uh-uh UH
+Zama NNP
+grapevine NN
+Neville NNP
+rehearse VB
+jangling VBG
+minimizes VBZ
+gainer NN
+LOCKHEED NNP
+gimmicks NNS
+trail-blazing JJ
+fall NN VBP VB
+Omni NNP
+Culkin NNP
+blessing NN VBG
+underpinning NN VBG
+pomological JJ
+selections NNS
+Spirrison NNP
+tristate JJ
+combinable JJ
+anti-bike JJ
+ranted VBD
+suspender NN
+Sarmi NNP
+Varitronic NNP
+orthicon NN
+Raphael NNP
+blot NN VB
+Baim NNP
+probe-based JJ
+marquees NNS
+zip-code NN
+vineyard NN
+Istiqlal NNP
+high-temperature JJ NN
+effrontery NN
+tree-clumps NNS
+Grusin NNP
+love-in-action NN
+Subjects NNS
+infantrymen NNS
+trim VB JJ NN
+Merely RB
+year-ago JJ
+Techcorps NNP
+limousines NNS
+dramas NN
+popularizing VBG
+submarines NNS
+schoolmate NN
+Adolf NNP
+Suitable JJ
+historichomes NNS
+cost NN VBD VBN VBP VB
+parlance NN
+pistol-packing JJ
+exuberantly RB
+One-time JJ
+adjuncts NNS
+slug-kebab NN
+Rilling NNP
+VAX NNP
+presents VBZ NNS
+Ravenspurn NNP
+Lawson NNP
+Marines NNPS NNS
+Karacan NNP
+sportsmanship NN
+J-2 NNP
+filed VBN VBD
+supressor NN
+MacArthur-Helen NNP
+messengers NNS
+Pieces NNP NNS
+Hismanal NNP
+misdemeanors NNS
+skull NN
+drifted VBD VBN
+Elmhurst NNP
+allegation NN
+tabloid NN JJ
+zapped VBD
+Cub NNP
+stratosphere NN
+predates VBZ
+macromolecules NNS
+retaking VBG
+extended-payment NN
+strewn VBN
+single-malt JJ
+boxer NN
+hauling VBG NN
+copious JJ
+coerces VBZ
+Hosni NNP
+Tax-loss NN
+non-contributory JJ
+jury-tampering JJ
+Cemal NNP
+Nevada NNP
+grouses VBZ
+FACING VBG
+rather RB IN
+Frits NNP
+Barilla NNP
+tax-understatement JJ
+CROSS-BRED VBD
+to-the-death NN
+Bissell NNP
+One-third NN
+by IN RB RP RB|RP
+every DT
+railbiking NN
+assimilable JJ
+Gauged VBN
+LIT NNP
+herringbone NN
+Muzo NNP
+Penna. FW
+undercutting VBG
+Ella NNP
+Pilgrim NNP NN
+Electrosurgery NNP
+councils NNS
+neck-and-neck JJ
+S-s-sahjunt NN
+Kee-reist UH
+crested JJ
+McVities NNP
+capitalize VB
+vice NN FW JJ RB
+Political JJ NNP
+ambiguous JJ
+broadcast-and-cable JJ
+complection NN
+Corbehem NNP
+pathlogy NN
+emeriti FW
+founder-conductor NN
+birthed VBN
+Syndicate NNP NN
+B&H NNP
+world-shattering JJ
+arisen VBN
+borderline JJ NN RB
+culling VBG
+federalize VB
+juries NNS
+cookie NN
+STAR-STUDDED JJ
+Solitudinem FW
+Such JJ DT NNP PDT
+Nev NNP
+Dangers NNS
+anti-shoplifting JJ
+unfalteringly RB
+sanitation-control JJ
+branch NN VB
+generate VB VBP
+seaport NN
+Seaquarium NNP
+flowerpot NN
+sods NNS
+centuries-old JJ
+mismanaged VBD
+Helm NNP
+holies NNS
+admits VBZ NNS
+SUNDSTRAND NNP
+Souci NNP
+nifty JJ
+non-New JJ
+Researchers NNS NNP
+Steppel NNP
+inheritable JJ
+logarithm NN
+PCBs NNS
+unhinged VBN
+J.G. NNP
+chansons FW
+arranged VBN VBD
+Baruch NNP
+outage NN
+concurrent JJ
+Coca-Cola NNP
+Heberto NNP
+Pipgras NNP
+Vega NNP
+Sirinjani NNP
+basing VBG
+MARCUS NNP
+Fee NN
+Scout NNP
+Lackluster JJ
+technicality NN
+Wacker NNP
+eye-undeceiving NN
+reallocating VBG
+Catheter NNP
+toxic-waste-dump JJ
+horror NN
+outlet NN
+emerge VB VBP
+renamed VBN VBD
+NEC-compatible JJ
+allure NN
+Mando NNP
+morale-damaging JJ
+Stabbert NNP
+centimeters NNS
+ruminated VBD VBN
+Beaufort NNP
+Separation NN
+Mortars NNS
+evolved VBN JJ VBD
+onward RB
+swanlike JJ
+transcendental JJ
+stake NN VB VBP
+fussily RB
+asset-management NN
+unreliable JJ
+secluded VBN JJ
+Mandell NNP
+nomination NN
+Everytime RB
+Quit VB
+substantiate VB
+windfalls NNS
+inhumanities NNS
+enticing VBG JJ
+Engineer NNP
+Conservatives NNS NNPS
+extravaganzas NNS
+clinical-products NNS
+scooter NN
+Reactions NNS
+TRUST NNP VBP NN
+Dog NNP
+Asmara NNP
+Lanesmanship NN
+Cookie-Crisp NNP
+Fauntroy NNP
+reproof NN
+Fery NNP
+Brod NNP
+bounty NN
+Niepce NNP
+Shensi NNP
+hustler NN
+smoked VBD JJ VBN
+conception NN
+Gauguin NNP
+audacity NN
+reflected VBD JJ VBN
+do VBP FW NN VB NNS VBZ
+Cashin NNP
+convict NN VB
+Kulongoski NNP
+Would-be JJ
+Simeon NNP
+Oberhausen NNP
+Crier NNP
+Dalzell-Cousin NNP
+Beismortier NNP
+for IN NNP CC JJ RB RP
+Vinnicum NNP
+abated VBN VBD
+Chinook NNP
+gust NN RB
+Caribbean NNP JJ
+Smale NNP
+eyes NNS
+beating VBG NN
+decided VBD VBN JJ
+Neiman-Marcus NNP
+Lukas NNP
+insanely RB
+Siedenburg NNP
+hairdos NNS
+V.H. NNP
+marriage NN
+crews NNS
+Crowell NNP
+portraying VBG
+Skase NNP
+implausibly RB
+newcomers NNS
+Shima NNP
+Kidd NNP
+Kerr-McGee NNP
+editorially RB
+say-so NN
+nestling NN
+empty-shelved JJ
+masked VBN VBD JJ
+Yasuda NNP
+chandeliers NNS
+apologized VBD VBN
+Bennett-Bloom NNP
+single JJ VBP NN RB VB
+Metropolitan NNP
+MEN NNS NN
+Dutch-descended JJ
+Munching VBG
+Paul-Minneapolis NNP
+felled VBN VBD
+texts NNS
+Selavo NNP
+bijouterie FW
+batterie NN
+reform NN VB
+pollute VB
+bond-underwriting JJ
+permits VBZ NNS
+percussion NN
+donation NN
+Schnader NNP
+beer NN
+Australia-wide JJ
+Little NNP JJ RB
+financially RB
+Mold NN
+converged VBD
+Poltava NNP
+Economies NNS
+Lannon NNP
+lettuce NN
+Rezsoe NNP
+shrub-covered JJ
+postition NN
+underhanded JJ
+headphones NNS
+second-echelon JJ
+secondly RB
+disorganized JJ VBN
+rang VBD
+Italian-made JJ
+Weigle NNP
+belligerent JJ
+agonies NNS
+Certain JJ NNP
+AF NNP
+stagecoaches NNS
+debating VBG JJ
+monophonic JJ
+Shucks UH
+intergenerational JJ
+outfitted VBD VBN
+draft-avoidance NN
+toenails NNS
+cadge VBP
+price-based JJ
+private-placement JJ NN
+Stritch NNP
+birds NNS
+tempore NN
+Jakes NNP
+snarled VBD
+loomed VBD VBN
+breadbasket NN
+greedy JJ
+Satan NNP NN
+BRK NNP
+dogfight NN
+ejaculated VBD
+Carney NNP
+berth NN
+intestinal JJ
+midway RB JJ NN
+Millipore NNP
+unanticipated JJ
+cooperated VBN VBD
+diplomas NNS
+Pilgrin NNP
+Diversify VB
+renaming VBG
+still... :
+Bordeau NNP
+Bain NNP
+Pacwest NNP
+laminated VBN JJ
+announcer NN
+hoverin VBG
+gratification NN
+Albertine NNP
+Bruckheimer NNP
+Redundant NNP
+Oce NNP
+Krysalis NNP
+timers NNS
+Naster NNP
+thunderclaps NNS
+Trump-watchers NNS
+compilations NNS
+suggestion NN
+evolving VBG
+raccoon-skin JJ
+dragons NNS
+welter NN
+boxes NNS
+plutocrats NNS
+repression NN
+Manuel NNP
+waver VBP NN VB
+longer RB , JJR RBR
+ISRAEL NNP
+Try VB VBP
+assorted JJ VBN
+Hypothesizing VBG
+emergency-relief NN
+INTER-TEL NNP
+BA NNP
+non-virulent JJ
+Hogg NNP
+Honeywell NNP
+pats NNS
+Boltz NNP
+Coolest JJS
+Eagleton NNP
+thyratron NN
+herd-owner NN
+rollout NN
+pizzas NNS
+dawns VBZ
+squadroom NN
+Howson-Algraphy NNP
+Alamogordo NNP
+cutlery NN
+onyx NN
+Corneilus NNP
+exempting VBG
+inaccessible JJ
+Bennett NNP NN
+Propper NNP
+Outstanding JJ NNP
+extends VBZ
+airspeed NN
+weirdly RB
+tilth NN
+demanding VBG JJ
+contribs NNS
+Cited VBN
+intercollegiate JJ
+Buckhorn NN
+discotheque NN
+Dies NNP VBZ
+Historically RB NNP
+Cassatt NNP
+Branchville NNP
+Papetti NNP
+Heffner NNP
+Kanaday NNP
+busybodies NNS
+transshipment NN
+charitably RB
+Gardening NNP
+resume VB NN VBP
+unchlorinated VBN
+fortuitous JJ
+Lithograph NNP
+Weaving VBG
+infection NN
+MDT NNP
+Yacos NNP
+dramatizing VBG
+vacancies NNS
+Wergeland NNP
+grocery NN
+Mainly RB
+.90 CD
+invasions NNS
+friendship NN
+Beadles NNP
+ballplayers NNS
+deputized VBN
+Room NNP NN
+revocation NN
+self-centered JJ
+sittings NNS
+Sukhoi NNP
+surroundings NNS
+moraine NN
+departing VBG
+Tanqueray NNP
+Cathedral NNP NN
+ever-narrowing JJ
+libellos NNS
+Gildersleeve NNP
+sided VBD VBN
+lovely JJ
+meet... :
+snouts NNS
+glum JJ NN
+electronic-systems NNS
+Bulletin NNP NN
+triviality NN
+permissible JJ NN
+rebels NNS VBZ
+mass-distribution JJ NN
+Binn NNP
+hustles VBZ
+Rabinowitz NNP
+ex-member NN
+Solano NNP
+Glenn NNP
+Evidences NNS
+McEnaney NNP
+egg-processing JJ
+bearishly RB
+overall JJ NN RB
+freefall NN
+mailboat NN
+unfertile JJ
+Pecks NNPS
+New NNP NNPS JJ NN
+inflammatory JJ
+SHEARSON NNP
+assign VB VBP
+already-sizable JJ
+price-level JJ
+onleh RB
+farmland NN
+fretting VBG
+undefined JJ
+Stung VBN
+jails NNS
+slope NN
+peppered VBD VBN JJ
+dragoon VBP
+symptom NN
+Diversified NNP VBN JJ
+militancy NN
+selfeffacing VBG
+attendance NN
+microelectronics NNS NN
+Oilfields NNS
+Seldes NNP
+myopia NN
+inoculation NN
+Paintings NNS
+Mothers NNPS NNP NNS
+Longwood NNP
+brightens VBZ
+Eden NNP
+trans-Atlantic JJ NNP
+Loy NNP
+Takao NNP
+zero-coupon JJ NN
+squadrons NNS
+Fortunate JJ
+Mengitsu NNP
+Dolphin NNP
+Officially RB NNP
+detestable JJ
+widely RB
+shortness NN
+Brookings NNP
+community-development NN
+Laura NNP NN
+meeting NN VBG
+Chekhov NNP
+Broe NNP
+Lieut NN
+Cowboy NN NNP
+guarding VBG
+Wheatfield NNP
+BIRDS NNS
+Deliveries NNS
+Human-rights NNS
+hibachi NN
+bogging VBG
+announces VBZ
+Roundtable NNP
+lens NN
+diplomat NN
+Acala NNP
+joyride NN
+hormones NNS
+TVwhich NNP
+Empty JJ NNP
+ordinances NNS
+three-inch-long JJ
+Tamiris-Daniel NNP
+cu NN
+lawsuit NN
+trouble NN VBD VBP JJ VB
+Grappelly NNP
+indebtedness NN
+bailout NN
+featherbedding NN
+loudest JJS RBS
+ELSINORE NNP
+Slightam NNP
+crackled VBD
+Samakow NNP
+Dierker NNP
+keynote VBP NN VB
+explored VBN VBD
+rendering VBG NN
+Judaism NNP
+self-governing JJ
+Castel NNP
+advance NN JJ VB VBP
+fetchingly RB
+zap VB VBP
+resultant JJ NN
+watchman NN
+addresss NNS
+sign-carrying JJ
+yogurt NN
+sprawled VBN VBD JJ
+grilled-chicken JJ
+glided VBD
+Elevated NNP
+instinctual JJ
+imbalance NN
+archipelago NN
+clinging VBG
+Stiller NNP
+schoolchildren NN VB NNS
+hand-wringer NN
+Raghavan NNP
+.86 CD
+pence NN NNS
+acrobacy NN
+burrs NNS
+disillusioned VBN JJ
+chemist NN
+Geneticist NNP
+insisted VBD VBN
+misstatements NNS
+curvy JJ
+sheriffs NNS
+bees NNS
+shareholder-payout JJ
+Dealer NNP NN
+Barsky NNP
+radiosterilized VBN
+Laro NNP
+sifted VBD VBN
+hate-mongering NN
+desegregated VBN
+extracted VBN VBD
+Mole NNP
+campfire NN
+Calimala NNP
+ripples NNS
+Eslinger NNP
+Pontiac-Cadillac NNP
+scorn NN VB VBP
+resinlike JJ
+Koenigsberg NNP
+Gospelers NNS
+irreducible JJ
+Housed VBN
+betrothed VBD
+redundancy NN
+ECI NNP
+edging VBG NN
+fluids NNS
+Iris NNP
+staff... :
+Greatly RB
+fungi NNS
+Celia NNP
+issuances NNS
+Disappointments NNS
+Hotelecopy NNP
+antiquity NN
+Silbert NNP
+Redbirds NNP
+Etienne-Emile NNP
+Cowbird NNP
+tread VB NN
+bioresearch NN
+Aziza NNP
+network-owned JJ
+Shipman NNP
+Trim-your-own-franks VB
+dozen NN CD
+drought-stricken JJ
+manifesting VBG
+cultivating VBG
+Connecticut NNP NN
+pears NNS
+hardtack-box NN
+carcinogen NN
+cove NN
+assertedly RB
+upkeep NN
+NBC NNP
+Theology NNP
+Mantle NNP NN
+tight-fisted JJ
+Israelis NNPS NNS
+elevator NN
+waves NNS
+Self-designated JJ
+cringing VBG JJ
+sighted VBN VBD
+resuming VBG
+anti-Bork JJ
+Constructors NNPS
+deciding VBG JJ
+surveys NNS VBZ
+connotations NNS
+CMK NNP
+raiment NN
+undergone VBN
+tickets NNS
+Budget NNP NN
+MacGregor NNP
+creeps VBZ
+trio NN
+thrift-bailout JJ NN
+Ellsaesser NNP
+cheetah NN
+Neveu NNP
+Establish VB
+Sun-Times NNP
+glibly RB
+Picchi NNP
+non-banking JJ
+steamroller NN
+leading VBG JJ|VBG VBG|JJ JJ NN
+combatant JJ NN
+inner-ear JJ
+blue-draped JJ
+bridging VBG JJ
+canvas NN
+Netherlands NNP NNPS
+meanders VBZ
+toys NNS VBZ
+snobbishly RB
+proboscis NN
+Viewed VBN
+Allah NNP
+reactants NNS
+payment NN
+Zhong NNP
+AG NNP
+resiny JJ
+occurring VBG
+pertussis NN
+throw VB VBP NN
+rampancy NN
+drinkers NNS
+Martin NNP
+tricks NNS VBZ
+charming JJ
+SP1-plus JJ
+expansively RB
+Soaring VBG
+monic JJ
+silly JJ NN RB
+conjectures NNS VBZ
+ills NNS
+admissions NNS
+Parizeau NNP
+tucking VBG
+life-cycle JJ
+Dargene NNP
+Diet NNP
+internist NN
+enclaves NNS
+Clare NNP
+propitiate VB
+Emporium NNP
+Eurokitsch NN
+vertebrae NNS
+terra-cotta-colored JJ
+maximizing VBG
+worsted JJ NN
+lignite JJ NN
+brother-in-law NN
+newscasts NNS
+developing VBG JJ NN
+Cementing VBG
+pessimistic JJ
+neurotransmitter NN
+uncover VB
+half-digested JJ
+four-point JJ
+briefer JJR
+reeling VBG
+Desire NN
+Clapp NNP
+Secretary NNP NN
+aerial JJ
+July NNP
+tarnish VB
+Askin NNP
+McQuillan NNP
+Clavier NN
+allegoric JJ
+A.S. NNP
+Candide NNP
+money NN
+Lampoon NNP
+outriggers NNS
+poster-sized JJ
+Masahiko NNP
+blockbuster NN JJ
+signal-to-noise JJ NN
+Mesa NNP
+Construct VB
+hand-crafted JJ VBN
+Manila NNP
+inevitably RB
+compartments NNS
+ridership NN
+invade VB VBP
+stair NN
+Baxter NNP
+Friedberg NNP
+nonperformers NNS
+bombproof NN JJ
+prescribe VB VBP
+Replace VB
+Dominion NNP
+diseases NNS
+rivals NNS VBZ
+semi-celebrities NNS
+slavered VBD
+hand-carried VBN
+miniwelfare JJ
+Brian NNP
+carbonyl NN
+re-insure VB
+I-75 NN
+Slay VBP
+Bipartisan JJ
+culture-Protestantism NN
+Comus NNP
+impunity NN
+gunmetal-gray JJ
+Acheson NNP
+Courtier NNP NN
+Chance NN NNP
+Kyne NNP
+Cautious JJ
+gripes NNS VBZ
+cavemen NNS
+domestically RB
+hatchback NN
+evaded VBN VBD
+jounce NN
+titanic JJ
+Digi NNP
+Babcock NNP
+control NN JJ VB VBP
+flickered VBD VBN
+guzzle VB
+Oesterreichische NNP
+wastebasket NN
+Affected VBN
+madam NN
+realer JJR
+mink NN
+riddance NN
+luxurious JJ
+bubble NN VBP VB
+Zitin NNP
+impeachment NN
+Spaull NNP
+hallucinating VBG
+wellplaced JJ
+disconcerting JJ VBG
+Rinat NNP
+provisions NNS
+munches VBZ
+Herbert NNP
+Bankrupty NNP
+child-rearing NN
+Faithful NN
+doper NN
+Wrote VBD
+Danske NNP
+flutes NNS
+Hegel NNP
+harvests NNS
+Steamed VBN
+fondest JJS
+Yemens NNPS
+digestive JJ
+alteration NN
+Steelmaking NN
+textures NNS
+Revson NNP
+non-alcohol JJ
+Bermudez NNP
+Mitterrand NNP
+collecting VBG NN
+Miltonic JJ
+small-city NN
+lent VBD VBN
+M.T. NNP
+Thiot NNP
+comported VBD
+Irrawaddy NNP
+STRUCK VBD VBN
+Elinsky NNP
+Satterfield NNP
+Heel-Betty NNP
+AHSC NNP
+Tri-Star NNP
+literalism NN
+strangers NNS
+Hasbrouk NNP
+ante-bellum FW JJ NN
+demoralize VB VBP
+Elbaum NNP
+hairdresser NN
+A-310-300 NN NNP
+noblest JJS
+Haverfield NNP
+secularists NNS
+other JJ NN
+threshold NN
+tribute NN
+Blame VB
+desk-top JJ
+misrelated VBN
+Siva NNP
+encoded VBN
+Tetanus NN
+go-go-go NN
+Creates VBZ
+Govett NNP
+conventional-type JJ
+CarCool NNP
+Gribbin NNP
+Brown NNP JJ
+package-design NN
+incumbency NN
+subdivision NN
+medication NN
+Storekeepers NNS
+Cru NNP
+ciliates NNS
+continuity NN
+perceptual JJ
+directivity NN
+fourteen-year-old JJ
+astir JJ
+electroplating NN
+yearlong JJ
+English-speakers NNS
+sneaks VBZ
+misbehaving VBG
+czars NNS
+bodybuilding NN
+gorillas NNS
+textile NN JJ
+her PRP$ PRP PRP$R
+Internet NNP NN
+Product NNP NN
+D8 CD
+Resting VBG
+Dinner NN
+credit-ratings NNS
+tidying VBG
+farm-product NN
+ruffled VBN JJ VBD
+BEEN VBN
+jocularly RB
+Lesutis NNP
+politicians NNS
+handbooks NNS
+Doi NNP
+C.K. NNP
+beet NN
+motion-control NN
+slyly RB
+Gutfreunds NNPS
+Goldwin NNP
+Ph. NNP NNPS NN
+flexers NNS
+Employers NNS NNP NNPS
+rekindle VB
+McCoy NNP
+Excuse VB
+soul-searching NN
+maladjustments NNS
+Kellner NNP
+seminarians NNS
+eight-page JJ
+Sylmar NNP
+condos NNS
+bank-fraud NN JJ
+rustlings NNS
+chit NN
+jumbos NNS
+hot-blooded JJ
+spatially RB
+Credibility NN NNP
+Lamentation NNP
+Cumberland NNP
+Accountants NNPS
+Commander-in-Chief NNP
+Stidger NNP
+unaffected JJ
+elbow NN
+faster-spending JJ
+Outperform NNP
+frustrations NNS
+film-makers NNS
+paneled JJ
+regimented VBN JJ
+recluse NN
+quota-trained JJ
+overworked VBN JJ
+Tobias NNP
+footlights NNS
+Toshimitsu NNP
+Regardless RB
+overpopulation NN
+Begelman NNP
+gardenias NNS
+Lyubov NNP
+parsimonious JJ
+Bravado NNP
+decoys NNS
+end-to-end JJ
+Zealand NNP
+nourish VB
+weeding VBG
+Bostian NNP
+impressionists NNS
+Squatting VBG NNP
+blow NN VB VBP
+Champagne NNP NN
+Roadway NNP
+Ditka NNP
+ornaments NNS VBZ
+Third NNP JJ LS RB
+Curl NNP
+char-grilled JJ
+MONEY NN NNP
+Elijah NNP
+HERITAGE NNP
+Hardshell NNP
+Pavane NNP
+Feigenbaum NNP
+cautioning VBG
+Refsnes NNP
+horns NNS
+trip NN VB
+Wray NNP
+treadmills NNS
+giant NN JJ
+meek-mannered JJ
+polysilicon NN
+silica NN
+Antonia NNP
+parametric JJ
+Promotion NNP NN
+Clearing NNP
+face-to-wall RB
+Predicting VBG
+roadster NN
+deceives VBZ
+Colucci NNP
+cardinals NNS
+take-off NN
+unwarranted JJ
+Oxfordshire NNP
+Late RB JJ NNP
+bobbed VBD
+twinkling VBG NN
+Sabreliner NNP
+proliferating VBG
+showed VBD VBN
+Hatchett NNP
+examinin VBG
+S&P NNP NN
+CML NNP
+arteriolosclerosis NN
+high-mounted JJ
+deviate VB
+Fearing VBG
+mail NN VB VBP
+connects VBZ
+Smokies NNPS
+rubbing VBG NN
+stones NNS
+endeavoring VBG
+clear-channel JJ NN
+Affidavits NNS
+tax-anticipation JJ NN
+flapper NN
+commonwealth NN
+worthless JJ
+Necci NNP
+Feathertop NNP
+superconductors NNS
+Eward NNP
+stings NNS
+state-law NN
+F. NNP NN
+nightdress NN
+diaper NN
+Support NNP NN
+splendor NN
+complicates VBZ
+Utah NNP
+canine JJ NN
+Dieu FW
+nights NNS
+reconsidered VBN VBD
+Drug-Treatment JJ
+inch NN RB VB
+fluoride NN
+essences NNS
+flak NN
+Alsing NNP
+pro-independence JJ
+RISC NNP
+restricts VBZ
+disparage VB
+admiring VBG
+uniformity NN
+constancy NN
+lighten VB
+scrap NN JJ VB
+biochemist NN
+Gastronomy NNP
+tornadoes NNS
+myopic JJ
+pseudophloem NN
+attuned VBN JJ
+Bake NNP VB
+Warrants NNS
+verdict NN
+bottom-line JJ
+E.C. NNP
+eulogized VBD
+touted VBN VBD
+vetoed VBD VBN
+Anti-recession NN
+honorable JJ NN
+cabdriver NN
+thirteen-year-old JJ
+homemade JJ
+throwaway JJ
+Speer NNP
+squirreling VBG
+HUD-subsidized JJ
+Sturdy JJ
+DiVarco NNP
+sprung VBN
+Phamaceuticals NNPS
+products... :
+Loughlin NNP
+Help VB NN
+twenty-fifth JJ
+Helfman NNP
+snarling VBG
+smolder VBP
+toothpastes NNS
+Kumagai NNP
+seeks VBZ
+Killion NNP
+christening NN
+D.C.-based JJ
+rioted VBD
+projected VBN JJ VBD
+popularly RB
+blouses NNS
+consanguineously RB
+Krat NNP
+selves NNS
+childishly RB
+estuary NN
+Guardian NNP
+conduit NN
+Eugenia NNP
+hilly JJ
+great-quality NN
+loin NN
+ex-FDA JJ
+Sans NNP FW
+drawin VBG
+TPA NNP
+agglutinin NN
+photofloodlights NNS
+Patchen NNP
+Abyssinians NNPS
+Meps NNP
+poisons NNS VBZ
+Release NNP NN VB
+Jewett NNP
+despues FW
+Cagliari NNP
+Sonet-compatible JJ
+Admassy NNP
+miscreants NNS
+down-payment NN
+Acustar NNP
+conscientious JJ
+tormenting VBG
+sluice NN
+bridled VBN
+nickeling VBG
+sell VB VBP JJ NN
+watcher NN
+blues NNS JJ
+free-spirited JJ
+less-than-carload JJ
+dehydrated JJ VBN
+blinked VBD
+against IN
+quintillion CD
+stucco NN
+rednecks NNS
+Flashlight NN
+concerted JJ VBN
+Heineken NNP
+Fast-food NN
+Remus NNP
+Kroger NNP
+spaceship NN
+excess JJ NN
+NETWORK NN
+Blitz NNP NN
+pounded VBD VBN
+Broyd NNP
+bond-market JJ
+aristocracy NN
+Pasternack NNP
+arms-making NN
+instrumental-reward JJ
+Greenock NNP
+fancying VBG
+half-block NN
+Johanna NNP
+indecency NN
+Bonavia NNP
+drag-down JJ
+blotting VBG
+alkaline JJ
+indignation NN
+nonoccurrence NN
+airframes NNS
+rigids NNS
+hyperbolic JJ
+eraser-fitted JJ
+Evaluations NNS
+Moody NNP JJ NN
+grand-looking JJ
+fictitious JJ
+inflation-adjusted JJ CD
+Scandinavia NNP
+stricken VBN JJ
+Oncogene NNP
+Unfriendly JJ
+epic NN JJ
+Coda NNP
+aureus NN
+Aggregate JJ
+contorted JJ
+uninitiated JJ
+outdistancing VBG
+exposure... :
+physicalness NN
+pier-table NN
+embargoes NNS
+divorced VBN JJ VBD
+dejection NN
+Sufficient JJ
+fulminate VB
+ordere VBN
+Pautsch NNP
+fresh-ground JJ
+CRAY NNP
+redraw VB
+fingered VBD VBN
+denoting VBG
+tapers VBZ NNS
+speedometer NN
+wharf NN
+meddling VBG NN
+semi-isolated JJ
+Gann NNP
+Verses NNS NNPS
+window NN
+fathers NNS
+market-ready JJ
+crows NNS VBZ
+dozing VBG
+Aspercreme NNP
+well-founded JJ
+revolt NN
+exultantly RB
+ExploiTech NNP
+duplex NN JJ
+acetylene-fueled JJ
+analyticity NN
+Customized JJ
+schools NNS
+steeped VBN
+reining VBG
+serloin NN
+grandstanding VBG NN
+ketosis NN
+Interlink NNP
+Jewelry NN
+SRS NNP
+Intecknings NNP
+biting VBG JJ
+reefs NNS
+trappings NNS
+Edge NNP NN
+parishioners NNS
+Nairobi NNP
+rangers NNS
+Californians NNS NNPS
+subway NN
+dollars-and-cents NNS
+Handstands NNS
+fruit-flavored JJ
+RAND NNP
+conjoined VBN
+securities NNS
+sure-sure NN
+Bapilly NNP
+gimmicky JJ
+Herculean JJ
+complimenting VBG
+Gasch NNP
+plain-clothesmen NNS
+stockings NNS
+Castro-held JJ
+wagged VBD
+Procardia NNP
+drift NN VBP VB
+Riad NNP
+traitorous JJ
+interest-subsidy NN
+Katanga NNP
+Constantinople NNP
+realist NN
+pulls VBZ NNS
+Nucci NNP
+commutation NN
+SCRAP VBP
+steamer NN
+fords NNS
+non-authoritative JJ
+dualism NN
+Buckra NNP
+Rubenstein NNP
+Arraignment NN
+cost-effectiveness NN
+romantics NNS
+plywood NN
+Datacomputer NNP
+Coldwater NNP
+warm JJ VB
+Katow NNP
+O'Dwyers NNPS
+Helpless NNP JJ
+(9/9 1991)
+Coiffet NNP
+backyard NN
+outpatient NN JJ
+mixing VBG NN
+mimimum NN
+Nugent NNP
+garrison NN VB
+place-kicker NN
+unwritten JJ
+Clurman NNP
+roaming VBG NN
+negated VBN VBD
+Bonomo NNP
+sleeves NNS
+SEEKS VBZ
+Brasiliaaircraft NNP
+rectitude NN
+Universal-Rundle NNP
+Receptech NNP
+graphs NNS
+RANSOM NNP
+Kasper NNP
+downing VBG
+discusses VBZ
+categorized VBN
+premium NN JJ|NN JJ
+Gosheim NNP
+crucified VBD VBN
+pin NN VBP VB
+improper JJ
+Kors NNP
+Kline NNP
+WHIRLPOOL NN
+anti-Communists NNPS
+Australites NNS
+snowstorm NN
+Cosmopolitan NNP
+Carriages NNS
+arsines NNS
+Fifty-two JJ
+Joann NNP
+villagers NNS
+screens NNS VBZ
+Harpers NNP
+Epplers NNP
+Hargett NNP
+Southampton NNP
+summaries NNS
+sulfurous JJ
+Fultz NNP
+Dana-Farber NNP
+broth NN
+Wattley NNP
+Stapleton NNP
+Devices NNPS NNP NNS
+Gunny NNP
+BOD1,000 NN
+induced VBN VBD
+Skim JJ
+Dallas-Fort NNP
+twotiered JJ
+Specific-Time NNP
+diligent JJ
+celluloses NNS
+BLUES NNPS
+differentiable JJ
+Strictly RB
+olives NNS
+prosodies NNS
+DHL NNP
+Elle NNP
+Whip NNP
+Brice NNP
+Electromyography NN
+payroll NN
+celebration NN
+Peregrine NNP
+Jessey NNP
+ramp NN VB
+broad-based JJ
+harness-emotions JJ
+exhaustible JJ
+anti-psychotic JJ
+disowned VBD VBN
+Democracy NNP NN
+cubed VBN
+watches NNS VBZ
+frise FW
+Proprietorships NNP NNS
+polymerization NN
+conveys VBZ
+Usha NNP
+Calvi NNP
+assignments NNS
+brightly RB
+serpentine JJ
+guardedness NN
+uncounted JJ
+union-busting JJ
+Meltzer NNP
+home-state JJ
+Guar JJ
+opposing VBG JJ
+Acceptance NNP NN
+Nicaraguan JJ NNP
+divorcee NN
+pretends VBZ
+Wilton NNP
+demanded VBD VBN
+interoffice JJ
+A-300-600 NNP
+Flugdienst NNP
+bongo NN
+entry NN
+Kellwood NNP
+immeasurably RB
+peaking VBG NN
+plainly RB
+quickstep NN VBP
+uncertainty NN
+goddamn UH VBN JJ
+Determining VBG
+Corroon NNP
+Andrus NNP
+constrictions NNS
+Sant NNP
+Gignoux NNP
+east-to-west RB
+Franny NNP
+COB NNP
+less-cyclical JJ
+super JJ FW
+Pacheco NNP
+Ridpath NNP
+Swisher NNP
+Wachtell NNP
+interpretative JJ
+concierge NN
+Pack VB NNP
+Interruptions NNS
+concur VBP VB
+Forces NNPS NNP NNS FW VBZ
+unleaded JJ
+wearing'kick VB
+Vrilium NNP
+overstepping VBG
+crisis-response JJ
+profitting VBG
+rendered VBN VBD
+breadbox NN
+handguns NNS
+Mamma NNP
+cohort NN
+known VBN JJ
+Probhat NNP
+junction NN
+near-hysteria NN
+Stapf NNP
+differentiate VB VBP
+sixty-five CD JJ
+well-deserved JJ
+Keizai NNP
+homemakers NNS
+disassociated VBD
+demoralizing VBG
+recklessly RB
+inexperience NN
+Staloff NNP
+air-to-surface JJ
+helion NN
+Alfons NNP
+Burkina NNP
+slightly RB
+fifth-least JJ
+Explaining VBG
+spring-early JJ
+Rivera NNP
+Nursery NNP
+occurred VBD VBN
+Hinman NNP
+Callum NNP
+telescope NN VB
+price-consciousness NN
+less-expensive JJ JJR
+Tommie NNP
+cordon FW NN
+ails NNS VBZ
+often-repeated JJ
+em PRP
+senators NNS
+with-it JJ
+Lexington NNP NN
+assassinations NNS
+moment NN
+wifely JJ
+wash NN VBP JJ VB
+defining VBG
+Modell NNP
+c'n VB
+memorize VB VBP
+communitarians NNS
+booking NN VBG
+arises VBZ
+glass-strewn JJ
+private-eye NN
+cadet NN
+Fuming VBG
+thumbing VBG
+swooning NN
+one-newspaper JJ
+repeals VBZ
+cathoderay NN
+non-Castilians NNPS
+Rubins NNS
+scriptwriters NNS
+burdensome JJ
+Muammar NNP
+Peasant NNP
+loaned VBN VBD
+loosely-taped JJ
+descent NN
+Bathar-on-Walli NNP
+policy-making JJ NN VBG
+extrapolation NN
+blood-cell NN
+Ours PRP
+Chippendale NNP
+conjugating VBG
+Anjelica NNP
+Drill VB NN
+moon-round JJ
+cots NNS
+Imhoff NNP
+elder JJR JJ NN JJ|JJR
+rivaling VBG
+Strokes NNS
+media-conscious JJ
+fitted VBN VBD JJ
+democracy-free JJ
+medium-sized JJ
+unilateralists NNS
+country-squirehood NN
+bambino NN
+studded VBN
+smirk NN VB
+rendition NN
+Bowing VBG
+chattered VBD
+joiner NN
+unenviable JJ
+shipwreck NN
+mononuclear JJ
+filter NN VB
+stanza-form NN
+--has VBP
+haircut NN
+enquired VBD
+breakables NNS
+married-couple JJ NN
+beaten VBN JJ
+Existentialists NNS
+interclass JJ
+eggs NNS
+out-of-alignment NN
+number NN VB VBP
+misreading NN
+ferociously RB
+imperfect JJ
+Belgique NNP
+DIG NNP
+Grauer NNP
+Unimpressed JJ
+picayune JJ
+tartare NN
+nonconformists NNS
+transformer NN
+Yeung NNP
+rank NN VBP JJ VB
+post-Barre JJ
+living-room NN
+explains. VBZ
+laid-back JJ
+Storehouse NNP
+rite NN
+Refsum NNP
+Candlestick NNP
+bank-debt NN
+minting VBG
+killer NN
+overbid VBD VB
+Bala NNP
+Johnstown NNP
+gambit NN
+uniformed JJ
+Schulz NNP
+Ended NNP
+multi-column JJ
+photo-offset JJ
+teletype NN
+low-rated JJ
+measures NNS VBZ
+tensely RB
+Kaixi NNP
+Fei NNP
+backlog NN
+thereof RB
+C.D.s NNS NNPS
+double-A-1 JJ NN
+PROFIT NN
+Ngo NNP
+beachfront NN JJ
+robberies NNS
+caning NN
+highroad NN
+warn VB VBP
+Jenner NNP
+high-net-worth JJ
+counter-measures NNS
+complement NN VBP VB
+backpackers NNS
+A-B NNP
+boutique-store NN
+documentaries NNS
+Philco-sponsored JJ
+spindle NN
+top-tier JJ
+signer NN
+DOLLAR'S NN
+deprecatory JJ
+Cilluffo NNP
+Petitio NNP
+Harburg NNP
+homeowner NN JJR
+envelopes NNS
+shift NN VB VBP
+accidents NNS
+decently RB
+herpetologist NN
+LABORATORIES NNP
+overstatement NN
+expectation NN
+powerhouse NN
+non-service-connected JJ
+cosy JJ
+unloads VBZ
+Lighted VBN JJ
+Mechanisms NNPS
+yardstick NN
+KRC NNP
+hike NN VB
+MultiMedia NNP
+leaden JJ
+Dazed JJ
+Jessie NNP
+high-powered JJ
+caliche-topped JJ
+tax-preparation NN
+unquiet JJ
+Ritchie NNP
+Jeff NNP
+--China NNP
+reports NNS VBZ
+Mentality NN
+Liza NNP
+Shoemaker NNP
+Smithtown NNP
+Finsilver NNP
+tissue-transplant JJ
+indubitable JJ
+sun-tan JJ
+main JJ NN
+confectionary JJ
+Postelle NNP
+senior JJ NN
+plainest JJS
+cutlets NNS
+Venice NNP
+'Okay UH
+Shipley NNP
+trading-oriented JJ
+disaster-subsidy JJ
+avenue NN
+Arhat NNP
+food-packaging JJ
+cheetal JJ
+Chipping VBG
+Poltawa NNP
+Loyal JJ
+Wames NNP
+lawmakers NNS
+commentators NNS
+Yaniv NNP
+concessions NNS
+FLAG NN
+spear NN VB
+Burnsides NNPS
+gooshey JJ
+pithy JJ
+Guterman NNP
+RISE NN
+risk NN VBP VB
+punch NN VBP VB
+wristwatches NNS
+Issues NNS NNP NNPS
+efficiency NN
+Encylopedia NN
+Jeffersonians NNPS
+cheeses NNS
+crabmeat NN
+Roderick NNP
+bedrock NN
+Litowski NNP
+corroborated VBD VBN
+disseminating VBG
+guts NNS
+Voute NNP
+toilets NNS
+car-crash JJ
+Park-affiliated JJ
+coiling VBG
+Warmongering VBG
+enrichment NN
+sometimes-aggressive JJ
+Newbridge NNP
+merry JJ
+Cabernets NNPS
+colo-rectal JJ
+roasts NNS
+pig-drunk JJ
+Fulcrum NNP
+Mandhata NNP
+Keeling NNP
+discount-retailing NN
+Aerojet NNP
+companions NNS
+high-mindedness NN
+bribing VBG
+Swadesh NNP
+undergarment NN
+stride NN VBP VB
+gendarme NN
+breakfasts NNS
+Oat NNP
+tile NN
+Uses NNS
+sense NN VBP VB
+DM2,000 CD
+Dada NNP
+Ecumenical NNP JJ
+expelling VBG
+originated VBD JJ VBN VBP
+Perken NNP
+Kirschner NNP
+Straight-Arm NNP
+CICS NNP
+Tarmac NNP
+Burdines NNPS
+Sorry JJ UH
+lay-sisters NNS
+heifers NNS
+brevity NN
+Steinbeck NNP
+double-A-2 NN JJ
+spittle NN
+Kamal NNP
+picketed VBD VBN
+incendiaries NNS
+fetish NN
+Boston NNP
+unattractive JJ
+disciplining VBG
+decay NN VB
+upholders NNS
+latecomers NNS
+molecules NNS
+widens VBZ
+Cozen NNP
+stale JJ
+foreclosures NNS
+sherbet-colored JJ
+vote NN VB VBP
+renegotiate VB
+maht MD
+E5 NNP
+fishers NNS
+Brokers NNS NNP NNPS
+Fruit NNP NN
+soothed VBD
+classification-angle JJ
+TNN NNP
+Interfunding NNP
+strikers NNS
+Aoki NNP
+Budzyn NNP
+telephoning VBG NN
+cost-raising JJ
+APPROVED VBD
+Launder-Ometer NNP
+Eder NNP
+betting VBG NN
+rocked VBD VBN
+three-room JJ
+upper JJ JJR RB
+gamble NN VB
+solidity NN
+Monogram NNP
+Celie NNP
+advisability NN
+Rundfunkchor NNP
+asbestos-removal NN JJ
+onetime JJ
+economists NNS
+Kitchin NNP
+messes NNS
+sun-parched JJ
+BANCORP NNP
+retains VBZ
+Stouffer NNP
+advertisements NNS
+accents NNS VBZ
+inappropriate JJ
+non-mega JJ
+Racial JJ
+thigh-bone NN
+black-bearded JJ
+Account NNP NN
+smallest JJS
+Usinor NNP
+headaches NNS
+Subs NNP
+Belfast NNP
+ideologist NN
+unremarkable JJ
+food-importing JJ
+Scientists NNS NNP
+gods NNS
+Mannerhouse NNP
+Niche-itis NN
+kiwi NN
+pharmaceutical JJ NN
+saloons NNS VBZ
+never-predictable JJ
+pocketed VBD VBN
+ludicrousness NN
+Bathurst NNP
+free-floater NN
+seismographic JJ
+Frame NN
+Lyttleton NNP
+boom-boxes NNS
+ex-partners NNS
+non-farm JJ
+co-signed JJ
+Sociological JJ
+byproducts NNS
+Coat NNP
+artfulness NN
+Papua-New NNP
+Kelsey NNP
+abandon VB NN VBP
+quickest JJS
+PAUL NNP
+NutraSweet NNP
+Rilly NNP
+italicized VBN
+far-famed JJ
+novelty NN
+Stickers NNS
+apoplectic JJ
+Profile NN
+Institutio NNP
+sociologist NN
+perspectives NNS
+Repeating VBG
+remarks NNS VBZ
+makeshift JJ NN
+sortie NN
+public-policy NN JJ
+nameless JJ
+blockages NNS
+inherits VBZ
+Forney NNP
+Defects NNPS NNP
+Watterson NNP
+Joseph NNP NNPS
+vacuum-formed JJ
+Takimura NNP
+tape-product NN
+shields NNS
+Birdwhistell NNP
+Lars NNP
+banal JJ
+hurrying VBG JJ
+burlesque JJ
+gymnast NN
+drunkards NNS
+bed-hopped VBD
+reacquisition NN
+wryly RB
+thine JJ
+balks VBZ
+en IN FW RB
+congruence NN
+salubrious JJ
+Blanc NNP
+heat-and-eat JJ
+vide FW
+whereby WRB
+interior-construction NN
+Loney NNP
+VCR NNP NN NNS
+Wyly NNP
+Waldorf NNP
+Selwyn NNP
+Nadeau NNP
+ingloriously RB
+Shoppers NNS
+cost-containment NN JJ
+HENRI NNP
+fledglings NNS
+flushing NN VBG
+FALL NN
+graffiti NN
+redistributionism NN
+semi-local JJ
+exodus NN
+double-A-3 JJ
+alphabetized VBD VBN
+Tiepolo NNP
+distinctively RB
+gasping VBG
+alternative NN JJ
+lower-priced JJ
+Mazzone NNP
+CAAC NNP
+April NNP
+coaxed VBN VBD
+roadrunner NN
+archangels NNS
+clang NN
+anomalous JJ
+requisites NNS
+diapiace FW
+ubiquitous JJ
+Interlocking VBG
+Culbertson NNP
+devoted VBN VBD JJ
+articulation NN
+dishonestly RB
+value-added JJ
+Odom NNP
+Doubleday NNP
+establshed VBN
+plotters NNS
+cracker NN
+behemoths NNS
+Increasing VBG JJ|VBG
+stand-in NN
+J.H. NNP
+Leschly NNP
+tris NNS
+abused VBN JJ VBD
+facetious JJ
+wind-and-water JJ
+newly-emerging JJ
+doubtlessly RB
+expenses NNS
+drug... :
+Pattisson NNP
+redundancies NNS
+gather VB VBP
+snowfall NN
+Claims NNPS NNP NNS
+Donut NNP
+Briar NNP
+App. NNP
+Camping NN
+complaisance NN
+Soweto NNP
+cooled VBN JJ VBD
+BE VB
+Atlas-Centaur NNP
+Globaliztion NN
+Pro-forma JJ
+Leather NNP
+refraction NN
+Expanded VBN
+facet-plane NN
+proliferation NN
+forge VB VBP NN
+Wynn NNP
+molehill NN
+Ont. NNP
+oz. NN
+quitting VBG
+Odd NNP
+apparel NN VB
+hawk-hunting JJ
+Leverage NN
+state-private JJ
+Angus NNP
+museum NN
+'13 CD
+Weisman NNP
+data-gathering JJ
+farces NNS
+ginning NN
+Infighting NN
+heroin-user NN
+Preoccupied VBN JJ
+antiseptic JJ NN
+ex-prison NN
+begrudge VB
+Marshalls NNP
+self-funding NN
+two-season JJ
+Innuendos NNS
+knowingly RB
+culprits NNS
+large-enough JJ
+Psyllium NN
+amazingly RB
+Praise NN
+Coping VBG
+pre-festival JJ
+visually RB
+confer VB VBP
+persistence NN JJ
+overthrown VBN
+grand JJ
+unfortunate JJ NN
+Veiling VBG
+Hague NNP
+Extractor NN
+puke NN
+totalled VBD VBN
+NCTA NNP
+House-floor JJ
+less-creditworthy JJ
+Most-Remarkable JJS
+Raising VBG NNP
+winding VBG JJ NN
+sweep NN VB
+Mondschein NNP
+topiary JJ
+demi-monde FW
+confuse VB VBP
+pip UH NN
+Kozintsev NNP
+Jellison NNP
+FM12.6 CD
+furtive JJ
+literal-minded JJ
+Provident NNP
+brushoff NN
+enamelled JJ
+orientations NNS
+Unspeakable JJ
+treehouse NN
+shelled VBD VBN JJ
+Club NNP NN
+Bader NNP
+Cobo NNP
+diminishes VBZ
+Stans NNP
+coal-railroad NN
+Gloversville NNP
+program NN VBP VB
+torts NNS
+ribbon NN
+now-obscure JJ
+rejoins VBZ
+slow-firing JJ
+islander NN
+lighter JJR RBR NN
+Acton NNP
+Boyer NNP
+Noting VBG
+Poorest JJS
+RTRSY NNP
+asteroids NNS
+church-supported JJ
+championing VBG
+teamster NN
+Irma NNP
+big-selling JJ
+lacerations NNS
+indulgent JJ
+fisheries NNS
+Whereas IN WRB
+Schellke NNP
+moderating VBG JJ
+uncharacteristically RB
+bolt-action JJ
+Torrio NNP
+EXCHANGE NN
+Stennis NNP
+breaks NNS VBZ
+overprotective JJ
+Euro-banners NNS
+in-state JJ
+swelled VBD VBN JJ
+sizeable JJ
+kibbutz-made JJ
+--since IN
+ileum NN
+trawl NN
+Bidermann NNP
+chanter FW
+Vagabonds NNPS NNP
+Cheil NNP
+Accumulation NNP
+Ethernet NNP
+synchronous JJ
+berry NN
+mailboxes NNS
+crystallographic JJ
+Meryl NNP
+BALKS VBZ
+doxepin NN
+zig-zag VBP
+Wanniski NNP
+jury-rigged VBD
+sloop NN
+untrustworthiness NN
+pretexts NNS
+Micawber NNP
+Hartung NNP
+Kuhns NNP
+inflation\/deflation NN
+kelly\ NNP
+Retails NNS
+implication NN
+stickiness NN
+vertebral JJ
+Eckenfelder NNP
+strangest JJS
+Fritz NNP
+celery NN
+misconstrued VBN
+tangoed VBD
+straddling VBG
+nameplates NNS
+neck-deep JJ
+Horry NNP
+Murguia NNP
+compensating VBG
+dealer-community JJ
+non-credit JJ
+Zimbalist NNP
+DesRosiers NNP
+tongue-twister NN
+Death NN NNP
+Henh UH
+Second-highest JJ
+good-till-canceled JJ
+marshaling VBG
+Clendenin NNP
+stranded VBN VBD
+Gymnasium NNP
+basked VBD
+Hatch NNP
+sentencings NNS
+cadmium NN
+Television-Electronics NNP
+easy-to-use JJ
+lashing VBG NN|VBG
+Landis NNP
+'War NNP
+passenger-loading JJ
+residence NN
+picketing NN VBG
+--with IN
+tearing VBG
+conforming VBG
+populated VBN JJ VBD
+queens NNS
+DeGeurin NNP
+locals NNS
+narrowness NN
+Characters NNS
+needless JJ
+self-locking JJ
+atheromatous JJ
+Quotron NNP NN
+statesmanship NN
+tamper-resistant JJ
+Mariana NNP
+volume-based JJ
+critically RB
+Compassionately RB
+Vision NNP
+straddle VB
+pension-insurance JJ
+noradrenalin NN
+Kanjorski NNP
+solemnly RB
+Millstone NNP
+cholesterol-rich JJ
+consummated VBN VBD
+name-droppers NNS
+Toomey NNP
+rebelled VBD VBN
+send VB VBP
+Bland JJ
+Poconos NNPS
+Burgess NNP
+misanthrope NN
+exception NN
+devotee NN
+realigning VBG
+RBSPr NNP
+Rimmer NNP
+Himalayan JJ
+Malesherbes NNP
+BEER NN
+brooked VBD
+sprightly JJ
+Mercantilists NNS
+Heerden NNP
+givin VBG
+Dupont NNP
+waiting VBG NN JJ
+Leisure NNP NN
+ordinary JJ NN
+Purification NN NNP
+pensions NNS
+Sambuca NNP
+bondholdings NNS
+Complete JJ NNP VB
+Regal NNP
+Savory JJ
+heroine NN
+EBS NNP
+commander NN
+nursed VBD
+deflect VB
+metaphorical JJ
+defendant NN
+Seger NNP
+plateau NN
+W/NNP.R.G. NNP
+crusaders NNS
+Eddy NNP
+Lipps NNP
+prototypes NNS
+thou PRP
+stevedore NN
+pervades VBZ
+Correct JJ
+slumbered VBD
+GRAND JJ NNP
+Hatred NN
+excursion NN
+cultivation NN
+precluded VBD VBN JJ
+Bldg. NNP
+Lebans NNP
+condemning VBG
+Champassak NNP
+firm NN JJ VB
+determinants NNS
+Tarrytown NNP
+beguiling JJ
+sorority NN
+nebulous JJ
+Colton NNP
+warp NN
+slaughtered VBN VBD
+Middle NNP NNPS JJ NN
+unfixed JJ VBD
+NAM NNP
+capabilities NNS
+Bait NNP
+Rushall NNP
+Onsets NNS
+Marietta NNP
+Leamington NNP
+Horst NNP
+routines NNS
+shortlived JJ
+eeriness NN
+refiners NNS
+servile JJ
+ozone-depleting JJ
+Older JJR NNP JJ
+Milenoff NNP
+UTLs NNS
+burgeoned VBD VBN
+Small JJ NNP
+scours NNS NN
+moxie NN
+Hurricanes NNPS
+Michaels NNP NNS
+safari NN
+Wires NNS
+Installation NN NNP
+cassette NN
+piqued VBN
+Skiway NNP
+employment-tax JJ
+NCB NNP
+Down IN VB NNP
+Seeing VBG NNP
+Erosion NN
+neocortical-hypothalamic JJ
+verbatim RB JJ
+myn PRP$
+motioning VBG
+Telford NNP
+tax-avoidance JJ NN
+Alceste NNP
+Aston NNP
+Skip VB NNP
+backstop NN VB
+Ruffo NNP
+Steamboat NNP
+RANDELL NNP
+Pigs NNPS NNP
+firebombing NN
+members. NN
+Political-Military NNP
+Wilkes-Barre NNP
+Sarandon NNP
+Corrective JJ
+BENTSEN NNP
+Swavely NNP
+excutives NNS
+stamps NNS
+intemperance NN
+phosgene NN
+suicidal JJ
+Spinrad NNP
+repealing VBG
+Folded NNP
+Cry NN NNP
+Armageddon NN NNP
+Westcoast NNP
+A-D NNP
+growths NNS
+attendent NN
+hinders VBZ
+Friede NNP
+organizer NN
+Schabowski NNP
+rotating VBG
+candy NN
+incinerators NNS
+favored VBN VBD JJ
+creepy JJ
+Intensification NN
+Grandeur NN
+Kaman NNP
+fists NNS
+specialized-engineering JJ
+hev VB
+software-installation NN
+Baskets NNS
+Roos NNP
+Tenn NNP
+Lanvin-owned JJ
+Clouds NNP
+Hillyer NNP
+Properly RB
+Gustavus NNP
+sensitive-area NN
+inhabitants NNS
+Dom NNP
+Pozzatti NNP
+long-standing JJ
+riverboat NN
+coup NN FW
+Ahah UH
+prodigally RB
+Conducted VBN
+Tokio NNP
+commercial-goods NNS
+search NN VB VBP
+schoolboys NNS
+Barrister NNP
+theatricality NN
+Lodley NNP
+Joaquin NNP
+oil-services JJ
+changeable JJ
+Binder NNP
+widthwise RB
+scrupulosity NN
+despot NN
+criminalized JJ
+Winton NNP
+roofers NNS
+midcapitalization NN
+Hurrays NNP
+fox NN
+state-produced JJ
+F.E.L. NNP
+make VB NN VBP
+tricky JJ
+Brigham NNP
+camper NN
+memento NN
+Hassenfelt NNP
+markedly RB
+Dyson NNP
+Rosner NNP
+Nellie NNP NN
+Jee-sus UH
+metals NNS
+transpiring VBG
+Photographing NNP
+all-too-familiar JJ
+Grandson NNP
+top-grade JJ
+Katims NNP
+subsequent JJ
+CONSOLIDATED NNP
+pension-tax NN JJ
+Rooney NNP
+temporally RB
+frustrated... :
+cheek NN
+Maynard NNP
+orthodontic JJ
+Brudzinski NNP
+Scared VBN JJ
+NATION'S NN
+hand-hewn JJ
+Khare NNP
+gullible JJ
+Khin NNP
+MET VBD
+vomica NN
+collaborations NNS
+buffetted VBN
+meaninglessness NN
+linguistic JJ
+repudiating VBG
+Snoopy NNP
+bawdy JJ
+Whittenburg NNP
+Fletcher NNP NN
+courtrooms NNS
+non-violently RB
+Inventories NNS
+Heidegger NNP
+dextrous-fingered JJ
+endeavors NNS
+medallions NNS
+eight-mile-long JJ
+fish NN RB VB NNS
+faculty-hiring JJ
+supportive JJ
+alienating VBG JJ
+immaterial JJ
+Cogan NNP
+Eaux NNP
+tax-paying JJ
+dollar NN
+Allan NNP
+Allgemeine NNP
+high-sudsing JJ
+Destruction NN NNP
+myofibrillae NNS
+indomitable JJ
+Timpanogos NNP
+corporal NN
+Code NNP
+micrometeorite NN
+ninth-inning NN
+Epstein NNP
+Trotsky NNP
+sombre JJ
+jolted VBD VBN
+INVESTMENTS NNPS
+recapitalization NN
+canyonside NN
+passive-loss JJ
+Wife NN
+Matson NNP
+thing NN
+detonating VBG
+Dietrich NNP
+Viggo NNP
+modernizing VBG NN
+eloped VBD
+burst NN VBD VBN VBP VB
+hr. NN
+Beryl NNP
+U.S.concerns NNS
+thickening VBG
+Titanium NNP
+vowed VBD VBN
+deferment NN
+crooner NN
+oil-and-gas JJ
+read-only JJ
+Though IN NNP RB
+Clark NNP
+trompe-l'oeil NN
+wearied VBD
+three-to-five-year JJ
+decrease NN VB VBP
+possum NN
+Screw NNP
+stipends NNS
+hotter JJR
+Bertussi NNP
+par-3 NN
+nucleotide NN
+shockproof JJ
+--of IN
+Togs NNP
+lepidoptery NN
+modulated VBN
+lapping VBG
+tightened VBD VBN
+contest NN VB
+Trailer NNP
+student-directed JJ
+dueling VBG NN
+Entirely RB
+Compute VB
+Appignanesi NNP
+Stadtisches NNP
+Axis NNP
+Broward NNP
+Givens NNP
+fulfillment NN
+Apprehensively RB
+combustibles NNS
+Byelorussia NNP
+Frankford NNP
+intact JJ
+ideology NN
+Montreux NNP
+home-video JJ NN
+Noriegan JJ
+archetypical JJ
+Seaton NNP
+attorney-client JJ
+Hi-Country NNP
+organizes VBZ
+bowls NNS VBZ
+Ameritech NNP
+Lynnwood NNP
+injury NN
+politicking NN
+Ceil NNP
+Melodious JJ
+feel-good JJ
+cavalrymen NNS
+placement NN
+posterior JJ
+Electress NNP
+Nemesis NNP
+pocketing VBG
+Dells NNP
+Cineplex NNP
+Mmm UH
+Bald NNP
+Immortal NNP
+Large-deposit JJ
+Mazeroski NNP
+hoo-pig UH
+check-kiting JJ
+core-jacket JJ
+Audience NN
+anti-South JJ
+esthetic JJ
+Sara NNP
+rematch NN
+end-of-school JJ
+Northland NN NNP
+freelancers NNS
+Smaedt NNP
+Forsythe NNP
+crawled VBD VBN
+Colonial NNP JJ
+Italians NNPS NNS
+acquirer NN
+Meta NNP
+Simms NNP
+sneaky JJ
+Campo NNP
+Bergson NNP
+EUMMELIHS NNP
+ice NN JJ
+hotel NN
+Hoogli NNP
+Sanger NNP NN
+walnuts NNS
+insects NNS
+coulda NN
+candies NNS
+Ishihara NNP
+fps NNS
+pro-U.N.F.P. JJ
+geometric JJ
+Mob NN
+Tortola NNP
+Geeks NNPS NNS
+foreign-assistance NN
+PUBLICITY NN
+dogcatcher NN
+Magnier NNP
+four-year JJ
+apologizes VBZ
+MSX-run JJ
+test-prep JJ
+inefficient JJ
+inexplicit JJ
+Eduard NNP
+Canoga NNP
+polarizing VBG
+Super-Sets NNP
+Kirkpatrick NNP
+Realism NNP
+sepia JJ
+scoreboard NN
+or'dizzy JJ
+crushers NNS
+Collectibles NNS NNP
+ton-per-year JJ
+Proposition NNP NN
+aliens NNS
+du NNP FW
+prerecorded VBN
+Jartran NNP
+Southwide NNP
+Lompoc NNP
+EDI NNP
+in-accord-with-nature JJ
+exhanges NNS
+degenerative JJ
+freedmen NNS
+murals NNS
+commercial-bank JJ NN
+Robinson NNP
+nourishment NN
+neuroselective JJ
+antislavery JJ
+So-so NN
+Whit NNP
+Trimedyne NNP
+accounting NN VBG JJ
+investment-recovery NN
+Preamble NN
+Preservation NNP
+Cadiz NNP
+Carroll NNP
+Depletions NNS
+Pinick NNP
+Alabama NNP
+poetry NN
+insulted VBN VBD
+Canary NNP
+awarded VBN VBD
+Transplantation NNP
+Celtona NNP
+obligational JJ
+heartened VBN
+Recovering VBG
+flap NN
+Koehler NNP
+loose-jowled JJ
+ADOPTED VBD
+Dumez NNP
+ominous JJ
+Cecilia NNP
+wire-fraud NN
+AVX NNP
+obediently RB
+slasher NN
+hazelnuts NNS
+magnify VB
+Parsippany NNP
+Bonne NNP
+Munchen NNP
+Root NN NNP
+soldierly RB
+hemispheric JJ
+--didn't VBD|RB
+interlobular JJ
+metamorphosis NN
+war-torn JJ
+cooperates VBZ
+Unice NNP
+risk-free JJ
+dissemination NN
+foot-dragging NN
+Silva NNP NN
+Valhi NNP
+Ingeniera NNP
+Unions NNS
+choice NN JJ
+flees VBZ
+CANADA NNP
+Marsico NNP
+token JJ NN
+Radiation NN NNP
+all-weather JJ
+tuxedos NNS
+exercise NN VBP VB
+preparedness NN
+glut NN VB
+curtail VB VBP
+Longview NNP
+comfort NN VB
+cardiac JJ
+overlapping VBG JJ NN
+LME NNP
+mid-to-high JJ
+tire-maker NN
+likewise RB
+forefinger NN
+pampas NNS
+plaza NN
+loan-officer NN
+Hargitay NNP
+free-thinkers NNS
+inactivity NN
+Shrine NNP
+AL NNP
+Spaarbank NNP
+agonizes VBZ
+Newell NNP
+commemorated VBN VBD
+stingy JJ
+centrifuging VBG
+Kuwait NNP
+Don NNP
+RTC-appointed JJ
+tavern NN
+cribs NNS VBZ
+polyisocyanates NNS
+mailers NNS
+advised VBN VBD JJ
+Chrysalis NNP
+road-crossing NN
+Bouton NNP
+Extraordinary JJ
+Hibben NNP
+Fortunately RB NNP
+patient-advocacy NN
+Gloom NN
+third-grade NN
+deviations NNS
+investigational JJ
+two-digit JJ
+varitinted JJ
+Kompakt NNP
+Czech JJ NNP
+absolved VBD
+hardened VBN JJ VBD
+snap-in JJ
+non-inflationary JJ
+shippers NNS
+wistfully RB
+Scripp NNP
+marathons NNS
+leader NN
+internal-security NN
+Group\/Business NNP
+buoy VB
+Zeising NNP
+Walkman-style JJ
+functionally RB
+consumer-protection NN
+Wollaeger NNP
+Olgivanna NNP
+Manufacturers NNPS NNP NNS
+wish-list NN
+explain VB VBP
+Wha WP
+Domina NNP FW
+Keys NNP
+long-endurance JJ
+Juliber NNP
+Nightclubs NNPS
+officiated VBD
+sunshield NN
+deans NNS
+phosphine NN
+B'rith NNP
+forms-processing NN
+decaffeinated VBN
+bourses NNS
+Rooseveltian JJ
+barrage NN
+CALLED VBD VBN
+hair-raising JJ
+noncombatant JJ
+Yakima NNP
+suggested VBD VBN JJ
+BG NNP NN
+mellow JJ
+small-incision NN
+childless JJ
+acquires VBZ
+sighting NN
+circulate VB VBP
+unstable JJ
+Involving VBG
+have-not JJ
+literatures NNS
+telephone-call NN
+ludicrously RB
+legato JJ
+stockbrokers NNS
+profit-driven CD JJ
+councilors NNS
+skippers NNS
+check-processing JJ NN
+Monieson NNP
+Even RB JJ
+Feyer NNP
+umbrage NN
+HOTEL NNP
+reputation NN
+Regan NNP
+Duffey NNP
+Gevurtz NNP
+Cooper NNP
+Amatayakul NNP
+cruzado NN
+account-churning NN
+remade VBN NN VB
+Roommates NNS
+Introduced VBN
+Geduld NNP
+budget-wise JJ
+oodles NN
+Symms NNP
+Laue NNP
+Zambon NNP
+market-based JJ
+dollar-sign NN
+NBI NNP
+kiddies NNS
+s'accuse FW
+blister NN
+Iaciofano NNP
+eludes VBZ
+equate VB VBP
+Blume NNP
+disobeying VBG
+Raful NNP
+polemic JJ
+open-access NN
+Columns NNS NNPS NN
+reckons VBZ
+asset-forfeiture NN
+joint-venture JJ NN
+Loudon NNP
+tarantara NN
+no-nos NNS
+Hallelujah NNP NN
+Talley NNP
+incorruptible JJ NN
+Drew NNP JJ VBD
+punchbowl NN
+exemption NN
+Dnieper NNP
+involution NN
+Lincolnshire NNP
+tempting JJ
+accompany VB VBP
+Brand-Name NN
+occupant NN
+Mantegna NNP
+conversion-by-renovation JJ
+Korotich NNP
+amendments NNS
+controlled VBN JJ VBD
+expectedly RB
+Recovery NNP NN
+speck NN
+Moll NNP
+unaffiliated JJ
+Thornburgh NNP
+Lacey NNP
+WAC NNP
+CB NNP
+indolent JJ
+vignette NN
+mediocre JJ
+leafhopper JJR
+frosty JJ
+seventh-inning JJ
+unified JJ VBD VBN
+quasi-folk JJ
+oleophilic JJ
+lightning-occurrence JJ
+exigencies NNS
+Esperanza NNP
+guesses NNS VBZ
+Insurance NNP NN
+Staggeringly RB
+Lauri NNP
+coffin NN
+expires VBZ
+full-clad JJ
+Moldavia NNP
+estimating VBG NN
+Profili NNP
+pre-quake JJ
+real-life JJ
+headwall NN
+Doctor NNP NN
+tall-masted JJ
+Hazell NNP
+barriers NNS
+E.D. NNP
+Lucian NNP
+non-strategic JJ
+Plee-Zing NNP
+grants NNS VBZ
+ores NNS
+Earlham NNP
+nervousness NN
+foreign-stock JJ
+pre-refunded JJ
+package NN VB
+Brockville NNP
+fashioned VBN VBD
+Civics NNPS
+architects NNS
+cinches NNS
+puppets NNS
+Turkish JJ NNP
+BLOW NNP
+besets VBZ
+piker NN
+McCabe NNP
+Redfield NNP
+ha UH
+pre-college JJ
+dashboard NN
+HYATT NNP
+unwitting JJ
+knows VBZ
+attainment NN
+Leland NNP
+Abolitionists NNS
+slashes NNS VBZ
+Renchard NNP
+provide VB VBP
+knitted VBN VBD JJ
+task-force NN
+underreported VBN
+Luft NNP
+taxpaying JJ
+sensitives NNS
+sputtering JJ
+Backs VBZ
+Twaron NNP
+subtracting VBG
+mid-'70s NNS
+almost RB JJ
+snobbish JJ
+solar-corpuscular-radiation NN
+public-TV NN
+Chebrikov NNP
+Jaworski NNP
+Mazzoni NNP
+Hunters NNPS NNS
+sections NNS
+Mona NNP
+full-fledged JJ
+Criticality NN
+resolved VBN VBD
+childish JJ
+impugn VB
+collection NN
+blockhouse NN
+merging VBG NN
+Stingers NNPS
+menswear NN
+plantings NNS
+Kiran NNP
+Brest-Silevniov NNP
+raiders NNS
+art-shop NN
+misbehavior NN
+inlaid VBN
+pray-for-growth-later JJ
+arrested VBN VBD
+Stated VBN
+prices... :
+Bride NNP
+skunk NN
+ferreted VBD VBN
+Suisse NNP
+clamp VB NN
+visrhanik FW
+Garments NNS
+Name NN NNP VB
+Brumidi-Costaggini NNP
+Harrier NNP
+ninety-five CD
+Ligne NNP
+bail-jumping NN
+Prudent NNP
+Ltd NNP NN
+relative-performance JJ
+esterases NNS
+Chemex NNP
+fleet NN JJ
+adaptable JJ
+Matritech NNP
+Giroux NNP
+iuvabit FW
+Cytel NNP
+data-base JJ NN
+Welfare NNP NN
+Atmospheric NNP
+kroner NN
+bigticket NN
+air-water JJ
+challenged VBD VBN
+seventy-five CD
+Salpetriere NNP
+pro-Castro JJ
+directional JJ
+abed RB
+anti-contamination JJ
+single-digit JJ NN
+spraining VBG
+convincingly RB
+caution NN VBP VB
+Nipp NNP
+trans-Panama JJ
+analogous JJ
+Californication NN
+Ailing VBG
+best-seller NN
+dexterity NN
+best-performing JJ JJS
+Clue NNP
+redeems VBZ
+Swahili NNP
+Staiger NNP
+Watching VBG
+washed-out JJ
+Gaon NNP
+idiot-grin NN
+amazons NNS
+Shine NNP
+Ruling NN NNP VBG
+Kamemura NNP
+drilled VBN VBD
+resuspension NN
+Dade NNP
+Schoder NNP
+skateboards NNS
+Toho NNP
+Broadstar NNP
+defined-contribution NN
+Krishna NNP
+Attraction NNP
+disallowed VBD VBN
+Hammers VBZ
+Gleacher NNP
+Comrade NN
+misjudgments NNS
+flatly RB
+camp-made JJ
+chairman NN
+Jeep NN NNP
+Aires NNP
+commerce NN
+alarmed VBN JJ
+SELL VB
+gunshot NN
+iniquities NNS
+drive-train NN
+Augustan NNP
+Ages NNPS NNP NNS
+fly-by-night JJ
+Gothic JJ NNP
+beads NNS
+tastier JJR
+Nilson NNP
+Gourlay NNP
+heels NNS
+Bianchi NNP
+Zane NNP
+rock'n NN
+baying NN VBG
+hex NN
+Yankton NNP
+displaced VBN VBD
+Schneier NNP
+consumer-price-index JJ
+Recurring VBG
+Addicted NNP
+Power-Seek NN
+CPA NNP
+T-bond JJ NN
+Prattville NNP
+sugar NN VB
+nomads NNS
+covetous JJ
+Nishimo NNP
+bankruptcy-proceedings NNS
+Munger NNP
+Doo NNP
+Natalia NNP
+Mattis NNP
+par-5 JJ
+Manifatture NNP
+Enforcers NNS
+Huntz NNP
+acoustic JJ
+Mandy NNP
+non-Big JJ
+outfielders NNS
+celiac JJ
+Dewey NNP
+Purves NNP
+Also... :
+billionaire NN
+Bourgeois NNP
+refracted VBD
+refunding VBG VBG|NN JJ NN
+conjugation NN
+humongous JJ
+Unida NNP
+malls NNS
+colors NNS VBZ
+thrifts NNS
+sunken JJ
+AM NNP VBP NN
+bilking VBG
+Brick NNP NN
+chest-back-shoulder JJ
+counterbids NNS
+undiplomatic JJ
+Belknap NNP
+G. NNP
+Became VBD
+counter NN IN JJ RB VB IN|RB VBP
+stomachwise RB
+browsing. NN
+all-Copland JJ
+Gant NNP
+Shrugs NNP
+Mainstay NN
+cried VBD VBN
+butyrate NN
+result NN VBP VB
+councilwoman NN
+Rausch NNP
+anti-heroes NNS
+ECP NNP
+infancy NN
+gracious JJ
+processors NNS
+bingo-like JJ
+Completing VBG
+ear-splitting JJ
+Leuzzi NNP
+frying VBG NN
+Interpore NNP
+job-seekers NNS
+wickedly RB
+lagged VBN VBD
+span NN VB VBP
+stumped VBN
+Hauling VBG
+swapped VBN VBD
+transcript NN
+hatching NN VBG
+flathead JJ
+aahs NNS
+White-shirted JJ
+distilling VBG NN
+conservators NNS
+paraphrase NN VBP
+Berens NNP
+pensioners NNS
+addle-brained JJ
+dead JJ NN RB VBN
+braced VBN VBD
+premium-brand JJ
+robotism NN
+cosmological JJ
+formulating VBG
+Laguna NNP
+fiber NN
+reprobating VBG
+Danny NNP
+ORANGE NN
+Classy NNP
+sulking VBG
+Wangemans NNPS
+Himalayas NNPS
+Crested NNP
+Luxury NN
+Atone VB
+Vieth NNP
+cha-chas NNS
+Roizen NNP
+sound-truck JJ
+Bouvier NNP
+corral NN VB
+Woodcock NNP
+tailback NN
+radically RB
+RICOed JJ VBD
+Wiligis NNP
+Mylanta NNP
+Capitol-EMI NNP
+nightshirt NN
+Laudably RB
+Isacsson NNP
+lever-action JJ
+JSP-supported JJ
+curtain NN
+Sanchez NNP
+fill-or-kill JJ
+RepublicBank NNP
+Labothe NNP
+lentils NNS
+pulsated VBD
+sweet JJ
+yachtels NNS
+bicycle NN
+wars NNS
+STOCKS NNS
+Broughten NNP
+itemization NN
+Lithox NNP
+PRESIDENT NN NNP
+money-granting NN
+Lectec NNP
+Sinhalese. JJ
+Joplin NN
+Alliant NNP
+pilgrimage NN
+bourgeoisie NNS FW
+craggy JJ
+Valentina NNP
+undepicted JJ VBN
+Manet NNP
+radar-type JJ
+purged VBN VBD
+fasten VB VBP
+legitimate JJ
+beetling JJ
+donkey NN
+Wes NNP
+incomprehensible JJ NN
+Measurement NNP NN
+Expanding VBG
+Amando NNP
+Birdpark NNP
+non-artistic JJ
+augur VBP
+bribes NNS
+Ahead RB NNP
+trivialize VB
+iliac JJ
+automobile NN
+anti-NATO JJ
+Miser NNP
+tiredly RB
+gold-phone NN
+Daniel NNP
+mellifluous JJ
+Martyrs NNP
+Avedisian NNP
+paper NN VB
+mais FW
+Stockdale NNP
+allotted VBN VBD
+wounded VBN JJ
+Jefferson NNP NN
+rape NN VB VBP
+Drogerias NNP
+Kingsepp NNP
+Zoete NNP
+graphics NNS NN
+Hallbauer NNP
+Achieving VBG
+harshened VBD
+Moreland NNP
+developed VBN JJ VBD
+Norton NNP NN
+betterment NN
+garland NN
+topsy-turvy JJ RB
+kneels VBZ
+perfumed JJ VBN
+Burgee NNP
+impolitic JJ
+liras NNS
+Ayres NNP
+price-depressing JJ
+aims VBZ NNS
+Believing VBG
+eqn. NN
+Medicines NNP
+fishery NN
+-axis NN
+dissonances NNS
+criminal-abortion JJ
+SUGAR NN NNP
+tubular JJ
+cinder-block JJ
+less-than-expected JJ
+clipped VBN VBD
+Hustler NN
+bat-roost JJ
+Renta NNP
+Astra NNP
+Jiffy NNP JJ
+extra-literary JJ
+Convict NNP
+arranges VBZ
+becomes VBZ
+Knightes NNP
+auto-obscuria NN
+pro-family NN
+Magurno NNP
+tournament NN
+Harms NNP
+knobby-knuckled JJ
+inflections NNS
+Supplemental NNP JJ NN
+dossier NN
+mistrial NN
+Glee NN
+hospitalizations NNS
+Lermer NNP
+SLORC NNP
+Spielvogel NNP
+cautioned VBD VBN
+Spruell NNP
+compensation NN
+controversy NN
+misquoting VBG
+Vroom NNP
+horse-player NN
+unsure JJ
+overcoats NNS
+prosceniums NNS
+madrigals NNS
+advantageous JJ
+blood-kinship NN
+futures NNS
+tenderfoot NN
+purely RB
+toady NN
+Melinda NNP
+now-historic JJ
+antitrust-law JJ NN
+Penguin NNP
+partake VB VBP
+provdied VBD
+deluxe JJ
+lonely-hearts NNS
+McIver NNP
+Sausalito NNP
+Fishback NNP
+Sonates NNPS
+Collingwood NNP
+JACUZZI NNP
+Mutants NNS
+Hitler NNP NN JJR
+doctoral JJ
+deckhands NNS
+Candidates NNS
+Permits NNS
+Volpe NNP
+Grupo NNP
+B-1s NNPS
+godless JJ
+contacting VBG
+half-a-million JJ
+inactivated VBD VBN
+Moehn NNP
+vied VBD VBN
+roses NNS
+pointer NN
+Arigato FW
+fibrocalcific JJ
+soviet JJ
+curative JJ
+Emperors NNS
+Pandora NNP
+massaged VBN
+undo VB
+plucky JJ
+mailed VBN VBD JJ
+self-observation NN
+Lohman NNP
+Sentences NNS
+icon NN
+declined VBD VBN
+wisecracks NNS
+estancias NNS
+atonement NN
+Price-Fleming NNP
+Not-held JJ
+People NNS NN NNPS NNP
+succinct JJ
+divination NN
+Strait NNP
+Inform NNP
+Homestake NNP
+BSN NNP NN
+Simpsons NNPS
+sewer-repair JJ
+hopeful JJ NN
+re-moralizing VBG
+supercomputer NN
+median-family NN
+Refugees NNS NNP
+Amicam NNP
+Brothers NNPS NNP NNS
+vending NN VBG JJ
+Plotkin NNP
+Alvan NNP
+Gerraughty NNP
+character NN
+injuring VBG
+Afghanistan NNP
+affirm VB VBP
+townsmen NNS
+deregulate VB NN
+conceptualization NN
+hey UH
+remiss JJ
+fractionated VBN VBD
+heavy-electrical-goods JJ
+furniture NN
+single-premium JJ
+ranking JJ VBG NN
+lavish JJ
+raided VBN VBD
+CPB NNP
+heavenly JJ
+circulars NNS
+Certus NNP
+rackets NNS
+Consul NNP
+over-land JJ
+belittling VBG
+Dragons NNP
+shamed VBN
+Albanese NNP
+Trujillos NNPS
+Models NNS
+payday NN
+retirements NNS
+baseball-watching JJ
+weak... :
+Centering VBG
+market-moving JJ
+ephemeral JJ
+Boehm NNP
+belated JJ
+Stamford NNP
+showering VBG
+petroleumproducts NNS
+then-owner JJ
+husbun NN
+totalling VBG
+tumultuous JJ
+synchotron JJ
+Demus-Schubert NNP
+Harriet NNP
+foot-high JJ
+Newbiggin NNP
+dumping VBG NN
+PAPER NN NNP NNS
+Astor NNP
+problematics NNS
+low-ceilinged JJ
+overflows NNS
+Moines-based JJ
+sallow JJ
+floor-to-ceiling JJ
+pit NN VBP VB
+adhere VB VBP
+network-affiliated JJ
+beetle-browed JJ
+Uhles NNP
+annotated VBN
+index-trading NN
+balls NNS
+scalawags NNS
+rag NN
+stock-related JJ
+Nana NNP
+life-long JJ
+er UH
+engorged VBN
+kc. NN
+basins NNS
+launch-control NN
+Morgenthau NNP
+road-circuit NN
+Sternberg NNP
+Harkins NNP
+explorer NN
+veranda NN
+anti-inflation JJ
+Haislip NNP
+credit-worthiness NN
+Microwaves NNS
+NAEBM NNP
+AN DT
+mealynosed JJ
+Grocery NNP NN
+boutique NN
+aspects NNS
+silted VBN
+Sedona NNP
+Annenberg NNP
+quietness NN
+releasing VBG
+Tiveden NNP
+wart NN NNS
+Silvercrest NNP
+insurgent JJ
+abbreviations NNS
+stalk VBP
+Sartoris NNP
+Strasbourg NNP
+BALLOTS NNS
+Sonet-based JJ
+misperceptions NNS
+Moraine NNP
+bucolic JJ
+refinery NN
+fetched VBD VBN
+Booker NNP
+Curt NNP
+reconnaissance NN
+Kafaroff NNP
+splits NNS VBZ
+infinite JJ NN
+managers NNS
+strawberry NN
+tangle NN VBP VB
+moderated VBN VBD
+Mises NNP
+time NN VB
+offerings NNS
+intermolecular JJ
+worthiness NN
+wholewheat JJ
+Sporting NNP NN
+CMS NNP
+wallet NN
+fairy-land NN
+trade-union NN JJ
+caring VBG JJ NN
+uncourageous JJ
+prosecuted VBN VBD
+regionalism JJ
+Reeboks NNPS
+squeaky-clean JJ
+Misinformation NN
+Deerstalker NN NNP
+championship NN
+persona NN FW
+Comedy NNP NN
+primary-election NN
+Gaffney NNP
+diesels NNS
+Overall RB NNP JJ
+Genossenschafts NNP
+Quarterback NNP
+Shintaro NNP
+tensioning VBG
+Uspensky NNP
+near-identical JJ
+scrolls NNS
+Byzantium NNP
+Edward NNP
+Biondi-Santi NNP
+McNeill NNP
+sparing VBG JJ
+MB-339 NNP
+cornball NN
+drifter NN
+illuminated VBN JJ VBD
+ethnically RB
+nullity NN
+assassin NN
+Noriegas NNS
+macho JJ NN
+Sayles NNP
+Benched NNP VB
+profet NN
+diachronic JJ
+computer-printer NN
+delinquent JJ NN
+uninhabited JJ
+Wet JJ NNP
+horseflesh NN
+Playhouses NNP
+unificationists NNS
+Garin NNP
+influencing VBG
+Shing NNP
+SST NNP
+loyalists NNS
+unilateral JJ
+metis NNS
+parson NN
+reproval NN
+patienthood NN
+Leisire NNP
+thereon RB
+spares NNS VBZ
+miniskirt NN
+semantically RB
+ultracentrifuge NN
+they'll PRP|MD
+RISK NN
+Brussels NNP NNS
+Meeting VBG NNP NN
+inured VBN
+nonacid JJ
+diaphanous JJ
+Ukrainians NNPS
+tilts VBZ
+calcified VBD
+roughshod JJ
+cleaned VBN VBD
+reassemble VB
+unerringly RB
+Malta NNP
+inchworm NN
+Wessel NNP
+Battista NNP
+integrity NN
+gravel-chewing JJ
+goes VBZ
+Whitmore NNP
+trouble-shooting NN
+offspring NN NNS
+mooed VBD
+high-inflation JJ
+Owning VBG
+Lawsuit NNP
+Trouble NN
+petrochemical NN JJ
+Bailout NNP
+i-th NN
+ham-radio NN
+think VBP VB NN
+Gimbel NNP
+automated-teller JJ NN
+runners-up NNS
+York-based JJ NNP
+polarized VBN
+Laredo NNP
+noncallable JJ
+CD NNP NN JJ
+awful JJ RB
+Licenses NNP
+Advance NNP JJ
+Spangenberg NNP
+snorted VBD
+Catholics NNPS NNP NNS
+floes NNS
+Padovan NNP
+Gaechinger NNP
+dites FW
+anyhow RB
+Spokespersons NNS
+PW4060 NNP
+Danube NNP
+loners NNS
+airfields NNS
+Clough NNP
+crackpots NNS
+gradualism NN
+digging VBG NN
+amassed VBN VBD
+censorship NN
+fertilized VBN JJ
+Moe NNP
+phonetics NNS
+Lass NNP
+devil NN
+collars NNS
+Cell-free JJ
+state-centered JJ
+Kirchberger NNP
+el-Fna NNP
+Transamerica NNP
+Necklace NNP
+T.R. NNP
+Ladenburg NNP
+counterfeit JJ
+tidbit NN
+conservatory NN
+tinting NN
+Perrier NNP
+acknowledgement NN
+renegotiating VBG
+co-founded VBD JJ
+AT&T-sponsored JJ
+peak NN VBP JJ VB
+Ripples NNS
+mint NN
+cloisters NNS
+evaluative JJ
+communicate VB VBP
+sputtered VBD
+Arnott NNP
+Ladas NNP
+Zita NNP
+laced VBN VBD JJ
+anti-terrorism JJ
+adventurer NN
+--here RB
+crackles VBZ
+suburb NN
+hostages NNS
+eclipsing VBG
+explores VBZ
+genders NNS
+Olean NNP
+brawny JJ
+all-new JJ
+PACIFIC NNP
+Mohammedanism NNP
+duke NN
+server NN
+anti-airline NN
+Mevacor NNP
+no-valued JJ
+pagan JJ
+high-rep JJ
+Hollingsworth NNP
+gauging VBG
+Antwerp NNP
+tradeoff NN
+say'well VB
+Killips NNP
+gains-tax-cut JJ
+CNN NNP
+J.I. NNP
+daughter NN
+governor-elect NN
+Surveys NNS NNP
+Socrates NNP
+Sapp NNP
+reluctantly RB
+Tickets NNS
+area-code JJ
+paperboard NN
+radiated VBD VBN JJ
+Vnet NNP
+going-over NN
+more-active JJ
+Averages NNP NNS
+illicitly RB
+silos NNS
+Boliden NNP
+island-fantasy JJ
+brothel NN
+Leading VBG JJ NNP
+queenside NN
+DKB NNP
+Newswire NNP
+bad-cop JJ
+bulging VBG JJ
+Foster NNP
+Northington NNP
+Sturley NNP
+leasable JJ
+Grossinger NNP
+Lance NNP
+CREATIVE JJ
+weathering NN VBG
+financial-report JJ
+Mattathias NNP
+AMERICAN NNP
+trellises NNS
+Deltacorp NNP NN
+Prevention NNP NN
+Barnhill NNP
+public-stock NN
+Payment NN
+VGA NNP
+Investors NNS NNPS NNP
+congestive JJ
+Westpheldt NNP
+Czechoslovak JJ
+CPC NNP
+Talbott NNP
+Why'n WRB
+Linsley NNP
+rusting JJ
+Rosa NNP
+deaf JJ
+democratic JJ
+.500 CD
+real-world JJ
+Cedergren NNP
+provincialism NN
+Bent-Arm NNP
+Leads VBZ
+Tolek NNP
+Parcel NNP
+Reels NNPS
+stall NN VB
+Bancaire NNP
+afterward RB
+Missett NNP
+Australians NNS NNPS
+Pocklington NNP
+fallacy NN
+Merger NN NNP
+nonpayment NN
+Addiss NNP
+Jennie NNP
+mummified VBN
+Logistics NNP
+linkages NNS
+Wanda NNP
+Hennessy NNP
+Briefer NNP
+sallies NNS
+automating VBG
+compaction NN
+clams NNS
+Workstations NNS
+nonobservant JJ
+growthy JJ
+Thermedics NNP NNS
+Lentjes NNP
+Mercers NNPS
+bureaucracy NN
+container-ship NN
+director-general NN
+Machiavellian JJ
+chantey NN
+--despite IN
+mildness NN
+Ditlow NNP
+perhaps RB
+Homozygous JJ
+redistributed VBN
+Medicale NNP
+mid-conversation NN
+Pagones NNP
+be-thonged JJ
+Fosterites NNP
+Give VB
+Walls NNS
+Sakharov NNP
+desertification NN
+paid-up JJ
+belying VBG
+placards NNS
+curricular JJ
+adventures NNS
+Toil NN
+A12 NN
+clung VBD VBN
+Tempering VBG
+two-edged JJ
+Playskool NNP
+Reconstruction NNP
+underclass NNS
+spiffy JJ
+utopian JJ NN
+hid VBD VBN
+kotowaza FW
+thrips NN
+tsunami NN NNS
+Carmon NNP
+altho IN NN
+acquisitiveness NN
+Respecting VBG
+Middle-South NNP JJ
+Scannell NNP
+paralyze VB
+cosponsored VBN
+obscure JJ VB
+ashtrays NNS
+wellspring NN
+ruptured VBN JJ VBD
+Pearson NNP
+Naguib NNP
+L.A. NNP
+steadied VBD VBN
+Quelch NNP
+dizzy JJ
+guffawing VBG
+Bargain-hunting NN VBG
+Titanic NNP
+slept VBD VBN
+reintroduce VBP VB
+litigants NNS
+EEG NNP
+hegemonic JJ
+Control NNP NN
+chlorothiazide NN
+interactions NNS
+,... :
+midlands NNS
+formulae NNS
+MGM NNP
+cold-storage JJ
+Supermarkets NNS NNP NNPS
+Cyclone NNP
+price-value JJ NN
+AIMO NNP
+Rica NNP
+conductors NNS
+water-reactor JJ
+tax-law NN JJ
+plants NNS VBZ
+Dunde NNP
+after-hours JJ NNS RB
+laudatory JJ
+correlated JJ VBD VBN
+reality NN
+flat JJ NN RB
+vascular JJ
+Leadership NN NNP
+Moultons NNPS
+razor NN
+micro-microcurie NN
+renames VBZ
+TNT NNP NN
+civilizations NNS
+Detroit NNP
+dideoxyinosine NN
+evolves VBZ
+freight-hauling JJ
+Tens NNS
+Terranomics NNS
+platoon NN
+Grumman NNP
+Houston NNP JJ
+evident JJ
+Treasury-bill NN
+Kaddurah-Daouk NNP
+as-yet RB
+detailed VBN JJ VBD
+anti-fungal JJ
+edentulous JJ
+byways NNS
+mantrap NN
+counteracted VBN VBD
+Jazz NNP NN
+horizontal JJ NN
+Thirties NNS CD NNPS
+bluish JJ
+trickiest JJS
+Zamya NNP
+Inspects VBZ
+garoupa NN
+consonant JJ NN
+Biny NNP
+till IN VB
+Contra NNP JJ
+billboard NN
+Barbarians NNP
+Karsner NNP
+tradeable JJ
+Upham NNP
+Koizumi NNP
+rude JJ
+shulde MD
+THIEVES NNS
+mousseline NN
+Clemente NNP
+Acadia NNP
+Delancy NNP
+still-limited JJ
+informative JJ
+Textile NNP NN
+speed NN VB
+Lackey NNP
+crisis-to-crisis JJ
+imaginative JJ
+Gaetan NNP
+Qantas NNP
+Disabled JJ NN NNP VBN
+plastic-body JJ
+formally RB
+Ruffled VBN
+Last JJ NNP RB VB
+(3/26 1991)
+askew RB
+decides VBZ
+instincts NNS
+Conneaut NNP
+Matsuda NNP
+wandering VBG
+burl NN
+A-bombs NNS
+Yanks NNS NNP
+hospices NNS
+serves VBZ
+imperceptible JJ
+conventioners NNS
+freewheeling JJ
+booed VBD
+Valentine NNP NN
+Multinational JJ NNP
+Kromy NNP
+foolishness NN
+Ricans NNS NNP NNPS
+peal NN
+repudiation NN
+Landesbank NNP
+non-Jewish JJ
+Ottawa NNP NN
+stranding VBG
+Handlers NNP NNS
+Cummins NNP
+Foerster NNP
+Maybe RB UH
+privatized VBN VBD JJ
+Elks NNP
+Vol. NNP
+Dittamore NNP
+demarcation NN
+financial-data JJ
+spillover NN
+study-plan NN
+Interair NNP
+Photography NNP
+nests NNS
+steady-state JJ
+Rabble-rousing JJ
+commemorates VBZ
+woodcutters NNS
+Three-quarters NNS
+Chesshire NNP
+besides IN RB
+Dillmann NNP
+nonionic JJ
+zombies NNS
+wasp NN
+revenue-producing JJ
+soft JJ NNS RB
+NAR NNP
+bludgeoned VBN
+Boise-Cascade NNP
+re-created JJ VBN
+standin NN
+Waukegan NNP
+pleas NNS
+Grodnik NNP
+unethically RB
+Dreieich NNP
+Kingsford NNP
+four-story JJ
+Kruger NNP
+reschedule VB
+confirm VB VBP
+stilts NNS
+MFS NNP
+querying VBG
+Ever RB NNP
+ironfist NN
+freshmen NNS
+recalcitrant JJ
+agglutinating VBG
+Linked VBN
+Stelzer NNP
+buyers NNS
+sustain VB VBP
+debit NN
+repeated VBN VBN|JJ VBD JJ
+assessors NNS
+Shade NNP NN
+Lockman NNP
+sponsors NNS VBZ
+Natalie NNP
+nutritious JJ
+originates VBZ
+Behrendt NNP
+Franchising NNP
+gravely RB
+FAA NNP
+tear-filled JJ
+Agoura NNP
+filigree JJ NN
+prepolymer NN
+Pinnacle NNP
+above-ground JJ
+cover-up NN
+Hamlin NNP
+flunking VBG
+middle-income JJ NN
+Shunted VBN
+cursed VBD VBN
+Christer NNP
+Shawnee NNP
+inched VBD VBN
+knock-off NN
+puppyish JJ
+leaflet NN
+Huaqiong NNP
+physical-chemical JJ
+theorize VBP VB
+smoker NN
+Klimt NNP
+Maeda NNP
+Tojos NNPS
+Satellites NNS
+seekers NNS
+teeth NNS RP
+Nugget NNP
+indignities NNS
+consumer-oriented JJ
+Conte NNP
+High-definition JJ
+Maintain VBP
+spangle NN
+underdog NN
+analysis NN
+sunglasses NN NNS
+Alleghany NNP
+mean-square JJ
+Raiff NNP
+McClintock NNP
+last-named JJ
+easy-to-read JJ
+Biddle NNP
+market-oriented JJ
+groping VBG NN
+Medicis NNPS NNP
+peacefully RB
+mummies NNS
+Korngold NNP
+organizationally RB
+Improving VBG NN
+Portillo NNP
+Thoroughbred NNP
+Bali NNP
+shortchanged VBN
+partner NN
+uselessness NN
+Afterwards RB
+Hauptman NNP
+Worlds NNPS NNP
+faiths NNS
+zooms VBZ
+FIRM NN NNP
+colour-prints NNS
+public-opinion JJ NN
+d'Ulisse FW
+French-polished JJ
+Dor NNP
+moderation NN
+uninspected JJ
+threatened VBN VBD JJ
+ovulation NN
+turnery NN
+Mazowiecki NNP
+Ludwick NNP
+endothermic JJ
+hoosegow NN
+gravel-voiced JJ
+sexton NN
+mesothelioma NN
+prude NN
+typified VBN VBD
+feller NN
+trimmed VBN RBR VBD JJ
+Franco-German NNP
+punctured JJ VBN
+Underperform NNP
+R.I NNP
+Steinkuhler NNP
+Counties NNPS NNP
+bushel NN
+noncompliance NN
+displays NNS VBZ
+Newport NNP NN
+constant-temperature NN
+speedup NN
+pawn NN VB
+seed-pods NNS
+Andersson NNP
+BancOklahoma NNP
+Antwerpsche NNP
+Estuary NNP
+Elf NNP
+unyielding JJ
+Metschan NNP
+limits NNS VBP VBZ
+Conduit NNP
+Cinerama NN
+sensitivities NNS
+male JJ JJ|NN NN
+overarching VBG JJ
+cockatoos NNS
+browny-haired JJ
+begs VBZ
+wide-body JJ
+Using VBG
+gene NN
+smokestack NN
+Karkazis NNP
+Hogs NNS
+Testament-style JJ
+misrepresentations NNS
+criminal-defense JJ NN
+Crovitz NNP
+Landa NNP
+Koppers NNP
+By-passing VBG
+Affirmative JJ
+glutinous JJ
+registers NNS VBZ
+slow-growing JJ
+Switzerland-based JJ
+payoff NN
+pre-transfer JJ
+porch NN
+overhyped JJ
+Westerner NNP
+Bentley NNP
+Scorsese NNP
+Blank NNP
+Bagatelles NNPS
+Perkins NNP
+Against IN NNP
+unchangedat JJ
+conventionality NN
+pedigreed VBN
+sackless JJ
+Corp.-USA NNP
+disks NNS
+sneaking VBG
+Shack NNP
+boar NNS
+blackmailers NNS
+Penelope NNP
+paneling NN
+unsafe JJ
+rebelling VBG
+Greenall NNP
+play-it-safe JJ
+stacks NNS
+corporatewide JJ
+Vault NNP
+five-pfennig JJ
+oil-exporting NN
+flotilla NN
+strenuous JJ
+dissolving VBG JJ
+happier JJR
+high-rise JJ NN
+tax-haven JJ NN
+biofeedback NN
+near-absence NN
+Potential JJ
+sinews NNS
+depressed JJ VBD VBN
+Antonin NNP
+Time-Warner NNP
+familiarization NN
+benches NNS
+Transkei NNP
+Incrementally RB
+nilpotent JJ
+uptempo JJ
+Churpek NNP
+lambs NNS
+comptroller NN
+Palash NNP
+COUP NN
+domesticity NN
+Modifications NNS
+exterminator NN
+heart-wrenching JJ
+pragmatists NNS
+unconscionable JJ
+anti-androgen JJ
+seems VBZ
+non-Socialist JJ
+typically... :
+ground-water NN
+Beebes NNPS
+prerogative NN
+Doran NNP
+et FW VBD CC NNP
+carved VBN JJ VBD
+Upjohn NNP
+artillerist NN
+five-hundred CD
+shouldn't MD
+rudely RB
+chattels NNS
+Fathers NNPS NNP NNS
+media-stock JJ
+Simon NNP
+Hillsdale NNP
+MAKE VB
+Drennen NNP
+Precious NNP JJ RB
+dishwasher NN
+Pact NNP
+Middlebury NNP
+AP NNP
+Schools NNP NNPS NNS
+Jolla NNP
+obsequious JJ
+bumble-bee NN
+celebrities NNS
+Epilepsy NNP
+no-nonsense JJ
+upgradings NNS
+Either CC DT NNP
+celerity NN
+persistency NN
+discombobulation NN
+Giulietta NNP
+oiticica NN
+lengths NNS
+Ambrose NNP
+advertiser-bankrolled JJ
+gestational JJ
+flyer NN
+Rangers NNPS
+conserving VBG
+rechartering VBG
+Anglicans NNS
+Pawcatuck NNP
+A.D NN
+slithers VBZ
+Galtier NNP
+amphibious JJ
+faster RBR JJR RB
+Clemson NNP
+Shortridge NNP
+hitmakers NNS
+double-crossed VBD
+Burgher NNP
+mooring NN
+allowance NN
+underwriter NN
+medical-support JJ
+Fitts NNP
+U.S.-endorsed JJ
+rejected VBD VBN
+First-Born NNP
+stamina NN
+hemoglobin NN
+evermounting VBG
+impaled VBN
+repose NN
+Dirty JJ
+faraway JJ
+divorces NNS
+trustworthy JJ
+Pennsauken NNP
+Anterior NNP
+overshadow VBP VB
+inter-Arab JJ
+achieved VBN VBD JJ
+Muench NNP
+cellist NN
+demander NN
+Contrarily RB
+power-tool JJ NN
+interrogatives NNS
+Palasts NNPS
+Realist NNP
+Threat NN
+Greenwich NNP
+cattlemen NNS
+U.S.-Philippine JJ
+Foot NNP NN
+agitator NN
+old-boy NN
+Weird JJ NNP
+orthophosphate NN
+due-process NN
+furled VBD
+attend VB VBP
+Allons FW
+gentleladies NNS
+wrestlers NNS
+BK NNP
+Bushnell NNP
+transfixing VBG
+shop-till-you-drop JJ
+on-set JJ
+Filtered VBN
+smokes VBZ
+Schlek NNP
+Lucifer NNP
+ridden VBN
+Roaming VBG
+cheesecake NN
+actuate VB
+centered VBN VBD
+monetary-damage NN|JJ
+unequivocal JJ
+re-evaluating JJ VBG
+Nicole NNP
+encoder NN
+Downing NNP
+Abbe-Scotch NNP
+up-and-coming JJ
+Premium NNP
+Trees NNP NNS
+peacekeeping JJ
+YALE NNP
+plaques NNS
+scholar-in-residence NN
+Multifoods NNP NNPS
+abates VBZ
+totality NN
+NAS NNP
+Wacklin NNP
+fitful JJ
+characteristic JJ NN
+frankfurters NNS
+Drink VB NN
+apprised VBN
+pig-infested JJ
+facile JJ
+arms NNS
+despoilers NNS
+Cela NNP
+Off-Broadway NNP
+levied VBN VBD
+Councilman NNP
+Vacations NNS NNPS
+files NNS VBZ
+churchgoers NNS
+administers VBZ
+share-trading NN
+overcharged VBN VBD
+two-tier JJ
+Kyi NNP
+housework NN
+Khmer NNP
+Finals NNS
+board-level JJ
+Microcom NNP NN
+Third-period JJ NN
+silencing VBG
+Unilever NNP
+Outboard NNP JJ
+CF NNP
+phantasy NN
+Payroll NNP
+rant VBP
+strict JJ
+Mascarita NNP
+Disciplinary NNP
+cheer NN VB VBP
+two-stroke JJ
+underwrites VBZ
+needle-nosed JJ
+Shantz NNP
+specialty-printing JJ
+Bisson NNP
+unfavorable JJ
+patent-law NN
+exhausts NNS VBZ
+Bird NNP NN
+Gutfreund-Postel NNP
+glider NN
+right-to-privacy JJ
+Watches NNS
+Sloane NNP
+Divertimento NNP
+Smerdyakov NNP
+Prism NNP
+navigational JJ
+tunefulness NN
+snob NN
+Fonz NNP NN
+blooded VBN
+Cavin-Morris NNP
+sorghum NN
+Franco-Japanese NNP
+motley JJ
+W.Va NNP
+Yukon NNP
+Glenview NNP
+three-quarter JJ
+Turbyfill NNP
+anoint VB
+he PRP VB
+ever-more JJ
+walloping JJ NN
+multimillion JJ NN
+butane NN
+hummocks NNS
+frail JJ
+nein FW
+TOP NNP
+Plainly RB
+tailor VB NN
+turbo-charged JJ
+zodiacal JJ
+factions NNS
+Brentwood NNP
+Goddamn UH
+subtraction NN
+Benham NNP
+contouring VBG
+much-publicized JJ
+SPCA NNP
+bliss NN
+facsiport NN
+Antonio NNP
+phasing-out NN
+DA NN
+Dos NNP
+C.M. NNP
+already-identified JJ
+Anthong NNP
+Centredale NNP
+jimmied VBD
+diamond NN
+straightened VBD VBN
+forensics NNS
+piezoelectric JJ
+alienation NN
+commentary NN
+macaroni-and-cheese NN
+Radarange NN
+bush NN
+ice-chest NN
+booting VBG
+topof-the-line JJ
+Bigelow NNP
+described VBN VBD
+advisories NNS
+agranulocytosis NN
+Zemin NNP
+squeeze-out NN
+hyaline JJ
+sharp-focus JJ
+Y-regions NNS
+Above IN JJ RB NNP
+detonation NN
+discovers VBZ
+Whiz NNP
+SU-27 NN
+Ups VBZ
+roasters NNS
+partner-in-charge NN
+Perish VB
+FITC NNP
+Siemienas NNP
+pigment NN
+Copie NNP
+Flexible JJ NNP
+Roebuck NNP
+regurgitated VBD VBN
+Chautauqua NNP
+Croonen NNP
+voltage NN
+raj NN
+envisaged VBD VBN
+unlawfully RB
+two-inches NNS
+maroon JJ
+Skokie NNP
+Lewellen NNP
+sun-bleached JJ
+snowplow NN
+Kowa NNP
+fraternities NNS
+herdsmen NNS
+Tut NNP
+mid-October NNP JJ NN JJR
+gunslinger NN
+unoccupied JJ
+unknowable JJ
+Pages NNPS NNP
+electron NN
+oversized JJ VBN
+Waal NNP
+KARL NNP
+obligingly RB
+Mogadishu NNP
+theatergoer NN
+appointments NNS
+Bergen NNP
+intractable JJ
+juice NN
+Disarmament NNP
+Viewer NNP NN
+shakeout NN
+depicts VBZ
+Socialism NN NNP
+Descent NN
+Creusot NNP
+Piranesi NNP
+richly RB
+wage-floor JJ
+Federation NNP NN
+nolens FW
+BioSciences NNP NNPS
+Kiel NNP
+adsorbs VBZ
+MacWhorter NNP
+iambic JJ
+auctioning NN
+Instinctively RB
+Blueger NNP
+Lehtinen NNP
+Takanori NNP
+unlimited JJ
+sapping VBG
+--dividends NNS
+Lauro NNP
+Sector NNP
+thrifty JJ
+By-Products NNP
+O.N. NNP
+Lyric NNP
+Ingleside NNP
+Luc NNP
+enzyme-like JJ
+yachtsman NN
+repainted VBN JJ
+non-food JJ NN
+Swears VBZ
+trumps NNS
+Pestered VBN
+improvisatory JJ
+blamed VBD VBN
+Delors NNP
+consciences NNS
+Waukesha NNP
+Promotional JJ
+Agencies NNS NNP NNPS
+improvements NNS
+Megane NNP
+Visker NNP
+smelter NN
+handshaker NN
+Showalter NNP
+Arithmetic NNP
+Carpeting NN
+HEALTHY JJ
+burn VB VBP NN
+Manic NNP JJ
+submerged VBN JJ
+brands NNS VBZ
+nun NN
+Slowly RB
+Per-capita JJ
+implacable JJ
+amplitude NN
+One-fourth NN
+Seiders NNP
+soyaburgers NNS
+Varnell NNP
+Corporate\/investor NN
+fetuses NNS
+strife NN
+riche JJ
+Antares NNP
+Sci-Med NNP
+doorstep NN
+renegotiation NN
+bellow NN VB
+Ford NNP
+all-around JJ
+co-head NN
+immunization NN
+Eager JJ NNP
+inadequately RB
+Dashwood NNP
+flower-bordered JJ
+escaped VBD VBN
+Gosplan NNP
+WCRS-Eurocom NNP JJ
+WLIB NNP
+scimitars NNS
+E.E. NNP
+stand VB NN VBP
+unafraid JJ
+orb NN
+diddling VBG
+Vivacious JJ
+Raghib NNP
+lower-rated JJ
+Longman NNP
+wth IN
+MIDLANTIC NNP
+imparting VBG
+comedies NNS
+overburden VB
+nearsighted JJ
+ruffles VBZ
+Joviality NN
+Aristotle NNP
+Ebersol NNP
+Backlog NN
+Calder NNP
+hindquarters NNS
+BTL NNP
+Izaak NNP
+Waterston NNP
+well-wedged JJ
+ink-jet JJ
+gracefully RB
+'To NNP
+Coincident JJ
+machinations NNS
+Sherlock NNP
+Order-Entry NN
+Karipo NNP
+classical-music JJ
+brooken VBN
+Exceptional NNP JJ
+first-home JJ
+remodeled VBD VBN
+mama NN
+juxtapositions NNS
+evader NN
+Delawareans NNPS
+artifice NN
+prayer-time NN
+Reye NNP
+besmirching VBG
+Machinist NNP
+picked VBD VB VBN
+Compania NNP
+mud-beplastered JJ
+'25 CD
+Drs. NNP NNPS
+soft-headed JJ
+hamburgers NNS
+filet NN
+refreshing JJ VBG
+dramatized VBN
+Allianz NNP
+informing VBG
+Bandstand NN
+out-and-out JJ
+Hobart NNP
+self-enforced JJ
+PATTON NNP
+market-related JJ
+derail VB VBP
+semi-finalists NNS
+Rothenberg NNP
+Slash-B NNP
+drug-seeking JJ
+twindam NN
+barrel-vaulted JJ
+Reports NNS VBZ NNPS NNP
+clearheaded JJ
+Beale NNP
+white-collar JJ
+grievance NN
+school-financing JJ
+implicated VBN
+spas NNS
+steeper JJR NN
+Mailings NNS
+dryness NN
+glides VBZ
+huskiness NN
+estranged VBN VBD JJ
+Tatler NNP
+formulation NN
+formaldehyde NN
+Gonzaga NNP
+gradualist NN
+Preludes NNPS
+Decatur NNP
+TSEM NN
+``... :
+Tapley NNP
+Bayezit NNP
+Reinvestment NNP
+'80's CD
+exceptionally RB
+agreement NN
+outwit VB
+ogled VBD VBN
+Lastly RB
+Sovietskaya NNP
+light NN JJ RB VB VBP
+multivalve JJ
+tepees NNS
+S&P-down NN
+trudge NN
+routings NNS
+BL NNP
+maritime JJ
+laments VBZ NNS
+obviously RB
+Cites VBZ
+term-end JJ
+dying VBG JJ NN
+Michelson NNP
+defense-procurement NN
+Szuros NNP
+encouraging VBG JJ
+Salembier NNP
+Cheeses NNPS
+Hernandez NNP
+Houses NNS
+Rocket-powered JJ
+blood-clotting JJ
+Ariail NNP
+Jean-Pierre NNP
+non-systematic JJ
+grams NNS
+passage NN
+McGraw-Hill NNP
+Reps. NNP NNPS
+Soucy NNP
+Snook NNP
+JUICE NN
+FAC NNP
+redistributionist NN
+comity NN
+beady JJ
+Choir NN NNP
+hell-bound JJ
+Refund NN
+NCI NNP
+four-day JJ
+in. NN
+vowel NN JJ
+Abyss NN
+black-clad JJ
+deep-sea JJ
+stabbing VBG
+gob NN
+FORGN NNP
+tokenish JJ
+sides NNS
+Boheme NNP FW
+F.A.O. NNP
+Cities NNPS NNS
+burned VBN JJ VBD
+loss-making JJ
+governmentset VBN
+electromagnet NN
+grocery-store JJ
+Kupelian NNP
+warmheartedness NN
+negligent-homicide NN
+Kerkorian-owned JJ
+anti-fraud JJ
+McLauchlin NNP
+Brief NNP JJ NN
+Bluebird NNP
+drought-induced JJ
+rubs NNS VBZ
+CG NNP
+dimesize JJ
+Governments NNS NNP
+Commoner NNP
+smaller-than-average JJ
+cost-push JJ
+Jervase NNP
+forfeitable JJ
+Kemble NNP
+RESEARCH NNP
+hideously RB
+jumped VBD VBN
+apathetic JJ
+semi-professional JJ
+taxpayer NN
+jonron FW
+Hazardous JJ
+eyd VBN
+Photo NNP
+culinary JJ
+McMullan NNP
+expounding VBG
+Netto NNP
+widget NN
+hytt PRP
+consumer-telephone JJ
+Paget NNP
+co-obligation NN
+asking VBG JJ NN
+graders NNS
+Marunouchi NNP
+Subsidies NNS
+boat NN
+editor NN
+transcendant JJ
+Betting NNP VBG
+thermostatics NNS
+horse NN
+Inoue NNP
+Y.M.C.A. NNP
+Chicago-Montreal NNP
+Lumpur NNP
+late-night JJ
+godsend NN
+Voronezh NNP
+busses NNS
+flaw NN
+rattlesnakes NNS
+exiling VBG
+Barbara NNP
+now-Rep JJ
+Cement NNP
+sparked VBN VBD
+corrupting VBG JJ NN
+Heymeyer NNP
+thirty-year JJ
+repartee NN
+steward NN
+sellout NN
+Azara NNP
+clump NN
+forgo VB VBP
+Iranian JJ NNP
+dooms NNS
+best-educated JJ
+phosphorous JJ
+Rotha NNP
+wired VBN VBD
+Argentines NNPS NNS
+German-born JJ
+pedaling VBG
+sulkily RB
+Macheski NNP
+Yugoslavs NNS
+furriers NNS
+shower NN VB VBP
+recruiting VBG NN
+Atzez NNP
+PROFIT-SHARING NN
+Canneries NNP
+Rockefeller NNP
+forty-niners NNS
+bitters NNS
+Kots NNP
+impermissible JJ
+overdone VBN
+graduate NN JJ VB VBP
+ruling-party NN
+thrift-overhaul NN
+hull-first RB
+Braeuer NNP
+Krenz NNP
+unearthing VBG
+Abandon VB
+receptors NNS
+jovial JJ
+ECU NNP
+Stronghold JJ
+estimation NN
+Brenham NNP
+rackety JJ
+big-hearted JJ
+adenomas NN
+APPROVES VBZ
+Remarks NNS NNP VBZ
+Tortoises NNPS
+Editorials NNS
+Helped VBN
+game-management NN
+carefree JJ
+corpulence NN
+Versailles NNP
+second-year JJ
+Ex-Wells NNP
+movie-quality JJ
+Shields NNP
+Reimbursement NN
+Renton NNP
+Tennesse NNP
+Turbulence NN
+Tallahatchie NNP
+bullfighter NN
+grimaced VBD
+Copyright NNP NN
+measly JJ
+Kenlake NNP
+aboveboard JJ
+redistributes VBZ
+Giulio NNP
+cryostat NN
+repay VB VBP
+State-owned JJ
+Gumpel NNP
+unhesitatingly RB
+worriers NNS
+strongholds NNS
+Rodney-Honor NNP
+bullet-proof JJ
+junior-philosophical JJ
+entertaining VBG JJ NN
+downwind RB JJ
+Insurance-industry NN
+pseudo-questions NNS
+Sagami NNP
+Pacify VB
+Cashiering VBG
+verstrichen FW
+evades VBZ
+phalanx NN
+Agouron NNP
+perfected VBN
+Bros NNP NNPS
+Viruscan NNP
+narcotizes VBZ
+scuffle NN
+essentials NNS
+rarer JJR
+biotechnology NN
+bristled VBD
+double-crosser JJ
+Tallarico NNP
+Junkholders NNS
+Vallee NNP
+unsettlement NN
+deputy NN JJ
+cooperatively RB
+YEEECH UH
+Proudhon NNP
+Samsung-Corning NNP
+Herder NNP
+honorably RB
+Baringer NNP
+Ayer NNP
+ocean NN
+hampered VBN VBD
+Gal NNP
+Sendler NNP
+Devoted VBN
+bowels NNS
+Tiptonville NNP
+extra-curricular JJ
+controller NN
+Dequindre NNP
+battlegrounds NNS
+Circuit-breaker JJ
+secondarily RB
+TOOLWORKS NNP
+SunTrust NNP
+Dalrymple NNP
+scribbled VBD VBN
+freemarket JJ NN
+agglutination NN
+Kids NNP NNS NNPS
+monopolized VBD VBN
+Apicella NNP
+Pike NNP
+actress NN
+Hapsburg NNP
+Miraflores NNP
+SIDES NNS
+consumer-credit JJ NN
+prolongation NN
+Aswara NNP
+prosecutorial JJ
+faintly RB
+Conclusions NNS
+painfully RB
+over-night JJ
+benefits-services JJ
+Procedure NN NNP
+Electron-microscopical NN
+aggressiveness NN
+Draco NNP
+Mayan JJ
+subservience NN
+incest NN
+freights NNS
+Paxus NNP NN
+near-completed JJ
+Serological JJ
+Year-End JJ
+tax-reform JJ NN
+dispell VB
+Ridge NNP
+flea NN
+SPAN NNP
+outstate JJ
+undated JJ
+Cathryn NNP
+spat VBD NN
+rotation NN
+Proposed VBN
+gels VBZ
+Pilferage NN
+Apparel NN NNP
+Ear-Muffs NNPS
+normalizing VBG
+Rose NNP
+smashed VBD JJ VBN
+Biblically RB
+hesitatingly RB
+Ginning NNP
+Dillinger NNP
+Kan.-based JJ
+shadowing NN VBG
+radioing VBG
+officials-cum-drug-traffickers NNS
+whiskers NNS
+Checci NNP
+tough JJ RB VB
+Crittenden NNP
+anti-idiotypes NNS
+Ball NNP NN
+orders NNS VBZ
+Cup NNP NN
+Yorker NNP
+firebombed VBN
+Krauss-Maffei NNP
+Waffen NNP
+Palmolive NNP
+channeled VBN VBD
+Embarcadero NNP
+unscrupulous JJ
+Unreported JJ
+WARS NNS NNP
+ataxia NN
+Campion NNP
+laboriously RB
+induces VBZ
+wary JJ
+Polychemicals NNP
+Carbon NNP NN
+fluorescence NN
+Fabricius NNP
+fountain NN
+Inquisitors NNS
+Happiness NN NNP
+demarcated VBN
+Voyles NNP
+Cury NNP
+Clarendon NNP
+utopias NNS
+drift-net NN JJ
+idle JJ VB
+Aero NNP
+Program NN NNP
+tadpoles NNS
+codger NN
+apportionments NNS
+teardrop NN
+Rejoins VBZ
+Introduces VBZ
+ELWOOD NNP
+decency NN
+Lighter JJR
+non-defense JJ
+currencies NNS
+fro RB
+yaks NNS
+earth-shattering JJ
+DAYTON NNP
+Abrahams NNP
+MDL-1 NN
+calorie-heavy JJ
+B-2s NNPS NNS
+English-speaking JJ
+Technical-chart JJ
+inadequate JJ
+transplanting VBG
+Tobishima NNP
+navigators NNS
+Deducting VBG
+Confusion NN
+Exchangeable NNP
+challenger NN
+REALLY NNP
+Thunderbird NNP
+occurrence NN
+World-wide JJ
+Physical NNP JJ NN
+specs NNS
+crash-scarred JJ
+whisked VBN
+Splinting NNP
+ignominious JJ
+Tyco NNP
+Khasi NNP
+Caporale NNP
+seventh JJ
+H. NNP NN
+hospitals NNS
+precludes VBZ
+drubbed VBN
+Frank NNP NNPS
+hermetic JJ
+Asahipen NNP
+swollen-looking JJ
+Rice NNP NN
+Krishnamurthy NNP
+Northrup NNP
+scouts NNS
+marine-transport NN
+Mangano NNP
+whichever-the-hell JJ
+Rayfield NNP
+spotlighting VBG
+blinking JJ VBG RB
+flax NN
+hides NNS VBZ
+Balkan NNP JJ
+phony JJ NN
+homicides NNS
+closeness NN
+stubbornness NN
+lousy JJ
+dwellers NNS
+escrow NN JJ
+Grasso NNP
+apiece RB JJ
+Ulysses NNP NN
+Highness NNP
+thrombosis NN
+Hartford-based JJ
+Greenwich-Potowomut NNP
+Morelli NNP
+pre-existent JJ
+Metric NNP
+internment NN
+prospered VBN VBD
+befitting VBG JJ
+Completion NN NNP
+Marrow-Tech NNP
+doleful JJ
+eye NN
+night-sight NN
+eventuality NN
+fusiform JJ
+Osterman NNP
+well-respected JJ
+Lipton NNP
+centaur NN
+bickering NN VBG
+lifeless JJ
+EuroTV NNP
+dogtrot NN
+vehicle-marketing JJ
+Hobday NNP
+batwings NNS
+puncturing VBG
+STS NNP
+Englishman NNP NN
+suckers NNS
+ill-understood JJ
+earnestly RB
+lockup NN
+Interestingly RB
+Traditional JJ NNP
+plunged VBD VBN
+diminutive JJ
+Kennard NNP
+CH NN NNP
+Alain NNP
+Watergate NNP
+vetoes NNS VBZ
+drawdown NN
+affectionately RB
+Overseers NNPS
+EVERYONE NN
+glumly RB
+winged VBD VBN JJ
+Sitz NNP
+avidly RB
+free-holders NNS
+tightener NN
+R's NNS
+Eli NNP
+bailed VBD VBN
+non-horticultural JJ
+CORPORATE JJ
+specialty-cheese JJ
+pounding VBG NN
+Clairol NNP
+Poynting-Robertson NNP
+formulated VBN VBD
+eons NNS
+Maryville NNP
+lodge NN VB
+brother NN
+leftovers NNS
+avions FW
+How-2 NNP
+hinge VB NN
+smiled VBD VBN
+Nike-Zeus NNP
+disasters NNS
+Nogay NNP
+hiccups NNS
+'31 CD
+Tellier NNP
+exhorting VBG
+Pitted VBN
+Munsell NNP
+Olney NNP
+Waiting VBG NNP
+grenade NN
+Dilzem NNP
+liquor NN
+Angola NNP
+R-Cape NNP
+Anti-Semitic JJ
+Index-linked JJ
+U.S.-Mexican JJ NNP
+Ellamae NNP
+somnambulates VBZ
+trunks NNS
+DeFazio NNP
+all-white JJ
+denationalization NN
+stone-gray JJ
+Plateau NNP
+Ditmars NNP
+shoe-horned VBN
+treat VB VBP NN
+illuminates VBZ
+disinterred VBN
+petroleum NN
+transparencies NNS
+repossessed JJ VBN
+Bremsstrahlung NN
+indenture NN
+DC NN
+outweighed VBD VBN
+Pleasure NN
+Scalfaro NNP
+caryatides NNS
+Glasswork NNP
+bar-staged JJ
+Britton NNP
+Millenarianism NN
+challenges NNS VBZ
+lifesaving VBG
+base-rate JJ
+goodbye NN UH
+started VBD JJ VBN VB
+bolts NNS
+Dubilier NNP
+likeness NN
+salivate VB
+conpired VBN
+elevate VB VBP
+Euro-that NN
+Thyssen NNP
+straying VBG
+Muslim NNP
+snippets NNS
+eclectic JJ NN
+high-flying JJ
+post-trial JJ
+lolling VBG
+government-encouraged JJ
+Directive NNP
+Kamehameha NNP
+Nazal NNP
+hasher NN JJR
+provocatively RB
+Brunner NNP
+labeling VBG NN
+Mondonville NNP
+of... :
+booby JJ NN
+puttable JJ
+redressed VBN
+U.N.-backed JJ
+Axxess NNP
+Liberalism NN NNP
+fair-sized JJ
+intestines NNS
+re-instated VBN
+Claire NNP
+fuller JJR
+re-evaluation NN
+rose-gold NN
+racial-preference NN JJ
+Conradically RB
+evolutionists NNS
+Grasslands NNPS NNS
+Weighted NNP
+Rathbones NNPS
+preserved VBN JJ VBD
+England-based JJ
+Lande NNP
+Deukmejian NNP
+high-crime JJ
+Schoenberg NNP
+predicament NN
+disbursement NN
+political-reform JJ
+sixteenth JJ
+portant FW
+bumper-to-bumper JJ
+unvarying VBG
+COM NNP
+log-rolled VBD
+intra-state JJ
+H.R. NNP
+sedition NN
+accidentally RB
+Davises NNPS
+DEAE NNP
+Nuttall NNP
+Wilkes VBZ NNP
+beanballs NNS
+animism NN
+endeavour NN
+fives NNS CD
+Springing VBG
+Homebrew NNP
+astringent JJ
+syntax NN
+auto-buying NN
+pop-music NN
+Anta NNP
+Reisert NNP
+pertains VBZ
+Allstates-Zenith NNP
+west-central JJ
+Delray NNP
+Mokhiber NNP
+headquartered VBN
+BLOEDEL NNP
+life-saving JJ
+Contemplating VBG NNP
+Favored JJ VBN
+worryin VBG
+Byrne NNP
+Milanoff NNP
+Gruntal NNP
+committeemen NNS
+Bobettes NNS
+high-risk JJ CD
+Meyerson NNP
+Employee NNP NN
+milled JJ
+tomorrow NN JJ RB
+writer NN
+screenwriters NNS
+Heroic NNP
+Gorski NNP
+Battle NNP NN
+consequential JJ
+no-one JJ
+SUN NNP
+eternally RB
+naczelnik FW
+soils NNS
+Feversham NNP
+Dougherty NNP
+TIME NN NNP
+non-fortress-like JJ
+palatable JJ
+delle NNP
+Forks NNS
+populace NN
+nonlinguistic JJ
+capitalist-democratic JJ
+Cantobank NNP
+workplace NN JJ
+prejudicial JJ
+affirmations NNS
+based-CAE JJ|NP
+Mideastern JJ
+undying JJ
+under-serviced JJ
+Chimie NNP
+Magpie NNP
+subcommitee NN
+short-time JJ
+armadillos NNS
+coolnesses NNS
+labor-management JJ NN
+forgoes VBZ
+arrival NN
+overcurious JJ
+long-canceled JJ
+publicly-held JJ
+indefensible JJ
+Interama NNP
+sinusoidal JJ
+cheek-by-jowl JJ
+caving NN
+bode VB VBP
+Howser NNP
+T.S. NNP
+Hyde NNP
+Kaplan NNP
+SWC NNP
+cornerstones NNS
+paraoxon NN
+Newhouse NNP
+Competition NN NNP
+grape NN
+imperceptibly RB
+Generale NNP
+Simonson NNP
+B&W NNP
+Kondo NNP
+Seasonally RB
+Lidgerwood NNP
+Ainsworth NNP
+opportunistic JJ
+b-Week NN LS|NN
+grocery-products NNS
+Shafer NNP
+McCurdy NNP
+pamphleteer NN
+wastepaper NN
+separatists NNS
+cascaded VBD
+Neo-Ecclesiasticism NNP
+whistle-blower NN
+AS NNP IN
+time-limited JJ
+beforehand RB
+cinderblock NN
+grossed VBD
+specific JJ NN
+heaviest JJS
+millenarians NNS
+expansion NN JJ
+flay VB
+subtitle NN
+Use VB NNP NN
+McKENZIE NNP
+Mulberry NNP
+multiple-state JJ
+at-risk JJ
+equalization NN
+Comanches NNPS
+reservation NN
+stockholder-owned JJ
+Coverage NNP NN
+yanking VBG
+nationals NNS
+Y-MP8-232 NNP
+endorsers NNS
+Jacques-Francois NNP
+flurry NN VBP
+theory NN
+print NN VB VBP
+gay\/bisexual JJ
+hacking JJ NN
+J.J. NNP
+insertions NNS
+god NN
+Shadow NNP NN
+Seminario NNP
+McKibben NNP
+Pastern NNP
+SIGNALED VBN
+serving VBG NN
+deserve VBP VB
+calves NNS
+unusable JJ
+Hackstaff NNP
+big-risk JJ
+spectacles NNS
+yucca NN
+Dai-Tokyo NNP
+dichotomy NN
+Democratic-controlled JJ
+Cybill NNP
+weakened VBN JJ VBD
+competitor NN
+reconcilable JJ
+'Which NN
+Affect VB
+BIGGER JJR
+Dharma NNP
+asparagus NN
+two-bit JJ
+buckskins NNS
+piranha NN NNS
+Enhancements NNP
+unloading VBG NN
+not-for-profit JJ
+property-related JJ
+Pellicano NNP
+watchmen NNS
+Indecon NNP
+Zhejiang NNP
+Unfurling VBG
+Contest NNP NN
+McKinnon NNP
+foisted VBD VBN
+Unico NNP
+Dov NNP
+leaped VBD VBN
+Hillis NNP
+--for IN
+krona NN
+immiserated JJ
+Ortho NNP
+Ritterman NNP
+university NN
+Pendleton NNP
+Wally NNP
+Ewan NNP
+Kresa NNP
+Artfully RB
+Urbanization NN
+Yankelovich NNP
+Sumatra NNP
+child-cloud NN
+Depositors NNS
+gloats VBZ
+York-Moscow NNP
+methanol NN
+pyorrhea NN
+Norimasa NNP
+bottom-fishing NN
+hashes NNS
+DeMyer NNP
+Narrowly NNP
+groundless JJ
+heathenish JJ
+gm NN
+thereabouts RB
+alloted VBN
+yyyy NN
+parts-engineering JJ
+business-communications NNS
+Marina NNP
+turbo NN
+off-color JJ
+champion NN JJ VB VBP
+Double-digit JJ
+cribbing VBG
+Abello NNP
+Shinn NNP
+Pelto NNP
+hedging VBG VBG|JJ JJ NN
+pellets NNS
+semi-autonomous JJ
+boarding VBG NN
+ram VB NN
+Hens NNS NNPS
+lookalike JJ
+jet-black NN
+ca. IN NN
+Bible-loving JJ
+CI NNP
+Rejection NN
+plenum NN
+mill-pond NN
+identifications NNS
+theories... :
+pin-pointed VBN
+Maoists NNPS
+Haile NNP
+Spikes NNP
+Menahem NNP
+Darrow NNP
+Tsarevich NNP
+aired VBN VBD
+Murasawa NNP
+chambers NNS
+collusion NN
+Allay NN
+Rider NNP
+desisted VBD
+organization-position JJ
+Insects NNS
+Savonarola NNP
+hill NN
+Merv NNP
+gobbling VBG
+Indirect JJ
+Chanel NNP
+standing-room NN
+Frankfort NNP
+Smuzynski NNP
+Mariano NNP
+Neb. NNP
+Roine NNP
+slowness NN
+sticle VB
+a-Ex-dividend NN
+RJR-style JJ
+sweeping VBG JJ NN
+Mood NNP
+Participants NNS
+gallons NNS
+rocker NN
+juvenile JJ NN
+Hiroshi NNP
+smoked-ham NN
+alcoholic JJ NN
+Nazzella NNP
+widows NNS
+undersea JJ
+Communities NNPS NNS
+hardener NN
+L.B. NNP
+earnings-related JJ
+Farewell NNP
+Raspberry NN
+detail NN VB
+Berger NNP
+devotes VBZ
+annnouncement NN
+empirical JJ
+depressing JJ VBG
+Luisa NNP
+drawn-out JJ
+defaulters NNS
+Longley NNP
+Ill-considered JJ
+Oafid NNP
+plasticity NN
+Milhaud NNP
+preponderating JJ
+Gladius NNP FW
+Tabellen FW
+professions NNS
+carton NN
+DD NNP
+deal NN VB VBP
+writes VBZ
+collapsing VBG
+Istat NNP
+semiautomatic JJ
+HOMEOWNERS NNS
+Sibaral NNP
+mischarging NN
+Alfredo NNP
+Kenilworth NNP
+nervously RB
+Eagle-Berol NNP
+comet-like JJ
+discovery NN
+aurally RB
+Miss. NNP
+Industrywide JJ RB
+Shoettle NNP
+abstract JJ NN VBP
+Valin NNP
+Ludlow NNPS
+intertwined VBN JJ
+regretted VBD VBN
+Benesi NNP
+Staten NNP
+Gynecologists NNS
+thesaurus NN
+accompnaying VBG
+Stegemeier NNP
+Oct NNP
+Darien NNP
+front-runner NN
+cabled VBD
+Sark NNP
+ore NN
+supra-personal JJ
+painted VBN VBD JJ
+EGA NNP
+rupee NN
+heat-processing JJ
+unpublishable JJ
+percussive JJ
+cubes NNS
+ecological JJ
+DISTRICT JJ
+apparel-maker NN
+Proudfoot NNP
+Encourage VB VBP
+Heaven NNP NN UH
+skywave NN
+doorkeeper NN
+Laserscope NNP
+circumscriptions NNS
+paws NNS
+occasion NN VB
+Kristol NNP
+Comfort NNP NN
+facings NNS
+Cardiac NNP
+Lasswitz NNP
+Tatman NNP
+Esquire NNP
+mischarged VBD
+segregationists NNS
+ESTATE NN NNP
+defects-office NN
+retardation NN
+gamebird NN
+Allstates NNP
+Ravenswood NNP
+housing-loan NN
+Goldman NNP
+Apex NNP
+sniggeringly RB
+Spycket NNP
+Talyzin NNP
+country-club NN
+Oei NNP
+KODAK NNP
+fuck VB
+crafted VBN VBD
+Tasaki-Riger NNP
+d'Administration NNP
+Marjorie NNP
+jurisprudence NN
+Sheehy NNP
+separators NNS
+KSI NNP
+Universal NNP JJ
+FAST-FOOD NN
+Havens NNP
+moistened JJ VBD
+slouch NN
+rusticated VBN
+camping-out JJ
+Powder NNP NN
+village NN
+understand VB VBP
+Butterworth NNP
+skiers NNS
+Thad NNP
+panjandrums NNS
+Canteloube NNP
+Williamsesque JJ
+Whatever WDT
+Terex NNP
+baritone NN JJ
+Rewarding NN
+hairpieces NNS
+destination NN
+scenario NN
+Banc NNP
+Miringoff NNP
+singly RB
+proverbial JJ
+Sufi JJ
+Record NNP NN VB
+fans NNS VBZ
+TRC NNP
+Arabia NNP
+Leeward NNP
+buy-backs NNS
+lengthy JJ
+overpower VB
+misconstruction NN
+LIMITED JJ NNP
+Select NNP VB
+Dissenting JJ
+Bofors NNP
+Cruise NNP NN
+suggestive JJ
+distortions NNS
+Garstung NNP
+mosquito-plagued JJ
+abuser NN
+Explain VB
+T-bills NNS
+repressive JJ
+B-1 NNP JJ
+crew NN
+poodles NNS
+rogue JJ
+Zendo NNP
+tax-compliance NN
+franked JJ VBN
+favorer NN
+Toler NNP
+starters NNS
+irreconcilable JJ
+rubout NN
+Bourses NNP
+fertilizer NN
+ridiculed VBN
+Willam NNP
+cooler JJR NN
+d'Harnoncourt NNP
+Almaden NNP
+Hussein NNP
+Perkin-Elmer NNP
+Georgia-Pacific NNP
+chemical NN JJ
+masterworks NNS
+Delon NNP
+Romantic JJ NNP
+iridium NN
+Discussing VBG
+scissoring VBG
+Kiep NNP
+Quod FW
+machete NN
+flat-to-lower JJ
+lighter'n JJR|IN
+footman NN
+dawn NN VB
+sadistic JJ
+precursors NNS
+Livingston NNP
+week-end NN
+co-founder NN
+co-wrote VBD
+Djemaa NNP
+industry-standard JJ
+Doors NNS
+niche-market NN
+gourmet-food NN
+double-A JJ NNP NN
+antifundamentalist JJ
+Vernitron NNP NN
+Authority NNP NN
+flowing VBG JJ
+unenthusiastic JJ
+semi-professionally RB
+ex FW JJ
+Debra NNP
+shavings NNS
+governing VBG JJ NN
+heredity NN
+Plastow NNP
+Compulsory JJ
+Farge NNP
+grunted VBD
+Ryder NNP
+kraft-pulp JJ
+Abbett NNP
+Constants NNS
+mile-long JJ
+converse VB NN
+internal-external JJ
+climates NNS
+Ludmilla NNP
+hot-cold JJ
+R/NNP.I. NN
+AT IN NNP
+Tateisi NNP
+automation NN
+Unprovable JJ
+retread NN
+burr NN
+Finishing VBG
+Stockgrowers NNPS
+clerking NN
+work-success NN
+Taiwan-born JJ
+Humiliation NN
+sinewy JJ
+Froissart NNP
+pear NN
+dutifully RB
+Siege NNP
+Breger NNP
+wave NN VB VBP
+Ledford NNP
+redeposition NN
+Amylin NNP
+Unified NNP
+Public NNP JJ NN
+shabbily RB
+Novosti NNP
+Pavlov NNP
+Poling NNP
+Chemische NNP
+NEA NNP
+Geely NNP
+polished VBN JJ VBD
+Suggs NNP
+humaneness NN
+implantation NN
+innocents NNS
+CPI NNP
+overplanted VBN
+well-balanced JJ
+Burwell NNP
+angry JJ
+Dow NNP
+lithotripter NN
+Guadalcanal NNP
+DyDee NNP
+Pavletich NNP
+hourlong JJ
+SOFT JJ
+amplify VB
+Subverts NNP
+Package NN
+instills VBZ
+smoothbore NN
+Christic NNP
+non-performing JJ
+COOKE NNP
+overriding VBG JJ
+flirting VBG
+Living NNP VBG JJ
+providence NN
+undertake VB
+less-hurried JJ
+brightest JJS
+psychologically RB
+John-and-Linda NNP
+Pac NNP
+Mexico-watchers NNS
+JWP NNP
+antipodes NNS
+Socialist NNP JJ NN
+Valentino NNP
+Teich NNP
+polarity NN
+LOC NNP
+Pre-inaugural JJ
+instrumentals NNS
+Chicago-Helsinki NNP
+turnouts NNS
+Coupes NNP
+Gutfeld NNP
+gymnasium-sized JJ
+Asman NNP
+Splendid JJ
+sacadolares FW
+marauding VBG
+Peterson-Kroll NNP
+softly RB
+Krzysztof NNP
+alliances NNS
+Olympus NN
+Provide VB VBP
+FLYING VBG
+paralanguage NN
+leach VB
+transplantable JJ
+sale-lease-back JJ
+petting NN
+ran VBD
+Member NN NNP
+misrepresent VB
+Reputedly RB
+mountaineering NN
+photofinishers NNS
+most-obvious JJ
+Felsher NNP
+Oyster NNP NN
+fled VBD VBN
+Huddle NN
+disable VB
+displaces VBZ
+Encare NNP
+developer NN
+Lyondell NNP
+Roach NNP
+Bosket NNP
+reporting VBG NN
+blue JJ NN
+dumpsters NNS
+obligatory JJ
+cultural-reform NN
+Raiders NNPS NNP NNS
+Clayton-Pedersen NNP
+nirvana NN
+Median JJ
+saltbush NN
+shavers NNS
+near-perfect JJ
+nation NN
+balloonists NNS
+Hirschman NNP
+Freshwater NNP
+skivvies NNS
+worsen VB
+Kumble NNP
+Daimler-Benz NNP
+plateful JJ
+big-stakes JJ
+prodigy NN
+Decimus NNP
+Faberge NNP
+ever-lovin JJ
+Adens NNP
+melanderi NNPS
+non-objects NNS
+Menshikov NNP
+pull VB VBP NN
+number-one JJ
+CMZ NNP
+Crusader NNP
+Avoid VB
+Mayland NNP
+Hallador NNP
+Wolohan NNP
+bedded VBN
+'Well RB UH
+Lafontant NNP
+glitter NN
+Alito NNP
+anesthetically RB
+hopeless JJ
+high-security JJ
+Hammett NNP
+Rothe NNP
+Costley NNP
+simplistic JJ
+dining NN JJ VBG
+agitate VBP
+Caution NN VB
+Pittsburghers NNPS
+blowfish NN
+Dylan NNP NN
+conclave NN
+tags NNS VBZ
+residency NN
+parapets NNS
+angst NN
+Merriam-Webster NNP
+Mankowski NNP
+Villages NNS
+Mindlin NNP
+resolves VBZ
+uproariously RB
+blower NN
+once-a-month JJ
+double-B JJ
+viaducts NNS
+Demonstrating VBG
+Stevenson NNP
+Stark NNP
+hunker VB
+coaxes VBZ
+subordinate JJ NN VB
+mire NN
+Corzine NNP
+niche-itis,`` ``
+Kalin NNP
+rapier NN
+alleyways NNS
+Juilliard NNP NN
+DE NNP
+confiscated VBN VBD
+letter NN
+Monk NNP
+casuistry NN
+McFee NNP
+Dictionary NNP NN
+bushes NNS
+Cotton NNP NN
+abuses NNS
+garbage-incinerator NN
+reinstall VB
+diarrhoea NN
+Hartsfield NNP
+Fabrri NNP
+Alarmed JJ VBN
+Tallahoosa NNP
+Dayna NNP
+Mitch NNP
+Gassee NNP
+DLC NNP
+muggers NNS
+hanging VBG JJ NN
+MacDougall NNP
+landmarks NNS
+beach-house NN
+fiendish JJ
+NetWare NNP
+stubble JJ NN
+protected VBN JJ VBD
+joss NN
+Band NNP NN
+shabby JJ
+ooze NN VB
+pink-cheeked JJ
+endorsed VBN VBD
+Petite JJ
+renewing VBG
+unhappy JJ
+Exportkredit NNP
+Rich NNP JJ
+terrorism NN
+McCartin NNP
+slosh VB
+hideous JJ
+deerskins NNS
+A.V. NNP
+Lorimar NNP
+aviator NN
+pool-side JJ NN
+overcharges NNS
+cross-selling NN
+Hawley NNP
+Ecole NNP
+Cadwell NNP
+loathing NN VBG
+Malraux NNP
+Baku NNP
+anthropologist NN
+Eidsmo NNP
+Appendix NN
+Kropp NNP
+platitudinous JJ
+Mulford NNP
+LEVERAGED VBN
+Nyack NNP
+marketing-communications NNS
+bottom-down JJ
+MacPhail NNP
+strategists NNS
+Duchy NNP
+patterned VBN JJ
+Glen NNP
+nonmetallic JJ
+Naumberg NNP
+powerlessness NN
+Thrifts NNS
+Toobin NNP
+one-iron JJ
+top-performing JJ
+Westbrook NNP
+conformations NNS
+Sosnoff NNP
+one-week-old JJ
+writhe NN VB
+afield RB
+bein VBG FW
+Yorktown NNP
+apocryphal JJ
+bleating VBG
+effigy NN
+Navajos NNPS
+Zambian JJ
+Schnabelian JJ
+Different JJ NNP
+rbi NNS
+Counter NNP
+Johansen NNP
+B-2 NNP JJ NN
+backhome NN
+mental-illness NN
+bedground NN
+days. NNS NN
+Beautiful JJ NNP
+countenances NNS
+approximate JJ VBP NN VB
+ophthalmologists NNS
+EDS NNP
+Gosbank NNP
+beavertail NN
+rubber-like JJ
+get-togethers NNS
+Caisse NNP
+graciously RB
+tempestuous JJ
+Waikoloa NNP
+show-piece JJ
+poetry-and-jazz NN JJ
+Temporary JJ NNP
+boilers NNS
+yip NN
+fabricators NNS
+celestial JJ
+propose VB VBP
+INTENSIVE JJ
+machines NNS
+inducing VBG
+nautical JJ
+disapprobation NN
+pored VBD VBN
+H/NNP.A. NN
+Takahashi NNP
+rocket NN
+adviser NN
+Strand NNP
+incompatible JJ
+thrived VBD VBN
+isthmus NN
+Vedrine NNP
+peas NNS
+authoritatively RB
+Halsmuseum NNP
+drug-fighting JJ
+declared VBD VBN JJ
+incapacitated VBN
+Bishop NNP
+Devol NNP
+Marinvest NNP
+detain VB
+seaweed NN
+M.W. NNP
+ever-worsening JJ
+Magellan NNP NN
+anylabel NN
+DKNY NNP
+escalate VB VBP
+automobile-tire JJ
+philosopher NN
+confirmations NNS
+Crusades NNPS
+upwards RB NNS
+fist NN RB
+Twenty-seven JJ
+Pinter NNP
+indispensable... :
+Available JJ
+Branson NNP
+Mozambiquans NNS
+Pleasanton NNP
+Racketeer NNP
+Curtain NNP
+non-casino JJ
+O'Shea NNP
+Borrioboola-Gha NNP
+punitive JJ
+underneath IN NN
+Yemen NNP
+Refinancing NN
+flagrante FW
+Sture NNP
+Bicycle NNP NN
+Henze NNP
+Virdon NNP
+deserts NNS VBZ
+emissaries NNS
+not-quite-mainstream JJ
+saffron NN
+cappuccino NN
+descendent NN
+Sonata NNP NN
+arteries NNS
+corollary NN
+noisily RB
+lowest-cost JJ JJS
+Circular NNP JJ
+Wakui NNP
+Defamation NNP
+timpani NNS
+non-pipeline NN
+Fagershein NNP
+spotted VBD VBN JJ
+double-C NN
+earthy JJ
+old-world JJ
+wage-setter NN
+food-poisoning NN JJ
+killin VBG
+balkanized JJ
+Creditbanken NNP
+highest-priced JJS
+brandy NN VB
+finger-sucking NN
+Corcoran NNP
+proto-Yokuts NNS
+futurist NN
+slightest JJS
+first-three JJ
+ethereal JJ
+eventual JJ
+threemonth JJ
+Kerich NNP
+Oceanography NNP
+drouth NN
+honesty NN
+FLARE-OFF NN
+filmmaking NN
+providential JJ
+ULI NNP
+expansionary JJ
+practised JJ
+threes-fulfilled NN
+Illiterate JJ
+intimated VBD VBN
+army NN
+Beame NNP
+ecumenist NN
+flee VB
+tremendous JJ
+deploying VBG
+prize-fight JJ
+Generali NNP
+freebooters NNS
+jotted JJ
+tornado NN
+chefs NNS
+Itch VB
+Cosmair NNP
+crib NN JJ
+MTCR NNP
+guideline NN
+metaphor NN
+Berardi NNP
+cable-television-equipped JJ
+dean NN NNP
+fixtured VBD
+Financial NNP JJ
+mansion NN
+kava FW
+whiskery JJ
+Astros NNPS NNP
+Garland NNP
+Brachfeld NNP
+plays VBZ NNS VBP
+Joan NNP
+ft NN
+KOFY-FM NNP
+hinted VBD VBN
+Perfecta NNP
+dumb JJ
+Flanagan NNP
+ominously RB
+Huxtable NNP
+overt JJ
+unifier NN
+Youngberg NNP
+Lubbock NNP
+Fishery NNP
+proportions NNS
+acquisition... :
+chain-of-command NN
+graph NN
+Duchenne NNP
+barons NNS
+completions NNS
+Swissmade JJ
+Buenas NNP
+BP NNP
+ceaseless JJ
+Contemplation NN
+earthlings NNS
+Christie NNP NN
+globally RB
+Meana NNP
+caricaturist NN
+non-encapsulating JJ
+Arabic NNP JJ
+Biking NNP VBG
+re-creates VBZ
+nurses NNS
+prevalent JJ NN
+high-performing JJ
+EDUCATION NN
+pummel VB
+bubbly JJ NN
+Maquilas NNP
+Oregonians NNPS
+citywide JJ
+industrial-equipment NN
+Dataquest NNP
+pyramid NN VB
+hideout NN
+yesteday NN
+Huhmun NNP
+NBS NNP
+Pantages NNS
+moods NNS
+Class NNP NN
+Plymouth NNP NN
+Futures NNS NNP NNPS
+whiskey-baritoned JJ
+housing NN VBG JJ
+behaviors NNS
+Philip NNP
+Gevergeyeva NNP
+Demler NNP
+Toit NNP
+Quesadas NNPS
+Inspections NNP
+SLOGANS NNS
+valuable JJ
+Tewary NNP
+mall NN
+Trego NNP
+re-emerged VBD
+consumer-analgesic JJ
+hither RB
+go VB JJ NN RP VBP
+reflect VB VBP
+impressions NNS
+seven-eighths NNS JJ
+Hainan NNP
+pre-history JJ NN
+perfumes NNS
+re-emphasise VB
+overcollateralized VBN
+roll-out NN
+acceptable JJ
+Cafeteria NNP
+CONGRESS NNP
+ligament NN
+touchstones NNS
+new-money JJ
+BUSH NNP
+sequester NN VB VBP
+Sashimi FW
+Lehner NNP
+Gram-negative JJ
+accountability NN
+less-dramatic JJ
+co-defendant NN
+reallocated VBN
+vessels NNS
+Mahwah NNP
+half-million JJ
+Gap NNP NN
+scheming JJ VBG
+Pointer NNP
+fifteenth-century JJ
+majors NNS
+Registry NNP
+ISN'T VBZ
+Molinari NNP
+tangible JJ
+Bane NNP NN
+Activity NN NNP
+contraction-extension JJ
+stooges NNS
+Asimov NNP
+Wada NNP
+decimals NNS
+E.F. NNP
+broadcasting NN VBG VBG|NN
+no-tax-increase JJ
+bunched VBN VBD
+urgings NNS
+WHEC-TV NNP
+smirked VBD
+buoyant JJ
+Feliciano NNP
+Carden NNP
+Rivers NNPS NNP NNS
+nonshifters NNS
+fruit-juice NN
+T34C CD
+BENEFITS NNS
+cohere VB
+Shedding VBG
+Small-lot JJ
+moderates NNS VBZ
+Banawan NNP
+Paranormal NNP
+byzantine JJ
+Hector NNP
+unrecognizable JJ
+scaffolding NN
+Citic NNP JJ
+advises VBZ
+Thruston NNP
+shroud VBP
+Bangs NNP
+paling VBG
+Vending NN
+Shimbun NNP
+act... :
+Kaysersberg NNP
+Orion NNP
+mana NN
+farce NN
+Mess NN
+Ranking NN VBG
+Souvanna NNP
+dioramas NN
+Forensic NNP
+Slutsky NNP
+Catalonians NNPS
+tilt NN JJ VB
+woolly JJ
+novels NNS
+thefin VBG
+Shagan NNP
+Felons NNS
+Everly NNP
+intentional JJ
+massacred VBD VBN
+anti-program JJ
+Birdie NNP
+withered JJ VBN
+Harmonizing NNP
+trucks NNS VBZ
+provocateurs NNS
+Cut VB NNP
+harassment NN
+compulsions NNS
+suitably-loaded JJ
+near-unmatched JJ
+parrot-like JJ
+massages NNS
+countered VBD VBN
+Belated JJ
+conflagration NN
+queen NN
+feeds VBZ NNS
+space-based JJ
+declines NNS VBZ
+unachieved VBN
+prior RB NN JJ
+Bevel VB
+cliffhanging VBG
+Mom NN NNP
+develop VB VBP
+Depository NNP
+Dumping NN
+Liberal-Radical NNP
+Korobytsins NNS
+Creswell NNP
+Lead JJ NN VB
+sophisticated JJ
+HOLDING NNP
+Histochemistry NNP
+salt-crusted JJ
+Lollipops NNS
+insulting JJ VBG
+scour VBP VB
+B-3 JJ NNP
+Stratton NNP
+blood-alcohol NN
+dogged VBN JJ VBD
+Export NNP NN
+GRiD NNP
+HENRY NNP
+stamp NN VB
+nephew NN
+shootout NN
+Chiang NNP
+EDT NNP
+non-forthcoming JJ
+avoidance NN
+entitled VBN VBD
+horse-packing JJ
+dust-thick JJ
+chauffeured VBN
+So-called JJ NNP
+Agrippa NNP
+befriended VBD VBN
+Safety NNP NN
+basket NN
+Ballwin NNP
+peacemakers NNS
+blooper NN
+Op. NNP NN
+Kyo NNP
+Delivery NN NNP
+spelling-only JJ
+watts NNS
+integrated-technologies NNS
+Riiiing UH
+Aspects NNPS
+felonious JJ
+Hough NNP
+poets NNS
+barrel-per-day JJ
+Buber NNP
+Dilenschneider NNP
+Arcadipane NNP
+schizophrenia NN
+Taken VBN
+greatness NN
+necessary JJ
+four-o'clock RB
+dependent-care JJ
+empowered VBN VBD
+Stanhope NNP
+resist VB VBP
+sewage-polluted JJ
+slugged VBD VBN
+Congdon NNP
+Somerville NNP
+Pagemaker NNP
+unifies VBZ
+Deemed VBN
+McCleod NNP
+examiantion NN
+dearly RB
+reconciling VBG
+European-minded JJ
+dynasty NN
+complex JJ NN
+Government-blessed JJ
+Bismark NNP
+activating VBG
+Tartuffe NNP
+actuary NN
+inventor NN
+Jose-Maria NNP
+Few JJ NNP
+expunge VB
+Persona NNP
+duces FW
+Squad NN NNP
+Budgeting NN NNP
+Going VBG NNP
+Costanza NNP
+Moog NNP
+tartan NN
+Change NNP NN VB
+bibles NNS
+mirroring VBG NN
+canyons NNS
+million-dollar JJ
+chemcial JJ
+Weithas NNP
+expulsion NN
+event-risk JJ NN
+Insiders NNS
+Resistance NNP NN
+stocks-index JJ
+Literacy NN
+Wozniak NNP
+sinister JJ
+Valium NNP
+another DT JJ NN
+Domino NNP
+Izquierda NNP
+Reinhardt NNP
+Clever JJ NNP
+NEC NNP
+motorcycle NN
+Housewares NNPS
+Chayet NNP
+cliffs NNS
+Helsinki NNP
+Madding NNP
+Centerior NNP
+legerdemain NN
+rebellion NN
+tramped VBD
+Weber-controlled JJ
+Maluf NNP
+seven-volume JJ
+Semiconductor NNP NN
+Cowper NNP
+Joao NNP
+Aristech NNP
+authentication NN
+wuh VBP
+Nite NNP
+earthquake-proof JJ
+Hardball NNP
+Ante NN
+Bears-Cleveland NNP
+inquisitive JJ
+Clozaril NNP
+Kwasha NNP
+grant NN VBP VB
+realistically RB
+dispense VB VBP
+marinating VBG
+conversing VBG
+Bacharach NNP
+Destinations NNS
+intervention... :
+perpetrator NN
+Pae NNP
+retrieve VB VBP
+group-health NN
+Shycon NNP
+disguise VB VBP NN
+I.N.D. NNP
+inputs NNS
+appestat NN
+perpetuity NN
+Aerospace NNP NN
+doctored VBN
+excessively RB
+Birk NNP
+limitation NN
+Cleaned VBN
+Elm NNP
+COULDN'T NNP
+information-cell NN
+pickoffs NNS
+contrition NN
+knife NN
+Actual JJ
+Pointes NNP
+SUPERPOWERS NNPS
+Told VBN VBD
+Off IN NNP RB RP
+Page NNP NN
+hind JJ
+zapping VBG NN
+Sharpshooters NNPS
+Chilean JJ
+sticking VBG NN JJ
+vector NN
+Bickel NNP
+G7 NNP
+rap NN VBP
+recouped VBD VBN
+underwrote VBD NN VBP
+Belge NNP
+Xtra NNP NN
+more-discriminating JJ
+two-minute JJ
+explode VB VBP
+OUSTED VBN VBD
+Pankyo NNP
+Nickles NNP
+U.S.A. NNP NN
+transfers NNS VBZ
+incipience NN
+Shrug NN
+loan-loss NN JJ
+leaving VBG NN
+overindulged VBD
+regarded VBN JJ VBD
+nonpublic JJ
+N/NNP.Y.C. NNP
+propfan NN JJ VB
+nationalisms NNS
+locks NNS VBZ
+high-backed JJ
+once-powerful JJ
+Marine NNP JJ NN
+immigrated VBD VBN
+Eugene NNP
+Cleveland-based JJ
+celebrate VB VBP
+tribunal NN
+transversally RB
+yields NNS VBZ
+Hsieh NNP
+schizophrenic JJ NN
+sentry NN
+intrapulmonary JJ
+boatloads NNS
+Belo-Universal NNP
+Indicted VBN
+Urn NNP
+bribe NN VB
+shopping NN JJ VBG
+respectfully RB
+interchange NN
+Iain NNP
+inequalities NNS
+Delaney NNP
+mid-June NNP NN
+manufacture VB NN VBP
+widegrip JJ
+war-ridden JJ
+unfavorably RB
+commissioned VBN VBD
+codified VBN
+unaudited JJ
+cluster NN VBP
+Silently RB
+Nationally RB
+Two CD LS NNP
+convocation NN
+eyeing VBG
+showmanship NN
+Beall NNP
+ever-faster JJ
+chariot NN
+crossways RB
+unplagued VBN
+wry JJ
+defense-electronics NNS JJ
+Diversey NNP
+mutant JJ
+reformatory NN
+rock'n'roll NN
+viewing VBG NN
+Fares NNS
+Monday-morning JJ
+never RB RBR
+Designcraft NNP
+Mongan NNP
+prefixes NNS
+whistled VBD VBN
+oxcart NN
+dilemma NN
+optimization NN
+Furhmann NNP
+anti-wrinkling JJ
+unhindered JJ
+nut NN
+Acropolis NNP
+dreamed VBD VBN
+Goldline NNP
+SynOptics NNPS
+desktop-publishing NN
+Fiap NNP
+Kyoto NNP
+red-and-yellow JJ
+marriageables NNS
+recipes NNS
+suitors NNS
+Panza NNP
+Cuts NNS
+Gari NNP
+multistage JJ
+staircases NNS
+MERCHANTS NNPS
+Silber NNP
+precursory JJ
+disturbances NNS
+familar JJ
+paper-company JJ NN
+Stash NNP
+Laying VBG NNP
+Dresylon NNP
+invigorating VBG
+Arboretum NNP
+disregarding VBG
+bothers VBZ
+balmy JJ
+Mecca NNP
+LYONs NNS
+aimless JJ
+putout NN
+Lowell NNP
+Chateaubriand NNP
+accessories NNS
+Pornographer NNP
+MANAGEMENT NNP
+Pile NNP
+Devon NNP
+possiblity NN
+publishers NNS
+Pisces NNP
+public-relations NNS JJ NN
+voltaic JJ
+elicited VBN VBD
+steadier JJR
+loner NN
+price-adjusted JJ
+BTR NNP
+Atlantes NN
+half-swamped JJ
+PARTNERS NNS NNP NNPS
+CL NNP
+heaters NNS
+Lee-based JJ
+well-operated JJ
+Stater NNP
+elaborating VBG
+Selkirk NNP
+dovish JJ
+smug JJ
+leisurely JJ RB
+Pecos NNP
+formulas NNS
+rare JJ
+Francois-Poncet NNP
+commercialism NN
+Baldness NN
+gems NNS
+mid-Victorian NNP
+survey NN VB VBP
+social-action NN
+Luise NNP
+Homecoming NN NNP
+Micronyx NNP
+LaBella NNP
+helicopter-borne JJ
+capacity-controlled JJ
+effortlessly RB
+Prospects NNS
+decorators NNS
+stinks VBZ
+five CD LS
+Rusting VBG
+recur VB VBP
+perfunctory JJ
+Esnards NNPS
+mercer NN
+kosher JJ
+Germano-Slavic JJ
+soil NN VB
+reserve-building NN
+consents NNS VBZ
+cash-squeezed JJ
+Fork NNP
+waypoint NN
+summiteers NNS
+Burger NNP
+mournfully RB
+hot-colored JJ
+struggled VBD VBN
+revenuers NNS
+Kihei NNP
+herbicides NNS
+wakening VBG
+Wised NNP
+Dante NNP NN
+cantilevers NNS
+REFLECTIONS NNP
+Fairless NNP
+Pickens NNP
+Ramsey NNP
+biotechnology-based JJ
+Mon NNP
+cabs NNS
+stuffed VBN JJ VBD
+cost-billing JJ
+radiates VBZ
+post-reapportionment JJ
+skimmers NNS
+dark-green JJ
+unchanging JJ
+cows NNS
+DG NNP
+dyslexia NN
+Progressive NNP JJ
+stopping VBG NN
+Badlands NNS
+serendipity NN
+badgering VBG
+deterrents NNS
+nadir NN
+blunted VBD JJ VBN
+B-4 NNP
+Clements NNP
+Harpo NNP
+Litman\/Gregory NNP
+b-Based VBN JJ
+Pembroke NNP
+Perhaps RB
+Sanatorium NNP
+sublet VB VBN
+overdressed JJ
+Cudahy NNP
+anti-Semitism NN NNP JJ
+Londono NNP
+Viewmaster-Ideal NNP
+mauve JJ
+Mac-Reynolds NNP
+Bikini NNP
+Merz NNP
+major-burden-to-the-planet NN
+symbolical JJ
+borderlands NNS
+Cushman NNP
+riskiest JJS
+blouse NN
+drug-smuggling JJ
+drought-inspired JJ
+inflated JJ VBD VBN
+Utopian NNP JJ
+if IN
+normalize VB
+Bulge NNP
+Tsunami NNS
+bargain-priced JJ
+FAI NNP
+corruption NN
+al. NNS
+Cananea NNP
+isocyanate-labeled NN
+preppy JJ
+Siemaszko NNP
+Proves VBZ
+comparison NN
+mainlander NN
+Akers NNP
+Sotheby NNP
+videocameras NNS
+Tchaikovsky NNP
+CNW NNP
+sultry JJ
+shellshocked VBN JJ
+Alabamans NNS
+Miniver NNP
+hyperactive JJ
+impurity-doped JJ
+movie-distribution NN
+Ride VB NNP
+Firestone NNP NN
+yg-globulin NN
+Bradbury NNP
+Equinox NNP
+Agile FW JJ
+ingest VBP VB
+arose VBD
+half-speed JJ
+aggressor NN
+subspace NN
+enterotoxemia NN
+recessed VBN
+homeequity NN
+restructuring NN VBG JJ VBG|NN
+Final JJ NNP
+Leonardo NNP
+response NN
+smoothly RB
+declamatory JJ
+market-affecting JJ
+Eppler NNP
+sentimentality NN
+Recounting VBG
+Raymondville NNP
+Delfim NNP
+FAMILY NN
+tolerated VBN VBD
+Reality NN NNP
+STODGY JJ
+Leshem NNP
+Atchinson NNP
+Cominco NNP
+Neesen NNP
+TOW NN
+latched VBN VBD
+NED NNP
+repeater NN
+campground NN
+Mutsch NNP
+Gillette NNP NN
+salivary JJ
+three-week JJ
+strenuously RB
+pastel-like JJ
+Evident JJ
+cross-functional JJ
+US$ $
+DeShano NNP
+Cracking VBG
+Bohemian NNP
+memoirs NNS
+space-station NN JJ
+maliciously RB
+crystallized VBD VBN
+dormitories NNS
+desperadoes NNS
+fierceness NN
+special-interest JJ NN
+incentive NN JJ
+home-care JJ NN
+pulse-timing JJ
+Canoe NNP
+tabulate VB
+mixologists NNS
+guttural JJ NN
+US72.3 CD
+Bambi-syndronists NNS
+pulsed VBN
+Rubinfien NNP
+unfertilized VBN JJ
+opinionated JJ
+Boy-Marquita NNP
+therefor RB
+bawhs NNS
+dramatizes VBZ
+Wilkey NNP
+solicitude NN
+report NN VBP VB
+forked JJ VBD VBN
+therapies NNS
+juice-storage JJ
+carven VBN
+swimmers NNS
+Meineke NNP
+describing VBG
+CRA NNP
+oat-based JJ
+watchmaker NN
+Strang NNP
+'I've NN NN|VBP
+Maxima NNP
+absolving VBG
+bulk-chemical NN|JJ JJ
+Napa NNP
+Pancho NNP
+Lefebvre NNP
+semi-conscious JJ
+China-investment JJ
+prevailing VBG JJ
+Ukropina NNP
+aptitude NN
+hardening VBG
+fundamantal JJ
+IBM-remarketer JJ
+Nazar NNP
+SkyWest NNP
+eight-month-old JJ
+Bang NNP
+parasol NN
+hearsay NN
+arpeggios NNS
+pulverizing VBG
+ricocheted VBD
+'We PRP NNP
+Rick NNP
+negociant NN
+Tanaka NNP
+profoundly RB
+profuse JJ
+textbooks NNS
+Westborough NNP
+d'identite FW
+butterfat-rich JJ
+echoed VBD VBN
+population... :
+him PRP
+watt NN
+Kartalia NNP
+Copland NNP
+Brookmeyer NNP
+Luke NNP
+nether JJ CC
+chirpy JJ
+Besides IN RB
+Seacomb NNP
+Early-morning JJ
+photogenic JJ
+variants NNS
+citizenry NN
+artwork NN
+Anhalt-Bernburg NNP
+States NNPS NNP NNS
+Garber NNP
+Cutler NNP
+vaudeville NN
+Coen NNP
+cleaner JJR NN
+emulate VB
+Addressing VBG
+calumny NN
+cold-bloodedly RB
+wheel-loader JJ
+musta MD
+DEFICIT NNP
+opt VB VBP
+Shoichiro NNP
+well-versed JJ
+Faulder NNP
+Kartasasmita NNP
+Diego-based JJ NNP
+Comfed NNP
+unabashed JJ
+liquidator NN
+Cleland NNP
+scout NN VB
+supply\/demand NN
+torquer NN
+sped VBD VBN
+Whipsawed JJ
+High-Grade NNP
+Wheat NNP JJ NN
+WAO NNP
+warning NN VBG
+uncomplainingly RB
+toughens VBZ
+Erasmus NNP
+Woods NNP NNPS
+Buchner NNP
+Litton NNP
+Salinas NNP
+Lesser NNP
+Spoken NNP
+Abbe-Direct NNP
+job-training NN
+Gravely NNP
+pre-publication JJ
+familiarity NN
+Yoon NNP
+symbolizing VBG
+Batterymarch NNP
+tibialis NNS
+Cinderella NNP
+hijacking NN VBG
+inky-brown JJ
+Brien NNP
+oddity NN
+statues NNS
+non-algebraically JJ
+Nicolo NNP
+Jihad NNP
+Tracking NNP VBG
+misclassified VBN
+Owens-Ilinois NNP
+assertions NNS
+H.S. NNP
+corrosion NN
+hydrogen NN
+beckoned VBD VBN
+decorativeness NN
+globalizing VBG
+broiling VBG
+couched VBN VBD
+dependents NNS
+Nutley NNP
+Leaf NN NNP
+pathos NN
+hairless JJ
+ruining VBG
+Becca NNP
+Intercede VB
+Olechowski NNP
+dawning VBG NN
+sell-off NN NNS
+McCarthy NNP
+methodsm NN
+minehunter NN
+depresses VBZ
+karaoke FW NN
+boomerang NN VB
+interlacing VBG
+talk-aboutiveness NN
+anti-racketeering JJ
+enlivening VBG
+sweetening NN
+Wachsman NNP
+Playmates NNPS
+theoreticians NNS
+Middletown NNP
+ex-dividend JJ NN RB
+Minneapolis-based JJ
+CRIMINAL JJ
+narrows VBZ
+log-jam NN
+Giddings NNP
+elements NNS
+equaled VBD VBN
+Partner NNP
+lone JJ
+AnaMor NNP
+pound-of-flesh JJ
+Lengthening VBG
+ex-presidents NNS
+Erroll NNP
+Ryne NNP
+Potentially RB
+Laidlaw NNP
+Manhattan-based JJ
+retell VBP
+Juliano NNP
+autoloader NN
+Surlyn NNP
+abroad RB
+ducklings NNS
+gradual JJ RB
+carvers NNS
+writing-like JJ
+extremities NNS
+repels VBZ
+miracle NN
+n't/RB NNP
+outgained VBD
+unaffordable JJ
+Schoenholtz NNP
+Ventes NNP
+Detergent NN
+Arrowhead NNP
+HANOVER NNP
+realize VB VBP
+demonize VB
+Cantonese NNP JJ
+servitude NN
+I. NNP FW JJ NN
+budded VBD
+COMPLETED VBD
+Veil NNP
+Badin NNP
+cutest JJS
+showroom NN
+Krutchensky NNP
+Gendron NNP
+weevils NNS
+Speedup NN NNP
+Kiowa NNP
+suppliers NNS
+Ideal NNP JJ NN
+gray-flannel JJ NN
+sweat-suits NNS
+Sochaux NNP
+kidnap VB
+incongruity NN
+Frostbite NN
+Elaine NNP
+serpent NN
+Freebies NNS
+blue-collar-mail JJ NN
+Bologna NNP NN
+tuxedo NN
+incorrect JJ
+Accepting VBG
+cholinesterase NN
+deplored VBD
+trans-illuminated JJ
+ungainly JJ
+cautiously RB
+BUSINESSLAND NNP
+Beadleston NNP
+T.T. NNP
+sent VBD VBN
+progress NN VB
+One-armed JJ
+Wildhack NNP
+Prominent JJ
+answerable JJ
+peck VBP NN VB
+trusteeship NN
+readers NNS
+fetches VBZ
+Y-MP\/832 NNP
+Toman NNP
+Column NN NNP
+obeyed VBD VBN
+reckon VBP VB
+seaborne JJ
+Maksoud NNP
+demeaning JJ
+seatbelt NN
+Fran NNP
+asleep RB JJ
+inept JJ
+reserved VBN VBD JJ
+archaic JJ
+pansies NNS
+jakes NN
+quieted VBD VBN
+Viewmaster NNP
+Armenian JJ NNP
+ripoffs NNS
+commas NNS
+Nacion NNP
+high-sulfur JJ
+billed VBN JJ VBD
+computer-integrated-manufacturing JJ
+lifting VBG JJ NN
+typifies VBZ
+equivocating NN
+trays NNS
+carreer NN
+juiciest JJS
+perfectionists NNS
+Camilla NNP
+raider NN
+cigarette NN
+Monsieur NNP FW
+About IN RB NNP
+pulp NN VB
+self-regulating JJ
+Corlopam NNP
+Kensetsu NNP
+Joannie NNP
+Unsettling JJ
+anticipating VBG
+freight-car NN
+braces NNS
+biscuit NN
+J.K. NNP
+Magnetic JJ
+Understanding VBG NN
+Hammer NNP
+anti-Somoza JJ
+Fey NNP
+Convex NNP
+protracted JJ VBN
+fine-boned JJ
+opening-hour JJ
+corruptible JJ
+gilded JJ
+crescendo NN
+Mukherjee NNP
+privilege NN
+devoured VBN VBD
+Grenada NNP
+subplots NNS
+Whoa UH
+sinful JJ
+joyously RB
+distinctions NNS
+Tabak NNP
+acclaims VBZ
+Selected JJ NNP VBN
+Grass NNP
+castles NNS
+junior-grade JJ
+Jakarta NNP NN
+Records\/SONY NNP
+rasa NN
+Pre-attack JJ
+Coesfeld NNP
+cortico-hypothalamic JJ
+optical-fiber JJ NN
+silica-glass NN
+EC NNP
+narrow-casting NN
+frictional JJ
+officers NNS
+bowstring NN
+on-the-job JJ
+temporarily RB
+anti-polio JJ
+government-leaked JJ
+hypertrophy NN
+purges VBZ NNS
+cited VBD VBN
+Brierley NNP
+mileage-based JJ
+Hokey JJ
+Breathing NN
+anchored VBN VBD JJ
+future NN JJ
+bullets NNS
+Thai NNP JJ
+anti-Galileo JJ
+Dedham NNP
+wildcatter NN
+Bowker NNP
+Puritans NNS
+Herb NNP
+Sunday-newspaper NNP
+charts NNS VBZ
+entertained VBN VBD
+out-of-favor JJ
+grooms NNS
+politico-sociological JJ
+Wellsville NNP
+inevitabilities NNS
+minus\ JJ
+Jacobite NNP
+Sokolev NNP
+DeCicco NNP
+Daphne NNP
+Cuban-American NNP
+PLO-backed JJ
+Vulturidae NNS
+Code-Alarm NNP
+undercut VB NN VBD VBN VBP JJ
+adventure-loving JJ
+CACI NNP
+Chilly JJ
+Extend VB
+Hornets NNPS
+Listerine NNP
+Newlywed NNP
+amasses VBZ
+Rothko NNP
+Unionized VBN
+RULERS NNS
+aspect NN
+cuirassiers NNS
+Cellist NNP
+overcoming... :
+Tabuchi NNP
+e-Estimated VBN
+meetin NN
+helpers NNS
+allegiance NN
+Pachinko NN
+Hustle VB
+tail NN JJ VB
+approach NN VB VBP
+Technomic NNP
+UNA NNP
+outlawed VBN JJ VBD
+invulnerable JJ
+high-gain JJ
+smoking NN VBG
+reassessed VBD
+aber FW
+unrealistically RB
+spotlighted VBN
+Macon NNP
+value-boosting JJ
+refractive JJ
+shattered VBN JJ VBD
+hydrochlorothiazide NN
+PARKER NNP
+recut JJ
+End NN VB NNP
+Inamori NNP
+Pontissara NNP
+pecks NNS
+TSB NNP
+Comfortably RB
+cubic JJ
+enlistment NN
+masterpieces NNS
+Orson NNP
+unreleasable JJ
+uninterruptedly RB
+canker NN
+Varviso NNP
+facelift NN
+auto-assembly NN
+absence NN
+stung VBN VBD
+Dads NNP
+spires NNS
+describes VBZ
+decadelong JJ
+Petrocorp NNP
+bested VBN VBD
+Continued VBN JJ
+repainting NN VBG
+sidetrack VB
+puzzled VBN JJ VBD
+sure-fire JJ
+budget-reconciliation JJ NN
+peculiar JJ NN
+Festival NNP
+maku FW
+Two-Way NNP
+L.C. NNP
+Greenberger NNP
+Ikegai NNP
+designers NNS
+Campobello NNP
+pervasiveness NN
+Kyowa NNP
+eliminated VBN VBD
+fleeced VBN
+Pittston NNP
+Deregulation NN
+boldest JJS
+Leish NNP
+two-time-losers JJ
+Steinhager NNP
+cries NNS VBZ
+RC6280 NN
+therefores NNS
+Massacre NNP
+hobbyist NN
+achieves VBZ
+financed VBN JJ VBD
+troupes NNS
+pulpwood NN
+envisages VBZ
+undeveloped JJ
+spice-laden JJ
+threadbare JJ
+memory-chip NN
+Japanese-owned JJ
+Frans NNP
+systematization NN
+evolve VB VBP
+hotel-motel NN
+rationalization NN
+illusion NN
+corkers NNS
+plenty NN JJ RB
+terrorist JJ NN
+Form NN VB NNP
+Crawfordsville NNP
+anti-intellectual JJ
+Gas NNP NN
+Flexural JJ
+decide VB VBP
+Scotchman NN
+lovers NNS
+empty JJ NN RB VB VBP
+shackled VBN
+State NNP NNS NN
+rubric NN
+Glucksman NNP
+inpenetrable JJ
+controlled-circulation JJ
+Bish NNP
+gpd NN
+practice NN VB VBP
+Carruthers NNP
+beside IN RB
+Questioned VBN
+concave JJ
+exeuctive NN
+abating VBG
+flag-stick NN
+toppings NNS
+commodities NNS
+workweeks NNS
+reverse-engineering NN
+repel VB VBP
+Medici NNPS
+pool-equipped JJ
+Wrangle VB
+unescorted JJ
+climatic JJ
+informants NNS
+Aulnay NNP
+A.M RB NNP
+spacers NNS
+eking VBG
+Municipalities NNS
+Fahey NNP
+protest NN VB VBP
+Dax-Pontonx NNP
+full-sisters NNS
+far-sighted JJ
+transparent... :
+TPS NNP
+BS NNP
+hopscotch NN
+Finan NNP
+Keeshond NN
+Fueled VBN
+congratulations NNS UH
+Atwood NNP
+beryllium NN
+Burnsville NNP
+Conservation NNP NN
+Loggia NNP
+Carder NNP
+organizational JJ
+d'Industrie NNP
+Parodis NNS
+billowed VBD
+inhumane JJ
+applauding VBG
+Candid JJ NNP
+RIVALRIES NNS
+food-production NN
+Solar NNP JJ
+Gourman NNP
+thud NN VB
+hightops NNS
+Father NNP NN
+Deduction NN
+Grauman NNP
+four-cents-a-share JJ
+well-played JJ
+SIBV-MS NNP
+inserting VBG
+remnants NNS
+length NN
+Diamond NNP NN
+pampers VBZ
+Sakellariadis NNP
+muttered VBD
+tasks NNS
+BVI NNP
+submerging VBG
+formulates VBZ
+Davids NNP
+eighth JJ NN
+becomin VBG
+character-recognition NN
+Financial-service NN
+shames NNS
+tumbleweed NN
+Day-to-day JJ
+consigns VBZ
+heighten VB
+fetal-protection JJ
+thru NN IN
+Coons NNP
+cheek-to-jowl RB
+humanities NNS
+DEAL NNP
+Crowds NNS
+relenting VBG
+dear JJ NN RB UH
+cowards NNS
+spring-training NN
+trend-setting JJ
+fraternisation NN
+Kipling NNP VBG
+operated VBN VBD|VBN VBD JJ
+correctly RB
+Barcalounger NNP
+Phillipe NNP
+product-development NN
+publicly RB
+delight NN VB VBP
+Okada NNP
+RCA-Victor NNP
+user-inviting JJ
+chemical-industry NN
+licensing NN VBG JJ
+dealer-manager NN
+man-bites-dog JJ
+buildings NNS
+Farentino NNP
+Consultants NNP NNS NNPS
+philosophic JJ
+sometimes RB
+reverse-surface JJ
+cameo-like JJ
+Expos NNPS
+superiority NN
+survivable JJ
+Rotie NNP
+Gases NNS
+Helmuth NNP
+Horner NNP
+reacting VBG
+retinue NN
+Hybritech NNP
+buncha NN
+ruffle VB
+Lighting NNP VBG NN
+TRADING NN
+Thirdly RB
+student-athletes NNS
+marquee NN
+retrovirus NN
+pecuniary JJ
+trimmer JJR
+Lovering NNP
+sophisticates NNS
+elections-an JJ
+paddies NNS
+Camaros NNS
+countin NN VBG
+splinter NN VBP JJ
+Cray-3 NNP CD
+streetcars NNS
+masking VBG NN
+Fedders NNP NNS
+administrations NNS
+Biscayne NNP
+bowl-shaped JJ
+Kummerfeld NNP
+Fitzsimmons NNP
+Karshilama NNP
+lament NN VB
+macropathological JJ
+Nichols NNP
+McGillicuddy NNP
+Thrifty NNP JJ
+eagerly RB
+shape-up JJ
+bathrobes NNS
+augment VB VBP
+disheartened VBN
+thinkers NNS
+rutabagas NNS
+Ovonic NNP
+analytic JJ NN
+Fisher NNP
+queer JJ
+bi-polar JJ
+self-regulation NN
+Teipel NNP
+inference NN
+limitless JJ
+cavorted VBD
+Lizt NNP
+spoonbills NNS
+dapper JJ
+Molinaro NNP
+stock-index NN JJ NNS
+appealed VBD VBN
+garter NN
+Bedouins NNS
+Shield NNP
+Baruschke NNP
+Disclosures NNS
+earnigs NNS
+fuel-storage NN
+all-pervading JJ
+bunko-forgery NN
+Floradora NNP
+underrepresented VBN
+Casson NNP
+salmon-colored JJ
+helter-skelter JJ
+BOSSES NNP
+Bani NNP
+rakishly RB
+Exhibition NNP NN
+Tampa-based JJ
+ginnin VBG
+severable JJ
+Ziraldo NNP
+Wade NNP
+-16-degrees CD|NNS
+approvals NNS
+Braniff NNP
+beepers NNS
+infinity NN
+farm-policy NN
+intermittent JJ
+ballparks NNS
+felling VBG
+fits VBZ NNS
+campaign-decided NN
+membrane NN
+curiae FW
+negate VB
+Lempesis NNP
+Kamloops NNP
+doubled-edged JJ
+Kirby NNP
+askin VBG
+Bottling NNP
+dull JJ
+Labor NNP NN
+Taoists NNP
+yawns NNS
+plod VB
+ultra-violet JJ NN
+Alton NNP NN
+cardboard NN JJ
+DeWalt NNP
+butting VBG
+turbulent JJ
+Slice NN
+one-drug JJ
+supplement NN VBP VB
+Pah NNP
+bloated JJ VBN
+depression NN
+Netty NNP
+four-wood JJ
+MacDowell NNP
+invigorated VBN
+R/NNP.H.S. NNP
+disregarded VBD VBN
+foreign-transaction NN
+mane NN
+reminiscing VBG
+Crabb NNP
+national-security NN JJ
+allotments NNS
+sidelined VBN JJ
+ascents NNS
+Kiev NNP
+Leninist NNP
+revivals NNS
+Blenheim NNP
+piled VBD VBN JJ
+Who WP NNP PRP
+insinuating VBG
+cosmetic JJ NN
+derivation NN
+Guevara NNP
+stinging JJ NN VBG
+'38 CD
+PROPOSALS NNS
+Coburg NNP
+McNeil NNP
+Israeli JJ NNP
+Partlow NNP
+Tsarism NNP
+VARIAN NNP
+food-products NNS
+gauche JJ
+discontinuing VBG
+professorial JJ
+Winslow NNP
+Diefenbach NNP
+Isaac NNP
+abducted VBN NN
+reincarnated VBD VBN
+German-French JJ
+apartment-building NN
+getaway NN
+billiard NN
+JYJ NN|SYM
+decions NNS
+Shelbyville NNP
+reoffered VBN JJ VBD
+incoming JJ VBG
+five-cent JJ
+pershare JJ
+Aetna NNP NN
+adoption-business NN
+oil-spill NN JJ
+cookware NN
+Roth NNP
+appraising VBG
+Journal\ NNP
+spend-now JJ
+no-fat JJ
+Kanab NNP
+pooled VBN JJ
+Bacon NNP
+Fitzhugh NNP
+wrote VBD
+disincentives NNS
+swinging VBG JJ
+instillation NN
+WAVE NNP
+jab NN
+butchered VBN
+McDonnell NNP NN
+texture NN
+Hokkaido NNP
+OKing NNP
+improbability NN
+debt-payment JJ NN
+Ephlin NNP
+Manin NNP
+planned VBN JJ VBD
+unidentified JJ
+Bisi NNP
+Nu-West NNP
+paper-work NN
+Raffaello NNP
+long JJ VBP RB
+Retton NNP
+micelles NNS
+filthy JJ
+life-of-contract JJ
+Walnut NNP NN
+superregional JJ
+blame VB NN VBP
+Johann NNP
+Sheena NNP
+yuan NN NNS
+Lawrence NNP
+elevations NNS
+Representing VBG
+rigging NN
+brown JJ NN VB
+connect VB VBP
+filched VBD VBN
+Translation NNP NN
+DJS NNP
+Passage NN
+Sasaki NNP
+essence NN
+librarian-board NN
+milestones NNS
+Schweizerische NNP
+authoring VBG
+Chablis NNPS
+facing VBG JJ
+Valle NNP
+Alejandro NNP
+fetal-alcohol JJ
+Damascus NNP
+Fourth NNP JJ RB
+orally RB
+run-scoring JJ
+forerunners NNS
+bronchitis NN
+gain. NN
+proof-of-purchases NNS
+elect VB VBP
+three-door JJ
+clamorous JJ
+government-sponsored JJ
+suspects VBZ NNS
+transponder NN
+Bimini NNP
+Leval NNP
+drill-bit NN
+ground-launched JJ
+suggestibility NN
+all-student JJ
+Hanover-Precious NNP
+BTU NNP
+Peller NNP
+computer-maintenance NN JJ
+foreign-sounding JJ
+by-roads NNS
+cognac NN
+huckster NN VB
+Jerky NNP
+contractual JJ
+Zarnowitz NNP
+Hostaria NNP
+government-mandated JJ
+Computers NNPS NNP NNS
+Cell NNP NN
+evergreen NN
+Laurents NNP
+Heel-Lotus NNP
+intersecting VBG
+Bottineau NNP
+BLUE JJ
+jots VBZ
+Verfahrenstechnik NNP
+NFA NNP
+imprisoned VBN VBD JJ
+remodeling VBG NN
+long-considered JJ
+everlasting JJ NN
+obedience-trained JJ
+Dominus NNP
+arctic JJ
+Discussion NN
+orthopedics NNS
+trod VBN
+Danbury NNP
+Edwviges NNP
+spider-leg JJ
+A.W. NNP
+unplumbed JJ
+Emile NNP
+sustainable JJ
+granular JJ
+Anti NNP
+black-tie JJ
+Uruguay NNP
+Perito NNP
+toxicologists NNS
+runny JJ
+Lubar NNP
+semi-liquefied JJ
+Linker NNP
+incline NN
+Checkrobot NNP
+Rosenfield NNP
+painters NNS
+pen-and-ink JJ
+third JJ NN RB CD
+generally RB
+unaccustomed JJ
+Steward NN
+highly-touted JJ
+Papermate NNP
+marksmanship NN
+impropriety NN
+unopposable JJ
+BT NNP
+Cralin NNP
+scribbles VBZ
+engaged VBN JJ VBD
+conceals VBZ
+deigned VBD
+responding VBG
+Mid-State NNP
+reorientation NN
+blood-in-the-streets NNS
+Grassy NNP
+queers NNS
+Luis NNP
+incepting VBG
+desert NN JJ VB VBP
+Reagan NNP JJ
+Ciciulla NNP
+unapologetic JJ
+yank VB NN
+turtles NNS
+Cetus NNP
+looming VBG NN
+profited VBD VBN
+scowl VBP
+clapping VBG NN
+commissioner NN
+Pullen NNP
+longstanding JJ
+Cellular NNP
+hideaway NN
+in-store JJ
+Galleria NNP
+skidded VBD VBN
+unsubtle JJ
+Classics NNS NNPS
+invigoration NN
+Thais NNPS
+Moffitt NNP
+resolving VBG
+catsup NN
+Landerbank NNP
+windup NN
+Gerrard NNP
+cycled VBN
+over-stress VB
+wiretaps NNS
+Lawton NNP
+bucking VBG
+slick-talking JJ
+non-pregnant JJ
+Gwendolyn NNP
+faithfully RB
+Raytheon NNP
+enforced VBN VBD JJ
+buttoned-up JJ
+bulked-up JJ
+Pyzhyanov NNP
+urging VBG NN
+fund-research JJ NN
+Gunton NNP
+Eloi NNP
+buss NN
+ne'er RB
+wan't VB
+hunts VBZ NNS
+Atlanta NNP
+clarets NNS
+vous FW
+emblazoned VBN
+transact VB
+Glasnost FW
+rapt JJ
+Fatalities NNS
+Expenditures NNS NNPS
+barony NN
+Cibula NNP
+CO NNP
+NCR NNP
+fanatical JJ
+Mezzanine NNP
+busyness NN
+cognoscenti NNS
+shoe-horn VB
+needed... :
+elephantine JJ
+undertone NN
+Tupperware NNP
+technical JJ
+barbital NN
+chairmen NNS
+Shearing NNP
+fur-production JJ
+Takes VBZ
+expense NN
+euphoria NN
+nitrite NN
+elevating VBG
+Roaco NNP
+predominance NN
+immortality NN
+persons NNS
+DEALERS NNPS
+localization NN
+neo-stagnationist JJ
+Phalanx NNP
+iron-ore NN
+exotic-Hawaiian-locale JJ
+lighthearted JJ
+mulch NN
+Pointe NNP
+Fiat NNP
+Medfield NNP
+Alfred NNP
+Wissahickon NNP
+piezoelectricity NN
+laces NNS
+cash-value JJ
+complexes NNS
+squadron NN
+BLAME VB
+Eddyman NNP
+electrotherapist NN
+Karlheinz NNP
+Newcomb NNP
+appalling JJ
+Paster NNP
+olden JJ
+valet NN
+NEG NNP
+death-penalty NN JJ
+food-shop JJ
+dispel VB
+cartels NNS
+southwest RB JJ NN JJS
+Y'all DT PRP
+Wyse NNP
+cherry JJ NN
+Megamarketing NN
+wetting VBG NN
+Curley NNP
+Generic-industry JJ
+me/PRP NNP
+osf IN
+arresting VBG JJ
+grimaces NNS
+sticks NNS VBZ
+hopping VBG
+hookers NNS
+DJ NNP
+Knitwear NNP
+reopening VBG
+Indianapolis-based JJ
+pervade VBP
+Pohlad NNP
+Actress NNP
+Dworkin-Cosell NNP
+mischarges NNS
+Pomona NNP
+garden... :
+Mathewson NNP
+Laenderbank NNP
+Bundesbank-meeting NN
+NORDSTROM NNP
+instant-camera NN
+Michael NNP
+ferreting VBG
+nuts NNS JJ
+newscast NN
+driftin VBG
+Pharmacy NNP
+Tradition NN NNP
+Kamel NNP
+ex-manager NN
+Starr NNP
+Poughkeepsie NNP
+Refrigeration NN NNP
+State-capitol NN
+accruals NNS
+Kreditkasse NNP
+spooked VBN VBD
+blitz NN
+bury VB VBP
+cross-referencing NN
+Durlach NNP
+Mon-Goddess NNP
+prepayments NNS
+record-breaking JJ
+farmer-type JJ
+brewers NNS
+vies VBZ
+program-bashing JJ
+bristles VBZ NNS
+rat NN VB
+IndoSuez NNP
+estranging JJ
+enforceable JJ
+moody JJ
+Pilgrm NNP
+Pulitzer NNP
+pairings NNS
+garden-variety NN
+Employer NN
+UNC NNP
+himself PRP
+state-building NN
+misrouted VBN
+Fantastic JJ
+countless JJ
+intermingle VBP
+quickened VBD VBN
+pokerfaced JJ
+thiamin NN
+Gachinger NNP
+sergeants NNS
+Panyotis NNP
+chocolates NNS
+homewards RB
+crime-ridden JJ
+legally RB
+budget-hotel NN
+Sweden NNP
+six-county JJ
+carver NN
+clean-fuels NNS
+Runkel NNP
+Abscam-indicted JJ
+intention NN
+ten-year JJ
+resort-casino NN
+hip NN JJ
+foundered VBD
+pearl-gray JJ
+misinterpreters NNS
+advisedly RB
+perusal NN
+flamboyantly RB
+crisscrossing VBG
+ripoff NN
+Dynasts NNPS
+KVDA NNP
+Bodenheim NNP
+Bake-Off NNP
+unexpectedly RB
+Filmworks NNP
+Tredegar NNP
+five-percentage-point JJ
+Emil NNP
+it-wit NN
+averaging VBG JJ NN
+information-gathering JJ
+consistent JJ
+non-readers NNS
+investigators NNS
+O.P. NNP
+preferentially RB
+eat'em VB
+Lycidas NNP
+professional\/executive JJ
+belch NN
+bacteria-based JJ
+north-bound JJ
+Matthews NNP
+intrinsically RB
+debt-futures NNS
+SOARED VBD
+hilt NN
+Hornet NNP
+childhood NN
+Asides NNP
+unfashionable JJ
+Shira NNP
+Bleacher NN
+Hisham NNP
+Carolingian JJ
+withholding NN VBG
+Lillard NNP
+acquire VB NN VBP
+Buchanan NNP
+Woollcott NNP
+intolerance NN
+Flood NNP VBP
+crimped JJ VBN
+trapping VBG NN
+coexistent JJ
+Hanaspur NNP
+tails NNS
+Uneasiness NN
+Grains NNS NNPS
+rubbish NN JJ
+MURDER NN
+WAR NNP NN
+nux NN
+Jones-Irwin NNP
+Holch NNP
+UCSF NNP
+demineralization NN
+smatterings NNS
+Steffens NNP
+work-a-day JJ
+Kellogg NNP NN
+small-diameter JJ
+chilblains NNS
+mythology NN
+Meyohas NNP
+policewoman NN
+contends VBZ
+Chicago-Paris NNP
+nods VBZ NNS
+genealogies NNS
+Orkem NNP VB
+Hallett NNP
+Instantaneously RB
+ceremonial JJ
+Parodi NNP
+DMB&B\/New NNP
+Bookin NNP
+pamper VB
+Lassus NNP
+Tarnopol NNP
+Taisei NNP
+Fienberg NNP
+tacticians NNS
+E.G. NNP
+Seventh NNP JJ
+agreeable JJ
+dark-brown JJ
+curses NNS
+inches NNS NN VBZ
+Colorado NNP
+slacken VB
+Advisers NNPS NNP NNS
+Salvation NNP NN
+Thiebaud NNP
+Schley NNP
+Assistant NNP NN
+triggers NNS VBZ
+imports NNS VBZ
+customs-cleared JJ
+interface NN VB
+quavering VBG
+Taras-Tchaikovsky NNP
+Boston-area JJ
+well-received JJ
+sentimentalize VB
+radio-location NN
+lutihaw FW
+refurbishing VBG NN
+subsumed VBN
+Wis. NNP
+non-nonsense NN
+Nebraska NNP NN
+curtained JJ
+Displaying VBG
+eidetic JJ
+polyphosphate NN
+Mets NNP NNPS
+Centaur NNP
+Marsicano NNP
+Pembridge NNP
+flubbed VBD
+Menuhin NNP
+Meekison NNP
+understated VBN VBD JJ
+Knuettel NNP
+preferences NNS
+lantana NN
+Prometrix NNP
+disaster-contingency NN
+preserves VBZ NNS
+Burnside NNP
+light-weight JJ
+faery NN
+Soft-Sell JJ
+upheavals NNS
+Camille NNP
+personification NN
+counterarguments NNS
+Chengdu NNP
+unsaid JJ
+employer-provided JJ
+gunny NN
+black-tipped JJ
+flakes NNS
+Execution NNP NN
+refer VB VBP
+checklist NN
+claret NN JJ
+franchisees NNS
+catching VBG NN
+Jehovah NNP
+headache NN
+Shared NNP
+tattle-tale NN
+churns VBZ
+bust NN JJ|RB VB
+banishing VBG
+contractor NN
+Brother NNP
+Bioline NNP
+PanAm NNP
+pulse NN VB
+behaved VBD VBN
+Constable NNP
+pan-national JJ
+Mighty NNP
+Givers NNP
+antagonism NN
+fy VBP
+Thal NNP
+Lytton NNP
+Triptych NNP
+Lusser NNP
+Euro-caps NNS
+Electra NNP
+mortgage-based JJ
+Protectionism NNP NN
+one-branch JJ
+brews VBZ NNS
+confreres FW NNS
+Here RB UH
+literate JJ
+lookee-loos NNS
+Lawmaking JJ
+psychoactive JJ
+bloodletting VBG NN
+Wootton NNP
+Bank NNP NN VB
+INQUIRY NN
+Luksik NNP
+two-round JJ
+Employes NNS
+Fininvest NNP
+Spierer NNP
+Duyvil NNP
+Rico NNP
+Consumption NN
+orgy NN
+soothing VBG JJ
+Marijuana NN
+Marshall NNP
+coupon-distribution JJ
+WPPSS NNP
+lower-status JJ NN
+environmentalist-developer JJ
+Castaneda NNP
+condicions NNS
+winnings NNS
+McEnroe NNP
+manors NNS
+unmaterialized VBN
+Cutty NNP
+townships NNS
+daze NN
+High-level JJ
+Bebey NNP
+shrieks NNS
+Homerists NNS
+selection-rejection JJ
+Garn NNP
+videodiscs NNS
+Piano NNP NN
+Hold VB VBP
+reasserts VBZ
+Started VBN
+Cost-effective JJ
+Goodbye NNP UH
+Hosogane NNP
+admiration NN
+crackle NN VBP
+Cia. NNP
+sera NNS
+changeover NN
+FROG-7B NN
+Management\ JJ
+collective JJ NN
+scot-free JJ
+current-carrying JJ
+Matthias NNP
+minimills NNS
+Nemeth NNP
+grokking VBG
+confidence-shattering JJ
+co-edited JJ
+itemizing VBG
+Azusa NNP
+escapes NNS VBZ
+dysgenic JJ
+Stars NNP NN NNS NNPS
+TILT NN
+Dauster NNP
+magnanimity NN
+badge NN
+infinitesimal JJ
+enoxacin NN
+elaboration NN
+kick-starting VBG
+Lurcat NNP
+DARMAN'S NNP
+Gingl NNP
+Meals NNP
+similar-sounding JJ
+panzers NNS
+CP NNP
+non-employee JJ
+shouldda MD|VB
+restive JJ
+invalidate VB
+unenforceable JJ
+carbon-dioxide NN
+Mickey NNP
+Vermont-Slauson NNP
+unsealed VBN JJ
+rail-passenger NN
+carves VBZ
+Blumenfeld NNP
+Elector NNP NN
+wagers NNS
+mid-July NN
+lovingly RB
+sporadically RB
+Schroders NNP
+Tese NNP
+Ensemble NNP
+Boole NNP
+accustoms VBZ
+kneaded VBN
+loopaholics NNS
+readiness NN
+fundamentals NNS
+brachii NNS
+endeavor NN VB
+Reaganauts NNS
+aparently RB
+decrepit JJ
+Schweicker NNP
+investment-banking NN JJ
+Ping-pong NN
+entailing VBG
+strident JJ
+susceptible JJ NN
+reform-minded JJ
+heavier JJR RBR
+back-offices NNS
+euphoric JJ
+Isaacs NNP
+entwined VBN JJ
+poachers NNS
+Shrum NNP
+maniacal JJ
+WDB NN NNP
+Gallon NNP
+funneling VBG
+upstarts NNS
+impressed VBN VBN|JJ JJ VBD
+endowed VBN VBD JJ
+Rosoff NNP
+lawn-mower NN
+Widuri NNP
+ho UH
+linens NNS
+Lauderdale NNP
+Atlantic NNP JJ
+Trojan NNP JJ
+Yearly NNP JJ
+Murrin NNP
+N.C.-based JJ
+relent VBP VB
+Liability NN NNP
+Totaling VBG
+rumor-fraught JJ
+drill NN VB
+Sprenger NNP
+customers NNS
+stump NN VB
+deviance NN
+opposite JJ IN NN
+bonfires NNS
+Easterbrook NNP
+Poodle NNP
+red-clay NN
+Telecommunications NNPS NNP NNS
+Scripps-Howard NNP
+hot-cereals NNS
+business-to-business JJ NN
+Meninas NNP
+enlargement NN
+Quebecois NNP
+Maxim NNP
+anticipation NN
+Pollitt NNP
+Sanford NNP
+light-duty JJ
+marathon NN JJ
+sugar-subsidy NN
+alai FW
+needed VBN VBN|JJ JJ VBD
+middle-Gaelic JJ
+appliances NNS
+dividends NNS
+Paev NNP
+exempts VBZ
+divorce NN VB VBP
+friendly JJ
+unthreatening JJ
+Eng NNP
+wouldbe JJ
+springtime NN
+Rents NNS NNP
+contingency NN
+thug NN
+seamanship NN
+cheaters NNS
+Volunteers NNPS NNP
+pug-nosed JJ
+coronaries NNS
+Urs NNP
+fare NN VBP VB
+ERISA NNP
+Rospatch NNP
+bestowal NN
+Handelsman NNP
+expand VB VBP
+ij NN
+Kahler NNP
+Littleboy NNP
+strengthening VBG JJ NN
+Giorgetta NNP
+Porgy NNP
+appeasing NN
+P-5-39 NNP
+unflaggingly RB
+Volta NNP
+O'Hara NNP
+Endangered NNP
+discriminate VB VBP JJ
+ministerial JJ
+Aphrodite NNP
+a-Monthly JJ
+ended VBD JJ VB VBN
+monks NNS
+BREWS VBZ
+effluvium NN
+Phineoppus NNP
+Opositora NNP
+marshalled VBD
+industrial-product NN
+reverting VBG
+spellbound VBN
+smasher NN
+vintages NNS
+H2Owner NNP
+Welch NNP
+advent NN
+Experience NN NNP
+GenCorp NNP
+WAS VBD
+Taiwanese JJ NNP NNPS
+Schubert-Beethoven-Mozart JJ
+glowered VBD VBN
+levies NNS
+marijuana-smuggling JJ
+soggier NN
+online JJ
+paleontologically RB
+prayerfully RB
+Colefax NNP
+NORTHERN NNP
+definite JJ
+Cheng NNP
+feasibility NN
+Erikson NNP
+incumbencies NNS
+repairman NN
+hospitable JJ
+chauvinists NNS
+poor-white-trash JJ
+boardinghouses NNS
+NDN NNP
+picker NN
+taxfree JJ
+clunker NN
+Continent NN NNP
+hyalinization NN
+retail-banking JJ NN
+colonialism NN
+shawls NNS
+annexed VBD
+haunches NNS
+claps NNS VBZ
+non-consumer NN
+invasion-theory NN
+Hacking VBG
+grunt VB NN
+Fairfield NNP
+Bonaccolta NNP
+je FW
+Yutaka NNP
+fluidity NN
+unhealed JJ
+Merleau-Ponty NNP
+dazed JJ VBD VBN
+magnetics NNS
+fourth-century JJ
+Serving VBG
+orphan JJ NN
+Prix NNP
+goitre NN
+Dahmane NNP
+impoundment NN
+Celestino NNP
+genre NN
+Forms NNPS NNS
+reverberations NNS
+capriciously RB
+subscriptions NNS
+DLJ NNP
+stunk VBD
+Ammann NNP
+Advise NNP
+Surrender VB NNP
+agrarian JJ NN
+Agin NNP
+Kazakhstan NNP
+mannequin NN
+state-local JJ
+flash-cubes NNS
+consentual JJ
+peed VBN
+trickled VBN
+critical-intellectual JJ
+NFC NNP
+Elephants NNS
+run-on NN
+Othon NNP
+cascades VBZ
+ineligible JJ
+overdraft NN
+ball-hawking JJ
+stereo-sound JJ
+Diamond-Star NNP
+mediating VBG
+purists NNS
+Riney NNP
+Roquemore NNP
+interpreting VBG
+loyal JJ
+Dismantle VB
+Lipstein NNP
+squaring VBG
+Camry NNP
+crystals NNS
+Canyon NNP
+faddish JJ
+Bonasorte NNP
+busted JJ VBD VBN
+struck VBD VBN
+veneration NN
+imprisonment NN
+disapprovingly RB
+Cartwright NNP
+senior-subordinated JJ
+product-testing NN
+talks-including JJ
+pecans NNS
+Kurtwood NNP
+theaters NNS VBD
+Asian-American JJ
+father-in-law NN
+tebuthiuron NN
+asphalt NN JJ
+Hourly JJ
+predictors NNS
+forint NN
+bands NNS
+CAMPAIGN NNP
+activation NN
+patina NN
+bookish JJ
+continuities NNS
+gravitating VBG
+Lucien NNP
+Wickersham NNP
+Fordham NNP
+brokenly RB
+HealthAmerica NNP
+L'Union NNP
+airfield NN
+profit-making JJ NN
+RISC-based JJ
+embarrassed VBN VBD JJ
+Kursk NNP
+phonetic JJ
+blacklist VB
+RIGHTS NNS
+burner NN
+Start VB NN NNP VBP
+Mickie NNP
+unswerving JJ
+Hole NNP NN
+killable JJ
+expo NN
+Wigs NNS
+intentioned JJ
+ace NN
+heavies NNS
+large-area JJ
+Morgan NNP NN
+verbenas NNS
+muezzin NN
+Cavallinis NNS
+thrive VB VBP
+Island-based JJ
+homesick JJ
+sorry JJ RB UH
+emotions NNS
+'40s NNS CD
+McKennon NNP
+household NN JJ
+Hafetz NNP
+Kyu NNP
+Magoon NNP
+namedropper NN
+monogrammed JJ
+negation NN
+oddballs NNS
+bootleggers NNS
+fry NN VBP VB
+Woodmac NNP
+jumper NN
+slivered VBN
+machining NN
+Rittenhouse NNP
+Tomas NNP
+Gerbrandt NNP
+Sentiment NN
+precise-sounding JJ
+septum NN
+Performance NN NNP
+Trafficking NN NNP
+claudication NN
+cabaret NN
+around-the-world JJ
+Skelton NNP
+Twenty-one-year-old NN
+FAN NN
+conversion NN
+Jute NN
+seven-bedroom JJ
+riskier JJR RBR NN
+bathrooms NNS
+fruit NN
+Manion NNP
+Grievances NNP NNPS
+sadder JJR
+mendicant JJ
+Marenzio NNP
+Beman NNP
+Transitional JJ
+deflators NNS
+cap'n NN
+Mescalero NNP
+culturally RB
+deepening VBG
+shifted VBD VBN
+corrupts VBZ
+BV NNP
+Hawaii NNP NNS
+Thygerson NNP
+instinct NN
+abrogated VBN
+proliferate VBP
+fall-off NN
+Nazi-minded JJ
+scarify VB
+Blunt NNP JJ
+solved VBN VBD
+floodlighted VBN
+McDermid NNP
+FIVE CD
+Cyd NNP
+material0F. NN
+Hardwicke-Etter NNP
+Newer JJR
+apprentice NN
+Whitemarsh NNP
+two-door JJ NN
+blames VBZ
+foundry NN
+seriously RB
+quake-displaced JJ
+assessor NN
+ENDED VBD
+Jacques NNP
+once-in-a-lifetime JJ
+high-positive JJ
+chamber NN
+Nonresident JJ
+back-of-the-envelope JJ
+Shiftan NNP
+take VB NN VBP
+FCC NNP
+retardants NNS
+deep-set JJ
+ridicules VBZ
+Fargo NNP
+ringside NN
+fabrics NNS
+boogie NN
+calisthenics NNS
+drought-ravaged JJ
+suicides NNS
+U.S.-built JJ
+Helmut NNP
+scissors NNS
+Favorable JJ
+Cogen NNP
+yachtsmen NNS
+Destler NNP
+combat NN FW VB
+Castle NNP NN
+Allen NNP NNPS
+rehashing VBG
+Folcroft NNP
+shad NN
+more-entrenched JJ
+treading VBG
+mV NN
+custom-designed JJ
+frame NN VBP VB
+skate VB
+ADMINISTRATION'S NN
+lummox NN
+streamlining VBG NN
+Cadbury NNP
+half-closed JJ
+Gajda NNP
+Cody NNP
+Helper NNP
+elswehere NN
+starter NN JJ
+Rhin NNP
+Dimitris NNP
+Peltz NNP
+Shiny NNP
+unsuccessful JJ
+Pak NNP
+clutching VBG
+Anglican NNP JJ
+image-building JJ
+harness NN VBP VB
+discernment NN
+craftsman-in-residence JJ
+Skywave NNP
+versions NNS
+rationalism NN
+Murderous JJ
+confessor NN
+shill NN
+bearings NNS
+Glendale NNP NN
+pariahs NNS
+instill VB
+clustered VBN VBD
+wherein WRB RB
+Squeezed VBN
+Videos NNPS
+Laux NNP
+OCC-member JJ
+Vacation NN NNP
+back-to-school JJ
+requested VBD VBN
+Meaney NNP
+Moon NNP NN
+Purgatory NNP
+handling NN VBG
+seacoast NN
+glycerine NN
+Fig NN
+teabag NN
+lay-offs NNS JJ CD
+MIPS NNP NNS
+Roosevelt NNP
+Protectionist JJ
+resolve VB NN
+Village NNP NN
+Agreements NNS
+Yuzuru NNP
+Delegation NNP
+feeling-state NN
+hp NN
+cross-marketing JJ VBG
+Hunterdon NNP
+herding VBG NN
+JYM NN|SYM
+Gottesman NNP
+Cepheus NNP
+Types NNS
+Steuben NNP
+scrubbed VBN VBD
+Saud NNP
+Alcatel NNP
+loose-jointed JJ
+Eisenhhower NNP
+hir PRP$
+electrocardiograph NN
+overpay VB
+Woody NNP
+april NNP
+sharply RB
+depraved JJ VBN
+high-stepped JJ
+free-marketer NN
+bodacious JJ
+KVA NNP
+'50 CD
+microeconomy NN
+rationalistic JJ
+submarine NN JJ
+Birr NNP
+Purvis NNP
+multiplexing NN
+postmaster NN
+souvenirs NNS
+Integrator NNP
+ammunition NN
+Cavenee NNP
+hillbilly NN
+Summaryof NNP
+several JJ RB
+immunity NN
+Rockies NNPS
+Boylston NNP
+space-age JJ
+erased VBN VBD
+pardons NNS
+salmon NN NNS
+spike-haired JJ
+foreign-investment JJ
+ounce NN
+Ringo NNP
+Westchester NNP
+Subscribing VBG
+contexts NNS
+distorting VBG
+Viren NNP
+reconfirm VB
+Goddard NNP
+pursuers NNS
+Systemwide JJ NNP
+Turtle NNP NN
+Absorbed VBN
+Crabtree NNP
+donut NN
+exploited VBN VBD
+Yaffe NNP
+antisubmarine JJ
+Daer NNP
+reordering NN VBG
+Yugoslav NNP JJ
+FBI NNP
+preschooler NN
+executive-branch JJ NN
+Desiring VBG
+malt NN
+downsizing VBG NN
+Seoul NNP NN
+receptor NN
+common-sense JJ NN
+Saunders NNP
+elects VBZ
+thuds NNS
+Judicial NNP JJ
+recitations NNS
+Europeanish JJ
+Zara NNP
+viral JJ
+H.T. NNP
+Mochida NNP
+barbiturate NN
+sings VBZ
+Mont NNP
+Tesco NNP
+Soviet-supplied JJ
+Skeletal JJ
+Theresa NNP
+junkification NN
+Italian-led JJ
+thankful JJ
+parental JJ
+Layton NNP
+deck NN VB
+flashbacks NNS
+Jock NNP
+Than IN
+Niva NNP
+center-fire JJ
+Suncor NNP
+retort NN VB VBP
+WCI NNP
+intercom NN
+unbroken JJ
+dual-channel JJ
+paragon NN
+most-recent JJ JJS
+Jeep-Eagle NNP
+plunges NNS VBZ
+Spenser NNP
+HIV\/AIDS JJ
+Public-works NNS
+C&D NNP
+dynamited VBN
+Journal-American NNP
+submachine JJ
+staph NN
+mended VBN
+entertainer NN
+ordinance NN
+third-dimensional JJ
+arrived VBD VBN
+excluded VBN VBD
+Miron NNP
+public-transit JJ
+Anthony NNP NNPS
+Greek-Canadian JJ
+Budieshein NNP
+Escape NNP NN VB
+millisecond NN
+caramel NN
+Inventions NNS
+Cascading VBG NN
+wholesale-price JJ
+Demme NNP
+court-approved JJ
+promulgators NNS
+Boxford NNP
+sienna JJ
+FCB\ NNP
+auto-repair JJ
+percent NN
+lamming VBG
+BALANCES NNS
+hemispherical JJ
+pull-backs NNS
+skinfolds NNS
+Ketelsen NNP
+despondency NN
+relatives NNS
+lower-emission NN
+resettlement NN
+B-52s CD
+Davies NNP
+overpopulated VBN
+Nordine NNP
+Vishwanath NNP
+Nude NNP
+Pyramids NNPS
+Hydra-matic JJ
+Oilcloth NN
+Isgur NNP
+aristocratic JJ
+Daniil NNP
+croupier NN
+Scientific NNP JJ
+Clifton NNP
+improprieties NNS
+Mental NNP JJ
+superposition NN
+national JJ NN RB
+Anzilotti NNP
+slapstick NN JJ
+uncousinly JJ
+polishes NNS
+conformist JJ NN
+Marella NNP
+comical JJ
+Gutfreund NNP
+newlyweds NNS
+toughen VB
+tubules NNS
+programmable JJ
+lace-drawn JJ
+recordkeeping NN
+Educators NNP NNS
+Kluge NNP
+A\ JJ
+commons NN
+Vicksburg NNP
+pandemonium NN
+Forty-four CD
+Rhine-Main NNP
+dune NN
+LASHED VBD
+fluorescein NN
+flea-infested JJ
+Nogales NNP
+Goodby NNP UH
+falsity NN
+sedentary JJ
+Foxmoor NNP
+Housings NNS
+death NN
+cent-per-barrel JJ
+stirling JJ
+fortitude NN
+dehumanize VB
+pump VB VBP NN
+hatch NN VBP VB
+Gate NNP NN
+intersection NN
+expands VBZ
+knuckled VBD
+ransom NN
+Waco NNP
+Revitalized VBN
+Prodigy NNP
+Plunking VBG
+Pothitos NNP
+soporific JJ
+stagger VB
+Accountemps NNP
+gon VBG VB
+J.L. NNP
+reponsibility NN
+Lamle NNP
+convention-goers NNS
+self-aggrandisement NN
+Reinker NNP
+ogles VBZ
+Kindergarten NN
+hail NN VB VBP
+Sandwich NNP NN
+approvingly RB
+buy-back NN NN|JJ JJ VB
+January-to-August NNP
+boggled VBD
+Seattle NNP NN
+winger NN
+half-light NN
+Midsized JJ
+Pina NNP
+reappears VBZ
+Kakumaru NNP
+helpfulness NN
+men-folk NNS
+behave VB VBP
+Unruly JJ
+F-108 NN
+devoting VBG
+anti-takeover JJ NN
+unconfirmed JJ
+enviroment NN
+tumult NN
+swirling VBG
+Functionalism NN
+picket NN
+fadeout NN
+sweetpeas NNS
+bland JJ
+Englishmen NNS NNP
+autoclave NN
+posterity NN
+directing VBG NN
+Icterus FW
+cod-liver NN
+Shipbuilding NNP NN
+rata FW JJ NN
+replacement NN JJ
+Baring NNP
+BW NNP
+astronomical JJ
+atonally RB
+Falconer NNP
+filleted VBN
+say,'you're VBP
+CPR NNP
+Chancellorsville NNP
+racketeering NN VBG
+upshots NNS
+Crime NN NNP
+Reflects VBZ
+cellulose NN
+ill-equipped JJ
+Rickenbaugh NNP
+tableau NN
+Violence NNP NN
+paunchy JJ
+Transpiration NN
+Gilmore NNP
+regal JJ
+Bahamas NNPS NNP
+unpolished JJ
+Sweaty JJ
+Camdessus NNP
+Grosse NNP
+Pal NNP
+homemaker NN
+Among IN
+Labow NNP
+earthbound JJ
+AK-47 NNP
+Cordier NNP
+disengage VB
+workdays NNS
+Hanging VBG
+Altos NNP
+Term NN NNP
+AZT NNP
+goin VBG NN VB
+Knoxville NNP
+pigsty NN
+Braathens NNP
+Micro-Economics NNPS
+year-before JJ
+Hideous NNP
+raw JJ
+co-authored VBN VBD
+burbles VBZ
+roulette NN
+fielded VBD VBN
+Bernardo NNP
+cardiologist NN
+Beyeler NNP
+Wake-Up NNP
+Baly NNP
+crises NNS
+convolutions NNS
+Balts NNPS
+Magnum NN NNP
+post-bankruptcy JJ
+walks VBZ NNS
+copes VBZ
+vine-embowered JJ
+gliding VBG
+Toll NN NNP
+Gratt NNP
+underworld NN
+older JJR RBR JJ
+Lubars NNP
+painter NN
+companion NN JJ
+Preventive JJ
+conceal VB
+small JJ
+domestic-credit NN
+Myron NNP
+Helpern NNP
+Birns NNP
+his PRP$ PRP
+tinkled VBD
+Culligan NNP
+Lawn NNP
+Theatres NNP
+in-law NN
+bullwhackers NNS
+Heinemann NNP
+preferred JJ VBD VBG VBN
+wires NNS
+ribbies NNS
+Plains NNP NNS NNPS
+grosses VBZ
+top-10 JJ
+'51 CD
+Suchocki NNP
+atom-smashing NN
+REACHED NNP
+Agip NNP
+adjudicators NNS
+Stileman NNP
+nuclear-weapons NNS JJ
+prosaic JJ
+supervened VBN
+Embittered JJ
+dignify VB
+Specially RB
+thirds NNS
+emulsifiers NNS
+endorses VBZ
+accrual NN
+Sojourner NNP
+polarize VB
+open-mouthed JJ
+Cervantes NNP
+Ideas NNS
+pairing NN VBG
+crafter NN
+sexually RB
+ten-minute JJ
+anniversaries NNS
+Cristal NNP
+Eldon NNP
+Gruss NNP
+clerk-turned JJ
+plaster-of-Paris NN
+supression NN
+Turnover NN NNP
+Production NN NNP
+Supporters NNS
+sub-Christian JJ
+Kodiak NNP
+back-end JJ
+J. NNP
+Adviser NNP
+affecting VBG
+workload NN
+Blumenthal NNP
+status. NN
+nesting VBG JJ NN
+Isthmus NN
+punk NN JJ
+representatives NNS
+Disposables NNS
+Camilli NNP
+Samaritans NNS
+Namibian JJ
+boatload NN
+brows NNS
+hangouts NNS
+Valentin NNP
+Deriving VBG
+Weakening VBG
+,'cept IN
+blackest JJS
+widest JJS
+M.D.s NNS
+Armenia NNP
+discontinued VBN JJ VBD
+Evil NNP JJ NN
+pulsating VBG
+durability NN
+cement-makers NNS
+crudity NN
+commercialize VB
+Size NN
+Orinoco NNP
+Nicaragua NNP
+Restraint NNP
+Prospect NNP
+black-draped JJ
+peptizing VBG
+Solarz NNP
+Y.M.H.A. NNP
+science-fiction NN
+perfecting VBG
+m&a JJ
+featured VBN VBD JJ
+Laboring VBG
+carbide-products NNS
+noncontroversial JJ
+primping VBG
+fourth-consecutive JJ
+Bedfellows NNS
+Physiology NNP
+franker JJR
+Soviet-Chinese NNP
+pays VBZ
+ethos NN
+offshore-rig NN
+evidenced VBN
+behaviour NN
+u. NN
+monitored VBN VBD JJ
+Heifetz NNP
+Land-O-Sun NNP
+Concerning VBG
+Hondas NNPS NNS
+Harsco NNP
+Kennington NNP
+insinuation NN
+one-for-one JJ
+Spotted VBN
+pickers NNS
+Hachiyas NNPS
+divine JJ NN
+heathen JJ NN
+Private-property NN
+festivals NNS
+Interesting JJ
+Amvest NNP
+sublease NN
+Outplacement NN NNP
+outgrowth NN
+morale NN
+Visscher NNP
+Boylan NNP
+textbook NN
+declares VBZ
+Non-Dissonant NNP
+paring VBG
+Lebanese-controlled JJ
+fared VBD VBN
+Werner NNP
+Whosoever NN
+elucidated VBN
+price-determination JJ
+Ordinaries NNPS NNP
+DNA NNP NN
+Nalcor NNP
+Meurons NNS
+jour FW
+profit NN VBP VB
+methodological JJ
+emotion NN
+bootlegged VBN
+oddball JJ
+Pennsylvania-based JJ
+five-gallon JJ
+sifting NN
+Kelly\/David NNP
+adverb NN
+Tornado NNP
+Bascom NNP
+colonialist NN
+school-research JJ
+liquid-chromatography NN
+Shenandoah NNP
+view NN VBP VB
+duckling NN
+paradigmatic JJ
+truthfulness NN
+splashing VBG
+Ammonium NN
+Colvin NNP
+Mansion NNP
+glide-bombed VBD
+heretofore RB
+MBIA NNP
+Kurth NNP
+Cen-Tennial NNP
+closet-sized JJ
+Win NNP VBP
+pH NNP NN
+Vieux NNP
+unincorporated JJ
+Super-Set NNP
+Dimitri NNP
+co-anchored VBN
+framed VBN VBD JJ
+bearing VBG JJ NN
+deterrence... :
+Brevetti NNP
+Sawicki NNP
+roadside NN JJ
+Lagonda NNP
+physiochemical JJ
+Yearbook NNP
+myself PRP
+smiles NNS VBZ
+Suez NNP
+shortwings NNS
+seventy CD
+Rosenfeld NNP
+antagonist NN
+Fenster NNP
+nooks NNS
+Botulinal JJ
+Yorba NNP
+x-Includes VBZ
+WHITMAN NNP
+Lands NNPS NNS
+context NN
+Funny JJ RB NNP
+scowls VBZ
+see-through JJ
+Bolotin NNP
+victimless JJ
+aflatoxin-producing JJ
+slights NNS
+idea-exchange NN
+earsplitting JJ
+ambushed VBD VBN
+Hermanovski NNP
+skim-milk NN
+expedited VBN VBD JJ
+BellSouth\ JJ
+massacres NNS
+knee-type JJ
+screw NN VB
+pants NNS NN
+Leinoff NNP
+SMALL NNP JJ
+pro-ball NN
+envisage VB
+passer-by NN
+cheaply RB
+Pyramid NNP NN
+Psychology NNP
+Charlottesville NNP
+understating VBG
+Scorpios NNPS
+Yontz NNP
+Qinghua NNP
+multilayer JJ
+tissues NNS
+Adverbial JJ
+sugar-using JJ
+architect NN
+Housing NNP NN
+goo NN
+Paribas NNP NNPS NNS
+anthrax NN
+rowing NN
+coriander NN
+Vanity NNP
+squibs NNS
+municipal-bond JJ NN
+sensitive JJ NN
+Landon NNP
+confinements NNS
+fixtures NNS
+Anti-Christ NNP
+orphans NNS
+mathematics NNS NN
+Turin NNP
+concoction NN
+Pendergast NNP
+imperious JJ
+Communese NNP
+Hawaiian\/Japanese JJ
+workday NN
+buttressed VBN
+Bagging VBG
+sometime RB JJ
+Slick JJ
+pharmacies NNS
+Melbourne-based JJ
+Years NNS NNP NNPS
+eucalyptus NN
+Freinkel NNP
+bathrobe NN
+depictions NNS
+longtime JJ NN
+Marino NNP
+Enoch NNP
+BVIslander NN
+KUHN NNP
+emulsified VBN
+fizzled VBD VBN
+less JJR JJS CC RB RBR RBS RBR|JJR
+earthquakes NNS
+abort VB
+Ross NNP
+interposition NN
+soil-removal JJ
+vividness NN
+Stooges NNPS NNP
+sleeplessly RB
+Computation NNP
+COOPERATION NN
+familiarize VB
+interstate JJ NN
+presuming VBG
+thermostated VBN
+scribbling VBG
+seventy-fifth JJ
+pertaining VBG
+medicinal JJ NN
+Masahiro NNP
+Tufts NNP
+quadratic JJ
+fencing NN
+Doughnuttery NN
+Franz NNP
+Lamma NNP
+cotton-ginning JJ
+Seligman NNP
+misinterpret VB VBP
+footsteps NNS
+reversibility NN
+garbage-disposal NN JJ
+Pam NNP NN
+Marvelous JJ
+Scorpio NNP
+Entrepreneurs NNS
+Swedes NNPS NNP NNS
+Andreas NNP
+Chong NNP
+whispers NNS VBZ
+jitterbug NN
+Klatman NNP
+Advises VBZ
+Neurex NNP
+Bhutan NNP
+slouches VBZ
+Mushkat NNP
+sketch NN VB
+twelve-hour JJ
+renters NNS
+non-police JJ
+LeClair NNP
+Ministries NNP
+geeks NNS
+pennies NNS
+Fontaine NNP
+Infusion NN
+bulkheads NNS
+USF&G NNP
+Roleplaying NN VBG
+front-end JJ
+A*/NNP&S NN
+monotone JJ NN
+secret JJ NN
+suspicions... :
+Adherence NN
+searched VBD VBN
+unreleased JJ
+typically RB
+coproductions NNS
+sprinkling NN VBG
+evenly RB
+Kazuhiko NNP
+whimpering VBG
+Claus NNP
+Aramis NNP
+Dunes NNPS NNP NNS
+last-place JJ
+workouts NNS
+interest-rate NN JJ
+Letitia NNP
+Fleece NNP
+grevouselye RB
+illegitimacy NN
+anti-war-related JJ
+Ogura NNP
+Saveth NNP
+Charlayne NNP
+rash NN JJ
+tootles VBZ
+ladylike JJ
+pressuring VBG
+textile-producing JJ
+food-fish NNS
+sandbox NN
+latest-quarter JJ
+multi-million JJ
+Hoagy NNP
+trashed VBN
+so-so JJ NN
+Brailsford NNP
+Comparable-store JJ
+TSH NNP
+nisf-i-jahan NNP
+Omsk NNP
+Develop VB
+hit VBD JJ NN VB VBN VBP
+showin NN
+Kalyagin NNP
+Higher JJR NNP
+cafe NN
+victimized VBN JJ
+jag NN
+allotting VBG
+acquit VB
+pansy NN
+Protogeometric JJ NNP
+Hispanoil NNP
+royalties NNS
+Pompey NNP
+Carballo NNP
+redoubled VBN VBD
+salary NN
+'52 CD
+supply-and-demand NN
+emulator NN
+Byron NNP
+cc. NN NNS
+Compumat NNP NN
+U.S.C. NNP NN
+wrest VB
+hammerless JJ
+Angelica NNP FW
+CS NNP
+Maxine NNP
+indemnification NN
+Rory NNP
+momentum NN
+near-equivalents NNS
+satellite-launch JJ
+hullabaloo NN
+investment-newsletter NN
+Morfey NNP
+capita NNS FW NN
+antiquities NNS
+Reifenrath NNP
+Garvier NNP
+brewery NN
+tallyho NN
+nonperforming JJ VBG NN
+rationalist JJ NN
+ratable JJ
+Languages NNP NNPS
+swellings NNS
+infiltrating VBG
+forgetfulness NN
+Jean-Pascal NNP
+boulder NN
+demythologized VBN JJ
+principal-only JJ
+Yemelyanenko NNP
+vacant JJ
+consists VBZ
+interacting VBG NN
+Tartary NNP
+Canon NNP
+Handsomest JJS
+Twenty-six JJ
+funn-ih JJ
+luminous JJ
+Pickering NNP
+smoke-choked JJ
+invading VBG
+enjoying VBG
+O'Hare NNP
+prophetically RB
+mammal NN
+reappointed VBN
+first-refusal JJ
+Jaross NNP
+eradicated VBN VBD
+home-acquisition JJ
+Guyon NNP
+Frohock NNP
+CLARK NNP
+dividend NN
+Gay NNP JJ
+reprove VB
+regain VB VBP
+adventure NN VB
+inflate VB
+feedlot NN
+hr NN
+exuberance NN
+pyrotechnic JJ
+teacher NN
+Ricoh NNP
+Quintana NNP
+fun-loving JJ
+cumara NN
+paragraphs NNS
+ethanol-powered JJ
+Oxygen NN
+mite NN
+gyrate VB
+ENTERED VBD
+Secretariat NNP NN
+on-sure JJ
+fuel NN VBP VB
+Complex NNP JJ
+Dynasty NNP NN
+in... :
+Elephant NNP NN
+butyl-lithium NN
+predict\ VBP
+jailing VBG
+shelling VBG NN
+sixth-largest JJ JJS
+Kingan NNP
+Expressions NNS
+objets FW
+AZTR NNP
+Substituting VBG
+gloom NN
+waterfalls NNS
+Hesiometer NN
+subrogation NN
+sold VBN VBD
+overweight JJ NN
+extinguish VB
+enjoyment NN
+pod NN
+Harriman NNP
+Long-range JJ
+Sheraton NNP
+ex-jazz JJ
+entitles VBZ
+Pretty RB JJ NNP
+Thirty-three NNP
+Another DT NNP
+inwardly RB
+Wellsley NNP
+bellies NNS
+penicillin NN
+debs NNS
+nervous JJ
+far-off JJ
+indiscreet JJ
+taxation NN
+Namibia NNP
+Coburn NNP
+Lean NNP VB
+Jobs NNP NNS NNPS
+Savers NNP
+dung NN
+cartridges NNS
+Burnham NNP
+lesbianism NN
+scalps NNS
+Fort NNP VB
+dabhumaksanigalu'ahai VB
+Istel NNP
+Emerging VBG JJ NNP
+reserve NN JJ VB VBP
+icy JJ
+price-stabilized JJ
+Mountain-Hi NNP
+Conway NNP
+exert VB VBP
+cornucopia NN
+equations NNS
+unsuitable JJ
+Snoozing VBG
+dulls VBZ
+often-criticized JJ
+cop-out NN
+bullhide NN
+upgrading VBG NN
+sticky JJ
+shag JJ
+Phillip NNP
+Rhineland NN
+locations NNS
+Lasker NNP
+reclaimed VBN VBD JJ
+starched VBN JJ
+mare-COOR NNP
+wainscoted JJ
+Conus NNP
+Keizer NNP
+Mortgage-backed JJ
+CSC NNP
+Metro NNP NN
+mentioning VBG NN
+aspirational JJ
+Piggybacking VBG
+tins NNS
+TRUSTEE NN
+'48 CD
+Impossible JJ
+Develops NNPS
+Galophone-Prissy NNP
+plods VBZ
+seizing VBG
+Deductible JJ
+ice-cold NN
+Educator NNP
+fullyear JJ
+valid JJ
+Conservatism NN
+Coventry NNP
+Dili NNP
+deadliest JJS
+mini-doll NN
+Reared VBN
+back-yard JJ NN
+brunch NN
+depositions NNS
+Barbaud NNP
+causeways NNS
+reappear VBP VB
+Graves NNP
+Ekwanok NNP
+Iron NNP NN
+long-studied JJ
+expurgation NN
+Caligula NNP
+padlock NN
+Leaving VBG
+BellSouth-LIN NNP JJ
+carnivorous JJ
+Invitation NNP
+Seddon NNP
+Skittish JJ
+Norway NNP
+barricades NNS
+Howick NNP
+Winnetka NNP
+toxicant NN
+opts VBZ
+cooks NNS
+Matsui NNP
+Guesstimates NNS
+buts NNS
+Browder NNP
+unpleasantness NN
+junkbond-financed JJ
+second-deadliest JJ
+lacey JJ NN
+All-American NNP
+convicting VBG
+forints NNS
+unperformed JJ
+Northumberland NN
+applicators NNS
+Velazquez NNP
+most-used JJ
+Cedar NNP
+pecs NNS
+paperwork NN
+SE\/30 NNP
+franc NN
+ex-schoolteacher NN
+eliminates VBZ
+Jaycees NNPS
+struggles NNS VBZ
+Allende NNP
+lest IN
+Berkman NNP
+Kibbutzim NNS
+incipiency NN
+patinas NNS
+rear-guard JJ
+scammed VBD
+braying JJ
+tightness NN
+photomicrograph NN
+Haitian JJ
+Rost NNP
+Twenty-five CD JJ
+Monument NNP NN
+travel-leisure JJ
+Salaries NNS
+Buddhists NNP
+Prideaux NNP
+Holliger NNP
+etiquette NN
+blood-forming JJ
+Passengers NNS NNP
+interrogation NN
+mid-'80s NNS
+carload NN
+line-drawing JJ
+Viewing VBG NN
+depersonalization NN
+Sauce NNP
+handshake NN
+Kan. NNP
+rainfall NN
+therefrom RB
+diagonally RB
+jingle NN
+Urged VBN
+shotshells NNS
+summarily RB
+VisionQuest NNP
+flammable JJ
+Suitors NNS
+Clipper NNP
+second-class JJ
+Siamese NNP
+shallowness NN
+CPT NN
+Kozinski NNP
+more-personal JJ
+Bolduc NNP
+handheld JJ
+backs NNS VBZ
+Paray NNP
+C.P. NNP
+Uclaf NNP
+Bethea NNP
+hydrophilic JJ
+Shady NNP
+Beantown NNP
+Cannon NNP
+Penman NNP
+swelling VBG JJ NN
+anti-Colmer JJ
+Anson NN
+busied VBD
+cables NNS
+L-1011 NNP
+Tuttle NNP
+Newspapermen NNS
+funks NNS
+Competitive JJ NNP
+outslugged VBN
+manes NNS
+discos NNS
+one-penny JJ
+codifies VBZ
+Halva-Neubauer NNP
+Pan NNP
+retreat NN VB
+channeling VBG
+X-region NN
+locate VB VBP
+assassinated VBN VBD
+price-to-earnings JJ
+Galant NNP
+revealing VBG JJ
+frankest JJS
+sudden-end JJ
+Camilo NNP
+helium NN
+unheeded JJ
+inheriting VBG
+long-awaited JJ
+pseudo JJ
+ballplayer NN
+burners NNS
+Throne NN
+veritable JJ
+hearer NN
+junked VBN
+busy JJ
+interred VBD
+bride NN
+dazzle VB
+bods NNS
+Agricultural NNP JJ
+diving VBG JJ NN
+Introduce VB
+percolator NN
+teaches VBZ
+eyewitnesses NNS
+CRI NNP
+dithers VBZ
+whistles NNS
+lavender JJ NN
+ray NN
+Confessions NNPS NNP NNS
+health-insurance NN
+pursed VBD
+tolerates VBZ
+netted VBD VBN
+bloodied JJ VBN
+broncs NNS
+warmed VBD VBN
+Hammer.`` ``
+Maronites NNPS
+tracts NNS
+Easter NNP NN
+Benets NNPS
+F.O.O.D. NNP
+expectancy NN
+songbirds NNS
+F-major NN
+inspiring JJ VBG
+pancakes NNS
+bookcases NNS
+pathfinder NN
+dogwood NN
+boulders NNS
+Paid VBN JJ
+Biochemical NNP
+post-Watergate JJ
+Kurosaki NNP
+confabulation NN
+Therese NNP
+Albania NNP
+retaining VBG
+shoveled VBD VBN
+Tristano NNP NN
+Aldridge NNP
+squinted VBD VBN
+high-rolling JJ
+shine NN VBP VB
+'53 CD
+Jonas NNP
+mycology NN
+Bloopers NNS
+denationalizations NNS
+health-conscious JJ
+piddling JJ
+Sukuma NNP
+bellboys NNS
+Theirs JJ PRP
+Onni NNP NNS
+private-label JJ NN
+fast-firing JJ
+thrives VBZ
+present-day JJ
+Mosbacher NNP
+black-robed JJ
+LEVINE NNP
+Cirrus NNP
+metal-cleaning JJ
+more-distinctive JJR
+typewritten JJ VBN
+intake NN
+Ultimately RB
+blonde-headed JJ
+peroxide NN
+insertion NN
+seller NN
+skilful JJ
+slaked VBN JJ
+politicizing VBG
+disdains VBZ
+spectacle NN
+forcefulness NN
+unlicensed JJ
+drug-testing NN
+Skyway NNP
+economics NNS NN
+Veselich NNP
+Mahagonny NNP
+six-story JJ
+Divergent JJ
+understates VBZ
+Brazelton NNP
+noes NNS
+Delta NNP JJ NN
+pendant NN
+CT NN NNP
+noxious JJ
+kickoff NN
+sole JJ NN
+rec NN
+squeaked VBD
+Gressette NNP
+Murdoch NNP
+Dainippon NNP
+riffing VBG
+Push-Pull NNP
+followings NNS
+cocktail NN
+E.H. NNP
+debt NN
+Haack NNP
+literary JJ NN
+complicate VB VBP
+bulbs NNS
+DeLuca NNP
+attributions NNS
+preceded VBD VBN
+Flattau NNP
+team-mate NN
+Pitcoff NNP
+experientially RB
+Continue VB VBP
+toothpaste NN
+economic-restructuring JJ
+cap. NN
+Triborough NNP
+--Thailand NNP
+Impediments NNP
+anti-Honecker JJ
+Hansen NNP
+Government-Sponsored NNP
+seven-yen JJ
+scrapped VBN VBD
+reenact VB
+alight JJ VB
+debt-riddled JJ
+Raskolnikov NNP
+Herold NNP
+FDA NNP
+Supper NNP NN
+Tobin NNP
+transmit VB VBP
+surgeon NN
+decreasing VBG
+Sass NNP
+prosecute VB
+interjected VBD
+brick NN
+shah NN
+appearances NNS
+commercial-banking NN JJ
+Ratajczak NNP
+loquacity NN
+converts NNS VBZ
+tougher JJR RBR
+Beronio NNP
+sullen JJ
+Manufactured JJ
+five-round JJ
+CELEBRATIONS NNP
+inflates VBZ
+feedlots NNS
+Banjo NNP
+grassfire NN
+help-wanted JJ
+weak JJ
+Harro UH
+DO VB
+exited VBD VBN
+stirred VBD VBN
+tint VBP NN
+Memoirs NNP
+Stauffer NNP
+excision NN
+f.o.b JJ
+fellowships NNS
+armful NN
+Gullah NNP
+WARNED VBD
+Grubman NNP
+frailties NNS
+Protestants NNPS NNP NNS
+backed-up JJ
+Bachelor NNP
+hydraulics NNS NN
+industry-financed JJ
+slugger NN
+Quell NNP
+knuckle NN VB
+sideline NN
+starving VBG JJ
+wave-travel JJ
+teachers NNS
+Unanalyzed JJ
+endowments NNS
+unsmilingly RB
+evenings NNS
+sympathizing VBG
+Sailor NNP
+Ariane NNP
+audiovisual JJ
+Athletics NNP NNPS NNS
+TRO NN
+office-supplies NNS
+Heumann NNP
+Lecturer NNP
+Autolatina NNP
+Electric NNP JJ
+revels NNS
+butt NN CC VBP VB
+melee NN
+Patricelli NNP
+crash-wary JJ
+infringement NN
+anti-clericalism JJ
+unregistered JJ
+Annisberg NNP
+Jodi NNP
+swivel JJ NN VB
+houseman NN
+three-party JJ
+cratered VBN
+Pountain NNP
+Maugham NNP
+'49 CD
+Boursin NNP
+Nutmeg NNP
+bovines NNS
+Passaic NNP
+open-door NN JJ
+in IN FW NN RB RP IN|RP NNP RP|IN RBR VBD
+Purkis NNP
+accenting NN
+dispersing VBG
+APPEARS VBZ
+Hillcrest NNP
+atone VB
+B\/C NN
+Tomash NNP
+bluechip JJ
+Denouncing VBG
+blur NN VB VBP
+flavorful JJ
+Moslem NNP JJ
+pesticide-reform NN
+Barrington NNP
+surcease NN
+gherkins NNS
+dreamless JJ
+readjustment NN
+sorts NNS
+Endo NNP
+Tokoi NNP
+Dijon NNP
+tourist-delivery JJ
+cauliflower NN
+Aquino NNP
+Malmros NNP
+treachery NN
+Disputes NNP
+Orban NNP
+Mogan NNP
+radio-cassette NN
+Boskin NNP
+Itzhak NNP
+clash NN VBP VB
+Films NNS
+un-Westernizable JJ
+junkloads NNS
+Jeancourt-Galignani NNP
+re-create VB
+exchanging VBG
+arside NN
+affilliate NN
+FAR RB
+Reconsideration NN
+moisten VB
+Brighetti NNP
+combed VBD VBN
+Astwood NNP
+Sary NNP
+Banvel NNP
+Cleaner NNP
+segmentation NN
+Officials NNS NNPS NNP
+quid-pro-quo JJ
+uninominal JJ
+meteorologist NN
+photosynthesis NN
+considered VBN VBD JJ
+shrimpers NNS
+actor NN
+somebody NN
+ahead RB JJ
+less-experienced JJ
+TECHNOLOGY NNP NN
+Follow-through JJ
+abrasive JJ NN
+bunches NNS
+honeymooners NNS
+Ingbar NNP
+attaining VBG NN
+Malvern NNP
+Warning NNP
+Enviro-Gro NNP
+A-Z NNP
+Cyprus NNP
+practicable JJ
+fast-paced JJ
+auction-house NN
+inland RB JJ
+platters NNS
+perpendicularly RB
+Containment NN NNP
+multi-million-dollar JJ
+reactionaries NNS
+Employee-owned JJ
+sanctioned VBN
+unfoldment NN
+ex-Communist JJ NN
+FE NNP
+rafts NNS
+two-by-four NN
+non-interest-bearing JJ
+partly RB
+Statues NNS
+massaging VBG
+corkscrews NNS
+world-scale JJ
+Consequently RB
+girded VBD
+deco NN
+convictions NNS
+diversification NN
+gooseberry NN
+inplace NN
+Congregationalists NNS
+coffeecup NN
+Bldg NNP
+retail-brokerage JJ
+Northwest-Skinner NNP
+calming VBG JJ
+Turbinen NNP
+equipment-leasing JJ
+barnacles NNS
+Lubriderm NNP
+Beltway-itis NN
+Ships NNS
+Smirnoff NNP
+checking VBG NN
+just-concluded JJ
+Pao NNP
+undertook VBD
+jiffy NN
+south-eastern JJ
+electric-transport NN
+general-insurance NN
+performs VBZ
+gravitation NN
+declining VBG JJ NN
+two-day JJ
+herbicide NN
+union-bidder NN
+tablespoons NNS
+Gasset NNP
+harms VBZ NNS
+sunflowers NNS
+quite-comfortable JJ
+decorum NN
+prodigious JJ
+garlanded VBD
+Wilmington NNP NN
+Heiwado NNP
+salvaging VBG NN
+Sealed NNP
+aground RB
+city\/regional JJ
+laser-resistant JJ
+dreamer NN
+S.A. NNP
+Appalachians NNPS
+camellias NNS
+receivables NN NNS
+Gradual JJ
+prepubescent JJ
+honeycombed JJ
+trade-up JJ
+longs VBZ
+anti-programmers NNS
+Miracle NNP
+Voters NNS NNP NNPS
+Warshaw NNP
+mutation NN
+rosettes NNS
+Dime NNP
+redirecting VBG
+agates NNS
+flatware NN
+Weiss NNP
+Drahuschak NNP
+lagers NNS
+well-dressed JJ
+convoluted JJ VBN
+payables NNS
+Coosa NNP
+antibody-making JJ
+exported VBN VBD
+landslides NNS
+news-weeklies NNS
+migraine NN
+adjoined VBD
+Vernava NNP
+Refcorp NNP NN
+reinterpreting VBG
+Wonderland NNP
+turpentine NN
+tampered VBD
+above-noted JJ
+thirty-foot JJ
+flocked VBD VBN
+validity NN
+deed NN
+Lectures NNPS NNS
+jai FW
+bleaker JJR
+Seventy-six JJ
+dependent JJ NN
+according VBG
+'54 CD
+Wisdom NNP NN
+self-confident JJ
+Kapadia NNP
+Monday-Friday NNP
+profligacy NN
+megalopolises NNS
+monasteries NNS
+underutilized VBN
+add VB VBP
+third-biggest JJ
+optically RB
+drug-abuse JJ NN
+sportswriter NN
+Arias NNP
+Nearly RB
+Crimea NNP
+tractor NN
+emissary NN
+cocktails NNS
+heavy-handedness NN
+Readers NNS
+administrators NNS
+forma FW
+incarcerated VBN
+large-scale JJ
+matchless JJ
+ORDERED VBN
+Mayfield NNP
+intra-party JJ
+Lucassen NNP
+wave-length NN
+Leap NNP
+Templeton NNP
+Pansies NNS
+spores NNS
+Ballad NNP
+reaction NN
+volunteered VBD VBN
+filagree NN
+pro-growth JJ
+heather NN
+bigots NNS
+Lifting VBG
+Ortiz NNP
+Shelley NNP NN
+RVs NNS
+Maccario NNP
+beefed-up JJ
+Ft. NNP
+sloe-eyed JJ
+Gati NNP
+before-and-after JJ
+rockin JJ
+figures-order NNS|NN
+Maughan NNP
+red JJ NN
+valewe NN
+Soering NNP
+pay-television NN
+Mazzorana NNP
+tirades NNS
+Nationalcar NNP
+inception NN
+Biscuit NNP
+juicy JJ
+promoting VBG
+Molotov NNP
+Marston NNP
+direct-line JJ
+competitve JJ
+NS-X NNP
+deplores VBZ
+MIT NNP
+shamanistic JJ
+Pine NNP
+Brisbane NNP
+Arthurian JJ
+Orejuela NNP
+blunter NN
+Aerospace-Thomson NNP
+short-lived JJ
+Venable NNP
+do-everything JJ
+strategic-weapons JJ
+repent VB VBP
+Continues VBZ
+indivisible JJ
+retooled VBN VBD
+Bette NNP
+job-hunters NNS
+Relishes NNS
+meatpacking NN
+whiskey NN
+tweeds NNS
+AHEAD RB
+chop VB NN
+Paree NNP
+immoderate JJ
+self-will NN
+rate NN VBP VB
+Budd NNP
+byplay NN
+financer NN
+Battered VBN
+rivalled VBD
+streetcar NN
+massively RB
+intragovernment JJ
+Castles NNS
+reserves NNS VBZ
+Jew-baiter NN
+E-II NNP
+thum PRP
+environments NNS
+brackets NNS
+Goodfriend NNP
+procreativity NN
+Moos NNP
+swearinge VBG
+leveling NN VBG
+WTPI-FM NNP
+re-emphasize VB VBP
+Alcan NNP
+incursion NN
+prospering VBG
+allotment NN
+MKI NNP
+evading VBG
+butadiene-emulsions NNS
+Bullets NNS
+conspiracies NNS
+titans NNS
+silhouetted VBN JJ
+Mazilo NNP
+for'me PRP
+colloquial JJ
+home. NN
+susceptibility NN
+pent-up JJ
+inert JJ
+elevation NN
+trained VBN VBD JJ
+satisfaction NN
+rate-mortgages NNS NN
+gold-share JJ
+skip-a-month JJ
+browny JJ
+Muscatine NNP
+prefaced VBD VBN
+comings NNS
+vandals NNS
+Gee UH NNP
+less-developed-country JJ
+Hawkinses NNPS
+MD-80 NN NNP
+speared VBD
+Medicare-eligible JJ
+Bartok NNP
+shrewdest JJS
+Rizzello NNP
+Skoal NNP
+more-selective JJR JJ
+Flynn NNP
+single-party JJ
+hangups NNS
+Home NNP NN
+commentaries NNS
+Tabernacle NNP
+funds-management NN
+commercials NNS
+entry-limit JJ
+age-and-sex JJ
+Mrad NN
+thousandths NNS
+Smoking NNP VBG NN
+Kellogg-Briand NNP
+Wiedemann NNP
+ad-free JJ
+LONGS NNP
+Metz NNP
+Christiania NNP
+trend-setter NN
+revisions NNS
+Holgerson NNP
+storm-damaged JJ
+compilation NN
+Hereby RB
+transmits VBZ
+decreed VBD VBN
+kilowatts NNS
+Himebaugh NNP
+articles NNS
+Albanian NNP
+fundraisers NNS
+bouffant JJ NN
+vehicle-production JJ
+Valley NNP
+psychological JJ
+commando NN
+Bystrzyca NNP
+Manganese NNP
+disobedient JJ
+Puzzled VBN
+soma NN
+Romanian JJ
+Whimsey NNP
+Queks NNPS
+Fujisankei NNP
+dialing VBG NN
+Ruger NNP
+maquette NN
+nosediving VBG
+Mony NNP
+Phillips NNP NNS
+Gatward NNP
+Ousley NNP
+cement-mixing JJ
+EK NNP
+Pullmans NNS
+gaucho NN
+laxity NN
+lewdness NN
+called VBN VBD VB
+volumetric JJ
+willfully RB
+Luxuries NNP
+Forecasting NN
+Riverside NNP
+Finney NNP
+besiege VB
+heterogamous JJ
+endocrine JJ
+Software NNP NN
+tale NN
+Maynor NNP
+Academics NNS
+Synod NNP
+light-truck JJ NN
+connotation NN
+illogical JJ
+CONSULTING NNP
+Landor NNP
+cartoonlike JJ
+harshness NN
+pores NNS VBZ
+LeBow NNP
+carriage NN
+holster NN
+Unifil NNP
+Tone NN
+half-acre JJ
+resounds VBZ
+home-for-the-night NN
+cryptographic JJ
+appliance NN
+write-offs NNS NN
+mid-sized JJ
+Brozman NNP
+Isis NNP
+Aventine NNP
+wus RB
+client NN
+Edson NNP
+oft-repeated JJ
+Guizot NNP
+Fokine NNP
+Reinisch NNP
+pro-Yankee NN
+Rumanian JJ
+fuel-efficient JJ
+Thule NNP
+configurations NNS
+supercritical JJ
+Thurber NNP
+Melisande NNP
+rent-a-colonel NN
+Heilman NNP
+that... :
+evict VB
+basement NN
+finances NNS VBZ
+tangibly RB
+marketwise RB
+VII NNP
+Electro-Optical NNP
+mid-range JJ
+included VBD VBN JJ
+Nara NNP
+punched VBD VBN
+Ineffective JJ
+Butte NNP
+Fil NNP
+MLD NNP
+retardant NN
+J.J NNP
+Artisans NNS
+emerging-growth NN
+Pampers NNPS NNP
+telexes NNS
+tomatoes NNS
+Shizue NNP
+Oczakov NNP
+jerked VBD VBN
+shackles NNS
+totemic JJ
+closing VBG JJ NN VBG|NN
+muster VB NN
+NUCLEAR NN
+guzzling NN
+mid-size JJ
+Saadi NNP
+Enthusiastic JJ
+guys NNS
+hassle NN VB
+professors NNS
+Marion NNP
+Syllables NNS
+grata FW
+C-Span NNP
+Iken NNP
+S-D NN
+loaded VBN JJ VBD
+Reagan-Republican JJ
+GA NNP
+truth-in-lending NN
+'55 CD
+Tuesday NNP
+Tobruk NNP
+three-times JJ
+Delight NNP
+Pasteur NNP
+worship NN VB VBP
+Isaam NNP
+Shaffner NN
+spaniel NN
+Yewaisis NNP
+recollections NNS
+camps NNS
+progressed VBD VBN
+yachters NNS
+drug-making JJ
+off-center JJ
+sidelines NNS
+Mondry NNP
+Motors NNPS NNP
+reservoirs NNS
+Vom NNP
+sketchiest JJS
+Interspec NNP
+Owls NNS
+mutilating VBG
+DIGITAL NNP
+sequins NNS
+assassinating VBG
+antitakeover JJR
+deformation NN
+much-copied JJ
+CHIPPING VBG
+chip-design JJ
+fractioning VBG
+outbid VB VBD VBN VBP
+Brandhorst NNP
+Trimmer NNP
+vade FW
+bumbling JJ VBG
+Statutes NNS
+underemployment NN
+Countin VBG
+flagpole NN
+Aging NNP VBG
+Brownell NNP
+Dill NNP
+cowman NN
+vindictive JJ
+lance NN
+headline-grabbing JJ
+indeterminate JJ
+ablated VBN
+feverish JJ
+stockade NN
+Lagerlof NNP
+nationalists NNS
+nutritional JJ
+Gilhooley NNP
+conscience NN
+utilitarian JJ
+attitudinizing NN
+unassisted JJ
+X-linked JJ
+latches VBZ
+specialty-material JJ
+Founders NNPS NNP NNS
+Samaritan NNP
+operates VBZ
+unfolded VBD VBN
+Multiplication NN
+BEAVER NNP
+flatten VB
+discord NN
+headroom NN
+kiosk NN
+Bartol NNP
+thirty-nine CD
+fun NN JJ
+MiG-23BN NN
+MD-81 NN
+leads VBZ NNS
+PROPOSAL NN
+unemotional JJ
+Pilson NNP
+charisma NN
+maternity NN
+Modern NNP JJ NN
+material-management NN
+constituencies NNS
+Fray NN
+Year-earlier JJ
+prepaid-tuition JJ
+mutuality NN
+thereto RB
+FDC NNP
+exhilarating JJ
+Professionals NNP NNS
+freeway NN
+Katya NNP
+Kaldahl NNP
+Hospitalization NN
+heavier-than-usual JJ
+torment NN VB
+lope NN
+Bakersfield NNP
+shadier JJR
+quieter JJR
+contemporaries NNS
+Government NNP NN
+dump VB VBP NN
+Burgsteinfurt NNP
+Riemann NNP
+bellicosity NN
+Roads NNP NNS
+gigue-like JJ
+asks VBZ
+Conservative NNP JJ NN
+Capek NNP
+Abide NNP
+Klauser NNP
+lettin VBG
+inboards NNS
+Microamerica NNP
+standoff NN
+Camillo NNP
+FLORIDA NNP
+catastrophically RB
+retailers NNS
+awakened VBN VBD
+first-grader NN
+walls NNS
+villain NN
+angler NN
+Inspectors NNS
+nonagricultural JJ
+CV NNP
+Visits NNS
+escudo NN
+Univision NNP
+Entombment NN
+paragraph NN
+Kress NNP
+Virsaladze NNP
+infiltration NN
+Non-lawyers NNS
+playoff NN
+fifth-century JJ
+curtailment NN
+Oakland NNP NN
+conformity NN
+Cadre NNP
+successively RB
+Grobstein NNP
+Legionnaire NNP
+usual JJ RB
+Laws NNS NNP
+Stavropoulos NNP
+COASTAL NNP
+Finnie NNP
+CSF NNP
+tractor-semitrailer NN
+vice-president NN
+T.V. NNP
+gesture NN
+X-ray NN JJ
+imbruing VBG
+Kerosene NN
+forfeiting VBG
+Taste NN VB NNP
+subspecies NNS
+Berkley NNP
+Juliette NNP
+weeklies NNS
+bewilderment NN
+includee VBP
+Buck NNP
+peek NN
+seat-back JJ
+dotting VBG NN
+Reese NNP
+nonmedia NN
+nagged VBD
+mass-market JJ NN
+Hartigan NNP
+Boehringer-Ingleheim NNP
+diffuse JJ VB
+psychically-blind JJ
+zoology NN
+Kozloff NNP
+rosins NNS
+flawed JJ VBN
+CREDITS NNS
+sunburn NN VB
+morbidity NN
+ocean-pollution NN
+That DT NNP PDT IN RB WP WDT
+Tom-and-Jerry NNP
+meanness NN
+honeymooned VBD VBN
+Barbary JJ NNP
+Roseanne NNP
+sun-drenched JJ
+undermined VBN VBD JJ
+Pritzker NNP JJR
+Magnus NNP
+Sutpen NNP
+laurel NN
+nerveless JJ
+Chromspun NNP
+Bans NNP
+ruling-class JJ
+Experiments NNS
+Rochelle NNP
+'60 CD
+Residents NNS
+shoplifters NNS
+following VBG JJ NN
+Minority NNP NN
+baffle VB
+Hambros NNP
+naturalness NN
+J.M. NNP .
+enchained VBN
+toughest-ever JJS
+dispensers NNS
+holored VBN
+look VB NN VBP
+bubbling VBG NN
+industrialized'em NN
+Planned NNP
+seethes VBZ
+innuendoes NNS
+Nilsson NNP
+Frankel NNP
+theopylline NN
+hydraulic JJ
+Vasotec NNP
+deliberately RB
+fire-resistant JJ
+Zedmark NNP
+Duverger NNP
+bell NN
+oil-service NN
+sexism NN
+slots NNS
+Contributions NNS
+transparently RB
+Books NNS NNP NNPS
+idiosyncrasies NNS
+Norwood NNP
+seized-property JJ
+Ducky NNP
+Kaydon NNP NN
+Oppenheimer NNP NN
+couches NNS
+Coontz NNP
+droopy-eyed JJ
+Guarana NNP
+ip NN
+over-50s NNS
+Egyptians NNPS NN
+harassing VBG
+minuscule JJ
+central JJ NN
+hasten VB VBP
+reselling VBG
+Kerry NNP
+enforcer NN
+Giuseppe NNP
+corkscrew NN
+mano NN
+subcontracting NN JJ VBG
+community-based JJ
+Chariots NNS
+Skylark NNP
+Molokai NNP
+SHOPPERS NNS
+Rail-transit NN
+slighty NN
+sunflower NN
+self-conceited JJ
+punishable JJ
+redwoods NNS
+tundra NN
+presentations NNS
+Citrus NNP
+orange JJ NN
+tyrant NN
+slayings NNS
+preached VBD VBN
+mid-term JJ
+whipped VBD VBN JJ
+ostensible JJ
+MBAs NNS
+justice NN
+Agamemnon NNP
+ymg NN
+Coincidences NNPS
+enslave VBP VB
+puzzler NN
+sceptical JJ
+yield-maintenance NN
+Nominations NNS
+aisles NNS
+pulping VBG
+Doritos NNS
+Gilbertie NNP
+jejune JJ
+Hippophagique NNP
+long-stemmed JJ
+maybe RB
+Interleukin-3 NN
+Ely NNP
+infrastructural JJ
+carloads NNS
+misconception NN
+Sewing NNP VBG
+Carolinas NNPS NNP NNS
+rationality NN
+Taliesin NNP
+Glory NN NNP
+stocks NNS VBZ RB
+coldhearted JJ
+Enel NNP
+Fukuoka NNP
+distortion NN
+Lear NNP JJ
+Two-thirds NNS
+Save VB NNP IN RB
+lapidary JJ NN
+high-end JJ
+Habicht NNP
+ex-bandits NNS
+dunk NN VB
+Jens-Uwe NNP
+linger VB VBP
+Electronics NNP NNPS NNS NN
+sentence NN
+immune-system NN
+Swallow-Barn NNP
+jackpot NN
+shallow JJ NN
+French-speaking JJ
+bigger-than-expected JJ
+surface NN VB VBP
+Legalizing VBG
+eye-deceiving NN
+little-town JJ
+Rashid NNP
+government-backed JJ
+P-7A NNP
+write-off NN
+Albright NNP
+Incline NNP
+mania NN
+Belafonte NNP
+Lanes NNS
+name-dropping NN NNP
+lookup NN
+anachronistic JJ
+entry-limiting JJ
+Nuclepore NNP
+Yokogawa NNP
+hair NN
+female-dominated JJ
+ballooned VBN VBD
+whizzing VBG
+video-cassette JJ NN
+O.E.C.D. NNP
+committment NN
+Briggs NNP
+salutaris FW
+hollered VBD
+Nobuto NNP
+Pulley NNP
+Engaged VBN
+days NNS
+Crossing VBG
+shade NN VB
+ensued VBD VBN
+wean VB
+Supremacy NN
+swallow VB NN VBP
+gyrated VBD VBN
+CTA NNP
+debate NN VB VBP
+unrepentant JJ
+Ernesto NNP
+Cabrini NNP
+Turtles NNPS
+Superintendents NNS
+Looming VBG
+Keynes NNP
+already-tense JJ
+L.E. NNP
+Otros NNP
+miso NN
+snap-on JJ
+array NN
+Bitterness NN
+Von NNP FW
+not-too-distant JJ
+mediation NN
+jowl NN
+exclusions NNS
+nation-building NN
+Bucking VBG
+peeking VBG
+split-finger NN
+farm NN VB
+drug-laden JJ
+Riga NNP
+valeur FW
+protein-restricted JJ
+expansive JJ
+investor NN
+self-involved JJ
+commenced VBD VBN
+oxidised VBN
+Kodansha NNP
+marred VBN JJ VBD
+WAZ NNP
+Leesona-Holt NNP
+thermodynamics NNS
+ruthenium NN
+Torrid-Adios NNP
+Amadee NNP
+Treausry NNP
+lively JJ RB
+ambivalent JJ
+Rucellai NNP
+almonds NNS
+spontaneity NN
+shouts VBZ NNS
+angles NNS
+Spalding NNP VBG
+telegraphic-transfer JJ
+Capel NNP
+unless IN
+somewhat RB
+Rhine NNP
+Jeffersonian JJ
+klaxon NN
+Elkhorn NNP
+drug-addled JJ
+emasculation NN
+refitting VBG
+D'Ancona NNP
+Conceptions NNS
+Expense NN
+Ants NNS
+banquet NN
+asymmetric JJ
+hated VBD JJ VBN
+refers VBZ
+Persons NNS NNP NNPS
+DIAL-A-PIANO-LESSON NNP
+Vadar NNP
+Superconductivity NN
+major-market JJ
+Survivability NN
+pummeling NN
+Segundo NNP
+Ursa NNP
+Beneficiary NN
+la FW NNP DT NN
+Timber NN NNP
+Views NNS
+half-cup JJ
+should-be JJ
+favoring VBG
+factor NN VB VBP
+Hammersla NNP
+up-market JJ
+snow NN VB
+heroism NN
+low-risk JJ
+Sarti NNP
+cutsie JJ
+enforces VBZ
+billion-a-year JJ
+home-blend NN
+Corabi NNP
+The'burbs NNPS
+cyst NN
+diaphragm NN
+using VBG
+one-woman JJ
+marques NNS
+befogged JJ
+Whom WP NNP
+puppies NNS
+CENTRUST NNP
+beetle NN
+Curragh NNP
+imminently RB
+freeing VBG NN
+Rabaul NNP
+overdose NN
+choke VB VBP NN
+convection NN
+HyperCard NNP
+Fuhrmann NNP
+Wheel NNP NN
+pagodas NNS
+TransAtlantic NNP
+occupational JJ
+epicenter NN
+Hans-Ulrich NNP
+melody NN
+hypnotically RB
+Gurion NNP
+Small-business NN
+battalion NN
+Motorists NNS
+peel VB
+L'Astree NNP
+excrement NN
+turtle-neck JJ
+Easier JJR RBR
+Interviewing NN
+blank JJ NN RB VB
+Itel NNP
+LPL NNP
+steeple NN
+regattas NNS
+Lenobel NNP
+Georg NNP
+frosting NN
+lamentations NNS
+sit-down JJ
+Mariotta NNP
+Cheney NNP
+shack NN
+pulses NNS
+Violet NNP
+underclothes NNS
+no-confidence NN
+topped VBD VBN
+Moross NNP
+Spooked VBN
+Cramer NNP
+Alberg NNP
+Farnworth NNP
+Abatuno NNP
+end-tailed VBN
+Wis NNP
+Brewers NNS
+Enserch NNP
+vault NN VB
+Muniak NNP
+Foss NNP
+Dru NNP
+non-volatile JJ
+Luna NNP
+Couperin NNP
+magnitude NN
+move-up JJ
+impresser NN
+preserving VBG
+per-ton JJ
+deluded JJ VBD
+CW NNP
+remarking VBG
+vibration-control JJ
+fatboy NN
+rights-of-way JJ
+Sobel NNP
+Himself PRP
+abrasives NNS
+Bucay NNP
+Floats VBZ
+puzzles NNS VBZ
+much JJ DT NN RB RB|JJ
+smokehouse NN
+casein NN
+yourself PRP
+chowder NN
+Tong NNP
+interaction NN
+tussled VBD
+past-fantasy JJ
+Supermarket NN NNP
+science-watchers NNS
+Dauchy NNP
+Legally RB
+Billmeyer NNP
+Arnold-Foster NNP
+medium-duty JJ
+Presidential JJ NNP
+recommendation NN
+veneer NN
+Harris NNP
+Mildner NNP
+stunt NN VB
+sanguineous JJ
+pager NN
+PAYS VBZ
+ply VBP VB
+clucked VBD
+third-place JJ
+LeBaron NNP
+footwear NN
+sitter NN
+Insam NNP
+violent JJ
+echoes NNS VBZ
+vinyl NN
+'61 CD
+tersely RB
+commemorate VB VBP
+thermally RB
+Lerner NNP
+Accustomed JJ
+honkytonks NNS
+Canny NNP
+napkin NN
+retreats NNS
+got VBD VBN VBP VB
+Draft NNP
+re-export NN
+Left-stream JJ
+three-member JJ
+Pils NNP
+messianic JJ
+idosyncratic JJ
+Engineered NNP
+Wickham NNP
+Stormy NNP
+Rabb NNP
+Fred NNP
+Calgene NNP
+bantered VBN
+disassociate VB
+Folkerts NNP
+FASB NNP
+deducing VBG
+SMALL-COMPANY JJ
+airline-crash JJ
+Dream-Sweetmite NNP
+Schrage NNP
+roof-crush JJ
+Jolly JJ NNP
+sleepwalk NN VB
+victimize VBP
+Temper NN NNP
+Thalmann NNP
+railbed NN
+one-out-of-three JJ
+light-crude NN
+Rubbish NN
+d'Amiante NNP
+incompletely RB
+Knill NNP
+one-house JJ
+Parapsychology NNP
+chlorofluorocarbons NNS
+Fellini NNP
+furthers VBZ
+lets VBZ
+estate-freeze JJ
+Manko NNP
+Smorgon NNP
+buyings NNS
+Herrera NNP
+commonplaces NNS
+Kanan NNP
+diaphragms NNS
+Malpass NNP
+stare VB VBP FW NN
+retorts NNS VBZ
+dirty JJ VB
+blackouts NNS
+Manufacturer NNP
+paving VBG
+deep-pocketed JJ
+Spend VB
+insert VB VBP NN
+Civilian NNP
+bunnies NNS
+Ravitch NNP
+Barton NNP
+too-expensive JJ
+KnowledgeWare NNP
+tableware NN
+Rosenmueller NNP
+anti-diarrheal JJ
+Slim NNP JJ
+maimed JJ
+Portfolios NNPS NNS
+weird JJ NN
+Wichita NNP
+Leuffer NNP
+Commanding VBG
+Woodside NNP
+bachelor-type JJ
+Par NNP
+Wherever WRB
+Imports NNS NNP NNPS
+Salida NNP
+nonlethal JJ
+franchised VBN JJ
+planner NN
+mutate VB
+proteins NNS VBZ
+superimposing VBG
+counterpoint NN
+wooed VBN VBD
+Houten NNP
+Communist-designed JJ
+spell-binding JJ
+Rubinstein NNP
+Compiled VBN
+bossed VBN
+Aye-yah-ah-ah UH
+Gre't JJ
+complexities NNS
+Grimesby NNP
+Disneyland NNP
+Viroqua NNP
+Medicare NNP
+redeploy VB
+minute NN JJ
+cleric NN
+Sweezey NNP
+Mechanics NNP
+parked VBN JJ VBD
+Bischofberger NNP
+hugged VBD
+frescoed JJ
+trees NNS
+Maturities NNS
+Why WRB NNP UH
+switchers NNS
+K. NNP
+oud NN
+typhoons NNS
+Fiats NNPS
+Industries-developed NNP
+patrimony NN
+More RBR JJ NN JJR JJS RBR|JJR NNP
+reinsurance NN
+self-contained JJ NN
+slurry NN
+intra-governmental JJ
+bridal JJ
+Unseasonably RB
+ushered VBD VBN
+discounters NNS
+Yeast NN
+drink NN VBP VB
+stripped-down JJ
+McKeown NNP
+verification NN
+Simmonsville NNP
+naughty JJ
+pro-cut JJ
+commands NNS VBZ
+Kurlander NNP
+novitiate NN
+suffocated VBN
+Brissette NNP
+extraditing VBG
+McGurk NNP
+Enfield NNP
+cools VBZ
+distributors NNS
+shade-darkened JJ
+townhouse NN
+ethnography NN
+IFAR NNP
+Esprit NNP
+Paramedics NNS
+gold NN JJ
+vigilance NN
+DM6,000 CD
+Drago NNP
+Lieppe NNP
+Lech NNP
+Shirl NNP
+Opax NNP
+Autorapido NNP
+cage NN
+League NNP NN
+battalions NNS
+perfection NN
+binomial NN
+CTB NNP
+viscous JJ
+Varity NNP NN
+radio-station NN
+onslaughts NNS
+impresses VBZ
+wassail NN
+backpack NN
+Christmas-time JJ
+v. CC IN NN
+brazen JJ VB
+Vadas NNP
+bobbing VBG
+Merritt NNP
+Simonelli NNP
+rectangular JJ
+market-research NN JJ
+underscored VBD VBN
+Rosy NNP
+moonlighting NN VBG
+ratify VB VBP
+revenge NN
+Ends NNS VBZ NNPS
+brimmed VBD VBN
+idiotypes NNS
+creator NN
+Sifco NNP
+brokerage-firm JJ
+Saul NNP
+cruisers NNS
+ASKO NNP
+Mythical JJ
+itchy JJ
+co-extinction NN
+gas-one-tenth NN
+traveled VBD JJ VBN
+Pianos NNP
+Orient NNP NN
+colleague NN
+obtrusiveness NN
+disturbingly RB
+tendons NNS
+showing VBG NN
+collapsible JJ
+auto-emissions NNS
+pseudo-symmetric JJ
+Dolora NNP
+black-and-white JJ
+Santacruz NNP
+Aviion NNP
+oversoft JJ NN
+Bohrer NNP
+cunningly RB
+Vauxhill NNP
+inequality NN
+buy\ JJ
+most-sold JJ
+fourth-grade JJ
+bypassing VBG
+caffeine-free JJ
+Due JJ NNP RB
+addiction-treatment JJ NN
+Sacrestia NNP
+husky-voiced JJ
+chaste JJ
+personnel NNS JJ NN
+reallocate VB
+suddenness NN
+Rescue NNP NN
+Sakowitz NNP
+embarrassing JJ VBG
+besieged VBN JJ
+hugely RB
+Matsuo NNP
+Convocations NNS
+stress-related JJ
+fille FW
+policymakers NNS
+Negotiating VBG
+Markel NNP
+photochemical JJ
+E-mail NN
+battlefront NN
+idly RB
+Mindscape NNP
+Cortese NNP
+Woodman NNP
+Kobrand NNP
+cheekbones NNS
+bankrupts VBZ
+six-year-old JJ
+stock-in-trade NN
+panhandle NN
+Only RB JJ
+typed VBN JJ VBD
+Vance NNP
+Lewtas NNP
+Anglo-Irish JJ
+franchisee NN
+Bridgeport NNP
+incentive-reduced JJ
+conservatorship NN
+dully RB
+Kalman NNP
+largish JJ
+M$ $
+circling VBG
+high-set JJ
+tarry VB
+Bush-Gorbachev NNP
+constant JJ NN RB
+Megdal NNP
+compact JJ NN NN|JJ
+above IN JJ RB
+marketed VBN VBD
+cashflow NN
+sale-leaseback NN
+Rieslings NNPS
+Arroyo NNP
+Turgut NNP
+unshakable JJ
+anniversary NN
+guaranteed-neutral JJ
+Jury NNP NN
+corpse NN
+bargained VBD VBN
+original-instrument JJ
+Underwriting NN VBG
+huggings NNS
+disloyalty NN
+Weichern NNP
+self-fulfilling JJ
+shielding NN VBG
+mackintosh NN
+falconry NN
+Hero NNP NN
+envy NN VBP VB
+Isle NNP
+Glove NNP
+Pollution-control JJ
+skeleton NN JJ
+unusual JJ
+on-budget JJ
+pages NNS
+lb NN NNS
+Longstreet NNP
+super-regional JJ
+Junkerdom NNP
+Lennie NNP
+Ex-smokers NNS
+litter-strewn JJ
+loom VBP NN VB
+recall VB NN VBP
+Serge NNP
+cornerstone NN
+payola NN
+surgical-abortion JJ
+gourmet NN JJ
+construed VBN VBD
+Recordings NNP
+Jean-Claude NNP
+non-subscription JJ
+Nonspecific JJ
+--'cause JJ
+scenes NNS
+fluttered VBD
+trifling JJ
+home-bound JJ
+buckle-on JJ
+Arab NNP JJ
+Isolde FW NNP
+lunch-time NN
+Langley NNP
+Democrat NNP NN
+credit-rating JJ NN|JJ NN
+biologists NNS
+Agence NNP
+grinding VBG NN
+handed VBD VBN
+TAXPAYERS NNS
+direction NN
+lyric JJ NN
+bootlegger NN
+Republics NNPS NNP
+Central-bank NN
+ornery JJ
+York NNP
+Institutions NNS NNP NNPS
+horseback NN JJ RB
+Blasi NNP
+magnitudes NNS
+Hills-Hollywood JJ
+S*/NNS&Ls NNP
+centenary JJ
+treeless JJ
+cumulative JJ
+Sidney NNP
+fuer NNP
+badges NNS
+Lehmann NNP
+foreign-owned JJ
+non-identity JJ
+Jacobius NNP
+Free NNP JJ RB
+opus NN
+opium NN
+pre-strike JJ
+superstores NNS
+'/POS... :
+aptness NN
+self-destruction NN
+single-sex JJ
+Manufacturing NNP NN
+Rosemary NNP
+corsage NN
+manic JJ
+Ramsperger NNP
+mammas NN
+slough VB
+vows VBZ NNS
+Means NNP NNS NNPS VBZ
+management-led JJ NN
+intuition NN
+scoreless JJ
+Meigher NNP
+Aitken NNP
+gas-station JJ
+S.A NNP
+arcaded JJ
+Costaggini NNP
+Griffin NNP
+Harpener NNP
+J.J.G.M. NNP
+Braggadocio NNP
+Buoyed VBN
+Segovia NNP
+cinema NN
+Palicka NNP
+eager JJ
+Yoran NNP
+Boone NNP
+preposition NN
+Igdaloff NNP
+bestes NNS
+stylemark NN
+franchise NN VB
+abiding JJ
+procured VBN VBD
+ex-lawyer NN
+Appointed VBN
+Fiorello NNP
+lollipop NN
+Masaki-Schatz NNP
+Agitato NNP
+capillary NN
+quibusdam FW
+funky JJ
+Tshombe-Gizenga-Goa-Ghana NNP
+LaserTripter NNP
+mark-denominated JJ
+nosebleed NN
+concede VBP VB
+visitor NN
+pre-merger JJ NN
+semiconductor-manufacturing NN
+smacked VBD
+warlike JJ
+Fittingly RB
+dissuade VB
+udon FW
+Willem NNP
+sham NN JJ
+ORACLE NNP
+scapegoats NNS
+Ludlum NNP
+mourners NNS
+law-unto-itself JJ
+litigation NN
+Gestapo-style JJ
+captivated VBN VBD JJ
+exploiter NN
+tiny JJ
+coffeehouse NN
+mega-projects NNS
+Henrich NNP
+Plexiglas NN
+taint NN VBP
+assassination NN
+raids NNS VBZ
+OBE NNP
+repriced VBN
+renown NN VB
+gastrointestinal JJ
+Disposable JJ
+high-profit-margin JJ
+infamy NN
+orders-related JJ
+Pas FW
+inter-town JJ
+alas UH
+Naxos NNP
+Melted VBN
+mutations NNS
+Drive-in NNP
+Multilateral NNP
+TV-production JJ
+Upchurch NNP
+Santas NNPS
+half-grown JJ
+waylaid VBN
+JUDGE'S NN
+LOS NNP
+Smurfit NNP
+titration NN
+Lorillard NNP NN
+bagpipe NN
+Recommendations NNS
+tritium NN
+missile-range JJ
+two-time JJ
+olive-green JJ
+earmark VB
+encountering VBG
+faro NN
+Intimations NNS
+oxygens NNS
+engages NNS VBN VBZ
+uncharted JJ
+translate VB VBP
+Just RB NNP JJ
+overhauls NNS VBZ
+capering VBG
+imaged VBN
+viewpoint NN
+Storyboard NNP
+affection NN
+forcibly RB
+Fio NNP
+Lestoil NNP
+travel-related JJ
+stop-motion JJ NN
+footwork NN
+connote VB VBP
+faking VBG
+billet NN
+wash-up JJ
+pavilion NN
+high-intensity JJ
+vetoing VBG
+touting VBG
+hymns NNS
+Bielas NNP
+Dream-Lusty NNP
+cites VBZ
+Pardo NNP
+Matrimonial NNP
+vigil NN
+convenience-store NN
+one-thousandth NN
+pulsation NN
+trop FW
+scarves NN
+Al-Sabah NNP
+Marlboro NNP
+product-related JJ
+bilingual JJ
+house-building NN
+knight-errant NN
+side-effects NNS
+typographical JJ
+market-if-touched NN
+Luncheon NNP
+bathwater NN
+seven-unit JJ
+infant NN JJ
+shells NNS
+authorship NN
+Liquidating NNP VBG
+Euro-factories NNS
+discontinuity NN
+jam NN VB VBP
+flatter VB
+playmate NN
+battleground NN
+Siecles NNPS
+seashore NN
+Armand NNP
+captioned VBD
+anti-alcohol JJ
+work'em NN
+Sunday-Tuesday NNP
+'58 CD
+Christianity NNP NN
+choir NN
+headway NN
+liberty NN
+acrobat NN
+canvassers NNS
+shouders NNS
+Quentin NNP
+tangos NNS
+uncouth JJ
+abyss NN
+stylishly RB
+Walsh NNP
+disservice NN
+translated VBN VBD
+Tschoegl NNP
+or'junk NN
+Surge NNP
+Sierra NNP
+hint NN VBP VB
+Inpatient NN
+Intergroup NNP
+fiber-reinforced JJ
+Coral NNP
+transverse JJ NN
+Dietzer NNP
+spread-eagled VBN
+Conasupo NNP
+wild-eyed JJ
+asset-backed JJ
+rampant JJ RB
+trendier JJR
+Elkind NNP
+TUC NNP
+brief JJ NN VB
+biceps NNS NN
+lb. NN NNS
+second-floor JJ NN
+reproducible JJ
+firebreaks NNS
+Rhoads NNP
+Single-subject JJ
+pollutant NN
+adjusted VBN JJ VBD
+Capcom NNP
+semi-nude JJ
+Keschl NNP
+overstored JJ
+most'bee-yoo-tee-fool JJ
+some DT NN RB
+treated VBN VBD
+foreground NN
+photo NN JJ
+female-headed JJ
+SHEVARDNADZE NNP
+alcohols NNS
+missile-transporter NN
+overtime NN JJ RB
+roadblock NN
+PegaSys NNP
+buttresses NNS VBZ
+birth-defect NN
+Monte NNP FW
+BUSY JJ
+Cecil NNP
+begotten VBN
+hoping VBG
+dwindled VBD VBN
+husband NN
+eastern JJ
+Backstitching VBG
+body NN
+Suggestions NNS
+rioting NN
+Jamaica NNP
+Atlantis NNP NNS
+self-interested JJ
+understate VBP
+pronounced VBN VBD JJ
+paperless JJ
+Lebo NNP
+deadlock NN
+Garfield NNP
+ASME NNP
+WD-40 NNP
+Substitute JJ
+snuggled VBD
+grate NN
+Birkelund NNP
+appearance NN
+Wollman NNP
+half-blood JJ
+shareowners NNS
+November-December NNP
+Kika NNP
+Electro NNP
+overenforced VBN
+Josiah NNP
+Nelms NNP
+tell... :
+Foundry NNP
+Ozone NN
+puns NNS
+laxness NN
+lionized VBN
+re-exports NNS
+Chamber NNP NN
+Tessler NNP
+copiers NNS
+half-standard JJ
+carvings NNS
+devotion NN
+polypropylene NN
+Emma NNP
+Cos. NNP NNPS
+loon NN
+jellyfish NN
+EX-OFFICIALS NNS
+Tombigbee NNP
+NFL NNP
+bestowed VBN VBD
+piece-by-piece JJ
+Kimsong NNP
+genera NN
+symbol NN
+Fabrics NNP NNS NNPS
+Toni NNP
+duly RB
+Tropidoclonion NNP
+Conceivably RB
+Texas-based JJ
+tapering VBG
+Rated VBN JJ NNP
+gray-backs NNS
+writer\/producers NNS
+rapidly-diminishing JJ
+plutonium-recovery JJ
+sidle VB
+doers NNS
+Kelseyville NNP
+conviction NN
+Gary NNP
+Berets NNPS
+dykes NNS
+office\/dept. NN
+Alamo NNP NN
+Financiere NNP
+toddler NN
+full-dress JJ
+eras NNS
+delving VBG NN
+redirection NN
+Insurance-related JJ
+GD NNP
+Leason NNP
+Onno NNP
+Starter NNP
+versatile JJ
+pectoral-ribcage NN
+underpins VBZ
+card-member JJ NN
+engine NN
+poppy NN
+U.S.-U.K. JJ
+soundness NN
+Mathias NNP
+two-and-a-half-mile JJ
+Rimstalker NNP
+one-third NN CD JJ RB
+Crestmont NNP
+darting VBG
+Greenspon NNP
+RTC-owned JJ
+insists VBZ
+terrorize VB
+Leahy NNP
+precipice-walled JJ
+Marver NNP
+foul-ups NNS
+parasympathetic JJ
+lewd JJ
+Darnell NNP
+Housewives NNS
+inaccuracy NN
+TRT NNP
+depersonalized VBN
+Birenbaum NNP
+Minolta NNP
+bullied VBD VBN
+Agenda NNP NN
+strike NN VB VBP
+political JJ
+hilum NN
+CSI NNP
+polecat NN
+wave-setting JJ
+Organizing NNP
+rollers NNS
+telling VBG JJ NN
+Welby NNP
+data-service JJ
+Boesky-greed-is-good JJ
+enjoin VB
+commercial JJ NN
+syndicate NN VB
+Muynak NNP
+blue-blooded JJ
+sheepish JJ
+putting VBG
+Sundance NNP
+cycads NNS
+Points NNPS
+Resolve NNP
+Numerous JJ
+DEBT NN
+anti-Communism NN
+masterpiece NN
+Musmanno NNP
+proponent NN
+Wholesalers NNS
+product-line NN
+victimizes VBZ
+alchemy NN
+jingled VBD
+Ostrovsky NNP
+exulted VBD
+output-axis NN
+brasses NNS
+drills NNS VBZ
+Conversations NNS
+M.B.A. NNP NN
+instrumental JJ NN
+presupposes VBZ
+alarms NNS VBZ
+Post-Graduate NNP
+airports NNS
+Stewart NNP
+Capitalizing VBG
+assiduously RB
+downright RB JJ
+Sybase NNP
+Ranney NNP
+lengthened VBN VBD JJ
+Sharply RB
+bend VB NN
+work-station NN
+once-high-flying JJ
+nonstandard JJ
+four-square NN
+Pollak NNP
+Crack NN
+build-up NN
+Judd-Boston NNP
+exhilaration NN
+Starbird NNP
+Fixed VBN VBD JJ
+Nazem NNP
+Carneigie NNP
+stumps NNS
+banshees NNS
+venison NN
+piloting NN VBG
+Agnese NNP
+Several JJ NNP
+outplayed VBD
+lowly JJ RB
+insecurity NN
+subtype NN
+'Sweets NNP
+Marilyn NNP
+deflated VBD JJ VBN
+swell VB VBP JJ NN
+tabac NN
+Eagle NNP
+fortresses NNS
+conformation NN
+Moreno NNP
+Wacky NNP
+wounds NNS
+mud-caked JJ
+twiddled VBD
+Alley NNP NN
+rankled VBN
+rethink VB NN
+video-distribution NN
+half-price NN
+Thea NNP
+point-of-sale JJ
+Maurice NNP
+alderman NN
+bawled VBD
+Acura NNP
+ridge NN
+quake-prone JJ
+Personal-computer NN
+site-development NN
+reactions NNS
+Calderone NNP
+coyness NN
+whetted VBN
+droughts NNS
+ashore RB JJ
+credit-financed JJ
+ex-House JJ
+Tarrant NNP
+clogging VBG
+recalculated VBD VBN
+gold-wire NN
+golf NN
+Dinsmore NNP
+Ludcke NNP
+sketched VBN VBD
+flew VBD
+apocalyptics NNS
+instigate VB
+corporations NNS
+Yamaichi NNP
+millidegrees NNS
+Pat NNP
+deteriorating VBG JJ
+take-or-pay JJ
+diagonals NNS
+Solder VB
+Starve NNP VB
+Paragon NNP
+Datson NNP
+Vanessa NNP
+LOT NNP
+conspire VBP VB
+riddle NN
+moviemakers NNS
+habeas NNS FW
+pistol NN
+intraepithelial JJ
+peer-group JJ
+mitigate VB
+predictability NN
+MD-90 NN
+Institutue NNP
+plaudits NNS
+independent-contractor JJ
+infrastructures NNS
+Certificates NNS NNP NNPS
+oneness NN
+balletic JJ
+soldout NN
+GIPPER NN
+hurled VBD VBN
+unrelated JJ
+nipples NNS
+Finnerty NNP
+radiating VBG
+Tomaso NNP
+tweedy JJ
+shopping-mall NN|JJ
+Chardonnay-sipping JJ
+fumigants NNS
+behaves VBZ
+surgeons NNS
+Kronish NNP
+Stretching VBG
+jobless JJ
+Belgium NNP NN
+Passavant NNP
+zebra NN
+allegory NN
+pauper NN
+Rolnick NNP
+yeard VBN
+musclemen NNS
+Percent NN
+holystones NNS
+immigration NN
+Sharpshooter NNP
+unskilled JJ
+KRENZ NNP
+incisiveness NN
+uncannily RB
+Istel-type JJ
+Sulfaquinoxaline NN
+importunately RB
+economies NNS
+complexion NN
+fund-raisers NNS
+cure-all NN JJ
+Anker NNP
+intrusions NNS
+breath NN VB
+fate NN
+purest JJS
+disqualified VBN VBD
+Spievack NNP
+Dludsky NNP
+notifications NNS
+Hasidic JJ
+Mattress NNP
+croissants NNS
+long-cherished JJ
+rasp NN
+give-and-take NN
+is VBZ RB NNS VBP
+Lux FW
+Redondo NNP
+Wemmick NNP
+pickets NNS
+starlight NN
+forty-nine CD
+piles NNS NN VBZ
+Halsey NNP
+fundamental JJ
+Robins NNP
+gallivantin NN
+Cinematografica NNP
+Enviropact NNP
+versa RB FW
+frank JJ NN
+famine NN
+Neilson NNP
+stringently RB
+cheeseburgers NNS
+Menagerie NNP
+reverberating VBG
+Menendez NNP
+trestles NNS
+heading VBG NN
+high-velocity JJ
+excludes VBZ
+two-bedroom JJ
+Avena NNP
+restrain VB
+hypocrites NNS
+KOREAN JJ
+readings NNS
+Neave NNP
+diversify VB
+transfer-tax NN
+addition NN
+reigned VBD
+cycles NNS VBZ
+Lund NNP
+Commons NNP NN NNPS
+Accacia NNP
+bloodstream NN
+redundant JJ
+punt NN
+Merrill-Lynch NNP
+fast-shrinking JJ
+agreeably RB
+Narcotics NNPS NNP
+intrigued VBN JJ
+cramming VBG
+machine-gun NN
+Tasso NNP
+muck NN
+Expands VBZ
+zooming VBG
+Clean NNP JJ NN VB
+Florence NNP
+Kovacic NNP
+silhouettes NNS
+stereos NNS
+located VBN JJ VBD
+shakers NNS
+Toulouse-Lautrec NNP
+Xuanping NNP
+premiering VBG NN
+microwaving VBG
+depleted VBN VBD
+Solel NNP
+head-to-head JJ RB RBR
+extra-musical JJ
+Nashua NNP
+Wonderful JJ
+straw-man NN
+Stoics NNS
+less-popular JJ
+Feeley NNP
+browse VB
+Barings NNPS
+hold-back NN
+hermetically RB
+pigskin NN
+Clozapine NNP
+Cimoli NNP
+fur NN
+ex-president NN
+Whittaker NNP
+dispersion NN
+collect VB JJ VBP
+unable JJ
+briefly NN RB
+Sharer NNP
+Candle NNP
+mans VBZ
+Loeser NNP
+stuck-up JJ
+superconductor NN
+Standard-issue JJ
+Janesville NNP
+vilification NN
+embedded VBN JJ
+seers NNS
+lyin NN
+byword NN
+torsion NN
+eating VBG JJ NN
+monoxide NN
+Examiner NNP
+did'nt NN
+Suffolk NNP
+expanding-profit JJ
+Rowe NNP
+Glasow NNP
+resourceful JJ
+ABM. NNP
+shrub NN
+skyjacked VBN
+Heikes NNP
+airs NNS VBZ
+Chiat\ NNP JJ
+gloriously RB
+gardening NN VBG
+actualities NNS
+humors NNS
+non-metallic JJ
+self-destructive JJ
+misconduct NN
+Fife NNP
+animal NN JJ
+sluggers NNS
+knuckles NNS VBZ
+language NN
+falcon NN
+Successful JJ NNP
+Wiseguy NNP
+sentenced VBN VBD
+banged VBD VBN
+Woronoff NNP
+McGehee NNP
+dazzled VBN JJ
+Cresson NNP
+Comend VB
+cathedral NN
+Couple JJ NN
+shirtless JJ
+argued VBD VBN
+affixed VBN JJ
+transported VBN VBD
+Nielsen NNP
+anti-Communist JJ
+Feels VBZ
+messy JJ
+wavy JJ
+rudeness NN
+Cardin NNP
+HIV-related JJ
+Floor NNP NN
+seven-shot JJ
+Ad NN NNP
+ova NN
+kidding VBG
+pedestrians NNS
+crawling VBG
+Labour NNP
+Gato NNP
+Buick-Oldsmobile-Cadillac NNP
+rinds NNS
+Particularly RB
+waded VBD VBN
+GE NNP
+Hone NNP
+evidences NNS
+MMC NNP
+blind-sided JJ VBN
+top... :
+Cloquet NNP
+Unpopular JJ
+heavy-machine JJ
+dollar-profits JJ
+Stalone NNP
+Workplaces NNS
+stealth NN
+eighty CD
+Pink NNP JJ NN
+secreted VBN
+furlough NN
+wear VB JJ NN VBP
+Painter NNP NN
+F-14 NN NNP
+Voorhees NNP
+worktable NN
+sound-alike JJ
+high-production JJ
+Woman\/McCall NNP
+Logically RB
+Alexei NNP
+oilfields NNS
+Newspaper NNP NN
+Townes NNP
+S.C NNP
+Attack NNP NN
+FAX NNP
+sparks VBZ NNS
+rarified JJ
+Jannequin NNP
+kindness NN
+Diethylstilbestrol NN
+expense-reducing JJ
+RATE NN NNP
+paintings NNS
+Westcom NNP
+tune-in JJ
+paving-equipment NN
+SLIPPAGE NN
+Beverage NNP
+up... :
+LINTAS NNP
+miss VB VBP NN
+Attlee NNP
+Ehlers NNP
+ENGLAND NNP
+reaffirm VB VBP
+fortunate JJ
+decayed JJ VBD VBN
+self-consistent JJ
+thus RB
+family-owned JJ
+fixable JJ
+Eddington NNP
+Lullwater NNP
+tile-roofed JJ
+musts NNS
+cross-blending JJ
+sac NN
+Property NNP NN
+flex NN JJ VB
+chest-swelling JJ
+unservile JJ
+bogey-symbol NN
+official NN JJ
+Pre-decoration NN
+Biomedicals NNP
+oafs NNS
+cognizant JJ
+CoreStates NNP NNPS
+Rte. NNP
+non-binding JJ
+predator NN
+tame JJ VB
+L'Unita NNP
+Fidel NNP
+rustled VBN JJ
+Hagner NNP
+Rural NNP JJ
+Jingsheng NNP
+publish VB VBP
+hot-formed JJ
+WNBC NNP
+calorimeter NN
+Anarcho-Syndicalists NNPS
+efficient JJ
+conglomerates NNS
+over-broad JJ
+Potowomut NNP
+forgave VBD
+chillier NN
+sparring VBG NN
+Salted JJ
+sympathy NN
+kissed VBD VBN
+Magnetism NNP
+arsenal NN
+Nikes NNPS
+year-old JJ
+go-betweens NNS
+WORKING VBG
+liquid-glass NN
+tertiary JJ
+two... :
+super-regulator NN
+Toward IN NNP
+military-spending NN
+knife-men NNS
+carrots NNS
+Cecin NNP
+forks NNS
+Underwood NNP
+Dahl NNP
+operatic JJ
+surfaceness NN
+Judiciary NNP
+break-neck JJ
+fervor NN
+simpler JJR RBR
+wilting VBG
+matter-of-factly RB
+reassured VBN VBD
+Stuecker NNP
+novitiates NNS
+jade NN
+afflicting VBG
+semester NN
+chargeable JJ
+hazard NN VB
+Hacche NNP
+emblematic JJ
+Tippett NNP
+mutineer NN
+taxicab NN
+Leale NNP
+undesirable JJ NN
+STANLEY NNP
+peep NN
+beach-drift NN
+junior JJ NN
+vapor-pressure NN
+Had VBD NNP VBN
+thiocyanate-perchlorate-fluoro NN
+compliant JJ
+nonresidential-contracting JJ
+severed VBN VBD
+Asylum NNP
+shims NNS
+Teodulo NNP
+atonal JJ
+syllable NN
+Yorkshire NNP
+applications NNS
+Holbrook NNP
+major-party JJ
+Failures NNS
+de-linkage NN
+art-dealing JJ
+malocclusion NN
+Organisation NNP
+Thay NN
+adversity NN
+hoodle UH
+tensionless JJ
+Chelsea NNP
+La-la-landers NNS
+Hendersonville NNP
+Herr NNP FW
+Carlyle NNP
+Grenville NNP
+docutainment NN
+Vizeversa NNP
+Bakhtiari NNP
+features NNS VBZ
+injections NNS
+blackbird NN
+DU NNP
+talk VB VBP NN
+Shares NNS NNP NNPS
+townhouses NNS
+subscription NN JJ
+devaluations NNS
+gleaming VBG
+seven-tenths NNS
+Cohn NNP
+natural-law NN
+tire NN VBP VB
+midair NN
+competence NN
+withal IN
+pseudo-Kennedyism NN
+pledged VBD VBN
+disappear VB VBP
+loop NN
+establish VB VBP
+paints NNS VBZ
+Seventy CD
+Schmidlin NNP
+shampooed VBN
+flaunt VB VBP
+Savannah NNP NN
+searcher NN
+Belin NNP
+Self-criticism NN
+channels NNS
+resident NN JJ
+crafts NNS
+Aguilar NNP
+Fantasia NNP
+Context NN
+Meredith NNP NN
+apothecary NN
+pluri-party JJ
+norethandrolone NN
+Edna NNP
+restarting VBG
+Oceania NNP
+auto-loan JJ
+Cyrus NNP
+Kalonji NNP
+Milstein NNP
+climactic JJ
+vomit VBP
+prospers VBZ
+Solemnis NNP
+Father-God NNP
+sabotage NN VB
+it PRP
+Wyss NNP
+unequaled JJ
+gravest JJS
+pizza-eating JJ
+Magnums NNS NNPS
+hulking JJ VBG
+proletarian JJ
+subtleties NNS
+cabbage NN
+buster NN
+jack VB NN
+Tissues NNPS
+H.V. NNP
+surgically RB
+Allie NNP
+pastures NNS
+Reupke NNP
+polyisocyanate NN
+flaccid JJ
+NFIB NNP
+erroneously RB
+more-efficient JJ
+Angelico NNP
+inimical JJ
+conscionable JJ
+renovated VBN JJ
+Becoming VBG
+worsened VBD VBN
+cementing VBG
+remain VB VBP
+Mayer NNP
+evaluate VB VBP
+unsophisticated JJ
+lumped VBN VBD
+Foul NNP JJ
+whole-bank JJ
+Strippers NNS
+N.M.-based JJ
+an'advertising DT|NN
+admittedly RB
+pol NN
+secretary NN
+eighteen-year-old JJ
+anti-profiteering JJ
+initiated VBN VBD
+vitiate VB
+Ministers NNPS NNP NNS
+Grosset NNP
+Origen NNP
+churning VBG NN
+Street-style JJ
+many-faced JJ
+landfilling VBG NN
+recanted VBD VBN
+platform NN
+intervening VBG
+half NN PDT CD DT JJ RB VB
+sophists NNS
+construct VB VBP
+Heatwole NNP
+universe NN
+mechanic NN
+repeats VBZ NNS
+Koyo NNP
+alumina NN
+anti-opera NN
+manageable JJ
+golfed VBN
+unclasping VBG
+extraditions NNS
+Saudi NNP JJ
+skirmishing NN VBG
+Melancholy JJ
+melds VBZ
+outspread VBN JJ
+Cullen\/Frost NNP
+fatalists NNS
+donut-sales JJ
+stenography NN
+low-budget JJ
+Industria NNP
+armies NNS
+Reagan-Bush JJ NNP
+teamed VBD VBN
+allay VB
+rebalance VB
+genres NNS
+Rykoff-Sexton NNP
+McGeorge NNP
+overture NN
+rider NN
+inadvertently RB
+ebbed VBD VBN
+atoms NNS
+Arkabutla NNP
+restless JJ
+piston NN
+TRV NNP
+leavening VBG
+Capricorn NNP
+Insecures NNPS
+Jemima NNP
+F-15 NNP NN
+forecasted VBN
+Journals NNPS
+Mantua NNP
+Mori NNP
+roiled VBN
+CSK NNP
+Elsa NNP
+T.W. NNP
+Dry NNP JJ
+disassembled VBD
+Inaugurates VBZ
+Provigo NNP
+liqueur NN
+nominate VB VBP
+Calderwood NNP
+top-quality JJ
+chow NN
+doggie JJ
+undisciplined JJ
+rejects VBZ NNS
+mist NN
+Edelstein NNP
+stocky JJ
+M'Bow NNP
+ninetieth JJ
+big-company JJ
+Steiger NNP
+retroactively RB
+succinctly RB
+involvements NNS
+simples NNS
+Entrepreneur NN
+funn-eeee JJ
+foreign-ownership NN
+Yeats NNP
+epidemics NNS
+Chucas NNP
+cholesterol-fearing JJ
+Secretaries NNPS NNS
+strife-free JJ
+Pimen NNP
+in-laws NNS
+awarding VBG NN
+condensation NN
+rajah NN
+morbid JJ
+bathers NNS
+Takihyo NNP
+S.D NNP
+GF NNP
+birdbath NN
+Gave VBD
+compared VBN VBD
+Belinda NNP NN
+nationalizing VBG
+Fla NNP
+J.N. NNP
+Euroconvertible JJ
+Month NNP
+Aventino NNP
+Dulaney NNP
+ASKS VBZ
+self-declared JJ
+Correll NNP
+north-south JJ
+dreams NNS VBZ
+blue-uniformed JJ
+components NNS
+well-molded JJ
+Brewery NNP NN
+Alongside IN RB
+Declaring VBG
+Crabs NNP
+egregious JJ
+Thaler NNP
+wagging VBG
+terrorized VBN VBD
+Wakayama NNP
+analogue NN
+searches NNS VBZ
+gladly RB
+Colombo NNP
+withdrawals NNS
+sad JJ
+Boulder NNP
+air-waybill JJ
+Mirante NNP
+pre-nuptial JJ
+fielder NN
+generous JJ
+hookworm NN
+lisping VBG
+odious JJ
+development-aid NN
+idol NN
+colleagues NNS
+hegemony NN
+Privy NNP
+error-free JJ
+Beverly NNP
+busts NNS VBZ
+stoicism NN
+Ding NNP
+outbursts NNS
+Amcast NNP
+le FW DT
+photofinishing NN
+Yosi NNP
+Brusca NNP
+McDaniel NNP
+NET JJ
+Hamakua NN
+eight-bar JJ
+realms NNS
+corneal JJ
+corrosive JJ
+exquisite JJ
+more-than-average RB
+Inflate VB
+capacity NN
+Thanh NNP
+employers NNS
+Teacher NN
+frequency-modulation NN
+rupturing VBG
+televising NN
+physiologic JJ
+Claws NNS
+Plantations NNS NNPS NNP
+accordion NN
+Sweeney NNP
+chole NN
+vindication NN
+minimalism NN
+arrives VBZ
+reversals NNS
+Reliance NNP NN
+furthest JJS RBS
+Muscat NNP
+dialysis NN
+excretion NN
+Ewen NNP
+greener JJR
+Bright NNP JJ
+doctrinal JJ
+heavy-duty JJ NN
+pricings NNS
+compact-car NN
+ASCAP NNP
+extirpated VBN
+bi-regional JJ
+Munroe NNP
+Sessions NNP NNS
+repairmen NNS
+Sydney NNP NN
+Diana NNP
+tasting VBG NN
+Calvinist NNP
+newly-scrubbed JJ
+fatality NN
+panhandler NN
+mutilation NN
+cannons NNS
+molecularly RB
+Fischbach NNP
+hamstringing VBG
+Nervous JJ
+squatting VBG
+V.O. NNP
+Taito NNP
+center NN JJ RB VB VBP
+eraser NN
+Hers JJ PRP
+champagne NN
+Increase VB NN NNP
+desecrated VBN
+Camrys NNPS
+mutterers NNS
+horrific JJ
+Suspecting VBG
+either-or JJ
+black-on-black JJ
+tall JJ
+Kattus NNP
+J.P NNP
+Devens NNP
+Saint NNP
+Bits NNS
+insurance-industry NN
+Fernando NNP
+Reserve NNP
+tropho JJ
+rapists NNS
+inflow NN
+filing NN VBG
+skilfully RB
+late-day JJ
+BERNARD NNP
+Limiting VBG
+Korean-U.S. NNP
+WFC NNP
+congratulating NN
+Allingham NNP
+promotion NN
+capital NN JJ
+Turnpike-widening JJ
+Holden NNP
+DOE NNP
+Camino NNP
+accrued VBN JJ
+proverbs NNS
+defamatory JJ
+Wieslawa NNP
+plot NN VB VBP
+school-desegregation NN
+BELL NNP
+CSFB NNP
+videocasette NN
+firefighters NNS
+syndicated VBN VBD JJ
+Navcom NNP
+F-20 NNP
+doors NNS
+Federals NN
+Banks NNP NNPS NNS
+Lehmans NNPS
+Caper NNP
+elementary-grade JJ
+Totten NNP
+Sunbird NNP
+top-ranked JJ
+unimpaired JJ
+Seizing VBG
+multibillion-yen JJ
+Luz NNP
+L.F. NNP
+MITI NNP
+Albanians NNPS NNS
+gestured VBD
+Laotian JJ
+A-320-200 NN
+unsuitably RB
+Barmore NNP
+brings VBZ
+Christmas NNP
+transmuted VBN
+muscle-meat NN
+Vos NNP
+Kingfisher NNP
+Ill. NNP
+Certificate NN NNP
+sexist JJ
+senselessly RB
+Heinrich NNP
+Eph NNP
+steelmaker NN
+halogens NNS
+Elena NNP
+Joel NNP
+even-larger JJ
+Reprisals NNS
+K-9 NNP
+questionnaires NNS
+lipstick NN
+Japanese-made JJ
+leaking VBG JJ
+Utt NNP
+gloaters NNS
+frontal JJ
+siege NN
+Bronfman NNP
+Zayre NNP
+Etudes NNP
+ISTAT NNP
+Odilo NNP
+accommodations NNS
+Regie NNP
+white-knight NN
+helpings NNS
+arm-twisting NNP
+segregating VBG
+commandos NNS
+carabao NN
+preregistration NN
+Tess NNP
+Meissner NNP
+Melling NNP
+refineries NNS
+FAILED VBD
+westerly JJ RB
+Manchester NNP
+Leben NNP
+Wild NNP JJ
+Two-part JJ
+Rhythm-Wily NNP
+anti-scientific JJ
+portions NNS
+Nob NNP
+communique NN
+threading VBG
+Counting VBG
+scrim NN
+tariff NN
+rides NNS VBZ
+starches NNS
+Carole NNP
+Non-Catholics NNS
+terram FW
+driftwood NN
+month-end JJ NN
+Toornstra NNP
+hell-kitten NN
+Ratner NNP
+Exxon-Valdez JJ
+yard NN
+half-horse JJ
+something... :
+solves VBZ
+Hong NNP JJ
+Samara NNP
+diffused VBN
+Sparrow-size NNP
+junk-bonds NNS
+Alleghenies NNPS
+sincerely RB
+slaves NNS
+merry-go-round NN
+thrones NNS
+Donating VBG
+relieve VB
+Adrar NNP
+Bethel NNP
+threatens VBZ
+Dardalla NNP
+Bayer NNP NN
+scenic JJ
+devaluation NN
+Hofstra NNP
+fortnight NN
+precept NN
+really RB
+petroleum-products NNS
+transcultural JJ
+F-16 NNP CD NN
+outshone NN
+triple JJ NN RB VB
+barred VBN VBD
+Ark. NNP
+ornately RB
+destined VBN
+Dominguez NNP
+Regatta NNP
+Rachael NNP
+stepmother NN
+Arnhem NNP
+crankshaft NN
+semantic JJ
+Sober NNP
+OCC NNP
+daydreamed VBD
+fast-food NN JJ
+suburbanized VBN
+extradition NN
+Scheherazade NNP
+priceless JJ
+LeVecke NNP
+Operating-profit NN
+remake VB
+grizzled JJ
+two-wheel-drive JJ
+roach NN
+Aladdin NNP
+FARM NN
+Freedman NNP
+dreamt VBD VBN
+TRW NNP
+Gel NNP
+heartbreak NN
+Attending VBG
+Rounding-off NN
+regionals NNS
+breakwater NN
+supersensitive JJ
+Exboyfriend NN
+Coogan NNP
+enlarging VBG NN
+Harry NNP
+side-stepping JJ
+aggregate JJ NN
+Yak NNP
+Greek-Americans NNPS
+Califon NNP
+Holds NNP
+Knowledgeware NNP
+hostile-bid JJ
+setups NNS
+deterioration NN
+avoid VB JJ VBP
+Atrium NNP
+Reichmann-controlled JJ
+Deployment NNP
+Kamens NNP
+Cubans NNPS NNP
+trot NN VB
+corn-farmers NNS
+firefighter NN
+Oceanic NNP
+Increasingly RB
+albatross NN
+REGULATIONS NNS
+upbringing NN
+aloneness NN
+Hilkert NNP
+Bozic NNP
+Weldwood NNP JJ
+bleachers NNS
+crater NN
+thither RB
+LeBoutillier NNP
+Wendee NNP
+ankles NNS
+Starts VBZ NNS
+interpolated VBD
+Boxell NNP
+blood-letting NN
+Northgate NNP
+Krutch NNP
+For... :
+highest JJS RB RBS
+no-star JJ
+appointing VBG
+canceled VBN VBD VBN|JJ JJ
+Negotiations NNS
+Naktong NNP
+quarrelsome JJ
+overallotments NNS
+progresses VBZ
+nabbed VBN
+Confronted VBN
+bride-gift NN
+scholarly JJ
+bowling-related JJ
+detailing VBG
+Immanuel NNP
+Shahn NNP
+uniformly RB
+sixteen CD
+Dinh NNP
+helpfully RB
+Af-fold JJ
+DOORS NNS
+stark JJ RB
+Maintenance NNP NN
+Mecholyl NNP
+speculative-grade JJ
+aborning RB
+Augustin NNP
+mauler NN
+Microbiology NNP
+Negotiation NN
+freshened VBN
+afforded VBN VBD
+Appropriations NNP NNPS NNS
+viscosity NN
+applicant NN
+remarry VB
+stockmarket NN
+Touche NNP
+grazing VBG JJ NN
+photorealism NN
+Angel\ NNP
+interpretive JJ
+Orwell NNP
+erases VBZ
+Fibre NNP
+collaborators NNS
+leaseback NN
+herculean JJ
+popular JJ
+WBZ NNP
+TVA NNP
+NL. NNP
+weatherman NN
+overdosed VBN
+Banker NNP
+Alameda NNP
+crystallography NN
+peer NN VBP JJR VB
+fanatically RB
+antic JJ
+leggings NNS
+non-residential JJ
+Wildman NNP
+endanger VB VBP
+tallying VBG
+priest NN
+Anita NNP
+hand-screened VBN
+Heston NNP
+Pendant NNP
+Variations NNPS NNS
+capacitance NN
+Eloy NNP
+advising VBG NN
+jilted VBN
+Innumerable JJ
+justifiable JJ
+tax-and-spend JJ
+Minuteman NNP
+Wage NN
+Rous NNP
+Clarice NNP
+bank-sponsored JJ
+Cornfeld NNP
+still-healthy JJ
+bureaucrat NN
+criss-crossing NN
+reverberation NN
+notoriously RB
+samovars NNS
+Dassault NNP NN
+fiche FW
+Barbudos NNPS
+MARGIN NN
+Colcord NNP
+Lung NNP NN
+Gaul NNP
+reinstate VB
+plummet VB NN VBP
+hitter NN
+firebombs NNS
+tremble VB NN
+shuck VB
+cholesterol-lowering JJ
+enough RB JJ NN
+Paw NN
+Lorain NNP
+Aransas NNP
+jerks NNS
+Reenact VB
+Syndication NNP
+Jyoti NNP
+LOW RB
+subconsciously RB
+Innesfree NNP
+FED NNP
+Bouwer NNP
+cooly RB
+Surgeon NNP
+Pain NN
+Holen NNP
+epidemiologists NNS
+underscores VBZ
+Papanicolaou NN
+mid-twentieth JJ
+VIP NNP NN
+Unofficial JJ
+nine-state JJ
+Coffee-shop NN
+fifty-two CD
+carriages NNS
+agree. VB
+granules NNS
+Bussieres NNP
+Armani NNP
+konga NN
+Tougher JJR
+oui FW
+Mose NNP
+unstapled JJ
+Ainsley NNP
+pharaohs NNS
+Isolating VBG
+Thoreau NNP
+conformance NN
+discontented JJ
+confectionery NN
+multinationals NNS
+redhead NN
+Minnery NNP
+absurdities NNS
+Southeastern NNP JJ
+presidents NNS
+health-coverage NN
+outweighs VBZ
+Pollack NNP
+anti-productive JJ
+Plastics NNS NNPS NNP
+bloodspots NNS
+matriarchal JJ
+spew VBP
+Slugger NNP
+unredeemed JJ
+Quyne NNP
+disharmony NN
+undecided JJ
+Kirschbaum NNP
+nos. NN
+Sweet-sour JJ
+hapless JJ
+Bissett NNP
+fingertips NNS
+transportation-services JJ
+pianist-comedian NN
+consumer-warning NN
+Movietime\/Alfalfa NNP
+friend-of-the-court JJ
+Conable NNP
+Mattox NNP
+precedes VBZ
+Competes VBZ
+deem VBP VB
+countermeasures NNS
+corticosteroids NNS
+fearless JJ
+dreamers NNS
+commmercial JJ
+quetzal NN
+Turnaround NNP NN
+enjoyable JJ
+Yoshida NNP
+Commander-in-Chief... :
+democracy NN
+Gilts NNS
+ma FW NN
+tactical JJ
+Sword NNP NN
+solo NN JJ RB|JJ VB
+Combellack NNP
+Shawano NNP
+greens NNS
+Clostridium NN
+Nessel NNP
+breadth NN
+Elliott NNP
+counter-cyclical JJ
+rationalized JJ VBN
+Doria NNP
+Krim NNP
+Test NNP NN VB
+constraining VBG
+Ries NNP
+Haaek NNP
+overdraw VB
+honest-to-Betsy RB
+Gasich NNP
+snoop VB
+Wile NNP
+undermines VBZ
+Haruyuki NNP
+round-bottom JJ
+Blush NNP
+hillside NN
+polyisobutylene NN
+Schutz NNP
+Argon NN
+capacitor NN
+proletariat NN
+suture NN
+Paddle VB
+standstill JJ NN
+mechanistic JJ
+OPTIONS NNS
+hebephrenic JJ
+UMNO NNP
+nonexistent JJ
+middle-management JJ
+disgorge VB
+Hopefully RB NNP
+Mandelbaum NNP
+accuse VB VBP
+Virginian NNP
+derivative JJ NN
+disassemble VB
+delineating VBG
+shoulder NN VBP RB VB
+ceremonies NNS
+cardigan NN
+Public-spirited JJ
+Calculations NNS
+circumference NN
+hard-nosed JJ
+'71 CD
+Eleven CD
+powers-that-be NN
+exporter NN
+waned VBD VBN
+Toms NNP
+organs NNS
+avionics NNS NN
+Unify VB
+Philly RB
+morals NNS
+fruits NNS
+C.A.I.P. NNP
+Krishnaists NNS
+Seagoville NNP
+Arab-sponsored JJ
+anchors NNS VBZ
+metal-coil JJ
+fizzles VBZ
+calving VBG NN
+Prize NNP NN
+wood-grain JJ
+landholdings NNS
+chenille NN
+Landfill NN NNP
+price-stability NN
+Immigrant JJ
+Mice NNS
+Connally NNP
+Sidra NNP
+outputting VBG
+Systemic JJ
+Zaroubin NNP
+Purcell NNP
+Justin NNP
+Ennis NNP
+pre-emancipation NN
+Thee PRP
+mutual-assured JJ
+Soule NNP
+Munich NNP
+grandkids NNS
+technically RB
+observance NN
+biased VBN
+subsections NNS
+meretricious JJ
+alive JJ RB
+jabs NNS
+C&P NNP
+MK-Ferguson NNP
+boy-name NN
+Bard NNP
+billows NNS
+ADVERTISERS NNS
+framer NN
+wintered VBN
+a.m. NN FW RB
+dissociating VBG
+Jenkinson NNP
+Cheyennes NNPS
+crates NNS
+GOLD NN
+nonwhites NNS
+Engh NNP
+Rumanians NNPS
+Secure VB
+verse NN
+Habsburg NNP
+'d. NN
+Consumers NNS NNPS NNP
+theatrically RB
+Druid NN
+overload NN VBP VB
+daffodils NNS
+Wilpers NNP
+PORTING VBG
+Celebes NNPS
+parings NNS
+laches NN
+Lorinda NNP
+Mathews NNP
+McLeod NNP
+behind-schedule JJ
+UMW NNP
+exhibitors NNS
+Husak NNP
+convulsively RB
+earthshaking JJ
+Pareo NNP
+footage NN
+Salvagni NNP
+Scores NNS NNPS
+athlete NN
+Aquidneck NNP
+evil-doing NN
+PRECIOUS JJ NNP
+Clear NNP
+Two-day JJ
+mutinous JJ
+Gem NNP
+Liquidation NNP
+Refcorps NNS
+Matching VBG JJ
+Mnouchkine NNP
+Huitotoes NNS
+moistening VBG
+subcompact NN JJ
+Arrest NN
+bigger JJR RBR
+frivolities NNS
+rationalize VB VBP
+tips NNS VBZ
+Pharmacuetica NNP
+Farrow NNP
+Revise VB
+probabilities NNS
+startin VBG
+class NN
+Galata NNP
+placard-carrying JJ
+Eckersley NNP
+nineteenth JJ
+rattle NN VB
+virulence NN
+basements NNS
+Shipments NNS
+hybrids NNS
+Montedison NNP NN
+grass-roots JJ
+reasoned VBD JJ VBN
+unluckily RB
+plastic-timber NN
+Darwinian JJ
+vociferous JJ
+profits NNS VBZ
+Bonecrusher NNP
+care-free JJ
+Seldom RB
+organdy NN
+Ontario NNP
+treetops NNS
+directions NNS
+Azem NNP
+irreverence NN
+Installed VBN
+Watsonville NNP
+Industrie NNP
+Nutritionists NNS
+Solis-Cohen NNP
+wedge-nosed JJ
+sabbatical NN JJ
+Bucs NNP
+Mich.-based JJ
+Uno-Ven NNP
+guidepost NN
+Aflatoxin NN
+Bosler NNP
+Matthies NNP
+adverbs NNS
+Dunham NNP
+Scorecard NNP
+Sinopoli NNP
+preset JJ
+unhip JJ
+instigated VBD VBN
+Trevelyan NNP
+scurrying VBG
+FM NNP JJ NN
+Alpharetta NNP
+seizure NN
+Tractor NNP NN
+price-fixing NN JJ
+Capet NNP
+L. NNP
+Marcius NNP
+assume VB VBP
+Rouge NNP
+Behague NNP
+Nazer NNP
+Interpersonal JJ
+convertibles NNS
+prescribers NNS
+beached JJ
+giddy JJ
+illustrate VB VBP
+Heather NNP
+One-Cancels-The-Other NNP
+Weathers NNPS
+exquisiteness NN
+Ciminero NNP
+Rosella NNP
+Cardiff NNP
+LOOM VBZ
+reflector NN
+supplementing VBG
+bangs NNS VBZ
+Klugt NNP
+debt\/equity NN
+Excalibur NNP
+Maxtor NNP
+grasp VB VBP NN
+enslaved VBN
+Rosow NNP
+Suhey NNP
+Shepard NNP
+bitch NN VB
+PKbanken NNP
+Ying-shek NNP
+Trichinella NN
+discount-coupon NN
+Venturesome JJ
+Enrico NNP
+microphone NN
+Anaheim NNP
+C.R. NNP
+belt NN
+ligand NN
+mentality NN
+Alcoholics NNPS
+Untch NNP
+shoemaker NN
+Polish JJ VB NNP
+Holt NNP NN
+breakers NNS
+eventshah-leh RB
+Specifications NNS NNP
+ultraviolet JJ NN
+w. JJ
+zilch NN|JJ
+mannered JJ
+insensitive JJ
+Stenexport NNP
+yawning VBG JJ
+auto-insurance NN
+Pax NNP
+requesters NNS
+de-emphasis NN
+etc. FW NN
+Spending NN VBG
+Dowguard NNP
+implicit JJ
+glottal JJ
+people-oriented JJ
+Bella NNP
+Whiskey NNP NN
+cohesion NN
+incestuous JJ
+seesaw NN JJ
+tractors NNS
+eutectic NN
+resistances NNS
+transbay JJ
+obsolete JJ
+ROBERT NNP
+bevel VB
+Recoup VB
+candidate-picking JJ
+CRS NNP
+fortress-like JJ
+timber-dependent JJ
+tapdance NN
+Euro-this NN
+four-room JJ
+Clause NN
+franchiser NN
+two-year-long JJ
+Silberberg NNP
+cleansing NN VBG
+installment-loan JJ
+Bonso NNP
+congratulation NN
+Fit JJ
+dearth NN
+gridlocked VBN JJ
+tenors NNS
+lightly RB
+Mailson NNP
+deserving JJ NN
+salutary JJ
+UNR NNP
+Kleinman NNP
+blindfolded VBN JJ VBD
+spacings NNS
+Darkling NNP
+spreadsheet NN
+apses NNS
+Arenberg NNP
+CURBING VBG
+Holidays NNS
+DOG NN
+Peterborough NNP
+Tomato NNP
+Harve NNP
+corpuscular JJ
+Kumagai-Gumi NNP
+Pilko NNP
+Trained VBN
+rapeseeds NNS
+Telecommuncations NNPS
+plumage NN
+technologically-improved JJ
+Lekberg NNP
+bewteen IN
+far-ranging JJ
+intuitions NNS
+Paging NNP
+instrumented JJ
+County NNP NN NNPS
+Dreadnought NNP
+layering VBG NN
+taken VBN VBG
+jar NN
+slow-acting JJ
+spirit NN
+estate NN
+strived VBD
+off-white JJ
+Jacksonian NNP JJ
+reproducibly RB
+underestimation NN
+co-marketing JJ
+fluorine NN
+Vivaldi-at-brunch JJ
+Dowling NNP
+Reluctant JJ
+Salsich NNP
+Littell NNP
+Blue-chip JJ
+Rd. NNP
+Despina NNP
+warm-blooded JJ
+frames NNS
+Tsvetkov NNP
+ifs NNS
+not-quite-perfect JJ
+Galbraith NNP
+sander NN
+Rittlemann NNP
+skates NNS
+diuretic NN JJ
+personality NN
+lubricating-oil NN
+call-backs NNS
+Steiners NNPS
+squad NN
+F-18 NN
+going VBG JJ NN
+cross-investing JJ NN
+short-covering NN JJ
+Notarius NNP
+roominess NN
+low-loss JJ NN
+fruitlessly RB
+self-dramatization NN
+Glison NNP
+hashing NN VBG
+terrace NN
+Naomi NNP
+Litchfield NNP
+tuba NN
+biotech JJ NN
+toughest JJS
+Recent JJ
+Bare JJ
+Haines NNP
+Thank VB VBP
+Nod NNP
+franca FW
+Pappas NNP
+color-printing JJ
+Luftfahrt NNP
+ushers VBZ NNS
+interpeople JJ
+mobile-home NN
+Buy-Back NNP
+naively RB
+spoil VB VBP
+neighborly JJ
+tyrannis FW
+neurologist NN
+red-cheeked JJ
+Broncos NNP NNS
+little-known JJ
+parliaments NNS
+Miami-based JJ
+re-thinking VBG
+Utilization NN
+Woonasquatucket NNP
+four-for-one RB
+hardtack NN
+Piwen NNP
+Roling NNP
+Burrill NNP
+DLX NNP
+clinched VBD
+stumpy JJ
+fajitas NNS
+plain-clothes JJ
+Prof NNP
+atomic JJ
+surfaced VBD VBN
+Longhorns NNP
+wall-switch NN
+nondollar JJ
+insured VBN VBD JJ NN
+subconscious JJ NN
+headstand NN
+deformities NNS
+CITIC NNP
+forums NNS
+bone-deep JJ
+untouchable JJ
+cancer-suppressing JJ
+AGENCIES NNS
+tumours NNS
+suppers NNS
+annually RB
+sensitize VB
+ridiculing VBG
+franchises NNS VBZ
+Taccetta NNP
+ham-like JJ
+fluorescent JJ
+welcomed VBD VBN
+Homo NN NNP
+Hellinger NNP
+Witkin NNP
+repeating VBG JJ
+Muldoon NNP
+rookie NN
+Washburn NNP
+DX NNP
+super-fast JJ
+Songbag NNP
+Bamsi NNP
+Broughton NNP
+Weber NNP NN
+shrug VB NN VBP
+reinforced VBN VBD JJ
+Picoult NNP
+shills NNS
+mineralogical JJ
+imprisons VBZ
+Travel NNP NN VB
+aristocrats NNS
+synthetic-leather JJ
+kilowatt-hours NNS NN
+Market NNP NN
+formerly RB
+public-affairs NNS
+fjords NNS
+make-overs NNS
+Ainslie NNP
+shtik NN
+Gen NNP
+Bundesnachrichtendienst NNP
+adaptations NNS
+Adjust VB
+native JJ NN
+contralto NN
+Swept VBN
+Biscuits NNP NNPS
+reticence NN
+Lynchburg NNP
+thugs NNS
+Clubhouse NNP
+SOME DT
+astounding JJ
+MMG NNP
+originator NN
+Shirt NNP
+Furlett NNP
+wellrun JJ
+cortically RB
+keine FW
+'Who NN WP
+habitually RB
+Wagg NNP
+unquestioned JJ
+incurred VBN VBD
+bruised VBN JJ
+dripped VBD
+unthaw VB
+irrefutable JJ
+tinny JJ NN
+thoroughfare NN
+Closing NN VBG
+unit-making VBG
+fighters NNS
+fares NNS NN VBZ
+acidified VBN
+triphenylarsine NN
+Crude JJ NN NNP
+ES NNP
+Groupement NNP
+supportable JJ
+Emily NNP
+Fernandes NNP
+AC-130U NN
+sideline-business JJ
+gummed VBN
+Grafton NNP
+Ludden NNP
+puny JJ
+pelts NNS
+Afford VB
+monotony NN
+divan NN
+Nessen NNP
+come-uppance NN
+Hood NNP NN
+'68 CD
+patriotic JJ NN
+homesteaders NNS
+self-serving JJ
+Wolfson NNP
+Mauldin NNP
+Worship NNP
+loot NN VB
+stash VB NN
+frolic NN VB
+Keidanren NNP
+quashed VBD VBN
+flying VBG VBG|NN|JJ JJ NN
+co-chaired VBN JJ
+busier JJR
+fifth-consecutive JJ
+mecca NN
+fining VBG
+etymology NN
+plow NN VBP VB
+BONUSES NNS
+treaty-making NN
+MAILINGS NNS
+least-developed-nation JJ
+Cyr NNP
+unsee VBN
+Finds VBZ
+Empirically RB
+management-trained JJ
+Riedel NNP
+squeaks VBZ
+surmount VB
+Apologies NNS
+bargaining-chip NN
+Arai NNP
+geological JJ
+photographed VBN VBD
+sag VB NN VBP
+Toujours FW
+value-system NN
+unreasonable JJ
+age-old JJ
+Doric JJ
+pro-forma FW
+includes VBZ
+enzyme NN
+Sleepy-eyed JJ
+stentorian JJ
+rugs NNS
+rocket-fuel NN
+taxied VBD
+unhealthy JJ
+Erdolversorgungs NNP
+Gouge VB
+computing-services JJ
+pedagogical JJ
+subnormal JJ
+irresistable JJ
+faster-working JJR
+Groton NNP
+Center-punch VB
+Peoria NNP
+NEW JJ NNP NN
+Edita NNP
+No.3 JJ
+coworkers NNS
+FN NNP
+Measured VBN
+Colombians NNPS NNS
+misrepresenting VBG
+warmer JJR RBR
+Corp.-compatible JJ
+Nickel-iron JJ
+Susan NNP
+Gardini NNP
+Garner NNP
+Stehlin NNP
+surrounded VBN VBD VBN|JJ
+auto-parts JJ NNS
+Ozzie NNP
+metre NN
+Wappinger NNP
+sweetest-tasting JJ
+carboxymethyl NN
+dealmakers NNS
+BALLY'S NNP
+someplace RB NN
+Ostrander NNP
+compromised VBN VBD
+extractor NN
+Halloween NNP
+third-inning NN
+satirist NN
+Anglo-Saxons NNS
+Jingoism NN
+Pay VB VBP NNP NN
+Elections NNS NNP
+restored VBN VBD
+acquisition NN
+Anticipated VBN JJ
+request NN VB VBP
+minimalist JJ NN
+high-loss JJ
+lobbied VBD VBN
+currency NN
+bootleg JJ NN
+on-site JJ
+Arleigh NNP
+Cartusciello NNP
+elegances NNS
+stalking VBG VBG|NN
+NGL NNP
+Freeway NNP
+pizzas-with-everything NNS
+tranquillity NN
+grantors NNS
+imponderables NNS
+single-dose JJ
+subliminal JJ
+earlier RBR JJR JJ NN RB
+CRT NNP
+flagpoles NNS
+namely RB
+Pignatelli NNP
+falsified VBN
+universalistic JJ
+Quieter JJR
+S.C. NNP
+Amgen NNP
+uptrend NN
+Pipeline NNP
+Daihatsu NNP
+Ah UH PRP
+mass-reproduced JJ
+RoadRailing VBG
+transporter NN
+hunkered VBN VBD
+median-nerve JJ
+GI NNP NN
+marveled VBD VBN
+McCartney NNP
+Executive NNP NN
+Serex NNP
+Counseling NN NNP
+preacher NN
+Modest JJ
+appeals. NNS
+Tassel NNP
+infra FW
+Sarum NNP
+germ NN
+Madeleine NNP
+vagabonds NNS
+sailors NNS
+simulate VB VBP
+Shahal NNP
+Emilio NNP
+Else RB
+pseudo-happiness NN
+large-size JJ
+livres FW NNS
+free-falling JJ
+Neo-Jazz NNP
+incarceration NN
+bulge NN VB
+sale\/leaseback NN
+State-financed JJ
+Bruges NNP
+exploiters NNS
+previewing VBG
+hand-lotion NN
+Yamabe NNP
+MNB NNP
+Whinney NNP
+penultimate JJ
+Freiburghouse NNP
+Prohibition NNP NN
+unit NN
+Soler NNP
+Austrian JJ NNP
+closed-door JJ NN
+corporis FW
+ergonomics NNS
+Weitz NNP
+luckier JJR
+GOLF NN
+asset-quality JJ
+Diane NNP
+Anglo-Jewish JJ
+agile JJ
+cupful JJ
+palladium NN
+SPRINGFIELD NNP
+antimissile JJ
+LSC NNP
+insets NNS
+awakens VBZ
+final JJ
+mountain-bike NN
+revoltingly RB
+HD NNP
+Shaw-Walker NNP
+Rosemont NNP
+once-spare JJ
+bargain NN VB
+lobsters NNS
+antagonize VB VBP
+investment-bank JJ
+Psychotherapy NNP
+Coors NNP NNS
+Laguerre NNP
+I.B.M. NNP
+Rudman NNP
+Chugoku NNP
+trainer NN
+Beard NNP
+fitting JJ NN VBG
+Giorgio NNP
+Comedian NN
+Kacy NNP
+shorter-tenure JJ
+computer-stock NN
+Osnos NNP
+strong-arm JJ
+spic NN
+Four-fifths NNS
+bibliophiles NNS
+Pipe NNP
+phrase NN
+breast NN
+working-class JJ NN
+non-Christians NNPS NNP
+cordless JJ
+newel NN
+Bozell NNP
+neatness NN
+MVestment NNP
+unknowingly RB
+college NN
+canoe NN VBP
+underside NN
+possum-hunting NN
+Woodyard NNP
+Exchanges NNS
+Erickson NNP NN
+two-to-three JJ
+accomplish VB VBP
+ancients NNS
+seventy-odd JJ
+noncommittally RB
+rinsing NN VBG
+beer-distribution NN
+pop NN JJ VB VBP
+rave VBP JJ VB
+knitting VBG NN
+Central NNP JJ NN NNS
+Fabulous NNP JJ
+blustered VBD
+weepers NNS
+Redesign NN
+Chinchon NNP
+Billings NNS NNP
+Caroli NNP
+Race NNP NN
+simplicities NNS
+Newsletter NNP
+commences VBZ
+praying VBG NN
+Zipper NNP
+Herzog NNP
+Oilgram NNP
+Richland NNP
+satellite-TV JJ
+seesawing VBG
+Orleans-based JJ
+stadium NN
+VIII NNP
+LifeSavers NNPS NNP
+Flocks NNS
+expectant JJ
+Parke-Davis NNP
+anti-vivisectionists NNS
+Colombia NNP NN
+Executioner NN
+Agoglia NNP
+five-years NNS
+reinman NN
+reassessing VBG
+Justice NNP JJ NN
+Sultanate NNP
+stealthily RB
+confidant NN
+Harvesting NN
+shins NNS
+cranberry-and-gray JJ
+Precisely RB
+disallow VB
+lampposts NNS
+busies NNS
+Bloomfield NNP
+stropped VBD
+Allegany NNP
+most-admired JJ
+Sidewalk NNP NN
+Snacking NN
+FFA NNP
+lord NN
+testosterone NN
+Trains NNS
+tutelage NN
+Geo NNP
+chiseled VBN JJ
+Financiers NNS
+writing VBG NN
+Leber NNP
+Stanbury NNP
+Kornbluth NNP
+Schuyler NNP
+headline NN
+blobby JJ
+CSO NNP
+itinerant JJ
+finishing-school NN
+Hudnut NNP
+sucker-rolling JJ
+bank-baiting JJ
+ostensibly RB
+Canada-North NNP
+Rognoni NNP
+Jackpot NNP
+Undertaken VBN
+abstracting VBG
+winery NN
+Yan NNP
+Land-Rover NNP
+Surface NN JJ
+Devout JJ
+act NN VBP VB
+gum-chewing JJ
+booklet NN
+moderate-rehabilitation NN
+blazing VBG JJ
+prize-fighter NN
+purses NNS
+Certified NNP
+co-ops NN
+Campbell NNP NN
+DPC NNP
+extramural JJ
+PROPOSED VBD
+normative JJ
+uninteresting JJ
+Bickford NNP
+coyly RB
+Experimenting VBG
+crotch NN
+preaches VBZ
+Pacific-listed JJ
+wheat NN JJ
+translates VBZ
+Avelar NNP
+Darvocet-N NNP
+front-page JJ NN
+unhelpfully RB
+reliable JJ
+woods NNS
+ripped VBD VBN
+manpower NN
+Hewlett NNP
+Backstitch VB
+ritzy JJ
+Swallow NNP
+Turks NNPS NNP NNS
+Leontief NNP
+BIOTECHNOLOGY NN
+Heinzes NNPS
+boughs NNS
+Mathematical JJ
+Michelin NNP
+girder NN
+many JJ DT NN RB VB NNS PDT
+steamboat NN
+Downbeat NNP
+nubile JJ
+ounces NNS NN
+colander NN
+Tasti-Freeze NNP
+Buckenham NNP
+Segura NNP
+cash-draw JJ
+jihad NN
+Schwinn NNP
+lb-plus JJ
+pesticides NNS
+militarily RB
+Abderahmane NNP
+Satisfied VBN
+tri-jet NN
+vicinity NN
+Smart NNP JJ
+Designing NNP VBG
+myeloid NN
+active-matrix JJ NN
+deep JJ RB
+vaccines NNS
+airy JJ
+rehabilitate VB
+affections NNS
+viewpoints NNS
+considers VBZ
+ET NNP
+Peeking VBG
+Deerfield NNP
+Senora NNP
+outward RB JJ
+Guadalupe NNP
+puncher NN
+heartiest JJS RBS
+Salzgitter NNP
+tentatively RB
+iodotyrosines NNS
+bestows VBZ
+Ferenc NNP
+Pointing VBG
+homeless JJ NN
+severe-looking JJ
+puffed-up JJ
+condemnation NN
+meteorite NN
+competently RB
+HomeCare NNP
+hardbound JJ
+Doskocil NNP
+FINAL JJ
+legations NNS
+pronounces VBZ
+Pileggi NNP
+import-export JJ
+Almonds NNS
+Kaneb NNP JJ
+crafty JJ
+Bhirud NNP
+HALE NNP
+stonewalled VBD
+conducted VBN VBD
+harass VB VBP
+properties.`` ``
+cozy JJ RB
+Alcee NNP
+hope... :
+Gintel NNP
+scribe NN
+barrister NN
+hire VB VBP NN
+fieldstone NN
+barged VBN VBD
+bone-loss NN
+Stop VB NN NNP
+Banquet NNP NN
+co-authors VBZ
+Hershhenson NNP
+start-ups NNS
+ourselves PRP
+disproportionate JJ
+Printing NNP
+war-like JJ
+coupon-equivalent JJ
+appallingly RB
+Colossus NNP
+Hendricks NNP
+Resnick NNP
+Viatech NNP
+Dream-Way NNP
+Paz NNP
+body-tissue NN
+Penthouse NNP
+Lourie NNP
+Anti-Ballistic NNP
+O'Clock NNP
+Bedridden JJ
+simple-seeming JJ
+vacate VB
+ideal JJ NN
+nonspecifically RB
+predestined VBN
+Cokely NNP
+Superintendent NNP
+waxed VBD JJ VBN
+FOREIGN JJ NNP
+reincarcerated VBN
+Hampster NNP
+Willcox NNP
+Agins NNP
+Mich NNP
+relisting NN
+purported JJ VBD
+McAbee NNP
+winking VBG
+wickets NNS
+battlegroups NNS
+aftershock NN
+Marques NNP
+ensembles NNS
+hot-shot JJ NN
+long-hoped-for JJ
+sarcasms NNS
+Trinitarian NNP
+Davila NNP
+Puppies NNS
+Canadian JJ NNP NN
+pulsations NNS
+Yellow NNP JJ
+labelled VBN VBD
+snack-food NN
+song NN
+secrets NNS
+quenching NN
+washings NNS
+veils NNS
+Level NNP NN
+Stock-loan NN
+Tarboro NNP
+grants-in-aid NN
+Guilford NNP NN
+rightfully RB
+Danilo NNP
+juggernaut NN
+Brumidi NNP
+most-hazardous JJ
+money-strapped JJ
+embark VB VBP
+artichoke NN
+sponsorships NNS
+crucifixion NN
+origin... :
+high-tax JJ
+coldness NN
+Beare NNP
+Fraud NNP NN
+Taisho NNP
+manger NN
+refrigerant NN
+asset-liability JJ NN
+water-proof JJ
+weighing VBG NN
+unrest NN
+stockpickers NNS
+migrating VBG
+fogged JJ
+disking VBG
+loophole... :
+doghouse NN
+Ai VBP NNP VBZ
+Rickshaw NNP
+Darak NNP
+alphabetically RB
+about IN JJ RB RP RBR IN|RB
+Compiler NN
+cortico-fugal JJ NN
+B.C NN NNP
+circus NN
+decrees NNS VBZ
+Coin NNP
+oils NNS
+Huntingtons NNPS
+Huston NNP
+MNC NNP
+divisiveness NN
+fast-talking JJ
+BPCA NNP
+Drain VB NN
+ado NN
+the'golden JJ
+liners NNS
+UPI NNP
+Debts NNP
+Southern-Republican NNP
+Took VBD
+Beiderbecke NNP
+retired VBN JJ VBD
+barely RB
+gossiped VBN
+eliminating VBG
+Rough JJ NN
+Luber NNP
+Fishermen NNS
+Democratization NN
+organizations NNS
+Non-smoking NN
+Allentown NNP
+Kanegafuchi NNP
+ritiuality NN
+Mitofksy NNP
+buttress VB
+U.S.backed JJ
+on-level NN
+closure NN
+Leitz NNP
+glaring JJ VBG
+quintet NN
+gallants NNS
+pear-shaped JJ
+amend VB VBP
+Highlights NNS
+lettered VBD
+conducts VBZ
+--to IN JJ TO
+new-issues JJ NNS
+sculptor NN
+eagle-eyed JJ
+grass NN
+projector NN
+Tremdine NNP
+Violent JJ
+saltwater NN
+Posey NNP
+Confutatis FW
+ignoble JJ
+scrimmage NN
+Trend NNP
+H.W. NNP
+vestibules NNS
+Compression NN NNP
+SCIENTISTS NNS
+defeating VBG
+patroness NN
+tresses NNS
+oxides NNS
+billions NNS
+Guigal NNP
+social-political-economical JJ
+Azcuenaga NNP
+current-year JJ
+nature-conquering JJ
+hokey JJ
+profit-motivated JJ
+melodious JJ
+HE PRP
+PLEASURE NN
+Kennelly NNP
+Era NNP NN
+just-departed JJ
+vigilant JJ
+lounge NN VB
+Republicans NNPS NNP NNS
+Notebooks NNP NNS
+junket NN
+faultless JJ
+perched VBN VBD
+abstinence NN
+door-frame NN
+bedraggled JJ
+shelters NNS
+Amomng JJ
+stability NN
+onions NNS
+pizzeria NN
+fifteenfold RB
+dreamy JJ
+traveler NN
+disappoint VB
+lore NN
+illusive JJ
+ridding VBG
+tyranny NN
+chicken-wire JJ NN
+housemate NN
+quirks NNS
+honky-tonk NN
+Reflex NN
+Telegraph NNP
+sheltered VBN JJ
+Deposits NNS NNPS
+Nedelman NNP
+TALK NNP NN
+Kiki NNP
+advert NN
+insolvency NN
+overturned VBN VBD
+inflation-fighting JJ NN
+Jacinto NNP
+bought VBD VBN
+Jena NNP
+Hoof NNP
+Rosenbach NNP
+Imaginary NNP JJ
+Pomerantz NNP
+anyway RB
+punches NNS
+OSHA NNP
+Bishun NNP
+pointless JJ
+Maywood NNP
+Sumita NNP
+earning VBG NN
+Malignant NN
+MOHAWK NNP
+ploy NN
+Suffer VB
+four-nation JJ
+Rosenblum NNP
+Uppsala NNP
+Dickel NNP
+Freshman NN
+diathermy NN
+bobbins NNS
+a.k.a JJ
+infrastructure NN
+Nobuya NNP
+enhance VB VBP
+anti-dilutive JJ
+auto-making NN
+SHAREHOLDER NN
+webs NNS
+Small-stock NN
+navigated VBN
+white-spirit NN
+Acid-washed JJ
+crochet VB
+chanteuse NN
+Indications NNS
+non-Japanese JJ
+world-shaking JJ
+magnetized VBN
+mules NNS
+Thermogravimetric JJ
+forecast NN VBD VBN VBP VB
+forgone JJ
+Yao NNP
+summer\ JJ
+intratissue NN
+MMI NNP
+marketer NN
+car-buff JJ
+caller NN
+mitt NN
+Laughing NNP
+mega-stardom NN
+Amerongen NNP
+Roselle NNP
+stock-index-futures NNS JJ
+Bismarckian JJ
+Lubrizol NNP
+nawth NN
+INCREASING VBG
+Masons NNPS NNP NNS
+Christensen NNP
+flatus NN
+Michilimackinac NNP
+Angela NNP
+audacious JJ
+Jorndt NNP
+Braque NNP
+humanness NN
+zookeeper NN
+layout NN
+Pflaum NNP
+akin JJ RB|JJ
+EMPLOYEE NN
+Taxonomists NNS
+idlings NNS
+Analyses NNS
+Tauke NNP
+horoscopes NNS
+segregation NN
+Four CD NNP
+Railbikers NNS
+Sinner NNP
+Roslyn NNP
+sluggishly RB
+Fixed-rate JJ
+sompin NN
+Whenever WRB
+Yucaipa NNP
+Infantry NNP
+reawaken VB
+nickname NN VB VBP
+Cheddi NNP
+chromatographic JJ
+Marquet NNP
+skyrocketing VBG
+Betts NNP
+sneezing VBG
+state NN JJ VB VBP
+less-rigorous JJR
+Toxics NNP
+Blass NNP
+Magnascreen NNP
+dissociation NN
+Stallard NNP
+Lewisohn NNP
+Khouja NNP
+individuals NNS
+unvisited VBN
+Drugs NNS NNPS NNP
+Hoe-Down NNP
+Satis NNP
+Taurida NNP
+affliction NN
+finesse NN
+hall NN
+Revenge NN
+Tories NNPS NNP NNS
+Creator NNP NN
+radiation NN
+three-fifths JJ
+atolls NNS
+ousted VBN VBD JJ
+admiral NN
+frescoes NNS
+bombardment NN
+overturn VB
+Arlington NNP
+gun-slinger NN
+predicts VBZ
+Voices NNS
+Demographie NNP
+Belatedly RB
+deactivated VBN
+Daim NNP
+podiatric JJ
+Showing VBG
+nonpolitical JJ
+Receipts NNPS NNP
+Pauson NNP
+distract VB
+clasped VBD VBN
+Albers NNP
+wipeout NN
+drilling NN JJ VBG
+participations NNS
+high-ticket JJ
+non-junk JJ
+egocentric JJ
+cemetery NN
+solar JJ
+teemed VBD
+graham NN
+half-mile JJ NN
+Pakistanis NNPS
+retiree NN
+clergy NN NNS
+pathologically RB
+regionally RB
+confusing JJ VBG
+Cyanocitta FW
+non-annualized JJ
+Mineworkers NNPS
+Krishnaswami NNP
+aircraft-engine-maintenance JJ
+Bankcard NNP
+Lowry NNP
+marvels NNS VBZ
+pollutants NNS
+recognition NN
+Roscoe NNP
+obligatto NN
+Pincavage NNP
+COVERAGE NNP
+procurer NN
+expressionism NN
+pure JJ
+fee-per-case JJ
+envoy NN
+Ibrahim NNP
+loader NN
+Troutman NNP
+graybeards NNS
+--presumably RB
+concertos NNS
+congressional-item JJ
+surfactant NN
+Citing VBG NNP
+Compact NNP
+spliced VBN
+Saxe NNP
+MANAGER NN
+Ouzo NN
+Rebaja NNP
+osmotic JJ
+lifts VBZ NNS
+readied VBN VBD
+Moorish JJ
+Hess NNP
+anti-pesticide JJ
+Quebec NNP NN
+involving VBG
+dial-tone NN
+Holes NNS
+Lindamood NNP
+Reaffirming VBG
+franc-denominated JJ
+revenue-generating JJ
+now-deceased JJ
+homecomings NNS
+Atwell NNP
+curling NN VBG
+Dives NNS
+Vocabularianism NNP
+Republicanism NNP
+nature NN JJ
+commandment NN
+wireless JJ
+Unusual JJ NNP
+Somerset NNP
+all-day JJ
+Tool NNP NN
+Bolger NNP
+approximately RB JJ
+gases NNS
+Distributing VBG
+feelers NNS
+necessitate VBP VB
+dragged VBN VBD
+Kristallstrukturen FW
+roommates NNS
+half-share NN
+low-volume JJ
+weaknesses NNS
+Claudia NN
+stooooomp VB
+Gourmet NNP
+contractions NNS
+Baranovichi NNP
+SCRAMBLE VBP
+sonorities NNS
+burned-out JJ
+respects NNS VBZ
+Herslow NNP
+once-devoted JJ
+meddle VB
+How's NNS
+Pritzkers NNPS NNP NNS
+roadblocks NNS
+}... :
+Chimicles NNP
+law-enforcement NN JJ
+--grows VBZ
+revisionists NNS
+Exporters NNPS
+Betsy NNP
+gamblers NNS
+mega-welfare JJ
+Mercier NNP
+sixty-one CD
+Kauffeld NNP
+Kurtz NNP
+enterprise NN
+Franyo NNP
+Opposition NN
+reaching VBG NN
+Pee NNP
+Belle NNP
+jealously RB
+PORTFOLIO NN
+Blackwill NNP
+aftermath NN
+planetarium NN
+animosity... :
+high-echelon JJ
+alarming JJ VBG
+Nash NNP
+aromatick JJ
+Mrs NNP
+homesteads NNS
+prophets NNS
+Ariel NNP
+insurance NN
+Soviet-backed JJ
+bad JJ NN RB
+Gough NNP
+Fermate NNP
+Wheaties NNPS
+absorptions NNS
+Argos NNP
+ARNOLD NNP
+rep NN
+Dun NNP
+pepping VBG
+mid-week JJ NN
+Minnett NNP
+Suit NN
+Gathered VBN
+Abercrombie NNP
+disparate JJ
+Vegetable NN
+Langbo NNP
+VICTIMS NNS
+Hannifin NNP
+Trustcorp NNP
+insupportable JJ
+whalesized JJ
+trading-company NN
+pet-rabbit-raising JJ
+hydride NN
+Ramseier NNP
+STATE NNP NN
+bridgehead NN
+labor NN VBP VB
+man-in-the-moon JJ
+mini-series NN NNS
+Lincoln-Mercury NNP
+semiconductor-equipment NN
+Frankie NNP
+Services NNPS NNP NNS
+remembered VBD JJ VBN
+Aprotinine NNP
+sellin NN
+Blueprints VBZ
+sideboard NN
+OAS NNP
+mammals NNS
+Holderbank NNP
+Phenothiazine NN
+slice NN VB VBP
+Viande NNP
+taker NN
+sounded VBD VBN
+Hartt NNP
+securities-laws NNS
+Butts NNP
+diisocyanate NN
+centralized JJ VBD VBN
+approached VBD VBN
+umpteenth JJ
+Kezziah NNP
+cease VB VBP
+Taught VBN
+stationed VBN
+company-sponsored JJ
+celebrity-oriented JJ
+marketplaces NNS
+Logica NNP
+widowers NNS
+Aral NNP
+Be VB NNP
+robots NNS
+anti-state JJ
+adjuster NN
+regains VBZ
+undesirably RB
+SpellRight NNP
+HF NNP
+Technique NN
+recounts VBZ
+debuted VBD
+dirt-catcher NN
+overemphasis NN
+Opel NNP
+corridor NN
+shareholder\/management NN
+leafed VBD
+BIO-RAD NNP
+thirty-four CD
+Flesh NN
+Vasquez NNP
+howsomever RB
+everyone... :
+lefthander NN
+Navona NNP
+spoke VBD NN
+market-makers NNS
+'re... :
+understanded VBN
+ACCO NNP
+deer NN NNS
+NHI NNP
+Tritium NN
+SEPT. NNP
+Blast NNP
+jumbled VBN
+family NN
+married-put JJ
+Rancho NNP
+interdepartmental JJ
+bacon NN
+carpenters NNS
+l'Universite NNP
+garnered VBD VBN
+stodgy JJ
+Diman NNP
+Engages NNS
+absolute JJ NN
+Toyoda NNP
+siding NN VBG
+me PRP FW
+Observers NNS
+silver-haired JJ
+tang NN
+Detrex NNP
+exemplar NN
+Disgrace NN
+foreign-made JJ
+inductions NNS
+beautifully-built JJ
+Timothy NNP
+price-sensitive JJ
+Albert NNP
+under-inclusion NN
+Touting VBG
+Anglophilia NNP
+conspirators NNS
+detractors NNS
+forecaster NN
+dilettante NN
+organic JJ
+regained VBD VBN
+analyzable JJ
+Demon NNP NN
+missile-type JJ
+Northeners NNP
+microvan NN
+Kevah NNP
+pinioned VBN
+television NN
+delineation NN
+Kersley NNP
+plodded VBD VBN
+Inglewood NNP
+ecclesiastical JJ
+Leven NNP
+cosmologies NNS
+Arcata NNP
+slimmer-than-expected JJ
+Oil NNP NN
+Machida NNP
+Coopersmith NNP
+censure NN
+Euro-enthusiasts NNS
+non-interest JJ NN
+dreamin NN
+sparkle NN
+Goncharov NNP
+brooch NN
+Zeisler NNP
+Dain NNP
+victories NNS
+Kobayashi NNP
+Liberty NNP NN
+stock-basket NN JJ
+subpoenaed VBN VBD
+Nazia NNP
+Detroiters NNS
+three-lawyer JJ
+Drake NNP
+Decathlon NNP
+scooping VBG
+deploy VB VBP
+Brasil JJ
+lexicostatistics NNS
+Hagoshrim NNP
+Capone NNP NN
+Inhouse JJ
+Adenauer NNP
+Devonshire NNP
+LecTec NNP
+Haruo NNP
+normalization NN
+filaments NNS
+McMullin NNP
+travelling VBG
+prompting VBG NN
+snacks NNS
+grasping VBG
+Dresdner-ABD NNP
+wage-discrimination NN
+Meanwile RB
+Sakata NNP
+trapezoid NN
+concord NN
+Autos NNS
+Vallfart NNP
+fifty-cent JJ
+Sub-Saharan NNP
+underlined VBD VBN
+surrounds VBZ
+Undoubtedly RB NNP
+Masssachusetts NNP
+rats NNS
+in-kind JJ
+jerky JJ NN
+ponders VBZ
+message NN
+tube NN
+rancorous JJ
+Oka NNP
+fruit-concentrate JJ
+Golan NNP
+recurring VBG
+Students NNS NNPS NNP
+Comments NNS NNPS NNP
+thoroughfares NNS
+Jellyby NNP
+tracing VBG JJ NN
+Great NNP JJ
+Bari NNP
+Inherently RB
+Mottram NNP
+Whitford NNP
+Protests NNS VBZ
+withhold VB VBP
+Skubal NNP
+homered VBD
+Prometheus NNP
+enforcers NNS
+knot-tying JJ
+quality-improvement NN
+Bahcall NNP
+distracted VBN VBD
+Eastern NNP JJ
+debacles NNS
+Colman NNP
+strategies NNS
+surmise VB
+extant JJ
+convince VB VBP
+Steak NNP
+bourgeois JJ NN
+Greek-speaking JJ
+rapture NN
+uncontrolled JJ
+overlaid VBN
+poivre FW NN
+folding VBG JJ NN
+LABOR NNP NN
+fruity JJ
+Anywhere RB
+pseudo-anthropological JJ
+Boulet NNP
+Gidwani NNP
+GM-Toyota JJ
+mare NN
+chapters NNS
+marine-research NN
+Cahoon NNP
+Juneau NNP
+gallstone NN
+interconnections NNS
+nymphomaniac NN JJ
+altering VBG
+advancement NN
+Passos NNP
+azure JJ
+cutbacks NNS
+charity NN
+Aqua-Ban NNP
+Plimpton NNP
+Admission NN NNP
+chromatics NNS
+pylons NNS
+Fix VB
+J.V NNP
+gegenschein NN
+Care-Unit NNP
+Delving VBG
+securely RB
+Simulated JJ
+pandemic NN
+logistical JJ
+O'Kicki NNP
+eyelashes NNS
+coined VBN VBD
+Quinzaine NNP
+rasped VBD
+Lamarche NNP
+Wendel NNP
+preferred-stock JJ NN
+Mattone NNP
+nutty JJ
+Evansville NNP
+not. NN
+dwindles VBZ
+Knudsen NNP
+Nobuyuki NNP
+deterred VBN VBD
+Marskmen NNP
+G.B.S. NN
+missile NN
+movement NN
+resolute JJ
+Provision NN
+muddleheaded JJ
+Meaden NNP
+Composer NN
+no-drinking JJ
+Helicopters NNP NNPS
+Panelli NNP
+once-downtrodden JJ
+yearearlier JJ
+Ethiopian JJ
+old-timer NN
+Mazda NNP
+sedulously RB
+lifeguards NNS
+Bluefield NNP
+Telling VBG
+Acquired VBN NNP
+Irene NNP
+calypso NN
+Ore. NNP
+Sobey NNP
+radio-pharmaceutical JJ
+bedpans NNS
+zirconate NN
+Coke NNP NN
+reminds VBZ
+Surcliffes NNPS
+cupids NNS
+palace NN
+yearn VB VBP NN
+takes VBZ
+Putting VBG
+warriors NNS
+paperbacks NNS
+herbs NNS
+washed VBN VBD JJ
+Serif NNP
+Barker NNP
+French-government-owned JJ
+Diversity NN NNP
+inexpressible JJ
+deaths NNS
+Calif.-based JJ
+shea NN
+photographer NN
+grave JJ NN
+cops'n NNS
+paper-and-crayon JJ
+rejecting VBG
+after-school JJ
+dismiss VB VBP
+Hotel-casino NN
+Honduran JJ
+two-day-old JJ
+datadex NN
+weed NN VB
+One-Horse JJ
+crisis NN
+CHEVRON NNP
+Brown-Forman NNP
+parent-teacher JJ
+Metropolian NNP
+newborns NNS
+bad-neighbor JJ
+imagined VBN VBD JJ
+movie-goer NN
+'76 CD
+Nikons NNPS
+Sssshoo NN
+Omron NNP
+commie JJ
+expanding VBG JJ
+Tons NNS
+radio-show JJ
+demolish VB
+y'all PRP
+communication-service JJ
+hips NNS
+Ashton NNP
+Pogue NNP
+death-locked JJ
+rotting VBG
+clearances NNS
+Kamin NNP
+RATIOS NNS
+Clarinet NN
+protecting VBG
+pesticides.`` ``
+Tbond JJ
+crazies NNS
+Holy NNP JJ
+Dangerous JJ NNP
+double-checking NN
+Mosk NNP
+Commonly RB
+reaffirmation NN
+McGee NNP
+Nureyev NNP
+catkin NN
+Xia NNP
+grassers NNS
+stuggles VBZ
+thoriated VBN
+Stoller NNP
+privileging VBG
+maniclike JJ
+BANKAMERICA NNP
+TWA NNP
+exhortations NNS
+achieving VBG
+closings NNS
+Sun-3\/50 NNP
+topper NN
+K'ang-si FW
+Cowessett NNP
+Markey NNP
+GL NNP
+shepherd NN VB
+whales NNS
+Devesa NNP
+expressionist NN
+Younkers NNP NNS
+believing VBG
+heliocentric JJ
+Reflecting VBG
+re-establish VB NN
+Prodigall NNP
+Semegran NNP
+fast RB JJ NN RP
+medicines NNS
+Lester NNP
+Heffer NNP
+Somersaults NNS
+questionable JJ
+Bewitched NNP
+Joes NNS
+Kennedyesque JJ
+snapping VBG NN
+keyboarding VBG
+Rugged JJ
+Newest JJS
+nitrogen-based JJ
+limber JJ
+Raether NNP
+intrigues NNS
+Substances NNS
+diorah NN
+Erensel NNP
+Keswick NNP
+radios NNS
+omnipotence NN
+burdened VBN VBD
+most-prestigious JJ
+special-projects JJ
+Dipylon NNP
+Wilk NNP
+Fernandez NNP
+hob NN
+nothings NNS
+Hakuhodo NNP
+Euroyen NNP
+Sergiusz NNP
+Xiangyang NNP
+desecrates VBZ
+pajamas NNS
+Regarding VBG
+predicted VBD JJ VBN
+Nanook NNP
+standardize VB
+Developers NNS NNP
+surrogates NNS
+caucus NN VB
+once-desirable JJ
+SS-20s NNPS
+regular JJ
+Lucca NNP
+exercising VBG NN
+Rukeyser NNP
+Cornona NNP
+Fatah NNP NN
+pioneering VBG JJ
+CSR NNP
+Dallas-headquartered JJ
+timetable NN
+HG NNP
+Adagio NNP
+Plumbing NNP
+Blackfeet NNPS NNP
+Stimulates VBZ
+whereof RB WRB
+ballads NNS
+brightness NN
+pickle NN
+Drifting VBG
+syndicates NNS
+Thatcherian JJ
+Economist NNP NN
+scandalized VBD VBN
+bankroll VB VBP
+Paragould NNP
+self-employment NN
+Arterial JJ
+unreason NN
+Albrecht NNP
+draining VBG NN
+squeals NNS
+barrel NN VB
+refundable JJ
+therewith RB
+ffreind VB
+flood NN VB VBP
+hush-hush JJ
+insomma FW
+Elsewhere RB NNP
+Mick NNP
+garbage-to-energy JJ
+all-expenses-paid JJ
+sketches NNS VBZ
+billion-peso JJ
+downpayments NNS
+energies NNS
+full-year JJ
+Seaman NNP RB
+posed VBN VBD
+Medical-supply JJ
+Fabi NNP
+craziness NN
+Buds NNPS
+government-to-government JJ
+Shake VB
+sentences NNS
+newsperson NN
+ensues VBZ
+Yemma NNP
+Hultberg NNP
+light-reflecting JJ
+stumping NN
+monsoon-shrouded JJ
+Subsistencias NNP
+Badly RB
+rulers NNS
+Normura NNP
+Ca MD NNP JJ
+Tuesdays NNPS
+steelmakers NNS
+advertorial JJ
+near-solid JJ
+Jody NNP
+computer\ JJ
+Souths NNPS
+swapping VBG NN
+re-rescue VB
+Madison NNP
+Bargerter NNP
+ex-prize JJ
+snub VB
+Heading VBG
+hidebound JJ
+non-resident JJ
+thrust NN VBD VBN VB
+accelerations NNS
+angrily RB
+Palestinian JJ NNP NN
+notable JJ
+Brunswig NNP
+claiming VBG
+blastdown NN
+mustering VBG
+emigration-related JJ
+proponents NNS
+sub-underwriters NNS
+nine-day JJ
+Kennewick NNP
+neon NN
+'81 CD
+bluntest RBS
+mortared VBN
+Guber-Peters NNP NNS JJ
+vantage NN
+unpromising JJ
+debt-restructuring JJ
+Located VBN
+unprocurable JJ
+Hedquist NNP
+WKRP NNP
+C.S. NNP
+Danza NNP
+Likely JJ RB
+centering VBG NN
+TIPS NNS
+nine-chambered JJ
+na TO VBG
+Gebhard NNP
+Willie NNP
+tempera NN
+pellagra NN
+vitals NNS
+fragmentation NN
+Researching VBG
+startle VB
+vomited VBD
+outward-looking JJ
+Kaminski NNP
+then-Air JJ|NP
+mounted VBN JJ VBD
+Dino NNP
+swathed VBN
+Mud NNP
+data-recording NN
+Albrights NNPS
+Haverhill NNP
+A.M.A. NNP
+redial VB
+Briefly RB
+foiling VBG
+riverbank NN
+hurtling VBG
+Oppenheim NNP
+Calloway NNP
+quarter-by-quarter JJ
+Telefunken NN NNP
+cronies NNS
+squeaky JJ RB
+Burial NN
+conspiratorial JJ
+scrappy JJ
+bogs VBZ
+CRX NNP
+gone VBN JJ VBN|JJ
+archtype NN
+AFFLUENT JJ
+Spurdle NNP
+one-country JJ
+Betsey NNP
+diathesis NN
+gnome NN
+dulcet JJ
+disagreeable JJ
+sulphurous JJ
+Assicurazioni NNP
+rocking NN JJ VBG
+Tigard NNP
+Saftey NNP
+Keizaikai NNP
+Entrenched VBN
+overcommitted VBN
+Western-owned JJ
+smallness NN
+sinks VBZ
+Hal NNP
+idealisms NNS
+six-shooter NN
+Lanka NNP
+oink UH
+vocalization NN
+Chore NN
+saddle NN VB
+Pumwani NNP
+chimneys NNS
+Aalseth NNP
+Dylex NNP
+coneheads NNS
+depletes VBZ
+devastating JJ VBG
+lanterns NNS VBZ
+Durham NNP
+Crimes NNP NNS
+STAGED VBD
+Bosley NNP
+mistook VBD
+jaw NN
+KinderCare NNP
+Violin NNP NN
+tidings NNS
+scaring VBG
+piano NN
+soddies NNS
+nonthreatening VBG
+mischievous JJ
+Belief NN
+position NN VBP VB
+Weill\/Bertolt NNP
+spokeman NN
+wagering NN VBG
+tungsten NN
+O.T. NNP
+arcades NNS
+discrediting NN VBG
+Schmolka NNP
+brunette JJ NN
+hand-delivered JJ
+Mecaniques NNP
+Cayne NNP
+already-reluctant JJ
+vaccinia NN
+armload NN
+Peg NNP
+Fines NNP
+Normal JJ NNP
+communiques NNS
+fragment NN
+STRIPES NNP
+visualization NN
+Drive NNP NN VB
+impious JJ
+Bricklayers NNPS
+Aran NNP
+Lammermoor NNP
+Lobularity NN
+Stealth NNP
+stars NNS VBZ
+Holz NNP
+answer NN VB VBP
+porcupines NNS
+spreadsheets NNS
+bad-fitting JJ
+Ambridge NNP
+Delinquency NNP NN
+Sherrill NNP
+Zwiren NNP
+distance NN VB
+meals NNS
+brain-damaged JJ
+Open NNP JJ VB
+CVB NNP
+JAPAN'S NNP
+intraday JJ NN
+Vineyard NNP
+buzzed VBD
+justifiably RB
+Eizenstat NNP
+Wetzel NNP
+Popish NNP
+Orgotein NNP
+Base NNP NN
+Year-ago JJ
+Spinnaker NNP
+dancers NNS
+mine-hunting JJ
+spurred VBN VBD
+Kentuck NNP
+coupling VBG NN
+hoste NN
+redefined VBD
+Bare-Faced NNP
+nine-cent JJ
+corporate-tax JJ
+Toronto-Dominion NNP
+Stimson NNP
+inspirational JJ
+strolls VBZ
+FHA-insured JJ
+Lukuklu NNP
+Frabotta NNP
+acknowledging VBG
+brambles NNS
+liquid-fuel NN
+quantum NN
+French-English NNP
+unswaggering JJ
+LATE-BREAKING JJ
+microbiologist NN
+pups NNS
+serviettes NNS
+detected VBN VBD
+M\*A\*S\*H NNP
+Mannington NNP
+underinvestigated JJ
+Rutstein NNP
+VO5 NNP
+carved-out-of-solid JJ
+tax-rate JJ NN
+exclaim VB
+pot NN VB
+vascular-lesion NN
+Will MD NNP NN VB
+unfulfilled JJ
+Sawhill NNP
+dishwater NN
+compromiser NN
+gorgeous JJ
+halo NN
+Giubbonari NNP
+Medvedev NNP
+epithets NNS
+dramatically RB
+Airpark NNP
+eight-partner JJ
+zim UH
+hander NN
+Reverently RB
+empowerment NN
+solid-gold JJ
+undependable JJ
+frozen-embryo NN
+Ringenbach NNP
+cathouse NN
+Pickett NNP
+seeming JJ VBG
+Councils NNPS
+unverifiable JJ
+first-base JJ
+Intent NN
+pondered VBD VBN
+vanguard NN
+constricted JJ VBD VBN
+Univest NNP
+irresponsible JJ NN
+sported VBD
+prepaying VBG
+Gilroy NNP
+rarefied VBN
+NBC-Sears NNP
+Lampe NNP
+composer-in-residence NN
+colloquies NNS
+Al NNP
+underachiever NN
+falters VBZ
+maxim NN
+Wilkins NNP
+Phelps NNP
+Reply NN NNP
+self-deprecating JJ
+plus-one JJ RB
+Carrots NNPS
+GM NNP
+Chamberlain NNP
+quickness NN
+Simplification NN
+hates VBZ NNS
+low-paying JJ
+supply-side JJ NN
+hoc FW
+Steinkerque NNP
+Singleton NNP
+buggers NNS
+Seal NNP
+Aida NNP
+qualify VB VBP
+M. NNP NN
+cell-free JJ
+ringlets NNS
+Steam NN
+cash-back JJ
+traumatic JJ
+rents NNS VBZ
+centerline NN
+Dollar-yen JJ
+infrequent JJ
+Beazer NNP
+alone... :
+escalating VBG
+nubbins NNS
+L'Oreal NNP
+CSS NNP
+Voyagers NNPS
+intermediates NNS
+amplifying VBG
+Nate NNP
+contadini NNS
+bosses NNS
+commiserate VB
+one-percentage JJ
+proto-Athabascan NN
+experimental-theater JJ
+SHEDDING VBG
+Career NNP NN
+initiates VBZ NNS
+Adriatic NNP
+semimonthly JJ RB|JJ
+Cheri NNP
+prosecutor NN
+Cola NNP
+Pohly NNP
+Edmond NNP
+Spiegel NNP
+Chinese-inspired JJ
+Wordsworth NNP
+Izvestia NNP
+Connors NNP
+Methodism NNP
+Gibson NNP NN
+non-toxic JJ
+Baden-Baden NNP
+Intolerable JJ
+hand NN RB VB VBP JJ
+inapplicable JJ
+disassembly NN
+B\/T NNP
+Guess NNP VBP NN VB
+Regent NNP
+Bucer NNP
+divvying VBG
+fills VBZ
+zeroed VBN
+Losers NNS
+synapses NNS
+two-game NN
+celebrity-driven JJ
+unreasonably RB
+Guards NNPS
+Jelenic NNP
+Minerva NNP
+subtract VB VBP
+lurking VBG
+flattens VBZ
+knight NN
+kidney NN
+dominoes NN
+CUTTY NNP
+McCain NNP
+phloem NN
+Cie. NNP
+Jonquieres NNP
+Aubr. NNP
+Royaux NNP
+contradictorily RB
+compromises NNS VBZ
+equipotent JJ
+Butowsky NNP
+biggie NN
+zlotys NNS
+laden JJ VBN VB
+SKIRTS NNP
+Frankenstein NNP
+wooded JJ
+whinnied VBD
+dissuaded VBD VBN
+monetarists NNS
+Mecklenberg NNP
+Chad NNP
+trophy NN
+Birth NNP
+Sunday-school JJ
+Sven NNP
+smash-'em-down JJ
+forms NNS VBZ
+Tripartite NNP
+Conductor NN NNP
+canary-colored JJ


Property changes on: topia.postag/trunk/src/topia/postag/data/english-lexicon.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: topia.postag/trunk/src/topia/postag/example.txt
===================================================================
--- topia.postag/trunk/src/topia/postag/example.txt	                        (rev 0)
+++ topia.postag/trunk/src/topia/postag/example.txt	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,649 @@
+==============
+A News Article
+==============
+
+This document provides a simple example of extracting the keywords of a BBC
+article from May 29, 2009. We will use several keyword extraction tools to
+compare the outcome.
+
+  >>> text ='''
+  ... Police shut Palestinian theatre in Jerusalem.
+  ...
+  ... Israeli police have shut down a Palestinian theatre in East Jerusalem.
+  ...
+  ... The action, on Thursday, prevented the closing event of an international
+  ... literature festival from taking place.
+  ...
+  ... Police said they were acting on a court order, issued after intelligence
+  ... indicated that the Palestinian Authority was involved in the event.
+  ...
+  ... Israel has occupied East Jerusalem since 1967 and has annexed the
+  ... area. This is not recognised by the international community.
+  ...
+  ... The British consul-general in Jerusalem , Richard Makepeace, was
+  ... attending the event.
+  ...
+  ... "I think all lovers of literature would regard this as a very
+  ... regrettable moment and regrettable decision," he added.
+  ...
+  ... Mr Makepeace said the festival's closing event would be reorganised to
+  ... take place at the British Council in Jerusalem.
+  ...
+  ... The Israeli authorities often take action against events in East
+  ... Jerusalem they see as connected to the Palestinian Authority.
+  ...
+  ... Saturday's opening event at the same theatre was also shut down.
+  ...
+  ... A police notice said the closure was on the orders of Israel's internal
+  ... security minister on the grounds of a breach of interim peace accords
+  ... from the 1990s.
+  ...
+  ... These laid the framework for talks on establishing a Palestinian state
+  ... alongside Israel, but left the status of Jerusalem to be determined by
+  ... further negotiation.
+  ...
+  ... Israel has annexed East Jerusalem and declares it part of its eternal
+  ... capital.
+  ...
+  ... Palestinians hope to establish their capital in the area.
+  ... '''
+
+
+Yahoo Keyword Extractor
+-----------------------
+
+Yahoo provides a service that extracts keywords from a piece of content using
+its immense search database.
+
+http://developer.yahoo.com/search/content/V1/termExtraction.html
+
+As you can see, the result is excellent::
+
+  <ResultSet>
+     <Result>british consul general</Result>
+     <Result>east jerusalem</Result>
+     <Result>literature festival</Result>
+     <Result>richard makepeace</Result>
+     <Result>international literature</Result>
+     <Result>israeli authorities</Result>
+     <Result>eternal capital</Result>
+     <Result>peace accords</Result>
+     <Result>security minister</Result>
+     <Result>israeli police</Result>
+     <Result>internal security</Result>
+     <Result>palestinian state</Result>
+     <Result>palestinian authority</Result>
+     <Result>british council</Result>
+     <Result>palestinians</Result>
+     <Result>negotiation</Result>
+     <Result>breach</Result>
+     <Result>1990s</Result>
+     <Result>closure</Result>
+     <Result>israel</Result>
+  </ResultSet>
+
+Unfortunately, the service allows only 5000 requests per 24 hours. Also, there
+is no strength indicator on the terms.
+
+
+TreeTagger
+----------
+
+A POS tagger that uses some linguistics to tag a text. Here is its output::
+
+  Police          NNS       Police
+  shut            VVD       shut
+  Palestinian     JJ        Palestinian
+  theatre         NN        theatre
+  in              IN        in
+  Jerusalem       NP        Jerusalem
+  .               SENT      .
+  Israeli         JJ        Israeli
+  police          NNS       police
+  have            VHP       have
+  shut            VVN       shut
+  down            RP        down
+  a               DT        a
+  Palestinian     JJ        Palestinian
+  theatre         NN        theatre
+  in              IN        in
+  East            NP        East
+  Jerusalem       NP        Jerusalem
+  .               SENT      .
+  The             DT        the
+  action          NN        action
+  ,               ,         ,
+  on              IN        on
+  Thursday        NP        Thursday
+  ,               ,         ,
+  prevented       VVD       prevent
+  the             DT        the
+  closing         NN        closing
+  event           NN        event
+  of              IN        of
+  an              DT        an
+  international   JJ        international
+  literature      NN        literature
+  festival        NN        festival
+  from            IN        from
+  taking          VVG       take
+  place           NN        place
+  .               SENT      .
+  Police          NNS       Police
+  said            VVD       say
+  they            PP        they
+  were            VBD       be
+  acting          VVG       act
+  on              IN        on
+  a               DT        a
+  court           NN        court
+  order           NN        order
+  ,               ,         ,
+  issued          VVN       issue
+  after           IN        after
+  intelligence    NN        intelligence
+  indicated       VVN       indicate
+  that            IN        that
+  the             DT        the
+  Palestinian     NP        Palestinian
+  Authority       NP        Authority
+  was             VBD       be
+  involved        VVN       involve
+  in              IN        in
+  the             DT        the
+  event           NN        event
+  .               SENT      .
+  Israel          NP        Israel
+  has             VHZ       have
+  occupied        VVN       occupy
+  East            NP        East
+  Jerusalem       NP        Jerusalem
+  since           IN        since
+  1967            CD        @card@
+  and             CC        and
+  has             VHZ       have
+  annexed         VVN       annex
+  the             DT        the
+  area            NN        area
+  .               SENT      .
+  This            DT        this
+  is              VBZ       be
+  not             RB        not
+  recognised      VVN       recognise
+  by              IN        by
+  the             DT        the
+  international   JJ        international
+  community       NN        community
+  .               SENT      .
+  The             DT        the
+  British         JJ        British
+  consul-general  NN        <unknown>
+  in              IN        in
+  Jerusalem       NP        Jerusalem
+  ,               ,         ,
+  Richard         NP        Richard
+  Makepeace       NP        Makepeace
+  ,               ,         ,
+  was             VBD       be
+  attending       VVG       attend
+  the             DT        the
+  event           NN        event
+  .               SENT      .
+  "               ``        "
+  I               PP        I
+  think           VVP       think
+  all             DT        all
+  lovers          NNS       lover
+  of              IN        of
+  literature      NN        literature
+  would           MD        would
+  regard          VV        regard
+  this            DT        this
+  as              IN        as
+  a               DT        a
+  very            RB        very
+  regrettable     JJ        regrettable
+  moment          NN        moment
+  and             CC        and
+  regrettable     JJ        regrettable
+  decision        NN        decision
+  ,               ,         ,
+  "               ''        "
+  he              PP        he
+  added           VVD       add
+  .               SENT      .
+  Mr              NP        Mr
+  Makepeace       NP        Makepeace
+  said            VVD       say
+  the             DT        the
+  festival        NN        festival
+  's              POS       's
+  closing         NN        closing
+  event           NN        event
+  would           MD        would
+  be              VB        be
+  reorganised     VVN       <unknown>
+  to              TO        to
+  take            VV        take
+  place           NN        place
+  at              IN        at
+  the             DT        the
+  British         NP        British
+  Council         NP        Council
+  in              IN        in
+  Jerusalem       NP        Jerusalem
+  .               SENT      .
+  The             DT        the
+  Israeli         JJ        Israeli
+  authorities     NNS       authority
+  often           RB        often
+  take            VVP       take
+  action          NN        action
+  against         IN        against
+  events          NNS       event
+  in              IN        in
+  East            NP        East
+  Jerusalem       NP        Jerusalem
+  they            PP        they
+  see             VVP       see
+  as              RB        as
+  connected       VVN       connect
+  to              TO        to
+  the             DT        the
+  Palestinian     JJ        Palestinian
+  Authority       NP        Authority
+  .               SENT      .
+  Saturday        NP        Saturday
+  's              POS       's
+  opening         NN        opening
+  event           NN        event
+  at              IN        at
+  the             DT        the
+  same            JJ        same
+  theatre         NN        theatre
+  was             VBD       be
+  also            RB        also
+  shut            VVN       shut
+  down            RP        down
+  .               SENT      .
+  A               DT        a
+  police          NN        police
+  notice          NN        notice
+  said            VVD       say
+  the             DT        the
+  closure         NN        closure
+  was             VBD       be
+  on              IN        on
+  the             DT        the
+  orders          NNS       order
+  of              IN        of
+  Israel          NP        Israel
+  's              POS       's
+  internal        JJ        internal
+  security        NN        security
+  minister        NN        minister
+  on              IN        on
+  the             DT        the
+  grounds         NNS       ground
+  of              IN        of
+  a               DT        a
+  breach          NN        breach
+  of              IN        of
+  interim         JJ        interim
+  peace           NN        peace
+  accords         NNS       accord
+  from            IN        from
+  the             DT        the
+  1990s           NNS       1990s
+  .               SENT      .
+  These           DT        these
+  laid            VVD       lay
+  the             DT        the
+  framework       NN        framework
+  for             IN        for
+  talks           NNS       talk
+  on              IN        on
+  establishing    VVG       establish
+  a               DT        a
+  Palestinian     JJ        Palestinian
+  state NN        state
+  alongside       IN        alongside
+  Israel          NP        Israel
+  ,               ,         ,
+  but             CC        but
+  left            VVD       leave
+  the             DT        the
+  status          NN        status
+  of              IN        of
+  Jerusalem       NP        Jerusalem
+  to              TO        to
+  be              VB        be
+  determined      VVN       determine
+  by              IN        by
+  further         JJR       further
+  negotiation     NN        negotiation
+  .               SENT      .
+  Israel          NP        Israel
+  has             VHZ       have
+  annexed         VVN       annex
+  East            NP        East
+  Jerusalem       NP        Jerusalem
+  and             CC        and
+  declares        VVZ       declare
+  it              PP        it
+  part            NN        part
+  of              IN        of
+  its             PP$       its
+  eternal         JJ        eternal
+  capital         NN        capital
+  .               SENT      .
+  Palestinians    NPS       Palestinians
+  hope            VVP       hope
+  to              TO        to
+  establish       VV        establish
+  their           PP$       their
+  capital         NN        capital
+  in              IN        in
+  the             DT        the
+  area            NN        area
+  .               SENT      .
+
+
+Topia POS Tag
+-------------
+
+Topia POS Tag tries to produce results somewhere between a simple tagger like
+TreeTagger and Yahoo Keyword Extraction. We try to achieve that by first using
+a POS Tagger followed by applying a simple term constructor and relevance
+calculation,
+
+  >>> from topia.postag import extract
+  >>> extractor = extract.KeywordExtractor()
+
+Let's look at the result of the tagger first:
+
+  >>> extractor.tagger(text)
+  [['police', 'NN', 'police'],
+   ['shut', 'VBN', 'shut'],
+   ['Palestinian', 'JJ', 'Palestinian'],
+   ['theatre', 'NN', 'theatre'],
+   ['in', 'IN', 'in'],
+   ['Jerusalem', 'NNP', 'Jerusalem'],
+   ['.', '.', '.'],
+   ['Israeli', 'JJ', 'Israeli'],
+   ['police', 'NN', 'police'],
+   ['have', 'VBP', 'have'],
+   ['shut', 'VBN', 'shut'],
+   ['down', 'RB', 'down'],
+   ['a', 'DT', 'a'],
+   ['Palestinian', 'JJ', 'Palestinian'],
+   ['theatre', 'NN', 'theatre'],
+   ['in', 'IN', 'in'],
+   ['East', 'NNP', 'East'],
+   ['Jerusalem', 'NNP', 'Jerusalem'],
+   ['.', '.', '.'],
+   ['The', 'DT', 'The'],
+   ['action', 'NN', 'action'],
+   [',', ',', ','],
+   ['on', 'IN', 'on'],
+   ['Thursday', 'NNP', 'Thursday'],
+   [',', ',', ','],
+   ['prevented', 'VBN', 'prevented'],
+   ['the', 'DT', 'the'],
+   ['closing', 'VBG', 'closing'],
+   ['event', 'NN', 'event'],
+   ['of', 'IN', 'of'],
+   ['an', 'DT', 'an'],
+   ['international', 'JJ', 'international'],
+   ['literature', 'NN', 'literature'],
+   ['festival', 'NN', 'festival'],
+   ['from', 'IN', 'from'],
+   ['taking', 'VBG', 'taking'],
+   ['place', 'NN', 'place'],
+   ['.', '.', '.'],
+   ['police', 'NN', 'police'],
+   ['said', 'VBD', 'said'],
+   ['they', 'PRP', 'they'],
+   ['were', 'VBD', 'were'],
+   ['acting', 'VBG', 'acting'],
+   ['on', 'IN', 'on'],
+   ['a', 'DT', 'a'],
+   ['court', 'NN', 'court'],
+   ['order', 'NN', 'order'],
+   [',', ',', ','],
+   ['issued', 'VBN', 'issued'],
+   ['after', 'IN', 'after'],
+   ['intelligence', 'NN', 'intelligence'],
+   ['indicated', 'VBD', 'indicated'],
+   ['that', 'IN', 'that'],
+   ['the', 'DT', 'the'],
+   ['Palestinian', 'JJ', 'Palestinian'],
+   ['Authority', 'NNP', 'Authority'],
+   ['was', 'VBD', 'was'],
+   ['involved', 'VBN', 'involved'],
+   ['in', 'IN', 'in'],
+   ['the', 'DT', 'the'],
+   ['event', 'NN', 'event'],
+   ['.', '.', '.'],
+   ['Israel', 'NNP', 'Israel'],
+   ['has', 'VBZ', 'has'],
+   ['occupied', 'VBN', 'occupied'],
+   ['East', 'NNP', 'East'],
+   ['Jerusalem', 'NNP', 'Jerusalem'],
+   ['since', 'IN', 'since'],
+   ['1967', 'NN', '1967'],
+   ['and', 'CC', 'and'],
+   ['has', 'VBZ', 'has'],
+   ['annexed', 'VBD', 'annexed'],
+   ['the', 'DT', 'the'],
+   ['area', 'NN', 'area'],
+   ['.', '.', '.'],
+   ['This', 'DT', 'This'],
+   ['is', 'VBZ', 'is'],
+   ['not', 'RB', 'not'],
+   ['recognised', 'VBD', 'recognised'],
+   ['by', 'IN', 'by'],
+   ['the', 'DT', 'the'],
+   ['international', 'JJ', 'international'],
+   ['community', 'NN', 'community'],
+   ['.', '.', '.'],
+   ['The', 'DT', 'The'],
+   ['British', 'JJ', 'British'],
+   ['consul-general', 'NN', 'consul-general'],
+   ['in', 'IN', 'in'],
+   ['Jerusalem', 'NNP', 'Jerusalem'],
+   [',', ',', ','],
+   ['Richard', 'NNP', 'Richard'],
+   ['Makepeace', 'NNP', 'Makepeace'],
+   [',', ',', ','],
+   ['was', 'VBD', 'was'],
+   ['attending', 'VBG', 'attending'],
+   ['the', 'DT', 'the'],
+   ['event', 'NN', 'event'],
+   ['.', '.', '.'],
+   ['"', '"', '"'],
+   ['I', 'PRP', 'I'],
+   ['think', 'VBP', 'think'],
+   ['all', 'DT', 'all'],
+   ['lovers', 'NNS', 'lover'],
+   ['of', 'IN', 'of'],
+   ['literature', 'NN', 'literature'],
+   ['would', 'MD', 'would'],
+   ['regard', 'NN', 'regard'],
+   ['this', 'DT', 'this'],
+   ['as', 'IN', 'as'],
+   ['a', 'DT', 'a'],
+   ['very', 'RB', 'very'],
+   ['regrettable', 'JJ', 'regrettable'],
+   ['moment', 'NN', 'moment'],
+   ['and', 'CC', 'and'],
+   ['regrettable', 'JJ', 'regrettable'],
+   ['decision', 'NN', 'decision'],
+   [',"', ',', ',"'],
+   ['he', 'PRP', 'he'],
+   ['added', 'VBD', 'added'],
+   ['.', '.', '.'],
+   ['Mr', 'NNP', 'Mr'],
+   ['Makepeace', 'NNP', 'Makepeace'],
+   ['said', 'VBD', 'said'],
+   ['the', 'DT', 'the'],
+   ['festival', 'NN', 'festival'],
+   ["'s", 'POS', "'s"],
+   ['closing', 'VBG', 'closing'],
+   ['event', 'NN', 'event'],
+   ['would', 'MD', 'would'],
+   ['be', 'VB', 'be'],
+   ['reorganised', 'NN', 'reorganised'],
+   ['to', 'TO', 'to'],
+   ['take', 'VB', 'take'],
+   ['place', 'NN', 'place'],
+   ['at', 'IN', 'at'],
+   ['the', 'DT', 'the'],
+   ['British', 'JJ', 'British'],
+   ['Council', 'NNP', 'Council'],
+   ['in', 'IN', 'in'],
+   ['Jerusalem', 'NNP', 'Jerusalem'],
+   ['.', '.', '.'],
+   ['The', 'DT', 'The'],
+   ['Israeli', 'JJ', 'Israeli'],
+   ['authorities', 'NNS', 'authority'],
+   ['often', 'RB', 'often'],
+   ['take', 'VB', 'take'],
+   ['action', 'NN', 'action'],
+   ['against', 'IN', 'against'],
+   ['events', 'NNS', 'event'],
+   ['in', 'IN', 'in'],
+   ['East', 'NNP', 'East'],
+   ['Jerusalem', 'NNP', 'Jerusalem'],
+   ['they', 'PRP', 'they'],
+   ['see', 'VB', 'see'],
+   ['as', 'IN', 'as'],
+   ['connected', 'VBN', 'connected'],
+   ['to', 'TO', 'to'],
+   ['the', 'DT', 'the'],
+   ['Palestinian', 'JJ', 'Palestinian'],
+   ['Authority', 'NNP', 'Authority'],
+   ['.', '.', '.'],
+   ['Saturday', 'NNP', 'Saturday'],
+   ["'s", 'POS', "'s"],
+   ['opening', 'NN', 'opening'],
+   ['event', 'NN', 'event'],
+   ['at', 'IN', 'at'],
+   ['the', 'DT', 'the'],
+   ['same', 'JJ', 'same'],
+   ['theatre', 'NN', 'theatre'],
+   ['was', 'VBD', 'was'],
+   ['also', 'RB', 'also'],
+   ['shut', 'VBN', 'shut'],
+   ['down', 'RB', 'down'],
+   ['.', '.', '.'],
+   ['A', 'DT', 'A'],
+   ['police', 'NN', 'police'],
+   ['notice', 'NN', 'notice'],
+   ['said', 'VBD', 'said'],
+   ['the', 'DT', 'the'],
+   ['closure', 'NN', 'closure'],
+   ['was', 'VBD', 'was'],
+   ['on', 'IN', 'on'],
+   ['the', 'DT', 'the'],
+   ['orders', 'NNS', 'order'],
+   ['of', 'IN', 'of'],
+   ['Israel', 'NNP', 'Israel'],
+   ["'s", 'POS', "'s"],
+   ['internal', 'JJ', 'internal'],
+   ['security', 'NN', 'security'],
+   ['minister', 'NN', 'minister'],
+   ['on', 'IN', 'on'],
+   ['the', 'DT', 'the'],
+   ['grounds', 'NNS', 'ground'],
+   ['of', 'IN', 'of'],
+   ['a', 'DT', 'a'],
+   ['breach', 'NN', 'breach'],
+   ['of', 'IN', 'of'],
+   ['interim', 'JJ', 'interim'],
+   ['peace', 'NN', 'peace'],
+   ['accords', 'NNS', 'accord'],
+   ['from', 'IN', 'from'],
+   ['the', 'DT', 'the'],
+   ['1990', 'NN', '1990'],
+   ['s', 'PRP', 's'],
+   ['.', '.', '.'],
+   ['These', 'DT', 'These'],
+   ['laid', 'VBN', 'laid'],
+   ['the', 'DT', 'the'],
+   ['framework', 'NN', 'framework'],
+   ['for', 'IN', 'for'],
+   ['talks', 'NNS', 'talk'],
+   ['on', 'IN', 'on'],
+   ['establishing', 'VBG', 'establishing'],
+   ['a', 'DT', 'a'],
+   ['Palestinian', 'JJ', 'Palestinian'],
+   ['state', 'NN', 'state'],
+   ['alongside', 'IN', 'alongside'],
+   ['Israel', 'NNP', 'Israel'],
+   [',', ',', ','],
+   ['but', 'CC', 'but'],
+   ['left', 'VBN', 'left'],
+   ['the', 'DT', 'the'],
+   ['status', 'NN', 'status'],
+   ['of', 'IN', 'of'],
+   ['Jerusalem', 'NNP', 'Jerusalem'],
+   ['to', 'TO', 'to'],
+   ['be', 'VB', 'be'],
+   ['determined', 'VBN', 'determined'],
+   ['by', 'IN', 'by'],
+   ['further', 'JJ', 'further'],
+   ['negotiation', 'NN', 'negotiation'],
+   ['.', '.', '.'],
+   ['Israel', 'NNP', 'Israel'],
+   ['has', 'VBZ', 'has'],
+   ['annexed', 'VBD', 'annexed'],
+   ['East', 'NNP', 'East'],
+   ['Jerusalem', 'NNP', 'Jerusalem'],
+   ['and', 'CC', 'and'],
+   ['declares', 'VBZ', 'declares'],
+   ['it', 'PRP', 'it'],
+   ['part', 'NN', 'part'],
+   ['of', 'IN', 'of'],
+   ['its', 'PRP$', 'its'],
+   ['eternal', 'JJ', 'eternal'],
+   ['capital', 'NN', 'capital'],
+   ['.', '.', '.'],
+   ['Palestinians', 'NNPS', 'Palestinian'],
+   ['hope', 'NN', 'hope'],
+   ['to', 'TO', 'to'],
+   ['establish', 'VB', 'establish'],
+   ['their', 'PRP$', 'their'],
+   ['capital', 'NN', 'capital'],
+   ['in', 'IN', 'in'],
+   ['the', 'DT', 'the'],
+   ['area', 'NN', 'area'],
+   ['.', '.', '.']]
+
+Let's now apply the extractor.
+
+  >>> sorted(extractor(text))
+  [('British Council', 1, 2),
+   ('British consul-general', 1, 2),
+   ('East', 4, 1),
+   ('East Jerusalem', 4, 2),
+   ('Israel', 4, 1),
+   ('Israeli authorities', 1, 2),
+   ('Israeli police', 1, 2),
+   ('Jerusalem', 8, 1),
+   ('Mr Makepeace', 1, 2),
+   ('Palestinian', 6, 1),
+   ('Palestinian Authority', 2, 2),
+   ('Palestinian state', 1, 2),
+   ('Palestinian theatre', 2, 2),
+   ('Palestinians hope', 1, 2),
+   ('Richard Makepeace', 1, 2),
+   ('court order', 1, 2),
+   ('event', 6, 1),
+   ('literature festival', 1, 2),
+   ('opening event', 1, 2),
+   ('peace accords', 1, 2),
+   ('police', 4, 1),
+   ('police notice', 1, 2),
+   ('security minister', 1, 2),
+   ('theatre', 3, 1)]


Property changes on: topia.postag/trunk/src/topia/postag/example.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: topia.postag/trunk/src/topia/postag/extract.py
===================================================================
--- topia.postag/trunk/src/topia/postag/extract.py	                        (rev 0)
+++ topia.postag/trunk/src/topia/postag/extract.py	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,83 @@
+##############################################################################
+#
+# Copyright (c) 2009 Zope Foundation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""POS Tagger
+
+$Id$
+"""
+import zope.interface
+
+from topia.postag import interfaces, tag
+
+SEARCH = 0
+NOUN = 1
+
+def defaultFilter(word, occur, strength):
+    return ((strength == 1 and occur >= 3) or
+            (strength >= 2))
+
+def _add(term, norm, keyword, keywords):
+    keyword.append((term, norm))
+    keywords.setdefault(norm, 0)
+    keywords[norm] += 1
+
+class KeywordExtractor(object):
+    zope.interface.implements(interfaces.IKeywordExtractor)
+
+    def __init__(self, tagger=None, filter=defaultFilter):
+        if tagger is None:
+            tagger = tag.Tagger()
+            tagger.initialize()
+        self.tagger = tagger
+        self.filter = filter
+
+    def extract(self, terms):
+        """See interfaces.IKeywordExtractor"""
+        keywords = {}
+        # Phase 1: A little state machine is used to build simple and
+        # composite keywords.
+        keyword = []
+        state = SEARCH
+        while terms:
+            term, tag, norm = terms.pop(0)
+            if state == SEARCH and tag.startswith('N'):
+                state = NOUN
+                _add(term, norm, keyword, keywords)
+            elif state == SEARCH and tag == 'JJ' and term[0].isupper():
+                state = NOUN
+                _add(term, norm, keyword, keywords)
+            elif state == NOUN and tag.startswith('N'):
+                _add(term, norm, keyword, keywords)
+            elif state == NOUN and tag == 'JJ' and term[0].isupper():
+                _add(term, norm, keyword, keywords)
+            elif state == NOUN and not tag.startswith('N'):
+                state = SEARCH
+                if len(keyword) > 1:
+                    word = ' '.join([word for word, norm in keyword])
+                    keywords.setdefault(word, 0)
+                    keywords[word] += 1
+                keyword = []
+        # Phase 2: Only select the keywords that fulfill the filter criteria.
+        # Also create the keyword strength.
+        return [
+            (word, occur, len(word.split()))
+            for word, occur in keywords.items()
+            if self.filter(word, occur, len(word.split()))]
+
+    def __call__(self, text):
+        """See interfaces.IKeywordExtractor"""
+        terms = self.tagger(text)
+        return self.extract(terms)
+
+    def __repr__(self):
+        return '<%s using %r>' %(self.__class__.__name__, self.tagger)


Property changes on: topia.postag/trunk/src/topia/postag/extract.py
___________________________________________________________________
Added: svn:keywords
   + Id

Added: topia.postag/trunk/src/topia/postag/interfaces.py
===================================================================
--- topia.postag/trunk/src/topia/postag/interfaces.py	                        (rev 0)
+++ topia.postag/trunk/src/topia/postag/interfaces.py	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,52 @@
+##############################################################################
+#
+# Copyright (c) 2009 Zope Foundation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Interfaces
+
+$Id$
+"""
+__docformat__ = "reStructuredText"
+import zope.interface
+
+class ITagger(zope.interface.Interface):
+    """A utility to provide POS tag extractions from a given text."""
+
+    def initialize():
+        """Initializes the tagger.
+
+        This method only needs to be called once. It should do any expensive
+        initial computation, such as creating indices, loading the lexicon,
+        etc.
+        """
+
+    def tokenize(text):
+        """Tokenize the given text into single words."""
+
+    def tag(terms):
+        """Returns the tagged list of terms.
+
+        Additionally, all terms are normalized.
+
+        The ouput format is a list of: (term, tag, normalized-term)
+        """
+
+    def __call__(text):
+        """Get a tagged list of words."""
+
+
+class IKeywordExtractor(zope.interface.Interface):
+    """Extract important keywords from a given text."""
+
+    def __call__(text):
+        """Returns a list of extracted keywords, the amount of occurences and
+        their search strength."""


Property changes on: topia.postag/trunk/src/topia/postag/interfaces.py
___________________________________________________________________
Added: svn:keywords
   + Id

Added: topia.postag/trunk/src/topia/postag/tag.py
===================================================================
--- topia.postag/trunk/src/topia/postag/tag.py	                        (rev 0)
+++ topia.postag/trunk/src/topia/postag/tag.py	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,131 @@
+##############################################################################
+#
+# Copyright (c) 2009 Zope Foundation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""POS Tagger
+
+$Id$
+"""
+import os
+import re
+import zope.interface
+
+from topia.postag import interfaces
+
+TERM_SPEC = re.compile('([^a-zA-Z]*)([a-zA-Z-\.]*[a-zA-Z])([^a-zA-Z]*[a-zA-Z]*)')
+DATA_DIRECTORY = os.path.join(os.path.dirname(__file__), 'data')
+
+
+def correctDefaultNounTag(idx, tagged_term, tagged_terms, lexicon):
+    """Determine whether a default noun is plural or singular."""
+    term, tag, norm = tagged_term
+    if tag == 'NND':
+        if term.endswith('s'):
+            tagged_term[1] = 'NNS'
+            tagged_term[2] = term[:-1]
+        else:
+            tagged_term[1] = 'NN'
+
+def verifyProperNounAtSentenceStart(idx, tagged_term, tagged_terms, lexicon):
+    """Verify that noun at sentence start is truly proper."""
+    term, tag, norm = tagged_term
+    if (tag in ('NNP', 'NNPS') and
+        (idx == 0 or tagged_terms[idx-1][1] == '.')):
+        lower_term = term.lower()
+        lower_tag = lexicon.get(lower_term)
+        if lower_tag in ('NN', 'NNS'):
+            tagged_term[0] = tagged_term[2] = lower_term
+            tagged_term[1] = lower_tag
+
+def normalizePluralForms(idx, tagged_term, tagged_terms, lexicon):
+    term, tag, norm = tagged_term
+    if tag in ('NNS', 'NNPS') and term == norm:
+        # Plural form ends in "s"
+        singular = term[:-1]
+        if (term.endswith('s') and
+            singular in lexicon):
+            tagged_term[2] = singular
+            return
+        # Plural form ends in "es"
+        singular = term[:-2]
+        if (term.endswith('es') and
+            singular in lexicon):
+            tagged_term[2] = singular
+            return
+        # Plural form ends in "ies" (from "y")
+        singular = term[:-3]+'y'
+        if (term.endswith('ies') and
+            singular in lexicon):
+            tagged_term[2] = singular
+            return
+
+
+class Tagger(object):
+    zope.interface.implements(interfaces.ITagger)
+
+    rules = (
+        correctDefaultNounTag,
+        verifyProperNounAtSentenceStart,
+        normalizePluralForms,
+        )
+
+    def __init__(self, language='english'):
+        self.language = language
+
+    def initialize(self):
+        """See interfaces.ITagger"""
+        filename = os.path.join(DATA_DIRECTORY, '%s-lexicon.txt' %self.language)
+        file = open(filename, 'r')
+        self.tags_by_term = dict([line[:-1].split(' ')[:2] for line in file])
+        file.close()
+
+    def tokenize(self, text):
+        """See interfaces.ITagger"""
+        terms = []
+        for term in re.split('\s', text):
+            # If the term is empty, skip it, since we probably just have
+            # multiple whitespace cahracters.
+            if term == '':
+                continue
+            # Now, a word can be preceded or succeeded by symbols, so let's
+            # split those out
+            match = TERM_SPEC.search(term)
+            if match is None:
+                terms.append(term)
+                continue
+            for subTerm in match.groups():
+                if subTerm != '':
+                    terms.append(subTerm)
+        return terms
+
+    def tag(self, terms):
+        """See interfaces.ITagger"""
+        tagged_terms = []
+        # Phase 1: Assign the tag from the lexicon. If the term is not found,
+        # it is assumed to be a default noun (NND).
+        for term in terms:
+            tagged_terms.append(
+                [term, self.tags_by_term.get(term, 'NND'), term])
+        # Phase 2: Run through some rules to improve the term tagging and
+        # normalized form.
+        for idx, tagged_term in enumerate(tagged_terms):
+            for rule in self.rules:
+                rule(idx, tagged_term, tagged_terms, self.tags_by_term)
+        return tagged_terms
+
+    def __call__(self, text):
+        """See interfaces.ITagger"""
+        terms = self.tokenize(text)
+        return self.tag(terms)
+
+    def __repr__(self):
+        return '<%s for %s>' %(self.__class__.__name__, self.language)


Property changes on: topia.postag/trunk/src/topia/postag/tag.py
___________________________________________________________________
Added: svn:keywords
   + Id

Added: topia.postag/trunk/src/topia/postag/tests.py
===================================================================
--- topia.postag/trunk/src/topia/postag/tests.py	                        (rev 0)
+++ topia.postag/trunk/src/topia/postag/tests.py	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,33 @@
+##############################################################################
+#
+# Copyright (c) 2009 Zope Foundation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Test Setup
+
+$Id$
+"""
+__docformat__ = "reStructuredText"
+import unittest
+from zope.testing import doctest
+from zope.testing.doctestunit import DocFileSuite
+
+def test_suite():
+    return unittest.TestSuite((
+        DocFileSuite(
+            'README.txt',
+            optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS,
+            ),
+        DocFileSuite(
+            'example.txt',
+            optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS,
+            ),
+        ))


Property changes on: topia.postag/trunk/src/topia/postag/tests.py
___________________________________________________________________
Added: svn:keywords
   + Id

Added: topia.postag/trunk/src/topia.postag.egg-info/PKG-INFO
===================================================================
--- topia.postag/trunk/src/topia.postag.egg-info/PKG-INFO	                        (rev 0)
+++ topia.postag/trunk/src/topia.postag.egg-info/PKG-INFO	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,67 @@
+Metadata-Version: 1.0
+Name: topia.postag
+Version: 0.1.0dev
+Summary: A Part-Of-Speech (POS) Content Tagger
+Home-page: http://pypi.python.org/pypi/topia.postag
+Author: Stephan Richter, Russ Ferriday and the Zope Community
+Author-email: zope3-dev at zope.org
+License: ZPL 2.1
+Description: This package determines important terms within a given piece of content. It
+        uses linguistic tools such as Parts-Of-Speech (POS) and some simple
+        statistical analysis to determine the terms and their strength.
+        
+        
+        Detailed Documentation
+        **********************
+        
+        ==================
+        Keyword Extraction
+        ==================
+        
+        This package implements text keyword extraction by making use of a simple
+        Parts-Of-Speech (POS) tagging algorithm.
+        
+        http://bioie.ldc.upenn.edu/wiki/index.php/Part-of-Speech
+        
+        The POS Tagger
+        --------------
+        
+        POS Taggers use a lexicon to mark words with a tag. A list of available tags
+        can be found at:
+        
+        http://bioie.ldc.upenn.edu/wiki/index.php/POS_tags
+        
+        Since words can have multiple tags, the determination of the correct tag is
+        not always simple. This implementation, however, does not try to infer
+        linguistic use and simply chooses the first tag in the lexicon.
+        
+        >>> from topia.postag import tag
+        >>> tagger = tag.Tagger()
+        >>> tagger
+        
+        To get the tagger ready for its work, we need to initialize it. In this
+        implementation the lexicon is loaded.
+        
+        >>> tagger.initialize()
+        
+        
+        
+        
+        =======
+        CHANGES
+        =======
+        
+        0.1.0 (2009-05-30)
+        ------------------
+        
+        - Initial Release
+        
+Keywords: pos taggerlinguistics
+Platform: UNKNOWN
+Classifier: Development Status :: 4 - Beta
+Classifier: Environment :: Web Environment
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: Zope Public License
+Classifier: Programming Language :: Python
+Classifier: Natural Language :: English
+Classifier: Operating System :: OS Independent

Added: topia.postag/trunk/src/topia.postag.egg-info/SOURCES.txt
===================================================================
--- topia.postag/trunk/src/topia.postag.egg-info/SOURCES.txt	                        (rev 0)
+++ topia.postag/trunk/src/topia.postag.egg-info/SOURCES.txt	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,10 @@
+README.txt
+setup.py
+src/topia/__init__.py
+src/topia.postag.egg-info/PKG-INFO
+src/topia.postag.egg-info/SOURCES.txt
+src/topia.postag.egg-info/dependency_links.txt
+src/topia.postag.egg-info/namespace_packages.txt
+src/topia.postag.egg-info/not-zip-safe
+src/topia.postag.egg-info/requires.txt
+src/topia.postag.egg-info/top_level.txt
\ No newline at end of file


Property changes on: topia.postag/trunk/src/topia.postag.egg-info/SOURCES.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: topia.postag/trunk/src/topia.postag.egg-info/dependency_links.txt
===================================================================
--- topia.postag/trunk/src/topia.postag.egg-info/dependency_links.txt	                        (rev 0)
+++ topia.postag/trunk/src/topia.postag.egg-info/dependency_links.txt	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1 @@
+


Property changes on: topia.postag/trunk/src/topia.postag.egg-info/dependency_links.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: topia.postag/trunk/src/topia.postag.egg-info/namespace_packages.txt
===================================================================
--- topia.postag/trunk/src/topia.postag.egg-info/namespace_packages.txt	                        (rev 0)
+++ topia.postag/trunk/src/topia.postag.egg-info/namespace_packages.txt	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1 @@
+topia


Property changes on: topia.postag/trunk/src/topia.postag.egg-info/namespace_packages.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: topia.postag/trunk/src/topia.postag.egg-info/not-zip-safe
===================================================================
--- topia.postag/trunk/src/topia.postag.egg-info/not-zip-safe	                        (rev 0)
+++ topia.postag/trunk/src/topia.postag.egg-info/not-zip-safe	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1 @@
+

Added: topia.postag/trunk/src/topia.postag.egg-info/requires.txt
===================================================================
--- topia.postag/trunk/src/topia.postag.egg-info/requires.txt	                        (rev 0)
+++ topia.postag/trunk/src/topia.postag.egg-info/requires.txt	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1,5 @@
+setuptools
+zope.interface
+
+[test]
+zope.testing
\ No newline at end of file


Property changes on: topia.postag/trunk/src/topia.postag.egg-info/requires.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: topia.postag/trunk/src/topia.postag.egg-info/top_level.txt
===================================================================
--- topia.postag/trunk/src/topia.postag.egg-info/top_level.txt	                        (rev 0)
+++ topia.postag/trunk/src/topia.postag.egg-info/top_level.txt	2009-05-30 06:56:05 UTC (rev 100547)
@@ -0,0 +1 @@
+topia


Property changes on: topia.postag/trunk/src/topia.postag.egg-info/top_level.txt
___________________________________________________________________
Added: svn:eol-style
   + native



More information about the Checkins mailing list