Naive Bayes Classification Types¶

Type Use When Features Are... Example
Gaussian Numbers (real values) Age, weight, scores
Multinomial Counts Word frequencies
Bernoulli Yes/No flags Word exists or not
Categorical Named groups Car type, region, gender

TF-IDF¶

TF-IDF stands for:

Term Frequency – Inverse Document Frequency

It’s a statistical method to measure:

How important a word is in a document, relative to a collection of documents.

  1. Term Frequency (TF)

How often a word appears in the document? $$ TF(t,d)=\frac{Number \;of \; times \;t \; a \; word \; appears \; in \; d}{Total \; number \; of \; words \; in \; d}$$

  1. Inverse Document Frequency (IDF)

How rare is a word across all documents? $$ IDF(t) =\log \frac{N}{1+df(t)} $$ where,

  • N = total number of documents
  • df(t)= number of documents containing word t

combining $$ TF-IDF(t,d)=TF(t,d)×IDF(t) $$

Where TF-IDF is Used

  • Text classification (e.g., spam detection)

  • Clustering (grouping documents)

  • Search engines (relevance ranking)

  • Keyword extraction

Convert to Pandas DataFrame¶

In [ ]:
from sklearn.datasets import fetch_20newsgroups
import pandas as pd
import numpy as np

newsgroups = fetch_20newsgroups(subset='all')

df = pd.DataFrame({
   'text':newsgroups.data,
   'label_id':newsgroups.target,
   'label_name':[newsgroups.target_names[i] for i in newsgroups.target]
})

print(df.head(100))

print(newsgroups.data[0])
print(newsgroups.target[0])
print(newsgroups.target_names[0])
                                                 text  label_id  \
0   From: Mamatha Devineni Ratnam <mr47+@andrew.cm...        10   
1   From: mblawson@midway.ecn.uoknor.edu (Matthew ...         3   
2   From: hilmi-er@dsv.su.se (Hilmi Eren)\nSubject...        17   
3   From: guyd@austin.ibm.com (Guy Dawson)\nSubjec...         3   
4   From: Alexander Samuel McDiarmid <am2o+@andrew...         4   
..                                                ...       ...   
95  From: jcmorris@mbunix.mitre.org (Morris)\nSubj...         3   
96  From: shiva@leland.Stanford.EDU (Matt Jacobson...         2   
97  From: tmenner@sei.cmu.edu (Thomas Menner)\nSub...        10   
98  From: scatt@apg.andersen.com (Scott Cattanach)...        16   
99  From: sxs@extol.Convergent.Com (S. Sridhar)\nS...         5   

                  label_name  
0           rec.sport.hockey  
1   comp.sys.ibm.pc.hardware  
2      talk.politics.mideast  
3   comp.sys.ibm.pc.hardware  
4      comp.sys.mac.hardware  
..                       ...  
95  comp.sys.ibm.pc.hardware  
96   comp.os.ms-windows.misc  
97          rec.sport.hockey  
98        talk.politics.guns  
99            comp.windows.x  

[100 rows x 3 columns]
From: Mamatha Devineni Ratnam <mr47+@andrew.cmu.edu>
Subject: Pens fans reactions
Organization: Post Office, Carnegie Mellon, Pittsburgh, PA
Lines: 12
NNTP-Posting-Host: po4.andrew.cmu.edu



I am sure some bashers of Pens fans are pretty confused about the lack
of any kind of posts about the recent Pens massacre of the Devils. Actually,
I am  bit puzzled too and a bit relieved. However, I am going to put an end
to non-PIttsburghers' relief with a bit of praise for the Pens. Man, they
are killing those Devils worse than I thought. Jagr just showed you why
he is much better than his regular season stats. He is also a lot
fo fun to watch in the playoffs. Bowman should let JAgr have a lot of
fun in the next couple of games since the Pens are going to beat the pulp out of Jersey anyway. I was very disappointed not to see the Islanders lose the final
regular season game.          PENS RULE!!!


10
alt.atheism

View First 5 Posts with Labels¶

In [ ]:
for i in range(5):
    print(f"\n--- Document {i} ---")
    print(f"Label: {newsgroups.target_names[newsgroups.target[i]]}")
    print(newsgroups.data[i][:500])  # First 500 characters only
--- Document 0 ---
Label: rec.sport.hockey
From: Mamatha Devineni Ratnam <mr47+@andrew.cmu.edu>
Subject: Pens fans reactions
Organization: Post Office, Carnegie Mellon, Pittsburgh, PA
Lines: 12
NNTP-Posting-Host: po4.andrew.cmu.edu



I am sure some bashers of Pens fans are pretty confused about the lack
of any kind of posts about the recent Pens massacre of the Devils. Actually,
I am  bit puzzled too and a bit relieved. However, I am going to put an end
to non-PIttsburghers' relief with a bit of praise for the Pens. Man, they
are killin

--- Document 1 ---
Label: comp.sys.ibm.pc.hardware
From: mblawson@midway.ecn.uoknor.edu (Matthew B Lawson)
Subject: Which high-performance VLB video card?
Summary: Seek recommendations for VLB video card
Nntp-Posting-Host: midway.ecn.uoknor.edu
Organization: Engineering Computer Network, University of Oklahoma, Norman, OK, USA
Keywords: orchid, stealth, vlb
Lines: 21

  My brother is in the market for a high-performance video card that supports
VESA local bus with 1-2MB RAM.  Does anyone have suggestions/ideas on:

  - Diamond Stealth Pro Local 

--- Document 2 ---
Label: talk.politics.mideast
From: hilmi-er@dsv.su.se (Hilmi Eren)
Subject: Re: ARMENIA SAYS IT COULD SHOOT DOWN TURKISH PLANES (Henrik)
Lines: 95
Nntp-Posting-Host: viktoria.dsv.su.se
Reply-To: hilmi-er@dsv.su.se (Hilmi Eren)
Organization: Dept. of Computer and Systems Sciences, Stockholm University




|>The student of "regional killings" alias Davidian (not the Davidian religios sect) writes:


|>Greater Armenia would stretch from Karabakh, to the Black Sea, to the
|>Mediterranean, so if you use the term "Greater Armenia

--- Document 3 ---
Label: comp.sys.ibm.pc.hardware
From: guyd@austin.ibm.com (Guy Dawson)
Subject: Re: IDE vs SCSI, DMA and detach
Originator: guyd@pal500.austin.ibm.com
Organization: IBM Austin
Lines: 60


In article <1993Apr19.034517.12820@julian.uwo.ca>, wlsmith@valve.heart.rri.uwo.ca (Wayne Smith) writes:
> In article <RICHK.93Apr15075248@gozer.grebyn.com> richk@grebyn.com (Richard Krehbiel) writes:
> >>     Can anyone explain in fairly simple terms why, if I get OS/2, I might 
> >>   need an SCSI controler rather than an IDE.  Will performa

--- Document 4 ---
Label: comp.sys.mac.hardware
From: Alexander Samuel McDiarmid <am2o+@andrew.cmu.edu>
Subject: driver ??
Organization: Sophomore, Mechanical Engineering, Carnegie Mellon, Pittsburgh, PA
Lines: 15
NNTP-Posting-Host: po4.andrew.cmu.edu

 
1)    I have an old Jasmine drive which I cannot use with my new system.
 My understanding is that I have to upsate the driver with a more modern
one in order to gain compatability with system 7.0.1.  does anyone know
of an inexpensive program to do this?  ( I have seen formatters for <$20
bu
In [ ]:
from sklearn.feature_extraction.text import CountVectorizer,TfidfTransformer
from sklearn.naive_bayes import MultinomialNB

Narrowing Down the Dataset¶

Subset Name Meaning
'train' 60% of the data → for model training
'test' 40% of the data → for evaluation
'all' Entire dataset (train + test)

Always set a random_state if you're using shuffle, especially in research or training setups.

In [ ]:
categories = ['sci.space', 'comp.graphics', 'rec.sport.baseball']
training_data = fetch_20newsgroups(subset='train', categories=categories,shuffle=True, random_state=50)
In [ ]:
#Print only the first 10 lines of the first document in the training set, to avoid printing the entire long text.

print("\n".join(training_data.data[1].split("\n")[:30]))
print("Target is:",training_data.target_names[training_data.target[1]])
From: mscrap@halcyon.com (Marta Lyall)
Subject: Re: Video in/out
Organization: Northwest Nexus Inc. (206) 455-3505
Lines: 29

Organization: "A World of Information at your Fingertips"
Keywords: 

In article <628@toontown.columbiasc.ncr.com> craig@toontown.ColumbiaSC.NCR.COM (Craig S. Williamson) writes:
>
>I'm getting ready to buy a multimedia workstation and would like a little
>advice.  I need a graphics card that will do video in and out under windows.
>I was originally thinking of a Targa+ but that doesn't work under Windows.
>What cards should I be looking into?
>
>Thanks,
>Craig
>
>-- 
>                                             "To forgive is divine, to be
>-Craig Williamson                              an airhead is human."
> Craig.Williamson@ColumbiaSC.NCR.COM                -Balki Bartokomas
> craig@toontown.ColumbiaSC.NCR.COM (home)                  Perfect Strangers


Craig,

You should still consider the Targa+. I run windows 3.1 on it all the
time at work and it works fine. I think all you need is the right
driver. 
Target is: comp.graphics

Counting the word occurances¶

What is a Document-Term Matrix?¶

A Document-Term Matrix (DTM) is a table (or 2D array) that shows:

How often each word (term) appears in each document.

Term ↓ / Doc → Doc 1 Doc 2 Doc 3
space 1 0 2
NASA 0 1 0
goal 0 0 3
graphics 1 1 0
  • Rows = words (terms)

  • Columns = documents

  • Values = word counts or TF-IDF scores

This matrix becomes your input to clustering algorithms like KMeans, LDA, etc.

Types of DTM¶

Type Built With Values Contain
Count Matrix CountVectorizer() Raw word counts
TF-IDF Matrix TfidfVectorizer() Weighted importance of each word
In [ ]:
count_vector = CountVectorizer()
x_train_counts = count_vector.fit_transform(training_data.data)
print(count_vector.vocabulary_, x_train_counts)
{'from': 12388, 'leech': 16333, 'cs': 8874, 'unc': 26907, 'edu': 10628, 'jon': 15458, 'subject': 25105, 'space': 24364, 'faq': 11693, '14': 625, '15': 693, 'how': 14058, 'to': 26205, 'become': 5725, 'an': 4604, 'astronaut': 5186, 'keywords': 15763, 'frequently': 12363, 'asked': 5102, 'questions': 21507, 'article': 5057, 'astronaut_733694515': 5188, 'expires': 11457, 'may': 17359, '1993': 1075, '20': 1284, '01': 60, '55': 2502, 'gmt': 12935, 'distribution': 10023, 'world': 28408, 'organization': 19467, 'university': 27054, 'of': 19206, 'north': 18911, 'carolina': 7066, 'chapel': 7383, 'hill': 13814, 'lines': 16581, '313': 1876, 'supersedes': 25301, 'astronaut_730956661': 5187, 'nntp': 18839, 'posting': 20790, 'host': 14034, 'mahler': 17045, 'archive': 4948, 'name': 18449, 'last': 16197, 'modified': 18011, 'date': 9196, '93': 3407, '04': 154, '39': 2090, '02': 97, 'first': 11964, 'the': 25929, 'short': 23773, 'form': 12206, 'authored': 5336, 'by': 6688, 'henry': 13718, 'spencer': 24491, 'then': 25943, 'official': 19231, 'nasa': 18474, 'announcement': 4705, 'do': 10114, 'we': 27988, 'will': 28202, 'assume': 5156, 'you': 28713, 'mean': 17469, 'since': 23936, 'it': 15181, 'probably': 21069, 'impossible': 14498, 'for': 12170, 'non': 18869, 'russian': 22934, 'get': 12789, 'into': 14996, 'cosmonaut': 8637, 'corps': 8596, 'paying': 19994, 'passengers': 19939, 'are': 4962, 'not': 18935, 'professional': 21111, 'cosmonauts': 8639, 'and': 4632, 'other': 19552, 'nations': 18493, 'have': 13566, 'so': 24196, 'few': 11846, 'astronauts': 5191, 'fly': 12097, 'even': 11283, 'fewer': 11847, 'that': 25927, 're': 21775, 'better': 5870, 'off': 19208, 'hoping': 14010, 'win': 28229, 'lottery': 16788, 'becoming': 5727, 'shuttle': 23830, 'pilot': 20397, 'requires': 22295, 'lots': 16787, 'fast': 11721, 'jet': 15348, 'experience': 11442, 'which': 28126, 'means': 17473, 'military': 17779, 'flying': 12102, 'career': 7042, 'forget': 12196, 'unless': 27064, 'want': 27900, 'anyway': 4776, 'mission': 17904, 'specialist': 24440, 'if': 14336, 'aren': 4965, 'us': 27200, 'citizen': 7639, 'one': 19317, 'is': 15128, 'must': 18360, 'after': 4229, 'crucial': 8843, 'thing': 25989, 'remember': 22153, 'demand': 9476, 'such': 25178, 'jobs': 15419, 'vastly': 27423, 'exceeds': 11347, 'supply': 25316, 'problem': 21074, 'finding': 11931, 'qualified': 21454, 'people': 20113, 'but': 6669, 'thinning': 26000, 'lineup': 16585, 'down': 10240, 'manageable': 17117, 'length': 16389, 'enough': 10976, 'be': 5694, 'avoid': 5395, 'being': 5767, 'dis': 9866, 'any': 4768, 'reason': 21836, 'many': 17174, 'them': 25939, 'in': 14521, 'principle': 21026, 'quite': 21528, 'irrelevant': 15114, 'job': 15417, 'ph': 20252, 'specialize': 24443, 'something': 24284, 'involves': 15052, 'getting': 12795, 'your': 28720, 'hands': 13459, 'dirty': 9865, 'with': 28300, 'equipment': 11100, 'just': 15586, 'paper': 19837, 'pencil': 20086, 'computer': 8204, 'programming': 21139, 'entirely': 11008, 'done': 10186, 'ground': 13210, 'fore': 12181, 'seeable': 23434, 'future': 12495, 'degree': 9418, 'field': 11874, 'plus': 20585, 'work': 28390, 'another': 4729, 'seems': 23444, 'frequent': 12362, 'winner': 28264, 'good': 12982, 'physical': 20343, 'condition': 8253, 'eyesight': 11558, 'radial': 21567, 'keratomy': 15732, 'or': 19430, 'similar': 23905, 'hack': 13380, 'improve': 14510, 'vision': 27666, 'nobody': 18848, 'knows': 15917, 'what': 28101, 'sudden': 25186, 'pressure': 20973, 'changes': 7373, 'would': 28430, 'rked': 22617, 'eyes': 11557, 'long': 16729, 'term': 25831, 'effects': 10661, 'poorly': 20705, 'understood': 26968, 'matter': 17328, 'significant': 23876, 'medical': 17504, 'unknowns': 27062, 'can': 6951, 'pass': 19932, 'should': 23790, 'okay': 19259, 'chances': 7366, 'poor': 20703, 'practise': 20859, 'public': 21309, 'speaking': 24433, 'conservative': 8340, 'conformist': 8289, 'appearance': 4827, 'actions': 4009, 've': 27449, 'got': 13005, 'tough': 26319, 'selling': 23477, 'ahead': 4279, 'trying': 26613, 'convince': 8517, 'cautious': 7157, 'selection': 23468, 'committee': 8037, 'than': 25922, 'hundreds': 14173, 'applicants': 4845, 'also': 4489, 'credit': 8782, 'hired': 13835, 'relations': 22091, 'part': 19901, 'image': 14414, 'very': 27541, 'prim': 21012, 'proper': 21192, 'squeaky': 24613, 'clean': 7692, 'workaholic': 28392, 'yuppie': 28738, 'need': 18577, 'security': 23428, 'clearance': 7701, 'at': 5209, 'some': 24273, 'point': 20623, 'considers': 8349, 'everybody': 11302, 'guilty': 13296, 'until': 27129, 'proven': 21248, 'innocent': 14768, 'keep': 15695, 'nose': 18928, 'license': 16489, 'make': 17087, 'number': 19033, 'hobby': 13901, 'experienced': 11443, 'pilots': 20399, 'known': 15916, 'favored': 11745, '45': 2267, 'selected': 23466, 'between': 5873, '1984': 1059, '1988': 1064, '43': 2225, 'were': 28062, 'employees': 10862, 'remaining': 22144, 'two': 26725, 'consultant': 8395, 'mae': 17010, 'jemison': 15325, 'black': 6034, 'female': 11812, 'apply': 4851, 'outside': 19612, 'miss': 17897, 'they': 25977, 'offer': 19220, 'take': 25574, 'sometimes': 24287, 'past': 19948, 'this': 26010, 'has': 13537, 'meant': 17474, 'look': 16738, 'interesting': 14920, 'know': 15910, 'bit': 6011, 'think': 25992, 'highly': 13803, 'motivated': 18165, 'lose': 16774, 'no': 18842, 'chance': 7364, 'demonstrate': 9490, 'motivation': 18166, 'didn': 9764, 'time': 26135, 'national': 18488, 'aeronautics': 4179, 'administration': 4094, 'lyndon': 16921, 'johnson': 15445, 'center': 7257, 'houston': 14054, 'texas': 25888, 'candidates': 6969, 'candidate': 6968, 'program': 21127, 'support': 25318, 'now': 18971, 'accepting': 3900, 'on': 19310, 'continuous': 8447, 'basis': 5635, 'plans': 20511, 'select': 23464, 'as': 5071, 'needed': 18579, 'persons': 20206, 'both': 6281, 'civilian': 7645, 'sector': 23424, 'services': 23565, 'considered': 8347, 'all': 4419, 'positions': 20758, 'located': 16689, 'involved': 15050, 'year': 28670, 'training': 26385, 'evaluation': 11274, 'description': 9590, 'numerous': 19042, 'successful': 25170, 'flights': 12046, 'demonstrated': 9491, 'operation': 19372, 'experimental': 11446, 'investigations': 15032, 'routine': 22794, 'orbiter': 19440, 'launched': 16226, 'maneuvers': 17132, 'earth': 10508, 'orbit': 19436, 'performing': 20144, 'missions': 17905, 'lastling': 16200, 'up': 27144, '30': 1829, 'days': 9225, 'returns': 22428, 'ready': 21807, 'flight': 12045, 'payloads': 19997, 'crew': 8788, 'performs': 20145, 'variety': 27415, 'orbital': 19437, 'including': 14552, 'deployment': 9543, 'retrieval': 22419, 'satellites': 23113, 'service': 23562, 'existing': 11408, 'specialized': 24444, 'laboratories': 16075, 'astronomy': 5197, 'sciences': 23263, 'materials': 17302, 'processing': 21091, 'manufacturing': 17169, 'operations': 19375, 'these': 25970, 'eventually': 11291, 'include': 14549, 'development': 9685, 'servicing': 23566, 'permanent': 20176, 'station': 24777, 'provides': 21254, 'staging': 24694, 'capability': 6996, 'using': 27227, 'higher': 13796, 'orbits': 19443, 'achieved': 3956, 'itself': 15205, 'users': 27223, 'capabilities': 6995, 'domestic': 10170, 'foreign': 12187, 'government': 13021, 'agencies': 4248, 'private': 21049, 'industries': 14634, 'normally': 18907, 'consists': 8359, 'five': 11986, 'commander': 8008, 'three': 26050, 'specialists': 24441, 'occasion': 19155, 'additional': 4065, 'members': 17550, 'assigned': 5137, 'server': 23558, 'commanders': 8009, 'during': 10435, 'onboard': 19312, 'responsibility': 22369, 'vehicle': 27469, 'success': 25168, 'safety': 23002, 'assists': 5146, 'controlling': 8485, 'operating': 19371, 'addition': 4064, 'assist': 5141, 'utilizing': 27264, 'remote': 22166, 'manipulator': 17148, 'system': 25521, 'extra': 11529, 'vehicular': 27471, 'activities': 4019, 'payload': 19996, 'working': 28400, 'overall': 19632, 'coordination': 8545, 'areas': 4964, 'activity': 4020, 'planning': 20510, 'consumables': 8399, 'usage': 27206, 'experiment': 11445, 'required': 22292, 'detailed': 9645, 'knowledge': 15914, 'systems': 25525, 'well': 28053, 'operational': 19373, 'characteristics': 7392, 'requirements': 22294, 'objectives': 19113, 'supporting': 25321, 'each': 10485, 'experiments': 11451, 'conducted': 8260, 'their': 25937, 'perform': 20139, 'handling': 13456, 'specific': 24449, 'basic': 5628, 'qualification': 21452, 'meet': 17516, 'following': 12137, 'minimum': 17837, 'prior': 21041, 'submitting': 25120, 'application': 4846, 'bachelor': 5456, 'accredited': 3934, 'institution': 14840, 'engineering': 10947, 'biological': 5986, 'science': 23262, 'mathematics': 17312, 'followed': 12135, 'least': 16318, 'years': 28672, 'related': 22088, 'progressively': 21145, 'responsible': 22370, 'advanced': 4133, 'desirable': 9615, 'substituted': 25147, 'requirement': 22293, 'master': 17291, 'doctoral': 10129, 'quality': 21459, 'academic': 3882, 'preparation': 20941, 'important': 14491, 'ability': 3831, 'class': 7675, 'ii': 14369, 'includes': 14551, 'standards': 24711, 'distant': 9999, 'visual': 27678, 'acuity': 4030, '150': 694, 'uncorrected': 26929, 'correctable': 8598, 'eye': 11552, 'blood': 6099, '140': 626, '90': 3341, 'measured': 17482, 'sitting': 23972, 'position': 20753, 'height': 13658, '58': 2554, '76': 3029, 'inches': 14541, '1000': 308, 'hours': 14047, 'command': 8006, 'aircraft': 4311, 'test': 25869, '50': 2403, '64': 2696, 'citizenship': 7641, 'applications': 4847, 'citizens': 7640, 'united': 27036, 'states': 24770, 'note': 18941, 'education': 10631, 'scientific': 23264, 'specifically': 24450, 'completion': 8148, 'standard': 24709, 'curriculum': 8986, 'college': 7924, 'leading': 16294, 'major': 17084, 'study': 25071, 'appropriate': 4873, 'fields': 11880, 'while': 28130, 'qualifying': 21456, 'degrees': 9419, 'technology': 25728, 'aviation': 5388, 'etc': 11223, 'psychology': 21295, 'except': 11353, 'clinical': 7733, 'physiological': 20350, 'nursing': 19047, 'social': 24207, 'geography': 12749, 'anthropology': 4748, 'archaeology': 4932, 'management': 17119, 'procedures': 21081, 'package': 19744, 'obtained': 19147, 'writing': 28464, 'office': 19227, 'attn': 5282, 'ahx': 4286, 'tx': 26729, '77058': 3043, 'accepted': 3899, 'when': 28115, 'decides': 9311, 'consideration': 8345, 'given': 12870, 'only': 19328, 'those': 26033, 'hand': 13441, 'decision': 9317, 'made': 16999, 'received': 21861, 'retained': 22404, 'next': 18724, 'notified': 18956, 'annually': 4717, 'opportunity': 19394, 'update': 27149, 'indicate': 14604, 'continued': 8443, 'interest': 14918, 'who': 28153, 'dropped': 10332, 'preliminary': 20934, 'screening': 23332, 'information': 14705, 'requested': 22288, 'person': 20197, 'listed': 16617, 'supervisors': 25310, 'references': 21983, 'contacted': 8408, 'active': 4014, 'duty': 10444, 'personnel': 20204, 'submit': 25117, 'respective': 22355, 'directly': 9859, 'disseminated': 9988, 'personal': 20199, 'interviews': 14992, 'thorough': 26028, 'evaluations': 11275, 'under': 26939, 'final': 11921, 'once': 19313, 'selections': 23469, 'been': 5740, 'outcome': 19579, 'process': 21087, 'rosters': 22762, 'established': 11199, 'through': 26062, 'used': 27214, 'period': 20160, 'establishment': 11202, 'general': 12676, 'designated': 9607, 'undergo': 26944, 'technical': 25715, 'responsibilities': 22368, 'allowing': 4450, 'contribute': 8471, 'substantially': 25143, 'ongoing': 19324, 'programs': 21140, 'participate': 19909, 'designed': 9610, 'develop': 9677, 'skills': 24012, 'formal': 12207, 'upon': 27168, 'maintain': 17071, 'proficiency': 21114, 'aware': 5410, 'does': 10144, 'insure': 14864, 'depend': 9530, 'satisfactory': 23116, 'successfully': 25171, 'complete': 8143, 'federal': 11780, 'expected': 11426, 'remain': 22141, 'placed': 20484, 'within': 28303, 'depending': 9535, 'agency': 4249, 'manpower': 17158, 'constraints': 8385, 'specified': 24455, 'tour': 26322, 'affirmative': 4206, 'action': 4008, 'goal': 12947, 'having': 13570, 'minorities': 17847, 'women': 28354, 'among': 4581, 'therefore': 25961, 'encouraged': 10906, 'pay': 19992, 'benefits': 5817, 'civilians': 7646, 'salaries': 23023, 'based': 5613, 'governments': 13023, 'schedule': 23211, 'scales': 23169, 'grades': 13050, 'gs': 13248, '11': 408, 'set': 23571, 'accordance': 3927, 'individuals': 14623, 'achievements': 3958, 'vacation': 27347, 'sick': 23840, 'leave': 16319, 'retirement': 22411, 'plan': 20494, 'participation': 19912, 'group': 13218, 'health': 13621, 'life': 16505, 'insurance': 14863, 'status': 24789, 'matters': 17329, 'planetary': 20502, 'launch': 16225, 'mscrap': 18239, 'halcyon': 13406, 'com': 7971, 'marta': 17257, 'lyall': 16914, 'video': 27587, 'out': 19576, 'northwest': 18921, 'nexus': 18727, 'inc': 14534, '206': 1360, '455': 2276, '3505': 1993, '29': 1759, 'fingertips': 11938, '628': 2673, 'toontown': 26268, 'columbiasc': 7965, 'ncr': 18534, 'craig': 8736, 'williamson': 28210, 'writes': 28462, 'buy': 6679, 'multimedia': 18306, 'workstation': 28406, 'like': 16534, 'little': 16635, 'advice': 4152, 'graphics': 13100, 'card': 7029, 'windows': 28239, 'was': 27931, 'originally': 19491, 'thinking': 25993, 'targa': 25632, 'doesn': 10145, 'cards': 7039, 'looking': 16742, 'thanks': 25925, 'forgive': 12199, 'divine': 10051, 'airhead': 4316, 'human': 14153, 'balki': 5516, 'bartokomas': 5601, 'home': 13962, 'perfect': 20136, 'strangers': 24969, 'still': 24890, 'consider': 8342, 'run': 22907, 'works': 28402, 'fine': 11933, 'right': 22549, 'driver': 10324, 'josh': 15477, 'west': 28076, 'email': 10814, 'apryan': 4895, 'vax1': 27431, 'tcd': 25680, 'ie': 14333, 'order': 19445, 'moore': 18108, 'book': 6225, 'restore': 22379, 'great': 13139, 'telescope': 25775, '41': 2178, 'trinity': 26543, 'dublin': 10392, 'several': 23592, 'enquired': 10977, 'about': 3842, 'availability': 5370, '72': 2909, 'reflector': 21998, 'built': 6581, 'birr': 6002, 'castle': 7114, 'ireland': 15095, '1845': 935, 'remained': 22143, 'largest': 16175, 'start': 24752, '20th': 1383, 'century': 7277, 'written': 28467, 'patrick': 19972, 'sits': 23971, 'going': 12963, 'remains': 22145, 'display': 9973, 'round': 22784, 'massive': 17287, 'walls': 27880, '60': 2606, 'foot': 12164, 'tube': 26646, 'bits': 6022, 'pieces': 20382, 'definitivie': 9400, 'history': 13855, 'man': 17115, 'third': 26003, 'earl': 10496, 'rosse': 22757, 'pulled': 21336, 'most': 18150, 'impressive': 14506, 'achievement': 3957, 'perhaps': 20147, 'ever': 11292, 'discoveries': 9920, 'instrument': 14851, 'donating': 10184, 'proceeds': 21086, 'sale': 23026, 'help': 13690, 'making': 17094, 'available': 5371, 'wide': 28172, 'mail': 17051, 'fascinating': 11715, 'read': 21792, 'ordering': 19447, 'copy': 8561, 'bring': 6438, 'day': 9221, 'again': 4240, 'nearer': 18551, 'dr': 10269, 'xii': 28560, '90pp': 3363, '208mm': 1371, '145mm': 673, 'price': 21001, '95': 3478, 'post': 20777, 'packing': 19751, 'add': 4056, 'airmail': 4320, 'pounds': 20813, 'sterling': 24855, 'europe': 11257, '00': 0, 'rest': 22371, 'per': 20120, 'funds': 12469, 'payable': 19993, 'payment': 19998, 'payments': 19999, 'mastercard': 17292, 'visa': 27659, 'eurocard': 11255, 'access': 3903, 'snail': 24155, 'give': 12869, 'address': 4068, 'expiration': 11455, 'total': 26306, 'amount': 4584, 'otherwise': 19557, 'money': 18057, 'bank': 5558, 'draft': 10274, 'send': 23492, 'our': 19573, 'box': 6317, '2888': 1754, 'subscribe': 25128, 'same': 23046, 'see': 23433, 'below': 5798, 'tony': 26259, 'ryan': 22954, 'new': 18671, 'international': 14948, 'magazine': 17014, 'issues': 15175, 'sub': 25092, 'uk': 26836, '10': 306, 'surface': 25339, 'astro': 5178, 'soc': 24205, 'capita': 7003, '033': 143, 'tel': 25755, '0891': 269, '88': 3288, '1950': 1013, '1550': 740, '111': 415, '442': 2253, 'eire': 10710, 'cost': 8644, '48p': 2348, 'min': 17807, 'tedward': 25739, 'cornell': 8582, 'edward': 10637, 'ted': 25737, 'fischer': 11971, 'found': 12256, 'secret': 23417, 'univ': 27040, 'dept': 9553, 'ithaca': 15195, 'ny': 19058, '14853': 682, 'why': 28165, 'red': 21931, 'sox': 24358, 'place': 20483, 'eight': 10701, 'games': 12570, 'season': 23397, 'already': 4486, 'wins': 28270, 'clemens': 7709, 'viola': 27636, 'starts': 24759, 'tonight': 26254, 'four': 12261, 'rotation': 22769, 'hesketh': 13756, 'relief': 22118, 'night': 18784, 'hm': 13884, 'cheers': 7444, 'valentine': 27362, 'wrong': 28469, 'scored': 23294, '18': 906, 'runs': 22917, 'week': 28018, 'reach': 21779, '25': 1623, 'without': 28304, 'trouble': 26582, 'fluke': 12088, 'sdsu': 23376, 'james': 15250, 'murray': 18348, 'specs': 24461, 'info': 14691, 'apple': 4841, 'quicktime': 21516, 'san': 23058, 'diego': 9769, 'state': 24765, '12': 469, 'newsreader': 18715, 'tin': 26156, 'version': 27529, 'pl9': 20480, 'verbose': 27501, 'interpretation': 14965, 'articles': 5058, 'magazines': 17015, 'books': 6228, 'nice': 18748, 'too': 26261, 'format': 12210, 'usable': 27204, 'unix': 27057, 'ms': 18232, 'dos': 10210, 'much': 18284, 'stuff': 25073, 'ftp': 12422, 'its': 15204, 'present': 20955, 'advance': 4132, 'randall': 21647, 'informix': 14712, 'rhea': 22497, 'royals': 22808, 'software': 24231, 'darkness': 9156, 'void': 27729, 'play': 20532, 'shame': 23647, 'descends': 9582, 'land': 16123, 'cold': 7893, 'front': 12391, 'canada': 6952, 'humiliation': 14163, 'lived': 16640, 'shall': 23644, 'live': 16639, 'utterly': 27279, 'completely': 8145, 'doomed': 10197, 'guess': 13278, 'ok': 19257, 'project': 21151, 'manager': 17120, 'mis': 17872, 'sales': 23028, 'marketing': 17231, 'uunet': 27289, 'pyramid': 21415, 'infmx': 14690, 'quotation': 21529, 'lowest': 16824, 'bidder': 5912, 'bioccnt': 5978, 'otago': 19547, 'ac': 3877, 'nz': 19070, 'dunedin': 10418, 'zealand': 28765, 'thorin': 26023, 'someone': 24278, 'please': 20550, 'remind': 22156, 'me': 17463, 'said': 23014, 'he': 13600, 'atop': 5251, 'rocket': 22666, 'awaiting': 5405, 'liftoff': 16516, 'afterwards': 4235, 'answer': 4734, 'question': 21502, 'had': 13384, 'approximately': 4882, 'half': 13407, 'million': 17792, 'components': 8160, 'perfectly': 20137, 'supplied': 25313, 'attribution': 5291, 'correction': 8601, 'quote': 21531, 'appreciated': 4862, 'clive': 7744, 'trotman': 26581, 'mmadsen': 17959, 'bonnie': 6220, 'ics': 14303, 'uci': 26781, 'matt': 17326, 'madsen': 17007, 'recommend': 21889, '3d': 2115, 'library': 16480, 'mac': 16946, 'reply': 22238, 'calif': 6905, 'irvine': 15123, 'sci': 23259, '27': 1691, 'robert': 22648, 'carpenter': 7069, 'hi': 13776, 'netters': 18648, 'building': 6578, 'cad': 6861, 'handle': 13452, 'rudimentry': 22881, 'tasks': 25647, 'hidden': 13784, 'line': 16572, 'removal': 22168, 'shading': 23626, 'animation': 4678, 'recommendations': 21891, 'll': 16653, 'contact': 8407, 'find': 11929, 'responses': 22367, 'case': 7098, 'others': 19555, 'bob': 6148, 'libraries': 16479, 'tools': 26267, 'say': 23149, 'renderman': 22188, 'reasonable': 21837, 'sorry': 24321, 'don': 10181, 'answers': 4737, 'edb9140': 10593, 'tamsun': 25603, 'tamu': 25604, 'pov': 20818, 'problems': 21076, 'tga': 25907, 'outputs': 19604, 'fiqure': 11954, 'properly': 21193, 'compiled': 8130, 'machine': 16964, 'running': 22915, 'sunos': 25263, 'sample': 23052, 'files': 11903, 'use': 27212, 'exact': 11332, 'parameters': 19864, 'compiling': 8133, 'different': 9782, 'unrecognizable': 27098, 'ed': 10591, 'pest': 20226, 'konech': 15949, 'uucp': 27283, 'wolfgang': 28348, 'speedstar': 24482, '24': 1576, 'truecolor': 26593, 'mode': 17985, 'kontron': 15953, 'elektronik': 10753, 'gmbh': 12926, 'eching': 10557, 'germany': 12781, '17': 841, 'hello': 13685, 'purchased': 21371, 'my': 18381, '486': 2340, 'noname': 18870, 'installed': 14826, 'obviously': 19153, 'compatible': 8105, 'vga': 27559, '4000': 2152, 'accompanied': 3918, 'drivers': 10325, 'utilities': 27260, 'vmode': 27714, 'xmode': 28570, 'more': 18119, 'lotus': 16789, 'told': 26226, 'provide': 21251, 'namely': 18454, 'nowhere': 18973, 'else': 10796, 'ad': 4034, 'pointer': 20628, 'facts': 11615, 'believe': 5779, 'anybody': 4769, 'there': 25958, 'adjusted': 4085, 'write': 28458, 'allows': 4451, '16': 770, 'millions': 17794, 'colors': 7954, 'resolution': 22339, '640': 2697, '480': 2326, 'hz': 14243, 'interlaced': 14936, 'greetings': 13164, 'schmke': 23230, 'cco': 7200, 'caltech': 6924, 'kevin': 15745, 'todd': 26213, 'schmidt': 23228, 'al': 4347, 'opi': 19384, 'california': 6906, 'institute': 14838, 'pasadena': 19928, '186': 951, 'sandman': 23068, 'here': 13728, 'offensive': 19218, 'production': 21104, 'index': 14596, 'players': 20536, 'bats': 5652, 'early': 10500, 'high': 13795, 'numbers': 19036, 'leader': 16291, 'frank': 12312, 'thomas': 26017, '682': 2800, 'teams': 25704, 'denoted': 9514, 'character': 7390, 'player': 20535, 'his': 13843, 'team': 25699, 'preceeding': 20886, 'equations': 11092, 'end': 10911, 'comments': 8017, 'suggestions': 25207, 'welcome': 28048, 'league': 16300, '448': 2262, 'ba': 5445, '268': 1684, 'slg': 24058, '405': 2168, 'oba': 19090, '341': 1966, 'rank': 21660, 'tor': 26284, 'carter': 7083, '142': 640, '583': 2559, '417': 2192, '615': 2645, 'cle': 7691, 'baerga': 5483, '432': 2231, '520': 2454, '040': 155, '538': 2484, 'det': 9643, 'phillips': 20282, '334': 1943, '565': 2527, '609': 2630, '655': 2741, 'oak': 19079, 'mcgwire': 17420, '147': 679, '364': 2035, '636': 2686, '632': 2680, 'white': 28138, '065': 223, '500': 2404, '650': 2724, '545': 2494, 'bal': 5503, 'anderson': 4637, '951': 3482, '423': 2209, '692': 2815, 'nyy': 19068, 'owen': 19684, '934': 3425, '577': 2548, '567': 2530, 'rhenderson': 22498, '911': 3370, '391': 2092, '533': 2478, 'mil': 17766, 'thon': 26021, '804': 3150, '476': 2318, '619': 2653, 'browne': 6491, '800': 3127, '522': 2458, 'tex': 25885, 'palmer': 19814, '781': 3064, '333': 1941, '875': 3281, 'gibson': 12821, '312': 1874, '562': 2524, '13': 561, 'howard': 14060, '755': 3019, '727': 2924, 'tartabull': 25639, '742': 2991, '296': 1780, '667': 2764, '424': 2211, 'rodriguez': 22692, '736': 2978, '429': 2218, '529': 2468, 'gonzalez': 12981, '261': 1665, '913': 3374, '292': 1771, 'bos': 6272, 'zupcic': 28818, '728': 2928, '400': 2151, 'sea': 23379, 'felder': 11800, '723': 2917, '357': 2011, '471': 2313, '19': 964, 'blankenship': 6046, '722': 2914, '524': 2461, 'puckett': 21326, '717': 2902, '280': 1721, '720': 2910, '379': 2065, '21': 1384, 'oneill': 19320, '710': 2889, '435': 2237, '458': 2282, '22': 1451, 'belle': 5788, '703': 2874, '348': 1982, '696': 2826, '375': 2059, '23': 1526, 'buhner': 6574, '699': 2832, '294': 1775, '478': 2321, 'hamilton': 13425, 'whitaker': 28136, '680': 2789, '421': 2202, '26': 1660, 'fielder': 11877, '666': 2762, '273': 1698, '591': 2574, '407': 2172, 'sprague': 24573, '649': 2719, '300': 1830, '750': 3003, '28': 1720, 'whi': 28124, 'cora': 8567, '646': 2715, '350': 1990, 'raines': 21615, '641': 2707, '250': 1624, '308': 1858, 'kelly': 15709, '625': 2666, '31': 1868, 'quintana': 21523, '617': 2648, '32': 1894, 'tmartinez': 26196, '612': 2641, '211': 1398, 'cal': 6882, 'gonzales': 12980, '34': 1961, 'burks': 6637, '35': 1989, 'snow': 24185, '602': 2615, '368': 2044, '526': 2465, '36': 2024, 'karkovice': 15647, '598': 2581, '167': 819, '412': 2183, '37': 2049, 'cleveland': 7713, '595': 2577, '340': 1962, '549': 2499, '377': 2062, '38': 2068, 'sorrento': 24319, '594': 2576, 'amaral': 4530, '587': 2565, '579': 2551, 'cooper': 8534, 'winfield': 28247, '578': 2550, '42': 2196, 'curtis': 8999, '571': 2540, '381': 2072, 'mvaughn': 18371, '566': 2529, '316': 1884, '44': 2246, 'steinbach': 24821, '556': 2513, '542': 2490, '385': 2079, 'oakland': 19081, '555': 2511, '298': 1783, '439': 2242, '406': 2169, '46': 2287, 'maas': 16943, '547': 2496, '389': 2088, '47': 2310, 'kan': 15633, 'joyner': 15497, '546': 2495, '48': 2325, 'knoblauch': 15903, '535': 2481, '304': 1848, '49': 2350, 'greenwell': 13161, '534': 2480, '370': 2050, 'brosius': 6484, '532': 2474, '51': 2432, 'olerud': 19278, '530': 2471, '52': 2453, 'mercedes': 17584, '286': 1741, '53': 2470, 'nyyankees': 19069, '527': 2466, '321': 1900, '468': 2307, '54': 2486, 'hoiles': 13929, '525': 2463, '263': 1673, 'kmak': 15886, '523': 2459, '56': 2521, 'dhenderson': 9725, '517': 2449, '231': 1534, '462': 2295, '57': 2535, 'lofton': 16707, '515': 2446, '346': 1978, 'larkin': 16177, '514': 2444, '59': 2570, 'dawson': 9220, '504': 2420, '360': 2025, 'camartinez': 6927, '503': 2416, '61': 2636, 'gladden': 12878, '498': 2363, '62': 2655, 'polonia': 20664, '494': 2355, '320': 1895, '63': 2675, '487': 2343, '295': 1779, '404': 2163, 'detroit': 9671, '484': 2337, '260': 1661, '410': 2179, '65': 2723, 'tettleton': 25883, '475': 2317, '66': 2749, 'disarcina': 9887, '473': 2315, '67': 2769, 'easley': 10520, '472': 2314, '68': 2788, 'baines': 5495, '470': 2311, '69': 2810, 'franco': 12306, '469': 2308, '70': 2859, 'ljohnson': 16649, '464': 2299, '71': 2888, 'vizquel': 27696, '463': 2296, '222': 1476, 'bwilliams': 6685, '461': 2291, '314': 1878, '73': 2931, 'gvaughn': 13329, '460': 2288, '74': 2985, 'hrbek': 14092, '240': 1577, '367': 2042, '75': 3002, 'cripken': 8797, '451': 2270, 'seattle': 23404, '237': 1565, '361': 2029, '77': 3041, 'salmon': 23032, '267': 1683, '450': 2268, '78': 3062, 'mcreynolds': 17449, '447': 2261, '182': 917, '79': 3078, 'toronto': 26292, '443': 2254, '430': 2226, '318': 1886, '489': 2345, '289': 1756, '81': 3170, 'pagliarulo': 19771, '82': 3186, 'whitesox': 28142, '243': 1592, '378': 2063, '336': 1951, '83': 3203, 'hiatt': 13778, '431': 2229, '278': 1714, '84': 3214, 'guillen': 13295, '426': 2214, '85': 3233, '419': 2195, '259': 1653, '355': 2005, '86': 3251, 'mcrae': 17445, '414': 2188, '345': 1976, '87': 3271, 'boston': 6278, '411': 2181, '270': 1692, '365': 2036, '89': 3310, 'mattingly': 17335, '324': 1905, '353': 2001, '343': 1971, 'baltimore': 5542, '394': 2098, '251': 1629, '315': 1880, '91': 3365, 'gomez': 12973, '382': 2073, 'minnesota': 17845, 'fisk': 11977, '94': 3451, 'jefferson': 15316, 'neel': 18584, '188': 956, '96': 3499, 'cdavis': 7214, '369': 2046, '97': 3514, 'fletcher': 12036, '217': 1435, '98': 3531, 'milwaukee': 17803, '257': 1649, '293': 1773, '99': 3541, 'livingstone': 16647, '438': 2241, '100': 307, 'ralomar': 21634, '354': 2003, '101': 334, 'kansascity': 15636, '236': 1563, '327': 1913, '291': 1766, '102': 345, 'bordick': 6258, '339': 1958, '200': 1285, '103': 363, 'canseco': 6984, '337': 1954, '190': 965, '104': 367, 'valle': 27368, '105': 374, 'devereaux': 9689, '329': 1925, '207': 1366, '233': 1546, '106': 382, 'lind': 16563, '323': 1904, '107': 389, 'surhoff': 25349, '227': 1511, 'brett': 6410, '109': 394, 'bell': 5786, '310': 1869, '258': 1650, '110': 409, 'salomar': 23033, '306': 1853, 'jaha': 15247, 'fryman': 12412, '185': 942, '214': 1420, '113': 423, 'boggs': 6172, '114': 430, 'bripken': 6442, '290': 1760, '115': 437, 'mack': 16976, '116': 445, 'harper': 13523, '288': 1751, '117': 451, 'fermin': 11827, '284': 1737, '118': 456, 'rivera': 22602, '276': 1710, '176': 883, '119': 459, 'spiers': 24508, '275': 1706, '120': 470, 'yount': 28719, '208': 1368, '269': 1686, '121': 483, 'schofield': 23231, '265': 1680, '133': 582, '235': 1559, 'hulse': 14150, '154': 732, '123': 502, 'griffey': 13187, '124': 512, 'obrien': 19125, 'macfarlane': 16958, '126': 533, 'sierra': 23850, '256': 1647, '127': 539, 'jose': 15473, '254': 1642, '128': 546, 'hatcher': 13549, '252': 1633, '129': 552, 'blowers': 6107, '130': 562, 'ventura': 27489, '247': 1605, 'palmeiro': 19813, '132': 575, 'reynolds': 22482, 'mayne': 17366, 'myers': 18384, '135': 602, 'nokes': 18861, '219': 1445, '136': 607, 'calderon': 6897, '209': 1372, '137': 611, 'pena': 20082, '138': 615, 'molitor': 18042, '194': 1007, '139': 618, 'deer': 9366, '125': 523, '192': 986, 'cuyler': 9023, '179': 898, '077': 245, '143': 647, '141': 633, 'borders': 6257, '159': 756, '158': 753, 'grebeck': 13146, 'gdavis': 12643, '148': 680, '144': 654, 'dascenzo': 9176, '091': 278, '145': 666, 'leius': 16378, '083': 255, 'reimer': 22065, 'djackson': 10063, 'gill': 12844, '070': 232, '059': 201, '149': 685, 'gagne': 12536, '042': 165, '095': 287, '1b': 1125, '2b': 1798, '3b': 2112, 'hr': 14091, 'bb': 5674, 'sb': 23154, 'ab': 3809, 'propulsion': 21217, 'laboratory': 16076, '4800': 2327, 'grove': 13225, 'spc5': 24424, 'jpl': 15520, 'gov': 13016, '3684': 2045, 'ca': 6845, '91109': 3372, 'baalke': 5446, 'kelvin': 15713, 'ron': 22728, 'balloon': 5529, 'measures': 17485, 'ozone': 19705, 'layer': 16252, 'news': 18698, 'vax': 27430, 'vms': 27715, 'vnews': 27719, 'forwarded': 12240, '818': 3182, '5011': 2412, 'mary': 17269, 'hardin': 13500, 'immediate': 14450, 'release': 22105, 'april': 4892, '1506': 703, 'scientists': 23268, 'report': 22243, 'carrying': 7080, 'instruments': 14854, 'measure': 17481, 'chemicals': 7455, 'barstow': 5598, 'daggett': 9097, 'airport': 4324, 'reached': 21781, 'altitude': 4508, 'kilometers': 15813, '000': 1, 'feet': 11794, 'took': 26262, 'measurements': 17484, 'correlate': 8606, 'data': 9182, 'upper': 27170, 'atmosphere': 5241, 'research': 22307, 'satellite': 23112, 'uars': 26768, 'compared': 8074, 'readings': 21801, 'atmospheric': 5243, 'trace': 26349, 'molecular': 18037, 'spectroscopy': 24469, 'atmos': 5240, 'currently': 8985, 'discovery': 9922, 'balloons': 5530, 'times': 26144, 'fact': 11607, 'actively': 4015, 'ways': 27978, 'jim': 15384, 'margitan': 17210, 'principal': 21024, 'investigator': 15033, 'campaign': 6941, 'collaborative': 7906, 'truth': 26606, 'useful': 27215, 'own': 19688, 'taken': 25575, 'complex': 8150, 'puzzle': 21398, 'mid': 17733, 'latitude': 16212, 'stratosphere': 24983, 'winter': 28272, 'spring': 24583, 'understanding': 26964, 'chemistry': 7456, 'occurring': 19170, 'region': 22033, 'helps': 13697, 'construct': 8387, 'accurate': 3942, 'models': 17999, 'instrumental': 14852, 'predicting': 20910, 'conditions': 8257, 'consisted': 8353, 'ultraviolet': 26860, 'photometer': 20314, 'ascends': 5077, 'submillimeterwave': 25114, 'limb': 16552, 'sounder': 24335, 'looks': 16744, 'microwave': 17729, 'radiation': 21570, 'emitted': 10844, 'molecules': 18039, 'fourier': 12264, 'transform': 26412, 'infrared': 14716, 'interferometer': 14929, 'monitors': 18065, 'absorbs': 3859, 'sunlight': 25260, 'occurred': 19169, 'noontime': 18893, 'hour': 14045, 'ascent': 5079, 'floated': 12057, 'eastward': 10526, 'knots': 15909, 'radioed': 21580, 'stations': 24781, 'recorded': 21907, 'ended': 10914, 'pacific': 19741, 'eastern': 10523, 'mexico': 17661, 'commanded': 8007, 'separate': 23521, 'sunset': 25267, 'explained': 11461, 'watch': 27947, 'quickly': 21512, 'disappear': 9877, 'weeks': 28023, 'before': 5744, 'completed': 8144, 'results': 22395, 'forward': 12239, 'central': 7265, 'facility': 11604, 'goddard': 12952, 'greenbelt': 13154, 'maryland': 17270, 'palestine': 19804, 'contract': 8452, 'wallops': 27877, 'because': 5722, 'east': 10521, 'wind': 28233, 'direction': 9855, 'desire': 9616, 'southwest': 24348, 'micron': 17714, 'less': 16407, 'thousandth': 26042, 'inch': 14540, 'thick': 25981, 'plastic': 20519, '790': 3079, 'cubic': 8942, 'meters': 17644, 'volume': 27742, 'fully': 12451, 'inflated': 14683, 'helium': 13681, 'diameter': 9742, 'weigh': 28027, 'kilograms': 15811, 'weighs': 28029, 'six': 23980, 'square': 24610, 'sponsored': 24547, 'correlative': 8609, '___': 3571, '_____': 3573, '____': 3572, '__': 3570, 'lab': 16064, 'telos': 25791, 'cynical': 9065, 'never': 18668, 'correct': 8597, 'situation': 23974, 'causes': 7152, 'aggravation': 4255, 'instead': 14833, 'zoo': 28802, 'solar': 24242, 'sail': 23015, 'zoology': 28804, '1qk4qf': 1209, 'mf8': 17665, 'male': 17100, 'ebay': 10536, 'sun': 25246, 'almo': 4461, 'packmind': 19752, 'hey': 13766, 'happened': 13481, 'race': 21552, 'supposed': 25326, 'columbus': 7966, 'recession': 21868, 'none': 18873, 'potential': 20804, 'entrants': 11014, 'could': 8656, 'raise': 21620, 'organizers': 19472, 'actually': 4027, 'fundraising': 12468, 'kipling': 15841, 'utzoo': 27281, 'spl': 24525, 'dim': 9821, 'ucsd': 26794, 'steve': 24869, 'lamont': 16115, 'equally': 11088, 'spaced': 24369, 'points': 20631, 'sphere': 24501, 'microscopy': 17720, 'imaging': 14436, 'resource': 22348, '326': 1910, '4615trd': 2292, 'rpi': 22819, 'deweeset': 9707, 'ptolemy2': 21299, 'rdrc': 21773, 'deweese': 9706, 'discussed': 9932, 'teselate': 25863, 'kind': 15821, 'soul': 24331, 'code': 7852, 'alg': 4390, 'finally': 11922, 'decided': 9309, 'best': 5861, 'recall': 21855, 'iterative': 15194, 'subdivision': 25102, 'meathod': 17487, 'appreciative': 4863, 'andrew': 4646, 'gems': 12671, 'glassner': 12885, 'collegue': 7925, 'mine': 17814, 'fiddled': 11870, 'deal': 9272, 'whatever': 28103, 'bizarre': 6028, 'spheres': 24502, 'asg': 5090, 'feb': 11777, 'thu': 26075, 'mar': 17185, '40': 2150, 'est': 11197, '1990': 1069, 'stdio': 24800, 'math': 17303, 'define': 9390, 'pi': 20353, '141592654': 637, 'struct': 25041, 'point_struct': 20625, 'double': 10217, 'static': 24774, 'radius': 21595, 'xorg': 28573, 'yorg': 28707, 'zorg': 28809, 'do_sphere': 10116, 'freq': 12359, 'int': 14866, 'pole': 20641, 'northy': 18923, 'southy': 24350, 'poley': 20644, 'rtheta': 22862, 'rtheta2': 22863, 'ntheta': 19014, 'ntheta2': 19015, 'magicangle': 17021, 'theta': 25974, 'thetastart': 25975, 'thisy': 26012, 'den': 9502, 'point_node': 20624, 'pnp': 20607, 'p1': 19711, 'p2': 19715, 'p3': 19719, 'p4': 19722, 'n1': 18408, 'n2': 18413, 'n3': 18415, 'n4': 18418, 'pt': 21297, '180': 907, 'sin': 23935, 'cos': 8627, 'ring': 22573, 'go': 12945, 'way': 27975, 'normals': 18908, 'sqrt': 24608, 'subdivide_tri': 25101, 'body': 6161, 'return': 22425, 'norm_pt': 18901, 'register': 22037, 'p12': 19712, 'p13': 19713, 'p23': 19717, 'nothing': 18949, 'special': 24438, 'poly': 20665, 'printf': 21034, 'sciviguy': 23277, '7968': 3094, 'szechuan': 25531, 'uc': 26772, 'la': 16061, 'jolla': 15456, '92093': 3393, '0608': 211, 'car': 7025, 'bumper': 6601, 'strip': 25024, 'seen': 23445, '805': 3155, 'niguma': 18789, 'ug': 26809, 'dal': 9109, 'gord': 12993, 'notes': 18944, 'jays': 15284, 'vs': 27790, 'indians': 14603, 'series': 23548, 'stats': 24788, 'dalhousie': 9111, 'halifax': 13410, 'ns': 18992, 'na': 18426, '1993apr15': 1088, '123803': 509, '4618': 2293, 'webo': 28009, 'dg': 9718, 'lyford': 16917, 'dagny': 9098, 'beverage': 5878, '1993apr13': 1086, '202037': 1329, '9485': 3475, 'rudyc5fr3q': 22885, '1cl': 1130, 'netcom': 18638, 'rudy': 22882, 'wade': 27835, 'c5fmxd': 6755, '2pm': 1823, 'reference': 21981, 'certainly': 7290, 'second': 23410, 'basemen': 5618, 'alomar': 4468, 'popularity': 20716, 'count': 8662, 'basing': 5634, 'statement': 24768, 'uh': 26819, 'yes': 28683, 'lot': 16785, 'flash': 12015, 'hitter': 13865, 'batters': 5657, 'obp': 19123, 'tb': 25674, 'rbi': 21743, '161': 784, '657': 2744, '92': 3389, '205': 1356, '299': 1789, '427': 2215, '152': 716, '177': 887, '244': 1593, 'immediately': 14451, 'follow': 12134, 'showing': 23808, 'category': 7138, 'shows': 23812, 'advantage': 4138, 'hmmm': 13889, 'walks': 27868, 'clobbered': 7748, 'beat': 5708, 'him': 13818, 'lesser': 16409, 'margin': 17206, 'putting': 21397, 'aside': 5099, 'factors': 11613, 'edge': 10600, 'productive': 21106, 'issue': 15173, 'studied': 25066, 'doubt': 10223, 'come': 7987, 'convincing': 8519, 'argument': 4980, 'batting': 5659, 'average': 5379, 'really': 21823, 'value': 27375, 'worth': 28424, 'closely': 7756, 'ate': 5218, 'outs': 19609, 'drawing': 10293, 'base': 5605, 'et': 11218, 'fav': 11741, 'john': 15435, 'lau': 16218, 'auriga': 5316, 'rose': 22748, 'brandeis': 6358, 'frankie': 12316, 'pc': 20009, 'fastest': 11725, 'circle': 7610, 'routines': 22796, 'assembly': 5122, 'svga': 25409, 'am': 4528, 'simple': 23912, 'clones': 7753, 'ball': 5517, 'stick': 24881, 'type': 26736, 'reasons': 21841, 'far': 11697, 'slow': 24093, 'purpose': 21379, 'platform': 20522, '386': 2080, '800x600': 3132, '1024x728': 353, 'speed': 24479, 'color': 7946, 'rendering': 22186, 'stay': 24793, 'hope': 14006, 'generic': 12693, 'trident': 26527, '8900c': 3313, 'vesa': 27542, 'draw': 10290, 'circles': 7611, 'shapes': 23657, 'above': 3843, 'mentioned': 17573, 'resolutions': 22340, 'presumably': 20980, 'languagine': 16149, 'codes': 7858, 'rotating': 22768, 'zooming': 28806, 'animating': 4677, 'drawings': 10294, 'screen': 23330, 'beginning': 5754, 'mainly': 17069, 'text': 25891, 'later': 16207, 'rotates': 22767, 'zooms': 28807, 'molecule': 18038, 'preferentially': 20926, 'remarks': 22150, 'profit': 21117, 'share': 23662, 'free': 12337, 'ware': 27907, 'tammy': 25598, 'harvard': 13534, 'ps': 21270, 'pls': 20576, 'aa429': 3784, 'freenet': 12348, 'carleton': 7055, 'terry': 25859, 'ford': 12180, 'flawed': 12024, 'added': 4058, 'digest': 9797, 'via': 27567, 'original': 19489, 'sender': 23493, 'isu': 15177, 'venari': 27483, 'cmu': 7812, 'essay': 11191, 'rather': 21702, 'clumsy': 7788, 'checks': 7439, 'tests': 25876, 'hazards': 13586, 'hydrogen': 14219, 'bomb': 6201, 'beefs': 5735, 'current': 8984, 'ideas': 14314, 'nepean': 18622, 'ontario': 19334, 'dietz': 9776, 'rochester': 22662, 'paul': 19981, 'commercial': 8019, 'mining': 17838, 'moon': 18101, '1993apr20': 1094, '152819': 722, '28186': 1730, 'ke4zv': 15687, 'gary': 12602, 'coffman': 7870, 'site': 23969, 'cheaper': 7428, 'asteroids': 5171, 'comets': 7995, 'semi': 23481, 'mythic': 18403, 'he3': 13601, 'might': 17756, 'low': 16816, 'grade': 13049, 'fusion': 12488, 'reactors': 21791, 'reactor': 21790, '3he': 2135, 'difficulty': 9791, 'concentration': 8226, 'lunar': 16886, 'regolith': 22043, 'small': 24115, 'ppb': 20838, 'fractions': 12281, 'amounts': 4585, 'processed': 21089, 'thread': 26044, 'reminds': 22160, 'wingo': 28255, 'claims': 7661, 'ago': 4264, 'source': 24340, 'titanium': 26175, 'wasn': 27937, 'content': 8425, 'assured': 5164, 'crust': 8859, 'touted': 26331, 'mines': 17821, 'though': 26036, 'market': 17229, 'ilmenite': 14408, 'concentrate': 8223, 'around': 5022, '06': 203, 'pound': 20810, 'prompted': 21177, 'large': 16172, 'terrestrial': 25851, 'sources': 24342, 'occurs': 19171, 'basalts': 5603, 'ti': 26092, 'apollo': 4810, 'dioxide': 9842, 'weight': 28030, 'continental': 8436, 'flood': 12061, 'typically': 26742, 'enriched': 10978, 'often': 19243, 'tio2': 26160, 'enormous': 10974, 'scattered': 23190, 'over': 19630, 'siberia': 23835, 'brazil': 6371, 'nw': 19054, 'ethiopia': 11233, 'trillions': 26537, 'tons': 26258, 'concentrations': 8227, 'factor': 11610, 'difficult': 9789, 'disadvantages': 9872, 'overcome': 19634, 'increase': 14575, 'ore': 19451, 'mind': 17809, 'richer': 22519, 'common': 8043, 'ores': 19457, 'mined': 17815, 'today': 26210, 'lasse': 16196, 'mits': 17925, 'mdata': 17459, 'fi': 11859, 'reinikainen': 22070, 'wanted': 27901, 'multi': 18301, 'page': 19765, 'gif': 12826, 'microdata': 17704, 'oy': 19703, 'helsinki': 13698, 'finland': 11947, '053250': 192, '24854': 1611, 'worak': 28379, 'kaist': 15620, 'kr': 15984, 'stjohn': 24907, 'math1': 17304, 'ryou': 22961, 'seong': 23518, 'joon': 15466, 'searching': 23394, 'packages': 19746, 'viewer': 27603, 'try': 26611, 'vpic60': 27780, '__________________': 3582, '_________________': 3581, '________': 3576, 'sbp002': 23158, 'acad': 3879, 'drake': 10284, 'braves': 6370, 'pitching': 20445, 'updatedir': 27152, 'des': 9574, 'moines': 18030, 'iowa': 15066, 'usa': 27203, '1993apr14': 1087, '200649': 1311, '12578': 531, 'pts': 21301, 'mot': 18153, 'ep502dn': 11051, 'dave': 9204, 'naehring': 18437, 'x2079': 28516, 'p7630': 19725, '2482': 1610, 'adobe': 4112, 'snichols': 24178, 'sherri': 23716, 'nichols': 18758, 'every': 11301, 'single': 23945, 'piece': 20380, 'evidence': 11310, 'baseball': 5607, 'offense': 19215, 'defense': 9379, 'prevented': 20991, 'passes': 19940, 'sense': 23501, 'statistical': 24783, 'percent': 20124, 'fielding': 11879, 'btw': 6531, 'da': 9083, 'course': 8687, 'penny': 20101, 'saved': 23139, 'earned': 10502, 'cliches': 7720, 'starters': 24755, 'able': 3833, 'won': 28355, 'realize': 21819, 'big': 5920, 'staff': 24687, 'leaves': 16320, 'bosox': 6276, 'dust': 10438, 'legitimate': 16365, 'comparison': 8078, 'cy': 9041, 'young': 28716, 'winners': 28266, 'pitchers': 20443, 'kill': 15803, 'starter': 24754, 'mound': 18178, 'score': 23291, 'scores': 23297, 'puts': 21395, 'providing': 21255, 'stop': 24938, 'opposing': 19397, 'scoring': 23301, 'game': 12567, 'clearly': 7704, 'benefit': 5815, 'due': 10397, 'excellent': 11351, 'hitting': 13867, 'flip': 12050, 'side': 23843, 'starting': 24756, 'arguing': 4979, 'simply': 23919, 'outscore': 19610, 'opponent': 19390, 'ray': 21722, 'knight': 15900, 'scoreboard': 23292, 'assemble': 5117, 'strong': 25034, 'sam': 23044, 'hcrlgw': 13593, 'steven': 24871, 'collins': 7933, 'hitachi': 13857, 'ltd': 16853, '1qkgbuinns9n': 1210, 'shelley': 23705, 'washington': 27936, 'bolson': 6194, 'carson': 7082, 'boy': 6320, 'embarassing': 10822, 'trivial': 26568, 'coplanar': 8555, 'exactly': 11333, 'fitting': 11985, 'straightforward': 24962, 'checked': 7434, 'geometry': 12757, 'farin': 11701, 'loss': 16779, 'mercy': 17591, 'solution': 24264, 'wouldn': 28432, 'require': 22291, 'hyper': 14227, 'specifies': 24457, 'prove': 21246, 'exists': 11409, 'equi': 11095, 'necessarily': 18566, 'happen': 13480, 'possibly': 20775, 'crl': 8814, 'co': 7825, 'jp': 15499, 'visiting': 27671, 'researcher': 22308, 'phone': 20295, '0423': 166, '1111': 416, 'tokyo': 26224, 'fax': 11750, '7742': 3049, 'ch381': 7329, 'algorithms': 4402, 'object': 19106, 'recognition': 21881, 'western': 28078, 'reserve': 22316, 'oh': 19245, 'hela': 13670, 'ins': 14792, 'cwru': 9038, 'friend': 12374, 'describing': 9589, 'thresholding': 26053, 'segmentation': 23452, 'marr': 17247, 'hildreth': 13812, 'sobel': 24203, 'operator': 19378, 'chain': 7335, 'skeletonising': 24001, 'willing': 28214, 'algorithm': 4399, 'implemented': 14481, 'demonstrates': 9492, 'topics': 26276, 'replies': 22237, 'summary': 25238, 'newsgroup': 18705, 'couple': 8679, 'eb192': 10535, 'city': 7642, 'prb': 20874, 'digex': 9800, 'pat': 19952, 'navstar': 18516, 'express': 11502, 'online': 19327, 'communications': 8053, 'md': 17458, 'net': 18636, 'bird': 5998, 'flaking': 12002, 'expecting': 11427, 'die': 9767, 'soon': 24306, 'redundancy': 21959, 'plane': 20497, 'hicksville': 13782, 'muc': 18283, 'user': 27220, 'community': 8058, 'nova': 18965, 'cc': 7183, 'purdue': 21375, 'allen': 4433, 'tiff': 26112, 'philosophical': 20286, 'significance': 23875, '191415': 979, '10553': 378, 'samba': 23045, 'oit': 19255, 'cptully': 8721, 'med': 17498, 'christopher': 7552, 'tully': 26662, 'pathology': 19964, '62699': 2670, 'tight': 26118, 'tiff6': 26113, 'gripe': 13195, 'volunteer': 27746, 'critique': 8812, 'spec': 24436, 'quoted': 21532, 'complicated': 8152, 'nearly': 18553, 'infinitely': 14675, 'easier': 10516, 'hurts': 14195, 'acceptance': 3898, 'anything': 4773, 'images': 14424, 'paint': 19783, 'nutshell': 19051, 'salvageable': 23038, 'fat': 11727, 'trimmed': 26541, 'significantly': 23877, 'anymore': 4771, 'cut': 9016, 'back': 5457, 'late': 16204, 'maybe': 17362, 'fix': 11987, 'change': 7370, 'magic': 17019, 'signify': 23878, 'lack': 16084, 'compatibility': 8104, 'happy': 13487, 'iacs3650': 14251, 'oswego': 19545, 'mundstock': 18334, 'joe': 15426, 'robbie': 22646, 'stadium': 24684, 'instructional': 14848, 'computing': 8213, 'suny': 25273, 'did': 9762, 'anyone': 4772, 'notice': 18950, 'words': 28387, 'printed': 21031, 'picture': 20377, 'opening': 19361, 'preview': 20994, 'section': 23421, 'noticed': 18953, 'nolan': 18862, 'timeline': 26139, 'rickey': 22528, 'henderson': 13710, 'became': 5720, '5000th': 2407, 'strikeout': 25016, 'pitched': 20440, '6th': 2851, 'against': 4241, '7th': 3117, 'certain': 7288, 'stole': 24922, '939th': 3438, 'overshadowed': 19663, 'publicity': 21313, 'expense': 11438, 'imo': 14462, 'deserves': 9600, 'agrees': 4272, 'lately': 16205, 'outclassed': 19578, 'playing': 20539, 'importantly': 14492, 'attitude': 5279, 'thoughts': 26039, 'utkvx': 27270, 'bitnet': 6021, 'richard': 22515, 'mcdougald': 17403, 'illustrator': 14406, 'autotrace': 5363, 'tennessee': 25819, '0010580b': 21, 'vmcbrt': 27712, 'diablo': 9730, 'cboesel': 7180, 'charles': 7406, 'boesel': 6168, 'yeah': 28669, 'corel': 8572, 'wordperfect': 28386, 'presentations': 20957, 'pretty': 20987, 'limited': 16556, 'decent': 9303, 'raster': 21689, 'vector': 27452, 'conversion': 8504, 'tracing': 26355, 'technique': 25720, 'logos': 16720, 'goes': 12958, 'haywire': 13583, 'suspect': 25380, 'bitmapped': 6019, 'softwares': 24233, 'hasn': 13540, 'hijaak': 13808, 'industry': 14635, 'file': 11899, 'attempted': 5267, 'yet': 28685, 'opinions': 19387, 'expressed': 11503, 'herein': 13731, 'photography': 20311, 'tenn': 25817, 'knoxville': 15919, '37996': 2067, 'almost': 4462, 'utk': 27269, '974': 3521, '3449': 1975, 'things': 25990, '6435': 2711, 'gnb': 12939, 'leo': 16395, 'bby': 5685, 'au': 5293, 'gregory': 13167, 'bond': 6209, 'billion': 5947, 'residents': 22324, 'gene': 12674, 'theporch': 25956, 'raider': 21605, 'message': 17617, 'apr': 4890, 'gw': 13334, 'burdett': 6624, 'buckeridge': 6539, 'melbourne': 17537, 'australia': 5328, '6zv82b2w165w': 2858, 'wright': 28453, 'announce': 4703, 'reward': 22473, 'corporation': 8594, 'keeps': 15698, 'alive': 4418, 'keeping': 15697, 'likely': 16537, 'involve': 15049, 'environment': 11029, 'dear': 9279, 'freighter': 12356, 'landed': 16124, 'roof': 22733, 'acme': 3975, 'died': 9768, 'sad': 22993, 'gosh': 13002, 'oldest': 19269, 'quick': 21509, 'boss': 6277, 'slime': 24072, 'yoyodyne': 28727, 'tank': 25616, 'guns': 13309, 'imagine': 14433, 'sorts': 24327, 'technologies': 25727, 'developed': 9680, 'sort': 24322, 'greg': 13165, 'kidding': 15788, 'although': 4505, 'takes': 25580, 'prizes': 21058, 'encourages': 10907, 'undesirable': 26976, 'behaviour': 5762, 'witness': 28309, 'procurement': 21095, 'encourage': 10905, 'expensive': 11440, 'risk': 22589, 'proposition': 21213, 'knox': 15918, 'slick': 24061, 'fox': 12269, 'plays': 20545, 'lsl': 16845, 'apologies': 4811, 'iron': 15105, 'bar': 5568, 'mackin': 16979, 'moonbase': 18102, '3hgf3b3w165w': 2136, 'shakala': 23636, 'dante': 9147, 'charlie': 7409, 'prael': 20862, 'doug': 10228, 'memory': 17560, 'serves': 23561, 'atlas': 5237, 'outgrowth': 19591, 'old': 19264, 'titan': 26173, 'icbm': 14282, 'nope': 18896, 'confusing': 8299, 'generation': 12689, 'launchers': 16228, 'heavy': 13645, 'essentially': 11194, 'despite': 9628, 'similarity': 23906, 'names': 18455, 'missiles': 17902, 'fuels': 12437, 'facilities': 11603, 'pads': 19763, 'albeit': 4361, 'serious': 23549, 'reconditioning': 21897, 'turf': 26675, 'pad': 19756, 'bunkers': 6612, 'prep': 20939, 'midwest': 17747, 'farmland': 11706, 'prices': 21003, 'strikes': 25019, 'damned': 9118, 'cheap': 7427, 'silos': 23892, 'srbs': 24628, 'launcher': 16227, 'violations': 27641, 'normal': 18902, 'range': 21652, 'rules': 22900, 'cares': 7049, 'event': 11288, 'nuclear': 19024, 'war': 27904, 'peacetime': 20045, 'scrapped': 23324, 'mss': 18255, 'mark': 17223, 'singer': 23944, 'kingman': 15833, 'hall': 13411, 'fame': 11671, 'lundy': 16891, '408': 2173, '241': 1586, '9760': 3526, 'login': 16714, 'guest': 13281, 'fan': 11682, 'thought': 26037, 'eddie': 10596, 'mccovey': 17395, 'gehrig': 12662, 'ruth': 22940, 'mays': 17369, 'foxx': 12271, 'reggie': 22031, 'ws': 28474, 'counts': 8676, 'beastmaster': 5706, 'lsmith': 16846, 'myria': 18391, 'umn': 26880, 'lance': 16121, 'squiddie': 24618, 'smith': 24133, 'tell': 25784, 'local': 16683, 'writer': 28460, 'dumb': 10411, 'projective': 21158, 'squids': 24619, '11331': 427, 'njin': 18822, 'gajarsky': 12544, 'hobokenite': 13904, 'jayson': 15285, 'stark': 24746, 'fits': 11983, 'weekly': 28022, 'press': 20969, 'syndicate': 25504, 'america': 4553, 'dean': 9276, 'homers': 13968, 'pace': 19738, 'shot': 23787, 'shouldbe': 23792, 'usually': 27244, 'projection': 21156, 'useless': 27217, 'top': 26271, 'columns': 7970, 'projected': 21152, 'thrown': 26067, 'expect': 11423, 'plunked': 20584, 'funny': 12473, 'reviews': 22458, 'collections': 7919, 'strange': 24967, 'previous': 20998, 'regularly': 22049, 'prints': 21038, 'kinerisms': 15828, 'cr2o3': 8728, '2h2o': 1818, 'moments': 18049, 'named': 18451, 'mr': 18218, 'peanut': 20053, 'crushed': 8855, 'edition': 10610, 'headed': 13604, 'loner': 16727, 'wielding': 28182, 'aluminum': 4515, 'bat': 5641, 'signature': 23869, '_murder': 3698, 'mausoleum_': 17344, 'jdnicoll': 15305, 'prism': 21044, 'ccs': 7204, 'uwo': 27312, 'davis': 9215, 'nicoll': 18769, 'planet': 20499, 'kuiper': 16028, 'london': 16724, 'engrg': 10954, 'steinly': 24826, '93apr23130246': 3446, 'topaz': 26272, 'ucsc': 26792, 'steinn': 24828, 'sigurdsson': 23882, '1r9de3innjkv': 1267, 'gap': 12582, 'jafoust': 15243, 'jeff': 15314, 'foust': 12266, 'recent': 21865, 'belt': 5799, 'called': 6914, 'karla': 15649, 'smiley': 24129, 'always': 4523, 'possibility': 20772, '1992': 1074, 'qb1': 21423, 'discovered': 9917, 'happens': 13484, '_second_': 3715, 'vagaries': 27354, 'iau': 14268, 'let': 16413, 'slide': 24063, 'gee': 12654, 'feel': 11787, 'ignorant': 14356, 'sigma': 23863, 'rahul': 21604, 'martin': 17259, 'cview': 9029, 'stupid': 25081, 'bolero': 6189, 'a2i': 3768, 'network': 18650, 'c5levt': 6792, '1nj': 1153, 'bryanw': 6512, 'bryan': 6511, 'woodworth': 28370, '1qlobb': 1217, 'p5a': 19723, 'tuegate': 26656, 'tue': 26654, 'nl': 18825, 'renew': 22196, 'blade': 6039, 'stack': 24682, 'urc': 27188, 'rene': 22191, 'walter': 27885, 'regarding': 22025, 'dangers': 9134, 'reading': 21800, 'floppy': 12067, 'disks': 9948, 'omitted': 19302, 'unrevcoverable': 27102, 'careful': 7045, 'incredibly': 14582, 'nevertheless': 18669, 'bug': 6566, 'needs': 18583, 'squashed': 24612, 'merely': 17595, 'pointing': 20630, 'overlooked': 19648, 'affect': 4196, 'targeted': 25635, 'saw': 23145, 'explaind': 11460, 'fault': 11738, 'open': 19357, 'drive': 10320, 'disk': 9946, 'updates': 27153, 'closes': 7760, 'directory': 9863, 'true': 26592, 'destroyed': 9638, 'decoding': 9337, 'gotta': 13011, 'hat': 13547, 'mike_peredo': 17762, 'mindlink': 17811, 'bc': 5686, 'mike': 17761, 'peredo': 20132, 'fake': 11653, 'virtual': 27651, 'reality': 21816, 'link': 16588, 'british': 6446, 'columbia': 7964, 'ridiculous': 22541, 'example': 11341, 'vr': 27783, 'exploitation': 11475, 'clothing': 7767, 'company': 8067, 'recently': 21866, 'opened': 19358, 'vancouver': 27381, 'chic': 7478, 'clothes': 7766, 'spot': 24566, 'dig': 9796, 'promotional': 21175, 'lit': 16627, 'mp': 18203, 'dotzlaw': 10216, 'ccu': 7207, 'umanitoba': 26865, 'helmut': 13689, 'anti': 4749, 'aliasing': 4408, 'utility': 27261, 'murphy': 18347, 'biochem': 5980, 'manitoba': 17149, 'povray': 20820, 'wondering': 28359, 'netland': 18643, 'domain': 10167, 'skip': 24017, 'step': 24838, 'greatly': 13143, 'biochemistry': 5981, 'biology': 5987, 'winnipeg': 28269, 'dpage': 10259, 'ra': 21548, 'csc': 8887, 'quaint': 21450, 'archaisms': 4934, 'c512wc': 6728, 'b0m': 5434, 'nickh': 18762, 'nick': 18760, 'haines': 13398, '1993apr2': 1093, '170157': 845, '24251': 1591, 'deleted': 9440, 'units': 27038, 'force': 12175, 'constants': 8371, 'omnipresent': 19305, 'ft': 12419, 'sec': 23408, '_so_': 3720, 'natural': 18499, 'easy': 10529, 'figure': 11895, 'barrels': 5586, 'quart': 21480, 'foo': 12152, 'density': 9519, '17lb': 903, 'oz': 19704, 'gravity': 13130, 'face': 11594, 'imperial': 14474, 'uses': 27224, 'basically': 5629, 'metric': 17653, 'relating': 22089, 'quantities': 21465, 'hanging': 13466, 'quantity': 21466, '1731': 860, '0833': 256, 'yards': 28657, 'chains': 7338, 'everyone': 11304, 'saying': 23151, '_why_': 3744, 'apparent': 4821, 'complexity': 8151, 'si': 23833, 'multiplicity': 18313, 'aforesaid': 4220, 'prefixes': 20932, 'fundamental': 12463, 'difference': 9779, 'unit': 27035, 'values': 27377, 'multiple': 18309, 'seconds': 23415, 'minutes': 17857, 'months': 18091, 'fahrenheit': 11628, 'temperature': 25797, 'scale': 23167, 'centigrade': 7264, 'revisionists': 22461, 'coldest': 7894, 'particular': 19915, 'marked': 17226, 'thermometer': 25968, 'turns': 26686, 'em': 10810, 'marks': 17236, 'divided': 10047, 'hundredths': 14174, 'fwiw': 12505, 'represent': 22255, 'employer': 10863, 'sane': 23073, 'fot': 12249, 'renner': 22201, 'detecting': 9650, 'bezier': 5883, 'curves': 9005, 'incorporated': 14571, 'mountain': 18180, 'view': 27601, '19930420': 1078, '090030': 274, '915': 3379, 'almaden': 4457, 'ibm': 14275, 'capelli': 7001, 'vnet': 27718, 'ia522b1w165w': 14250, 'oeinck': 19202, 'waterland': 27953, 'wlink': 28327, 'ferdinand': 11821, 'calculating': 6890, 'cusp': 9006, 'curve': 9001, 'maureen': 17340, 'stone': 24929, 'derose': 9572, 'geometric': 12755, 'characterization': 7393, 'parametric': 19865, 'acm': 3974, 'tog': 26217, 'vol': 27733, 'july': 15569, '1989': 1067, 'pp': 20835, '163': 800, 'tech': 25710, 'characterizing': 7396, 'xerox': 28544, 'edl': 10617, 'december': 9301, 'palo': 19816, 'alto': 4511, '3333': 1942, 'coyote': 8714, 'road': 22636, '94303': 3464, '415': 2189, '4440': 2256, 'details': 9647, 'zappala': 28759, 'pollux': 20663, 'usc': 27208, 'daniel': 9138, 'marlins': 17244, '1psiepinnlj0': 1187, 'southern': 24347, 'los': 16772, 'angeles': 4657, '1psgriinni1': 1185, 'rpco10': 22816, 'acslab': 4001, 'umbc': 26869, 'cs106116': 8876, 'watching': 27950, 'orioles': 19500, 'tv': 26694, 'yesterday': 28684, 'monday': 18056, 'came': 6931, 'booth': 6247, 'leadoff': 16295, 'knocked': 15905, 'walt': 27884, 'weiss': 28042, 'tripled': 26548, 'barely': 5575, 'inside': 14803, 'corner': 8583, 'driving': 10327, 'santiago': 23084, 'conine': 8316, 'rbis': 21744, 'sportwriters': 24564, 'csc2imd': 8888, 'cabell': 6851, 'vcu': 27445, 'ian': 14259, 'derby': 9560, 'sat': 23107, 'virginia': 27648, 'commonwealth': 8045, 'sportswriters': 24562, 'brought': 6488, 'sports': 24557, 'radio': 21577, 'howabout': 14059, 'sportswriting': 24563, 'opinion': 19386, 'coverage': 8697, 'terms': 25840, 'print': 21029, 'media': 17501, 'philadelphia': 20273, 'inquier': 14783, 'daily': 9103, 'york': 28708, 'papers': 19839, 'subjective': 25107, 'objective': 19111, 'djf': 10065, 'cck': 7198, 'coventry': 8695, 'marvin': 17266, 'batty': 5662, 'vandalizing': 27384, 'sky': 24024, 'cc_sysk': 7185, 'starfleet': 24743, 'c5t05k': 6821, 'db6': 9231, 'canon': 6978, 'enzo': 11041, 'liguori': 16532, 'physics': 20348, 'friday': 12370, 'dc': 9238, 'billboards': 5942, 'spinoffs': 24517, 'promised': 21165, 'fiction': 11867, 'heinlein': 13667, 'published': 21318, 'sold': 24246, 'dispute': 9981, 'rights': 22557, 'billboard': 5941, 'firsteps': 11966, 'toward': 26332, 'hideous': 13786, 'observers': 19138, 'startled': 24757, 'arrived': 5039, 'schwarzenegger': 23257, 'painted': 19785, 'huge': 14135, 'block': 6088, 'letters': 16422, 'booster': 6243, 'rockets': 22670, 'worse': 28422, 'eighties': 10703, 'teen': 25742, 'adult': 4129, 'comic': 7999, '2000ad': 1292, 'fleetway': 12031, 'produced': 21099, 'story': 24955, 'featuring': 11776, 'award': 5407, 'winning': 28267, 'judge': 15548, 'dredd': 10303, 'focussed': 12121, 'advertising': 4150, 'powered': 20827, 'coloured': 7959, 'lasers': 16192, 'search': 23391, 'lights': 16525, 'pointed': 20626, 'needless': 18581, 'hacked': 13382, 'load': 16669, 'lovers': 16813, 'romantics': 22724, 'werewolfs': 28065, 'crazies': 8761, 'guys': 13327, 'chopped': 7529, 'discontinued': 9910, 'cautionary': 7155, 'tale': 25583, 'indeed': 14591, 'cov': 8694, 'rafia': 21599, 'fathers': 11733, 'put': 21392, 'clock': 7749, 'loos': 16754, 'cup': 8969, 'hp': 14070, 'bonds': 6211, 'maddux': 16998, 'hpisq3lk': 14084, 'hewlett': 13761, 'packard': 19747, 'pl4': 20475, 'giants': 12818, 'newspapers': 18713, 'notesgroup': 18945, 'close': 7754, 'hitters': 13866, 'struggle': 25048, 'barry': 5595, 'swing': 25456, 'effortless': 10666, 'clark': 7670, 'particularly': 19916, 'hit': 13856, 'sure': 25336, 'revenge': 22447, 'stroked': 25031, 'hits': 13864, 'doing': 10156, 'surprising': 25357, 'seem': 23441, 'swinging': 25458, 'clayton': 7688, 'superb': 25276, 'mcgee': 17411, 'manwaring': 17173, 'forth': 12232, 'continues': 8444, 'continue': 8442, 'june': 15576, 'real': 21810, 'myself': 18395, 'fresh': 12364, 'magowan': 17042, 'baker': 5501, 'wiped': 28278, 'negatives': 18590, 'helping': 13694, 'darrrrrrrrryl': 9170, 'beating': 5710, 'incident': 14542, 'dodger': 10139, 'wednesday': 28013, 'death': 9280, 'haven': 13567, 'rsb': 22840, 'gerald': 12773, 'perry': 20193, 'cardinals': 7036, 'pinch': 20403, 'eighth': 10702, 'inning': 14766, 'club': 7780, 'cleared': 7702, 'fence': 11815, 'went': 28061, 'crowd': 8833, 'darryl': 9171, 'racing': 21559, 'glove': 12914, 'missed': 17899, 'row': 22798, 'wearing': 27999, 'mitt': 17927, 'caught': 7149, 'replay': 22232, 'concluded': 8242, 'behind': 5763, 'fans': 11688, 'seats': 23403, 'vicinity': 27578, 'claimed': 7659, 'unquestionably': 27092, 'interfered': 14927, 'strawberry': 24988, 'cannot': 6976, 'disputed': 9982, 'however': 14066, 'oblivious': 19120, 'where': 28117, 'exuberant': 11550, 'realized': 21820, 'catch': 7131, 'exuberance': 11549, 'disappeared': 9879, 'tirade': 26166, 'reports': 22250, 'profanity': 21109, 'accused': 3945, 'interference': 14928, 'costing': 8648, 'dodgers': 10140, 'shortly': 23779, 'hurled': 14186, 'food': 12153, 'beverages': 5879, 'officials': 19233, 'started': 24753, 'remove': 22169, 'park': 19882, 'relented': 22109, 'relocated': 22136, 'area': 4963, 'interview': 14989, 'lasorda': 16195, 'blamed': 6043, 'care': 7040, 'columnists': 7969, 'similarly': 23907, 'blasted': 6055, 'announcer': 4708, 'makes': 17092, 'speech': 24477, 'wherein': 28120, 'says': 23152, 'souvenirs': 24351, 'balls': 5536, 'stands': 24719, 'interfere': 14926, 'acted': 4004, 'reacting': 21785, 'ticket': 26098, 'holder': 13934, 'request': 22287, 'questioned': 21505, 'concerned': 8233, 'grand': 13077, 'nine': 18802, 'left': 16342, 'handed': 13445, 'pull': 21334, 'closer': 7758, 'catching': 7134, 'debate': 9284, 'admiral': 4100, 'jhunix': 15373, 'hcf': 13592, 'jhu': 15371, 'liu': 16638, 'homewood': 13974, 'johns': 15443, 'hopkins': 14011, 'stellar': 24830, 'lost': 16784, 'rangers': 21655, 'rick': 22523, 'sutcliffe': 25399, 'innings': 14767, 'remembering': 22155, 'wound': 28434, '5th': 2604, 'mussina': 18359, 'mcdonald': 17399, 'rhodes': 22499, 'prospects': 21223, 'ballard': 5521, 'milacki': 17767, 'oriole': 19498, 'scared': 23183, 'cincy': 7601, 'montreal': 18092, 'florida': 12070, '8th': 3339, 'cubs': 8943, 'futility': 12494, 'haunting': 13561, 'yanks': 28654, 'tribe': 26518, '____________________________________________________________________________': 3609, 'internet': 14953, 'chief': 7484, 'division': 10053, 'chapter': 7386, 'president': 20966, 'founded': 12259, 'champions': 7359, 'stanley': 24726, 'capitals': 7009, 'liberation': 16472, 'intergration': 14933, 'terrifying': 25855, 'organisms': 19466, 'rehabilitation': 22056, 'society': 24212, 'abbreviation': 3817, 'clitoris': 7743, 'polymorph': 20677, 'episode': 11065, 'dwarf': 10453, 'bangles': 5555, 'greatest': 13141, 'rock': 22663, 'band': 5548, 'existed': 11404, 'sig': 23852, 'frungy': 12405, 'sport': 24556, 'kings': 15835, 'god': 12950, 'drilling': 10317, 'holes': 13940, 'head': 13602, 'mccoy': 17396, 'susanna': 25379, 'hoffs': 13921, 'ass': 5115, 'comment': 8012, 'flanagan': 12010, 'creating': 8771, 'signatures': 23871, '1r46o9inn14j': 1250, 'mojo': 18032, 'eng': 10938, 'umd': 26875, 'sysmgr': 25519, 'king': 15830, 'c5teik': 6822, '7z9': 3125, 'hard': 13491, 'hurry': 14189, 'contracts': 8458, 'privately': 21050, 'cuts': 9019, 'costs': 8651, 'venture': 27490, 'assuming': 5159, 'talk': 25588, 'leasing': 16317, 'posible': 20750, 'intended': 14887, 'seriously': 23550, 'bio': 5976, 'engineered': 10946, 'co2': 7826, 'absorbing': 3858, 'plants': 20514, 'lox': 16825, 'bottles': 6287, 'cave': 7161, 'airlock': 4319, 'door': 10198, 'jgarland': 15366, 'kean': 15689, 'ucs': 26790, 'mun': 18329, 'comet': 7993, 'temporary': 25805, 'jupiter': 15582, 'memorial': 17557, 'st': 24670, 'nfld': 18735, '1993apr19': 1092, '020359': 103, '26996': 1689, 'sq': 24607, 'msb': 18234, 'brader': 6341, 'answered': 4735, 'instance': 14829, 'gehrels': 12660, 'earlier': 10498, 'elements': 10757, '1977vii': 1049, 'dance': 9125, '424346': 2212, '151899': 715, '0988': 290, 'cap_omega': 6993, '5652': 2528, '1607': 780, 'epoch': 11069, '1977': 1048, '04110': 162, 'perihelions': 20155, 'gehrels3': 12661, '1973': 1044, 'radii': 21576, 'august': 5310, '1970': 1040, 'km': 15885, 'mi': 17682, '0005': 15, 'unlikely': 27066, 'perijove': 20156, '_perijoves_': 3708, 'talking': 25591, 'language': 16146, 'garland': 12594, 'carrd': 7071, 'iccgcc': 14284, 'decnet': 9330, 'david': 9209, 'wells': 28057, 'tigers': 26115, 'anemic': 4653, 'grab': 13035, 'guy': 13326, 'pronto': 21184, 'un034214': 26890, 'wvnvms': 28494, 'wvnet': 28493, 'motion': 18161, 'yuv': 28741, 'rgb': 22490, 'educational': 10632, 'telecomputing': 25761, 'convert': 8506, 'portion': 20736, 'byte': 6697, '255': 1644, 'intensity': 14894, 'algorhtyms': 4398, 'television': 25779, 'signal': 23865, 'converting': 8510, 'digital': 9803, 'ntsc': 19019, 'displaying': 9976, 'captured': 7022, 'pictures': 20378, 'vast': 27422, 'bandwidth': 5552, 'wraps': 28446, 'cspara': 8906, 'fedex': 11782, 'msfc': 18245, 'cdt': 7223, 'originator': 19496, 'school': 23236, 'carnegie': 7064, 'mellon': 17542, '17apr199316423628': 901, 'judy': 15554, '1993apr18': 1091, '034101': 147, '21934': 1448, 'iti': 15197, 'org': 19459, '18apr199313560620': 962, 'dennis': 9510, 'zillion': 28789, 'response': 22366, 'wrote': 28471, 'politics': 20654, 'alt': 4491, 'flame': 12003, 'music': 18355, 'pop': 20706, 'eat': 10530, 'poppies': 20711, 'patrol': 19974, 'anywhere': 4778, 'moons': 18105, 'dkeisen': 10077, 'leland': 16379, 'stanford': 24720, 'eisen': 10713, 'knepper': 15896, 'damn': 9117, 'sequoia': 23541, 'peripherals': 20167, 'sucked': 25181, '035406': 148, '11473': 436, 'yale': 28639, 'austin': 5326, 'jacobs': 15237, 'mon': 18054, 'heck': 13646, 'cause': 7150, 'surprised': 25355, 'hear': 13626, 'tiny': 26159, 'fraction': 12280, 'folks': 12133, 'agree': 4268, 'replying': 22239, 'pam': 19821, 'postema': 20783, 'aaa': 3787, 'umpire': 26884, 'sued': 25189, 'suing': 25213, 'grounds': 13217, 'sex': 23599, 'discrimination': 9927, 'she': 23685, 'promoted': 21171, 'majors': 17086, 'jeez': 15312, 'woman': 28353, 'thinks': 25994, 'ump': 26882, 'watched': 27948, 'iq': 15082, 'greater': 13140, 'roast': 22642, 'beef': 5734, 'umpires': 26885, 'her': 13723, 'call': 6908, 'rulebook': 22898, 'missing': 17903, 'sees': 23447, 'role': 22709, 'promote': 21170, 'either': 10716, 'primary': 21015, 'calling': 6917, 'baserunners': 5623, 'safe': 22997, 'hell': 13683, 'function': 12456, 'moving': 18198, 'extremely': 11543, 'disqualifies': 9984, 'men': 17561, 'secondary': 23412, 'succeed': 25164, '967': 3509, '5644': 2525, 'mannered': 17155, 'voltaire': 27740, '5154': 2447, 'jsr2': 15538, 'ns1': 18993, 'lehigh': 16369, 'stephen': 24841, 'randolph': 21649, '198': 1052, '115313': 441, '17986': 899, 'bsu': 6521, '00mbstultz': 58, 'bsuvc': 6522, 'determine': 9660, 'postions': 20793, 'historical': 13851, 'abstract': 3863, 'ballplayers': 5535, 'biography': 5984, 'word': 28382, 'mouth': 18186, 'biased': 5896, 'suggest': 25203, 'tried': 26528, 'possible': 20773, 'inlcuded': 14760, 'convience': 8514, 'sake': 23019, 'judged': 15549, 'rel': 22086, 'adj': 4082, 'ops': 19402, 'rating': 21703, 'stolen': 24923, 'bases': 5625, 'curiosity': 8977, 'tpr': 26344, 'played': 20534, 'mvp': 18372, 'lou': 16790, 'jimmie': 15386, 'hank': 13468, 'greenberg': 13155, 'johnny': 15442, 'mize': 17935, 'willie': 28213, 'dick': 9753, 'harmon': 13514, 'killebrew': 15804, 'kieth': 15798, 'hernandez': 13739, 'keith': 15702, 'bill': 5939, 'george': 12761, 'sisler': 23965, 'morgan': 18124, 'jackie': 15232, 'robinson': 22654, 'rogers': 22700, 'hornsby': 14022, 'nap': 18461, 'lajoie': 16101, 'rhyne': 22503, 'sandberg': 23063, 'learn': 16312, 'spell': 24487, 'ryne': 22959, 'gehringer': 12663, 'rod': 22682, 'carew': 7050, 'bobby': 6150, 'grich': 13178, 'doerr': 10143, 'ss': 24651, 'honus': 13994, 'wagner': 27845, 'ripken': 22581, 'jr': 15527, 'lloyd': 16657, 'ozzie': 19709, 'robin': 22652, 'cronin': 8817, 'arky': 4999, 'vaughan': 27426, 'luke': 16876, 'appling': 4850, 'ernie': 11138, 'banks': 5560, 'boudreau': 6292, 'matthews': 17332, 'santo': 23085, 'brooks': 6481, 'darrell': 9167, 'evans': 11276, 'pie': 20379, 'traynor': 26474, 'dandridge': 9127, '1a': 1123, 'darren': 9168, 'daulton': 9202, 'yogi': 28702, 'berra': 5852, 'bench': 5806, 'mickey': 17696, 'cochrane': 7846, 'dickey': 9756, 'gabby': 12526, 'hartnett': 13533, 'roy': 22806, 'campanella': 6943, 'carlton': 7061, 'thurman': 26085, 'munson': 18340, 'lf': 16447, 'williams': 28208, 'stan': 24705, 'musial': 18354, 'carl': 7053, 'yastrzemski': 28662, 'tim': 26134, 'jackson': 15234, 'ralph': 21635, 'kiner': 15827, 'stargell': 24745, 'simmons': 23910, 'cf': 7307, 'ty': 26731, 'cobb': 7841, 'tris': 26556, 'speaker': 24431, 'mantle': 17159, 'dimaggio': 9822, 'oscar': 19525, 'charleston': 7407, 'andre': 4640, 'duke': 10406, 'snider': 24179, 'kirby': 15843, 'dale': 9110, 'rf': 22484, 'babe': 5448, 'aaron': 3804, 'mel': 17535, 'ott': 19560, 'kaline': 15626, 'roberto': 22649, 'clemente': 7710, 'gwynn': 13344, 'pete': 20228, 'lefty': 16349, 'christy': 7553, 'mathewson': 17317, 'alexander': 4381, 'tom': 26236, 'seaver': 23405, 'roger': 22699, 'warren': 27925, 'spahn': 24392, 'satchel': 23108, 'paige': 19775, 'juan': 15546, 'marichal': 17213, 'whitey': 28143, 'feller': 11806, 'estimated': 11208, '33': 1931, 'haston': 13546, 'donald': 10182, 'wayne': 27977, 'church': 7577, 'christian': 7546, 'suitable': 25217, 'prefer': 20920, 'helpful': 13693, 'bulletin': 6590, 'boards': 6142, 'nature': 18501, 'products': 21107, 'inform': 14697, 'nsmca': 19000, 'aurora': 5317, 'alaska': 4357, 'portable': 20727, 'dir': 9847, '1993apr5': 1103, '185700': 946, 'fairbanks': 11642, 'acad3': 3881, 'c4zgam': 6718, '2nj': 1822, '214705': 1428, 'extreme': 11542, 'amateur': 4533, 'reachable': 21780, 'held': 13671, 'radios': 21585, 'yard': 28656, 'listen': 16618, 'galileo': 12553, 'dadies': 9091, 'monitor': 18063, 'control': 8480, 'michael': 17690, 'adams': 4045, 'jacked': 15229, 'rkoffler': 22619, 'ux4': 27318, 'cso': 8905, 'uiuc': 26834, 'bighelmet': 5925, 'illinois': 14393, 'urbana': 27186, 'inquirer': 14785, 'tuesday': 26657, 'review': 22455, 'column': 7967, 'unusual': 27134, 'situations': 23976, 'occured': 19166, 'mets': 17659, 'brodcaster': 6465, 'lgtgah': 16454, 'contest': 8428, 'highlights': 13801, 'check': 7431, 'sometime': 24286, 'laugh': 16220, 'rob': 22643, 'koffler': 15935, 'dream': 10301, 'tomorrow': 26245, 'henley': 13713, '18084tm': 912, 'msu': 18268, 'fred': 12331, 'naseum': 18477, '189': 958, 'sez': 23603, 'impressed': 14503, 'prospecting': 21221, 'lpi': 16831, 'geared': 12649, 'towards': 26333, 'industrially': 14633, 'silly': 23891, 'processes': 21090, 'excuse': 11376, 'translation': 26427, 'szabo': 25528, 'complaining': 8138, 'complaints': 8141, 'clear': 7700, 'explanation': 11464, 'feelings': 11789, 'method': 17648, 'judgments': 15552, 'meaning': 17470, 'complain': 8136, 'trash': 26459, 'trashing': 26461, 'bad': 5477, 'deliberate': 9444, 'obtuseness': 19150, 'alleged': 4425, 'stopped': 24939, 'patently': 19960, 'allegorically': 4429, 'along': 4471, 'honestly': 13983, 'reporting': 22249, 'policy': 20650, 'projects': 21160, 'baiting': 5497, 'enter': 10991, 'remotely': 22167, 'resembling': 22314, 'disagrees': 9876, 'attacking': 5262, 'lazy': 16262, 'bastard': 5640, 'temerity': 25793, 'disagree': 9874, 'almight': 4460, 'questioning': 21506, 'peoples': 20114, 'ethics': 11232, 'lord': 16764, 'bwaaaaahhhaaaa': 6684, 'glad': 12877, 'ratio': 21705, 'insult': 14859, 'tommy': 26244, 'generally': 12682, 'dealing': 9273, 'conflict': 8286, 'interpretations': 14966, 'belief': 5777, 'adequately': 4078, 'suffice': 25195, 'poll': 20656, 'psuedo': 21288, 'usual': 27242, 'defend': 9375, 'insults': 14862, 'lawnmower': 16243, 'besides': 5858, 'whether': 28122, 'lame': 16112, 'contradicting': 8462, 'sentence': 23514, 'broke': 6468, 'borrowed': 6268, 'tool': 26263, 'gave': 12630, 'broken': 6469, 'yer': 28682, 'convinced': 8518, 'necessary': 18567, 'parts': 19925, 'impune': 14518, 'motives': 18169, 'divergent': 10040, 'show': 23801, 'terminal': 25832, 'cocluded': 7849, 'conclusion': 8244, 'incorrect': 14573, 'taking': 25581, 'communication': 8052, 'style': 25088, 'comprehension': 8173, 'inadequate': 14528, 'rewarded': 22474, 'denial': 9504, 'smart': 24118, 'remark': 22146, 'risking': 22590, 'childish': 7491, 'ire': 15094, 'wrongly': 28470, 'interpreting': 14969, 'somewhere': 24289, 'jealous': 15306, 'guarding': 13275, 'valuable': 27373, 'idea': 14310, 'manned': 17153, 'toaster': 26207, 'infrastructure': 14717, 'finished': 11942, 'hail': 13395, 'provided': 21252, 'ignore': 14358, 'giving': 12872, 'latter': 16214, 'cheeto': 7447, 'string': 25021, 'mags': 17043, 'raving': 21718, '_i_': 3675, '_your_': 3749, 'assumption': 5160, 'insulted': 14860, 'alas': 4356, 'simultaneously': 23933, 'allegory': 4430, 'sadly': 22996, 'addressed': 4070, 'behaviors': 5761, 'posts': 20798, 'obnoxious': 19121, 'behavior': 5760, 'dense': 9516, 'delivery': 9460, 'bait': 5496, 'perpetuating': 20190, 'discourse': 9915, 'elicits': 10768, 'baits': 5498, 'fool': 12155, 'list': 16615, 'views': 27609, 'dedicated': 9357, 'mom': 18047, 'flaming': 12007, 'explaining': 11462, 'yourself': 28723, 'weren': 28064, 'deliberately': 9445, 'waste': 27940, 'socrates': 24216, 'neat': 18556, 'criticism': 8806, 'fatherly': 11732, 'admonitions': 4109, 'handled': 13453, 'usenet': 27218, 'somewhat': 24288, 'rebuffed': 21852, 'hypocritical': 14239, 'immaturity': 14449, 'pique': 20428, 'ghod': 12811, 'wannabe': 27899, 'turned': 26681, 'hence': 13708, 'instructed': 14846, 'brief': 6422, 'haitus': 13403, 'rude': 22880, 'unneccesary': 27075, 'amazing': 4538, 'flames': 12006, 'decide': 9308, 'flamers': 12005, 'isn': 15150, 'immature': 14448, 'naturally': 18500, 'correctly': 8604, 'interpreted': 14967, 'motivations': 18167, 'yours': 28722, 'insulting': 14861, 'proves': 21250, 'fill': 11905, 'garbage': 12585, 'impress': 14502, 'belongs': 5797, 'jerk': 15337, 'intellectual': 14880, 'turning': 26683, 'tables': 25548, 'bringing': 6439, 'noble': 18846, 'superior': 25294, 'intellect': 14879, 'becuase': 5728, 'communicate': 8048, 'self': 23472, 'righteous': 22550, 'exposed': 11498, 'nother': 18947, 'stupider': 25082, 'mccall': 17388, 'alone': 4470, 'heart': 13630, 'attempt': 5266, 'approach': 4869, 'dropping': 10333, 'mcwilliams': 17457, '2178': 1440, 'wk': 28321, 'increases': 14577, 'cl': 7655, '9591': 3496, 'circumference': 7621, 'mystery': 18399, 'grows': 13233, 'buttigieg': 6676, 'f635': 11581, 'n713': 18425, 'z3': 28746, 'fido': 11872, 'zeta': 28781, 'lo': 16667, 'fidonet': 11873, 'gate': 12614, 'admin': 4093, 'socs': 24217, 'uts': 27276, 'keithley': 15703, 'kc': 15681, 'kralizec': 15987, '713': 2895, 'goals': 12948, 'aw': 5404, 'relative': 22094, 'dynamics': 10474, 'scheme': 23215, 'involving': 15053, 'iv': 15210, 'lift': 16512, 'centaur': 7253, 'stage': 24690, 'lev': 16424, 'capsule': 7016, 'delivering': 9458, 'unmanned': 27072, 'joint': 15451, 'esa': 11162, 'practical': 20853, 'tonnes': 26257, 'decade': 9294, 'precise': 20891, 'modify': 18012, 'gd': 12642, 'zurbrin': 28819, 'compact': 8061, 'direct': 9851, 'carry': 7079, 'o2': 19072, 'plant': 20512, 'ta': 25545, 'golded': 12965, 'origin': 19488, 'vulcan': 27802, 'sydney': 25484, '635': 2683, '1204': 477, 'ez027993': 11564, 'ucdavis': 26777, 'villanueva': 27622, 'huckabay': 14124, '1986': 1061, 'julio': 15567, 'machado': 16961, 'candlelight': 6972, 'vigil': 27613, 'videos': 27591, 'studying': 25072, 'videotapes': 27595, 'proved': 21247, 'enlightening': 10972, 'analysis': 4612, 'circa': 7609, 'sep': 23520, 'bulked': 6585, 'gain': 12540, 'bulk': 6584, 'absolutely': 3854, 'vanished': 27395, 'conservatively': 8341, 'stance': 24706, 'killing': 15806, 'acts': 4024, 'brian': 6418, 'downing': 10242, 'released': 22106, 'movement': 18192, 'hips': 13832, 'closed': 7755, 'adjustments': 4088, 'salting': 23035, 'away': 5411, 'sum': 25227, 'cash': 7101, 'touch': 26312, 'restructure': 22388, 'entire': 11007, 'minimize': 17833, 'widen': 28174, 'severely': 23595, 'stride': 25012, 'hopefully': 14008, 'allow': 4447, 'move': 18190, 'bathead': 5646, 'freely': 12344, 'drop': 10331, 'relax': 22099, 'wrists': 28457, 'power': 20825, 'stroke': 25029, 'shoulder': 23793, 'rolling': 22715, 'strike': 25015, 'zone': 28800, 'drives': 10326, 'strength': 25001, 'resulting': 22394, 'habits': 13376, 'result': 22391, '600': 2607, 'loud': 16791, 'hole': 13939, 'movie': 18196, 'hearing': 13628, 'sir': 23959, 'thru': 26070, 'turn': 26679, 'age': 4245, 'liked': 16535, 'star': 24731, 'trek': 26490, '1993apr25': 1099, '154449': 735, 'accident': 3907, 'worm': 28416, 'glitch': 12901, 'makeup': 17093, 'survivour': 25377, 'failed': 11631, 'asumes': 5207, 'seth': 23575, 'north1': 18912, 'acpub': 3981, 'wandersman': 27895, '30d': 1863, 'studio': 25068, 'ram': 21637, 'gotten': 13012, 'cb': 7169, 'wixer': 28315, 'bga': 5886, 'cyberspace': 9046, 'buddha': 6547, 'places': 20486, 'temp': 25794, 'beg': 5747, 'differ': 9778, 'batch': 5642, 'cd': 7213, 'resides': 22325, 'invokes': 15048, 'crash': 8748, 'root': 22739, 'attention': 5275, 'cactus': 6860, 'chair': 7339, 'hillary': 13815, 'peace': 20043, 'punjabi': 21363, 'sanjeev': 23079, 'mcgriff': 17416, 'padres': 19762, 'agent': 4251, 'dsg': 10356, '94305': 3465, 'sean': 23389, 'mcmains': 17434, 'unt': 27125, 'rumours': 22906, '3do': 2123, 'xxmessage': 28618, 'id': 14306, 'a7f2fc4e8b01023c': 3775, 'seanmac': 23390, 'acs': 3998, 'xxdate': 28617, 'useragent': 27221, 'nuntius': 19044, 'v1': 27324, '1d20': 1135, '144843': 664, '19549': 1019, 'rchland': 21750, 'ricardo': 22511, 'muchado': 18285, 'cpu': 8722, 'understand': 26961, '68070': 2795, 'supposedly': 25327, 'variation': 27408, '68000': 2790, '68010': 2791, '7mhz': 3113, 'truly': 26597, 'sprites': 24591, 'wow': 28436, 'interested': 14919, 'especially': 11182, 'considering': 8348, 'motorola': 18174, '68060': 2794, '680x0': 2796, 'playback': 20533, 'lawrence': 16244, 'referring': 21986, 'plain': 20491, 'codec': 7855, 'digitized': 9808, 'commercials': 8023, 'centris': 7272, '30fps': 1864, 'nicely': 18749, 'depth': 9554, 'risc': 22585, 'processor': 21092, 'full': 12443, 'implied': 14485, 'taxed': 25669, 'dynamic': 10471, 'material': 17301, 'gopher': 12992, '817': 3181, '2039': 1341, 'bands': 5551, '4060': 2170, '13495': 601, 'denton': 9521, '76203': 3033, 'hoboken': 13903, 'trhink': 26505, 'gaj': 12543, 'uct': 26796, 'za': 28750, 'torrance': 26294, 'automatic': 5355, 'layout': 16257, 'diagrams': 9735, 'department': 9528, 'cape': 7000, 'town': 26336, 'honours': 13993, 'graphical': 13098, 'simulator': 23930, 'finite': 11945, 'automata': 5352, 'diagram': 9734, 'fsa': 12416, 'textual': 25895, 'grammar': 13075, 'labeled': 16068, 'arc': 4930, 'cross': 8822, 'compile': 8129, 'pjtier01': 20470, 'ulkyvx': 26848, 'louisville': 16798, 'finnally': 11950, 'phils': 20290, 'c4yxmj': 6717, 'ble': 6064, 'udel': 26797, 'philly': 20285, 'bach': 5455, 'hite': 13861, '1993apr3': 1101, '182452': 921, 'everytime': 11307, 'successfuls': 25172, 'phillies': 20279, 'ripped': 22582, 'pittsburgh': 20452, 'calcutta': 6895, 'ignoramouses': 14354, 'respected': 22354, 'writers': 28461, 'country': 8674, 'reasoning': 21840, 'genius': 12703, 'sound': 24333, 'lesse': 16408, 'thompson': 26018, 'incaviglia': 14536, 'teacher': 25694, 'rains': 21619, 'walk': 27863, 'tierney': 26109, 'equal': 11081, 'javier': 15278, 'ruben': 22873, 'amaro': 4531, '249': 1613, '1hr': 1141, '334ab': 1948, '7hr': 3112, '374': 2058, 'improvement': 14512, 'equate': 11090, '6or': 2850, 'lenny': 16392, 'dykstra': 10469, '301': 1838, '39rbi': 2109, 'thus': 26089, '11hr': 466, '70rbi': 2886, 'bump': 6599, 'kruk': 16003, 'hollins': 13949, 'tad': 25556, 'respectively': 22356, 'fair': 11641, 'managed': 17118, 'knock': 15904, 'bozo': 6327, 'wes': 28071, 'chamberlain': 7353, 'month': 18089, 'horrible': 14024, '80': 3126, 'injury': 14755, 'decimation': 9314, 'danny': 9143, 'schilling': 23220, 'adding': 4062, 'expansion': 11421, 'thats': 25928, 'dipshit': 9846, 'genuious': 12714, 'foolish': 12160, 'clue': 7783, 'relaying': 22102, 'bw': 6683, 'responding': 22361, 'dwarner': 10456, 'journalism': 15484, 'indiana': 14602, 'yankee': 28649, 'bullpen': 6592, 'clove': 7776, 'alan': 4354, 'sepinwall': 23532, 'blues': 6115, 'buck': 6538, 'gonna': 12979, 'logical': 16713, 'fire': 11956, 'blue': 6113, 'riddle': 22534, 'productions': 21105, 'rap': 21670, 'art': 5049, 'ep': 11050, 'coming': 8001, 'tape': 25625, 'ivem': 15214, 'sgi': 23614, 'practices': 20857, 'crimson': 8796, 'kubota': 16022, '30523': 1851, 'hacgate': 13379, 'scg': 23204, 'hac': 13378, 'lee': 16332, 'rsg': 22845, 'complained': 8137, 'newer': 18684, 'architectures': 4945, 'upgrade': 27157, 'path': 19962, 'older': 19268, 'ones': 19321, 'dec': 9293, 'nor': 18897, 'intend': 14886, 'lynx': 16924, 'prepared': 20944, 'sedative': 23430, 'vendors': 27485, 'supported': 25319, 'opengl': 19360, 'further': 12482, 'annoyed': 4713, 'led': 16331, 'multiprocessor': 18319, 'assistance': 5142, 'fork': 12205, 'truck': 26589, 'irises': 15100, 'architecture': 4944, 'flushed': 12093, 'investors': 15039, 'positive': 20760, 'quarterly': 21483, 'bottom': 6288, 'odd': 19190, 'pressured': 20974, 'occasions': 19158, 'business': 6664, 'quarter': 21481, 'tired': 26168, 'boned': 6213, 'buys': 6681, 'sgis': 23617, 'onesies': 19322, 'twosies': 26728, 'entitled': 11011, 'peek': 20064, 'covers': 8702, 'kids': 15793, 'labs': 16078, 'organizations': 19469, 'spend': 24492, 'computers': 8208, 'buying': 6680, 'regular': 22048, 'boxes': 6318, 'grant': 13084, 'beyond': 5882, 'product': 21103, 'paraphrase': 19869, 'poster': 20784, 'niche': 18752, 'compete': 8115, 'vendor': 27484, 'spent': 24495, 'tax': 25667, 'dollars': 10162, 'pardon': 19872, 'hiss': 13845, 'fume': 12453, 'dark': 9154, 'libelous': 16469, 'lm001': 16660, 'rrz': 22831, 'uni': 27006, 'koeln': 15931, 'de': 9262, 'erwin': 11160, 'keeve': 15700, 'marchin': 17195, 'cubes': 8941, 'regional': 22034, 'cologne': 7939, 'rs1': 22833, 'polygon': 20668, 'reduction': 21956, 'polygon_reduction': 20669, 'marching': 17196, 'cube': 8939, 'surfaces': 25341, 'algirithm': 4394, 'schroeder': 23246, 'siggraph': 23853, 'hints': 13828, 'hugs': 14139, 'kisses': 15849, '___________________________________________ooo__': 3613, '__ooo_____________': 3626, 'adress': 4119, 'peter': 20229, 'welter': 28058, 'platz': 20529, '5000': 2405, 'computergraphics': 8206, '221': 1463, '20189': 1326, 'computeranimation': 8205, 'academy': 3884, 'arts': 5065, 'khm': 15776, '_______________________________': 3586, '_____________________________________': 3591, 'predictions': 20912, 'c5jcrf': 6769, 'krm': 15999, 'ravel': 21715, 'dead': 9266, 'fregosi': 12354, 'managing': 17124, 'thank': 25923, 'record': 21906, 'asshole': 5134, 'confused': 8297, 'somebody': 24274, 'appreciate': 4861, 'extended': 11513, 'courtesy': 8691, 'everything': 11306, 'surprise': 25354, 'shapiro': 23659, 'organized': 19470, 'minerva': 17820, 'cis': 7630, 'kearns': 15690, 'wed': 28012, '09': 271, 'edt': 10627, 'woof': 28372, 'monkey': 18067, 'felt': 11809, 'piano': 20355, 'trombone': 26576, 'belinda': 5784, 'higgins': 13794, 'fnalf': 12109, 'fnal': 12107, 'beam': 5699, 'jockey': 15422, 'fermi': 11825, 'accelerator': 3892, '051309': 186, '22252': 1480, 'stortek': 24954, 'pg': 20248, 'sanitas': 23077, 'gilmartin': 12849, 'experts': 11454, 'explain': 11458, 'gets': 12794, 'jovian': 15493, 'begin': 5750, 'gravitational': 13127, 'forces': 12178, 'heating': 13633, 'outgassing': 19589, 'inner': 14765, 'galilean': 12552, 'intuition': 15010, 'masses': 17284, 'whatsoever': 28106, 'technically': 25716, 'phase': 20260, 'capture': 7021, 'trajectories': 26388, 'negligible': 18592, '2e27': 1810, 'kg': 15765, '1e23': 1138, 'looked': 16740, 'mention': 17572, 'breakup': 6383, 'reverse': 22451, 'slingshot': 24074, 'leads': 16296, 'weakly': 27992, 'bound': 6302, 'doth': 10213, 'haunt': 13560, 'fermilab': 11826, 'dressed': 10307, 'garments': 12596, 'soaked': 24198, 'brine': 6437, 'hug': 14134, 'span': 24399, 'hepnet': 13722, '43011': 2228, 'tragedy': 26375, 'clementine': 7711, 'munizb': 18336, 'rwtms2': 22950, 'rockwell': 22679, 'oasis': 19086, '2290': 1520, 'chapters': 7387, 'sponsor': 24546, 'advocate': 4161, 'energy': 10933, 'county': 8677, 'lps': 16835, 'inventor': 15020, 'vice': 27576, 'coalition': 7832, 'waldron': 27861, 'thousand': 26040, 'oaks': 19082, 'downey': 10241, 'recognized': 21884, 'authority': 5340, 'refinement': 21989, 'coauthored': 7840, 'nonterrestrial': 18888, 'utilization': 27262, 'criswell': 8800, 'invented': 15018, 'concept': 8228, 'momentum': 18050, 'entrepreneurs': 11016, 'legal': 16352, 'soviet': 24355, 'engineers': 10948, 'build': 6575, 'pollution': 20662, 'globe': 12905, 'rejuvenated': 22084, 'entails': 10990, 'collecting': 7917, 'beaming': 5701, 'microwaves': 17731, 'transmitted': 26436, 'orbiting': 19442, 'antennae': 4743, 'mature': 17336, 'offers': 19225, 'sustainable': 25391, 'increasing': 14579, 'advancement': 4134, 'industrialization': 14632, 'promotes': 21172, 'frontier': 12393, 'oxnard': 19701, 'auditorium': 5302, '1049': 373, 'camino': 6938, 'rios': 22578, 'directions': 9857, 'freeway': 12351, 'exit': 11410, 'onto': 19335, 'lynn': 16922, 'heading': 13609, 'south': 24344, 'mile': 17774, 'colindo': 7901, 'parking': 19886, 'cpc4': 8718, 'connin': 8327, 'colgain': 7899, 'emergence': 10834, 'reds': 21949, 'astros': 5204, 'talent': 25584, 'arounf': 5024, 'suck': 25180, 'rockies': 22674, 'defending': 9377, 'champs': 7362, 'preseason': 20953, 'favorite': 11746, 'signings': 23880, 'harold': 13520, 'hurt': 14192, 'summer': 25239, 'randy': 21651, 'milligan': 17791, 'orsulak': 19512, 'horn': 14020, 'storm': 24952, 'lefferts': 16340, 'kept': 15731, 'intact': 14868, 'predicted': 20909, 'finish': 11941, 'yankees': 28650, 'gl': 12875, 'fli': 12042, 'arthur': 5053, 'qedbbs': 21428, 'choung': 7538, 'qed': 21427, 'bbs': 5681, 'lakewood': 16106, '420': 2197, '9327': 3423, 'resources': 22350, 'net_730956391': 18637, 'overview': 19674, 'document': 10132, 'connected': 8321, 'fall': 11659, 'categories': 7136, 'electronic': 10746, 'sent': 23513, 'networks': 18653, 'accessible': 3906, 'servers': 23560, 'discussion': 9935, 'groups': 13221, 'composed': 8161, 'mechanisms': 17495, 'mostly': 18152, 'transparent': 26443, 'connections': 8323, 'mechanism': 17494, 'mailing': 17059, 'relays': 22103, 'recipients': 21875, 'lists': 16624, 'described': 9587, 'netnews': 18646, 'board': 6141, 'separates': 23524, 'contributions': 8476, 'contributors': 8478, 'submissions': 25116, 'terminology': 25839, 'sends': 23496, 'nearby': 18550, 'machines': 16969, 'stored': 24948, 'locally': 16687, 'posted': 20782, 'reaches': 21782, 'sites': 23970, 'receiving': 21864, 'gateway': 12619, 'redirect': 21943, 'versa': 27524, 'receive': 21860, 'flexible': 12041, 'interface': 14922, 'wider': 28176, 'preferred': 20929, 'option': 19421, 'main': 17065, 'isunet': 15178, 'join': 15447, 'moderated': 18003, 'defunct': 9411, 'moderator': 18004, 'copies': 8552, 'inception': 14539, '1981': 1055, 'anonymous': 4726, 'retrieve': 22420, 'julius': 15568, 'qub': 21491, 'pub': 21306, 'spacedigestarchive': 24370, 'readme': 21802, 'keplerian': 15730, 'kelso': 15712, 'jsc': 15535, 'telesoft': 25777, 'gps': 13029, 'global': 12903, 'positioning': 20756, 'navigation': 18514, 'esseye': 11196, 'relevant': 22111, 'investing': 15035, 'companies': 8065, 'vincent': 27627, 'cate': 7135, 'vac': 27346, 'included': 14550, 'esoteric': 11178, 'asteroid': 5170, 'starflight': 24744, 'debris': 9288, 'archives': 4951, 'digests': 9799, 'excerpts': 11359, 'gs80': 13249, 'sp': 24362, 'usr': 27235, 'anon': 4724, 'seds': 23431, 'students': 25065, 'exploration': 11478, 'parties': 19918, 'listserv': 16625, 'tamvm1': 25605, 'contents': 8427, 'sedsnews': 23432, 'items': 15190, 'releases': 22107, 'duplicates': 10427, 'carries': 7076, 'inappropriate': 14531, 'messages': 17618, 'periodically': 20163, 'updated': 27151, 'broad': 6452, 'topical': 26275, 'noted': 18943, 'created': 8769, 'readers': 21796, 'frivolous': 12384, 'requests': 22290, 'acronyms': 3992, 'garrett': 12599, 'wollman': 28350, 'uvm': 27300, 'acronym': 3991, 'veikko': 27473, 'makela': 17089, 'monthly': 18090, 'containing': 8414, 'summaries': 25232, 'stories': 24950, '_aviation': 3638, 'technology_': 25729, 'telescopes': 25776, 'ronnie': 22732, 'kon': 15947, 'cisco': 7632, 'guide': 13287, 'journal': 15483, 'asa': 5074, 'chara': 7389, 'gsu': 13259, 'astronomical': 5194, 'atlantic': 5236, 'swaraj': 25422, 'jeyasingh': 15357, 'sjeyasin': 23994, 'axion': 5428, 'bt': 6523, '_flight': 3664, 'international_': 14949, 'focuses': 12119, 'bunge': 6609, 'rbunge': 21746, 'headline': 13611, 'yee': 28674, 'ames': 4559, 'briefings': 6425, 'manifests': 17138, 'ksc': 16009, 'appears': 4832, 'centers': 7263, 'ulysses': 26862, 'gailileo': 12539, 'pioneer': 20417, 'magellan': 17016, 'landsat': 16136, 'element': 10754, 'sets': 23577, 'ts': 26615, 'tkelso': 26188, 'blackbird': 6035, 'afit': 4217, 'af': 4188, 'prediction': 20911, 'bulletins': 6591, 'mrose': 18227, 'stsci': 25054, 'hubble': 14122, 'jost': 15480, 'jahn': 15248, 'abbs': 3820, 'hanse': 13472, 'ephemerides': 11058, 'conjunctions': 8319, 'encounters': 10904, 'launches': 16230, 'langley': 16144, 'lang': 16143, 'unb': 26901, 'spacewarn': 24388, 'describes': 9588, 'decay': 9297, 'nssdca': 19008, 'gsfc': 13252, 'anon_dir': 4725, '000000': 4, 'spx': 24601, 'manifest': 17137, 'ken': 15715, 'hollis': 13950, 'gandalf': 12575, 'pro': 21064, 'electric': 10739, 'cts': 8933, 'compressed': 8176, 'dates': 9197, 'landings': 16129, 'cary': 7092, 'oler': 19277, 'hg': 13769, 'uleth': 26847, 'effect': 10656, 'issued': 15174, 'enviroment': 11026, 'boulder': 6295, 'colorado': 7947, 'intro': 15002, 'understanding_solar_terrestrial_reports': 26965, 'nic': 18747, 'funet': 12470, 'misc': 17874, 'rec': 21854, 'shortwave': 23785, 'solarreports': 24245, 'connection': 8322, '56kb': 2533, 'xi': 28556, 'glenn': 12897, 'chapman': 7385, 'glennc': 12898, 'sfu': 23611, 'activist': 4016, 'newsletter': 18710, 'sherzer': 23720, 'aws': 5420, 'legislative': 16363, 'affecting': 4198, 'events': 11289, 'calendar': 6898, 'anniversaries': 4699, 'conferences': 8270, 'meteor': 17635, 'showers': 23807, 'eclipses': 10569, 'magliacane': 17025, 'kd2bd': 15684, 'ka2qhd': 15611, 'spacenews': 24381, 'covering': 8700, 'amsats': 4595, 'noaa': 18843, 'weather': 28002, 'ham': 13422, 'jonathan': 15460, 'mcdowell': 17404, 'cfa': 7308, 'reentries': 21971, '2001': 1293, 'bev': 5874, 'freed': 12340, 'nss': 19005, 'reprinted': 22265, '_space': 3721, 'calendar_': 6899, 'warning': 27917, 'suggestion': 25206, 'eugene': 11249, 'miya': 17933, 'item': 15189, 'internal': 14945, 'unclassified': 26917, 'regarded': 22024, 'sensitivity': 23509, 'contractors': 8457, 'renegotiate': 22194, 'act': 4003, 'kindly': 15824, 'outsiders': 19614, 'severe': 23594, 'penalities': 20083, 'unauthorized': 26897, 'attempts': 5269, 'imprisonment': 14507, 'title': 26178, '1030': 364, 'fraud': 12325, 'substantiated': 25144, 'abuse': 3870, 'mismanagement': 17888, 'inspector': 14814, '9183': 3386, '23089': 1533, 'enfant': 10936, 'plaza': 20546, '20024': 1299, 'offline': 19234, 'idr': 14330, 'rigel': 22547, 'pdx': 20040, 'romanick': 22722, 'pdxgate': 20041, '7306': 2934, 'portland': 20738, 'c5nf8t': 6799, 'gsq': 13258, 'osprey': 19536, 'lucas': 16861, 'adamski': 4046, '1993apr17': 1090, '192947': 996, '11230': 421, 'sophia': 24311, 'orourke': 19507, 'joseph': 15474, 'rourke': 22789, 'polygons': 20671, '13h': 623, '320x200': 1897, 'asm': 5108, 'faster': 11724, 'concave': 8219, 'shaded': 23623, 'texturemapped': 25900, 'comes': 7992, 'exaclty': 11331, 'specifics': 24454, 'implementation': 14479, 'dancing': 9126, 'epsilon': 11075, 'contained': 8412, 'epn': 11068, 'psu': 21286, 'douche': 10227, 'freeze': 12352, 'milkmen': 17783, 'jaskew': 15272, 'spam': 24398, 'maths': 17318, 'adelaide': 4075, 'askew': 5103, 'budget': 6549, 'statistics': 24786, 'pure': 21376, 'applied': 4848, '1pfkf5': 1158, '7ab': 3100, 'sending': 23495, 'corp': 8591, 'galactic': 12545, 'empire': 10857, 'napoleon': 18464, 'genghis': 12700, 'khan': 15770, 'bet': 5863, 'caesar': 6871, 'tall': 25593, 'roman': 22719, 'favouring': 11748, 'soldiers': 24248, 'tougher': 26320, 'guts': 13321, 'french': 12357, 'avergae': 5383, 'obspace': 19142, 'burning': 6645, 'candle': 6971, 'relights': 22126, 'hot': 14037, 'heat': 13631, 'surroundings': 25363, 'diffusion': 9795, 'gauche': 12626, 'proud': 21245, 'autumn': 5366, 'stillness': 24891, 'pleiades': 20556, 'thorny': 26027, 'deserts': 9597, 'fell': 11805, 'grief': 13184, 'disclaimer': 9907, 'sue': 25188, 'tents': 25827, 'somwhere': 24292, 'brenda': 6400, 'pale': 19801, 'river': 22601, 'murmurs': 18346, 'rollout': 22716, '93apr6170313': 3449, 'lick': 16495, 'observatory': 19134, 'uco': 26786, 'buenneke': 6557, 'monty': 18094, 'rand': 21645, 'c532v3': 6744, 'ftn': 12421, 'mcdonnell': 17402, 'douglas': 10234, 'rolls': 22717, 'ssto': 24669, 'cloudy': 7772, 'sdi': 23370, 'paid': 19774, 'afford': 4209, 'fund': 12462, 'peculiar': 20059, 'sdio': 23371, '_could_': 3651, 'irons': 15109, 'easily': 10518, 'diverting': 10044, 'comparable': 8071, 'sts': 25053, 'applaud': 4840, 'funding': 12467, 'devlopment': 9698, 'nasas': 18475, 'imho': 14444, 'enabling': 10881, 'secondarily': 23411, 'operate': 19368, 'shooting': 23764, 'stars': 24749, 'wished': 28294, 'wish': 28293, 'hardware': 13505, '1983': 1058, 'scott': 23307, 'asd': 5085, 'barman': 5580, 'jewish': 15355, 'american': 4554, 'babylon': 5453, '15apr93': 763, '14691229': 678, '0062': 47, 'lafibm': 16093, 'lafayette': 16091, 'vb30': 27439, 'sandy': 23072, 'koufax': 15974, 'stankowitz': 24724, 'lowenstein': 16819, 'sounds': 24337, 'racking': 21562, 'brains': 6351, 'humor': 14164, 'bloomberg': 6103, 'former': 12217, 'feed': 11784, 'shell': 23704, 'steph': 24839, 'stephenson': 24844, 'defensive': 9381, 'averages': 5381, 'comp': 8060, 'il': 14385, '122': 494, 'c5jjrj': 6770, 'em3': 10811, 'das': 9175, 'individual': 14621, 'descending': 9581, '1991': 1072, 'mitchell': 17923, '690': 2811, 'yep': 28681, '685': 2803, 'leagues': 16302, '653': 2737, '672': 2774, 'pendleton': 20089, '631': 2678, '689': 2808, '634': 2682, 'highest': 13797, '647': 2717, '677': 2782, 'wallach': 27873, '674': 2778, '630': 2676, '665': 2759, 'gruber': 13238, '580': 2555, '664': 2758, 'elite': 10777, 'fielders': 11878, '575': 2545, '744': 2994, 'slightly': 24071, 'pathetic': 19963, 'mobility': 17980, 'appear': 4826, 'rotten': 22777, 'infield': 14670, 'twins': 26718, 'judging': 15551, 'gaetti': 12531, 'metrodome': 17658, '633': 2681, '656': 2742, 'caminiti': 6937, '675': 2780, '596': 2578, '642': 2708, 'sabo': 22981, 'chris': 7540, '751': 3010, '626': 2668, '616': 2647, '613': 2642, 'whose': 28162, 'overstate': 19666, 'incredible': 14581, 'brings': 6440, 'buechele': 6554, '681': 2798, '599': 2582, 'according': 3928, 'reputation': 22284, '643': 2710, '659': 2747, '550': 2503, 'martinez': 17260, 'egdar': 10675, '621': 2658, '645': 2714, '624': 2663, 'portent': 20730, '623': 2662, '603': 2619, 'seitzer': 23462, '654': 2740, '593': 2575, '604': 2620, '620': 2656, 'jacoby': 15239, 'brook': 6474, '597': 2580, 'declining': 9329, 'hansen': 13473, '611': 2640, 'magadan': 17013, 'jefferies': 15315, '606': 2623, 'regulars': 22050, 'improved': 14511, 'zeile': 28766, '614': 2643, '605': 2622, 'carlos': 7057, 'hayes': 13581, '601': 2613, '622': 2660, '574': 2542, 'defensively': 9382, '573': 2541, '588': 2566, 'lansford': 16157, 'carney': 7065, 'separated': 23522, 'birth': 6003, 'hojo': 13931, 'couldn': 8657, 'break': 6375, 'sheffield': 23699, '584': 2561, 'blauser': 6060, 'travis': 26472, 'shortstop': 23783, '551': 2504, 'consecutive': 8335, 'camden': 6930, 'helped': 13691, 'slugger': 24103, 'debuts': 9292, 'congratulations': 8304, 'grad': 13048, 'student': 25063, 'wise': 28290, 'overburdened': 19633, 'golden': 12966, 'kimball': 15816, 'nahess': 18440, 'mir': 17860, 'gatech': 12615, 'nicholas': 18755, 'hess': 13757, 'hitatchi': 13858, 'hrf': 14094, 'usgs': 27225, 'spatial': 24417, 'shop': 23767, 'cadcore': 6862, 'scan': 23171, 'subsequently': 25134, 'vectorize': 27455, 'maps': 17183, 'loaded': 16670, 'header': 13605, 'unreadable': 27094, 'converter': 8508, 'ship': 23736, 'altered': 4498, 'workstations': 28407, 'recognize': 21883, 'precisely': 20892, 'strongly': 25038, 'offending': 19212, 'hrftopbm': 14095, 'searched': 23392, 'contain': 8411, 'formats': 12213, 'documentation': 10133, 'luck': 16866, 'knwo': 15922, 'dansmith': 9146, 'mcopn2': 17443, 'dseg': 10355, 'opener': 19359, 's355': 22969, 'shutout': 23826, 'justice': 15587, 'drove': 10336, 'monster': 18080, 'opposite': 19398, 'stays': 24796, 'healthy': 13623, 'cellar': 7247, 'dan': 9121, 'samson': 23056, 'prlhp1': 21062, 'prl': 21060, 'philips': 20276, 'psygnosis': 21296, 'titles': 26181, 'redhill': 21941, '130854': 566, '27039': 1693, '15mhz': 767, 'tricks': 26524, 'cool': 8529, 'awesome': 5414, 'licensed': 16490, 'interative': 14907, 'forum': 12238, 'seventh': 23589, 'virgin': 27646, 'interactive': 14904, 'worldwide': 28414, 'litil': 16632, 'divil': 10050, 'gremlin': 13171, 'microcosm': 17703, 'adapted': 4051, 'fmv': 12106, 'cartridge': 7090, 'negociated': 18593, 'lemmings': 16384, 'striker': 25018, 'soccer': 24206, 'rage': 21601, 'retailer': 22401, 'nintendo': 18805, 'ert': 11156, 'mario': 17221, 'hotel': 14039, 'levels': 16426, 'faith': 11652, 'lane': 16141, 'surrey': 25360, 'rh1': 22495, '5ha': 2595, 'ext': 11509, '0293': 131, '815387': 3180, '785544': 3070, 'telex': 25782, '877261': 3284, '776495': 3053, 'seri': 23546, 'prlhp0': 21061, 'binary': 5960, 'cogsci': 7875, 'redflops': 21940, 'tragic': 26376, 'pick': 20364, 'mo': 17976, 'vaughn': 27428, 'stwombly': 25087, 'ulowell': 26852, 'twombly': 26726, '230': 1527, 'weird': 28039, 'trading': 26368, 'traded': 26365, 'zane': 28755, 'blosser': 6104, 'curse': 8988, 'hmm': 13888, 'sincere': 23937, 'jking': 15399, 'rdetweil': 21769, 'boi': 6177, 'detweiler': 9672, 'phills': 20283, 'pirates': 20431, 'boise': 6181, 'printer': 21032, 'mlb': 17949, '1993apr16': 1089, '163712': 802, '2466': 1603, 'vfl': 27557, 'paramax': 19861, 'edd': 10595, 'gvlf4': 13331, 'gvl': 13330, 'unisys': 27034, 'dougherty': 10231, 'penna': 20098, 'anxious': 4767, 'doc': 10122, 'handy': 13463, 'dandy': 9128, 'pit': 20438, 'phi': 20269, 'pittsburg': 20451, 'pm': 20592, 'saturday': 23127, '05': 180, 'sunday': 25254, 'thursday': 26088, 'near': 18549, 'unfortunatly': 26996, 'gem': 12669, 'author': 5335, 'jerry': 15340, 'sheldev': 23702, 'shel': 23701, 'isc': 15136, 'br': 6337, 'lanza': 16159, 'trivia': 26567, 'olivetti': 19287, 'shelton': 23710, 'ct': 8921, '190432': 970, '1706': 847, 'hpcvaac': 14078, 'cv': 9024, 'paula': 19982, 'andresen': 4645, '151809': 713, '1286': 550, 'sparky': 24414, 'balsa': 5541, 'lle': 16655, 'mueller': 18290, '1961': 1030, 'referred': 21985, 'kiddy': 15790, 'barber': 5572, 'chuck': 7567, 'estrada': 11215, 'jack': 15228, 'fisher': 11973, 'milt': 17800, 'pappas': 19841, 'worst': 28423, 'trade': 26364, 'nono': 18881, 'nannette': 18459, '1965': 1034, 'proceeded': 21083, 'triple': 26547, 'crown': 8836, '1966': 1035, 'beaten': 5709, 'yaz': 28665, 'injured': 14753, 'collided': 7927, 'mighty': 17758, 'weis': 28041, 'chisox': 7511, 'drickel': 10311, 'bounce': 6298, 'mentorg': 17577, 'rickel': 22525, '1993apr06': 1081, '090626': 277, '21880': 1444, 'mentor': 17576, 'shit': 23748, '3600': 2026, '86400': 3259, '31556925': 1882, '9747': 3523, '299792': 1790, '80665': 3158, 'ml': 17948, 'sjc': 23993, 'xga': 28549, 'rleberle': 22623, 'sparc2': 24405, 'cstp': 8913, 'umkc': 26877, 'rainer': 21614, 'leberle': 16323, 'missouri': 17909, 'kansas': 15635, 'chipset': 7508, 'hw': 14209, 'funcs': 12455, 'clinton': 7734, 'whitehouse': 28140, 'kinder': 15823, 'nervm': 18630, 'nerdc': 18624, 'ufl': 26803, 'w32': 27817, 'vl': 27698, 'bus': 6658, 'nnr': 18838, 'vm': 27707, 's_1': 22972, 'et4000': 11219, '1mb': 1148, 'performance': 20140, '00bjgood': 54, 'lefebvre': 16339, 'idiot': 14321, 'muncie': 18332, 'svc': 25407, 'respect': 22352, 'seeing': 23437, 'maldonado': 17099, 'tore': 26288, 'sit': 23968, 'hander': 13446, 'blew': 6074, 'wilkins': 28201, 'shields': 23725, 'righty': 22558, 'twice': 26712, 'batter': 5655, 'vizcaino': 27695, 'weakest': 27991, 'terrible': 25852, 'lefebre': 16338, 'arnie': 5014, 'harris': 13524, 'stunned': 25078, 'showed': 23805, 'dugout': 10404, 'dishard': 9942, 'cub': 8936, 'whiten': 28141, 'rsmith': 22848, 'strobe': 25028, 'atc': 5214, 'russ': 22931, 'louis': 16796, 'arocha': 5018, 'watson': 27960, 'dmitri': 10094, 'gervin': 12785, 'assistant': 5143, 'coach': 7827, 'erics': 11125, 'eric': 11121, 'ericsc52qcc': 11126, '6fu': 2845, 'genetic': 12697, 'pitt': 20449, 'tate': 25652, 'tail': 25564, 'espn': 11186, 'teal': 25698, 'bleah': 6067, 'combination': 7978, 'faces': 11597, 'peeking': 20065, 'oversized': 19665, 'aqua': 4902, 'helmets': 13688, 'screams': 23329, 'fibre': 11866, 'leaguers': 16301, 'badly': 5479, 'hershiser': 13750, 'infoserv': 14714, 'ci': 7583, '70262': 2872, '3610': 2030, 'beck': 5724, 'irzr17': 15127, 'inf': 14659, 'tu': 26644, 'dresden': 10306, 'fonts': 12151, 'andre_beck': 4641, 'irs': 15121, 'raytrace': 21732, '1qg9fc': 1202, 'et9': 11221, 'wampyr': 27892, 'uow': 27143, 'g9134255': 12521, 'coronado': 8589, 'emmanuel': 10848, 'abad': 3810, 'traced': 26350, 'scenes': 23199, 'mtv': 18281, 'rayshade': 21730, 'appearing': 4831, 'objects': 19115, 'chars': 7414, 'textures': 25901, 'associated': 5149, 'noel': 18857, 'reads': 21806, 'triangulates': 26513, 'bevelizes': 5876, 'extrudes': 11547, 'stuck': 25060, 'theres': 25963, 'arbitrary': 4925, 'polygonal': 20670, 'shape': 23655, 'delaunay': 9430, 'convex': 8512, 'hulls': 14148, 'constrained': 8382, 'bartman': 5600, 'tga2pov': 25908, 'selfmade': 23473, 'heightfields': 13661, 'create': 8768, 'postscript': 20799, 'previewer': 20995, 'heightfield': 13660, 'backside': 5470, 'mirror': 17869, 'compound': 8168, 'union': 27026, 'height_field': 13659, 'abp2': 3845, 'texture': 25897, 'glass': 12883, 'translate': 26424, 'rotate': 22765, 'upwards': 27179, 'bigger': 5922, 'thicker': 25983, 'placement': 20485, 'size': 23987, 'abp': 3844, 'brain': 6349, 'abpsoft': 3846, 'mehl': 17532, 'dougr': 10236, 'meaddata': 17466, 'ritter': 22597, 'expanded': 11417, 'surfeit': 25343, 'mead': 17465, 'dayton': 9228, 'birch': 5997, '13247': 578, 'fierkelab': 11883, 'bchm': 5688, 'roush': 22791, '160447': 777, '17835': 894, 'homerific': 13966, 'umps': 26886, 'squeezing': 24617, 'tbs': 25677, 'moved': 18191, 'announcers': 4709, 'commented': 8015, 'perception': 20127, 'climbed': 7731, 'perceptions': 20128, 'performed': 20142, 'squeezed': 24616, 'grape': 13091, 'ride': 22536, 'boom': 6238, 'whoosh': 28161, 'alumni': 4516, 'matthew': 17330, 'phantom': 20258, 'deluca': 9470, '1993apr21': 1095, '024423': 123, '29182': 1769, 'mnemosyne': 17973, 'du': 10385, 'wdwells': 27987, 'nyx': 19067, 'fuzzy': 12498, 'insert': 14799, 'rumor': 22903, 'coincide': 7882, 'atlanta': 5235, 'olympics': 19293, 'proposal': 21206, 'rent': 22207, 'caliber': 6901, 'telling': 25786, 'leering': 16336, 'velocity': 27481, 'target': 25634, 'delta': 9466, 'impulses': 14517, 'produce': 21098, 'dry': 10349, 'fuel': 12435, 'oxidizer': 19700, 'dispersal': 9967, 'charge': 7398, 'embedded': 10826, 'sand': 23061, 'birdshot': 6000, 'structure': 25044, 'whole': 28155, 'rocketry': 22669, 'light': 16518, 'ballistics': 5526, 'challenge': 7344, 'prize': 21055, 'erradication': 11146, 'eyesore': 11559, 'ccd': 7192, 'burner': 6644, 'wouldpledge': 28433, '999': 3551, 'astronomers': 5193, 'taste': 25651, 'likewise': 16541, 'bull': 6586, 'simpler': 23913, 'gun': 13305, 'tgrs': 25912, 'hancock': 13440, 'lambda': 16109, 'proton': 21240, 'dennisn': 9511, 'ecs': 10586, 'comm': 8005, 'newkirk': 18691, 'controlled': 8482, '211638': 1403, '168730': 829, 'zeus': 28782, 'calpoly': 6921, 'jgreen': 15369, 'trumpet': 26600, 'green': 13153, 'possiblity': 20774, 'combo': 7984, 'obvious': 19152, 'instability': 14822, 'xssr': 28592, 'speculation': 24474, 'salyut': 23042, 'kb': 15676, 'design': 9605, 'bureau': 6626, 'lh': 16456, 'boost': 6242, '21000': 1387, '31500': 1881, 'geostationary': 12766, '2600': 1662, 'gals': 12564, '6000': 2608, 'competing': 8120, 'energia': 10929, 'heard': 13627, 'successor': 25174, 'soyuz': 24360, 'russia': 22933, 'altas': 4495, 'dia': 9729, 'fit': 11980, 'shround': 23818, 'loads': 16673, 'survives': 25375, 'srb': 24627, 'shake': 23637, 'feasible': 11770, 'fragile': 12284, 'integration': 14875, 'protons': 21241, 'assembled': 5118, 'transported': 26449, 'horizontially': 14018, 'stress': 25003, 'bolted': 6196, 'horizontally': 14017, 'rail': 21607, 'track': 26356, 'erected': 11117, 'imported': 14493, 'viloate': 27624, 'law': 16240, 'political': 20653, 'solve': 24266, 'instabilities': 14821, 'mobile': 17979, 'schaumburg': 23210, 'crux': 8861, 'princeton': 21023, 'lustig': 16904, 'seeking': 23439, 'moe': 18020, 'berg': 5834, 'nimaster': 18797, 'c5hvfs': 6762, '4dw': 2375, 'deci': 9306, '14apr93': 690, '19061416': 973, 'clarku': 7673, 'hhenderson': 13772, 'colleague': 7912, 'catcher': 7132, 'linguist': 16587, 'espion': 11184, 'ww2': 28496, 'anecdotes': 4652, 'hero': 13742, 'reissued': 22076, '_moe': 3695, 'athlete': 5224, 'scholar': 23232, 'spy_': 24603, 'sewell': 23598, 'peary': 20057, '_cult': 3653, 'players_': 20537, 'famous': 11681, 'gilbert': 12841, '_they': 3736, 'served_': 23557, 'wwii': 28499, 'spy': 24602, '_heisenberg': 3672, 'war_': 27905, 'sister': 23967, '_my': 3699, 'brother': 6485, 'morris': 18138, 'berg_': 5835, 'memories': 17559, 'kinda': 15822, 'minneapolis': 17844, 'alma': 4455, 'mater': 17300, '1923': 990, 'sour': 24339, 'disapproved': 9886, 'corvallis': 8625, 'oregon': 19453, '001211': 24, '18457': 938, 'tease': 25709, 'apart': 4789, 'preventing': 20992, 'beauties': 5715, 'situational': 23975, 'interdependent': 14913, 'arguments': 4981, 'balanced': 5506, 'wonder': 28356, 'resort': 22345, 'ballyard': 5538, 'enjoy': 10963, 'feeling': 11788, 'stathead': 24772, 'stretch': 25005, 'farm': 11703, 'animal': 4671, '3511': 1995, '3006': 1834, 'mckinley': 17426, '97330': 3520, '752': 3011, '8424': 3225, 'sabr': 22982, 'member': 17549, '1979': 1051, 'pkeenan': 20472, 'psych': 21290, 'patricia': 19971, 'keenan': 15693, 'rauser': 21712, 'fraser': 12324, 'angels': 4658, 'anaheim': 4606, 'worry': 28421, 'wni': 28338, 'outlaws': 19594, 'living': 16645, 'banzai': 5567, 'spacecraft': 24368, 'beacons': 5698, '08': 248, '001555': 26, 'crafts': 8735, 'nav': 18508, 'nail': 18443, 'neither': 18614, 'deactivated': 9265, 'rapists': 21677, 'mozzarella': 18202, 'karlin': 15650, 'klapisch': 15872, 'instigator': 14834, 'enjoys': 10967, 'drumb': 10342, 'confrontation': 8294, 'bonilla': 6217, 'totally': 26307, 'blame': 6042, 'putrid': 21394, 'ballplayer': 5534, 'threaten': 26047, 'journalist': 15485, 'threatening': 26049, 'dollar': 10161, 'rins': 22576, 'ryukoku': 22963, 'william': 28207, 'reiken': 22061, 'seta': 23572, 'japan': 15264, '1pp6reinnonl': 1163, 'greedy': 13150, 'oil': 19252, 'faults': 11739, 'creation': 8772, 'producing': 21102, 'bacteria': 5476, 'clueless': 7784, 'szaboisms': 25529, 'calls': 6920, '1pfj8k': 1157, '6ab': 2837, '1993mar31': 1111, '161814': 789, '11683': 449, 'mksol': 17947, '3539': 2002, 'stockpile': 24918, 'export': 11494, 'gnp': 12940, 'countries': 8673, 'exports': 11495, 'larger': 16174, 'disrupt': 9987, 'lanes': 16142, 'hose': 14031, 'routes': 22793, 'import': 14489, 'imports': 14495, 'longer': 16730, 'critical': 8804, 'commodity': 8041, 'unstable': 27117, 'notre': 18962, 'dame': 9116, 'rvesterm': 22945, 'vma': 27710, 'nd': 18541, 'millitello': 17796, '175343': 877, '3431': 1972, 'alleg': 4423, 'millits': 17797, 'uhhhh': 26822, 'spelled': 24488, 'vesterman': 27548, 'porky': 20723, 'contex': 8432, 'love': 16807, 'xyvision': 28624, '25335': 1640, 'alice': 4409, 'att': 5255, 'td': 25685, 'duff': 10401, 'ulrich': 26853, 'galki': 12555, 'toppoint': 26282, 'forty': 12237, 'resist': 22332, 'ussr': 27239, 'destructive': 9642, 'testing': 25875, '93110': 3420, '031905saundrsg': 139, 'qucdn': 21492, 'queensu': 21496, 'graydon': 13132, 'saundrsg': 23136, '091051': 279, '14496': 665, 'conceivable': 8221, 'luna': 16884, 'hundred': 14172, 'predicated': 20905, 'antarctic': 4739, '_run_': 3714, 'hardly': 13504, 'centuries': 7276, 'commerical': 8024, 'wishful': 28296, 'exploring': 11485, 'satisfy': 23119, 'itch': 15187, 'coupled': 8680, 'sink': 23950, 'capacity': 6999, 'weapons': 27997, 'holds': 13938, 'minute': 17855, 'travel': 26462, 'becomes': 5726, 'tourist': 26326, 'attraction': 5285, 'mt': 18271, 'everest': 11295, 'minor': 17846, 'scope': 23290, 'inconvienent': 14569, 'prevent': 20990, 'calcium': 6886, 'muscle': 18350, 'atrophy': 5254, 'drift': 10313, 'micro': 17697, 'colonies': 7941, 'factories': 11612, 'spun': 24595, 'convienent': 8515, 'modest': 18007, 'vacuum': 27350, 'raw': 21720, 'exposure': 11500, 'vacuums': 27352, 'continous': 8439, 'rocks': 22678, 'serve': 23555, 'heatsink': 13637, 'shielding': 23724, 'volatile': 27734, 'compounds': 8170, 'steep': 24813, '3rds': 2143, 'seafloors': 23380, 'virtually': 27653, 'antarctica': 4740, 'continent': 8435, 'visit': 27669, 'pushes': 21389, 'farside': 11710, 'shielded': 23723, 'noisy': 18860, 'laser': 16188, 'particle': 19913, 'linear': 16573, 'bombarding': 6202, 'conventional': 8498, 'nukes': 19031, 'warfare': 27909, 'glory': 12911, 'bunker': 6611, 'fight': 11890, 'ranges': 21656, 'ultimate': 26856, 'wa4mei': 27824, 'rsiatl': 22846, 'shannon': 23653, 'guaranteed': 13271, 'emory': 10851, 'kd4nc': 15685, 'lawrenceville': 16245, 'ga': 12523, '30244': 1841, 'rws': 22948, 'arizona': 4995, 'ronald': 22729, 'outlining': 19599, 'spline': 24531, 'rasterization': 21692, 'appeared': 4829, 'solutions': 24265, 'outline': 19596, 'defined': 9391, 'roughly': 22783, 'parallel': 19857, 'splines': 24532, 'inputs': 14779, 'treat': 26479, 'dimensional': 9826, 'extant': 11510, 'edges': 10602, 'effectively': 10658, 'computed': 8203, 'sequence': 23537, 'segments': 23453, 'approximating': 4883, 'nth': 19013, 'segment': 23451, 'distance': 9997, 'match': 17295, 'pair': 19791, 'triangles': 26510, 'filled': 11906, 'triangle': 26509, 'sorted': 24325, '2d': 1807, 'pixmap': 20464, 'colored': 7949, 'coloring': 7950, 'breaks': 6380, 'gaps': 12583, 'fairly': 11649, 'projecting': 21155, 'familiar': 11675, 'knowing': 15912, 'mbc': 17374, 'po': 20609, 'thor': 26022, 'trb3': 26475, 'msstate': 18266, 'boutwell': 6309, 'ers': 11153, 'shipping': 23742, 'personally': 20201, 'attest': 5277, 'blow': 6106, 'doors': 10199, 'impulse': 14516, 'powerful': 20828, 'allright': 4453, 'answering': 4736, 'engineer': 10945, 'artist': 5062, 'silence': 23885, 'oppose': 19395, 'freedom': 12341, 'ccmail': 7199, 'larc': 16171, 'brown': 6490, 'qc': 21424, 'msc': 18235, 'save': 23138, 'client': 7724, 'thrasher': 26043, 'newsers': 18703, 'microsoft': 17722, 'viewing': 27606, 'saving': 23142, 'pcx': 20030, 'jpeg': 15501, 'scoured': 23311, 'seuss': 23587, 'checker': 7435, 'tsr': 26631, 'reinvent': 22073, 'wheel': 28111, 'thanx': 25926, 'wdm': 27986, 'std': 24798, 'photo': 20303, 'motif': 18160, 'platforms': 20523, 'enhancement': 10958, 'manipulation': 17146, 'amann': 4529, 'iam': 14256, 'unibe': 27008, 'ch': 7328, 'stephan': 24840, 'radiosity': 21587, 'berne': 5849, '66319': 2757, 'yuma': 28736, 'acns': 3977, 'colostate': 7957, 'xz775327': 28628, 'longs': 16734, 'xia': 28557, 'zhao': 28784, '131239': 570, '11670': 448, 'aragorn': 4920, 'traditional': 26370, 'progressive': 21144, 'unpublished': 27091, 'methods': 17651, 'cohen': 7876, 'chen': 7459, 'wallace': 27871, 'silion': 23889, 'puech': 21328, 'integrating': 14874, 'specular': 24471, 'diffuse': 9794, 'reflection': 21995, 'v23': 27328, 'pp335': 20837, '344': 1974, 'patches': 19957, 'hemi': 13700, 'facilitate': 11601, 'sparcstation': 24408, 'meantime': 17475, 'radiosity_code': 21588, 'tar': 25629, 'compute1': 8202, 'ncsu': 18538, 'username': 27222, 'password': 19947, 'locations': 16693, 'archie': 4938, 'nearest': 18552, 'josephine': 15475, 'switzerland': 25468, 'raytracing': 21735, 'kyee': 16046, 'bnlux1': 6137, 'bnl': 6136, 'kenton': 15725, 'proposed': 21209, 'rule': 22897, 'brookhaven': 6478, 'upton': 27178, '11973': 461, 'catchers': 7133, 'roster': 22761, '3rd': 2142, 'seldom': 23463, '2nd': 1821, 'reliever': 22122, 'invoke': 15046, 'substitution': 25149, 'permitted': 20184, 'substitute': 25146, 'purposes': 21380, 'previously': 20999, 'yanked': 28648, 'schumach': 23252, 'schumacher': 23253, 'starman': 24747, 'richardson': 22517, 'marshall': 17252, 'investigating': 15030, 'rise': 22586, 'jan': 15254, 'endeavour': 10913, 'lasted': 16198, 'thrust': 26071, 'nozzle': 18974, 'gimballing': 12851, 'casing': 7102, 'abnormalities': 3836, 'wrench': 28451, 'pliers': 20563, 'recovery': 21918, 'djc47305': 10064, 'uxa': 27319, 'evil': 11313, 'smile': 24126, 'hats': 13556, 'muster': 18363, 'courage': 8682, 'gone': 12978, 'capable': 6997, 'crazy': 8762, 'infernal': 14666, 'cheer': 7441, 'protest': 21232, 'acknowledge': 3970, 'observation': 19130, 'bear': 5703, 'sheesh': 23696, 'ten': 25808, 'vocal': 27722, 'grabs': 13042, 'whoever': 28154, 'wants': 27903, 'exception': 11354, 'presently': 20960, 'pack': 19743, 'competent': 8117, 'pains': 19781, 'pennant': 20099, 'chest': 7469, 'bem': 5803, 'compee': 8107, 'antond': 4759, 'anton': 4758, 'dejong': 9427, 'memorabilia': 17555, 'ebbets': 10537, 'flannels': 12012, 'negro': 18600, 'jackets': 15230, 'jerseys': 15342, 'spendy': 24494, 'jersey': 15341, 'authentic': 5334, 'bilko': 5938, 'pcl': 20024, '9777': 3529, 'catalog': 7124, '165': 811, 'merchandise': 17585, 'handmade': 13457, 'replica': 22234, 'wool': 28375, 'caps': 7015, 'nicho': 18754, 'stewart': 24875, 'nicholls': 18757, 'represents': 22263, 'ureply': 27189, '001428': 25, '724': 2918, 'indyvax': 14637, 'iupui': 15208, 'tffreeba': 25904, 'pulling': 21339, 'feat': 11771, 'limit': 16554, 'straight': 24961, 'throw': 26065, 'exclusive': 11372, 'fifty': 11887, 'strings': 25023, 'yo': 28701, 'olympus': 19294, 'demon': 9486, 'army': 5013, 'clanzen': 7664, 'sunnyvale': 25262, '734': 2943, '2289': 1518, 'ktj': 16018, 'beach': 5696, 'kerry': 15738, 'discuss': 9931, 'careers': 7043, 'graduate': 13055, 'commitment': 8033, 'air': 4309, 'fleeting': 12030, 'counter': 8666, 'branch': 6355, 'intelligence': 14881, 'whom': 28158, 'voice': 27726, 'qualifications': 21453, 'guessing': 13280, 'artillery': 5061, 'specialty': 24447, 'signals': 23868, 'assignments': 5139, 'prosaic': 21219, 'atbm': 5213, 'cobra': 7844, 'rigs': 22561, 'gives': 12871, 'ugliest': 26816, '1993apr12': 1085, '235334': 1560, '25031': 1626, 'ptdcs2': 21298, 'intel': 14878, '34244': 1969, 'oasys': 19087, 'dt': 10372, 'navy': 18517, 'kiviat': 15859, 'hotdogish': 14038, 'leans': 16307, 'plate': 20520, 'pitches': 20444, 'pitch': 20439, 'lean': 16306, 'unbiased': 26906, 'mileage': 17775, 'vary': 27419, 'agreat': 4267, 'crouch': 8832, 'tends': 25815, 'exaggerate': 11334, 'jrogoff': 15531, 'skidmore': 24008, 'jay': 15282, 'rogoff': 22701, 'saratoga': 23095, 'springs': 24586, 'comiskey': 8002, 'unlike': 27065, 'rivers': 22605, 'vet': 27551, 'riverfront': 22604, 'football': 12166, 'multipurpose': 18320, 'shea': 23686, 'accommodate': 3913, 'jets': 15349, 'rollers': 22714, 'oriented': 19482, 'angles': 4661, 'saddled': 22995, 'circular': 7615, 'hyped': 14226, 'beautiful': 5716, 'tipoff': 26163, 'unbeautiful': 26903, 'delaware': 9432, '093231': 283, '5148': 2445, 'tomassi': 26239, 'belong': 5794, 'shortstops': 23784, 'hung': 14175, 'gold': 12964, 'gloves': 12917, 'selective': 23470, 'huh': 14140, 'handing': 13451, 'honors': 13992, 'liberally': 16471, 'deserve': 9598, 'prestige': 20977, 'garvey': 12601, 'absurdity': 3867, 'compare': 8073, 'famers': 11673, 'seasons': 23401, 'losing': 16778, 'awards': 5409, 'dominated': 10173, 'divisons': 10057, '1972': 1043, 'fls': 12082, 'keynes': 15755, 'econ': 10577, 'forrest': 12227, 'durham': 10434, '1qmrciinnoin': 1219, 'shippert': 23741, 'lucky': 16868, 'runner': 22913, 'sprint': 24589, 'popped': 20710, 'deion': 9423, 'sanders': 23064, 'heads': 13614, 'waits': 27853, 'blunder': 6116, 'correspondents': 8616, 'changed': 7371, 'bounces': 6300, 'raphael': 21673, 'mlindroos': 17953, 'finabo': 11920, 'abo': 3837, 'marcus': 17200, 'lindroos': 16570, 'infinity': 14677, 'doppelganger': 10200, 'akademi': 4339, 'reader': 21795, '1qkn6rinnett': 1213, '170048': 844, 'journey': 15488, 'sf': 23604, 'ufo': 26805, '1999': 1118, 'lousy': 16803, 'lifting': 16515, 'vtol': 27798, 'airliners': 4318, 'portugese': 20743, 'wonderful': 28358, 'rate': 21699, 'recycled': 21929, 'theme': 25941, 'concepts': 8229, 'andersons': 4638, 'shed': 23692, 'creators': 8777, 'pseudo': 21273, 'bbc': 5676, 'dealt': 9275, 'spaceship': 24384, 'reaching': 21783, 'lightship': 16528, 'altares': 4494, 'journeyed': 15489, 'galaxy': 12549, '1976': 1047, 'satisfied': 23117, 'vhs': 27565, 'thunderbirds': 26080, 'england': 10950, 'marcu': 17199, 'cadlab': 6868, 'uclink': 26785, 'berkeley': 5841, 'nebres': 18561, '060493114752': 207, 'tol3mac15': 26225, 'soe': 24220, 'uniforms': 27016, 'indication': 14608, 'dire': 9850, 'refer': 21978, 'sharks': 23668, 'proof': 21186, 'lachemann': 16083, 'coliseum': 7904, 'deep': 9362, 'franchise': 12301, 'paucity': 19980, 'imagination': 14432, 'ugghhh': 26812, 'vox': 27766, '510': 2433, '848': 3231, '9390': 3434, 'underestimate': 26942, '747': 2997, 'ton': 26248, 'roms': 22726, 'jennise': 15330, 'opus': 19426, 'dgi': 9722, 'milady': 17768, 'printcap': 21030, 'goddess': 12953, 'addendum': 4059, 'forgot': 12203, 'sight': 23856, 'teachers': 25695, 'chicago': 7479, '146': 674, 'inquire': 14784, 'teaching': 25697, 'newest': 18685, 'studies': 25067, 'foundation': 12257, 'sponsoring': 24548, 'sheraton': 23714, 'suites': 25221, 'elk': 10779, 'participants': 19908, 'earn': 10501, 'semester': 23480, 'restricted': 22384, 'cosponsored': 8643, 'teach': 25693, 'excited': 11366, 'learning': 16314, 'classroom': 7682, 'covered': 8699, 'principles': 21027, 'astrodynamics': 5182, 'simulated': 23926, 'zero': 28778, 'underwater': 26970, 'simulation': 23928, 'model': 17986, 'observing': 19139, 'sessions': 23569, 'trips': 26555, 'adler': 4091, 'planetarium': 20500, 'museum': 18352, 'featured': 11773, 'speakers': 24432, 'debbie': 9286, 'lewis': 16435, 'ohio': 19248, 'instructors': 14850, 'highlight': 13800, 'dinner': 9840, 'banquet': 5565, 'byron': 6695, 'lichtenberg': 16494, 'flew': 12037, 'november': 18968, 'scheduled': 23213, 'registration': 22041, 'fee': 11783, 'transportation': 26448, 'breakfasts': 6378, 'lunches': 16890, 'tickets': 26099, '708': 2881, '359': 2021, '7913': 3082, '1520': 717, 'algonquin': 4397, 'rd': 21765, 'palatine': 19799, '60067': 2611, 'geniuses': 12704, 'lady': 16090, 'astor': 5174, 'husband': 14196, 'poison': 20633, 'coffee': 7866, 'churchill': 7578, 'madam': 16996, 'wife': 28188, 'drink': 10318, 'dcx': 9249, 'enblom': 10882, 'eos': 11046, 'ericsson': 11129, 'se': 23377, 'telecom': 25757, 'eos8c29': 11047, 'latest': 16209, 'constellation': 8374, 'empty': 10867, 'stockholm': 24915, 'sweden': 25432, 'employee': 10861, 'boone': 6241, 'psc': 21271, 'spanky': 24402, 'supercomputing': 25286, 'pa': 19734, 'postoffice1': 20797, 'pl8': 20479, '005314': 45, '5700': 2537, 'spira': 24519, 'gspira': 13257, 'lavalliere': 16238, 'slaught': 24048, 'leyland': 16443, 'insisted': 14809, 'strict': 25010, 'platoon': 20525, 'quicker': 21511, 'prince': 21021, '11th': 467, 'pitcher': 20441, 'theat': 25931, 'iain': 14254, 'administrator': 4097, '6959': 2825, 'speak': 24430, 'stated': 24767, 'vanderveen': 27387, 'visser': 27675, 'el': 10723, 'wau': 27963, 'van': 27378, 'der': 9559, 'veen': 27462, 'wageningen': 27840, 'agricultural': 4274, 'ftpnuz': 12426, 'serveral': 23559, 'font': 12149, 'eq': 11078, 'borland': 6264, 'consisting': 8358, 'cones': 8267, 'converted': 8507, 'raytracers': 21734, 'vivid': 27693, 'polyray': 20681, 'flexibel': 12039, 'expressions': 11506, 'features': 11774, 'genetics': 12698, 'netherlands': 18640, 'af774': 4189, 'chad': 7333, 'cipiti': 7607, 'shareware': 23665, 'exhausted': 11395, 'everyplace': 11305, 'hava': 13564, 'alot': 4472, 'bobcat': 6152, 'ent': 10989, 'ohiou': 19249, 'heisenberg': 13669, 'voxel': 27768, 'zool': 28803, 'flb': 12026, 'optiplan': 19424, 'baube': 5664, 'tm': 26193, 'phil': 20271, 'fraering': 12283, 'pgf': 20249, 'srl03': 24638, 'cacs': 6859, 'usl': 27229, 'bronze': 6473, 'practiced': 20856, 'warrior': 27928, 'caste': 7109, 'farming': 11705, 'priesthood': 21010, 'profiting': 21120, 'blessed': 6072, 'blare': 6049, 'presence': 20954, 'evening': 11285, 'twilight': 26713, '6apr199314571378': 2838, 'determined': 9661, 'shoemaker': 23759, 'levy': 16433, '1993e': 1108, 'closeup': 7763, 'observations': 19132, 'trajectory': 26390, 'positional': 20754, 'uncertainties': 26911, 'hga': 13770, 'slew': 24057, 'delay': 9433, 'toutatis': 26330, 'lga': 16451, 'allocation': 4446, 'premature': 20935, 'floor': 12064, 'mctaggart': 17454, '3ds': 2124, 'autodesk': 5350, 'respond': 22358, 'daviss': 9216, 'sweetpea': 25442, 'japanese': 15266, 'landing': 16128, 'nspc': 19003, '735012282': 2967, 'rls': 22628, 'uihepa': 26829, 'hep': 13721, 'swartz': 25423, 'maneuvering': 17131, 'exploit': 11474, 'regions': 22035, 'exploiting': 11476, 'perturbations': 20215, 'probe': 21071, 'affected': 4197, 'expenditures': 11437, 'expending': 11435, 'hold': 13933, 'deceleration': 9300, 'srl02': 24637, 'ancient': 4631, 'mayans': 17361, 'televison': 25781, 'repo': 22242, 'hiroshi': 13839, 'yamakawa': 28644, 'jun': 15575, 'ichiro': 14292, 'kawaguchi': 15671, 'nobuaki': 18850, 'ishii': 15142, 'hiroki': 13838, 'matsuo': 17325, 'numerical': 19038, 'aas': 3806, 'aiaa': 4289, 'spaceflight': 24373, 'mechanics': 17493, 'meeting': 17517, 'hiten': 13862, '_db_': 3656, 'vv': 27810, 'edb': 10592, 'dmssyd': 10106, 'syd': 25483, 'dms': 10104, 'csiro': 8900, 'breen': 6396, 'dicta': 9759, 'conference': 8269, 'australian': 5329, 'pattern': 19976, 'techniques': 25721, 'location': 16692, 'macquarie': 16987, 'theatre': 25933, 'biennial': 5917, 'aspects': 5111, 'informed': 14710, 'contemporary': 8420, 'developments': 9687, 'exchange': 11362, 'establish': 11198, 'contacts': 8410, 'invited': 15044, 'specialised': 24439, 'prof': 21108, 'gabor': 12527, 'herman': 13734, 'pennsylvania': 20100, 'hodgson': 13913, 'massey': 17285, 'dominique': 10179, 'juelin': 15555, 'centre': 7269, 'morphologie': 18136, 'mathematique': 17314, 'paris': 19879, 'mathematical': 17310, 'morphology': 18137, 'richards': 22516, 'aust': 5324, 'defence': 9374, 'canberra': 6960, 'sensing': 23507, 'phillip': 20281, 'robertson': 22651, 'visualisation': 27680, 'logic': 16712, 'neural': 18655, 'coding': 7860, 'robotics': 22659, 'restoration': 22378, 'industrial': 14631, 'sought': 24330, 'presentation': 20956, 'publication': 21311, 'proceedings': 21085, 'submission': 25115, 'peer': 20067, 'consist': 8350, 'doubled': 10218, 'summarizing': 25237, 'pages': 19769, 'illustrations': 14405, 'camera': 6934, 'adriaansen': 4122, 'ryde': 22958, 'nsw': 19009, '2112': 1400, '25th': 1658, '27th': 1719, '15th': 769, 'october': 19187, '9th': 3564, 'arranged': 5030, 'situated': 23973, 'harbour': 13490, 'varied': 27412, 'opera': 19367, 'house': 14048, 'bridge': 6420, 'landmarks': 16133, 'cruises': 8847, 'tours': 26328, 'mountains': 18181, 'accommodation': 3915, 'walking': 27866, 'ranging': 21657, 'fees': 11792, '30th': 1867, 'aprs': 4894, '220': 1452, 'organisation': 19462, 'enclose': 10888, 'cheque': 7460, 'cheques': 7461, '809': 3164, '9495': 3477, 'athula': 5229, 'ginigie': 12854, '330': 1932, '2393': 1570, 'dicta93': 9760, 'ee': 10639, 'iapp': 14265, 'association': 5151, 'affiliated': 4202, 'federation': 11781, 'sgoldste': 23618, 'aludra': 4513, 'fogbound': 12122, 'child': 7489, 'raves': 21717, 'billing': 5946, 'themselves': 25942, 'animations': 4679, 'newtek': 18719, 'adopt': 4114, 'immersive': 14457, '___samuel___': 3621, '_________pratice': 3616, 'dangerous': 9133, 'virii': 27650, '_______': 3575, 'guildenstern': 13292, 'shouted': 23797, 'dawn': 9219, 'summons': 25242, 'moment': 18048, 'somehow': 24276, 'orion': 19501, '1quh78innf45': 1235, 'elroy': 10794, 'pjs': 20469, 'euclid': 11247, 'prototype': 21242, 'film': 11911, 'damper': 9120, 'combed': 7977, 'exhibits': 11400, 'thoroughly': 26029, 'instantly': 14831, 'prominent': 21163, 'nasm': 18480, 'museums': 18353, 'displays': 9977, 'occasionally': 19157, 'thf2': 25979, 'kimbark': 15817, 'uchicago': 26779, 'midway': 17746, 'c5jqby': 6774, 'm7a': 16937, 'rich': 22514, 'bnr': 6138, 'bratt': 6367, 'crchh7a9': 8766, 'nosubdomain': 18934, 'nodomain': 18855, 'statistice': 24785, 'newspaper': 18712, 'context': 8433, 'dependent': 9534, 'himself': 13821, 'teammates': 25703, 'moops': 18107, 'disclaimers': 9908, 'prestonm': 20979, 'preston': 20978, 'grabbing': 13040, 'starbase': 24733, 'store': 24947, 'shouldn': 23795, 'app': 4814, 'fussy': 12491, 'block_read': 6089, 'colour': 7958, 'window': 28236, 'pixel': 20460, 'manchester': 17126, 'm13': 16932, '9pl': 3562, '061': 212, '6095': 2631, '1605112ec400': 778, 'sscl': 24655, 'conslt': 8360, 'eco': 10572, 'gods': 12955, 'cka52397': 7652, 'oriolefan': 19499, 'ho': 13895, 'hum': 14151, 'ha': 13358, 'reardon': 21835, 'marginal': 17207, 'evens': 11287, 'ask': 5101, 'chintan': 7503, 'amin': 4568, 'urbanachampaign': 27187, 'llama': 16654, 'neil': 18611, 'peart': 20056, 'anger': 4659, 'ignorance': 14355, 'prejudice': 20933, 'fear': 11764, 'luriem': 16899, 'lurie': 16898, 'liberalizer': 16470, 'pleasant': 20548, 'surprises': 25356, 'allegheny': 4428, '120399': 476, 'upenn': 27154, 'sepinwal': 23531, 'sas': 23100, 'bronx': 6472, 'bombers': 6204, 'wickman': 28171, 'figured': 11896, 'sax': 23147, 'winding': 28235, 'middle': 17735, 'abott': 3841, 'rookie': 22734, 'bother': 6283, 'johne': 15438, 'sg': 23612, 'eickemeyer': 10695, 'singapore': 23943, 'p_1': 19728, 'p_2': 19729, 'p_3': 19730, 'p_4': 19731, 'p_c': 19732, 'dist': 9996, 'p_i': 19733, 'rid': 22532, 'roots': 22742, 'distsq': 10027, 'plug': 20579, 'variables': 27404, 'formula': 12222, 'simplify': 23917, '2_c': 1793, 'cancel': 6961, 'leaving': 16321, 'linearly': 16575, 'independent': 14594, 'x_c': 28527, 'y_c': 28632, 'z_c': 28748, 'subtle': 25155, 'malicious': 17104, 'albert': 4362, 'einstein': 10708, 'erc': 11114, 'bridges': 6421, 'diamond': 9744, 'stelth': 24835, 'hintmatt': 13827, 'cwis': 9037, '07': 231, '0600': 205, 'andy': 4651, 'merlin': 17607, 'home2': 13963, 'stealth': 24808, 'proprietary': 21215, 'linux': 16601, '386bsd': 2081, '1993apr6': 1104, '061329': 214, '25582': 1645, 'mmc': 17960, 'seale': 23383, 'possum': 20776, '5744': 2544, 'temporarily': 25804, 'apparently': 4822, 'flyby': 12098, 'ooooh': 19345, 'marlin': 17241, 'fri': 12368, 'mf': 17664, 'shining': 23733, 'miami': 17683, 'wrigley': 28455, 'wintry': 28274, 'ivy': 15218, 'bundled': 6607, 'admit': 4106, 'accustomed': 3946, 'dolphins': 10165, 'cheering': 7443, 'afc': 4193, 'playoffs': 20544, 'electricity': 10741, 'lacking': 16086, 'cities': 7636, 'excitement': 11367, 'denver': 9522, 'bronco': 6470, 'saturn': 23128, 'swin': 25453, 'christiansen': 7548, 'swinburne': 25454, 'spworley': 24600, 'worley': 28415, 'refs': 22006, 'lie': 16499, 'passing': 19941, 'perpendicular': 20188, 'repeat': 22217, 'unused': 27133, 'interection': 14915, 'compute': 8201, 'workable': 28391, 'worried': 28418, 'unique': 27031, 'colinear': 7902, 'sized': 23989, 'geometrical': 12756, 'algebraically': 4392, 'neatly': 18558, 'determining': 9664, 'afil': 4216, 'infinite': 14674, 'intersecting': 14976, 'possibilities': 20771, 'planar': 20495, 'colinier': 7903, '4th': 2398, 'pairs': 19792, 'fails': 11633, 'alternate': 4499, 'formed': 12216, 'bisector': 6007, 'contains': 8415, 'planes': 20498, 'implement': 14478, 'ger': 12772, 'ruu': 22944, 'timmens': 26152, 'prog': 21124, 'triton': 26561, 'utrecht': 27274, 'vma7o9': 27711, '171704': 853, '2147': 1427, 'informatik': 14703, 'muenchen': 18291, 'gnuplot': 12943, 'rdd': 21768, 'ipp': 15076, 'garching': 12587, 'mpg': 18211, 'reinhard': 22068, 'drube': 10339, 'c5ecnn': 6753, '7qo': 3115, 'nish': 18809, 'cv4': 9025, 'chem': 7452, 'nishantha': 18810, 'manipulate': 17142, 'contour': 8449, 'plots': 20569, 'xfig': 28546, 'input': 14777, 'programme': 21132, 'converts': 8511, 'versions': 27530, 'mach': 16959, 'irix': 15103, 'epsi': 11074, 'encapsulated': 10883, 'edit': 10605, 'eps': 11071, 'eps2epsi': 11072, 'perl': 20174, 'succes': 25166, '3dcv': 2118, 'room': 22736, '03': 132, 'progress': 21142, 'pays': 20001, 'taxes': 25670, 'formerly': 12218, 'wages': 27844, 'mencken': 17564, 'sheehan': 23693, 'lopez': 16761, 'brave': 6369, 'solid': 24256, 'mssc50qa5': 18258, 'dtv': 10384, '151834': 714, '14257': 643, 'bigs': 5928, 'kid': 15786, 'rush': 22924, 'mega': 17522, 'served': 23556, 'battery': 5658, 'mate': 17299, 'expereienced': 11441, 'javy': 15279, '1400': 627, 'rushed': 22925, 'aa': 3782, 'stiffs': 24888, 'level': 16425, 'wasting': 27945, 'court': 8689, 'ordinary': 19450, 'born': 6265, 'abs': 3850, 'gm': 12924, 'val': 27359, 'misinterpreting': 17885, 'warped': 27919, 'favorites': 11747, 'stagnant': 24695, 'clubs': 7782, 'prospect': 21220, 'miles': 17777, 'olson': 19291, 'berryhill': 5855, 'greenville': 13160, 'richmond': 22521, 'awful': 5416, 'abilities': 3830, 'runners': 22914, 'superstars': 25304, 'veterans': 27553, 'outfield': 19585, 'offset': 19239, 'differential': 9784, 'describe': 9586, 'twg': 26710, 'strategy': 24978, 'paragraph': 19854, 'damon': 9119, 'wash': 27933, 'cast': 7108, 'hrm': 14097, 'gant': 12578, 'trend': 26497, 'disturbing': 10029, 'bream': 6384, 'hunter': 14179, 'rh': 22494, 'thirdbase': 26004, 'wasted': 27941, 'retrace': 22414, 'likhani': 16542, 'midnight': 17743, 'forbes': 12173, 'cox': 8712, 'goodness': 12985, 'earning': 10504, 'thinkthe': 25995, 'idiots': 14322, 'ballclub': 5522, 'jeeeesh': 15311, 'sighted': 23857, 'collection': 7918, 'nation': 18487, 'eldred': 10734, 'ricky': 22530, 'bones': 6214, 'treasure': 26478, 'polite': 20652, 'defensible': 9380, 'cases': 7099, 'wit': 28299, 'admitted': 4107, 'qualify': 21455, 'sdcn': 23368, 'gohr': 12962, '213': 1414, '743': 2993, '0456': 177, 'tipper': 26164, 'gore': 12996, 'afraid': 4222, 'linda': 16564, 'cohn': 7878, 'sportscenter': 24560, 'se92psh': 23378, 'brunel': 6503, 'hauke': 13559, 'grayscale': 13134, 'uxbridge': 27320, 'jian': 15378, 'lu': 16857, 'coos': 8546, 'dartmouth': 9172, 'purchasing': 21374, 'resoltuion': 22338, 'rborden': 21745, 'ugly': 26817, 'uvic': 27299, 'ross': 22756, 'borden': 6254, 'ugl': 26814, 'victoria': 27582, '1qjs1j': 1207, 'arbitron': 4927, 'analyzed': 4619, 'readership': 21797, 'volumes': 27743, 'unscientific': 27104, 'abetter': 3826, 'origanator': 19487, 'sigh': 23855, 'joke': 15454, 'inject': 14750, 'humour': 14165, 'immortal': 14459, 'foghorn': 12123, 'leghorn': 16358, '_joke_': 3685, 'son': 24293, 'mcelwaine': 17407, 'smileys': 24130, 'impaired': 14468, 'joking': 15455, 'bunches': 6605, 'disneyland': 9958, 'cry': 8864, 'howe': 14063, 'era': 11108, 'improving': 14515, 'key': 15751, 'screw': 23334, 'c5109u': 6727, '7c0': 3107, 'itlm013': 15198, 'donnie': 10192, 'trump': 26599, 'gammons': 12573, 'mentioning': 17574, 'fringe': 12380, 'facing': 11606, 'glavine': 12889, 'likes': 16540, 'jumping': 15574, 'cleary': 7706, 'dfcleary': 9712, 'wondered': 28357, 'mistake': 17911, 'examples': 11342, 'dilute': 9819, 'puzzled': 21399, 'declared': 9325, 'tag': 25560, 'legally': 16355, 'advancing': 4137, 'touches': 26315, 'enlightenment': 10973, 'hans': 13471, 'kuleuven': 16030, 'baele': 5481, 'pic': 20358, 'hpgl': 14082, 'glasnost': 12882, 'computerwetenschappen': 8211, 'follows': 12139, 'generated': 12685, 'preprocessor': 20951, 'plotter': 20571, 'aix': 4331, 'regards': 22027, 'dani': 9137, 'cimad': 7595, 'consultants': 8396, 'antwerp': 4762, 'belgium': 5776, '1964': 1033, 'deja': 9425, 'vu': 27800, 'divisions': 10055, 'joined': 15448, '1962': 1031, 'mnemonics': 17970, 'mnemonics_730956500': 17971, 'gathered': 12621, 'various': 27416, 'flurries': 12091, 'mnemonic': 17969, 'postings': 20791, 'spectral': 24465, 'classification': 7680, 'girl': 12860, 'kiss': 15848, 'sweetheart': 25441, 'classic': 7678, 'dell': 9461, 'fiasco': 11861, 'surely': 25337, 'obese': 19098, 'balding': 5512, 'killed': 15805, 'reluctant': 22137, 'nonscience': 18883, 'octopus': 19188, 'gastronomical': 12613, 'kitchen': 15853, 'menu': 17579, 'sauce': 23130, 'kooky': 15954, 'nifty': 18782, 'ferocious': 11830, 'gorilla': 12998, 'roomate': 22737, 'godzilla': 12956, 'kills': 15807, 'mothra': 18159, 'afternoons': 4232, 'fermented': 11824, 'grapes': 13092, 'mrs': 18228, 'nixon': 18820, 'smiling': 24131, 'backward': 5474, 'astronomer': 5192, 'geocentricity': 12719, 'kepler': 15729, 'motions': 18163, 'reveal': 22442, 'simplicity': 23914, 'faculty': 11621, 'oven': 19628, 'baked': 5500, 'ants': 4761, 'fried': 12371, 'gently': 12712, 'moist': 18031, 'retain': 22403, 'succulence': 25175, 'overseas': 19661, 'broadcast': 6453, 'rodan': 22683, 'overweight': 19676, 'boys': 6324, 'girls': 12862, 'munching': 18331, 'bored': 6261, 'gratification': 13122, 'bloody': 6101, 'planets': 20505, 'mercury': 17589, 'venus': 27493, 'terra': 25841, 'mars': 17250, 'uranus': 27184, 'neptune': 18623, 'pluto': 20587, 'earnest': 10503, 'mother': 18157, 'pizzas': 20467, 'thoughtfully': 26038, 'jelly': 15322, 'sandwich': 23071, 'erotic': 11144, 'joyfully': 15496, 'satisfies': 23118, 'passionately': 19942, 'jugs': 15561, 'nocturnal': 18851, 'jug': 15556, 'educated': 10630, 'eager': 10487, 'swept': 25446, 'nebula': 18562, 'voters': 27763, 'polls': 20659, 'pizza': 20466, 'pies': 20387, 'viscious': 27661, 'elephants': 10759, 'suzy': 25404, 'uncle': 26918, 'protection': 21228, 'mass': 17279, 'mein': 17534, 'vater': 27424, 'erklaert': 11134, 'jeden': 15310, 'sonntag': 24300, 'unsere': 27109, 'niedlichen': 18774, 'planeten': 20503, 'father': 11731, 'explains': 11463, 'verachte': 27497, 'einen': 10707, 'menschen': 17569, 'seinem': 23456, 'unglueck': 27001, 'nie': 18770, 'punkt': 21364, 'scorn': 23302, 'despise': 9627, 'misfortune': 17883, 'misery': 17882, 'spectrum': 24470, 'orange': 19433, 'yellow': 28678, 'indigo': 14614, 'violet': 27644, 'biv': 6025, 'pronounce': 21181, 'battle': 5660, 'vain': 27357, 'verse': 27528, 'io': 15056, 'europa': 11256, 'ganymede': 12580, 'callisto': 6919, 'cries': 8792, 'cheese': 7445, 'embarrass': 10823, 'christians': 7547, 'ich': 14291, 'erschrecke': 11154, 'guten': 13319, 'christen': 7544, 'scare': 23181, 'saturnian': 23129, 'met': 17623, 'thip': 26002, 'miriam': 17867, 'enchiladas': 10887, 'mimas': 17804, 'enceladus': 10885, 'tethys': 25880, 'dione': 9841, 'hyperion': 14231, 'iapetus': 14263, 'phoebe': 20293, 'uranian': 27182, 'mauto': 17345, 'mispronunciations': 17893, 'afflict': 4208, 'angel': 4656, 'uriel': 27195, 'opium': 19388, 'miranda': 17866, 'ariel': 4988, 'umbriel': 26872, 'titania': 26174, 'oberon': 19096, 'sections': 23423, 'cover': 8696, 'relevance': 22110, 'contacting': 8409, '30826': 1859, '151108': 709, 'elegant': 10751, 'construction': 8389, 'versus': 27531, 'overly': 19649, 'strap': 24970, 'cone': 8266, 'habitat': 13372, 'captain': 7018, 'eugenia': 11250, 'lifter': 16514, 'ddeciacco': 9255, 'cix': 7649, 'compulink': 8192, 'deciacco': 9307, 'wa': 27822, '20apr199312262902': 1374, 'lmp8913': 16663, 'lisa': 16611, 'fullview': 12450, 'jpg': 15512, 'spock': 24537, 'haphaestus': 13477, '1qju0binn10l': 1208, 'rave': 21714, 'egalon': 10672, 'claudio': 7683, 'oliveira': 19284, 'visible': 27664, 'gerry': 12783, 'sylvia': 25486, 'actors': 4022, 'technophilic': 25730, 'puppet': 21367, 'supercar': 25279, 'stingray': 24898, 'churchyard': 7579, 'valley': 27369, 'myrtle': 18394, 'entwine': 11022, 'grow': 13229, 'roses': 22753, 'posies': 20751, 'fertilized': 11834, 'eder': 10598, 'hsvaic': 14112, 'boeing': 6166, 'elevator': 10763, 'ai': 4287, 'huntsville': 14182, 'amoco': 4579, 'sheet': 23697, 'erl': 11135, '1906': 972, 'resin': 22331, 't40': 25540, 'carbon': 7028, 'fiber': 11863, 'reinforcement': 22067, 'compressive': 8182, 'psi': 21279, '058': 200, 'lb': 16263, 'cu': 8934, 'theoretical': 25950, 'constant': 8369, 'statute': 24790, 'horizontal': 14016, 'bracing': 6339, 'truss': 26602, 'wires': 28285, 'crush': 8854, 'tapering': 25626, 'tower': 26334, 'calculation': 6891, 'sectional': 23422, 'limits': 16558, 'composites': 8164, 'bedrock': 5732, 'arbitrarily': 4924, 'choose': 7524, 'costruction': 8650, 'drag': 10279, 'losses': 16780, 'eliminated': 10773, 'component': 8159, 'vertical': 27534, 'together': 26218, 'penalty': 20085, 'contend': 8421, 'simplified': 23915, 'structural': 25042, 'drops': 10334, 'meridian': 17599, 'investment': 15036, '2697': 1687, '232': 1540, '7467': 2996, 'rt': 22854, 'athens': 5223, '35611': 2010, '34deg': 1987, '86deg': 3269, '100m': 330, 'jxl9011': 15598, 'ultb': 26854, 'rit': 22594, 'kist': 15850, 'korea': 15962, 'resumes': 22397, 'cae': 6869, 'yousung': 28724, 'gu': 13269, 'eoeun': 11043, 'dong': 10187, 'daejon': 9094, '305': 1850, 'senior': 23497, 'scientist': 23267, 'aided': 4292, 'modeling': 17994, 'chul': 7570, 'lim': 16551, '869': 3267, '1681': 827, '861': 3254, '201': 1320, 'jonas': 15459, 'isy': 15180, 'yngvesson': 28700, 'linkoping': 16592, 'scrowe': 23346, 'hemel': 13699, 'simon': 23911, 'crowe': 8835, 'liberty': 16476, 'reprinting': 22266, 'permission': 20180, 'reprint': 22264, 'topic': 26274, 'snip': 24181, 'fish': 11972, 'fishing': 11975, 'laze': 16260, 'predating': 20901, '1st': 1278, 'intersection': 14977, 'undecidable': 26935, 'baraff': 5569, 'deb': 9281, 'charisma': 7402, 'newsgroups': 18706, 'np': 18976, 'jordan': 15469, 'separation': 23526, 'ursyhon': 27198, 'metrization': 17656, 'theorem': 25949, 'ncsmith': 18537, 'ndsuvax': 18544, 'timothy': 26154, 'lyle': 16919, 'intersects': 14979, 'algebraic': 4391, 'uncountable': 26931, 'cuff': 8949, 'divides': 10048, 'lies': 16503, 'rarely': 21680, 'polyon': 20680, 'phrasing': 20335, 'reduce': 21952, 'modeled': 17992, 'isbn': 15135, '10179': 343, '1985': 1060, 'draws': 10297, 'output': 19602, 'executes': 11384, 'showpage': 23811, 'examination': 11336, 'reduced': 21953, 'encode': 10893, 'forced': 12176, 'axiom': 5427, 'choice': 7518, 'equivalently': 11105, 'zorn': 28810, 'lemma': 16382, 'arises': 4992, 'halt': 13419, 'expressive': 11507, 'turing': 26676, 'halting': 13420, 'difficulties': 9790, 'precision': 20893, 'ink': 14756, 'principia': 21025, 'mathematica': 17309, 'newton': 18720, 'cambridge': 6928, 'introduction': 15007, 'theory': 25955, 'languages': 16148, 'computation': 8198, 'hopcroft': 14005, 'ulman': 26850, 'kernighan': 15736, 'ritchie': 22595, 'dickens': 9755, 'overkill': 19642, 'nj': 18821, 'bleak': 6068, 'suggests': 25208, 'dobbin': 10119, 'dullman': 10409, 'obfusc': 19101, '947': 3471, 'hamiltonian': 13426, 'circuit': 7613, 'grobner': 13202, 'coin': 7881, 'completeness': 8146, 'cray': 8758, 'delivered': 9456, 'loop': 16747, 'milliseconds': 17795, 'scatter': 23189, 'gather': 12620, 'svax': 25406, 'restrict': 22383, 'lipschitz': 16607, 'derivative': 9566, 'deals': 9274, 'electrical': 10740, '282162': 1732, '139282': 620, 'farce': 11699, 'transfer': 26406, 'guard': 13273, 'hate': 13550, 'worker': 28397, 'kp': 15979, 'police': 20648, 'mailrp': 17061, 'gmd': 12928, 'telecommunications': 25760, 'blossoming': 6105, 'testbed': 25870, '1990s': 1071, 'summarises': 25234, 'conclusions': 8245, 'utilisation': 27258, 'seville': 23597, 'organised': 19464, 'european': 11258, 'spanish': 24401, 'cdti': 7224, 'thousands': 26041, 'terminals': 25833, 'antennas': 4744, 'vsats': 27794, 'tested': 25872, 'transmission': 26432, 'videoconferencing': 27589, 'rural': 22923, 'telephony': 25773, 'accommodated': 3914, 'crowded': 8834, 'lower': 16821, 'frequency': 12361, 'ghz': 12814, 'establishing': 11201, 'relay': 22100, 'links': 16593, 'distributed': 10021, 'centres': 7270, 'equalled': 11087, 'versatility': 27526, 'combining': 7983, 'experimenters': 11449, 'businesses': 6665, 'organisations': 19463, 'eurostep': 11261, 'eutelsat': 11264, '1994': 1112, 'approaches': 4871, 'boell': 6167, 'hpcc01': 14077, 'corporate': 8593, 'openning': 19363, 'aldred': 4376, 'totals': 26308, 'saves': 23141, 'ashby': 5092, 'blair': 6040, 'butch': 6670, 'holmes': 13953, 'neid': 18601, 'parrett': 19891, 'reed': 21964, 'bruce': 6497, 'ruffin': 22890, '223': 1484, 'bryn': 6513, 'girardi': 12858, '262': 1669, 'sheaffer': 23687, 'freddie': 12332, 'benavides': 5805, '246': 1601, 'vinny': 27633, 'castilla': 7111, '238': 1567, 'andres': 4644, 'galarraga': 12547, '942': 3463, '116hr': 450, 'tatum': 25659, 'bichette': 5907, 'daryl': 9174, '882': 3294, '224': 1490, 'jerald': 15335, 'alex': 4380, 'cole': 7895, '283': 1735, '153': 724, '266': 1682, '398': 2105, '1259': 532, 'djmst19': 10069, 'unixd2': 27058, 'madura': 17008, 'pl3': 20474, 'optimla': 19419, 'aimla': 4301, 'ziedman': 28786, 'sells': 23478, 'apparantly': 4818, 'dont': 10193, 'shown': 23810, 'ces': 7298, 'developers': 9683, 'showings': 23809, 'licensees': 16491, 'developing': 9684, 'sab': 22976, 'gnv': 12944, 'ifas': 14338, 'plotting': 20573, 'irregular': 15113, 'boundaries': 6303, 'profile': 21115, 'soil': 24237, 'pond': 20688, 'superimposed': 25292, 'surfer': 25344, 'trial': 26508, 'interpolates': 14961, 'contours': 8451, 'creates': 8770, 'artifacts': 5059, 'ld': 16276, '________________________________': 3587, 'lurking': 16900, 'bloom': 6102, 'water': 27952, 'fl': 11994, 'belated': 5771, '26280': 1672, 'briefly': 6426, 'sleep': 24053, 'mle': 17950, 'younger': 28717, 'tend': 25811, 'explosions': 11487, 'mmle': 17964, 'reliable': 22114, 'adam': 4042, 'sw': 25416, 'stratus': 24986, 'sticks': 24884, 'paix': 19794, '1pr5u2': 1171, 't0b': 25535, 'agate': 4242, 'ghelf': 12808, 'rd48': 21766, 'fondly': 12146, 'candy': 6974, 'modern': 18005, 'toffee': 26216, 'injected': 14751, 'vitamins': 27690, 'chocolate': 7517, 'rough': 22781, 'approximation': 4884, 'butter': 6675, 'definitely': 9396, 'bite': 6014, 'nutri': 19049, 'chewy': 7473, 'fudge': 12434, 'reminicent': 22161, 'buds': 6552, 'intestines': 14993, 'joy': 15495, 'wreath': 28447, 'flowers': 12076, 'smell': 24123, 'hawking': 13577, 'universe': 27045, 'cosmologist': 8636, 'karre': 15657, 'marino': 17220, 'lucasian': 16862, 'professor': 21113, 'returned': 22426, 'hosted': 14035, 'moustafa': 18185, 'chahine': 7334, 'merle': 17606, 'mckenzie': 17425, 'affairs': 4195, 'visited': 27670, 'director': 9860, 'managers': 17122, 'royalty': 22810, 'theories': 25953, 'galaxies': 12548, 'dimensions': 9829, 'farther': 11712, 'steps': 24847, 'family': 11679, 'aides': 4293, 'began': 5748, 'von': 27750, 'karman': 15654, 'deputy': 9558, 'arden': 4960, 'albee': 4360, 'observer': 19137, 'briefed': 6423, 'voyager': 27772, 'engraved': 10953, 'extraterrestrial': 11539, 'stumble': 25075, 'communicating': 8051, 'affirmed': 4207, 'confirmed': 8284, 'miracle': 17862, 'miraculous': 17864, 'demonstration': 9494, 'visualization': 27681, '384': 2076, 'entertained': 10998, 'delighted': 9449, 'donned': 10191, 'goggles': 12960, 'jong': 15464, 'curious': 8978, 'composition': 8166, 'norman': 18909, 'haynes': 13582, 'ald': 4374, 'acquisition': 3987, 'spoke': 24540, 'discussions': 9936, 'estabrook': 11203, 'hugo': 14138, 'wahlquist': 27846, 'wave': 27965, 'terrile': 25856, 'philosophy': 20288, 'detection': 9651, 'party': 19926, 'headquartered': 13612, 'planned': 20508, 'departing': 9527, 'aweto': 5415, 'caterpillar': 7140, 'vegetable': 27466, 'bradfrd2': 6343, 'ncar': 18528, 'ucar': 26773, 'bradford': 6342, 'acronyms_731394007': 3993, 'gza': 13347, 'lifeforms': 16506, 'unlimited': 27068, 'cephalopods': 7279, '509': 2427, 'thai': 25918, 'aktis': 4345, 'tla': 26190, 'aug': 5303, 'offered': 19221, 'translating': 26426, 'commonly': 8044, 'botched': 6280, 'confuses': 8298, 'emphatically': 10856, 'encyclopedic': 10910, 'intervals': 14986, 'tells': 25787, 'stand': 24707, 'figuring': 11898, 'introduced': 15005, 'griffin': 13188, 'maintaining': 17076, 'dfi': 9714, 'specklec': 24459, 'mpifr': 18214, 'bonn': 6218, 'german': 12778, 'fortunately': 12235, '1059': 380, 'revised': 22459, 'glossary': 12912, 'abbreviations_': 3819, 'mammoth': 17114, 'tome': 26242, 'tlas': 26191, 'bonus': 6221, 'larry': 16179, 'wall': 27870, 'scramble': 23318, 'entertaining': 11000, 'fashion': 11717, 'astrophysics': 5203, 'aao': 3798, 'anglo': 4664, 'astronautical': 5189, 'aavso': 3808, 'variable': 27403, 'ace': 3948, 'explorer': 11483, 'acrv': 3996, 'rescue': 22305, 'adfrf': 4079, 'dryden': 10350, 'dfrf': 9716, 'agn': 4263, 'nucleus': 19026, 'agu': 4276, 'geophysical': 12759, 'astronautics': 5190, 'aips': 4307, 'aj': 4332, 'alexis': 4385, 'array': 5033, 'sensors': 23511, 'alpo': 4485, 'als': 4488, 'ansi': 4733, 'aoa': 4780, 'abort': 3839, 'aocs': 4782, 'ap': 4784, 'astrophysical': 5201, 'apm': 4804, 'attached': 5257, 'pressurized': 20976, 'module': 18018, 'apu': 4898, 'auxiliary': 5367, 'artemis': 5050, 'asi': 5095, 'agenzia': 4253, 'spaziale': 24422, 'italiano': 15184, 'asrm': 5114, 'motor': 18172, 'atdrs': 5217, 'tracking': 26358, 'atm': 5239, 'maker': 17091, 'ato': 5246, 'aura': 5313, 'universities': 27053, 'avleak': 5393, 'axaf': 5422, 'batse': 5653, 'burst': 6650, 'transient': 26417, 'cgro': 7325, 'bbxrt': 5684, 'eyed': 11554, 'bh': 5889, 'bima': 5955, 'bnsc': 6139, 'ccafs': 7188, 'canaveral': 6959, 'device': 9691, 'ccds': 7193, 'rom': 22718, 'cfc': 7309, 'chlorofluorocarbon': 7514, 'cff': 7311, 'flyer': 12100, 'cfht': 7313, 'france': 12297, 'hawaii': 13573, 'holley': 13947, 'compton': 8191, 'gamma': 12571, 'gro': 13201, 'angular': 4667, 'cirris': 7628, 'cryogenic': 8867, 'radiance': 21568, 'cit': 7633, 'circumstellar': 7624, 'cm': 7800, 'cmcc': 7801, 'cnes': 7815, 'etude': 11243, 'spatiales': 24419, 'cno': 7817, 'nitrogen': 18815, 'oxygen': 19702, 'cnsr': 7821, 'cobe': 7842, 'cosmic': 8633, 'background': 5464, 'comptel': 8190, 'costar': 8646, 'corrective': 8603, 'optics': 19408, 'axial': 5426, 'replacement': 22229, 'craf': 8733, 'rendezvous': 22190, 'crres': 8838, 'combined': 7981, 'csm': 8902, 'cstc': 8911, 'consolidated': 8364, 'usaf': 27205, 'ctio': 8927, 'cerro': 7287, 'tololo': 26235, 'interamerican': 14906, 'clipper': 7739, 'ddcu': 9253, 'dmsp': 10105, 'meteorological': 17637, 'dod': 10138, 'doe': 10141, 'dot': 10212, 'dscs': 10354, 'dsn': 10358, 'dsp': 10361, 'nro': 18990, 'eafb': 10486, 'edwards': 10638, 'environmental': 11031, 'edo': 10623, 'duration': 10432, 'egret': 10686, 'energetic': 10927, 'ejasa': 10718, 'elv': 10805, 'expendable': 11434, 'emu': 10870, 'extravehicular': 11540, 'eso': 11175, 'external': 11521, 'etla': 11237, 'letter': 16418, 'etr': 11239, 'euv': 11265, 'euve': 11266, 'eva': 11267, 'auroral': 5319, 'snapshot': 24160, 'fft': 11854, 'fgs': 11857, 'guidance': 13286, 'hst': 14110, 'fhst': 11858, 'fixed': 11988, 'trackers': 26357, 'fir': 11955, 'transport': 26446, 'foc': 12113, 'faint': 11639, 'fos': 12243, 'spectrograph': 24466, 'frr': 12402, 'readiness': 21799, 'protocol': 21238, 'fts': 12427, 'telerobotic': 25774, 'servicer': 23564, 'fuse': 12486, 'spectroscopic': 24468, 'fwhm': 12503, 'width': 28180, 'maximum': 17354, 'fyi': 12509, 'gas': 12603, 'gbt': 12638, 'gcvs': 12641, 'giotto': 12856, 'geo': 12716, 'geosynchronous': 12769, 'gds': 12646, 'ghrs': 12813, 'interchange': 14910, 'glomr': 12908, 'gmc': 12927, 'giant': 12817, 'cloud': 7768, 'gmrt': 12933, 'meter': 17642, 'greenwich': 13162, 'ut': 27248, 'gox': 13025, 'gaseous': 12604, 'gpc': 13027, 'grs': 13236, 'spectrometer': 24467, 'gsc': 13250, 'gto': 13265, 'hao': 13475, 'hd': 13596, 'draper': 10287, 'entry': 11021, 'heao': 13624, 'hera': 13724, 'hermes': 13736, 'robotic': 22657, 'arm': 5003, 'hf': 13767, 'antenna': 4742, 'hlc': 13879, 'hlv': 13882, 'hmc': 13885, 'halley': 13413, 'multicolor': 18304, 'hertzsprung': 13751, 'russell': 22932, 'hri': 14096, 'imager': 14422, 'rosat': 22747, 'hsp': 14109, 'hut': 14202, 'hv': 14207, 'voltage': 27739, 'iappp': 14266, 'photoelectric': 20305, 'photometry': 20316, 'iauc': 14269, 'ice': 14285, 'cometary': 7994, 'ida': 14307, 'idl': 14323, 'igm': 14350, 'intergalactic': 14931, 'medium': 17512, 'igy': 14365, 'humble': 14159, 'iota': 15064, 'optical': 19406, 'occultation': 19160, 'timing': 26150, 'ips': 15077, 'inertial': 14645, 'ir': 15084, 'iraf': 15086, 'iras': 15088, 'isas': 15134, 'ism': 15148, 'interstellar': 14980, 'iso': 15152, 'ispm': 15167, 'polar': 20638, 'iue': 15207, 'ius': 15209, 'jem': 15324, 'ssf': 24659, 'jgr': 15368, 'jila': 15383, 'kao': 15637, 'airborne': 4310, 'kpno': 15983, 'kitt': 15856, 'peak': 20048, 'kennedy': 15717, 'ktb': 16016, 'cretaceous': 8787, 'tertiary': 25861, 'boundary': 6304, 'lanl': 16153, 'alamos': 4353, 'ldef': 16280, 'lem': 16380, 'excursion': 11374, 'lm': 16659, 'lerc': 16400, 'lest': 16412, 'lfsa': 16450, 'lgm': 16452, 'liquid': 16608, 'lh2': 16457, 'lhx': 16462, 'llnl': 16656, 'livermore': 16642, 'lmc': 16661, 'magellanic': 17017, 'ln2': 16666, 'lrb': 16836, 'lsr': 16848, 'ltp': 16856, 'phenomenon': 20267, 'mb': 17372, 'mcc': 17387, 'meco': 17497, 'engine': 10943, 'cutoff': 9018, 'mmh': 17962, 'monomethyl': 18074, 'hydrazine': 14216, 'mmt': 17966, 'mmu': 17967, 'mnras': 17975, 'notices': 18954, 'royal': 22807, 'moc': 17981, 'mol': 18033, 'mola': 18035, 'altimeter': 4506, 'momv': 18053, 'motv': 18177, 'mpc': 18205, 'mrsr': 18229, 'rover': 22797, 'mrsrm': 18230, 'mtc': 18274, 'tended': 25812, 'naca': 18431, 'advisory': 4159, 'nasda': 18476, 'nasp': 18481, 'aerospace': 4180, 'nbs': 18524, 'nist': 18812, 'ndv': 18545, 'derived': 9569, 'nerva': 18627, 'ngc': 18739, 'nicmos': 18768, 'nims': 18801, 'mapping': 17182, 'nir': 18807, 'nldp': 18828, 'oceanic': 19174, 'noao': 18844, 'observatories': 19133, 'nrao': 18985, 'reconnaissance': 21899, 'neutron': 18664, 'nsa': 18994, 'nsf': 18997, 'nso': 19002, 'nssdc': 19007, 'ntr': 19017, 'thermal': 25964, 'ry': 22952, 'ntt': 19020, 'oao': 19085, 'ocst': 19182, 'omb': 19298, 'oms': 19307, 'opf': 19380, 'orfeus': 19458, 'retrievable': 22418, 'osc': 19524, 'ossa': 19538, 'osse': 19539, 'scintillation': 23270, 'ota': 19546, 'othb': 19551, 'horizon': 14014, 'backscatter': 5469, 'otv': 19564, 'ov': 19623, 'plss': 20577, 'pmc': 20595, 'permanently': 20177, 'pmirr': 20596, 'modulated': 18016, 'radiometer': 21583, 'pmt': 20600, 'photomultiplier': 20319, 'psf': 21277, 'spread': 24577, 'psr': 21283, 'pulsar': 21344, 'pv': 21401, 'photovoltaic': 20331, 'pvo': 21405, 'qso': 21440, 'quasi': 21489, 'rci': 21752, 'rodent': 22686, 'cage': 6877, 'sls': 24100, 'rcs': 21756, 'reaction': 21786, 'rem': 22140, 'rat': 21696, 'enclosure': 10891, 'rfi': 22487, 'riacs': 22506, 'rms': 22631, 'rngc': 22634, 'roentgen': 22697, 'rous': 22790, 'rodents': 22687, 'exist': 11402, 'rsn': 22849, 'rtg': 22859, 'radioisotope': 21582, 'thermoelectric': 25966, 'generator': 12691, 'rtls': 22864, 'saa': 22975, 'anomaly': 4723, 'saga': 23006, 'augmentation': 5307, 'sampex': 23051, 'anomalous': 4722, 'magnetospheric': 17032, 'sao': 23086, 'smithsonian': 24134, 'sar': 23091, 'synthetic': 25513, 'aperture': 4795, 'radar': 21564, 'sara': 23092, 'pour': 20814, 'astronomie': 5195, 'sarex': 23098, 'exercise': 11390, 'suit': 25215, 'adaptation': 4049, 'syndrome': 25507, 'sca': 23163, 'carrier': 7074, 'sct': 23355, 'cassegrain': 7105, 'strategic': 24976, 'initiative': 14748, 'sei': 23455, 'sest': 23570, 'swedish': 25433, 'submillimeter': 25113, 'seti': 23576, 'sid': 23842, 'ionospheric': 15061, 'disturbance': 10028, 'sirtf': 23962, 'sl': 24032, 'spacelab': 24376, 'slar': 24044, 'slc': 24050, 'smc': 24120, 'sme': 24121, 'mesosphere': 17615, 'smex': 24124, 'explorers': 11484, 'smm': 24135, 'sn': 24151, 'supernova': 25298, 'sn1987a': 24153, 'snr': 24189, 'noise': 18859, 'remnant': 22162, 'snu': 24191, 'neutrino': 18662, 'sofia': 24224, 'stratospheric': 24985, 'soho': 24236, 'heliospheric': 13680, 'spdm': 24427, 'dextrous': 9709, 'systeme': 25523, 'probatoire': 21070, 'terre': 25849, 'sps': 24593, 'srm': 24640, 'er': 11107, 'ssi': 24660, 'institut': 14837, 'ssme': 24661, 'sspf': 24662, 'ssrms': 24665, 'sst': 24667, 'survey': 25367, 'supersonic': 25302, 'stis': 24906, 'replace': 22226, 'swas': 25425, 'swf': 25447, 'fading': 11625, 'tal': 25582, 'transatlantic': 26399, 'tau': 25660, 'tcs': 25684, 'tdrs': 25689, 'tdrss': 25690, 'tes': 25862, 'emission': 10841, 'tiros': 26170, 'toms': 26247, 'tps': 26345, 'tss': 26632, 'tethered': 25878, 'ubm': 26771, 'unpressurized': 27086, 'berthing': 5857, 'udmh': 26799, 'unsymmetrical': 27124, 'dimethyl': 9831, 'unidentified': 27011, 'ugc': 26811, 'uppsala': 27172, 'uhf': 26821, 'ultra': 26858, 'uit': 26831, 'ukst': 26845, 'kingdom': 15831, 'usmp': 27230, 'microgravity': 17709, 'universal': 27044, 'utc': 27253, 'zulu': 28817, 'coordinated': 8542, 'uv': 27293, 'uvs': 27301, 'vab': 27344, 'vafb': 27353, 'vandenberg': 27386, 'veega': 27460, 'vhf': 27564, 'vla': 27699, 'vlba': 27702, 'baseline': 5616, 'vlbi': 27703, 'interferometry': 14930, 'vlf': 27705, 'vlt': 27706, 'voir': 27732, 'superseded': 25300, 'vrm': 27789, 'vpf': 27776, 'mapper': 17181, 'wd': 27985, 'wfpc': 28094, 'wfpcii': 28095, 'wiyn': 28316, 'wisconsin': 28288, 'wsmr': 28479, 'sands': 23070, 'missile': 17901, 'wtr': 28483, 'wuppe': 28489, 'photopolarimter': 20322, 'xmm': 28569, 'xuv': 28599, 'yso': 28731, 'bin': 5957, 'scrambling': 23320, 'threshold': 26052, 'srand': 24626, 'acro': 3990, 'split': 24533, 'unshift': 27111, 'foreach': 12182, 'vec': 27450, 'keys': 15757, 'egrep': 10684, 'dict': 9758, 'chop': 7527, 'push': 21386, 'eg': 10669, 'prefix': 20931, 'oldword': 19274, 'substr': 25150, 'ne': 18546, 'elsif': 10799, 'tr': 26346, 'err': 11145, 'moo': 18098, 'bovine': 6310, 'ill': 14391, 'gathers': 12623, 'moss': 18149, 'luigi': 16874, 'palermo': 19803, 'odin': 19198, 'c52w7y': 6742, 'n09': 18407, 'silicon': 23888, 'csd': 8892, '143616': 653, '3588': 2020, 'infonode': 14695, 'ingr': 14727, 'kenney': 15721, 'b17d': 5437, 'standings': 24716, 'certify': 7297, 'concern': 8232, 'cincinnati': 7600, 'signs': 23881, 'uribe': 27193, 'plantier': 20513, 'francisco': 12304, 'stink': 24899, 'mariners': 17219, 'nlcs': 18827, 'alcs': 4373, 'hating': 13555, 'fashionable': 11718, 'guarantee': 13270, '961': 3502, '6502': 2726, '2011': 1322, 'shoreline': 23772, 'blvd': 6126, '94039': 3457, 'accordion': 3929, 'jail': 15249, 'zyeh': 28827, 'caspian': 7104, 'zhenghao': 28785, 'yeh': 28675, 'splitting': 24535, 'algo': 4395, 'clipping': 7741, '1qvq4b': 1242, 'r4t': 21545, 'clip': 7735, 'rectangular': 21923, 'vertices': 27537, 'subpolygons': 25123, 'extending': 11515, 'whereby': 28119, 'depends': 9536, 'checking': 7437, 'headache': 13603, 'overlapped': 19644, 'c5kys1': 6781, 'c6r': 6838, 'panix': 19830, 'dannyb': 9144, 'burstein': 6651, 'sounded': 24334, 'eccentric': 10550, 'flybys': 12099, 'inserted': 14800, 'tricky': 26525, 'stable': 24681, '047m': 178, 'xpresso': 28578, 'vance': 27380, 'pear': 20054, 'shaped': 23656, 'globular': 12906, 'spherical': 24503, 'actual': 4025, 'landmass': 16134, 'configuration': 8276, 'lat': 16203, 'differences': 9780, 'exaggerated': 11335, 'equatorial': 11094, 'bulge': 6583, '1mm': 1151, 'error': 11149, '30cm': 1862, 'deviations': 9690, 'smaller': 24116, 'svr4': 25414, 'resembles': 22313, 'collision': 7934, 'svr3': 25413, 'dunn': 10420, 'tahiti': 25562, 'legend': 16356, 'inhabitants': 14731, 'earthings': 10510, 'organs': 19475, 'polytechnic': 20682, 'luis': 16875, 'obispo': 19103, 'suppose': 25325, 'soviets': 24356, 'hadn': 13387, 'blown': 6109, 'setting': 23579, 'speculate': 24472, 'stretched': 25006, 'budgets': 6551, 'outweigh': 19620, 'concentrated': 8224, 'oboe': 19122, 'commit': 8032, 'achieving': 3960, 'returning': 22427, 'safely': 23000, 'jtchern': 15544, 'ocf': 19176, 'jtc': 15542, 'enterprises': 10996, 'monsoon': 18079, 'pct': 20028, 'gb': 12634, 'streak': 24993, '889': 3305, '444': 2255, 'expos': 11496, '714': 2896, 'athletics': 5228, 'brewers': 6414, 'idle': 14325, 'alphabetical': 4481, 'ppd': 20839, 'rain': 21611, 'rams': 21642, 'lakers': 16104, 'raiders': 21606, 'jtcent': 15543, 'soda': 24218, 'clippers': 7740, 'cheinan': 7449, 'extracted': 11531, 'sumex': 25230, 'aim': 4299, 'mirrors': 17871, 'bearing': 5704, 'poke': 20636, 'abstracts': 3864, 'pst': 21285, 'binhex': 5967, 'grafsys': 13063, 'hqx': 14090, '0100': 61, 'steffen': 24817, 'ove': 19626, 'franz': 12322, 'cfranz': 7315, 'iiic': 14378, 'ethz': 11235, 'umich': 26876, 'incoming': 14557, 'programmers': 21136, 'vers': 27523, 'bugfix': 6568, 'promise': 21164, 'docs': 10126, 'removed': 22170, 'fastperftrig': 11726, 'fpu': 12274, 'visualized': 27684, 'task': 25645, 'conversions': 8505, 'pascal': 19929, 'loading': 16672, 'manipulating': 17145, 'achses': 3962, 'scaling': 23170, 'supports': 25323, 'primitive': 21018, 'commands': 8011, 'perspective': 20207, 'projections': 21157, 'transformations': 26414, '881': 3290, '020': 98, 'processors': 21093, 'arithmetic': 4994, 'compatibel': 8103, 'extensive': 11519, 'manual': 17160, 'teaches': 25696, 'fundamentals': 12465, 'feelt': 11791, 'oop': 19349, 'guild': 13291, 'enclosed': 10889, 'kime': 15819, 'mongoose': 18059, 'torolab': 26291, 'kim': 15815, 'ind': 14588, 'picks': 20368, '190735': 974, '13322': 584, 'glover': 12916, 'edk': 10616, 'brr1': 6496, 'brant': 6362, 'vcr': 27443, 'animated': 4674, 'disney': 9957, 'relatively': 22095, 'compatibles': 8106, 'moshing': 18148, 'cesspool': 7302, 'delight': 9448, 'kiedas': 15794, 'rhcp': 22496, 'demers': 9480, 'cse': 8894, 'mbongo': 17379, '015442': 77, '15723': 750, 'plymouth': 20591, 'k_mullin': 15609, 'mully': 18299, 'lansing': 16158, '0114': 65, '0688': 228, '8187': 3183, '7029': 2873, 'quan': 21460, 'sol': 24240, 'surv': 25365, 'utas': 27252, 'tasmania': 25649, 'c5n3x0': 6798, 'b5l': 5442, 'across': 3994, 'wuarchive': 28486, 'wustl': 28490, 'msdos_uploads': 18242, 'reupload': 22433, 'txt': 26730, 'inline': 14762, 'drawer': 10292, '002': 31, '202844': 1334, 'fellow': 11807, '240282': 1582, 'c23st': 6707, 'kocrsv01': 15927, 'delcoelect': 9438, 'spiros': 24521, 'triantafyllopoulos': 26517, 'delco': 9437, 'electronics': 10748, 'c5r2i1': 6808, '793': 3086, 'skates': 23998, 'xrcjd': 28582, 'resolve': 22341, 'cultural': 8958, 'wgms': 28096, 'classical': 7679, 'audience': 5297, 'elected': 10736, 'advertises': 4149, 'benzes': 5829, 'jewelry': 15354, 'resorts': 22346, 'truthfully': 26607, 'submarines': 25112, 'morning': 18127, 'advertiser': 4147, 'stops': 24943, 'crisis': 8798, 'escalates': 11166, 'sacrificed': 22991, 'arrive': 5038, 'senators': 23491, 'congresspersons': 8310, 'offices': 19230, 'assumed': 5157, 'mugs': 18293, 'decorative': 9346, 'junk': 15579, '317': 1885, '0815': 253, 'hughes': 14137, 'kokomo': 15940, '46904': 2309, 'armm': 5008, 'hparc0': 14076, 'aus': 5320, 'parsons': 19900, 'v2': 27327, 'australasian': 5327, 'fombaron': 12143, 'marc': 17190, 'ufrima': 26808, 'imag': 14413, 'fr': 12275, 'defaults': 9369, 'warrant': 27922, 'upgrading': 27160, 'douginoz': 10233, 'esuoc': 11216, 'csv': 8919, 'warwick': 27930, 'ajay': 4334, 'soni': 24297, 'thyme': 26091, '2g1': 1815, 'bcstec': 5690, 'rgc3679': 22491, 'aarnet': 3803, 'drwxr': 10348, 'xr': 28580, '512': 2439, 'avalon': 5373, 'chinalake': 7499, 'ya': 28633, 'kkerr': 15867, 'mk': 17941, 'kerr': 15737, 'wfan': 28093, 'automation': 5357, 'c5jc3z': 6767, 'knd': 15892, '151202': 710, '3551': 2007, 'jja2h': 15395, 'staion': 24697, 'coast': 7833, 'len': 16387, 'berman': 5845, 'lupica': 16896, '610': 2637, 'wip': 28276, 'obligated': 19117, 'pollute': 20660, 'airwaves': 4329, 'bunch': 6604, 'hoodlum': 13997, 'jockeys': 15423, 'jody': 15425, 'macdonald': 16954, 'fredericks': 12335, 'rockin': 22675, 'till': 26131, 'anytime': 4775, 'mistaken': 17912, 'ratings': 21704, 'dallas': 9112, 'nerve': 18628, 'cowboy': 8708, 'simultanious': 23934, 'broadcasts': 6456, 'bed': 5729, 'wetting': 28089, 'woofing': 28374, 'cranial': 8743, 'deformed': 9409, 'assholes': 5135, 'eagles': 10489, 'droolers': 10330, 'mkcase1': 17942, 'strolling': 25033, 'sniffing': 24180, 'pwg25888': 21411, 'grady': 13059, 'gifs': 12833, 'fils': 11916, 'iastate': 14267, '1qgiah': 1203, 'h9g': 13357, 'cerf': 7282, 'diaspar': 9749, 'shots': 23788, 'attended': 5273, 'briefing': 6424, 'planing': 20506, 'scanning': 23178, 'manage': 17116, 'humans': 14158, 'innocently': 14769, 'ending': 10917, 'sumter': 25245, 'fathertree': 11734, 'bugger': 6569, '_xenocide_': 3747, 'thinman': 25997, 'sweet': 25440, 'negative': 18588, 'simulating': 23927, 'mathematically': 17311, 'reversal': 22450, 'hue': 14131, 'hsv': 14111, 'solarization': 24244, 'wild': 28195, 'camcorder': 6929, 'equipped': 11101, 'chaotic': 7382, 'dynamical': 10472, 'zoom': 28805, 'focus': 12116, 'lovely': 16811, 'analog': 4607, 'grunge': 13242, 'norskog': 18910, 'wisdom': 28289, 'edm': 10618, 'twisto': 26721, 'compaq': 8070, 'mccreary': 17397, 'bst': 6520, '1r6aqr': 1256, 'dnv': 10112, 'c5w5zj': 6831, 'hhq': 13775, 'murdoch': 18345, 'acc': 3887, '19930423': 1080, '010821': 64, '639': 2694, 'transferring': 26409, 'accept': 3895, 'donations': 10185, 'craft': 8734, '__o': 3625, 'laughter': 16223, 'tao': 25622, 'stusoft': 25085, 'hardy': 13507, 'stuart': 25057, 'denman': 9508, '1rfsqbinnc2p': 1275, 'decompression': 9343, 'oddly': 19194, 'lindbergh': 16566, 'granite': 13083, 'reflecting': 21994, 'romantic': 22723, 'swashbuckling': 25426, 'daredevils': 9150, 'daring': 9153, 'occurence': 19167, 'suits': 25222, 'diving': 10052, 'outer': 19584, 'aids': 4294, 'engines': 10949, 'ran': 21644, 'castor': 7116, 'picked': 20365, 'aviators': 5389, 'stomachs': 24926, 'vertigo': 27539, 'hop': 14004, 'bucks': 6541, 'gemini': 12670, 'honest': 13982, 'peeing': 20063, 'bags': 5490, 'glued': 12921, 'butt': 6674, 'bowel': 6312, 'vw': 27813, 'cigar': 7592, 'smoking': 24139, 'polyester': 20667, 'skys': 24030, 'malls': 17108, 'hhhmmmmm': 13774, 'retract': 22415, 'wally': 27881, 'schirra': 23221, 'children': 7492, 'walked': 27864, 'buses': 6660, 'soft': 24225, '93jll': 3450, 'teflon': 25743, 'militello': 17780, 'williamstown': 28212, 'ma': 16940, '93602': 3431, 'hydra': 14215, 'gt0523e': 13261, 'mule': 18295, 'knocking': 15906, 'flooded': 12062, 'mailbox': 17054, 'skipped': 24018, 'outing': 19593, 'steinbrenner': 24823, 'relying': 22139, 'fourth': 12265, 'fifth': 11886, 'brittle': 6448, 'evetually': 11309, 'ranked': 21661, 'toby': 26209, 'elliott': 10784, 'ballistic': 5525, 'precursors': 20898, 'umbrella': 26871, 'dca': 9239, 'oops': 19350, 'disa': 9867, 'sats': 23122, 'ditch': 10031, 'digging': 9801, 'gidi': 12824, 'hilbert': 13811, 'avrahami': 5399, 'brotherhood': 6486, 'breath': 6386, 'suspicions': 25387, 'esther': 11206, 'nee': 18576, 'haddad': 13386, 'neal': 18548, 'ausman': 5321, 'cruise': 8846, 'readouts': 21805, 'mros': 18225, 'detector': 9652, 'dds': 9259, 'magnetometer': 17030, 'mag': 17012, 'indicates': 14606, 'cdusnr': 7225, 'subsystem': 25151, 'rfsagc': 22489, 'dss': 10365, 'madrid': 17006, 'integrity': 14877, 'op': 19353, 'reset': 22320, 'timer': 26142, '264': 1676, 'suppressed': 25328, 'receiver': 21862, 'goldstone': 12969, 'modulation': 18017, 'settings': 23580, 'imbalance': 14438, 'measurement': 17483, 'exhibited': 11398, 'dn': 10107, 'throughout': 26063, 'volts': 27741, 'ranged': 21653, 'consistent': 8356, 'watts': 27962, 'spin': 24513, 'dual': 10386, 'sensor': 23510, '15rpm': 768, 'scanner': 23176, 'lagging': 16096, 'downlink': 10243, 'telemetry': 25766, '40bps': 2175, 'coded': 7857, 'temperatures': 25798, 'acceptable': 3896, 'rpm': 22820, 'pressures': 20975, 'pws': 21414, 'epd': 11054, 'hic': 13780, 'rrh': 22826, 'cmd': 7803, 'initiation': 14747, '184': 930, 'noon': 18890, '169': 831, '900': 3342, 'heliocentric': 13676, '735': 2966, 'trip': 26545, '70185': 2870, '65077': 2730, 'initiated': 14746, '5108': 2436, 'wong': 28362, 'cha': 7331, 'asking': 5104, 'faqs': 11696, 'louisiana': 16797, 'patience': 19966, 'summarize': 25235, 'cruellest': 8845, 'mixing': 17931, 'eliot': 10775, 'wasteland': 27943, '1918': 984, 'js1': 15533, 'isis': 15144, 'jiann': 15379, 'ming': 17822, 'su': 25091, 'mississippi': 17907, 'faggot': 11627, 'mad': 16995, 'clubhouse': 7781, 'banned': 5562, 'schott': 23242, 'alird': 4417, 'oscs': 19527, 'montana': 18082, '0096b0f0': 52, 'c5de05a0': 6750, '003015': 38, 'vmsb': 27716, 'csupomona': 8916, 'cvadrnlh': 9028, 'activated': 4011, 'harkey': 13509, 'dl': 10082, 'delino': 9454, 'deshields': 9604, 'wetteland': 28088, 'pomona': 20687, 'effective': 10657, 'march': 17192, 'abdkw': 3822, 'stdvax': 24801, 'ward': 27906, 'ariane': 4986, 'b1': 5435, 'c50orq': 6724, '7g0': 3111, 'gwg33762': 13336, 'garret': 12598, 'gengler': 12701, 'environet': 11028, 'database': 9184, 'envnet': 11039, '183': 923, '5690': 2531, 'scout': 23312, 'environments': 11033, 'howdy': 14062, 'telnetting': 25790, 'anyways': 4777, 'whiting': 28145, 'mcs': 17451, 'gum': 13301, 'harvey': 13535, '114158': 432, '2246': 1494, 'painless': 19779, 'fancy': 11685, 'viewers': 27604, 'xv': 28600, 'ummm': 26879, 'dpg': 10262, '1024x768': 354, 'biggest': 5923, 'complaint': 8140, 'painfully': 19778, 'cshow': 8896, 'baseman': 5617, '1pqvusinnmjm': 1170, 'crcnis1': 8767, 'unl': 27063, 'horan': 14013, 'particulary': 19917, 'competition': 8122, 'magicians': 17022, 'mediocre': 17506, 'sophomore': 24313, 'dh': 9724, 'teel': 25741, 'stephens': 24843, 'geod': 12721, 'emr': 10868, 'ngis': 18741, 'ottawa': 19561, 'wax': 27974, 'pepsi': 20118, 'cola': 7889, 'rising': 22588, 'noting': 18958, 'slipped': 24076, 'teamsters': 25705, 'inspiration': 14816, 'formation': 12211, 'commercially': 8022, 'viable': 27569, 'aesthetically': 4184, 'aesthetics': 4185, 'geological': 12750, 'jrs': 15532, 'welchgate': 28047, 'welch': 28046, 'sapp': 23090, 'billy': 5953, '5apr199313263142': 2585, 'jhuvms': 15375, 'doctor8': 10128, 'jason': 15273, 'abner': 3835, 'miller': 17787, 'hometown': 13973, 'ex': 11328, 'standing': 24715, 'ovation': 19624, 'flashy': 12016, 'shades': 23625, 'waving': 27972, 'consummate': 8404, 'caller': 6915, 'hulett': 14146, 'announced': 4704, 'recieving': 21873, 'stiches': 24879, 'fernando': 11829, 'warmly': 27915, 'doubts': 10226, 'shortsop': 23782, 'blargh': 6051, 'dumped': 10413, 'outstanding': 19616, 'ovations': 19625, 'recieved': 21872, 'jer114': 15334, 'psuvm': 21289, 'penn': 20097, 'extract': 11530, 'li': 16463, 'everal': 11293, 'popular': 20715, '200629': 1310, '7200': 2911, 'wagers': 27843, 'skeptical': 24004, 'chronic': 7557, 'english': 10951, '131900': 573, '8407': 3217, '195215': 1015, '16833': 828, 'kodak': 15929, 'dj': 10062, 'ekcolor': 10721, 'ssd': 24656, 'jones': 15461, 'mancus': 17127, 'bruce_dunn': 6498, 'horribly': 14025, 'tangled': 25614, 'slug': 24101, 'weighing': 28028, 'lbs': 16268, 'types': 26739, 'taught': 25662, 'poundal': 20811, 'accelerate': 3888, 'rare': 21679, 'olde': 19266, 'tyme': 26735, 'exams': 11343, 'learned': 16313, 'slugs': 24105, 'talked': 25589, 'fighter': 11891, 'jock': 15421, 'poundals': 20812, 'flinking': 12047, 'proponents': 21202, 'insisting': 14810, 'shafer': 23632, 'torre': 26295, '93095': 3412, 'gt7469a': 13262, 'landmann': 16132, 'lankform': 16152, 'gilkey': 12843, 'handers': 13447, 'ninth': 18806, 'lankford': 16151, 'alicea': 4410, 'educate': 10629, 'rip': 22580, 'resting': 22376, 'whitten': 28149, 'controversy': 8488, 'adds': 4074, 'georgia': 12763, 'stereo': 24848, 'pix': 20458, '010326': 62, '8634': 3257, 'csus': 8917, 'arthurc': 5054, 'sfsuvax1': 23610, 'sfsu': 23609, 'chandler': 7367, 'stereos': 24851, 'phobos': 20292, 'deimos': 9422, 'subdirectory': 25099, 'thou': 26035, 'jr0930': 15528, 'eve': 11281, 'albany': 4358, 'regan': 22022, 'fractals': 12278, '_______________________': 3584, 'albnyvms': 4364, 'stages': 24692, 'oversize': 19664, 'shroud': 23817, 'shio': 23735, 'hong': 13986, 'bala': 5504, 'vatti': 27425, 'rabbit': 21549, 'bytes': 6698, '660': 2750, 'lcec': 16272, 'hudson': 14130, '03051': 137, 'waynar': 27976, 'lockheed': 16700, 'kunii': 16032, 'bunkyo': 6613, 'ku': 16020, 'hongo': 13987, 'd9hh': 9082, 'dtek': 10377, 'chalmers': 7349, 'henrik': 13716, 'harmsen': 13517, 'hacke11': 13381, 'gothenburg': 13008, 'andrey': 4648, 'yew': 28688, 'machbanding': 16963, '32768': 1914, '65000': 2725, 'gradient': 13051, '_almost_': 3632, 'smooth': 24141, '_are_': 3636, 'situiations': 23977, 'banding': 5550, 'contrast': 8467, 'misconception': 17878, 'corrected': 8599, 'occur': 19164, 'quantization': 21467, 'transitions': 26422, 'intensities': 14893, 'transistion': 26418, 'brighter': 6430, 'darker': 9155, 'quantizised': 21474, 'backed': 5461, 'r0506048': 21537, 'cml3': 7809, 'chun': 7572, 'lin': 16560, 'csie': 8899, 'ntu': 19021, 'tw': 26698, 'taiwan': 25570, 'peterbak': 20230, 'bako': 5502, 'uu': 27282, 'ªl': 28832, 'taipei': 25568, 'dreams': 10302, 'imaginitive': 14437, 'c5xp0k': 6834, 'g79': 12520, 'mt90dac': 18272, 'del': 9428, 'cotter': 8653, '205403': 1357, 'worthless': 28427, 'dichotomy': 9752, 'pernicious': 20186, 'fallacys': 11662, 'generous': 12694, 'letting': 16423, 'failing': 11632, 'thermodynamics': 25965, 'choices': 7519, 'wings': 28256, '_invasion': 3680, 'snatchers_': 24162, 'unfair': 26986, 'courses': 8688, 'presume': 20981, 'hip': 13831, 'attentively': 5276, 'erudite': 11157, 'inevitable': 14654, 'splendid': 24529, 'symptoms': 25497, 'fledgling': 12028, 'technoculture': 25724, 'soaking': 24199, 'stamping': 24704, 'identical': 14315, 'neutrinos': 18663, 'rumors': 22904, 'persist': 20194, 'pseudonyms': 21276, 'graphs': 13107, 'rocketship': 22672, 'col': 7888, 'worden': 28384, 'mcmath': 17435, 'csb1': 8886, 'nlm': 18829, 'nih': 18790, 'bo': 6140, 'quinn': 21522, 'perot': 20187, 'ear': 10492, 'admiration': 4101, '80416': 3151, 'chuq': 7576, 'rospach': 22755, 'protected': 21226, 'benjamin': 5822, '160': 771, 'ovre': 19681, 'rapp': 21678, 'bay': 5669, 'doubles': 10220, 'dingers': 9839, 'eh': 10692, 'regime': 22032, 'rosen': 22751, 'baby': 5452, 'braindead': 6350, 'decisions': 9318, 'oldgiants': 19270, 'markedly': 17227, 'backup': 5473, 'sarcasm': 23096, 'msd': 18240, 'medicine': 17505, 'institutes': 14839, 'bethesda': 5867, '20894': 1370, 'noose': 18895, 'influenced': 14688, 'neuro': 18656, 'gaskins': 12607, 'pexlib': 20244, 'phigs': 20270, 'manuals': 17162, 'reilly': 22062, '80386': 3148, 'sco': 23283, 'x11r4': 28512, 'desktop': 9623, 'alliant': 4439, 'fx': 12507, '2800': 1722, 'annala': 4691, 'neuroscience': 18657, 'hedco': 13648, '90089': 3346, '2520': 1634, 'jpw': 15526, 'cbis': 7171, 'ece': 10553, 'drexel': 10309, 'wetstein': 28087, 'sunrise': 25265, 'coe': 7861, 'vince': 27626, 'binaca': 5958, 'blast': 6054, 'bbddd': 5677, 'vaxr': 27437, '1piisn': 1161, 'asq': 5113, 'publicized': 21314, 'infamous': 14661, 'darrin': 9169, 'derek': 9561, 'un': 26889, 'diverted': 10043, 'account': 3930, 'owned': 19689, 'shadowy': 23631, 'gray': 13131, 'rejected': 22081, 'financier': 11927, 'canadian': 6955, 'authorities': 5339, 'associate': 5148, 'tater': 25653, 'bing': 5965, 'bang': 5554, 'ben': 5804, 'absolute': 3853, 'superiority': 25295, 'baseballistic': 5610, 'acker': 3968, 'cook': 8525, 'alike': 4416, 'prime': 21016, 'minister': 17840, 'smiled': 24127, 'inadvertantly': 14529, 'pleasure': 20554, 'mulroney': 18300, '_really_': 3713, 'ruins': 22896, 'marvellous': 17264, 'effort': 10665, 'foist': 12126, 'tidbits': 26101, 'vaxi': 27436, 'identify': 14319, 'cue': 8948, 'chime': 7495, 'armor': 5009, 'ontarians': 19333, 'meanwhile': 17477, 'truckload': 26590, 'denis': 9506, 'boucher': 6291, 'bought': 6293, 'realizing': 21822, 'taterific': 25655, 'importance': 14490, 'pool': 20697, 'rename': 22174, 'minds': 17812, 'gutter': 13324, 'parks': 19888, 'helpless': 13695, 'bystanders': 6696, 'reentering': 21970, 'meteorite': 17636, 'combat': 7976, 'brad': 6340, 'arnsberg': 5017, 'newly': 18693, 'rubbed': 22870, 'mud': 18288, 'dogs': 10153, 'boil': 6179, 'sliders': 24065, 'hang': 13464, 'tsa': 26616, 'silent': 23887, 'assassin': 5116, 'eqn': 11080, 'advantages': 4139, 'algiorithm': 4393, 'clockwise': 7751, 'calculations': 6892, 'comparisons': 8079, 'disadvantage': 9871, 'transformation': 26413, 'coordinates': 8543, 'isneeded': 15151, 'beforehand': 5745, 'figures': 11897, 'counterclockwise': 8668, 'libertarian': 16473, 'atheist': 5221, 'anarchal': 4620, 'techno': 25723, 'fnala': 12108, 'redesign': 21937, 'alternative': 4501, '1993apr26': 1100, '152722': 720, '19887': 1066, 'aio': 4305, 'kjenks': 15862, 'jenks': 15328, 'ironic': 15107, 'toothbrush': 26269, 'cliff': 7726, 'stoll': 24924, '221049': 1464, '14347': 651, '1qkkodinn5f5': 1211, 'pablo': 19736, 'iglesias': 14349, 'yom': 28703, 'kippur': 15842, 'hof': 13916, 'representative': 22258, 'undeserving': 26975, 'holtzman': 13959, 'threw': 26054, 'reulbach': 22431, 'harry': 13526, 'steinfeldt': 24825, 'tinkers': 26158, 'evers': 11299, 'stanky': 24725, 'misinterpretation': 17884, 'kuryakin': 16037, 'pavek': 19985, 'unavailable': 26898, 'listings': 16623, 'ccu1': 7208, 'aukland': 5311, '216': 1433, 'architec': 4941, 'facet': 11598, 'unknown': 27061, 'bourke': 6307, 'pdbourke': 20035, 'droid': 10329, 'outdo': 19581, 'wastes': 27944, 'annoys': 4715, '1960s': 1029, '60s': 2635, 'switched': 25463, 'seventies': 23590, 'abruptly': 3849, 'lesson': 16410, 'failures': 11636, '133130': 583, '8998': 3325, 'c4tcl8': 6713, '7xi': 3123, 'coercive': 7865, 'poser': 20748, 'crossed': 8823, 'border': 6255, 'carried': 7073, 'intolerant': 14997, 'horse': 14027, 'tolerance': 26229, 'necessitate': 18568, 'intervention': 14988, 'capitalist': 7005, 'failure': 11635, 'classified': 7681, 'economics': 10581, '19th': 1121, 'ignored': 14359, 'attributed': 5288, 'moral': 18114, 'propose': 21208, 'utilitarian': 27259, 'destruction': 9641, 'wealth': 27993, 'confiscastory': 8285, 'taxation': 25668, 'redistribution': 21946, 'capital': 7004, 'investments': 15037, 'harder': 13498, 'claim': 7658, 'barriers': 5589, 'policies': 20649, 'whenever': 28116, 'pleases': 20552, 'governed': 13018, 'libertopican': 16475, 'bilge': 5934, 'simplistic': 23918, 'economic': 10578, 'justified': 15589, 'cliche': 7719, 'derision': 9564, 'libertopian': 16474, 'invariably': 15015, 'tripe': 26546, 'dish': 9941, 'salve': 23041, 'wounded': 28435, 'pride': 21008, 'infallible': 14660, 'ego': 10681, 'puh': 21333, 'leese': 16337, 'unimportatnt': 27019, 'attatchment': 5265, 'wherever': 28121, 'basics': 5630, 'obstacles': 19143, 'encountered': 10902, 'milky': 17784, 'cluster': 7789, 'a21': 3766, 'discalimer': 9896, 'injuries': 14754, 'occuring': 19168, 'palpitations': 19818, 'lusardi': 16901, 'buffalo': 6559, 'acsu': 4002, 'c5jqm6': 6775, 'hlg': 13880, 'hadar': 13385, 'detect': 9648, 'compass': 8081, 'operators': 19379, 'laplacian': 16168, 'grey': 13175, 'novicee': 18970, 'errors': 11151, 'improvements': 14513, 'convolve': 8523, 'gaussian': 12629, 'imagewidth': 14429, 'imageheight': 14419, 'unsigned': 27112, 'char': 7388, 'input_image': 14778, 'angles_wanted': 4662, 'magnitude_image': 17037, 'laplace_op1': 16167, 'compass_op1': 8092, 'compass_op2': 8093, 'compass_op3': 8094, 'compass_op4': 8095, 'compass_op5': 8096, 'compass_op6': 8097, 'compass_op7': 8098, 'compass_op8': 8099, 'op_rows': 19355, 'op_cols': 19354, 'compass1': 8082, 'compass2': 8083, 'compass3': 8084, 'compass4': 8085, 'compass5': 8086, 'compass6': 8087, 'compass7': 8088, 'compass8': 8089, 'laplace1': 16162, 'original_image_fp': 19490, 'laplace1_mag_fp': 16163, 'laplace2_mag_fp': 16165, 'laplace3_mag_fp': 16166, 'compass_mag_fp': 8090, 'algo_count': 4396, 'fopen': 12169, 'rb': 21740, 'laplace1_magnitude': 16164, 'wb': 27979, 'compass_magnitude': 8091, 'fread': 12328, 'sizeof': 23990, 'fwrite': 12506, 'cat': 7118, 'dev': 9675, 'audio': 5298, 'ub': 26769, 'telnet': 25789, 'bison': 6010, '14261': 645, 'xarchie': 28532, 'xgopher': 28553, 'xwais': 28609, 'jbh55289': 15289, 'snydefj': 24194, 'auburn': 5294, 'snyder': 24195, 'concerning': 8234, 'sails': 23017, 'nontechnical': 18887, 'sailing': 23016, 'friedman': 12372, 'escapes': 11168, 'jerome': 15339, 'worked': 28396, 'ceo': 7278, 'furnish': 12479, 'starsailing': 24751, 'hannibal': 13469, 'wire': 28280, 'cutters': 9021, 'brentb': 6405, 'brent': 6404, 'functions': 12461, 'witht': 28306, 'reinventing': 22074, 'sys': 25516, 'binaries': 5959, 'quickdraw': 21510, 'clarify': 7669, 'libray': 16481, 'knew': 15897, 'implementing': 14482, 'demo': 9482, 'grafsys3d': 13064, 'plot': 20565, 'nauseum': 18506, 'unsupported': 27122, 'undocumented': 26979, 'programmatically': 21131, 'nicer': 18750, '175302': 876, '25180': 1631, 'sarah': 23093, 'js8484': 15534, 'spike': 24511, 'velarde': 27479, 'stankiewicz': 24723, 'silvestri': 23897, 'rep': 22211, 'percentage': 20125, 'fernandez': 11828, 'underrepresents': 26957, 'harm': 13513, 'cleanly': 7697, 'abbott': 3815, 'charged': 7399, 'bosch': 6273, 'rz': 22964, 'karlsruhe': 15651, 'gerhard': 12777, 'ifh': 14342, 'hp2': 14071, 'bau': 5663, 'verm': 27517, 'mime': 17805, 'charset': 7415, '8859': 3298, 'encoding': 10897, '8bit': 3329, 'nerone': 18626, '93apr20085951': 3440, 'sylvester': 25485, 'utexas': 27255, 'ccwf': 7211, '1quvdoinn3e7': 1238, 'srvr1': 24650, 'engin': 10942, 'tdawson': 25686, 'herringshaw': 13748, 'favor': 11742, 'wate': 27951, 'convenience': 8494, 'discussing': 9934, 'dizzying': 10061, 'amiga': 4563, 'readily': 21798, 'observable': 19129, 'plagued': 20490, 'crossposting': 8829, 'likelihood': 16536, 'structured': 25045, 'customary': 9009, 'tact': 25554, 'obliged': 19119, 'sagredo': 23011, 'fictional': 11868, 'comercial': 7991, 'newgroup': 18688, 'newgroups': 18689, 'traffic': 26374, 'sincerely': 23938, 'privat': 21048, 'inst': 14819, 'hydromechanics': 14221, 'baden': 5478, 'wuerttemberg': 28487, 'republic': 22281, 'typing': 26743, 'dipl': 9845, 'ing': 14719, 'sc': 23162, '0721': 235, '608': 2629, '3118': 1873, 'hydromechanic': 14220, '4290': 2219, 'kaiserstrasse': 15619, '7500': 3004, 'nd07': 18542, 'dkauni2': 10074, '7208': 2912, 'yield': 28692, 'compress': 8175, 'ttyl': 26643, 'typical': 26741, 'compression': 8181, 'considerably': 8344, 'pointers': 20629, 'reportedly': 22246, 'fractal': 12276, 'marvelous': 17265, 'automated': 5354, 'waiting': 27852, 'sign': 23864, 'ckctpa': 7654, 'forms': 12220, 'curses': 8990, 'myrddin': 18390, 'sybus': 25480, 'consulting': 8398, 'followup': 12140, 'steelem': 24812, 'rintintin': 22577, 'steele': 24811, 'lform': 16449, 'lmenu': 16662, 'lpanel': 16828, 'prentice': 20938, 'programmer': 21135, 'fmli': 12105, 'mgmt': 17673, 'eti': 11236, '020637': 104, 'paraphrased': 19870, 'menus': 17581, 'frames': 12291, 'subroutines': 25125, 'panel': 19827, 'ascii': 5083, 'produces': 21101, '1f': 1139, '3x': 2146, 'controls': 8486, '813': 3178, '786': 3072, '3675': 2043, '787': 3074, 'route': 22792, 'sloooow': 24084, 'smiles': 24128, 'pats': 19975, 'wallet': 27874, 'agiacalo': 4260, 'nmsu': 18835, 'toni': 26253, 'giacalo': 12816, 'bitmap': 6018, 'gauss': 12628, 'bmp': 6132, 'customized': 9014, 'copying': 8562, 'pause': 19983, 'naviagtion': 18513, 'beacon': 5697, 'directional': 9856, 'wierd': 28186, 'rudyc53145': 22884, 'igd': 14346, '203330': 1339, '4974': 2362, 'oucsace': 19567, 'jclark': 15299, 'otis': 19558, 'nixion': 18819, 'lined': 16578, 'breaking': 6379, 'guzman': 13328, 'smoltz': 24140, '7977': 3097, '7862': 3073, 'acclimate': 3911, 'promising': 21168, '_tangible_': 3728, 'skill': 24010, 'leadership': 16293, 'deny': 9523, 'eerily': 10651, 'assessments': 5131, 'inversely': 15024, 'proportional': 21204, 'whiz': 28151, 'slugging': 24104, 'thumb': 26077, 'finger': 11935, 'perceived': 20123, 'eras': 11109, 'financial': 11925, 'stupidity': 25084, 'franchises': 12302, 'organizational': 19468, 'pursuing': 21384, 'magnet': 17026, 'loathe': 16677, 'posing': 20752, 'opens': 19365, 'understands': 26966, 'pocket': 20614, 'deeper': 9364, 'dy': 10466, 'cummings': 8963, 'morley': 18126, 'suncad': 25253, 'camosun': 6939, 'useable': 27213, 'functionality': 12458, 'assumes': 5158, 'mods': 18014, 'tasm': 25648, 'callable': 6909, 'pixels': 20462, 'spots': 24567, 'sprite': 24590, 'buffer': 6560, 'spang': 24400, 'vgl': 27562, 'zip': 28791, 'zipped': 28792, 'pkzip': 20473, '04g': 179, 'raynor': 21727, 'scarolina': 23186, 'roberts': 22650, 'paced': 19739, 'desired': 9617, 'filename': 11902, 'djs9683': 10072, 'ritvax': 22599, 'vaxc': 27434, 'replied': 22235, 'fritz': 12382, 'morrison': 18139, 'medusa': 17514, 'wheels': 28114, 'invent': 15017, '7782': 3058, 'ms107': 18233, 'richter': 22522, 'fossi': 12245, 'hab': 13366, 'weimar': 28037, 'axel': 5424, 'hochschule': 13908, 'fuer': 12438, 'architektur': 4946, 'und': 26934, 'bauwesen': 5666, 'hallo': 13414, 'renderers': 22185, 'bocax3': 6154, 'options': 19423, 'univesa': 27055, '1qukk7innd4l': 1236, 'lioness': 16602, 'maple': 17179, 'happier': 13485, 'apps': 4886, 'dislike': 9949, 'engulf': 10955, 'pixutils': 20465, 'busy': 6668, 'rehashing': 22057, 'rtfb': 22857, 'bothered': 6284, '072706': 237, '19981': 1117, 'jhwitten': 15376, 'jurriaan': 15584, 'wittenberg': 28313, '19apr199320262420': 1119, 'occult': 19159, 'interrupt': 14972, 'transmit': 26434, 'collected': 7915, 'recorder': 21908, 'collect': 7914, 'blocks': 6094, 'goverment': 13017, '_no_': 3703, 'aerobraking': 4170, 'extend': 11511, 'kwp': 16042, 'wag': 27839, 'plaxco': 20531, 'sgi1': 23615, '37147': 2053, 'scicom': 23261, 'alphacdc': 4482, 'wats': 27958, 'pageos': 19767, 'echo': 10558, 'substance': 25140, 'collapse': 7909, 'inflatable': 14679, 'suffer': 25191, 'disastrous': 9893, 'deflation': 9405, 'sufficiently': 25198, 'resistance': 22333, 'punctured': 21359, 'preasure': 20878, 'caused': 7151, 'catastrophically': 7130, 'deflated': 9403, 'silvered': 23895, 'shards': 23661, 'reentry': 21972, 'passive': 19943, 'transponder': 26444, 'dime': 9823, 'byu': 6701, 'pd': 20031, 'brigham': 6428, 'provo': 21258, 'qiaok': 21434, 'kun': 16031, 'qiao': 21433, 'wireframe': 28283, 'flat': 12017, 'bockamp': 6155, 'florian': 12069, 'matrox': 17322, '1281': 549, 'hphalle2g': 14083, 'technische': 25722, 'universitaet': 27048, '640x480': 2703, 'oemsetup': 19204, 'ooo': 19342, 'feature': 11772, 'omar': 19297, 'salami': 23022, 'cheryl': 7463, 'slam': 24039, 'banner': 5563, 'kingdome': 15832, 'nears': 18554, 'c51rzx': 6737, 'ac3': 3878, 'vertically': 27535, 'martian': 17258, 'runway': 22919, 'vetical': 27554, 'blunt': 6117, 'parachute': 19845, 'vehicles': 27470, 'parachutes': 19846, 'descent': 9583, 'reuse': 22437, 'comfortable': 7996, 'georgy': 12764, 'grechko': 13147, 'bruises': 6502, 'tout': 26329, 'ce': 7227, 'qu': 21442, 'homme': 13976, 'imaginer': 14435, 'autres': 5365, 'hommes': 13977, 'seront': 23551, 'realiser': 21813, 'jules': 15564, 'verne': 27519, 'aardvark': 3801, 'spica': 24507, 'locus': 16704, 'usui': 27246, 'committed': 8036, 'dfegan': 9713, 'lescsse': 16405, 'egan': 10673, 'lesc': 16404, '1993apr8': 1106, '122037': 496, '19260': 992, 'sun1x': 25248, 'res': 22300, 'stucky': 25061, '1pr9qninniag': 1172, 'tahko': 25563, 'lpr': 16834, 'carel': 7047, 'ari': 4984, 'suutari': 25403, 'rs': 22832, 'gks': 12874, 'packards': 19748, 'reasonably': 21838, 'devices': 9692, 'plotters': 20572, 'graphigs': 13102, 'tesla': 25864, 'blkbox': 6084, 'kstar': 16014, 'node': 18852, 'xlib': 28563, 'sl0pr': 24033, 'riverdale': 22603, 'enet': 10934, '869883': 3268, 'thakkar': 25919, 'chandrakant': 7368, 'declab': 9322, 'usu': 27241, 'logan': 16710, 'query': 21500, '24bit': 1618, 'max': 17348, 'que': 21493, 'enable': 10878, 'specify': 24458, 'xstorecolor': 28593, 'pallette': 19808, 'generating': 12688, 'painful': 19777, 'quantification': 21463, 'rknight': 22618, 'stiatl': 24878, 'salestech': 23030, 'uk02183': 26837, 'nx10': 19057, 'mik': 17760, 'uky': 26846, 'majority': 17085, 'readding': 21794, 'moron': 18128, 'lacked': 16085, 'foresight': 12191, 'didrectory': 9766, 'tmp': 26198, 'pointedto': 20627, 'os': 19519, '841': 3218, '5316': 2473, 'leigh': 16376, 'a7f4e4adfd021c0b': 3777, 'rs5': 22837, 'annex3': 4694, '1d17': 1134, '1qn4bginn4s7': 1221, 'mimi': 17806, 'goltz': 12972, 'spacedrive': 24371, 'pursued': 21383, 'freeman': 12345, 'dyson': 10477, 'explosive': 11488, '1957': 1021, '1958': 1023, 'atomic': 5248, 'thirty': 26009, 'taylor': 25673, 'revealed': 22443, 'obfuscated': 19102, '734802983': 2957, 'gouraud': 13015, 'curiously': 8980, 'solved': 24267, 'creator': 8776, 'amusement': 4599, 'languagelevel': 16147, 'documentneededresource': 10136, 'thereof': 25962, 'endcomments': 10912, 'replacing': 22231, 'ineofill': 14641, 'infill': 14672, 'stream': 24995, 'caution': 7154, 'dup': 10424, 'aload': 4464, 'moveto': 18195, 'roll': 22711, 'getinterval': 12792, 'lineto': 16584, 'forall': 12171, 'closepath': 7757, 'ifelse': 14339, 'brody': 6467, 'crystal': 8870, 'blurb': 6120, 'confernce': 8271, 'auspices': 5322, 'attend': 5270, 'pike': 20393, 'hohn': 13927, 'pryke': 21269, 'oakhill': 19080, 'lexus': 16441, 'semiconductor': 23482, 'f23': 11573, '101044': 337, '2291': 1522, 'warrent': 27927, 'optimistic': 19413, 'inclined': 14548, '1g': 1140, 'indecent': 14590, 'dough': 10230, '10mil': 406, 'stooge': 24935, 'dozen': 10255, 'survive': 25373, 'yhe': 28691, 'bgi': 5887, 'vvfont18': 27812, 'oldenburg': 19267, 'dkbtrace': 10076, 'utils': 27265, 'mirrored': 17870, 'ply16386': 20590, 'povshell': 20821, 'pv3dv060': 21403, 'nive': 18817, 'mdssc': 17462, 'varmit': 27418, 'mdc': 17460, 'layne': 16256, '25k': 1656, 'orteig': 19513, 'sell': 23475, 'spirit': 24520, 'saint': 23018, 'backers': 5462, 'stake': 24699, 'settled': 23582, 'civilized': 7648, 'analogy': 4609, 'transocean': 26440, 'voyages': 27774, 'thirties': 26008, 'misunderstanding': 17917, 'aeronautical': 4178, 'super': 25275, 'abundance': 3868, 'jennies': 15329, 'ox': 19693, '1926': 991, 'obsolete': 19141, 'wwi': 28498, 'retired': 22409, 'whirlwind': 28135, 'reliability': 22112, 'flown': 12079, '1927': 993, 'chamberlin': 7354, 'levine': 16431, 'byrd': 6694, '_america_': 3634, 'railroad': 21610, 'destination': 9633, 'practice': 20855, 'funded': 12466, 'arrangement': 5031, 'navigator': 18515, 'portugal': 20741, 'merchants': 17587, 'profits': 21121, 'voyage': 27771, 'shared': 23663, 'investor': 15038, 'risky': 22592, 'payoff': 20000, 'inspire': 14817, 'handful': 13448, 'corporations': 8595, 'kremer': 15993, 'northcliffe': 18918, 'crossing': 8826, '1919': 985, 'alcock': 4371, 'inventors': 15021, 'wealthy': 27994, 'burt': 6655, 'rutan': 22938, 'suggested': 25204, 'cheaply': 7430, 'avweek': 5403, 'stating': 24776, 'n5wvr': 18422, 'powder': 20822, 'alcohol': 4372, 'leslie': 16406, 'southwestern': 24349, '0400': 156, '213917': 1419, 'humanity': 14155, 'tang': 25609, 'mylar': 18386, 'pushed': 21387, 'airframes': 4315, 'reaped': 21832, 'fighters': 11892, 'germans': 12780, 'winglets': 28254, 'ruling': 22901, 'smoothing': 24144, 'supercritical': 25290, 'foils': 12125, '0362': 150, 'kotfr': 15973, 'mig': 17754, 'egad': 10671, 'disagreeing': 9875, 'ether': 11228, 'twist': 26719, '1993apr22': 1096, '213815': 1418, '12288': 500, '130923': 568, '115397': 442, 'dmcaloon': 10092, 'tuba': 26645, 'mcaloon': 17385, 'implodes': 14486, 'core': 8571, 'extraneously': 11535, 'capitalized': 7008, 'swear': 25430, 'astrology': 5184, 'frightening': 12378, 'originating': 19495, 'ostensibly': 19540, 'nuts': 19050, 'innovision': 14774, '16bb58b33': 836, 'd1sar': 9075, 'vm1': 27708, 'uakron': 26764, 'rimar': 22568, 'mx15f': 18380, 'foomp': 12163, 'viewsonic': 27610, '6fs': 2844, 'records': 21912, 'weaver': 28005, 'commandments': 8010, 'exhibition': 11399, 'shutouts': 23827, 'contenders': 8423, 'mascot': 17273, 'logo': 16719, 'anatomically': 4622, 'pose': 20746, '__________________________________________________________________________': 3607, 'refered': 21979, 'parabolic': 19843, 'fuselage': 12487, 'aft': 4228, 'paraboloid': 19844, 'minimizes': 17835, 'somethin': 24283, 'ferment': 11823, 'retrospective': 22424, 'dls': 10086, 'aeg': 4164, 'dsto': 10367, 'silver': 23894, 'clouds': 7771, 'kestrel': 15742, 'haabn': 13360, 'nye': 19060, 'nscee': 18996, 'frederick': 12334, 'haab': 13359, 'fractally': 12277, 'generate': 12684, 'benchmark': 5809, 'promo': 21169, 'flyover': 12103, 'recognisable': 21879, 'mandlebrot': 17129, 'jdl6': 15304, 'justin': 15591, 'lowe': 16817, 'slc8': 24052, 'steinman': 24827, 'utoronto': 27273, 'defenition': 9378, 'underdog': 26940, '162': 790, 'amend': 4551, 'definition': 9397, 'underestimated': 26943, 'sweep': 25436, 'rocky': 22680, 'hunt': 14178, 'wlw': 28330, 'bye': 6690, 'michelson': 17693, 'rally': 21632, 'legged': 16357, 'rope': 22743, 'snarf': 24161, 'wars': 27929, 'menace': 17563, 'rides': 22538, 'intense': 14890, 'nationalistic': 18490, 'residence': 22323, 'holsend': 13957, 'mhd': 17679, 'moorhead': 18109, 'msus': 18270, 'mn': 17968, '134': 593, 'ekdfc': 10722, 'ttacs1': 26636, 'ttu': 26641, 'coons': 8533, '1993apr4': 1102, '221228': 1466, '17577': 882, '00ecgillespi': 55, 'postition': 20794, 'apprecitated': 4866, '00ecgillespie': 56, 'rescinded': 22304, 'illustrated': 14402, 'th': 25914, '1993apr23': 1097, '103038': 365, '27467': 1704, 'agc': 4244, 'bmdhh286': 6130, '22apr199323003578': 1524, 'reported': 22245, 'countdowns': 8664, 'predetermined': 20904, 'regain': 22019, 'encounter': 10901, 'kpa': 15980, 'karl': 15648, 'oslo': 19534, 'workers': 28399, 'disassembled': 9890, 'boosters': 6244, 'lodged': 16705, 'survived': 25374, 'splashdown': 24527, 'towing': 26335, 'spokesperson': 24543, 'malone': 17109, 'washers': 27935, 'bolts': 6198, 'initial': 14739, 'investigation': 15031, 'thiokol': 26001, 'technician': 25717, 'unfortunately': 26995, 'supervisor': 25309, 'naaahhh': 18427, 'subcontractor': 25094, 'lsoc': 16847, 'prepare': 20943, '_________________________________________________________': 3597, '2000': 1286, '53k': 2485, '006': 46, '55901': 2517, '253': 1639, '8044': 3152, 'tie': 26105, '453': 2273, 'prodigy': 21097, 'cmmg96a': 7810, 'seek': 23438, 'strive': 25027, 'alfred': 4388, 'tennyson': 25821, 'queen': 21495, 'kingston': 15838, 'dxb105': 10463, '734155421': 2950, 'aries': 4989, '1993apr7': 1105, '124724': 521, '22534': 1498, 'yang': 28647, 'earlham': 10497, '734495289': 2953, 'virgo': 27649, '161742': 787, '22647': 1507, '93107': 3418, '144339saundrsg': 657, 'ought': 19569, 'presumeably': 20982, '_without_': 3745, 'essence': 11192, 'economy': 10583, 'discretionary': 9925, 'partially': 19906, 'continuing': 8446, 'profitable': 21119, '12787': 544, 'bruchner': 6501, '062907': 218, '108109': 392, 'underpredicting': 26954, 'marxist': 17268, 'groucho': 13209, 'grafitti': 13062, '1968': 1037, 'tanstaafl': 25620, 'freaks': 12330, 'forcing': 12179, 'puckey': 21327, 'restoring': 22381, 'coal': 7831, 'theyare': 25978, 'talus': 25595, 'msk': 18250, 'kolesov': 15943, 'pixar': 20459, 'scene': 23197, 'worlds': 28410, 'nextstep': 18725, 'render': 22180, 'shaders': 23624, 'applying': 4853, 'shadows': 23630, 'reflections': 21996, 'advises': 4155, 'rib': 22507, 'moscow': 18147, 'shograf': 23760, 'c531e6': 6743, '7uo': 3119, 'shographics': 23761, 'kmelcher': 15888, 'rafael': 21598, 'arco': 4955, 'kenneth': 15719, 'melcher': 17538, 'dad': 9089, 'sept': 23533, 'lead': 16290, 'hte': 14114, 'c51r3o': 6736, '9wk': 3567, 'yamauchi': 28646, 'absorbtion': 3860, 'reassignment': 21842, 'meaningless': 17472, 'administrative': 4096, 'shuffle': 23820, 'bode': 6156, 'boding': 6159, 'conjugation': 8317, 'duties': 10443, 'examining': 11340, 'proposals': 21207, 'cheif': 7448, 'cygnus': 9057, 'fantasy': 11691, 'participating': 19911, 'rotisserie': 22776, 'catagories': 7120, 'stealing': 24806, 'higest': 13793, 'taters': 25656, 'allowed': 4449, 'participated': 19910, 'blowtisserie': 6112, 'primarily': 21014, 'offerman': 19224, 'lock': 16696, 'gallaraga': 12559, 'bud': 6545, 'kyle': 16048, 'mebonar': 17488, 'sn01': 24152, 'sncc': 24164, 'lsu': 16850, 'mscidave': 18238, 'nntpd': 18840, 'camps': 6948, 'nonmeasurable': 18880, 'framing': 12294, 'blocking': 6093, 'dirt': 9864, 'sasser': 23104, 'repetitions': 22225, 'reps': 22280, 'aspect': 5110, 'olsen': 19290, 'pitchering': 20442, 'veteran': 27552, 'supprised': 25331, 'glaring': 12880, '__________': 3578, 'bonar': 6208, 'lsuvax': 16851, 'tombaker': 26241, 'brookline': 6479, '15apr199320340428': 762, 'c5jlwx': 6772, '4h9': 2385, 'etrat': 11240, 'bothering': 6285, 'nt': 19011, 'otc': 19549, 'plt': 20578, 'verify': 27513, 'unexpected': 26985, 'cautions': 7156, 'hazardous': 13585, 'pre': 20876, 'armed': 5007, 'parity': 19881, 'waivered': 27856, 'criticality': 8805, 'meets': 17519, '112': 420, 'mcnevin': 17441, 'meetings': 17518, 'cooperation': 8537, 'approved': 4878, '1995': 1113, 'utilize': 27263, 'vsop': 27795, 'radioastron': 21579, 'expand': 11416, 'conduct': 8259, 'exploratory': 11480, 'joel': 15428, 'permit': 20182, 'relationships': 22093, 'communities': 8057, 'vital': 27689, 'methodology': 17650, 'rely': 22138, 'corresponding': 8617, 'observe': 19135, 'celestial': 7245, 'va': 27343, 'clocks': 7750, 'recorders': 21909, 'correlator': 8610, 'socorro': 24215, 'combine': 7980, 'investigators': 15034, 'cores': 8576, 'nuclei': 19025, 'quasars': 21488, 'examines': 11339, 'spew': 24498, 'speeds': 24480, 'hopes': 14009, 'disproved': 9980, 'transponders': 26445, 'transmitters': 26438, 'patterns': 19977, 'originate': 19493, 'pleased': 20551, 'smoothly': 24145, 'uncertainty': 26912, 'jeopardize': 15332, 'russians': 22935, 'anticipated': 4750, 'sides': 23845, 'fulfilling': 12442, 'cooperative': 8538, 'essential': 11193, 'showcase': 23803, 'regardless': 22026, 'risks': 22591, 'undertaking': 26969, 'ambitious': 4546, 'hurdles': 14184, 'virtue': 27654, 'partners': 19923, 'falls': 11667, 'scientifically': 23265, 'exciting': 11368, 'ednobles': 10622, 'sacam': 22984, 'oren': 19456, 'ortn': 19516, 'nobles': 18847, 'ridge': 22539, 'malloy': 17107, 'cbw790s': 7182, 'smsu': 24148, 'corey': 8577, 'webb': 28006, 'grasp': 13114, '160944': 782, '20236w': 1331, 'baron': 5584, 'tih': 26121, 'havardn': 13565, 'haavard': 13365, 'nesse': 18633, 'o92a': 19074, 'frame': 12287, 'iff': 14340, 'glib': 12900, 'clp': 7777, 'professionals': 21112, '____________________________________________________________________': 3603, 'increaseth': 14578, 'smsvma': 24149, 'sorrow': 24320, 'ecclesiastes': 10552, 'jimi': 15385, 'hendrix': 13711, 'dkl': 10080, 'lowenthal': 16820, 'tucson': 26652, 'c50nh4': 6723, '4et': 2380, 'geez': 12659, '1987': 1063, 'noone': 18892, 'throwing': 26066, 'pitchout': 20447, 'brenly': 6402, 'throwout': 26068, 'loved': 16809, 'sacrifice': 22990, 'suffered': 25192, '170817': 848, '15845': 754, 'peri': 20148, 'jove': 15492, 'inconstant': 14566, 'cosmos': 8640, 'interests': 14921, 'spacewatch': 24389, 'increased': 14576, 'mankind': 17151, 'autobiography': 5346, 'glassy': 12887, 'kemp': 15714, 'wandering': 27894, 'charted': 7417, 'orphans': 19508, 'igc': 14345, 'apc': 4791, 'cult': 8955, 'nf': 18728, 'cdp': 7218, '1469100033': 677, '2451': 1597, 'revision': 22460, 'aa16121': 3783, 'pdt': 20039, '9304232331': 3409, 'weikart': 28034, 'cdplist': 7219, 'redwood': 21961, 'api': 4798, 'tense': 25823, 'entered': 10993, 'negotiations': 18598, 'charismatic': 7403, 'negotiators': 18599, 'uncertain': 26910, 'followers': 12136, 'terminated': 25835, 'staying': 24795, 'persuasive': 20211, 'manner': 17154, 'confirm': 8283, 'conversations': 8502, 'conflicting': 8287, 'heavily': 13644, 'agents': 4252, 'atf': 5220, 'taligent': 25587, 'siege': 23848, 'attracted': 5284, 'spectators': 24463, 'cultists': 8956, 'intercede': 14908, 'iah': 14253, 'deprogrammed': 9552, 'hesitantly': 13754, 'lives': 16644, 'subsisting': 25138, 'jolt': 15457, 'twinkies': 26716, 'lectures': 16330, 'indoctrinated': 14625, 'interpersonal': 14957, 'rejects': 22083, 'roles': 22710, 'vigils': 27614, 'chesapeake': 7465, 'toll': 26234, 'marshals': 17253, 'blares': 6050, 'fulfill': 12440, 'apocalyptic': 4806, 'prophecies': 21196, 'reinforced': 22066, 'loudspeakers': 16795, 'speeches': 24478, 'chilling': 7494, 'roland': 22708, 'schemers': 23216, 'iii': 14377, 'networking': 18652, 'g16': 12513, '6740': 2779, '4122': 2184, 'slapshot': 24043, 'shread': 23813, 'mit': 17921, 'lincoln': 16562, 'uaf': 26761, 'compuserve': 8194, 'scasburn': 23188, 'magnus': 17040, 'casburn': 7097, 'magnusug': 17041, '10010717': 313, 'hpfcso': 14081, 'fc': 11759, 'dougs': 10237, 'wri': 28452, 'hrs': 14099, 'leaders': 16292, 'despair': 9624, 'violent': 27643, 'ruthless': 22942, 'slowly': 24098, 'maynard': 17364, 'sattellite': 23124, 'gravitacional': 13126, 'atraction': 5253, '366': 2040, '5208': 2456, 'bloated': 6086, 'ch41': 7330, 'claye': 7687, 'hart': 13528, 'hooks': 14000, 'pex': 20243, 'underneath': 26949, 'figaro': 11889, 'tgs': 25913, 'hoops': 14002, '894': 3316, '9729': 3518, '30332': 1844, 'decvax': 9354, 'hplabs': 14085, 'rutgers': 22939, 'gtri': 13267, 'mini': 17824, 'csd4': 8893, 'uwm': 27311, 'padmini': 19761, 'srivathsa': 24635, 'databases': 9185, 'introductory': 15008, 'johnm': 15441, 'spudge': 24594, 'lonestar': 16728, 'munsch': 18339, 'lot1rapnbh107h': 16786, 'viamar': 27570, 'kmembry': 15889, 'wired': 28282, 'hype': 14225, 'talks': 25592, 'designers': 9612, 'gamepro': 12569, 'chronicles': 7559, 'syndicated': 25505, 'horsepower': 14028, 'vis': 27657, 'sega': 23450, 'turbo': 26672, 'duo': 10423, 'spl2': 24526, 'lubchansky': 16860, '734131045': 2949, 'b61644': 5443, '025027': 126, '4846': 2338, 'indicated': 14605, 'relation': 22090, 'champion': 7357, 'loser': 16775, 'sugary': 25201, 'condiments': 8252, 'secure': 23426, 'grain': 13070, 'decidedly': 9310, 'parsimonious': 19897, '204210': 1345, '26022': 1664, 'pyron': 21416, 'skndiv': 24021, 'dillon': 9818, 'bald': 5511, 'elvis': 10806, 'lemur': 16386, 'jclouse': 15300, 'discover': 9916, 'clouse': 7774, 'discgate': 9901, '1qnm6finn8tr': 1224, 'consuming': 8403, 'clarification': 7667, 'dismissed': 9955, 'bobc': 6151, 'crosen1': 8821, 'ua1vm': 26757, 'ua': 26756, 'alabama': 4351, 'tuscaloosa': 26688, 'bbf2': 5678, 'brooker': 6477, 'fradkin': 12282, 'palying': 19820, 'kicking': 15784, 'enjoying': 10966, 'whalen': 28099, 'survival': 25372, 'refinements': 21990, 'werner': 28068, 'lighter': 16521, 'shorter': 23778, 'tremendous': 26493, 'bright': 6429, 'cryogenically': 8868, 'cooled': 8530, 'proceed': 21082, 'pioneering': 20419, 'sensitive': 23508, 'illuminate': 14396, 'technological': 25725, 'advances': 4136, 'arrays': 5034, 'strides': 25013, 'cited': 7635, 'priority': 21042, 'diet': 9774, 'directive': 9858, 'headquarters': 13613, 'permitting': 20185, 'heavier': 13641, 'boosting': 6245, 'circularize': 7616, 'shortening': 23777, 'stressful': 25004, 'savings': 23143, 'congress': 8305, 'thereafter': 25959, 'flagship': 11999, 'interdisciplinary': 14914, 'blessing': 6073, 'descoping': 9585, 'contribution': 8475, 'tens': 25822, 'detectors': 9653, 'individually': 14622, 'suited': 25220, 'spinoff': 24516, 'premium': 20937, 'surveys': 25370, 'turnaround': 26680, 'downsizing': 10251, 'multiband': 18302, 'reductions': 21957, 'efficiency': 10662, 'estimates': 11209, '850': 3234, '950': 3479, 'enrichment': 10979, 'street': 24999, 'traven': 26469, 'thorn': 26024, 'titled': 26180, 'implying': 14487, 'beats': 5712, 'baserunning': 5624, 'forever': 12194, 'andersen': 4636, 'c5hpg6': 6760, '4lm': 2389, 'bgsu': 5888, 'klopfens': 15882, 'klopfenstein': 15883, 'athleticism': 5227, 'dps': 10267, 'opportunities': 19393, 'groundballs': 13211, '332': 1936, 'groundouts': 13216, 'dp': 10258, '328': 1919, 'opportunites': 19392, 'consistently': 8357, 'kkobayas': 15869, 'husc8': 14201, 'kobayashi': 15925, 'reenter': 21968, 'sideways': 23846, 'symmetric': 25491, 'asymmetric': 5208, 'wingless': 28253, 'husc': 14197, 'stgprao': 24876, 'unocal': 27079, 'ottolini': 19563, '143434': 650, '5069': 2424, 'clldomps': 7746, 'dompselaar': 10180, '193758': 1003, '12091': 481, 'beware': 5881, 'copyrighted': 8564, 'protect': 21225, 'copyright': 8563, 'printing': 21035, 'copyrights': 8565, 'explicit': 11467, 'geosphere': 12765, 'owner': 19690, 'ads': 4125, 'demos': 9497, 'pirate': 20430, 'flak': 12001, 'map': 17176, 'temptation': 25806, 'imagery': 14423, 'distinctive': 10003, 'creative': 8774, 'expression': 11505, 'precedent': 20884, 'telephone': 25772, 'competitors': 8127, 'trick': 26522, 'entries': 11018, 'cant': 6985, 'moguls': 18027, 'gates': 12618, 'hoarding': 13898, 'borst': 6270, 'utwente': 27280, 'pim': 20400, 'pbm': 20006, 'utis116': 27268, 'twente': 26707, 'vergolini': 27510, 'roar': 22641, 'michigan': 17694, 'trumbull': 26598, 'loader': 16671, 'illitch': 14394, 'harwell': 13536, 'tiger': 26114, 'gully': 13299, 'krueger': 16001, 'midseason': 17745, 'slump': 24107, 'contention': 8426, 'eastgate': 10524, 'bernstein': 5851, 'broadcasters': 6454, 'gentleman': 12710, 'sportscaster': 24558, 'kyw': 16051, '80s': 3168, 'watertown': 27955, '02172': 113, '1638': 803, '924': 3399, '9044': 3353, '76146': 3032, 'applelink': 4842, 'gfk39017': 12801, 'krumins': 16004, 'c5y4t7': 6837, '9w3': 3566, 'minority': 17848, 'extinguished': 11526, 'umm': 26878, 'vidi': 27598, 'vici': 27577, 'veni': 27487, 'suggesting': 25205, 'uncluttered': 26920, 'floating': 12058, 'scenic': 23200, 'democracy': 9484, 'ytou': 28733, 'constitution': 8380, 'constitutional': 8381, 'skies': 24009, 'civil': 7644, 'perusal': 20218, 'wasps': 27939, 'violence': 27642, 'races': 21554, 'religions': 22128, 'beliefs': 5778, 'legislation': 16362, 'emissions': 10842, 'quiet': 21518, 'teh': 25744, 'emcon': 10830, 'theoretically': 25951, 'motors': 18176, 'conditioners': 8255, 'objecting': 19109, 'legislating': 16361, 'greed': 13149, 'impacts': 14467, 'ethereal': 11229, 'aesthetic': 4183, 'unspoiled': 27116, 'serpent': 23552, 'rainbow': 21612, 'pufferish': 21330, 'references_730956466': 21984, 'publishers': 21320, '1290': 553, '24th': 1621, 'avenue': 5377, '94122': 3462, '57th': 2553, '10022': 317, 'crawford': 8755, 'peters': 20235, 'aeronautica': 4177, '152528': 719, '92115': 3394, '287': 1749, '3933': 2097, 'kinds': 15826, 'publications': 21312, 'publish': 21316, 'catalogs': 7126, '1945': 1009, 'photographic': 20309, 'scharzschild': 23208, 'strasse': 24973, '8046': 3153, 'bei': 5766, 'munchen': 18330, 'frg': 12367, 'posters': 20787, 'photographs': 20310, 'finley': 11949, 'holiday': 13941, '12607': 535, 'whittier': 28150, '90601': 3355, '945': 3468, '3325': 1939, 'films': 11915, 'viking': 27616, 'slides': 24066, 'cents': 7275, 'utah': 27251, '3303': 1934, '4399': 2243, 'geology': 12752, 'booklets': 6227, 'wiley': 28198, 'sons': 24303, '10158': 340, '0012': 22, 'publishing': 21322, '9111': 3373, 'belmont': 5792, '02178': 114, 'catalogue': 7127, 'parallax': 19856, '45000': 2269, 'wheate': 28109, 'calgary': 6900, 'alberta': 4363, 't2n': 25537, '1n4': 1152, '403': 2162, '4892': 2346, '282': 1731, '7298': 2930, 'uncamult': 26908, 'illustrating': 14404, 'cartography': 7087, 'booklet': 6226, 'superintendent': 25293, 'documents': 10137, '20402': 1343, 'univelt': 27041, '28130': 1727, '92128': 3396, 'naval': 18509, '202': 1327, '1079': 390, 'usno': 27232, 'modem': 18000, '1507': 704, 'willmann': 28218, '35025': 1992, '23235': 1542, '7016': 2868, 'enormously': 10975, 'enthusiasts': 11005, 'britain': 6445, 'ecuador': 10590, 'pps': 20849, 'boasts': 6144, 'strategies': 24977, 'entering': 10994, 'firms': 11962, 'schools': 23238, 'myriad': 18392, 'tips': 26165, 'fellowships': 11808, 'consortia': 8366, 'customers': 9011, '08544': 261, 'ssrt': 24666, 'suborbital': 25121, 'demonstrator': 9496, 'bongo': 6216, 'chrisj': 7541, 'emx': 10876, 'maintains': 17077, 'committees': 8038, 'purely': 21377, 'certificates': 7294, 'assign': 5136, 'binoculars': 5974, 'registry': 22042, '34523': 1977, 'wilson': 28225, 'ingleside': 14725, '60041': 2609, 'endorsement': 10920, 'isr': 15168, 'structures': 25046, 'avation': 5375, 'assessment': 5130, 'lowell': 16818, 'wood': 28365, '808': 3161, '94550': 3469, 'authors': 5344, 'nrc': 18986, 'conceptual': 8230, 'modular': 18015, 'purchase': 21370, 'b098747': 5433, 'ilc': 14388, 'dover': 10239, 'prospector': 21222, 'lei': 16373, 'geochemical': 12720, 'frozen': 12401, 'volatiles': 27735, 'poles': 20642, 'heiken': 13663, 'vaniman': 27393, 'bevan': 5875, 'editors': 10615, 'sourcebook': 24341, '521': 2457, '33444': 1946, 'hardcover': 13495, 'encyclopedia': 10909, 'reviewing': 22457, 'considerable': 8343, 'copious': 8553, 'emphasis': 10854, 'wendell': 28059, 'mendell': 17565, '21st': 1450, '2172': 1436, 'mutch': 18367, 'stratigraphic': 24981, 'nearside': 18555, 'orbiters': 19441, 'histories': 13853, 'miniature': 17825, 'mackowski': 16982, '1621': 791, 'waterwood': 27956, '63146': 2679, '34pp': 1988, 'modelling': 17998, 'marco': 17198, 'miniatures': 17826, 'dracut': 10272, 'skylab': 24028, 'monogram': 18072, 'revell': 22446, 'modules': 18019, 'lrv': 16839, 'postage': 20779, 'stock': 24912, 'kits': 15855, 'cutaway': 9017, 'spectacular': 24462, 'airfix': 4313, 'vostok': 27760, 'collectibles': 7916, '658': 2745, '01826': 86, '508': 2426, '957': 3493, '0695': 230, '5120': 2440, 'grisham': 13197, 'rowlett': 22803, '75088': 3008, '4230': 2210, 'reviewed': 22456, 'kaplow': 15638, 'alway': 4522, '2830': 1736, 'pittsfield': 20453, 'ann': 4690, 'arbor': 4928, '48104': 2329, 'appendicies': 4837, 'tomahawk': 26238, 'bt50': 6525, 'bt60': 6527, 'aerobee': 4169, '150a': 706, 'bt55': 6526, 'begun': 5757, 'modellers': 17997, 'paragraphs': 19855, 'nar': 18467, 'dimensioned': 9827, 'layouts': 16258, 'photograph': 20307, 'arcas': 4931, 'asp': 5109, 'astrobee': 5179, '1500': 695, 'agena': 4247, 'wac': 27832, 'deacon': 9264, 'rockoon': 22677, 'iris': 15097, 'javelin': 15277, 'juno': 15580, 'redstone': 21951, 'nike': 18792, 'apache': 4785, 'cajun': 6880, 'terrapin': 25848, 'trailblazer': 26379, 'vanguard': 27391, 'corporal': 8592, 'sutton': 25402, 'edn': 10621, 'interscience': 14973, '80027': 3130, 'pricey': 21006, 'textbook': 25892, 'shy': 23832, 'chemical': 7454, 'editions': 10611, 'dieter': 9775, 'huzel': 14206, 'huang': 14117, 'propellant': 21189, 'ntis': 19016, 'n71': 18424, '29405': 1776, 'a20': 3765, 'a01': 3752, '1971': 1042, '461p': 2294, 'reproductions': 22275, 'authoritative': 5338, 'designing': 9613, 'stiff': 24886, 'detail': 9644, 'brij': 6434, 'agrawal': 4266, '200114': 1295, 'wertz': 28070, 'determination': 9658, 'kluwer': 15884, '277': 1712, 'chetty': 7471, 'mcgraw': 17415, '8306': 3205, '9688': 3510, 'larson': 16183, 'dordrecht': 10206, '7923': 3084, '0971': 289, 'paperback': 19838, '0970': 288, 'hardback': 13492, 'appendices': 4836, 'fictitious': 11869, 'illustrate': 14401, 'tries': 26530, 'convey': 8513, 'chock': 7516, 'ordered': 19446, '871': 3273, '6600': 2751, 'schemes': 23217, 'antimatter': 4752, 'antiproton': 4753, 'annihilation': 4696, 'afrpl': 4225, '034': 146, 'xrx': 28583, '93523': 3428, 'a160': 3761, 'a10': 3756, 'us57': 27202, 'microfiche': 17706, 'us13': 27201, 'holding': 13936, 'bibliography': 5904, 'proponent': 21201, 'udr': 26801, 'contractor': 8456, 'dtic': 10380, 'logistics': 16717, 'cameron': 6936, 'alexandria': 4382, '22304': 1485, '6145': 2644, 'beamed': 5700, 'afal': 4190, 'a189': 3763, '218': 1441, 'summarizes': 25236, 'pellet': 20076, 'intersteller': 14981, 'relativistic': 22097, 'lightsail': 16526, 'tether': 25877, 'exotic': 11414, 'lightsails': 16527, 'obtaining': 19148, 'ions': 15062, 'antiprotons': 4754, 'nordley': 18899, 'jbis': 15292, 'bussard': 6667, 'ramjets': 21641, 'matloff': 17319, 'fennelly': 11817, 'limitations': 16555, 'electrostatic': 10750, 'electromagnetic': 10744, 'ion': 15060, 'langston': 16145, 'erosion': 11143, 'screens': 23333, '481': 2328, 'powell': 20824, 'augmented': 5308, '1975': 1046, '553': 2507, 'spacefight': 24372, '652': 2734, 'interplanetary': 14958, 'roderick': 22688, 'hyde': 14214, 'ucrl': 26789, '88857': 3304, 'metrics': 17655, 'chamber': 7352, 'magnetic': 17027, 'tritium': 26560, 'breeding': 6395, 'beams': 5702, 'rejection': 22082, 'exhaust': 11394, 'velocities': 27480, 'profiles': 21116, '1978': 1050, 'daedalus': 9093, 'icf': 14289, 'oct': 19183, 'unity': 27039, 'fission': 11978, 'acceleration': 3890, 'transit': 26420, '55g': 2519, 'emc2': 10829, '1190': 460, '9100': 3366, 'manassas': 17125, '22110': 1465, 'farnsworth': 11707, 'hirsch': 13841, 'confinement': 8281, 'isp': 15166, 'flux': 12095, '1969': 1038, 'panic': 19829, 'ensued': 10985, 'stability': 24677, 'tokamak': 26223, 'recanted': 21857, 'bowery': 6314, 'plasmaktm': 20517, 'intensive': 14895, 'koloc': 15944, 'ans': 4731, 'aneutronic': 4654, 'plasma': 20516, 'burn': 6641, 'densities': 9518, 'realtively': 21827, 'innovation': 14770, 'efficient': 10663, 'exceptional': 11355, 'fluid': 12086, 'mechanically': 17492, 'compressible': 8179, 'inductive': 14629, 'megawats': 17530, 'compactness': 8063, 'gigawatt': 12837, 'rapid': 21674, 'precursor': 20897, 'spheromak': 24504, 'appeal': 4823, 'lightning': 16524, 'spacelink': 24379, 'sert': 23553, 'cesium': 7300, 'thrusters': 26073, '70s': 2887, 'coilguns': 7880, 'railguns': 21608, 'ieee': 14334, 'transactions': 26396, 'magnetics': 17028, 'january': 15261, 'symposium': 25493, 'tutorial': 26692, 'beginners': 5753, 'kingsbury': 15836, 'mcgill': 17412, '6070': 2628, 'quebec': 21494, 'm3c': 16934, '3g1': 2133, 'adequate': 4077, 'roundtrip': 22788, '187': 954, 'tethers': 25879, '_tethers': 3731, 'artificial': 5060, 'penzo': 20109, 'mayer': 17363, '_journal': 3686, 'rockets_': 22671, 'kevlar': 15747, 'travelling': 26468, 'wrt': 28472, 'afprl': 4221, '067': 224, 'b088': 5432, '771': 3044, 'a07': 3753, '138p': 617, 'metastable': 17632, 'radical': 21574, 'pumped': 21351, 'sic': 23837, 'plasmas': 20518, 'annihiliation': 4697, 'perforated': 20138, 'quantum': 21476, 'fluctuations': 12084, 'metallic': 17629, 'unconventional': 26927, 'bibliographic': 5903, 'daydreamer': 9223, 'shelf': 23703, 'avon': 5398, '380': 2069, '89814': 3321, 'futher': 12492, 'burrows': 6649, 'spysats': 24606, 'nurrungar': 19046, 'unwin': 27138, '355027': 2006, 'pine': 20405, '363002': 2034, 'rhyolite': 22504, 'aquacade': 4903, 'chalet': 7342, 'vortex': 27759, 'magnum': 17039, 'guardians': 13274, 'peebles': 20062, 'allan': 4422, '7110': 2891, '17654': 886, 'flaws': 12025, 'keyhole': 15754, 'jeffrey': 15318, 'richelson': 22518, '88730': 3301, '285': 1738, 'sentries': 23517, 'philip': 20275, 'klass': 15874, 'september': 23535, 'myron': 18393, 'kayton': 15674, 'avionics': 5391, '827': 3197, 'tomayko': 26240, 'cullers': 8953, 'ivan': 15212, 'linscott': 16597, 'bernard': 5847, 'oliver': 19286, '1151': 440, '1163': 446, 'cr': 8727, 'descriptors': 9595, 'concurrency': 8247, 'phsyical': 20336, 'phrases': 20334, 'transforms': 26416, 'filters': 11919, 'satellies': 23111, 'writeup': 28463, 'photos': 20326, 'weatherphotos': 28004, 'amsat': 4594, 'arrl': 5042, 'handbook': 13442, '3185': 1888, '3193': 1891, '3290': 1926, '0739': 240, '2219': 1475, '225': 1497, 'newington': 18690, '06111': 213, '203': 1336, '1541': 733, 'tides': 26104, 'srinivas': 24633, 'bettadpur': 5869, 'contributed': 8472, 'tidal': 26100, 'deformation': 9408, 'treatment': 26483, 'evolution': 11315, 'refers': 21987, 'texts': 25894, 'geodesy': 12742, 'lambeck': 16110, 'melchior': 17539, 'lex': 16438, 'sonderen': 24294, 'emerald': 10831, 'h1p4s4g': 13352, 'zola': 28798, 'esd': 11170, 'erik': 11131, 'westworld': 28083, 'fortune': 12236, 'cdi': 7216, 'xa': 28528, 'multiplayer': 18308, 'manufactured': 17166, 'panasonic': 19824, 'manufacturers': 17167, 'jbalgley': 15287, 'bbn': 5679, 'balgley': 5514, 'bolt': 6195, 'beranek': 5832, 'newman': 18694, 'orientation': 19479, 'locate': 16688, 'gawne': 12632, 'ears': 10507, 'vnci2b7w165w': 27717, 'inqmind': 14781, 'victor': 27581, 'laking': 16107, 'sightings': 23858, 'drastically': 10289, 'spurious': 24597, 'observed': 19136, 'perihelion': 20154, 'precession': 20888, 'newtonian': 18721, 'leverrier': 16429, 'newcombe': 18682, 'calculated': 6888, 'discoverers': 9919, 'existence': 11405, 'anomalies': 4721, 'inclination': 14547, 'afoot': 4219, 'twere': 26709, 'precesses': 20887, 'curved': 9004, 'wait': 27850, '1915': 980, 'synthesis': 25512, 'electrodynamics': 10743, 'bodies': 6158, 'relativity': 22098, 'reimanian': 22063, 'noteworthy': 18946, 'strengths': 25002, 'accounts': 3933, 'newcomb': 18681, 'believes': 5782, 'subsequent': 25133, 'efforts': 10667, 'fruitless': 12404, 'barbarian': 5571, 'customs': 9015, 'laws': 16246, 'constitutes': 8379, 'griffith': 13189, 'gathering': 12622, 'variations': 27409, 'latitudes': 16213, 'offpoint': 19235, 'delayed': 9434, 'readout': 21804, 'transition': 26421, 'locking': 16701, '7277': 2926, 'cycle': 9050, 'vernadsky': 27518, 'microsymposium': 17724, 'providence': 21253, 'ri': 22505, 'researchers': 22309, 'trim': 26540, 'starcal': 24735, 'calibration': 6903, 'kaufman': 15667, 'xenon': 28543, 'joachim': 15416, 'kih': 15799, 'lous': 16799, 'specification': 24451, 'chosen': 7535, 'hitchhikers': 13860, 'rotfl': 22773, 'reveals': 22445, 'busily': 6663, 'sha': 23620, 'techbook': 25711, 'decentralize': 9305, 'automate': 5353, 'c51z6e': 6740, 'cl1': 7656, 'techbooks': 25712, '0636': 219, 'maintenence': 17079, 'explified': 11469, 'centralize': 7267, 'targets': 25636, 'crumbled': 8848, 'disorganization': 9960, 'miscommunication': 17877, 'littel': 16633, 'firstly': 11968, 'constellations': 8375, 'optimal': 19409, 'comsats': 8216, 'clarke': 7671, 'molniya': 18044, 'secondly': 23414, 'amongst': 4582, 'constellization': 8376, 'makings': 17095, 'inexpensive': 14657, 'incremental': 14583, 'installation': 14824, 'linkup': 16595, 'spacehab': 24375, 'sif': 23851, 'gradients': 13052, 'tails': 25567, 'retrofitted': 22423, 'affordably': 4211, 'gravities': 13129, 'shelter': 23707, 'orders': 19448, 'magnitude': 17036, 'furthermore': 12483, 'restricts': 22387, 'labratsat': 16077, 'bolo': 6192, 'miniaturized': 17827, 'machinery': 16968, 'operated': 19369, 'ons': 19331, 'ldefs': 16281, 'billions': 5949, 'fleet': 12029, 'teleoperated': 25768, 'robots': 22660, 'pry': 21268, 'attach': 5256, 'packs': 19753, 'comsat': 8215, 'replaceable': 22227, 'centralized': 7268, 'radically': 21575, 'cutting': 9022, 'pricetag': 21004, 'inexpensively': 14658, 'ambitiously': 4547, 'native': 18495, 'hopper': 14012, 'descendants': 9579, 'ecology': 10575, 'greenhouses': 13158, 'techboook': 25713, '220100': 1454, '17867': 895, 'ad994': 4036, 'wiggle': 28189, 'dbf': 9234, 'paradise': 19851, 'paging': 19770, 'modes': 18006, '320x200x256': 1898, '800x600x256': 3134, 'palm': 19811, 'snycanva': 24193, 'pratical': 20870, 'lindley': 16569, 'addresses': 4071, 'storage': 24946, 'usuall': 27243, 'typos': 26745, 'syntax': 25510, 'companion': 8066, 'acquired': 3984, 'waldensoftware': 27860, 'cwamsley': 9036, 'wamsley': 27893, '121706': 490, '8533': 3241, 'c51vwc': 6739, 'lru': 16838, 'bodom': 6160, 'odom': 19199, 'cursive': 8991, 'mudpuppy': 18289, '1r3lf9': 1247, 'fu0': 12431, 'geraldo': 12774, 'cartwright': 7091, 'markc': 17224, '101010': 336, 'coulter': 8659, 'daresbury': 9151, 'shadow': 23627, 'serc': 23542, 'dlsg': 10087, 'raytracer': 21733, 'synchrotron': 25503, 'cerrina': 7285, 'mrf4276': 18222, 'egbsun12': 10674, 'feulner': 11843, 'colony': 7945, '2005': 1306, '2010': 1321, '234427': 1557, 'preferibly': 20927, 'habitate': 13373, 'resupply': 22399, 'atleast': 5238, '1billion': 1127, 'disappointing': 9883, 'walton': 27888, 'matthew_feulner': 17331, 'qmlink': 21437, 'c5ldod': 6790, '7pc': 3114, 'afterthought': 4233, 'hagoromo': 13391, 'subsatellite': 25127, 'deployed': 9541, 'transmitter': 26437, 'insertion': 14801, 'positively': 20761, 'inconvenient': 14567, 'expend': 11433, 'brute': 6510, 'c518wo': 6731, 'kfy': 15764, 'news2': 18700, 'kirsch': 15845, 'tc': 25678, 'cursed': 8989, 'relationship': 22092, 'mvps': 18373, 'eleven': 10764, 'literally': 16629, '1982': 1057, '2004': 1303, 'rebuttal': 21853, 'freemant': 12346, 'dcs': 9245, 'glasgow': 12881, 'tjf': 26183, 'g151': 12512, '3344813': 1947, 'oct95': 19184, 'coreldraw': 8573, 'scodal': 23284, 'speedwell': 24483, 'cdr': 7220, 'bitmaps': 6020, 'filmrecorder': 11914, 'recognises': 21880, 'qcr': 21425, 'scd': 23192, 'afternoon': 4231, 'discovering': 9921, 'strayed': 24991, 'causing': 7153, 'blank': 6045, 'graduated': 13056, 'ignores': 14360, 'suitably': 25218, '____________________________________': 3590, '______': 3574, '____________________________': 3585, 'choke': 7521, 'unomaha': 27082, 'stastny': 24763, 'owl': 19686, 'licks': 16496, 'nebraska': 18560, 'omaha': 19296, 'operative': 19376, 'stimulate': 24896, 'distributing': 10022, 'artwork': 5068, 'scrutiny': 23350, 'immortality': 14460, 'deposit': 9545, 'jpgs': 15519, 'surviving': 25376, 'tapes': 25627, 'gallery': 12562, 'dimension': 9825, 'wallpaper': 27878, 'glowing': 12918, 'suddenly': 25187, 'breathed': 6389, 'merit': 17601, 'stimulus': 24897, 'pulses': 21349, 'electrons': 10749, 'browse': 6494, 'artists': 5064, 'gumption': 13303, 'uwi': 27309, 'sunsite': 25269, 'spreading': 24578, 'dial': 9736, 'substancial': 25141, 'otistuff': 19559, 'underground': 26947, 'cafe': 6873, '402': 2161, '0179': 83, 'cyberden': 9043, 'sanfran': 23075, '5527': 2506, 'waffle': 27838, 'scanned': 23175, 'contrib': 8469, 'uuencode': 27285, 'eof': 11044, 'originated': 19494, 'directories': 9861, 'obtain': 19145, 'accepts': 3901, 'uploaded': 27165, 'biographical': 5983, 'contributing': 8474, 'upload': 27164, 'emailing': 10817, 'bx': 6687, '241113': 1587, '68124': 2799, '1113': 417, 'ample': 4586, 'sase': 23102, 'preferably': 20922, 'infofile': 14693, 'preferences': 20925, 'conversely': 8503, 'arrange': 5029, 'peachy': 20047, 'encoders': 10896, 'senders': 23494, 'slab': 24034, 'megabytes': 17524, 'growing': 13230, 'widespread': 28177, 'keen': 15692, 'granted': 13086, 'stipulations': 24903, 'rm': 22629, 'explicitly': 11468, 'courteous': 8690, 'compensation': 8113, 'naming': 18456, 'characters': 7397, 'initials': 14744, 'digit': 9802, 'leonardo': 16398, 'devinci': 9694, 'mechanical': 17491, 'ldmek5': 16284, 'ldmech5': 16283, 'assures': 5165, 'guidelines': 13288, 'sumerian': 25228, 'deity': 9424, 'pope': 20707, 'priest': 21009, 'ezine': 11565, 'sacrifices': 22992, 'unscrupulously': 27106, 'illegal': 14392, 'revert': 22454, 'viewed': 27602, 'copied': 8550, 'electronically': 10747, 'incurs': 14587, 'newsletters': 18711, 'kick': 15781, 'booty': 6249, 'hoover': 14003, 'mathematik': 17313, 'bielefeld': 5916, 'uwe': 27307, 'schuerkamp': 23249, 'revolting': 22467, 'vandalize': 27383, 'terrorism': 25858, 'unbelievable': 26904, 'promises': 21166, 'depressed': 9549, 'inherently': 14735, 'dusk': 10437, 'lasts': 16202, 'inconvienenced': 14568, 'indo': 14624, 'eurpoean': 11262, 'ancestry': 4627, 'distressed': 10017, 'socialism': 24208, 'certianly': 7292, 'cormackj': 8580, 'cormack': 8579, '24x': 1622, 'hicolor': 13783, 'hbrooks': 13590, 'uiatma': 26825, 'harold_brooks': 13521, 'risp': 22593, 'cab': 6847, 'chickasha': 7480, 'threads': 26045, 'predict': 20907, 'brock2': 6462, 'comparing': 8076, 'elias': 10767, 'stomach': 24925, 'squares': 24611, 'correlation': 8608, 'lhs': 16461, 'rhs': 22502, 'ridiculously': 22542, 'equation': 11091, 'underpredicts': 26955, 'ly': 16913, 'stronger': 25036, 'storms': 24953, 'brewery': 6415, 'bavasi': 5667, 'maxvill': 17357, 'razor': 21739, 'swix': 25471, 'nvg': 19053, 'runar': 22908, 'jordahl': 15468, 'trondheim': 26577, 'norway': 18925, 'pl6': 20477, 'n020ba': 18406, 'fortran': 12233, 'grid': 13179, 'repost': 22252, 'interurban': 14984, 'campus': 6949, '4601': 2289, '4461': 2260, '3660': 2041, 'v8x': 27342, '3x1': 2147, 'portuguese': 20744, 'polish': 20651, 'brazilians': 6372, 'travelled': 26466, 'fever': 11844, 'gregg': 13166, 'walters': 27886, 'divison': 10056, 'koa': 15924, 'arthroscopic': 5052, 'knee': 15893, 'nied': 18771, 'gooden': 12983, 'srubio': 24649, 'garnet': 12597, 'rubio': 22876, 'dusty': 10439, 'trusts': 26605, 'ballgame': 5523, 'falters': 11670, 'burba': 6621, 'emergency': 10835, 'niepornt': 18778, 'phoenix': 20294, 'nieporent': 18777, 'princeto': 21022, '084432': 258, '3805': 2070, 'c51uc6': 6738, 'bl1': 6033, 'ada41546': 4039, 'driftwood': 10316, 'viscaino': 27660, 'swings': 25459, 'touched': 26313, 'grace': 13044, 'til': 26125, 'stupidest': 25083, 'bds': 5692, 'batf': 5645, 'pearson': 20055, 'tsd': 26619, 'arlut': 5002, 'shirlene': 23744, 'wren': 28450, 'gotribe': 13010, 'cbnewse': 7178, 'sleeves': 24056, '220115': 1455, '16282': 797, '204514': 1349, '2180': 1442, '12805': 548, 'sleeveless': 24055, 'deciding': 9312, 'vote': 27761, 'boog': 6224, 'clot': 7765, 'ihlpe': 14367, 'sp1marse': 24363, 'kristin': 15998, 'seirio': 23458, 'flattening': 12020, 'definied': 9393, 'parametrically': 19866, 'knife': 15899, 'calculate': 6887, 'fold': 12128, 'caligula': 6907, 'rjck': 22612, 'kyanko': 16045, '640x400': 2701, 'dutc0006': 10440, 'c5g7qb': 6756, 'bios': 5991, '0x100': 301, '8514': 3237, 'restrictions': 22386, 'ahh': 4280, 'punched': 21355, 'calculator': 6893, '307': 1855, '300k': 1836, '640x400x256': 2702, '250k': 1628, '512k': 2441, 'punch': 21354, 'nites': 18813, 'hwstock': 14211, 'snll': 24182, 'arpagw': 5028, 'stockman': 24917, 'harlan': 13510, 'hp2xx': 14072, 'sandia': 23066, 'precompiled': 20894, 'prefereably': 20923, 'oberto': 19097, 'genes': 12695, 'icgeb': 14290, 'trieste': 26531, 'jacques': 15240, 'extraction': 11532, 'decoded': 9333, 'converters': 8509, 'hint': 13825, 'locating': 16691, 'mikelson': 17764, 'almac': 4456, '665371': 2761, 'jw': 15594, 'kay': 15672, '3059': 1852, 'supercharged': 25282, 'rimmer': 22570, '3788': 2064, 'ega': 10670, 'ferraro': 11832, '57025': 2538, 'deluxe': 9472, '8993': 3322, 'dsnyder': 10359, 'falcon': 11655, 'aamrl': 3791, 'wpafb': 28438, 'cfh': 7312, '114428': 434, '2061': 1361, 'c4va9r': 6715, 'kk7': 15864, 'taurus': 25665, 'nps': 18981, 'stockel': 24913, 'oahu': 19077, 'oc': 19154, 'opps': 19400, 'typed': 26737, 'visuals': 27688, '303': 1842, '9000': 3343, 'khoros': 15777, '505': 2421, '6563': 2743, 'ptrg': 21300, 'eece': 10643, 'unm': 27071, 'anonyomus': 4728, 'valid': 27365, 'katkere': 15664, 'krusty': 16005, 'eecs': 10645, 'arun': 5070, 'cylinder': 9059, '1qc1fginnbv4': 1200, 'darkstar': 9159, 'koehler': 15930, 'secs': 23420, 'thrilled': 26056, 'sx': 25477, 'sy': 25478, 'sz': 25527, 'ey': 11551, 'ez': 11563, 'easiest': 10517, 'touching': 26316, 'closest': 7761, 'penetrate': 20092, 'backbone': 5458, 'intersect': 14974, 'pillbox': 20395, 'hemispheres': 13703, 'ends': 10923, 'erich': 11122, 'schlaikjer': 23224, 'schlae': 23223, 'aron01': 5020, 'goldman': 12968, 'sachs': 22985, 'pipeline': 20424, '160550': 779, '7592': 3026, 'tennant': 25818, 'spending': 24493, 'ammended': 4573, 'culture': 8959, 'undone': 26980, 'kbos': 15679, 'carina': 7052, 'bose': 6274, 'albuquerque': 4368, 'thud': 26076, 'kurt': 16036, 'daisy': 9105, 'cleanse': 7698, 'mindless': 17810, 'r00lz': 21536, 'senseless': 23503, 'fun': 12454, 'rewarding': 22475, 'renouar': 22204, 'amertume': 4558, 'ufr': 26806, 'p7': 19724, 'ibp': 14277, 'renouard': 22205, 'olivier': 19289, 'universite': 27050, 'informatique': 14708, 'quadric': 21447, 'quartic': 21485, 'implicit': 14483, 'mmontgom': 17965, 'wlu': 28329, 'montgomery': 18088, 'surge': 25347, 'soar': 24201, 'stoned': 24930, 'sore': 24316, '________________________________________________________________________': 3606, 'texdude': 25889, 'cs1': 8875, 'bradley': 6344, '734914692': 2961, 'arthoscopic': 5051, 'surgery': 25348, 'tjrad': 26185, 'radosevich': 21597, 'ia': 14249, 'locked': 16698, 'closet': 7762, 'chained': 7336, 'higuera': 13807, 'coffing': 7869, 'lets': 16417, 'producers': 21100, 'pittance': 20450, 'shaping': 23658, 'tseng': 26620, 't890449': 25543, 'patan': 19953, 'upm': 27167, 'es': 11161, 'lib': 16468, 'msg': 18246, 'dam': 9113, 'vi': 27566, 'vpic6': 27779, 'tseng4000': 26622, 'affair': 4194, '1r3nuvinnjep': 1248, 'intriguing': 15000, 'thriving': 26057, 'justifications': 15588, 'demanded': 9477, 'revolutionary': 22469, 'invested': 15027, 'kreyling': 15995, 'lds': 16287, 'loral': 16763, '6966': 2827, 'buffers': 6562, '196': 1027, '197': 1039, 'hathaway': 13554, 'brightness': 6431, 'complains': 8139, 'miniscule': 17839, 'impact': 14464, 'zipping': 28793, 'prodigal': 21096, 'nikola': 18793, 'neill': 18612, 'remarkable': 22147, 'conductivity': 8262, 'gases': 12605, '1914': 978, 'lighting': 16522, 'surrounding': 25362, 'lamp': 16116, 'transformed': 26415, 'illuminated': 14397, 'protests': 21236, 'strictly': 25011, 'rooted': 22740, 'heavens': 13640, 'pristine': 21047, 'sacred': 22989, 'unsullied': 27120, 'profoundly': 21122, 'abyss': 3875, 'horizons': 14015, 'petty': 20242, 'solely': 24250, 'uncorruptable': 26930, 'mortal': 18142, 'apotheosis': 4813, 'afterlife': 4230, 'sputniks': 24598, 'puny': 21366, 'assimilating': 5140, 'dwarfed': 10454, 'hunger': 14177, 'beauty': 5717, 'populated': 20717, 'ghastly': 12807, 'sculpted': 23361, 'trashed': 26460, 'whipped': 28134, 'cockroaches': 7848, 'squirrels': 24621, 'rats': 21710, 'friends': 12377, 'appalacian': 4816, 'weekend': 28020, 'paved': 19984, 'roads': 22638, 'indoor': 14627, 'plumbing': 20581, 'hollow': 13951, 'dulles': 10408, 'artic': 5055, 'wilderness': 28196, 'fouled': 12254, 'banish': 5556, 'disgusting': 9940, 'beer': 5742, 'hemmorrhoid': 13704, 'ointment': 19254, 'advertisements': 4146, 'heaven': 13638, 'reactions': 21788, 'refuge': 22009, 'baseness': 5620, 'listing': 16622, 'passage': 19934, '_is_': 3681, 'mealticket': 17468, 'elitist': 10778, 'intrusion': 15009, 'wm': 28331, 'ldo': 16285, 'waikato': 27847, 'oliveiro': 19285, '212441': 1413, '34125': 1968, '164940': 810, '11632': 447, 'skeptic': 24003, 'claiming': 7660, 'consumer': 8402, 'radious': 21594, 'supermac': 25296, 'digitize': 9807, 'movies': 18197, '160x2xx': 783, 'resized': 22335, '25x': 1659, '3xx': 2148, 'decreased': 9348, 'fps': 12273, 'quadra': 21444, 'lcii': 16273, 'spoiled': 24538, '68040': 2793, 'hardisk': 13501, 'scaled': 23168, 'optimizations': 19414, 'ratios': 21708, 'fone': 12147, '856': 3242, '2889': 1755, '838': 3212, '4066': 2171, '175': 874, 'turner': 26682, 'danebury': 9130, 'hursley': 14190, 'subdirectories': 25098, 'filed': 11901, 'casbah': 7096, 'nwu': 19056, 'ouellette': 19568, 'unseen1': 27108, 'northwestern': 18922, 'evanston': 11278, '8966': 3318, 'dtate': 10374, 'substituting': 25148, 'irony': 15110, 'barring': 5590, 'solo': 24260, 'phrase': 20332, 'advisedly': 4154, 'notch': 18940, 'clutch': 7793, 'measurable': 17480, 'extent': 11520, 'stat': 24764, 'differently': 9786, '1r6ub0': 1261, 'mgl': 17672, '164801': 809, '7530': 3014, 'julian': 15565, 'reliabity': 22113, 'statements': 24769, 'nasty': 18484, 'suffering': 25193, 'bugaboos': 6567, '93apr20145301': 3441, 'chlorine': 7513, 'advocated': 4162, 'sharply': 23676, 'eminently': 10840, 'competitive': 8124, 'trendy': 26499, 'sulfate': 25223, 'purification': 21378, 'cleaner': 7694, 'dominance': 10171, 'marketplace': 17232, 'pigment': 20392, 'oxide': 19698, 'replaced': 22228, 'decades': 9295, 'metal': 17627, 'flaw': 12023, 'lunatics': 16888, 'evades': 11270, 'addresses_730956515': 4072, 'bureaucracies': 6627, 'pr': 20852, 'grants': 13089, 'employment': 10865, 'cabinet': 6853, '20k': 1377, 'servants': 23554, '100k': 327, 'hq': 14089, '20546': 1358, '358': 2014, '1600': 772, 'moffett': 18023, '94035': 3456, '694': 2821, '5091': 2428, 'atmospheres': 5242, 'helicopter': 13674, 'stol': 24921, 'probes': 21073, '8381': 3213, '558': 2515, 'xb': 28535, '20771': 1367, '6255': 2667, 'sounding': 24336, 'heavies': 13642, 'cassini': 7107, 'distinction': 10002, 'unsolicited': 27113, 'hires': 13836, '171': 849, 'jpldescription': 15521, '483': 2334, '5111': 2437, 'manages': 17123, 'simulators': 23931, 'titusville': 26182, '32899': 1924, '867': 3264, '2468': 1604, 'hampton': 13436, '23665': 1564, 'newport': 18697, '865': 3260, '2935': 1774, 'specializes': 24445, 'brookpark': 6480, '44135': 2251, '433': 2234, '35812': 2016, '0034': 40, 'michoud': 17695, 'orleans': 19503, 'parish': 19880, '70129': 2867, '2601': 1663, 'tanks': 25618, 'stennis': 24837, '39529': 2100, '688': 2806, '3341': 1944, 'island': 15145, '23337': 1549, '824': 3194, '3411': 1967, '8757': 3282, '21240': 1411, 'contracted': 8453, 'uga': 26810, 'nationals': 18492, 'requesting': 22289, 'embassies': 10825, 'approval': 4875, 'pentagon': 20105, 'unacknowledged': 26894, 'rivals': 22600, 'arianespace': 4987, 'boulevard': 6297, '91006': 3367, 'evry': 11322, 'cedex': 7236, '1747': 872, 'suite': 25219, '20006': 1291, '9075': 3357, '955': 3490, '488': 2344, '4158': 2190, 'hamamatsu': 13423, 'cho': 7515, 'chome': 7523, 'minato': 17808, 'soyuzkarta': 24361, 'vologradsij': 27738, '109125': 395, 'camp': 6940, 'tranquility': 26393, '6225': 2661, 'vectorspace': 27457, '35805': 2015, '32780': 1916, '837': 3211, '3400': 1963, '3184': 1887, 'brochure': 6459, 'youngsters': 28718, 'completing': 8147, 'editorial': 10613, 'commerce': 8018, '69th': 2834, 'flr': 12081, '80906': 3166, '77002': 3042, '719': 2905, '5490': 2500, '20004': 1290, '3483': 1984, '1857': 945, 'reston': 22377, '22091': 1461, '648': 2718, '1813': 914, '2200': 1453, 'mailed': 17055, 'furmint': 12478, 'nectar': 18571, 'schedules': 23214, 'rouben': 22780, 'math9': 17306, 'rostamian': 22760, '141824': 639, '23536': 1561, 'computes': 8212, 'daylight': 9224, '2458': 1600, '21228': 1410, 'definitions': 9398, 'tilt': 26132, 'axis': 5429, 'equinox': 11098, 'equator': 11093, 'tan': 25606, 'radians': 21569, 'graph': 13094, 'varies': 27413, 'arctic': 4958, 'kai_h': 15617, 'postoffice': 20796, 'kai': 15616, 'howells': 14065, 'tracer': 26351, '1r1cqiinnje8': 1244, 'llullaillaco': 16658, 'traces': 26353, 'mapped': 17180, 'daemon': 9095, 'ppppp': 20847, 'ooooo': 19346, 'persistance': 20195, 'freeware': 12350, 'mortimer': 18144, 'ave': 5376, 'tas': 25642, '7008': 2863, 'elsewhere': 10798, 'alpha': 4475, 'explode': 11470, 'westford': 28079, 'needle': 18580, 'crashing': 8750, 'clicks': 7723, '629': 2674, '6700': 2771, '131': 569, 'repairstation': 22216, 'c5mtyj': 6795, '12q': 560, 'alternators': 4503, 'invest': 15026, 'substantial': 25142, 'treaty': 26486, 'treaties': 26481, 'negotiated': 18595, 'signed': 23873, 'hurh': 14185, 'dxf': 10464, 'strata': 24974, 'adnet13': 4110, 'macrayshade': 16988, 'stratavision': 24975, 'cinch': 7597, 'translator': 26429, 'minicad': 17828, 'swivel': 25470, 'igs': 14364, 'externals': 11523, 'esp': 11179, 'usrs': 27237, 'misplaced': 17890, 'macs': 16991, 's_braun': 22973, 'irav19': 15090, 'ira': 15085, 'uka': 26839, 'braun': 6368, 'iravcl': 15091, 'ukay': 26840, '204838': 1352, '13217': 577, '223807': 1488, '16712': 821, '93apr20160116': 3442, '1r46j3inn14j': 1249, 'mohney': 18029, 'accounting': 3932, 'seven': 23588, 'estimate': 11207, 'effectiveness': 10660, 'fiscal': 11970, 'colonisation': 7942, 'americas': 4556, '1765': 885, '1815': 915, '1865': 953, 'shoeburyness': 23758, 'motoring': 18173, 'a13': 3760, '020259': 101, 'classes': 7677, 'earnings': 10505, 'governemtn': 13020, 'clout': 7775, 'orgs': 19476, 'whatabout': 28102, 'reecieved': 21963, 'skinny': 24016, 'liek': 16502, 'purse': 21381, 'amngst': 4578, 'seperate': 23528, 'peopel': 20112, 'thier': 25985, 'agreed': 4269, 'clause': 7684, 'ours': 19574, 'lobby': 16680, 'programmes': 21137, 'paperwork': 19840, 'math30': 17305, 'madhouse': 17001, 'msjohnso': 18249, 'wichitaks': 28168, 'wichita': 28167, 'ks': 16008, 'pbd': 20004, 'runyon': 22920, 'cim': 7594, 'cdc': 7215, 'dokas': 10158, 'questionablely': 21504, 'grabbed': 13036, 'missle': 17908, 'anyhow': 4770, 'sizes': 23991, 'yup': 28737, 'rocketeer': 22668, 'beasts': 5707, 'faa': 11588, 'shoot': 23763, 'passenger': 19938, 'regulated': 22051, 'tripoli': 26551, 'waiver': 27855, 'regulations': 22053, 'persuade': 20209, 'precautions': 20881, 'conflicts': 8288, 'ceiling': 7239, '50000': 2406, 'agl': 4262, 'avoiding': 5397, 'haze': 13587, 'expressly': 11508, 'prohibited': 21147, 'notam': 18938, 'informing': 14711, 'airspace': 4328, 'dozens': 10256, 'desert': 9596, 'reno': 22202, 'associations': 5152, 'approve': 4877, 'setback': 23573, 'exempt': 11389, 'subpart': 25122, 'obstructions': 19144, 'hobbies': 13900, 'takeoff': 25576, 'extremities': 11544, 'dynamite': 10476, 'warheads': 27911, 'shouting': 23798, 'misconceptions': 17879, 'someday': 24275, 'usnail': 27231, 'peripheral': 20166, '3718': 2054, '8189': 3184, '67226': 2775, '76670': 3038, '1775': 888, 'lynch': 16920, 'cin': 7596, 'hou': 14041, 'sd': 23365, 'mob': 17978, 'claice': 7657, 'farmer': 11704, 'cradle': 8732, 'tsiolkovski': 26624, 'yoo': 28705, 'engr': 10952, 'ucf': 26778, 'hoi': 13928, 'ribbon': 22508, 'orlando': 19502, 'ribbons': 22509, 'representation': 22256, 'symmetry': 25492, 'a7f81fd2f801023c': 3779, 'rashly': 21685, 'reserved': 22317, 'enhancements': 10959, 'meted': 17634, 'ah': 4278, 'expanding': 11419, 'dithering': 10034, 'resultant': 22392, 'optimizers': 19417, '9x': 3568, '1x': 1281, 'suffers': 25194, 'dramatically': 10286, 'lied': 16501, 'qt': 21441, 'timecode': 26137, 'lc': 16269, 'synced': 25499, 'quadras': 21445, 'cpus': 8723, 'boast': 6143, 'marginally': 17208, 'assisted': 5144, 'macromind': 16990, 'codecs': 7856, 'vanilla': 27392, 'misunderstand': 17916, 'sweda': 25431, 'css': 8908, 'itd': 15188, 'stimpy': 24895, 'absent': 3852, 'neck': 18570, 'fewest': 11848, 'fools': 12162, 'picking': 20367, 'gage': 12535, 'herk': 13732, 'trades': 26367, 'aquisitions': 4910, 'sura': 25335, 'marauders': 17188, 'rja': 22610, 'mahogany126': 17046, 'c5dxqp': 6751, 'hoo': 13995, 'sutcliff': 25398, 'ect': 10589, 'reflect': 21992, 'ib': 14270, 'supercomputers': 25285, 'february': 11778, 'photoshop': 20327, 'prg': 21000, 'mgweed': 17676, 'mgwhiz': 17677, 'gunsul': 13310, '060540': 210, '27397': 1701, '232551': 1544, '14817': 681, 'eechen': 10644, 'emery': 10838, 'ethan': 11227, 'graffiti': 13061, 'kiddies': 15787, 'yell': 28676, 'taunts': 25663, 'obscenities': 19126, 'adults': 4130, 'elementary': 10756, 'toss': 26303, 'foul': 12253, 'andreasa': 4643, 'dhhalden': 9726, 'andreas': 4642, 'arff': 4967, 'pc110': 20011, 'ostfold': 19543, 'actuallay': 4026, 'looser': 16759, 'hw_and_sw': 14210, 'spilt': 24512, 'extension': 11517, 'achive': 3961, 'religous': 22129, 'confessor': 8272, 'builds': 6579, 'indisputible': 14618, 'disregarded': 9986, 'beeing': 5736, 'prized': 21056, 'prizeing': 21057, 'lagerkvist': 16094, 'fist': 11979, 'lifetime': 16509, '210157': 1390, '2758': 1708, '114106': 431, '156': 745, 'corning': 8587, 'cecce_aj': 7231, 'hmmmmm': 13891, 'cs902043': 8880, 'yorku': 28710, 'shawn': 23683, 'luddington': 16872, 'mullins': 18298, 'nh': 18743, 'kingoz': 15834, 'camelot': 6932, 'orin': 19497, 'roth': 22774, 'weak': 27989, '214133': 1423, '3371': 1955, 'guvax': 13325, 'georgetown': 12762, 'apanjabi': 4787, 'blaming': 6044, 'inter': 14900, 'divisional': 10054, 'astrodome': 5181, 'eating': 10532, 'compliment': 8157, 'hahahaha': 13392, 'marge': 17204, 'jester': 15346, 'disguise': 9939, '32k': 1930, '64k': 2721, 'screwed': 23335, 'hangs': 13467, 'darrel': 9166, '1960': 1028, 'gossage': 13004, 'cooperstown': 8540, 'weights': 28033, 'parenthesis': 19875, 'rankings': 21664, 'eligible': 10770, 'equaled': 11083, 'orb': 19434, 'tragnetics': 26377, 'recorporation': 21913, 'c5l2xt': 6783, 'iqd': 15083, 'raymond': 21726, 'amazed': 4537, 'accomplish': 3922, 'hdsteven': 13599, 'solitude': 24258, 'stevens': 24872, '93apr21131325': 3443, 'yuggoth': 28735, 'contractual': 8459, 'wn': 28335, 'taxpayers': 25672, 'vandalism': 27382, 'lawson': 16247, 'defray': 9410, 'pushing': 21390, 'advert': 4142, 'painting': 19787, 'coke': 7887, 'frankly': 12319, 'innovative': 14772, 'probability': 21067, '725': 2922, '3293': 1927, 'durand': 10431, '3296': 1928, '3377': 1956, '041300': 163, '21721': 1437, 'jmcocker': 15408, 'mitch': 17922, 'courageous': 8683, 'leage': 16299, '77573': 3051, '233404': 1550, '16702': 820, 'amj': 4571, 'rsf': 22844, 'atd': 5216, 'anthony': 4747, 'jivoin': 15393, 'hawk': 13575, 'ethic': 11230, '224631': 1495, 'tek2q': 25747, 'uniform': 27014, 'duds': 10396, 'reinserted': 22072, 'patch': 19954, 'insgnia': 14802, 'opted': 19404, 'opposed': 19396, 'cookie': 8527, 'cutter': 9020, 'saucer': 23131, 'stadiums': 24685, 'construcrted': 8386, 'sixties': 23984, 'opt': 19403, 'highs': 13804, 'comissioner': 8004, 'c5hxlk': 6763, 'dgf1': 9720, 'quads': 21449, 'eldon': 10733, 'tyrell': 26746, '054600': 198, '24917': 1615, 'exu': 11548, 'ebuhcb': 10543, 'ebu': 10542, '16apr199309101156': 834, 'trentu': 26501, 'ayounes': 5430, 'amro': 4591, 'younes': 28715, 'trent': 26500, 'peterborough': 20231, 'k9j': 15608, '7b8': 3103, '705': 2878, '749': 3001, '0391': 153, 'ati': 5230, 'eisa': 10712, 'faulty': 11740, '13th': 624, 'editor': 10612, 'isa': 15129, 'accelerators': 3893, 'wildly': 28197, 'worthiness': 28425, 'farley': 11702, '702': 2871, '3426': 1970, '1100': 410, 'jrl': 15529, '210': 1385, '60637': 2626, 'chiron': 7510, 'mats': 17323, 'lindgren': 16568, 'helin': 13675, 'crockett': 8815, 'tancredi': 25607, 'rickman': 22529, 'astron': 5185, 'astrophys': 5200, '239': 1569, '21619': 1434, 'laban': 16066, '184650': 939, '4833': 2336, 'songs': 24296, 'north6': 18914, 'morphing': 18133, 'dmorph': 10100, 'progrmam': 21146, 'morpho': 18134, 'c5ky9y': 6780, 'mkk': 17946, 'raistlin': 21625, 'udev': 26798, 'regard': 22023, 'certification': 7295, 'cautiously': 7158, 'authorization': 5341, 'lax': 16249, 'factory': 11614, 'eliminates': 10774, 'hazard': 13584, 'c5rhoc': 6812, 'fty': 12429, 'remeber': 22152, 'tied': 26106, 'rember': 22151, 'reputable': 22283, 'angle': 4660, 'chairman': 7340, 'bialla': 5893, 'impoverished': 14500, 'climate': 7728, 'precusor': 20899, 'agressive': 4273, 'robot': 22656, 'hrumph': 14101, '_me_': 3692, 'song': 24295, 'cars': 7081, 'tailfins': 25565, 'prine': 21028, 'ranjan': 21659, 'ubc': 26770, 'vishwa': 27663, 'imaginary': 14431, 'ironduke': 15106, 'experimentation': 11448, 'sampled': 23053, 'c5l6dn': 6785, '4ub': 2399, 'fester': 11836, 'rated': 21700, 'fucked': 12433, 'prefers': 20930, 'lover': 16812, 'indian': 14601, 'hater': 13552, 'objectively': 19112, 'chosing': 7536, 'ellis': 10791, 'auto': 5345, 'misses': 17900, 'templates': 25801, 'approximate': 4880, 'adjusting': 4086, 'freehand': 12343, 'tolerances': 26230, 'con': 8218, 'holonet': 13954, '980': 3532, 'pager': 19768, 'aldus': 4378, 'autotracing': 5364, 'feels': 11790, 'compelled': 8109, 'nfotis': 18737, 'ntua': 19022, 'gr': 13033, 'fotis': 12251, '1566': 746, 'theseas': 25971, 'nikolaos': 18794, 'part1': 19902, 'alias': 4405, 'rtfm': 22858, '172': 855, 'archived': 4949, 'keyword': 15762, 'quotes': 21533, 'subjects': 25109, '63k': 2695, 'changing': 7375, 'headers': 13607, 'bi': 5892, 'prepended': 20946, 'diff': 9777, 'corrections': 8602, 'accuracy': 3941, 'grieggs': 13185, 'devvax': 9704, 'braces': 6338, 'bbses': 5682, 'solids': 24257, 'part2': 19903, 'part3': 19904, 'generators': 12692, 'geographical': 12748, 'scanners': 23177, 'datafiles': 9189, 'teapot': 25706, 'annotation': 4701, 'gis': 12864, 'additions': 4067, 'crossposted': 8828, 'advised': 4153, 'sysadmin': 25517, 'inria': 14790, 'graphlib': 13105, 'accesible': 3902, 'wais': 27848, 'enuxva': 11023, 'eas': 10513, 'asu': 5205, 'port': 20724, '8000': 3128, 'numbered': 19034, 'indexing': 14599, 'maasinfo': 16944, 'btr': 6530, 'switch': 25462, 'swiss': 25461, 'info_service': 14692, 'periodic': 20161, '00index': 57, 'fetch': 11840, 'rfc': 22485, '822': 3190, 'ou': 19565, 'prmd': 21063, 'admd': 4092, 'arcom': 4956, 'bodypart': 6163, 'instructions': 14849, 'aussie': 5323, 'eur': 11254, 'darmstadt': 9162, 'huji': 14145, 'israel': 15169, 'kuis': 16029, 'kyoto': 16049, 'sogang': 24235, 'ncu': 18540, 'twn': 26723, 'ic': 14278, 'archie1': 4939, '195': 1012, 'connect': 8320, 'clients': 7725, 'burden': 6623, 'session': 23568, 'x11': 28509, 'r5': 21546, 'janet': 15258, 'pss': 21284, '000005102000': 5, 'excerpted': 11358, 'fbm': 11756, 'maintainers': 17075, 'tracers': 26352, 'dkb': 10075, 'compuservers': 8195, 'drew': 10308, '73767': 2981, '1244': 516, 'david_buck': 9211, 'vort': 27758, 'pcs': 20027, 'rtrace': 22867, 'bicubic': 5910, 'csg': 8895, 'djgpp': 10067, 'extender': 11514, 'go32': 12946, 'vivid2': 27694, 'coy': 8713, 'ssc': 24654, '387': 2086, 'registered': 22038, 'ray4': 21724, 'hollasch': 13944, 'renders': 22189, 'hyperspheres': 14237, 'hypertetrahedra': 14238, 'hyperplanes': 14235, 'hyperparallelepipeds': 14234, 'wire4': 28281, 'qrt': 21439, 'dbw': 9237, 'xdart': 28540, 'decstations': 9351, 'sparcs': 24407, 'snakes': 24157, '7x0': 3122, 'inetray': 14652, 'rpc': 22815, 'thurnherr': 26087, 'ant': 4738, 'prt': 21263, 'vm_pray': 27709, 'vrend': 27786, 'renderer': 22183, 'kartch': 15659, 'devine': 9695, 'caffey': 6876, 'physically': 20344, 'ported': 20729, 'india': 14600, 'sgi_rad': 23616, 'spaceball': 24366, 'moreillon': 18122, 'moreillo': 18121, 'ligsg1': 16531, 'epfl': 11055, 'rad': 21563, '4d': 2373, 'kwok': 16041, 'sipp': 23957, 'phong': 20299, 'tcl': 25681, 'programmed': 21133, 'ppm': 20840, 'toolkit': 26265, 'rle': 22622, 'widget': 28178, 'tk': 26186, 'vogle': 27725, 'vogl': 27724, 'rend386': 22178, '386s': 2084, 'photorealistic': 20325, 'xsharp21': 28589, 'dobb': 10118, 'modeler': 17993, 'irit': 15101, 'freeform': 12342, 'x3d': 28522, '3dv': 2128, '3dkit1': 2120, 'pv3d': 21402, 'beta': 5864, 'registering': 22039, 'francs': 12308, 'disabled': 9869, 'salem': 23027, 'dobkin': 10121, 'geomview': 12758, 'interactively': 14905, 'xyz': 28625, 'geobench': 12717, 'zurich': 28820, 'workbench': 28395, 'macintosh': 16973, 'spd': 24425, 'procedural': 21079, 'nff': 18729, 'p3d': 19720, 'lispy': 16614, 'tddd': 25687, 'displayer': 9975, 'ttdddlib': 26638, 'ttddd': 26637, 'framemaker': 12290, 'mif': 17751, 'isometric': 15159, 'pk': 20471, 'superquadric': 25299, 'glewis': 12899, 'pcocd2': 20026, 't3dlib': 25538, 'chvrtd': 7582, 'datasets': 9194, 'electron': 10745, 'rna': 22633, 'bib': 5898, 'illumination': 14399, 'speer': 24485, 'referenced': 21982, 'juhana': 15562, 'kouhia': 15975, 'jk87377': 15397, 'tut': 26691, 'computational': 8199, 'bibtex': 5906, 'download': 10244, 'peruse': 20219, 'log': 16709, 'biblio': 5902, 'subtopic': 25157, 'directed': 9854, 'bibadmin': 5899, 'pbmplus': 20007, 'libtiff': 16484, 'imagemagick': 14420, 'miff': 17753, 'xloadimage': 28565, 'xli': 28562, 'img': 14442, 'xflick': 28547, 'xanim': 28530, 'gif89a': 12830, 'extensions': 11518, 'ehb': 10693, 'cycling': 9054, 'sdsc': 23374, 'clrpaint': 7778, 'indigos': 14615, 'graves': 13125, 'kaleido': 15624, 'polyhedra': 20673, 'metrical': 17654, 'properties': 21194, 'zvi': 28821, 'har': 13488, 'rl': 22620, 'technion': 25719, 'distributor': 10025, 'roadmap': 22637, 'popi': 20708, 'msdos': 18241, 'raytracker': 21736, 'ddjmag': 9258, 'ddj9209': 9257, 'xsharp': 28588, 'bibs': 5905, 'rtn': 22865, 'errata': 11148, 'kyriazis': 16050, 'executable': 11380, 'kolb': 15942, 'cek': 7240, 'replaces': 22230, 'weedeater': 28017, 'ray1': 21723, 'pvray': 21406, 'repository': 22251, 'dejesus': 9426, 'archimedes': 4940, 'omicron': 19301, 'softlab': 24229, 'mv': 18370, 'ddj': 9256, 'peipa': 20073, 'essex': 11195, '155': 739, '245': 1595, 'ipa': 15068, 'synth': 25511, 'adrian': 4123, 'alien': 4411, 'barkley': 5579, 'tsipp3': 26626, '0b': 294, 'diekhans': 9770, 'markd': 17225, 'grizzly': 13199, 'neosoft': 18621, 'cps': 8720, 'sass': 23103, 'hobbes': 13899, 'lbl': 16265, 'gjward': 12873, 'geom': 12753, 'icol': 14296, 'raz': 21737, 'chin': 7497, 'purcell': 21369, 'ahpcrc': 4284, 'kpc': 15981, 'holl91': 13943, 'thesis': 25972, 'swedishchef': 25434, 'zamenhof': 28754, 'rice': 22513, 'ncsa': 18535, 'rascal': 21683, 'inqueue': 14782, 'modeller': 17996, 'descriptions': 9592, 'scivi': 23276, 'alvis': 4520, 'visualizer': 27685, 'polyview3': 20685, 'polyview': 20684, 'quincey': 21521, 'koziol': 15978, 'tucana': 26650, 'ipl': 15072, 'stills': 24892, 'sequences': 23538, 'p3d_2_0': 19721, 'welling': 28055, 'seurat': 23586, 'jef': 15313, 'poskanzer': 20765, 'hanauma': 13439, 'dellinger': 9462, 'nurbs': 19045, 'jpegsrc': 15508, 'freebie': 12339, '212': 1404, 'lcs': 16275, 'magick': 17023, 'r5untarred': 21547, 'ncga': 18530, 'pawl': 19991, 'stochastic': 24911, 'jamie': 15251, 'painter': 19786, 'gatekeeper': 12616, 'randi': 21648, 'rost': 22759, 'hubcap': 14123, 'clemson': 7712, 'pprg': 20848, 'danielle': 9139, 'argiro': 4972, 'bullwinkle': 6596, 'expo': 11491, 'poskbitmaptars': 20766, 'raveling': 21716, 'venera': 27486, 'isi': 15143, 'castlab': 7113, 'wisc': 28287, 'spychalla': 24604, 'pics': 20371, 'leffler': 16341, 'supercedes': 25280, 'okeeffe': 19260, 'surya': 25378, 'waterloo': 27954, 'sdscpub': 23375, 'brl': 6449, 'butler': 6673, 'cicero': 7590, 'umass': 26866, 'texture_temp': 25899, '512x512': 2442, 'brodatz': 6464, 'julien': 15566, 'flack': 11997, 'scs': 23352, 'leeds': 16334, 'karazm': 15642, 'rtabs': 22855, 'shar': 23660, 'townsend': 26338, 'nas': 18473, 'qralston': 21438, 'ralston': 21636, 'sunee': 25256, 'uwaterloo': 27306, '164': 804, 'archivevol2': 4952, 'netlib': 18644, 'replier': 22236, 'ornl': 19504, '248': 1609, 'panels': 19828, 'mailer': 17056, 'reaction_diffusion': 21787, 'turk': 26677, 'avs': 5401, 'ncsc': 18536, '178': 890, 'volvis92': 27749, 'workshop': 28403, 'myerson': 18385, 'tvv': 26697, 'uvacs': 27296, 'sparc': 24403, 'radiosity_thesis': 21589, 'milton': 17801, 'veos': 27495, 'prototyping': 21244, 'hitl': 13863, 'oldpublic': 19272, 'throughs': 26064, 'zug': 28815, 'csmil': 8903, 'xpecs': 28574, 'lcd': 16271, 'shutter': 23828, 'sugrfx': 25211, 'syr': 25514, 'ceased': 7229, 'powerglove': 20829, 'irc': 15093, 'magid': 17024, 'siggraph92': 23854, 'ebert': 10541, 'lyapunov': 16915, 'preprints': 20949, 'nonlinear': 18879, 'kennel': 15718, 'mbk': 17378, 'inls1': 14763, 'cod': 7851, 'nosc': 18927, 'interpolate': 14959, 'bivariate': 6026, 'honig': 13988, 'animates': 4675, 'mono': 18068, 'subtraction': 25159, 'dabro': 9086, 'cyberware_demo': 9048, 'texture_maps': 25898, 'buf': 6558, 'aerial': 4166, 'swatches': 25427, 'beginner': 5752, 'browsing': 6495, 'colby': 7891, 'kraybill': 15991, 'srgp': 24632, 'sphigs': 24505, 'graphtext': 13110, 'pdb': 20033, '199': 1068, 'organic': 19460, 'atoms': 5250, 'dimemsions': 9824, 'biome': 5988, 'renoir': 22203, 'paintings': 19788, 'escher': 11169, 'ic16': 14279, 'specmark': 24460, 'landscapes': 16138, 'semiconductors': 23483, 'superconductors': 25289, 'ruskin': 22930, 'dgp': 9723, 'clrview': 7779, 'dem': 9475, 'cdrom': 7221, 'pubinfo': 21307, '1333': 585, 'newsdesk': 18702, 'jplpost': 15523, '7170': 2903, 'passwd': 19946, '895': 3317, '0028': 36, '1200': 471, '2400': 1578, '9600': 3500, 'baud': 5665, 'reppert': 22254, 'dea': 9263, 'odea': 19196, 'avatar': 5374, 'kory': 15967, 'hamzeh': 13438, 'shirley': 23745, 'cia_worldmap': 7585, 'cia': 7584, 'dasun2': 9180, 'irisa': 15099, 'ipsc2': 15078, 'didier': 9763, 'badouel': 5480, 'oulu': 19570, 'flis': 12054, 'rayscene': 21729, 'americans': 4555, 'jari': 15269, 'kahkonen': 15614, 'jyu': 15601, 'toivanen': 26222, 'garbo': 12586, 'uwasa': 27304, 'interpolation': 14962, 'asterix': 5169, 'inescn': 14647, 'nffutils': 18733, 'autocad': 5347, 'autolisp': 5351, 'scn': 23279, 'goodies': 12984, 'antonio': 4760, 'costa': 8645, 'vega': 27464, 'shut': 23824, 'sun4nl': 25250, 'nluug': 18832, 'microray': 17717, 'hensa': 13719, 'ralcgm': 21629, 'cgm': 7323, 'maeglin': 17011, 'luth': 16907, 'fu': 12430, 'berlin': 5844, 'rayshade4': 21731, 'aq': 4899, 'aquarium': 4905, 'heiko': 13664, 'schlichting': 23227, 'maggia': 17018, 'osgiliath': 19532, 'dth': 10378, 'dk': 10073, 'bojsen': 6186, 'ithil': 15196, 'goods': 12986, 'kl': 15870, 'schorn': 23239, 'iamsun': 14258, 'graphtal': 13109, 'interpreter': 14968, 'christoph': 7551, 'streit': 25000, 'physik': 20349, 'unizh': 27060, 'gfx': 12802, 'stesis': 24868, 'starcat': 24736, 'benoit': 5826, 'pirenne': 20432, 'bpirenne': 6331, 'kaleida': 15622, 'gondwana': 12977, 'ecr': 10585, 'mu': 18282, 'artscenes': 5066, 'italy': 15185, 'previewers': 20996, 'bernie': 5850, 'munnari': 18337, 'hook': 13998, 'dgh': 9721, 'marsh': 17251, 'curtin': 8998, 'facial_animation': 11600, 'morph': 18132, 'ui': 26824, 'facial': 11599, 'interfaces': 14924, 'fascia': 11713, 'parke': 19884, 'valerie': 27364, 'lillee': 16547, 'oceania': 19173, 'asia': 5096, 'scslwide': 23354, 'sony': 24304, 'ftp2': 12423, 'franks': 12320, 'stevef': 24870, 'csl': 8901, 'umr': 26887, 'overuse': 19671, 'troubles': 26583, 'a_valid_return_e': 3781, 'mail_address': 17052, 'ftpmail': 12425, 'decwrl': 9355, 'detailing': 9646, 'postmaster': 20795, 'fixing': 11990, 'bitftp': 6015, 'pucc': 21324, 'lightwave': 16529, 'atari': 5210, '908': 3358, '0049': 44, 'upgraded': 27158, '32bis': 1929, '42bis': 2221, '300bps': 1835, '400bps': 2155, 'bobsbox': 6153, 'cyberware': 9047, 'shouders': 23789, 'pierre': 20385, 'jancene': 15255, 'sabine': 22980, 'coquillart': 8566, 'cgrl': 7324, '467': 2306, '3658': 2038, 'meg': 17521, 'walkup': 27869, 'pwappy': 21410, '2396': 1571, '4k': 2388, 'mnp': 17974, 'pacifica': 19742, 'dang': 9132, 'oin': 19253, 'anim': 4670, 'lazerus': 16261, 'lindabury': 16565, 'operates': 19370, 'suburbs': 25161, '5611': 2523, '8721': 3275, 'sysop': 25520, 'ng': 18738, 'mcng': 17442, 'descartes': 9577, '416': 2191, '1487': 683, 'megs': 17531, '8k': 3333, 'zyxel': 28828, 'v32bis': 27332, 'v32': 27330, 'netmail': 18645, 'tiberio': 26096, 'dtiberio': 10379, 'sunysb': 25274, '516': 2448, '6351': 2684, '157': 749, 'renderings': 22187, 'scalable': 23165, 'samples': 23054, 'pending': 20088, 'cerrito': 7286, '642mb': 2709, '1300': 563, 'nodes': 18853, '2780': 1715, 'subscription': 25131, 'pcgnet': 20022, 'profesional': 21110, 'executables': 11381, 'aeta': 4186, 'bethke': 5868, 'sbathkey': 23155, '7149': 2898, 'animators': 4681, 'commercialized': 8021, 'videotoaster': 27596, 'alfonso': 4386, 'hermida': 13737, 'afanh': 4191, '9080': 3359, '33mhz': 1960, '100megs': 331, '2400bps': 1580, 'falkow': 11658, 'roxxie': 22805, 'delphi': 9465, 'vertech': 27532, 'graphic': 13097, '8412': 3223, 'seamlessly': 23387, 'tiling': 26130, 'realistic': 21814, 'callers': 6916, 'rates': 21701, 'whichever': 28127, 'wickard': 28169, 'maintenance': 17078, 'real3d': 21811, 'uwa': 27303, 'alladin': 4421, 'xamiga': 28529, 'linet': 16583, 'correspodence': 8611, 'fixes': 11989, 'trearn': 26476, 'massively': 17288, 'icase': 14281, 'manifold': 17139, 'signing': 23879, 'analyses': 4611, 'carla': 7054, 'moyer': 18200, '7794': 3060, '272': 1696, '6763': 2781, 'surviac': 25371, 'aberdeen': 3825, '1003': 319, '21001': 1388, 'constructive': 8391, 'surfmodel': 25345, 'simtel': 23922, 'pd1': 20032, 'srfmodl': 24630, 'noodles': 18889, 'printz': 21040, 'levent': 16427, 'gursoz': 13315, 'elg': 10765, 'styx': 25090, 'edrc': 10625, 'topology': 26280, 'xyz2': 28626, 'builder': 6576, 'stocker': 24914, 'surfacemodel': 25340, 'automove': 5359, 'simtel20': 23923, 'surfmodl': 25346, 'xyz21': 28627, '3dmod': 2121, 'barnacle': 5581, 'clarkson': 7672, 'micah': 17686, 'silverman': 23896, 'pierrepoint': 20386, 'postdam': 20781, '13676': 610, '7140': 2897, 'northcad': 18917, 'ncad3d42': 18527, 'vertex': 27533, '4189': 2194, 'nickolas': 18765, 'heights': 13662, '48310': 2335, 'sculpt': 23360, 'wavefront': 27966, 'scripts': 23341, 'deburie': 9291, 'ad99s461': 4037, 'sycom': 25481, '939': 3433, '2513': 1630, 'icoons': 14300, 'icoons1': 14301, 'lzh': 16929, 'gnu': 12941, 'licence': 16487, 'journeyman': 15491, 'generates': 12686, 'jman': 15405, 'helge': 13673, 'rasmussen': 21686, 'compel': 8108, '775': 3050, 'protocad': 21237, 'ver': 27496, 'trius': 26566, 'pcad3d': 20017, 'xport': 28576, 'mesh': 17611, 'editing': 10608, 'revolve': 22470, 'xtrude': 28597, 'toggles': 26219, 'shade': 23622, 'tune': 26665, 'sculptura': 23363, 'win3': 28230, 'demo3d': 9483, 'gibsonm': 12822, 'stein': 24819, 'alpha_1': 4479, 'boolean': 6237, 'sweeps': 25438, 'bending': 5812, 'warping': 27921, 'extensible': 11516, 'nc': 18525, 'machining': 16970, 'dimensioning': 9828, 'fem': 11811, 'ux': 27315, 'licensing': 16493, 'egs': 10687, 'mcminn': 17438, 'temple': 25802, 'salt': 23034, 'lake': 16102, '84111': 3221, '801': 3136, '6021': 2617, 'pricing': 21007, 'lisp': 16613, 'psl': 21281, 'kessler': 15740, '84112': 3222, 'institutions': 14842, 'usd': 27210, 'nominal': 18864, 'architectural': 4943, 'quoting': 21535, 'donate': 10183, 'configured': 8279, '000usd': 19, 'licencing': 16488, 'revolution': 22468, '684': 2802, '2108': 1397, 'letterhead': 16420, '750usd': 3009, 'annual': 4716, 'hotline': 14040, 'upgrades': 27159, 'waive': 27854, '700': 2860, '1010': 335, 'v6e': 27341, '2y3': 1828, '2113': 1401, 'tdi': 25688, 'softimage': 24228, 'padl': 19760, 'kernel': 15735, 'programmable': 21130, 'licenses': 16492, 'dissemination': 9990, 'packet': 19750, 'marisa': 17222, 'cpa': 8716, 'tn': 26199, 'acis': 3966, 'owens': 19685, 'sdo': 23373, '2425': 1590, '55th': 2520, 'bldg': 6063, '80301': 3142, '5704': 2539, '449': 2264, '0649': 222, '0926': 281, 'cquel': 8726, 'proccessor': 21078, 'mech': 17489, 'depts': 9557, 'pronounced': 21182, 'sequel': 23536, 'rs6000': 22838, 'clyde': 7799, '84602': 3230, '2812': 1726, 'twixt': 26722, 'voxblast': 27767, 'marketed': 17230, 'vaytek': 27438, 'fairfield': 11645, '2227': 1483, 'voxelbox': 27769, '495': 2356, 'jaguar': 15246, '9b': 3555, 'winchester': 28231, '01890': 90, '729': 2929, '3659': 2039, 'jwp': 15596, 'poduska': 20618, 'neutral': 18660, 'mothballed': 18156, 'ref': 21977, 'null': 19032, 'cgl': 7322, 'rmit': 22630, 'xview': 28605, 'sunview': 25272, 'translators': 26430, 'edited': 10606, 'v4': 27336, 'portal': 20728, 'airplanes': 4323, 'trucks': 26591, 'lampposts': 16118, 'distributable': 10019, 'readmes': 21803, 'readable': 21793, 'officially': 19232, 'ala': 4350, 'slight': 24069, 'mouse': 18184, 'driven': 10323, 'drawp3d': 10296, 'subroutine': 25124, 'underlying': 26948, 'dore': 10207, 'eec': 10641, 'esprit': 11188, '322': 1903, 'caa': 6846, 'cam': 6926, 'iges': 14347, 'tranfer': 26392, 'brep': 6406, 'y14': 28630, '26m': 1690, 'nancy': 18457, 'flower': 12075, '6242': 2665, '325': 1908, 'pdes': 20036, 'emerging': 10836, 'encompass': 10898, 'darpa': 9164, 'nptserver': 18983, 'cme': 7805, 'rutherford': 22941, 'appleton': 4843, 'compiler': 8131, 'parser': 19896, '0235': 118, '6710': 2773, '5893': 2568, 'mm': 17956, 'mcsun': 17453, 'uknet': 26842, 'rlinf': 22626, 'nsfnet': 18998, 'greece': 13148, 'esperidon': 11183, 'halandri': 13405, 'ariadne': 4985, 'u96_msopher': 26755, 'ladies': 16088, 'gentlemen': 12711, 'lend': 16388, 'legue': 16368, 'greene': 13156, 'mulholland': 18296, 'duncan': 10416, 'rosa': 22745, 'ghost': 12812, 'dsi': 10357, 'unimi': 27018, 'massimo': 17286, 'rossi': 22758, 'dep': 9525, 'milan': 17769, 'favourite': 11749, 'fractint': 12279, '3dstudio': 2126, 'f1': 11569, 'prix': 21054, 'unfortanatly': 26993, 'lap': 16161, 'prj': 21059, 'exchanges': 11364, 'apreciate': 4891, 'comparision': 8077, '3dstusio': 2127, 'sm': 24113, 'envelope': 11024, '1psogpinnksq': 1190, 'carefully': 7046, 'coreographed': 8575, 'occasional': 19156, 'taxi': 25671, 'yeager': 28668, 'schiewer': 23219, 'pa881a': 19735, 'inland': 14759, 'steel': 24810, 'thin': 25988, 'agian': 4261, 'onward': 19338, 'dkennett': 10079, 'kennett': 15720, 'spher': 24500, 'burnaby': 6642, 'whats': 28105, 'look_at': 16739, 'light_source': 16519, 'bump_map': 6600, 'surf': 25338, 'landscape': 16137, 'palette': 19805, 'circumstances': 7623, 'finitude': 11946, 'surrounded': 25361, 'infinitude': 14676, 'whitehead': 28139, 'intersections': 14978, 'lina': 16561, 'vanecek': 27389, 'proxima': 21262, 'tres': 26502, 'spif': 24509, 'mssc5k4gi': 18262, 'g64': 12518, 'preponderance': 20947, 'deserving': 9601, 'mediot': 17509, 'biases': 5897, 'roty': 22779, 'votes': 27764, 'everyday': 11303, 'flora': 12068, 'steady': 24804, 'heady': 13618, 'orton': 19517, 'sanderson': 23065, 'farrell': 11709, 'lacks': 16087, 'bona': 6207, 'fide': 11871, 'steals': 24807, 'mediots': 17510, 'balance': 5505, 'acsddc': 4000, 'smucs1': 24150, 'umassd': 26867, 'fenway': 11818, 'bullshit': 6593, 'bml2': 6131, 'lucy': 16871, 'uflkll_00vpcekw15e': 26804, 'al1x': 4348, 'amit': 4570, 'likhy': 16543, 'ani': 4669, '963': 3504, 'ninja': 18804, 'jew': 15353, 'hammered': 13432, 'fuck': 12432, '7225': 2916, 'computerscience': 8209, '_________utrecht_________________the': 3617, 'netherlands___________': 18641, 'arnold': 5016, 'upset': 27174, 'outrage': 19605, 'glavcosmos': 12888, 'pioneered': 20418, 'adverts': 4151, 'shrinking': 23816, 'vanishing': 27396, 'faget': 11626, 'depletion': 9539, 'partial': 19905, 'blip': 6079, 'protesting': 21235, 'jeremy': 15336, 'rifkin': 22544, '_______________________________________________________________________________': 3611, 'cubbies': 8938, 'parka': 19883, 'hormones': 14019, 'induced': 14628, 'cabin': 6852, 'relieve': 22120, 'tension': 25824, 'cubbie': 8937, 'skokie': 24022, 'hwy': 14212, 'probable': 21068, 'bleacher': 6065, 'ryno': 22960, 'luv': 16909, 'ewe': 11326, 'dolls': 10163, 'bleachers': 6066, 'slider': 24064, 'disappoints': 9884, 'punishments': 21362, 'discharges': 9903, 'jackhammering': 15231, '185951': 950, '19058': 971, 'mssc52ril': 18260, '8e0': 3330, 'safer': 23001, 'reversed': 22452, '20apr199321040621': 1375, '204335': 1346, '157595': 752, 'bobbing': 6149, 'restored': 22380, 'stabilized': 24679, 'retrain': 22416, 'flies': 12044, 'extras': 11538, 'standby': 24712, 'birds': 5999, 'dumping': 10414, 'rationale': 21707, 'rdl1': 21770, 'ukc': 26841, 'lorenz': 16768, 'kent': 15724, 'canterbury': 6987, 'eagle': 10488, 'thruster': 26072, 'couples': 8681, 'selecting': 23467, 'thickness': 25984, 'ajjb': 4335, 'adam4': 4044, 'broderick': 6466, '051746': 187, '29848': 1786, 'duc': 10393, 'seminar': 23486, 'typein': 26738, 'handout': 13458, 'kilogram': 15810, 'kilometer': 15812, 'jfc': 15358, 'athena': 5222, 'carr': 7070, 'massachusetts': 17281, 'achates': 3951, 'kutcher': 16039, 'infielder': 14671, 'outfielder': 19586, 'avoided': 5396, 'simultaneous': 23932, 'matrix': 17321, 'determinant': 9657, 'implicitly': 14484, 'midpoint': 17744, 'normalized': 18905, 'plugged': 20580, 'equidistant': 11096, 'rusty': 22937, 'imprecisions': 14501, 'cardiovascular': 7037, '543': 2492, '4535': 2274, 'feszcm': 11838, 'warren1c': 27926, 'jaroslaw': 15270, 'feszczyszyn': 11839, 'rensselaer': 22206, 'troy': 26587, 'c5jb3d': 6765, '9nt': 3561, 'crashed': 8749, 'unable': 26891, 'rickert': 22526, 'nextwork': 18726, 'hulman': 14149, '1psq90innh93': 1191, 'g215a': 12516, 'bears': 5705, 'zephyrs': 28777, 'tenure': 25828, 'rpg': 22817, 'lea': 16289, 'hrpg': 14098, '1980': 1053, '1446': 663, '1444': 658, 'homeruns': 13970, 'ualberta': 26765, 'huisman': 14144, 'cab101': 6848, '191701': 983, 'fed': 11779, 'lease': 16316, 'consortium': 8367, 'alyeska': 4527, 'incentives': 14538, 'monopoly': 18075, 'builders': 6577, 'perks': 20173, 'regulatory': 22054, 'concesions': 8237, 'china': 7498, 'kong': 15950, 'darn': 9163, 'spoilsport': 24539, 'anodise': 4720, 'evade': 11269, 'diabolical': 9731, 'sheltered': 23708, 'upcoming': 27148, 'crunchy': 8853, '130503': 564, 'continuin': 8445, '297': 1781, '7951': 3091, 'macinteresteds': 16972, 'nashville': 18479, 'derich': 9562, 'scotty': 23309, 'tissue': 26172, 'curiousity': 8979, 'specificed': 24453, 'specifications': 24452, 'scotyy': 23310, 'steinbrink': 24824, 'cavaliers': 7160, 'nba': 18522, 'finals': 11923, 'browns': 6493, 'bowl': 6315, 'weilej': 28035, 'cary115': 7093, 'weiler': 28036, 'ipx': 15080, 'gc15hqk': 12639, '220817': 1459, '22480': 1496, 'osi': 19533, 'fleming': 12034, 'ipc': 15070, 'openwindows': 19366, 'tile': 26127, 'kudo': 16025, 'ipcs': 15071, 'ipxs': 15081, 'automatically': 5356, 'fer': 11819, 'mcavalcanti': 17386, 'ufrgs': 26807, 'uicvm': 26828, 'uic': 26827, 'dtp': 10382, 'ineed': 14638, 'desk': 9620, 'publishe': 21317, 'winix': 28258, 'n4hy': 18419, 'ccr': 7202, 'mcgwier': 17419, 'redundancies': 21958, 'golf': 12970, '08520': 259, 'asst': 5155, 'scoutmaster': 23313, 'troop': 26578, 'hightstown': 13805, 'c5w5f8': 6829, '3lc': 2137, '_lot_': 3690, 'growth': 13234, '_that_': 3732, '5bn': 2589, 'identity': 14320, 'sillier': 23890, 'wanting': 27902, 'boiler': 6180, 'cleaning': 7695, 'rumour': 22905, 'tiang': 26094, 'ecn': 10571, 'uoknor': 27142, 'oklahoma': 19261, '640x480x16': 2704, 'a0000': 3751, 'affff': 4200, 'sufficient': 25197, 'switching': 25466, '640x480x256': 2705, 'scrolling': 23344, 'uokmax': 27141, 'rstimets': 22852, 'stimets': 24894, 'snap': 24158, 'redreport': 21948, 'saberhagen': 22979, 'plated': 20521, 'cesar': 7299, 'victory': 27585, 'cecil': 7233, 'espy': 11189, 'sneaker': 24169, 'branson': 6361, 'bunt': 6617, 'execution': 11385, 'hapless': 13479, 'trailed': 26380, 'pugh': 21332, 'blinked': 6077, 'coleman': 7897, 'stranded': 24966, 'orselak': 19510, 'argued': 4977, 'kellogg': 15707, 'torborg': 26285, 'tossed': 26304, 'homer': 13964, 'shaken': 23638, 'liner': 16580, 'misplayed': 17891, 'hundley': 14171, 'grounder': 13213, 'drawn': 10295, 'rothschild': 22775, 'suicide': 25212, 'squeeze': 24615, 'threat': 26046, 'knot': 15908, 'singles': 23947, 'bristol': 6444, 'dibble': 9750, 'shakily': 23640, 'dinger': 9838, 'slapped': 24042, 'cinci': 7598, 'flied': 12043, 'foster': 12248, 'striking': 25020, 'sac': 22983, 'ibb': 14272, 'gdp': 12645, 'ip': 15067, 'pb': 20002, 'ejected': 10720, 'relliford': 22132, 'runge': 22910, 'demuth': 9501, 'attendance': 5271, 'belcher': 5772, 'tomlin': 26243, '1psgs1': 1186, 'so4': 24197, 'habit': 13370, 'acquiring': 3986, 'testbeds': 25871, 'overstress': 19669, 'fail': 11630, 'joints': 15453, 'enlighten': 10971, 'hinterlands': 13826, 'dotted': 10215, 'carriers': 7075, 'deck': 9320, 'folded': 12129, 'lewisville': 16437, '3556': 2008, '492': 2353, '4656': 2303, 'padi': 19759, 'dm': 10088, '54909': 2501, 'ridout': 22543, 'bink': 5968, 'plk': 20564, '134802': 599, '21995': 1449, 'mfltd': 17667, 'sherwood': 23719, 'x5543': 28525, 'multiverse': 18323, 'mips': 17859, 'svr4s': 25415, 'bugs': 6573, 'dogfight': 10150, 'dactyl': 9088, 'extn': 11527, '5543': 2509, 'mfocus': 17668, 'pariah': 19877, 'blaze': 6061, 'obscurity': 19128, 'rum': 22902, 'ruff': 22889, 'splat': 24528, 'newbury': 18679, 'berkshire': 5843, 'bort': 6271, 'etry': 11241, 'nfluence': 18736, 'hammer': 13431, 'teckjoo': 25734, 'chua': 7565, 'teck': 25733, 'joo': 15465, 'visuallib': 27686, 'metaware': 17633, 'v3': 27329, '772': 3046, '0237': 119, '0511': 184, '779': 3059, '1827': 922, 'tkevans': 26189, 'eplrx7': 11067, 'dupont': 10429, 'nn': 18837, 'jesse': 15344, 'picket': 20366, 'pont': 20692, 'nemours': 18617, '302': 1840, '695': 2822, '9353': 3429, '7395': 2984, '80357': 3147, 'evanstk': 11277, 'a1': 3755, 'esvax': 11217, 'wilmington': 28222, '19880': 1065, '0357': 149, 'acheron': 3953, 'amigans': 4566, 'gen': 12673, 'muppet': 18341, 'seemed': 23442, 'abian': 3827, 'wanganui': 27897, 'crawling': 8757, 'insects': 14796, 'rhps': 22501, 'spoon': 24552, 'alou': 4473, 'tagged': 25561, 'sliding': 24068, 'bag': 5488, 'misplays': 17892, '184338': 932, '18205': 919, 'dvorak': 10449, 'amd': 4549, 'twhite': 26711, 'mozart': 18201, '1959': 1025, '706': 2879, 'doubleheader': 10219, 'nonexistent': 18876, 'nowadays': 18972, 'jhon': 15370, 'bursters': 6653, 'belgarath': 5775, 'mankato': 17150, '1radsr': 1269, 'pet': 20227, 'saucers': 23132, 'hyperspace': 14236, 'colliding': 7930, 'nuetron': 19027, 'spinning': 24515, 'wing': 28248, 'pulsars': 21345, '4m': 2390, 'appoximately': 4858, 'perturbed': 20216, 'grb': 13136, 'bursts': 6654, 'pion': 20416, 'ginga': 12853, 'isotropic': 15164, 'evenly': 11286, 'homogeneity': 13979, 'clump': 7786, 'sampling': 23055, 'stil': 24889, 'waaaay': 27826, 'tect': 25736, 'overhead': 19637, 'coordinate': 8541, 'triangulate': 26511, 'halo': 13417, 'corona': 8588, 'timescales': 26147, 'exhibit': 11397, 'confined': 8280, 'distances': 9998, 'anisotropy': 4687, 'clumping': 7787, 'honor': 13990, 'distributions': 10024, 'kicked': 15782, 'outrageous': 19606, 'slowing': 24097, 'jbulf': 15298, 'bulf': 6582, 'inu530n': 15012, '735550992': 2976, 'lindblat': 16567, 'monash': 18055, 'rachmat': 21556, 'barnsley': 5583, 'peitgen': 20074, 'middling': 17739, 'everywhere': 11308, 'iterated': 15192, 'st1ge': 24672, 'jane': 15257, 'hui': 14141, 'c5l99l': 6786, 'hfz': 13768, 'fastballs': 11723, 'intentionally': 14899, 'filling': 11908, 'swift': 25448, 'arp': 5026, 'osd': 19529, 'pinkowitz': 20411, 'nyc': 19059, 'breadth': 6374, 'disciplines': 9906, 'downtown': 10252, 'theater': 25932, 'spruce': 24592, '10038': 321, 'attendees': 5274, 'brakfast': 6353, 'lunch': 16889, 'francis': 12303, 'marchese': 17193, '1704': 846, '10036': 320, '1803': 910, '1933': 1001, 'marchesf': 17194, 'pacevm': 19740, '_________________________________________________________________': 3602, '________________________________________________________________': 3601, '______________________________________________________________': 3600, '_______________________________________________________': 3596, '________________________________state____________zip_____________': 3615, 'email_____________________________________': 10815, 'educators': 10633, 'traditionally': 26371, 'demonstrations': 9495, 'expressing': 11504, 'notions': 18960, 'seemingly': 23443, 'challenges': 7347, 'exceed': 11345, 'compounded': 8169, 'hypermedia': 14232, 'confront': 8293, 'participant': 19907, 'wading': 27836, 'multitude': 18322, 'unfamiliar': 26987, 'representions': 22262, 'confounded': 8291, 'asks': 5105, 'reception': 21867, 'decipherment': 9316, 'physiology': 20351, 'amplify': 4588, 'communicators': 8055, 'paradigms': 19849, 'composing': 8162, 'ghent': 12809, 'beverly': 5880, 'barbara': 5570, 'tversky': 26695, 'standfor': 24714, 'shiffer': 23726, 'hubbard': 14119, 'ravishankar': 21719, 'rao': 21668, 'nalini': 18448, 'bhusan': 5891, 'xiaopin': 28558, 'hu': 14115, 'narenda': 18468, 'ahuja': 4285, 'les': 16402, 'sztander': 25532, 'toledo': 26227, 'bajuk': 5499, 'alyce': 4526, 'kaprow': 15639, 'loustau': 16802, 'ding': 9835, 'wang': 27896, 'judson': 15553, 'rosebush': 22749, 'witten': 28312, 'wyatt': 28503, 'rory': 22744, 'nynex': 19063, 'heim': 13666, 'dpma': 10264, 'gothamcity': 13007, 'gm2': 12925, 'coordinating': 8544, 'npo': 18978, '4368': 2239, 'konstantin': 15952, 'tsiolkvosky': 26625, 'c5szvl': 6820, 'i48': 14245, 'worded': 28383, 'demonstrating': 9493, 'sustained': 25392, 'digestive': 9798, 'residue': 22327, 'disposal': 9978, 'deploy': 9540, 'gi': 12815, 'distress': 10016, 'baggies': 5489, 'disease': 9937, 'drw3l': 10347, 'delmarva': 9463, 'evsc': 11323, 'walker': 27865, '8994': 3323, 'unearned': 26983, 'caombining': 6991, 'sharper': 23672, 'oleruds': 19279, 'unreasonable': 27096, 'steal': 24805, 'gordon': 12994, 'clay': 7686, '234154': 1555, '23145': 1536, '5m': 2599, 'modifications': 18010, 'reuseable': 22438, 'spacelifter': 24378, '50m': 2430, 'pdr': 20037, 'nls': 18830, 'reminder': 22158, 'congressperson': 8309, 'raised': 21621, 'inconsequential': 14563, 'lander': 16125, '141137': 635, '1qve4kinnpas': 1240, 'sal': 23021, 'sun121': 25247, 'schaefer': 23206, 'feasability': 11768, 'existance': 11403, 'competetors': 8119, '6billion': 2840, '7billion': 3104, 'motocycle': 18171, 'butchers': 6671, 'lighten': 16520, 'gahlah': 12537, 'rrrraggggah': 22828, 'personality': 20200, 'brucek': 6499, 'ingres': 14728, 'kleinman': 15876, 'pony': 20696, '195932': 1026, '20451': 1348, 'subsidiary': 25137, '1psl0jinnam3': 1188, '1954': 1018, 'thining': 25991, '1q7615innmi': 1198, 'kshin': 16010, 'shin': 23731, 'preprocess': 20950, 'handwriting': 13462, 'alogrithm': 4467, 'theodosios': 25948, 'pavlidis': 19988, 'wintz': 28275, 'widely': 28173, 'curran': 8982, '161730': 786, '9903': 3544, 'poker': 20637, 'flats': 12018, 'borealous': 6260, 'northern': 18919, 'sattelites': 23123, 'runin': 22911, 'univesity': 27056, 'centralism': 7266, 'protectionism': 21229, 'trillion': 26536, 'deficite': 9386, 'midical': 17741, 'connectivity': 8324, 'um': 26863, 'almsot': 4463, 'excellently': 11352, 'fielded': 11876, 'centerfielder': 7260, 'goos': 12990, 'argue': 4976, 'liability': 16464, 'awfully': 5417, 'dpeterik': 10261, 'peterik': 20234, 'brewer': 6413, '30mar93': 1865, '02086551': 106, '0010': 20, 'matc': 17294, 'pfan': 20245, 'voted': 27762, 'perched': 20130, 'barrel': 5585, 'raod': 21669, 'milwakee': 17802, 'bouncing': 6301, 'brew': 6411, 'fanning': 11686, 'mcgannon': 17410, 'f71': 11585, 'n154': 18412, 'z1': 28744, 'adam2': 4043, 'jesus': 15347, 'christ': 7542, 'ericsc5hzr5': 11128, 'eui': 11251, 'scrambles': 23319, 'pleistocene': 20557, 'sixth': 23983, 'dholle15': 9727, 'ursa': 27196, 'calvin': 6925, 'hollebeek': 13945, 'rapids': 21676, 'sob': 24202, 'elaborate': 10725, 'disser': 9992, 'vesuvius': 27550, 'bilinear': 5935, 'recipes': 21874, 'caen': 6870, '229': 1519, 'chrysler': 7562, '763': 3034, '3067': 1854, '48109': 2330, '2092': 1373, 'jhunter': 15374, 'mta': 18273, 'mount': 18179, 'allison': 4442, 'sackville': 22987, 'gang': 12576, 'wales': 27862, 'larrison': 16178, 'ofa123': 19207, '804x1609': 3154, 'reflective': 21997, 'continuously': 8448, 'delicate': 9447, 'protective': 21231, 'smi': 24125, 'imi': 14445, 'biodegradable': 5982, 'burns': 6646, 'replenish': 22233, 'gimic': 12852, 'sixty': 23985, '072429': 236, '10206': 347, '734850108': 2958, 'f00002': 11568, 'permanet': 20178, 'prado': 20861, 'f349': 11577, 'n109': 18410, 'influence': 14687, 'nagging': 18438, 'reid': 22058, 'caveats': 7163, 'dangling': 9136, 'population': 20718, 'propagation': 21188, 'kilobytes': 15809, 'rdr': 21772, 'newsrders': 18714, '62000': 2657, '1493': 686, '4283': 2217, 'ranks': 21665, '88th': 3309, 'sporadically': 24553, '71000': 2890, '1387': 616, '718': 2904, '85000': 3235, '1741': 870, '1207': 480, '2727': 1697, 'jul': 15563, '94000': 3453, '1044': 370, '2448': 1594, '2023': 1330, '834': 3210, '1744': 871, 'estimating': 11210, '51000': 2434, '1690': 832, '1420': 641, '3541': 2004, 'nov': 18964, '47000': 2312, '1372': 613, '1220': 495, '2633': 1674, 'ranking': 21663, 'interpret': 14964, 'glitches': 12902, 'mwm': 18377, 'maimone': 17064, 'gp': 13026, '734975852': 2962, 'f00001': 11567, 'cryptic': 8869, 'kudos': 16026, 'forwarding': 12241, 'finhutc': 11940, 'finhuc': 11939, 'manually': 17161, '7698': 3040, 'paintprogram': 19790, 'antithesis': 4757, 'sheer': 23695, 'newbieness': 18677, 'eeerik': 10646, 'newcastle': 18680, 'castro': 7117, 'lopo': 16762, 'breathing': 6391, 'wilbur': 28194, 'orville': 19518, 'rubles': 22877, 'pipers': 20426, 'vikings': 27617, 'civilization': 7647, 'piper': 20425, 'keesler': 15699, 'loftus': 16708, 'potter': 20808, 'stansbery': 24727, 'kubriek': 16023, 'gues': 13277, 'fai': 11629, '155313': 742, '4220': 2206, 'dazixco': 9230, 'jbreed': 15296, 'charon': 7413, 'perpetual': 20189, 'steadily': 24803, 'turbopascal': 26673, 'gwieman': 13338, 'wieman': 28183, 'unlinfo': 27069, 'sweeping': 25437, 'coaches': 7828, 'lob': 16678, 'fuss': 12490, 'fillies': 11907, 'filly': 11910, 'blowing': 6108, 'cardinal': 7035, 'redbirds': 21932, 'f67709907': 11583, 'ccit': 7197, 'franklin': 12318, 'c4x9xa': 6716, '9ew': 3556, 'brahms': 6347, '4fjqpau00wblm1z50r': 2381, 'anuj': 4764, 'gupta': 13312, 'ag4i': 4238, 'juggernaut': 15557, 'biting': 6016, 'lurid': 16897, 'overstatements': 19667, 'humiliate': 14161, 'youth': 28725, 'commissioner': 8031, 'lifted': 16513, 'frustrating': 12409, 'squad': 24609, 'parallels': 19860, 'mockingbird': 17983, 'interracial': 14971, 'encompasses': 10899, 'mingling': 17823, 'g7': 12519, 'robohen': 22655, 'wishes': 28295, 'furnishings': 12480, 'tea': 25692, 'cottage': 8652, 'kongsberg': 15951, 'ingeniorhogskole': 14722, 'occurances': 19165, 'sheep': 23694, 'creature': 8778, 'masking': 17276, 'haaden': 13361, 'fripp': 12381, '93108': 3419, '164642rvesterm': 807, '020347': 102, '9554': 3491, 'presidents': 20967, 'parents': 19876, 'wallets': 27875, 'shift': 23727, 'hrs1': 14100, 'cbnewsi': 7179, 'silbiger': 23884, 'aiim': 4295, 'stu': 25056, 'lynne': 16923, 'kentucky': 15726, 'prakinf': 20866, 'ilmenau': 14407, 'merkur': 17605, 'irt': 15122, 'dat': 9181, 'sebastian': 23407, 'praktische': 20867, 'dolven': 10166, 'gdd7548': 12644, 'trex': 26504, 'nome': 18863, 'arowatt': 5025, 'rowatt': 22801, 'flipping': 12052, 'palmerston': 19815, '2c': 1805, 'buffering': 6561, 'mask': 17275, 'registers': 22040, 'u1452': 26750, 'penelope': 20091, 'bytof': 6700, 'sio': 23955, 'supercomputer': 25284, 'debatable': 9283, 'quarters': 21484, 'examined': 11338, 'innovations': 14771, 'enhance': 10956, '1pq7rj': 1167, 'q2u': 21419, 'attractive': 5287, 'firm': 11961, 'allocate': 4443, 'tenant': 25810, 'cancellation': 6963, 'clauses': 7685, 'reagan': 21808, 'penalties': 20084, 'occupant': 19162, 'incorrectly': 14574, 'softquad': 24230, 'eccentricity': 10551, 'helion': 13677, 'aphelion': 4797, 'golgafrinchans': 12971, 'granger': 13082, 'raymaker': 21725, 'bcm': 5689, 'tmc': 26197, 'baylor': 5672, 'electical': 10737, 'inputting': 14780, 'vectra': 27458, 'phar': 20259, 'married': 17249, 'flexibility': 12040, 'mz': 18405, 'moscom': 18146, 'zenkar': 28773, 'wlm': 28328, 'attmail': 5281, 'usr1': 27236, 'lookin': 16741, '831': 3206, '2880': 1752, 'x2002': 28515, '______________________________________________________': 3595, '204941': 1355, '15055': 702, 'leap': 16308, 'wanna': 27898, 'hlvs': 13883, 'cardiff': 7034, 'gwyn': 13343, 'thinned': 25998, 'jxu': 15599, 'duck': 10394, 'worcester': 28380, 'dopson': 10204, 'huntington': 14181, 'rolled': 22712, 'conical': 8314, 'noonday': 18891, 'forecast': 12184, 'deployments': 9544, 'weapns': 27995, 'reusable': 22435, 'declined': 9328, 'colonel': 7940, 'quipped': 21525, 'lowered': 16822, 'sights': 23859, 'breakthroughs': 6382, 'leapfrog': 16309, 'evolutionary': 11317, 'illustrates': 14403, 'miracles': 17863, 'overworked': 19678, 'jess': 15343, 'sponable': 24544, 'partnership': 19924, 'exponentially': 11493, 'praise': 20864, 'democratic': 9485, 'aout': 4783, 'dana': 9122, 'rohrbacher': 22703, 'republican': 22282, 'shrimp': 23815, 'doubted': 10224, 'district': 10026, 'criticized': 8809, 'staged': 24691, 'placing': 20487, 'casings': 7103, 'ammunition': 4576, 'capsules': 7017, 'praised': 20865, 'sponsorship': 24549, 'secotro': 23416, 'ventures': 27491, 'seed': 23435, 'ordahl': 19444, 'citing': 7638, 'liken': 16539, 'gradual': 13053, 'successive': 25173, 'hovering': 14057, 'verticle': 27538, 'manever': 17133, 'supervised': 25307, 'conrad': 8330, 'paised': 19793, 'maintainance': 17072, 'moves': 18194, 'pratt': 20871, 'whitney': 28146, 'rl10a': 22621, 'propellants': 21190, '760': 3030, 'champer': 7356, 'throttling': 26061, 'firings': 11960, 'employ': 10859, 'tri': 26506, 'hydrocarbon': 14217, 'altitudes': 4509, 'teaming': 25701, 'agreement': 4270, 'energomash': 10932, 'esoc': 11176, 'tnedderh': 26200, 'iceland': 14286, 'trained': 26383, 'crater': 8751, 'flagstaff': 12000, 'ease': 10514, 'thorsten': 26032, 'nedderhut': 18574, 'mbp': 17380, 'fcsd': 11761, 'oad': 19076, 'stb': 24797, 'cirrus': 7629, 'landis': 16130, 's202': 22967, 'rast': 21687, 'kaman': 15628, 'colo': 7938, 'spgs': 24499, 'mcknight': 17429, '195730': 1022, '20277': 1333, '160030': 773, '2328': 1545, 'tparker': 26343, 'parker': 19885, 'buddy': 6548, 'rocked': 22664, 'brewhas': 6416, 'navarro': 18511, 'orosco': 19506, 'manzanillo': 17175, 'mockery': 17982, 'maldanado': 17098, 'scoreless': 23295, 'wegman': 28025, 'ouch': 19566, 'averaging': 5382, 'undoubtedly': 26982, 'fetters': 11841, 'plesac': 20560, 'deficits': 9387, 'alright': 4487, 'nilsson': 18796, 'doran': 10205, 'reactivated': 21789, 'suero': 25190, 'mcintosh': 17423, 'cancelled': 6964, 'salty': 23036, '234': 1552, 'heavenly': 13639, 'bodys': 6164, 'stationary': 24778, 'sucking': 25183, 'propogation': 21200, 'electro': 10742, 'waves': 27970, 'moreley': 18123, 'flow': 12073, 'perpindicular': 20191, 'prevailing': 20989, 'traveled': 26463, 'pivotal': 20457, 'keystone': 15759, 'ramifications': 21640, 'biblical': 5901, 'proportions': 21205, 'einstien': 10709, 'creations': 8773, 'lattice': 16215, 'lattices': 16216, 'margarita': 17203, 'blender': 6070, 'ingest': 14723, 'distilling': 10000, 'localized': 16686, 'dragged': 10280, 'onion': 19325, 'diagonally': 9733, 'intersected': 14975, 'parasite': 19871, 'sustaining': 25395, 'wobble': 28340, 'feild': 11796, 'sticking': 24883, 'spaghetti': 24391, 'eclipse': 10567, 'spins': 24518, 'turntable': 26687, 'misnomer': 17889, 'dissipates': 9993, 'outward': 19618, 'defining': 9394, 'happening': 13482, 'warp': 27918, 'locality': 16685, 'squirt': 24622, 'holy': 13960, 'grail': 13069, 'decipherable': 9315, 'spectra': 24464, 'unusable': 27131, 'isolate': 15155, 'dog': 10149, 'backwards': 5475, 'pentium': 20107, 'concluding': 8243, 'flowing': 12078, 'magnetism': 17029, 'coil': 7879, 'quit': 21526, 'reproductive': 22276, 'dna': 10108, 'seeds': 23436, 'jamming': 15253, 'fruit': 12403, 'greek': 13151, 'curios': 8976, 'hair': 13399, 'household': 14050, 'wheat': 28108, 'weed': 28016, 'reproduce': 22271, 'lying': 16918, 'diverged': 10039, 'twelve': 26706, 'telepathic': 25770, 'beings': 5768, 'advising': 4156, 'manipulated': 17143, 'reproducing': 22273, 'raising': 21623, 'species': 24448, 'rewriting': 22479, 'compromised': 8189, 'enticed': 11006, 'recruits': 21921, 'visions': 27667, 'souls': 24332, 'exert': 11392, 'prune': 21266, 'stepped': 24845, 'bask': 5636, 'eliminate': 10772, 'harmony': 13516, 'treated': 26480, 'lonely': 16726, 'murderers': 18344, 'flowery': 12077, 'nosers': 18930, 'playmates': 20541, 'eternal': 11225, 'inspecting': 14812, 'socks': 24214, 'paths': 19965, 'vanish': 27394, 'rewrite': 22478, 'wiser': 28292, 'hierarchy': 13791, 'adjustment': 4087, 'cultivated': 8957, 'loosens': 16758, 'grip': 13194, 'achieve': 3955, 'tightens': 26119, 'slips': 24078, 'fingers': 11937, 'collects': 7923, 'buries': 6634, 'borrows': 6269, 'ecstatic': 10588, 'carrot': 7078, 'bury': 6657, 'tenth': 25826, 'deceived': 9299, 'widgets': 28179, 'chaos': 7381, 'forest': 12192, 'canopy': 6982, 'hide': 13785, 'indigenous': 14613, 'spine': 24514, 'transceiver': 26400, 'naive': 18446, 'timers': 26143, 'famine': 11680, 'belly': 5791, 'hollywood': 13952, 'fighting': 11893, 'troops': 26579, 'bread': 6373, 'somalia': 24272, 'sixteen': 23982, 'olds': 19273, 'stunted': 25080, 'dying': 10467, 'babes': 5449, 'arms': 5011, 'infants': 14662, 'umbilical': 26870, 'cord': 8568, 'breast': 6385, 'telepathy': 25771, 'blooded': 6100, 'aquatic': 4906, 'mammal': 17113, 'investigate': 15028, 'illusion': 14400, 'liar': 16467, 'cornered': 8584, 'whine': 28131, 'grovel': 13226, 'laid': 16100, 'destiny': 9635, 'pruned': 21267, '93apr21152344': 3444, 'efficiently': 10664, 'ballance': 5519, 'exceptions': 11356, 'revolted': 22466, 'independance': 14593, 'engaged': 10939, 'lucrative': 16869, 'partner': 19922, 'pos': 20745, 'avg': 5385, '056': 199, '279': 1717, 'foci': 12115, 'hosed': 14032, 'phenomena': 20266, 'djlewis': 10068, 'ualr': 26766, 'arkansas': 4998, '080719': 249, '4773': 2320, 'nwnexus': 19055, 'elude': 10804, 'framegrabber': 12289, '16bit': 837, '15bit': 764, '768': 3039, 'doesnot': 10146, 'connector': 8325, 'upto': 27177, 'composite': 8163, 'eicn': 10696, 'etna': 11238, 'gnuish': 12942, 'radon': 21596, 'homam': 13961, 'designer': 9611, 'buggy': 6572, 'reeve': 21975, 'steam': 24809, 'xylogics': 28623, 'fears': 11767, 'burlington': 6640, '01810': 84, 'rawley': 21721, 'eastwick': 10527, 'iie': 14374, 'orsa': 19509, 'tims': 26155, 'discerning': 9900, 'catullus': 7148, 'prisoner': 21045, 'mayan': 17360, 'lars': 16180, 'jorgensen': 15471, 'externel': 11524, 'nr': 18984, 'natr': 18498, 'od': 19189, 'internet_gateway': 14954, 'mabe': 16945, 'som': 24270, 'lars_jorgensen': 16181, 'denmark': 9509, '735066879': 2969, 'label': 16067, 'cable': 6854, 'nationwide': 18494, 'outta': 19617, 'vladimir': 27700, 'sexually': 23602, 'frustrated': 12407, 'kilmer': 15808, 'talluri': 25594, 'osage': 19523, 'raj': 21626, 'robust': 22661, 'outliers': 19595, 'satifactory': 23115, '75248': 3012, 'c8': 6840, 'subsystems': 25152, 'uplink': 27162, 'bps': 6336, 'contingency': 8437, 'random': 21650, 'reloaded': 22135, 'calibrations': 6904, 'rescheduled': 22302, 'c9': 6841, 'reload': 22133, 'oscillator': 19526, 'activation': 4013, 'characterize': 7394, 'phases': 20262, 'cals': 6922, 'varying': 27420, 'attitudes': 5280, 'orientations': 19481, '971': 3516, '673': 2776, 'mph': 18212, 'spark': 24412, 'prompt': 21176, 'copro': 8559, '1m': 1146, 'himem': 13819, 'emm386': 10847, 'exe': 11378, 'somenone': 24277, 'apprecied': 4865, 'perret': 20192, 'ecole': 10573, 'ingénieur': 14730, 'ets': 11242, 'le': 16288, 'locle': 16703, 'suisse': 25214, 'cain': 6879, 'geomag': 12754, 'gly': 12923, 'fsu': 12418, '1raee7': 1270, 'b8s': 5444, '23apr199317325771': 1572, 'coated': 7838, 'accurately': 3943, 'anisotropies': 4686, 'whereas': 28118, 'compensate': 8112, 'scri': 23337, '904': 3351, '644': 2712, '4014': 2160, '4214': 2204, '0098': 53, 'dbm0000': 9236, 'tm0006': 26194, 'mckissock': 17428, 'resigns': 22330, 'c5xugl': 6836, 'jow': 15494, 'kathy': 15663, 'sawyer': 23146, 'resigned': 22328, 'hospitalized': 14033, 'rambling': 21638, 'inaudible': 14532, 'microphones': 17715, 'table': 25547, 'peons': 20111, 'foyer': 12272, 'italian': 15183, 'guiding': 13290, 'vest': 27547, 'connor': 8328, 'breathable': 6387, '5cm': 2590, 'personnally': 20203, 'crit': 8801, 'vessel': 27545, 'realities': 21815, 'goldin': 12967, 'senatorial': 23490, 'aide': 4291, 'breifing': 6398, 'recollections': 21887, '125512': 528, 'hugh': 14136, 'lilly': 16550, 'sen': 23488, 'patty': 19979, 'murrays': 18349, 'benifits': 5820, 'senator': 23489, 'gasp': 12608, 'conversation': 8501, 'appointment': 4854, 'bozos': 6328, 'familiarize': 11676, 'allocated': 4444, 'listening': 16620, 'primer': 21017, 'copius': 8554, 'entrench': 11015, 'ourselves': 19575, 'aligned': 4413, 'interentested': 14916, 'tourism': 26325, 'patric': 19969, 'environmentalist': 11032, 'smog': 24136, 'bone': 6212, 'decalcification': 9296, 'cure': 8974, 'osteoporosis': 19541, 'enthused': 11002, 'havent': 13568, 'incentive': 14537, 'tellecommunications': 25785, 'sectors': 23425, 'skypix': 24029, 'benifit': 5819, 'proceeding': 21084, 'condor': 8258, 'majellan': 17082, 'lowering': 16823, 'speal': 24435, 'separately': 23523, 'jump': 15572, 'immediatly': 14452, 'arena': 4966, 'herself': 13749, 'sacramento': 22988, 'fated': 11729, 'housed': 14049, 'sasst11': 23105, 'snowiss': 24187, 'coprocessor': 8560, 'contrasting': 8468, 'scrounge': 23345, 'plunge': 20583, '8416': 3224, 'xerxes': 28545, '55444': 2510, '0184': 87, 'unoffically': 27080, 'loves': 16814, 'underdogs': 26941, 'mounted': 18182, 'fallen': 11665, 'perennial': 20133, 'losers': 16776, 'surrounds': 25364, 'inevitability': 14653, 'lovable': 16806, 'c5p3yr': 6802, 'gh2': 12805, 'koosman': 15957, 'forseeable': 12230, 'lansd': 16155, 'lansdale': 16156, 'outlines': 19598, 'renderable': 22181, 'csri': 8907, 'truetype': 26594, 'scanline': 23173, 'equivalent': 11104, 'descibing': 9584, 'interior': 14934, 'trapezoid': 26455, 'decomposition': 9339, 'trapezoids': 26457, 'rasterizers': 21694, 'trapezoidal': 26456, 'rendered': 22182, 'polgyons': 20645, 'decomposer': 9338, 'fond': 12144, 'excess': 11360, 'bevelled': 5877, '978': 3530, '6619': 2754, 'm5s': 16936, '1a4': 1124, 'baez': 5484, 'guitar': 13297, 'ucr': 26787, '29034': 1762, 'riverside': 22606, 'd1': 9074, 'stir': 24904, 'reasoned': 21839, 'preface': 20918, 'largely': 16173, 'romance': 22720, 'grained': 13071, 'biotechnology': 5995, 'condensed': 8250, 'nostalgia': 18931, 'wipe': 28277, 'fades': 11624, 'micheal': 17692, 'schrage': 23243, 'angst': 4665, 'midlife': 17742, 'grown': 13232, 'weary': 28000, 'multibillion': 18303, 'minimal': 17830, 'psychic': 21292, 'rewards': 22476, 'mutated': 18366, 'focuse': 12117, 'speace': 24429, 'meaningful': 17471, 'competitiveness': 8125, 'ideal': 14311, 'administrations': 4095, 'obituary': 19104, 'bush': 6662, 'aggressively': 4259, 'domains': 10168, 'darman': 9161, 'outspoken': 19615, 'conceived': 8222, 'unimpressively': 27020, 'inertia': 14644, 'nostalgic': 18932, 'futurism': 12497, 'coherent': 7877, 'sensibilities': 23505, 'notable': 18936, 'porkification': 20722, 'positioned': 20755, 'symbolic': 25489, 'substantive': 25145, 'centerpiece': 7262, 'prowess': 21261, 'rightly': 22556, 'slashed': 24045, 'agenda': 4250, 'mrosales': 18226, 'koko': 15939, 'csustan': 8918, 'maria': 17211, 'rosales': 22746, 'csu': 8914, 'stanislaus': 24721, 'ooops': 19348, 'rued': 22888, 'daimi': 9104, 'aau': 3807, 'rgensen': 22492, 'scf': 23203, 'aarhus': 3802, 'tlc': 26192, 'cx5': 9040, 'rix': 22607, '7bytes': 3106, 'vpic': 27777, 'texans': 25887, 'hood': 13996, 'gestures': 12788, 'seating': 23402, 'chart': 7416, 'grbs': 13137, 'oort': 19352, 'cosmological': 8635, 'energies': 10931, 'timescale': 26146, 'andromeda': 4649, 'spacelanes': 24377, 'reticuli': 22405, 'ceti': 7304, 'refereed': 21980, 'literature': 16630, 'theorists': 25954, 'unofficial': 27081, 'moratorium': 18116, 'observational': 19131, 'elliot': 10783, 'maddox': 16997, 'saul': 23135, 'rogovin': 22702, '1949': 1011, 'shopping': 23769, 'gallego': 12561, 'kesslerm': 15741, 'dsu': 10369, 'dakota': 9108, 'thankful': 25924, 'sloan': 24080, 'uab': 26758, 'birmingham': 6001, '1pscti': 1179, 'aqe': 4900, 'srp': 24646, 'pietrowicz': 20388, 'orienting': 19484, 'inconsistencies': 14564, 'flips': 12053, 'traverse': 26470, 'enforcing': 10937, 'consistency': 8355, 'queue': 21508, 'inconsistent': 14565, 'finds': 11932, 'sharing': 23667, '2213': 1467, '115a': 443, 'campbell': 6944, '5473': 2497, '35294': 1999, '1170': 452, 'kyger': 16047, 'skims': 24014, 'slush': 24110, 'wisely': 28291, 'merits': 17602, 'distorting': 10010, 'existense': 11406, 'blissfully': 6080, 'unaware': 26900, 'khz': 15780, 'totem': 26309, 'extolling': 11528, 'virtues': 27655, 'wrap': 28443, 'wp': 28437, 'calculater': 6889, '540': 2487, 'concede': 8220, 'appreciable': 4860, 'mcdonalds': 17400, 'restaurant': 22374, 'rocketdyne': 22667, 'slice': 24059, 'eaten': 10531, 'setup': 23583, 'checkout': 7438, 'cell': 7246, 'acid': 3964, 'batteries': 5656, 'simulate': 23925, 'nickel': 18761, 'switchgear': 25465, 'concerns': 8235, 'crane': 8741, 'cells': 7248, 'milestone': 17778, '552': 2505, 'cycles': 9052, '840': 3215, 'monte': 18083, 'carlo': 7056, 'charter': 7418, 'removes': 22171, 'expenditure': 11436, 'divide': 10046, 'billable': 5940, 'av': 5368, 'overpays': 19652, 'underpay': 26952, 'burecratic': 6630, 'nightmare': 18787, 'testimony': 25874, 'someplace': 24280, 'gao': 12581, 'audit': 5301, 'documented': 10134, 'triangulation': 26515, 'a7f6002bf6011c1d': 3778, 'rs14': 22834, 'c5ngxq': 6800, '663': 2756, 'repeating': 22221, 'hahm': 13393, 'foley': 12131, 'prefered': 20924, '230236': 1530, '18227': 920, '349': 1986, '042918': 167, 'garrison': 12600, 'vin': 27625, 'scully': 23359, 'ls1d6vinns65': 16841, 'appserv': 4887, 'str': 24957, 'maredsous': 17201, 'rader': 21566, 'hurting': 14194, 'athletes': 5225, 'athletic': 5226, 'chert': 7462, 'dungeon': 10419, 'cirr': 7627, 'pellett': 20078, 'epson': 11076, 'pen': 20081, 'pens': 20103, 'compataible': 8102, 'forsale': 12228, 'emulates': 10873, '7570': 3022, '7574': 3023, 'emulation': 10874, 'serial': 23547, 'handshake': 13460, 'aqueous': 4907, 'assorted': 5153, 'packaged': 19745, '11x17': 468, 'sealed': 23384, 'capped': 7012, 'laserjet': 16191, 'nibbling': 18746, 'd91': 9080, 'fad': 11622, 'tekn': 25750, 'hj': 13870, 'falk': 11657, 'gskolan': 13254, 'nk': 18824, 'ping': 20407, 'pc5_b109': 20014, 'kjb': 15861, 'uvesa32': 27298, 'chipsets': 7509, 'animator': 4680, 'announcementof': 4706, 'ebenezum': 10539, 'wizard': 28317, 'd91fad': 9081, 'hjds90': 13871, 'musician': 18357, 'jkpg': 15400, 'sweeeeeden': 25435, 'leinad': 16377, 'dragon': 10281, 'covert': 8703, '1pcgaa': 1155, 'do1': 10115, 'kicker': 15783, 'justify': 15590, 'neccessary': 18565, 'validity': 27367, 'porcine': 20720, 'colloquium': 7936, 'discarded': 9899, 'colloquia': 7935, 'responce': 22357, 'minumum': 17853, 'villans': 27621, 'benefited': 5816, 'predicessor': 20906, 'owed': 19683, 'sucessor': 25177, 'wrung': 28473, 'melido': 17541, 'poutsmaj': 20817, 'mace': 16957, 'aguilera': 4277, 'cardiac': 7033, 'arrest': 5035, '1qi97dinnemh': 1205, 'phakt': 20255, 'loren': 16766, '123722': 507, '24506': 1596, 'bmw': 6134, 'mayo': 17367, 'bergerson': 5838, 'bum': 6597, 'daybell': 9222, 'throws': 26069, 'waaaaaayyyyyyy': 27825, 'leaps': 16310, 'robbed': 22645, 'wingcommanderii': 28250, 'wingcommander': 28249, 'realspace': 21824, 'kbanaian': 15677, 'pitzer': 20455, 'claremont': 7666, 'banaian': 5545, 'overpaid': 19651, 'underpaid': 26951, 'castillo': 7112, 'rp': 22812, 'rojas': 22705, 'melendez': 17540, 'piazza': 20356, 'bagwell': 5491, 'barberie': 5573, 'listach': 16616, '170': 842, 'arbitration': 4926, 'raises': 21622, 'arb': 4922, 'humbug': 14160, 'keyes': 15753, 'yaleta': 28641, 'feisty': 11798, 'reporter': 22247, 'patriots': 19973, 'locker': 16699, 'crying': 8865, 'applies': 4849, 'cracking': 8730, 'fingernail': 11936, 'tip': 26162, 'oquendo': 19429, 'complications': 8154, 'ñaustin': 28833, '1pnuke': 1162, 'idn': 14326, '93apr4200752': 3447, '734062799': 2944, 'descended': 9580, 'dirctly': 9849, 'confusion': 8300, '747s': 2999, '111s': 419, 'aerodynamicists': 4174, 'whitcomb': 28137, '50s': 2431, 'yf': 28689, 'involvement': 15051, 'bailed': 5494, 'supportive': 25322, 'mechnaical': 17496, 'confident': 8274, 'avro': 5400, 'arrow': 5044, 'sas58295': 23101, 'soth': 24329, 'mpeg': 18208, 'lordsoth': 16765, 'kohut1': 15938, 'urz': 27199, 'unibas': 27007, 'miro': 17868, 'gup': 13311, 'basel': 5614, 'vlb': 27701, '24s': 1620, 'matches': 17296, 'universitas': 27049, 'basiliensis': 5631, 'joerg': 15429, 'wunsch': 28488, 'saxnet': 23148, 'rwxrwxr': 22951, '95442': 3488, 'nau': 18504, 'rw': 22946, 'waseda': 27932, '39753': 2104, 'dl8dtl': 10083, 'joerg_wunsch': 15430, 'uriah': 27192, 'wutcd': 28491, 'hadrian': 13388, 'hrz': 14102, 'chemnitz': 7458, 'thornley': 26026, 'erickson': 11123, 'c5lhyd': 6793, 'gex': 12799, 'csci': 8890, '032554': 142, '12401': 513, 'mintaka': 17852, 'frankkim': 12317, 'catfish': 7141, 'ails': 4298, 'dunno': 10421, 'reigning': 22059, 'neighborhood': 18607, 'ericksons': 11124, '150904': 705, '25249': 1637, 'alchemy': 4370, 'balboni': 5510, 'blasphemy': 6053, 'mssc5k47z': 18261, 'fur': 12475, 'mutually': 18369, 'offend': 19210, 'interviewed': 14990, 'interviewer': 14991, 'devote': 9701, 'blomberg': 6097, 'boylan': 6323, 'eai': 10490, 'terran': 25847, 'rds': 21774, 'witkin': 28307, 'kass': 15661, 'tendency': 25813, 'blurry': 6124, 'sr': 24625, '9908': 3545, '7892': 3077, '5pm': 2601, 'dorky': 10208, 'cavalier': 7159, 'weitek': 28044, 'p9000': 19727, 'port3': 20725, 'amber': 4543, 'chip': 7504, 'kshus': 16011, 'schunix': 23254, 'shustakg': 23823, 'uncovering': 26933, 'kip': 15840, 'ds': 10353, 'aris': 4991, 'nswc': 19010, 'demetrios': 9481, 'sapounas': 23089, 'xt': 28594, 'xm': 28566, 'xprism3': 28579, 'recompile': 21894, 'i486s': 14246, '8332': 3208, '1939': 1005, 'dahlgren': 9101, '22448': 1493, 'c5hpcv': 6759, '4hl': 2386, 'cmk': 7808, 'kozierok': 15977, '195301': 1017, '22652': 1508, 'newshost': 18707, 'nlu': 18831, 'nelson': 18616, 'fairness': 11650, 'rni': 22635, 'batted': 5654, 're4': 21778, '145753': 671, '21557': 1432, 'holos0': 13956, 'lbr': 16267, 'c5hq3o': 6761, 'g4p': 12517, 'hanson': 13474, 'loo': 16737, 'horner': 14021, 'prone': 21180, 'loose': 16755, '28th': 1758, 'allegra': 4431, 'seismo': 23460, 'ngp': 18742, 'arpa': 5027, 'housing': 14053, '140804': 631, '15028': 698, '500m': 2410, 'pournelle': 20815, 'c5w5un': 6830, 'bpq': 6332, 'ivs': 15217, 'rub': 22869, 'boot': 6246, 'priced': 21002, 'doable': 10117, 'doubtful': 10225, 'structuring': 25047, 'hardest': 13499, 'loan': 16674, 'worthwhile': 28428, 'slippery': 24077, 'explore': 11481, 'gabriel': 12528, 'album': 4366, 'cchung': 7196, 'sneezy': 24172, 'phy': 20338, 'chung': 7573, 'bashful': 5627, 'fantasyland': 11692, 'motivate': 18164, '919': 3388, '2539': 1641, '1517': 711, '27706': 1713, 'mailserver': 17063, 'schizophrenic': 23222, 'kamienicki': 15629, 'insane': 14793, 'stalk': 24700, 'gulp': 13300, 'whitson': 28147, 'nuff': 19028, 'xviii': 28608, 'fleice_mike': 12033, 'tandem': 25608, 'fleice': 12032, 'cupertino': 8970, 'responders': 22360, 'talented': 25585, 'mea': 17464, 'culpa': 8954, 'architect': 4942, 'tolerant': 26231, 'generalized': 12680, 'instrumentation': 14853, 'tns': 26203, 'loosely': 16756, 'contributor': 8477, 'transaction': 26395, 'autocorrelation': 5349, 'streams': 24998, 'resume': 22396, '10555': 379, 'ridgeview': 22540, 'loc': 16682, '95014': 3480, '0789': 246, '0813': 252, 'newmme': 18696, 'helios': 13679, 'apologize': 4812, 'install': 14823, 'expertise': 11453, '8mm': 3336, 'sophisticated': 24312, 'madvax': 17009, 'xanthorrhoea': 28531, 'circumcenter': 7620, 'tetrahedron': 25882, 'contouring': 8450, 'pergamon': 20146, '040286': 157, '321p': 1902, 'tetrahedral': 25881, 'ax': 5421, 'cz': 9070, '3359': 1950, 'nedlands': 18575, '6009': 2612, '1028': 359, 'ferdinan': 11820, 'groningen': 13205, 'wbdst': 27980, 'dwinnell': 10461, 'chips': 7507, 'adhering': 4081, 'newtout': 18722, 'twenty': 26708, 'commentaries': 8013, 'plead': 20547, 'exigency': 11401, 'biz': 6027, 'quiets': 21520, 'complied': 8155, 'happenings': 13483, 'flatten': 12019, 'predicts': 20915, 'dip': 9843, 'ntsb': 19018, 'investigates': 15029, 'pegasus': 20071, 'aborted': 3840, 'competitor': 8126, 'spain': 24393, 'capricornia': 7013, 'pacastro': 19737, 'reservation': 22315, 'announces': 4710, 'indexes': 14598, 'outlook': 19601, 'revenues': 22449, '890': 3311, 'digits': 9814, '670': 2770, 'adversely': 4141, 'downward': 10253, 'offsetting': 19241, 'deliveries': 9457, 'equip': 11099, '860': 3252, '560': 2522, '352': 1997, '570': 2536, '215': 1430, '715': 2899, '815': 3179, 'commentary': 8014, 'apiece': 4799, 'regaining': 22021, 'receivers': 21863, 'publishes': 21321, 'indicators': 14611, 'markets': 17233, 'broadcasting': 6455, 'pessimistic': 20224, 'pessimism': 20223, 'assumptions': 5161, 'successes': 25169, 'janurary': 15262, 'iridium': 15096, 'awarded': 5408, 'khrunichev': 15778, 'enterprise': 10995, 'spares': 24411, 'negotiation': 18597, 'mlv': 17955, 'bidding': 5913, 'variant': 27406, 'initially': 14743, 'establishes': 11200, 'encompassing': 10900, '1996': 1114, '2002': 1298, 'iir': 14379, 'exercised': 11391, 'deltas': 9468, 'fulfilled': 12441, 'commission': 8030, 'financing': 11928, 'approvals': 4876, 'backing': 5466, 'congressional': 8307, 'slowed': 24094, 'executed': 11383, 'reconsidered': 21901, 'deliberations': 9446, 'worldview': 28413, 'identifies': 14318, 'integrated': 14872, 'geologists': 12751, 'planners': 20509, 'urban': 27185, 'passed': 19937, 'differing': 9787, 'niches': 18753, 'profitability': 21118, 'moneymaker': 18058, 'analyst': 4613, 'capturing': 7024, 'restructured': 22389, 'pundits': 21360, 'speculating': 24473, 'takeover': 25577, 'optimally': 19410, 'internationally': 14950, 'trw': 26610, 'contraction': 8455, 'debt': 9289, 'chunk': 7575, 'expects': 11428, 'dominant': 10172, 'sustain': 25390, 'consolidation': 8365, '3000': 1831, 'decrease': 9347, 'matching': 17297, 'identified': 14317, 'arrival': 5037, 'penetration': 20093, 'csn': 8904, 'sti': 24877, 'reducing': 21955, 'optic': 19405, 'inroads': 14791, 'multipoint': 18317, 'fiberoptic': 11864, 'cables': 6855, 'installing': 14827, 'fiberoptics': 11865, 'serviced': 23563, 'rapidly': 21675, 'rosy': 22763, 'lifetimes': 16510, 'guarantees': 13272, 'owners': 19691, 'rescheduling': 22303, 'flag': 11998, 'launching': 16231, 'zenit': 28771, 'intensify': 14892, 'spawned': 24421, 'violation': 27640, 'officer': 19228, 'overridden': 19655, 'countdown': 8663, 'aboard': 3838, 'scrubs': 23348, 'channels': 7378, 'functioned': 12459, 'constraint': 8384, 'obeyed': 19099, 'leak': 16304, 'destruct': 9640, 'controller': 8483, 'conductor': 8263, 'communicator': 8054, 'relayed': 22101, 'explainations': 11459, 'crop': 8818, 'resolved': 22342, 'issuance': 15172, 'delineated': 9453, 'tsniimach': 26628, 'aerokosmos': 4176, 'winged': 28251, 'severkosmos': 23596, 'transporter': 26450, 'deliver': 9455, 'sineva': 23941, 'focusing': 12120, 'aerodynamics': 4175, 'buran': 6620, 'kaliningrad': 15627, 'suspicion': 25386, 'currency': 8983, 'capitalize': 7007, 'startups': 24761, 'offering': 19222, 'variants': 27407, 'icbms': 14283, 'feasibility': 11769, 'kingsland': 15837, 'recommended': 21892, 'reopening': 22210, 'geographic': 12747, 'considerations': 8346, 'nails': 18444, 'coffin': 7868, 'customer': 9010, 'anchor': 4628, 'discriminators': 9929, 'recover': 21914, 'woomera': 28377, 'shore': 23771, 'criteria': 8802, 'authorized': 5343, 'impediment': 14472, 'iberian': 14273, 'peninsula': 20095, 'canary': 6958, 'islands': 15147, 'inta': 14867, 'argentina': 4968, 'piggyback': 20391, 'phased': 20261, 'disarray': 9889, 'surprisingly': 25358, 'aerospatiale': 4181, 'deutsche': 9674, 'linking': 16591, 'argentinian': 4970, 'surfacing': 25342, 'irbm': 15092, 'junta': 15581, 'ruled': 22899, 'formally': 12208, 'transferred': 26408, 'comison': 8003, 'nacional': 18433, 'atividades': 5231, 'espaciales': 11180, 'cnae': 7814, 'collaboration': 7905, 'egypt': 10690, 'indirectly': 14617, 'iraq': 15087, 'argentinan': 4969, 'lagged': 16095, '181': 913, 'burlak': 6638, 'herndon': 13740, 'norwegian': 18926, 'andoya': 4639, 'supplier': 25314, 'fueled': 12436, 'aeroastro': 4168, 'sumitomo': 25231, 'directors': 9862, 'taiwanese': 25571, 'mainland': 17068, 'chinese': 7500, 'taiwam': 25569, 'nationalist': 18489, 'heels': 13652, 'rocsat': 22681, '1997': 1115, 'budgeted': 6550, '2006': 1308, 'nspot': 19004, 'pursue': 21382, 'sastellite': 23106, 'tiawanese': 26095, 'asiasat': 5098, 'asian': 5097, 'joing': 15449, 'intermediary': 14940, 'indicator': 14610, 'ministry': 17841, 'manufacture': 17165, 'quietly': 21519, 'koreasat': 15964, 'korean': 15963, 'portions': 20737, 'bordering': 6256, 'uribyol': 27194, 'monitoring': 18064, 'keos': 15727, 'submitted': 25118, 'oversee': 19662, 'anticipation': 4751, 'pullout': 21341, 'conjunction': 8318, 'setups': 23584, 'samsung': 23057, 'orbcomm': 19435, 'aggressive': 4258, 'portfolios': 20733, 'stocks': 24920, 'represented': 22260, 'portfolio': 20732, 'surpassed': 25352, '436': 2238, '452': 2272, '373': 2056, 'disappearing': 9880, 'felicitas': 11803, 'multos': 18325, 'habet': 13369, 'amicos': 4562, '2452': 1598, 'seal': 23382, '90740': 3356, '1452': 667, 'jaeastman': 15242, 'anl': 4689, 'eastman': 10525, 'argonne': 4974, '15apr199312304021': 759, 'pavo': 19989, 'concordia': 8246, 'm_klein': 16939, 'corelmark': 8574, 'boskie': 6275, '_______________': 3580, '064720': 220, '6920': 2816, '1ppm7j': 1165, '133619': 586, 'trans': 26394, 'sonic': 24298, 'summarised': 25233, 'bottle': 6286, 'derivation': 9565, 'markus': 17238, 'octavia': 19186, 'anu': 4763, 'buchhorn': 6537, 'hdf': 13597, 'whatnot': 28104, 'minimalist': 17831, '5mb': 2600, 'ideally': 14313, 'hdftoppm': 13598, 'merrily': 17609, 'cropped': 8819, '3beta': 2113, 'cropping': 8820, 'suns': 25266, 'muchly': 18286, '0200': 99, '2492930': 1616, '2490747': 1614, 'sd345': 23366, 'collier': 7931, 'tif': 26111, '071': 234, '477': 2319, 'x3769': 28520, '8565': 3243, 'ec1v': 10546, '0hb': 296, 'highlndr': 13802, 'ux1': 27316, 'highlander': 13798, 'numerology': 19041, 'stomp': 24927, 'endian': 10916, 'eggs': 10680, 'thebishop': 25935, 'commits': 8035, 'sins': 23954, 'unintentionally': 27024, 'pmueller': 20601, 'mrcnext': 18221, 'flock': 12059, 'cs89ssg': 8879, 'sunil': 25257, 'cgcad': 7319, 'bart': 5599, 'icmp': 14295, 'unreachable': 27093, 'nsn': 19001, 'pe': 20042, 'ccws': 7212, 'mainstream': 17070, 'looper': 16750, 'manuevers': 17164, 'wavelengths': 27969, 'focal': 12114, '_itself_': 3682, 'icarus': 14280, 'melt': 17546, 'glues': 12922, 'furled': 12477, '_always_': 3633, 'sunshade': 25268, 'mast': 17290, 'beneath': 5814, 'rodders': 22685, 'recyclers': 21930, 'mjones': 17939, 'ramsey': 21643, 'laurentian': 16234, 'hockey': 13909, 'minus': 17854, 'magical': 17020, 'isolating': 15157, 'fallacious': 11660, 'straigh': 24960, 'simele': 23901, 'interesed': 14917, 'demonstrable': 9489, 'definite': 9395, '780': 3063, 'plausible': 20530, 'lefthander': 16345, 'skydome': 24025, 'fallacy': 11661, 'foolhardy': 12158, 'performances': 20141, 'evaluate': 11271, 'hatch': 13548, 'zap': 28756, 'reprogram': 22277, 'zaphod': 28757, 'beeblebrox': 5733, '735400848': 2975, 'philosophically': 20287, 'inability': 14524, 'misuse': 17920, 'chalk': 7343, 'immense': 14453, 'unnecessary': 27076, 'appendix': 4838, 'trapped': 26458, '1qn6tqinnmnf': 1222, 'bedfellow': 5730, 'inky': 14758, 'crap': 8746, 'nonchalantly': 18871, 'motioned': 18162, 'memorable': 17556, 'hurricanes': 14188, 'accelerations': 3891, 'efpx7ws00uh7qaop1s': 10668, 'amruth': 4593, 'laxman': 16250, 'al26': 4349, '45g': 2285, 'humanly': 14156, 'tolerable': 26228, 'aid': 4290, 'absorb': 3855, 'endured': 10924, 'gees': 12657, 'immersion': 14456, 'generalizes': 12681, 'myless': 18388, 'myles': 18387, 'strous': 25040, 'jensen': 15331, 'joshua': 15478, '7716': 3045, 'gratefully': 13121, '226536': 1509, 'urgent': 27191, 'cardboard': 7030, 'archchancellor': 4935, 'mustrum': 18364, 'ridcully': 22533, 'reaper': 21833, 'pratchett': 20868, 'uaccess': 26759, 'lite': 16628, '6v2': 2852, '212202': 1409, 'commericial': 8027, 'mineral': 17817, 'minerals': 17818, 'loophole': 16751, 'shutting': 23829, 'attained': 5264, 'treason': 26477, 'vilest': 27618, 'harness': 13518, 'plough': 20574, 'plenty': 20559, 'furrow': 12481, 'ruca': 22878, 'pinkie': 20409, 'saber': 22978, 'rui': 22892, 'sousa': 24343, 'visix': 27674, 'sistemas': 23966, 'informacao': 14698, 'lda': 16277, 'c5dz7c': 6752, 'j0e': 15225, 'appelquist': 4834, 'potentially': 20805, 'luminosity': 16882, 'troublesome': 26584, 'constants_733694246': 8373, 'constants_730956482': 8372, 'greer': 13163, 'parentheses': 19874, 'approximations': 4885, 'skying': 24026, '7726': 3048, '3075': 1856, '35786': 2013, 'geosync': 12767, '6371': 2689, '6400': 2698, '6378': 2691, '1738': 867, '1700': 843, '974e24': 3524, '6e24': 2843, '348e22': 1985, '7e22': 3109, '989e30': 3540, '2e30': 1812, '986e14': 3539, '4e14': 2377, '903e12': 3350, '5e12': 2593, '327e20': 1918, '13e19': 622, '384401': 2078, '4e5': 2379, '496e11': 2360, '15e10': 765, 'megaton': 17527, 'tnt': 26204, '2e15': 1809, 'ardc': 4959, 'kirtland': 15846, '1963': 1032, 'glasstone': 12886, 'dolan': 10159, 'gpo': 13028, 'moreequations': 18120, 'd0': 9073, 'vt': 27796, '5at': 2587, 'v0': 27323, '2ad': 1795, 'vc': 27441, 'vesc': 27544, 'escape': 11167, 'orbited': 19439, 'semimajor': 23485, 'conservation': 8339, 'rotational': 22770, 'reduces': 21954, 'gmm': 12931, '2rcirc': 1824, 'rcirc': 21753, 'dv': 10446, 'm1': 16931, 'excluding': 11370, 'ln': 16665, 'unaccelerated': 26892, 'sinh': 23949, 'cosh': 8631, 'tanh': 25615, 'parsecs': 19895, '206265': 1363, 'miscellaneous': 17875, 'fd': 11762, 'exp': 11415, 'mgz': 17678, 'kt': 16015, 'bolztmann': 6200, '42e': 2222, '0km': 297, '12km': 558, '40000': 2153, '30000': 1832, '20000': 1287, '10000': 309, 'lapse': 16170, 'titius': 26177, '62618e': 2669, '7e': 3108, 'planck': 20496, '054589e': 197, '1e': 1136, '3807e': 2071, '4e': 2376, 'boltzmann': 6199, '6697e': 2766, '6e': 2842, '673e': 2777, '0029': 37, '3e': 2129, 'wien': 28184, '827e26': 3198, '4e26': 2378, '1370': 612, '96e8': 3512, '7e8': 3110, '2e3': 1811, '299792458': 1791, '3e8': 2131, '46053e15': 2290, '1e16': 1137, '206264': 1362, '806': 3156, '2e5': 1813, '2616': 1667, 'parsec': 19894, '0856e16': 262, '3e16': 2130, 'schwarzschild': 23258, '2gm': 1817, 'grav': 13124, 'aerodynamical': 4172, 'cherylm': 7464, 'hplsla': 14086, 'lsid': 16843, 'hpa100': 14075, 'telenet': 25767, '335': 1949, '2193': 1447, 'usps': 27234, '8600': 3253, 'soper': 24310, 'everett': 11296, '98205': 3535, '1298': 555, 'machman': 16971, 'fifteen': 11885, 'carroll': 7077, 'oo': 19340, 'hallelujah': 13412, 'az': 5431, 'intermittent': 14942, 'muniz': 18335, '586': 2564, '3578': 2012, 'bmuniz': 6133, 'a1tms1': 3764, 'remnet': 22163, 'consrt': 8368, 'rjs002c': 22614, 'paradyne': 19852, 'synoski': 25509, 'largo': 16176, '1024x786x24': 357, 'resoultion': 22347, 'striaght': 25009, 'computerized': 8207, 'redefined': 21936, 'stillwell': 24893, 'victim': 27579, 'triples': 26549, 'dcon': 9244, 'dops': 10203, 'onbase': 19311, 'hs': 14103, 'nhs': 18744, 'ndp': 18543, 'neb': 18559, '108': 391, '015': 75, '852': 3239, '027': 128, '014': 71, '019': 92, 'lemke': 16381, '038': 151, 'morandini': 18115, '069': 229, '088': 267, '582': 2557, 'biggio': 5924, '678': 2784, '811': 3173, '044': 170, '029': 130, '023': 116, '757': 3021, '016': 79, '812': 3175, '024': 121, '025': 125, '704': 2875, '039': 152, '041': 160, '043': 168, '052': 188, 'sojo': 24238, '075': 243, '691': 2813, 'bizzare': 6029, 'factored': 11611, 'divisors': 10058, 'fanatic': 11683, 'sopa': 24309, 'launcer': 16224, 'fel': 11799, 'toured': 26323, 'methane': 17645, 'mixture': 17932, 'burned': 6643, 'pipe': 20423, 'piston': 20436, 'propelled': 21191, 'hudrogen': 14129, 'andsome': 4650, 'compresses': 8177, 'heats': 13636, 'stainless': 24696, 'diaphragm': 9746, 'ruptures': 22922, 'bore': 6259, 'fired': 11958, 'projectile': 21153, 'lexan': 16439, 'downwards': 10254, 'evacuated': 11268, 'saran': 23094, 'residual': 22326, 'sandbags': 23062, 'fragments': 12286, 'vaporizes': 27400, 'intent': 14896, 'afb': 4192, 'ocean': 19172, 'projectiles': 21154, 'repairs': 22215, 'damaged': 9115, 'detonating': 9666, 'scramjet': 23321, 'firing': 11959, 'tunnels': 26670, 'richie': 22520, 'centerfield': 7259, '032345': 140, '5178': 2450, '030412': 136, '1210': 484, 'howard_wong': 14061, 'rings': 22575, '191011': 976, 'c4zhkw': 6719, '3dn': 2122, '2736': 1700, 'paj': 19795, 'gec': 12651, 'mrc': 18220, 'autonomous': 5360, 'rudder': 22879, 'aerodynamic': 4171, 'hover': 14055, 'accomplished': 3923, 'burnside': 6647, 'clapp': 7665, 'drogue': 10328, 'chute': 7581, 'stabilizes': 24680, 'shock': 23753, 'aerodynamically': 4173, 'subsonic': 25139, 'scary': 23187, 'vectoring': 27454, 'tops': 26283, 'slop': 24085, 'bottoms': 6290, 'dive': 10038, 'messed': 17619, 'asimov': 5100, 'wk223': 28322, 'jean': 15307, 'meeus': 17520, 't045': 25534, '4799': 2324, 'pes': 20221, 'hutcs': 14203, 'pekka': 20075, 'siltanen': 23893, '234409': 1556, '18303': 925, 'manocha': 17157, 'canny': 6977, 'cusps': 9007, 'inflection': 14685, 'timlin': 26151, 'dswartz': 10371, 'osf': 19531, 'swartzendruber': 25424, '4200419': 2200, 'raker': 21627, 'whiffed': 28128, 'foote': 12167, 'bounced': 6299, 'waveland': 27967, '1ps77v': 1174, '5dr': 2592, 'franciscoidle': 12305, 'kday': 15686, 'carderock': 7031, '1252': 526, '20084': 1315, 'awe': 5412, 'loch': 16694, 'epstein': 11077, 'cmpo': 7811, 'uoft': 27140, 'bruno': 6505, 'morganti': 18125, 'phila': 20272, 'wtem': 28481, 'wnbc': 28336, 'oldies': 19271, 'hosts': 14036, 'cooperstein': 8539, 'catergory': 7139, 'ownership': 19692, 'tem': 25792, 'sommers': 24290, 'withdraw': 28301, 'nada': 18434, 'wcau': 27983, 'fran': 12296, 'csc3phx': 8889, 'vaxa': 27432, 'hofstra': 13924, 'yellows': 28679, 'renes': 22195, 'ecpdsharmony': 10584, 'cern': 7284, 'dutch': 10441, 'gratefull': 13120, 'camter28': 6950, 'ocis': 19177, 'hooked': 13999, 'letterman': 16421, 'situnaya': 23978, 'ibm3090': 14276, 'bham': 5890, 'dmorf': 10097, 'fade': 11623, 'bitma': 6017, 'thi': 25980, 'jcm': 15301, '224414': 1492, '784': 3067, 'suchlike': 25179, 'introduce': 15004, 'maturity': 17338, 'full_gl': 12444, 'glen': 12895, 'fullmer': 12448, 'dolphin': 10164, 'glen_fullmer': 12896, 'wireless': 28284, 'hyperbole': 14228, 'buttons': 6678, 'integer': 14869, 'entity': 11012, 'networked': 18651, 'vertice': 27536, 'entities': 11010, '100000': 310, 'minimized': 17834, 'overs': 19659, 'precedence': 20883, 'fooled': 12156, 'feynman': 11849, 'boggled': 6171, 'wording': 28385, 'mightily': 17757, '922': 3398, 'x132': 28514, '95134': 3484, '9287': 3404, 'thermonuclear': 25969, 'detonate': 9665, 'megatons': 17529, 'pusher': 21388, 'explosion': 11486, 'expands': 11420, 'explosively': 11489, 'slams': 24040, 'barium': 5577, 'krypton': 16007, 'neutrons': 18666, 'evaporated': 11279, 'gammas': 12572, 'irradiated': 15111, 'impelling': 14473, 'bombs': 6205, 'alternet': 4504, 'removing': 22172, 'distortion': 10011, '141034': 634, '24731': 1606, 'sctc': 23356, 'boebert': 6165, 'boat': 6145, 'yaron': 28659, 'danon': 9145, 'cursor': 8992, 'click': 7721, 'digitizing': 9813, 'understandable': 26962, 'reproduction': 22274, 'stretching': 25008, 'contracting': 8454, 'uniformly': 27015, 'distortedreference': 10009, 'distorteddata': 10008, 'distorted': 10007, 'treating': 26482, 'bumpy': 6602, 'solving': 24269, 'defines': 9392, 'neighbors': 18609, 'hull': 14147, 'deleting': 9441, 'digitizedlength': 9809, 'displacement': 9971, 'alpha0': 4476, 'examine': 11337, 'displacements': 9972, 'alpha1': 4477, 'sumofedgedisplacements': 25243, 'triangulated': 26512, 'iterate': 15191, 'insist': 14807, 'invariants': 15016, 'neighboring': 18608, 'triangulating': 26514, 'prohibitive': 21149, 'iteration': 15193, 'interact': 14901, 'inproceedings': 14776, 'sloan86': 24081, 'meyers': 17663, 'christine': 7549, 'curcio': 8971, 'reconstruction': 21903, 'retina': 22406, 'booktitle': 6235, 'techreport': 25731, 'curcio87b': 8972, 'retinal': 22407, 'mounts': 18183, 'curcio89': 8973, 'hymowitz': 14224, 'hymie': 14223, 'sensualities': 23512, 'jacquie': 15241, 'underwear': 26972, 'dubbed': 10389, 'wor': 28378, 'secaucus': 23409, 'wgn': 28097, 'wsbk': 28476, 'superstations': 25305, 'mellow': 17543, 'yankovic': 28653, 'sonny': 24301, 'cuckoo': 8945, 'rowlands': 22802, 'pocomoco': 20615, 'hc': 13591, 'spdc': 24426, '1pp991': 1164, 't63': 25542, 'lehtori': 16372, '040819': 159, '14943': 687, 'chould': 7537, 'sync': 25498, 'dump': 10412, 'synchronized': 25501, '60hz': 2634, 'experimenting': 11450, 'brightnesses': 6432, 'respectable': 22353, 'sparse': 24415, 'displayed': 9974, 'guessed': 13279, 'as000060': 5072, 'c5f6rj': 6754, '7bj': 3105, 'ncoast': 18533, 'actuary': 4028, 'balloting': 5531, 'ballots': 5532, 'torn': 26290, 'apathetic': 4790, 'offends': 19213, 'ljs': 16651, 'rn': 22632, '081214': 251, '3921': 2095, 'sbs': 23160, 'splits': 24534, '363': 2033, '392': 2094, 'opiini': 19385, 'wq': 28441, 'quitbye': 21527, 'ctrlaltdel': 8931, 'logout': 16721, 'zz': 28829, 'zzzzzz': 28830, 'helpquit': 13696, 'ctrlshftdel': 8932, 'l1a': 16054, 'showalter': 23802, 'funs': 12474, 'farr': 11708, 'jimmy': 15387, 'monteleone': 18085, 'habyan': 13377, 'terrific': 25854, 'bsaffo01': 6515, 'gmeds': 12929, 'safford': 23004, 'eds': 10626, 'cadillac': 6867, 'ccadmn1': 7187, 'computervision': 8210, '6302': 2677, 'dock': 10123, 'inflateble': 14682, 'trusses': 26603, 'shuttles': 23831, 'dag': 9096, 'fesibility': 11835, 'personnelly': 20205, 'dismount': 9956, 'havign': 13569, 'docking': 10125, 'sealing': 23385, 'polymer': 20676, 'reiniger': 22069, 'arishem': 4993, 'marine': 17217, 'gchen': 12640, 'c55doh': 6747, '2ai': 1796, 'signaware': 23872, '4583820': 2283, '6376564': 2690, 'memo': 17554, 'bcc': 5687, 'verification': 27511, 'yyqi': 28743, 'yingyong': 28696, 'qi': 21432, 'evaluating': 11273, 'yy': 28742, 'st902415': 24675, 'pip': 20422, 'levin': 16430, 'c5k7nk': 6778, '7tv': 3118, 'heros': 13745, 'incidentally': 14543, 'sundays': 25255, 'phaithful': 20254, 'phan': 20257, 'rookies': 22735, '733996812': 2942, 'c500u7': 6721, 'kr8': 15985, 'dbl50872': 9235, 'galaragga': 12546, 'minors': 17849, 'renegade': 22192, 'wierdness': 28187, 'tessmann': 25868, 'pong': 20691, 'pacman': 19754, 'visicalc': 27665, 'dbase': 9232, 'pagemaker': 19766, 'compelling': 8110, 'ea': 10484, 'shifted': 23728, 'wil': 28192, 'cordero': 8569, 'himm': 13820, 'mjw19': 17940, 'inversion': 15025, 'cuddly': 8946, 'earith': 10495, '2bd07605': 1802, '18974': 960, 'rbarris': 21741, 'oac': 19075, 'barris': 5593, 'compactvideo': 8064, 'blockiness': 6092, 'clips': 7742, 'jaws': 15281, 'backdraft': 5459, 'acorn': 3979, '25mhz': 1657, 'slower': 24095, '3d0': 2116, 'dsps': 10363, 'housekeeping': 14051, '20mhz': 1381, 'stacks': 24683, 'mhz': 17681, '6xx': 2856, 'arm6x': 5004, 'arm6xx': 5005, 'cache': 6858, 'graduation': 13058, 'heed': 13650, 'pants': 19833, '3di': 2119, 'tripos': 26552, 'phx': 20337, 'cymdeithas': 9063, 'genedlaethol': 12675, 'traddodiad': 26363, 'troi': 26573, 'teigrod': 25745, 'mwythus': 18379, 'waered': 27837, '9303311213': 3408, 'aa49462': 3785, 'mcelwre': 17409, 'cnsvax': 7822, 'uwec': 27308, 'boris': 6263, 'yeltsin': 28680, 'shield': 23722, 'forging': 12198, 'unethical': 26984, 'notorious': 18961, 'followups': 12141, 'amusing': 4600, 'aero': 4167, 'quest': 21501, 'mall': 17105, 'cafeteria': 6874, 'gaubatz': 12625, 'spalding': 24395, 'sgt': 23619, 'gisburne': 12866, 'assess': 5127, '122nd': 501, 'outfit': 19588, 'shops': 23770, '858': 3247, '7302': 2933, 'advertisement': 4145, 'maximus': 17355, '01wb': 96, 'wwcs': 28497, 'mgt': 17675, 'microsystems': 17725, 'gargravarr': 12593, 'a7f316d13d01be1f': 3776, '150493082611': 700, 'q5022531': 21420, 'ssdgwy': 24657, 'dcxart2': 9250, 'verboseness': 27502, 'husc6': 14200, 'wishing': 28297, 'maine': 17066, 'io21087': 15058, 'grateful': 13119, 'sang': 23076, 'anthem': 4745, 'todays': 26212, 'margesson': 17205, 'umaine': 26864, 'c5': 6720, 'orono': 19505, '04473': 173, 'ncaa': 18526, '866': 3262, '7342': 2951, '93104': 3416, '233239issbtl': 1548, 'byuvm': 6702, 'issbtl': 15170, 'unbeatable': 26902, 'salvaging': 23040, 'strongest': 25037, 'gallas2': 12560, 'gallagher': 12557, '87g54s_': 3287, 'pork': 20721, 'amazingly': 4539, 'vaccuum': 27349, 'offenses': 19217, 'strain': 24963, 'woefully': 28341, 'abild': 3828, 'bert': 5856, 'bigler': 5926, 'sincerly': 23939, 'tracy': 26362, 'abildskov': 3829, '3407': 1964, '1000r': 311, 'bills': 5952, 'dozers': 10257, 'belonged': 5795, 'pretense': 20985, 'ec': 10544, 'pan': 19822, 'multiplier': 18314, 'shorts': 23781, 'guilford': 13294, '101636': 341, 'c50m9d': 6722, 'kcr': 15683, '437': 2240, '274': 1702, '507': 2425, '519': 2452, 'cws': 9039, 'maj': 17081, '1430': 648, 'loses': 16777, 'risen': 22587, '10th': 407, 'eqa': 11079, 'incroyable': 14585, 'bip': 5996, 'felix': 11804, 'klesko': 15877, 'mles': 17952, '440': 2247, 'offhand': 19226, 'warranted': 27923, 'overrated': 19653, 'beleive': 5773, 'harped': 13522, 'shane': 23651, 'oddibe': 19191, 'brantley': 6363, 'wheaties': 28110, 'backgrounds': 5465, 'ainge': 4303, 'lucid': 16864, 'continually': 8441, 'nonsensical': 18885, 'tuscon': 26689, 'hairy': 13402, 'aimed': 4300, 'safing': 23005, 'davidr': 9213, 'rincon': 22572, 'ema': 10812, 'pl5': 20476, 'commpression': 8046, 'casablanca': 7094, '3mb': 2138, 'grainy': 13073, '10fps': 399, '2mb': 1819, 'dpassage': 10260, 'paschich': 19930, 'hbp': 13589, '1qv9psinnsj6': 1239, 'c5r7tv': 6811, '36s': 2048, 'kubey': 16021, 'rooting': 22741, 'irrational': 15112, 'reaons': 21830, 'newss': 18716, 'pollarda': 20658, 'physc1': 20342, 'grapics': 13111, 'settle': 23581, 'xray': 28581, '15apr199311534452': 758, 'rosie': 22754, 'st1rp': 24673, 'schwam': 23255, 'c5hhwv': 6758, 'cvk': 9031, 'changeup': 7374, 'xavier': 28534, 'passable': 19933, 'iffy': 14341, 'edens': 10597, 'boever': 6169, 'appearances': 4828, 'unsuspected': 27123, 'decline': 9327, 'worrisome': 28420, 'blech': 6069, 'shiver': 23749, 'mclane': 17431, 'unis': 27032, 'dull': 10407, 'pullovers': 21343, 'unforms': 26992, '1980s': 1054, 'precident': 20889, 'pullover': 21342, 'shirt': 23747, 'stripes': 25025, 'shoulders': 23794, 'wear': 27998, 'reupholster': 22432, 'pinstripe': 20413, 'cap': 6992, 'ausvmq': 5332, '3189': 1889, 'ruocco': 22921, 'sergio': 23545, 'r3d': 21541, 'riccione': 22512, 'informations': 14707, 'activa': 4010, 'ciao': 7587, 'di': 9728, 'vittorio': 27692, '20019': 1297, 'settimo': 23578, 'milanese': 17770, 'milano': 17771, '0039': 43, '3283896': 1922, 'egerter': 10676, 'gaul': 12627, 'obelix': 19093, 'dmorf12': 10098, 'downloaded': 10246, 'wgt': 28098, 'joystick': 15498, 'primitives': 21019, 'multiway': 18324, 'resizing': 22337, '___________________________________________________________________________': 3608, 'moakler': 17977, 'romulus': 22727, 'bam': 5543, 'dylan': 10470, 'brunswick': 6506, 'village': 27619, 'presented': 20958, 'lyrics': 16928, 'melody': 17544, 'yankess': 28651, 'subterranean': 25153, 'homesick': 13972, 'basement': 5619, 'pavement': 19987, 'bout': 6308, 'trench': 26495, 'coat': 7837, 'roam': 22640, 'headin': 13608, 'highway': 13806, 'ballad': 5518, 'rubin': 22875, 'hurricane': 14187, 'petersburg': 20236, 'tampian': 25602, 'lpo': 16833, '10280': 360, 'anime': 4682, 'remus': 22173, '5064': 2423, 'alliance': 4438, '932': 3422, '3465': 1979, '08903': 268, 'chibi': 7477, 'otaku': 19548, 'diffs': 9792, 'diffs_730956190': 9793, 'r1': 21538, 'rcst1a06400': 21757, 'rcst1a06405': 21758, 'rcst1a06410': 21759, '6695': 2765, 'tabular': 25550, 'translated': 26425, 'rcst1a06415': 21760, '_multiyear': 3697, 'almanac_': 4459, 'mica': 17685, 'pb93': 20003, '500163hdv': 2409, '500155hdv': 2408, '4650': 2301, 'ephemeris': 11059, '_interactive': 3676, 'ephemeris_': 11060, 'rcst1a06420': 21761, '1545': 736, 'nautical': 18507, 'almanac': 4458, '151': 708, 'deltaclipper': 9467, '228': 1515, 'rcst1a06435': 21762, 'new_probes': 18673, 'rcst1a06450': 21763, 'asuka': 5206, 'wavelength': 27968, 'angstrom': 4666, 'cameras': 6935, 'counters': 8671, 'huygens': 14205, 'tos': 26300, 'arriving': 5041, '687': 2805, 'topex': 26273, 'poseidon': 20747, 'rcst1a06465': 21764, '174': 869, 'grains': 13072, 'mix': 17928, 'foamed': 12111, 'inverse': 15023, 'bubbles': 6534, 'bubbling': 6535, 'molten': 18046, 'froze': 12400, 'infiltrated': 14673, 'voids': 27730, 'particles': 19914, 'aron': 5019, 'tikal': 26124, 'ced': 7234, '021708': 112, '13381': 589, '01a': 95, 'ipas': 15069, 'yost': 28712, 'pcaster': 20018, 'mizar': 17934, 'takers': 25579, 'sharperson': 23673, 'sharpy': 23678, 'tremendously': 26494, 'noticeable': 18951, 'astacio': 5166, 'straw': 24987, 'theirs': 25938, 'eau': 10534, 'clair': 7662, 'freebairn': 12338, 'kardank': 15644, 'ere': 11116, 'umontreal': 26881, 'kardan': 15643, 'kaveh': 15669, 'appologies': 4857, 'lpham': 16830, 'eis': 10711, 'calstate': 6923, 'lan': 16119, 'pham': 20256, 'discusses': 9933, 'acting': 4005, 'hyperbolic': 14229, '700g': 2864, 'withstood': 28305, 'winded': 28234, 'blackout': 6036, 'dives': 10045, '8g': 3331, '9g': 3557, '1qjrec': 1206, 'qem': 21429, 'ethical': 11231, 'misleading': 17887, 'admittedly': 4108, 'chassis': 7423, 'lifespan': 16507, 'hairs': 13401, 'elan': 10728, 'misrepresent': 17895, 'constantly': 8370, 'upgradable': 27156, 'expectation': 11424, 'microcomputers': 17701, 'frustation': 12406, 'consent': 8337, 'dissents': 9991, 'isabel': 15132, 'barreno': 5587, 'sabbatical': 22977, 'scornd7': 23303, 'technet': 25714, 'chang': 7369, 'solomon': 24261, 'neideck': 18602, 'nestvx': 18635, 'burkhard': 6636, 'neidecker': 18603, 'lutz': 16908, 'cec': 7230, 'controllers': 8484, '8086': 3162, '80186': 3137, 'eerp': 10652, 'berkom': 5842, 'abraxis': 3848, '734340159': 2952, 'class1': 7676, 'quadrilateral': 21448, 'scares': 23184, 'winters': 28273, '212119': 1407, '13901': 619, 'oopsie': 19351, 'gorgeous': 12997, 'blonde': 6098, 'penis': 20096, 'cooperating': 8536, 'exchanged': 11363, 'revenue': 22448, 'potentials': 20806, 'sums': 25244, 'disneyworld': 9959, 'shoe': 23757, 'advertisers': 4148, 'olympic': 19292, 'gleefully': 12893, 'banners': 5564, 'bars': 5597, 'conestoga': 8268, 'recoverable': 21915, 'lorsch': 16771, 'executive': 11387, 'charges': 7400, 'appropriating': 4874, 'sponsorships': 24550, 'contends': 8424, 'violated': 27638, 'staple': 24730, 'eiffel': 10700, 'sculpture': 23364, 'celebrate': 7243, 'centennial': 7256, 'cont': 8406, '12799': 545, 'approx': 4879, 'recovering': 21917, 'dinged': 9837, 'deak': 9271, 'wet': 28084, 'recovered': 21916, 'vets': 27555, 'tear': 25707, 'waivers': 27857, 'salary': 23024, 'tiddleywinks': 26102, 'eligibility': 10769, 'longest': 16731, 'standpoint': 24718, 'disappointed': 9882, 'schuerholz': 23248, 'smoother': 24143, 'nieves': 18780, 'gorman': 13000, 'berry': 5854, 'cabrera': 6856, 'maxwell': 17358, 'jeffries': 15319, 'herzog': 13752, 'deadline': 9268, 'whiteydal': 28144, 'knees': 15894, 'persuaded': 20210, 'mwa': 18376, 'caraballo': 7026, 'nooooo': 18894, 'whiffer': 28129, 'casey': 7100, 'stengel': 24836, 'laughed': 16222, 'pills': 20396, 'tanner': 25619, 'hire': 13834, 'mikec': 17763, 'tek': 25746, 'cranford': 8742, 'tektronix': 25753, 'beaverton': 5719, 'ec003b': 10545, 'uhura': 26823, 'redicule': 21942, 'tone': 26249, 'vintage': 27634, 'rresponding': 22825, 'bumbry': 6598, 'hobson': 13905, 'easler': 10519, 'vaughhn': 27427, 'scenario': 23194, 'unreasonably': 27097, 'myth': 18402, 'finishing': 11944, 'jockstrap': 15424, 'pitchiong': 20446, 'coiuld': 7886, 'thee': 25936, 'aether': 4187, 'coats': 7839, 'darwin': 9173, 'miserably': 17881, 'conroy': 8331, 'fossas': 12244, 'dismally': 9951, 'becasue': 5721, 'explodes': 11472, 'comedian': 7989, 'twain': 26701, 'transcribed': 26404, 'factual': 11617, 'restriction': 22385, 'newbies': 18678, 'staget': 24693, 'invovled': 15054, 'undergoing': 26946, 'macdonnell': 16955, 'optimizing': 19418, 'asleep': 5106, 'gleaned': 12892, 'maximization': 17350, 'sustainers': 25394, 'accelleration': 3894, '3g': 2132, 'throtled': 26060, 'inefficient': 14639, 'altogether': 4512, 'sustainer': 25393, 'acutally': 4032, '100nm': 332, 'vestiges': 27549, 'perceptive': 20129, 'protecting': 21227, 'maneuver': 17130, 'parameter': 19862, 'maximize': 17351, 'crossrange': 8830, 'eapu207': 10491, 'kondis': 15948, 'attributes': 5289, 'adapter': 4052, 'hex': 13762, 'obscure': 19127, 'zillions': 28790, 'greyscale': 13176, '150038': 696, '2521': 1635, '1993apr1': 1082, '204657': 1350, '29451': 1778, 'mw': 18375, 'cw': 9034, 'sharp': 23669, 'achievable': 3954, 'incinerated': 14544, 'invalid': 15014, 'pretend': 20983, 'tugging': 26659, 'forelock': 12188, 'dismay': 9952, 'sackcloth': 22986, 'ashes': 5093, 'pretending': 20984, 'propposition': 21214, 'elect': 10735, 'criticize': 8808, 'actinides': 4007, 'subcritical': 25097, 'assemblies': 5120, 'spallation': 24396, '1950s': 1014, 'pulsed': 21347, 'superconducting': 25287, 'accelerating': 3889, 'cavities': 7166, 'lampf': 16117, 'approaching': 4872, 'mixed': 17929, 'separating': 23525, 'actinide': 4006, 'ounces': 19572, 'grams': 13076, 'decimated': 9313, 'breeders': 6394, 'incinerators': 14546, 'uranium': 27183, 'scodl': 23285, 'thomsonal': 26020, 'cpva': 8725, 'saic': 23013, '2238': 1487, 'eorsat': 11045, '15337': 727, '2bc16ada': 1800, 'fragment': 12285, '018b': 91, 'confounding': 8292, 'analysts': 4614, 'proclaimed': 21094, 'itar': 15186, 'tass': 25650, 'plesetsk': 20561, 'cosmodrome': 8634, 'ships': 23743, 'geoff': 12744, 'kettering': 15743, '1238': 508, 'fbis': 11755, 'sov': 24352, '060': 204, 'correspondent': 8615, 'veronika': 27522, 'romanenkova': 22721, 'baykonur': 5671, 'tsiklon': 26623, '0930': 282, 'apparatus': 4819, 'apogee': 4808, 'perigee': 20153, '413': 2185, 'radiotelemetry': 21592, 'transmitting': 26439, 'berger': 5837, 'compatable': 8100, '1meg': 1149, '1024': 350, 'procedure': 21080, 'graphmode': 13106, 'videomode': 27590, 'mov': 18188, '10h': 400, 'plotpoint': 20568, 'mem': 17548, 'a000': 3750, '844': 3227, 'photosynthetic': 20330, 'varieties': 27414, 'economical': 10579, 'zemcik': 28769, 'ls': 16840, 'pavel': 19986, 'brno': 6450, 'czech': 9072, 'nonstandard': 18886, '0x3d4': 303, '0x00': 300, '0x1f': 302, 'selects': 23471, '8900': 3312, 'bozetechova': 6326, 'dcse': 9246, 'vutbr': 27807, '7975': 3096, 'rushing': 22927, 'qualitative': 21458, 'sooner': 24307, 'acclimated': 3912, 'expectations': 11425, 'distinguish': 10004, 'legitimately': 16366, 'damage': 9114, 'pas': 19927, 'underperformed': 26953, 'struggling': 25051, 'ballpark': 5533, 'inthe': 14994, 'metro': 17657, 'mayor': 17368, 'rendell': 22179, 'optimisitic': 19412, 'convention': 8497, 'grass': 13115, 'eci': 10561, 'colapse': 7890, 'joshuaf': 15479, 'geiger': 12665, 'dookie': 10195, 'holos': 13955, '496': 2359, '1358': 605, 'atl': 5234, '1850': 943, 'cavern': 7164, 'canyon': 6990, 'excavating': 11344, 'dwelt': 10457, 'miner': 17816, 'niner': 18803, 'daughter': 9201, 'chorus': 7533, 'darling': 9160, 'sentiments': 23516, '1psqpdinnh9v': 1192, '12786': 543, '1psbg8inngjj': 1177, 'jfr2': 15361, '733938351': 2940, 'psg': 21278, 'galvanek': 12565, 'argh': 4971, '1929': 995, 'finshed': 11951, 'finshing': 11952, 'philidelphia': 20274, 'aged': 4246, 'ages': 4254, 'falling': 11666, 'heroics': 13744, 'fart': 11711, 'nec': 18564, 'swan': 25419, 'evidentally': 11312, 'elbow': 10731, 'swelled': 25444, 'wrist': 28456, 'rays': 21728, 'hoage': 13896, 'f6507': 11582, 'n124': 18411, 'photointelligence': 20312, 'ada': 4038, 'dug': 10403, 'grunt': 13243, 'foward': 12267, 'americomm': 4557, '7314': 2936, '6507': 2728, '71170': 2892, '1426': 644, 'mdpyssc': 17461, 'fs1': 12414, 'cunningham': 8967, 'mins': 17851, 'geoffrey_hansen': 12746, 'geoffrey': 12745, 'inumerable': 15013, 'confusions': 8301, 'emerge': 10832, 'periods': 20165, 'mcluhan': 17433, '1ql93binn1s5': 1215, 'dann': 9142, 'bilardello': 5932, 'fathom': 11735, 'kirk': 15844, 'peep': 20066, 'dstampe': 10366, 'stampe': 24703, 'blitter': 6082, 'wetware': 28090, 'psychologist': 21294, 'psycho': 21293, 'kkeller': 15866, 'keller': 15706, 'practically': 20854, 'amtrak': 4597, 'reroute': 22299, 'accomodate': 3916, 'quakers': 21451, 'aleahy': 4379, 'cch': 7195, 'frog': 12385, 'cc_sysh': 7184, 'frogs': 12386, 'c5uhim': 6827, 'jfq': 15360, 'rot': 22764, 'beaver': 5718, 'boivert': 6185, 'tuning': 26668, 'photoshopii': 20328, 'cofmments': 7871, 'leahy': 16303, 'faculties': 11620, 'admirable': 4098, 'apprehension': 4867, 'paragon': 19853, 'animals': 4672, 'quintessence': 21524, 'delights': 9451, 'shakespeare': 23639, 'hamlet': 13429, 'pporth': 20846, 'tricia': 26521, 'porth': 20734, 'mmdf': 17961, 'parse': 19893, 'preceding': 20885, 'duplication': 10428, 'evolving': 11319, 'mtpe': 18278, 'eosdis': 11049, 'nren': 18988, 'sensed': 23502, 'epa': 11052, 'ded': 9356, 'doi': 10155, 'usda': 27211, 'forecasters': 12185, 'librarians': 16478, 'agriculture': 4275, 'forestry': 12193, 'noncommercial': 18872, 'protocols': 21239, 'rsdwg': 22843, 'attachments': 5260, 'lucier': 16865, '3098': 1861, 'rtf': 22856, 'periodicals': 20164, 'solicitation': 24254, 'ties': 26110, 'accessibility': 3905, 'incompatible': 14558, 'anonymously': 4727, 'rych': 22956, 'festival': 11837, 'hawkes': 13576, 'restarting': 22373, 'default': 9368, 'preserved': 20963, 'cel': 7241, 'rycharde': 22957, 'edinburgh': 10604, '0150': 76, 'hawrysio': 13579, 'canrem': 6983, '7000': 2861, '7044': 2876, '1r6f3a': 1258, 'formulas': 12224, 'spreadsheet': 24580, 'calc': 6885, 'graphing': 13103, 'craigs': 8738, 'srgenprp': 24631, 'stelter': 24834, 'sonoma': 24302, 'srsd': 24647, 'mwtd': 18378, '638': 2692, '637': 2688, 'excell': 11350, 'dome': 10169, 'comfortably': 7997, 'snowing': 24186, 'raining': 21617, 'constructor': 8392, '1r7hl1': 1264, 'vuw': 27809, 'humphrey': 14167, 'chumphre': 7571, 'postet': 20788, '1r54to': 1255, 'spare': 24409, 'malfunction': 17102, 'kourou': 15976, 'unprofitable': 27088, 'storables': 24945, 'kazakstan': 15675, 'shag': 23634, 'unverzagt': 27137, '1pscc6innebg': 1178, 'spacefood': 24374, 'breakfast': 6377, 'cylinders': 9060, '10cm': 398, '1cm': 1131, 'wrapped': 28444, 'foil': 12124, 'flavor': 12022, 'extruded': 11546, 'microwaved': 17730, 'tootsie': 26270, 'captures': 7023, 'liking': 16545, 'obligatory': 19118, 'scarlet': 23185, 'soylent': 24359, 'courier2': 8685, 'rcomg': 21755, 'melomys': 17545, 'avi': 5387, 'lecturer': 16328, '6603243': 2752, '6621060': 2755, '2476v': 1608, '3001': 1833, 'ianf': 14260, 'feldman': 11801, '1omb6finnm7s': 1154, 'a7d56e52': 3773, 'setext': 23574, 'ascii_827': 5084, 'formatted': 12214, 'monospaced': 18076, 'scip': 23272, 'environs': 11035, 'ction': 8928, '_book': 3641, 'title_': 26179, 'publisher': 21319, 'brunner': 6504, '_shockwave': 3716, 'rider_': 22537, 'ballantine': 5520, '5_______': 2583, '32431': 1907, 'cadigan': 6866, '_mindplayers_': 3694, '_synners_': 3727, 'bantam': 5566, '28254': 1734, 'orson': 19511, '_lost': 3689, 'boys_': 6325, 'denise': 9507, 'danks': 9141, '_frame': 3665, 'grabber_': 13038, 'hrdb': 14093, 'gbp': 12636, '17____': 900, '08786': 266, 'illiterate': 14395, 'journalix': 15486, 'tracks': 26359, 'murderer': 18343, 'dwiggins': 10459, '_interrupt_': 3678, 'frayn': 12326, '_the': 3733, 'men_': 17562, 'fontana': 12150, 'inspired': 14818, 'lunacy': 16885, 'gerrold': 12782, '_when': 3743, 'harlie': 13512, '0_': 291, '88__': 3308, '26465': 1679, '_count': 3652, 'zero_': 28779, 'trilogy': 26539, '_mona': 3696, 'overdrive_': 19635, '28174': 1729, '_burning': 3646, 'chrome_': 7555, 'cyberpunk': 9045, '441': 2249, '08934': 270, '_neuromancer_': 3701, 'espionage': 11185, '_________': 3577, '56959': 2532, 'inventing': 15019, 'genre': 12708, 'hogan': 13925, 'genesis': 12696, 'machine_': 16965, '3__________': 2110, '34756': 1981, '_thrice': 3739, 'time_': 26136, 'tomorrow_': 26246, '79_______': 3098, '27517': 1707, 'amok': 4580, 'stanislaw': 24722, '_his': 3673, 'voice_': 27727, 'decode': 9332, '_halo_': 3670, 'rr': 22822, '_nightflyers_': 3702, '87___________________': 3286, '8125': 3177, '4564': 2280, 'macavoy': 16950, '_tea': 3730, 'dragon_': 10282, 'vonda': 27751, 'mcintyre': 17424, '_steelcollar': 3726, 'worker_': 28398, 'collar': 7911, 'piercy': 20384, '_body': 3640, 'glass_': 12884, 'penguin': 20094, '584pp': 2562, 'piracy': 20429, 'body_of_glass': 6162, 'orthanc': 19514, 'pogue': 20621, '_hard': 3671, 'drive_': 10321, '304pp____________': 1849, '55773': 2514, '884': 3295, 'dies': 9773, 'macworld': 16994, 'brock': 6461, 'powers': 20831, 'variations_': 27410, 'morrow': 18140, 'ponders': 20690, 'edp': 10624, 'preuss': 20988, '_human': 3674, 'error_': 11150, 'nanotech': 18460, 'infects': 14663, 'adolescence': 4113, 'p1_': 19714, '79_______________': 3099, '671': 2772, '55970': 2518, 'runaway': 22909, 'mainframes': 17067, 'wrecks': 28449, 'havoc': 13572, 'engine_': 10944, 'the_difference_engine': 25930, 'egg_': 10678, 'tb048_18': 25675, 'etx': 11245, 'vernor': 27520, 'vinge': 27632, '_across': 3628, 'realtime_': 21826, 'baen': 5482, 'books_____________': 6231, '_tatja': 3729, 'grimm': 13191, 'world_': 28409, 'books__________': 6230, 'witling_': 28308, 'books___________________': 6232, 'millennium': 17786, '_threats': 3738, 'promises_': 21167, 'books_____': 6229, '_true': 3740, 'dangers_': 9135, '87___': 3285, '65363': 2739, '_a': 3627, 'deep_': 9363, '640p': 2700, '6___': 2835, '1528': 721, 'varley': 27417, '_press': 3711, 'enter_': 10992, 'gruesome': 13239, 'yourdon': 28721, '_silent': 3718, 'witness_': 28310, 'crime': 8794, 'caper': 7002, 'gumshoe': 13304, 'intricacies': 14999, 'girlfriend': 12861, 'herbert': 13726, 'franke': 12313, '_das': 3655, 'zentrum': 28775, 'milchstrasse_': 17772, '_letzte': 3688, 'programmierer_': 21138, 'emil': 10839, 'zopfi': 28808, '_computer': 3650, '1001': 312, 'nacht_': 18432, 'limmat': 16559, 'verlag': 27516, '_jede': 3683, 'kostet': 15972, 'franken_': 12314, '930424': 3410, 'breakdown': 6376, 'nominations': 18867, 'nominated': 18866, '1_': 1122, 'one_': 19318, '_fiasco_hmv_solar': 3663, 'unsorted': 27114, 'fifo': 11884, 'sbrock': 23159, 'lacey': 16082, 'johnl': 15440, 'nprdc': 18980, 'thom': 26016, 'gillespie': 12845, 'workman': 28401, 'pw0l': 21409, 'kellys': 15710, 'code3': 7853, 'sorensen': 24317, 'whughes': 28164, 'utsa': 27277, 'north_tj': 18915, 'loreti': 16769, 'maurizio': 17342, 'stephenh': 24842, 'duane': 10388, 'marble': 17189, 'dmarble': 10090, 'matthias': 17333, 'neeracher': 18585, 'neeri': 18586, 'iis': 14380, 'wolfram': 28349, 'ww': 28495, 'mpi': 18213, 'tsavo': 26618, 'hks': 13874, 'setzer': 23585, 'kevles': 15748, 'acf3': 3950, 'nyu': 19066, 'beth': 5866, 'delpapa': 9464, 'rsquires': 22850, 'cyclops': 9055, 'squires': 24620, 'hartman': 13531, 'ulogic': 26851, 'lebeau': 16322, 'plebeau': 20555, 'rounds': 22787, 'ljr': 16650, 'phydeaux': 20339, 'cumc': 8962, 'weingart': 28038, 'chgs02': 7474, 'strath': 24979, 'rowan': 22799, 'fairgrove': 11646, 'rowanf': 22800, 'crc': 8765, 'ricoh': 22531, 'peterc': 20232, 'chubb': 7566, 'x114': 28510, '6982322': 2830, '3982735': 2106, 'gara': 12584, 'pruesse': 21264, 'alpha3': 4478, 'ersys': 11155, 'edmonton': 10619, 'schulz': 23251, 'ahm': 4281, 'spatula': 24420, 'meyer': 17662, 'jacky': 15235, 'mair': 17080, 'vaxb': 27433, 'strathclyde': 24980, 'mengel': 17567, 'dcdmwm': 9240, 'scowen': 23315, 'rss': 22851, 'seg': 23449, 'npl': 18977, 'kevino': 15746, 'clbooks': 7689, 'oster': 19542, 'chavey': 7424, 'darrah': 9165, 'cpac': 8717, 'bruces': 6500, 'yabiku': 28635, 'yabi': 28634, 'adshead': 4127, 'uad1212': 26760, 'dircon': 9848, 'andrews': 4647, '76050': 3031, 'mucho': 18287, '__ian': 3624, 'melb': 17536, 'gordon_sumerling': 12995, 'sumerling': 25229, 'iapmac2': 14264, 'laserwriter': 16193, 'iig': 14376, 'nether': 18639, 'bigwpi': 5929, 'wpi': 28440, 'belog': 5793, 'assent': 5124, 'elapses': 10729, 'cosc': 8629, 'cantua': 6989, 'c533em': 6745, 'cv7': 9026, 'christchurch': 7543, 'huia': 14142, 'colours': 7961, 'colourmap': 7960, 'compressing': 8180, 'triplets': 26550, 'oook': 19343, 'wiml': 28227, 'stein2': 24820, 'fluids': 12087, 'fs7': 12415, 'oan': 19084, 'lungs': 16893, 'fatigue': 11736, 'expel': 11431, 'inhaled': 14733, 'abyss_': 3876, 'viscosity': 27662, 'expelled': 11432, 'breathe': 6388, 'alveoli': 4518, 'alveolus': 4519, 'vessels': 27546, 'dissolve': 9994, 'irritate': 15119, 'healing': 13620, 'wim': 28226, 'cs902060': 8881, 'dias': 9748, 'syracuse': 25515, 'chiefs': 7486, 'ftcollinsco': 12420, '_all_': 3631, 'tribes': 26519, 'budweiser': 6553, 'scn1': 23280, 'abrash': 3847, 'gmontem': 12932, 'montemayor': 18086, 'ghasting': 12806, 'vdoe386': 27448, 'vak12ed': 27358, 'hastings': 13545, 'cosmonautics': 8638, 'ambassadors': 4542, 'printout': 21036, 'inquiry': 14788, '____________________________________________________________': 3598, '72407': 2919, 'stareach': 24741, '6533': 2738, '2304': 1531, '6525': 2735, '23223': 1541, '6529': 2736, 'halfway': 13409, 'occulted': 19161, 'fanatically': 11684, 'scoop': 23286, 'scot': 23305, 'vague': 27355, 'impression': 14505, 'holistic': 13942, 'aproach': 4893, 'robotically': 22658, '_member_': 3693, 'brothers': 6487, 'correspondance': 8613, 'octave': 19185, 'chanute': 7380, 'lillienthal': 16548, 'tunnel': 26669, 'bishop': 6009, 'combs': 7985, 'fbos': 11758, 'learjet': 16311, 'obtainable': 19146, 'wrights': 28454, 'writings': 28465, 'hideously': 13787, 'rytg7': 22962, 'tno': 26202, 'rijt': 22565, 'sqyares': 24624, 'estimation': 11211, 'rewritten': 22480, '2ax': 1797, '2by': 1804, '2cz': 1806, 'datapoints': 9191, 'minimise': 17832, 'estination': 11212, '120311': 475, 'landforms': 16127, 'rushmore': 22928, 'kermit': 15734, 'mundane': 18333, 'odds': 19195, 'orthodox': 19515, 'exobiologists': 11412, 'fossils': 12247, 'searches': 23393, 'shadowed': 23628, 'ruin': 22894, '1r0ms5': 1243, 'k65': 15605, 'ratatosk': 21698, 'uninett': 27021, 'pinky': 20412, 'curtain': 8997, 'isomorphic': 15160, 'perspectives': 20208, 'populous': 20719, 'xxxx': 28620, 'xxxxx': 28621, 'viewpoint': 27607, 'vantage': 27398, 'slope': 24086, '320x240': 1899, 'formulated': 12226, 'packed': 19749, 'dismayed': 9953, 'jaggies': 15245, 'skewed': 24007, 'presents': 20961, 'distort': 10006, 'crosswise': 8831, 'sheared': 23689, 'fills': 11909, 'unfilled': 26989, 'distortions': 10012, 'sticky': 24885, 'mood': 18099, 'simplifies': 23916, 'chairs': 7341, 'torches': 26287, 'dispell': 9964, 'ambiguity': 4545, 'inala': 14530, 'pmolloy': 20599, 'molloy': 18043, 'billin': 5945, 'inspectors': 14815, 'collectors': 7922, 'ascially': 5082, 'gross': 13206, 'income': 14556, 'expenses': 11439, 'owe': 19682, 'ofor': 19242, 'bascially': 5604, 'miners': 17819, 'protectionist': 21230, '1800': 908, 'lands': 16135, 'reform': 22001, 'outdated': 19580, 'blocked': 6090, 'reforms': 22004, '214735': 1429, '22733': 1513, 'carlosn': 7058, 'niederstrasser': 18773, 'nameless': 18452, 'ensign': 10983, 'slater': 24047, 'gota': 13006, 'cameo': 6933, 'st6': 24674, 'ajackson': 4333, 'liverpool': 16643, 'milli': 17790, 'snelson3': 24175, 'uwsuper': 27314, 'twinge': 26715, 'tapani': 25624, 'deshais': 9603, 'mahomes': 17047, 'trombley': 26575, 'guthrie': 13320, 'reboulet': 21848, 'pags': 19773, 'jorgenson': 15472, 'miserable': 17880, 'muffing': 18292, 'grounders': 13214, 'gag': 12534, 'struggled': 25049, 'contrary': 8466, 'vaguely': 27356, 'ivanov': 15213, 'sergey': 23544, 'serge': 23543, 'argus': 4982, 'crt': 8841, 'wingert': 28252, 'bret': 6408, 'c5ubn5': 6826, 'tz': 26747, '134436': 597, '26140': 1666, 'attack': 5261, 'challenger': 7346, 'standdown': 24713, 'inaccurate': 14526, 'painstaking': 19782, 'exemplary': 11388, 'corners': 8585, 'simulations': 23929, 'counted': 8665, 'tender': 25814, 'loving': 16815, 'uncover': 26932, 'hal': 13404, 'kslocs': 16012, 'verified': 27512, '7534': 3015, '8077': 3160, 'enf021': 10935, 'achurist': 3963, '93089': 3411, '204431grv101': 1347, 'callec': 6913, 'dradja': 10273, 'grv101': 13245, 'nervous': 18631, 'beacause': 5695, 'begining': 5751, 'stray': 24990, 'fron': 12390, 'dove': 10238, 'depths': 9555, 'oxegen': 19696, 'mice': 17688, 'gregson': 13168, 'vaux': 27429, 'lung': 16892, 'diaphram': 9747, 'pump': 21350, 'acurist': 4031, 'gsh7w': 13253, 'clas': 7674, 'hennessy': 13715, 'charlottesville': 7411, '22903': 1521, '2475': 1607, '1qt6ooinn7gd': 1233, 'retort': 22413, 'uzi': 27322, 'healthier': 13622, 'relievers': 22123, 'shambles': 23646, 'blowouts': 6110, 'c5sx3y': 6818, '3z9': 2149, '25billion': 1655, 'pc105': 20010, 'cfv': 7316, 'tha': 25915, 'discused': 9930, 'tholen': 26015, 'ifa': 14337, 'descriptive': 9593, 'preprogrammed': 20952, 'reacquire': 21784, 'begins': 5755, 'inactive': 14527, 'lochem': 16695, 'fys': 12510, 'gert': 12784, 'compacte': 8062, 'objecten': 19108, 'wordt': 28388, 'uitgenodigd': 26832, 'voor': 27752, 'het': 13759, 'sterrenkundig': 24865, 'jaar': 15227, '1643': 806, 'zeven': 28783, 'oprichting': 19401, 'universiteit': 27051, 'benoemde': 5824, 'haar': 13363, 'eerste': 10653, 'sterrenkundige': 24866, 'waarnemer': 27829, 'hiermee': 13792, 'ontstond': 19336, 'tweede': 26704, 'universiteitssterrenwacht': 27052, 'ter': 25829, 'wereld': 28063, 'aert': 4182, 'jansz': 15260, 'en': 10877, 'zijn': 28788, 'opvolgers': 19428, 'voerden': 27723, 'utrechtse': 27275, 'sterrenkunde': 24863, 'daaropvolgende': 9085, 'jaren': 15267, 'decennia': 9302, 'eeuwen': 10654, 'naar': 18428, 'voorhoede': 27754, 'astronomisch': 5196, 'onderzoek': 19316, 'dit': 10030, 'geleden': 12666, 'deze': 9710, 'historische': 13854, 'benoeming': 5825, 'plaatsvond': 20482, 'huidige': 14143, 'generatie': 12687, 'sterrenkundigen': 24867, 'studenten': 25064, 'verenigd': 27506, 'sterrekundig': 24861, 'instituut': 14844, 'vieren': 27600, 'hun': 14168, 'oervader': 19205, 'middels': 17734, 'een': 10649, 'breed': 6392, 'scala': 23164, 'aan': 3793, 'feestelijke': 11793, 'activiteiten': 4018, 'zo': 28796, 'scholieren': 23235, 'planetenproject': 20504, 'programmeert': 21134, 'studium': 25069, 'generale': 12677, 'aantal': 3796, 'voordrachten': 27753, 'thema': 25940, 'natalis': 18485, 'astronoom': 5199, 'eredoctoraat': 11118, 'uitgereikt': 26833, 'staat': 24676, 'echter': 10560, 'meer': 17515, 'stapel': 24729, 'natuur': 18503, 'kunnen': 16033, 'sterrenkundesymposium': 24864, 'deelnemen': 9359, 'onderwerpen': 19315, 'opgebouwd': 19381, 'rond': 22731, 'zwaartepunten': 28822, 'zogeheten': 28797, 'eindstadia': 10706, 'evolutie': 11314, 'sterren': 24862, 'bij': 5930, 'samenstelling': 23048, 'programma': 21129, 'getracht': 12793, 'deelnemer': 9360, 'aktueel': 4346, 'mogelijk': 18025, 'beeld': 5737, 'te': 25691, 'geven': 12797, 'zaken': 28752, 'inleidende': 14761, 'lezing': 16445, 'zal': 28753, 'dagvoorzitter': 9100, 'lamers': 16113, 'beknopt': 5769, 'overzicht': 19679, 'zware': 28825, 'waarna': 27828, 'overige': 19641, 'sprekers': 24582, 'lezingen': 16446, 'telkens': 25783, 'uur': 27290, 'nader': 18435, 'specifieke': 24456, 'evolutionaire': 11316, 'eindprodukten': 10705, 'zullen': 28816, 'ingaan': 14720, 'afloop': 4218, 'elke': 10781, 'gelegenheid': 12667, 'tot': 26305, 'stellen': 24831, 'vragen': 27784, 'dagprogramma': 9099, 'afgedrukt': 4213, 'vel': 27477, 'niveau': 18818, 'afgestemd': 4214, 'tweedejaars': 26705, 'ook': 19341, 'andere': 4633, 'belangstellenden': 5770, 'harte': 13529, 'welkom': 28052, 'tijdens': 26123, 'kuijpers': 16027, 'alles': 4434, 'goed': 12957, 'gaat': 12525, 'veertien': 27463, 'radioteleskopen': 21593, 'radiosterrenwacht': 21590, 'westerbork': 28077, 'ingezet': 14724, 'om': 19295, 'directe': 9853, 'verbinding': 27500, 'tussen': 26690, 'heelal': 13651, 'zwakke': 28824, 'radiosignaal': 21586, 'snel': 24173, 'roterende': 22772, 'kosmische': 15969, 'vuurtoren': 27808, 'symposiumzaal': 25495, 'audiovisualiseren': 5299, 'binnenkomende': 5971, 'signalen': 23867, 'elkaar': 10780, 'opvolgende': 19427, 'scherp': 23218, 'gepiekte': 12771, 'pulsen': 21348, 'radiostraling': 21591, 'bespreken': 5860, 'trachten': 26354, 'verklaren': 27515, 'slagen': 24038, 'unieke': 27012, 'valt': 27372, 'haalbaarheid': 13362, 'ervan': 11159, 'vangen': 27390, 'namelijk': 18453, 'zwak': 28823, 'waarnemingsperiode': 27830, 'miljoen': 17781, 'genoeg': 12706, 'energie': 10930, 'opgevangen': 19382, 'watt': 27961, 'seconde': 23413, 'laten': 16206, 'branden': 6359, 'niet': 18779, 'gewacht': 12798, 'hoeven': 13915, 'hedendaagse': 13649, 'technologie': 25726, 'stelt': 24833, 'beluisteren': 5801, 'deelname': 9358, 'kost': 15971, 'exclusief': 11371, 'inclusief': 14553, 'inschrijving': 14794, 'geschiedt': 12786, 'verschuldigde': 27527, 'bedrag': 5731, 'maken': 17090, 'abn': 3834, 'rekening': 22085, 'stichting': 24880, 'jus': 15585, 'gironummer': 12863, '2900': 1761, 'dient': 9771, 'aangegeven': 3795, 'lid': 16497, 'nnv': 18841, 'symposiummap': 25494, 'toegestuurd': 26214, 'maart': 16942, 'vervalt': 27540, 'mogelijkheid': 18026, 'reserveren': 22318, 'vindt': 27629, 'plaats': 20481, 'transitorium': 26423, 'informatie': 14702, 'terecht': 25830, 'sorbonnelaan': 24315, '3584': 2018, '030': 133, '535722': 2482, 'henriks': 13717, 'sron': 24645, 'ontvangst': 19337, 'koffie': 15934, 'dubbelster': 10390, 'radiopulsars': 21584, 'systemen': 25524, 'verbunt': 27504, 'massa': 17280, 'straal': 24958, 'neutronensterren': 18665, 'paradijs': 19850, 'amsterdam': 4596, 'theorie': 25952, 'accretieschijven': 3936, 'drs': 10338, 'oss': 19537, 'hoe': 13914, 'zien': 28787, 'werkelijk': 28067, 'rutten': 22943, 'snelle': 24174, 'fluktuaties': 12090, 'accretie': 3935, 'zwarte': 28826, 'gaten': 12617, 'klis': 15880, 'knippen': 15902, 'plakken': 20493, 'ruimte': 22893, 'tijd': 26122, 'icke': 14293, 'leiden': 16374, 'afsluiting': 4226, 'borrel': 6267, 'fysische': 12511, 'informatica': 14700, '532803': 2476, 'hhgg': 13773, 'hsitn': 14107, 'guraldi': 13313, 'itn': 15199, 'sketch': 24006, 'parameterized': 19863, 't0': 25533, 't1': 25536, 'interval': 14985, 'b1911': 5438, 'cfob': 7314, '0704': 233, 'genome': 12707, 'informatician': 14701, '764': 3035, '8065': 3157, '4133': 2186, 'monk': 18066, '172502': 857, '2301': 1529, 'spacewalk': 24385, 'alexei': 4384, 'leonov': 16399, 'contradict': 8461, 'emerged': 10833, 'fevered': 11845, 'hallucination': 13416, 'zappa': 28758, 'jib': 15380, 'blackshear': 6037, 'dspse': 10364, 'barrios': 5592, 'nrl': 18989, 'prob': 21065, 'tamp': 25599, 'responsable': 22364, 'traj': 26387, 'lidar': 16498, 'passages': 19935, 'belts': 5800, 'piggy': 20390, 'intercept': 14909, 'easied': 10515, 'forgotten': 12204, 'disaster': 9891, 'monitering': 18062, 'wedos': 28014, '6797': 2785, 'erikb': 11132, 'idt': 14332, 'brenn': 6403, 'institue': 14836, 'oooo': 19344, 'telematics': 25765, 'mehrtens_t': 17533, 'msm': 18252, 'cdx': 7226, 'tom_mac': 26237, 'prds': 20875, 'motorola_codex': 18175, '1qkmkiinnep3': 1212, 'drinking': 10319, 'mcelwane': 17408, 'mart': 17255, 'kmart': 15887, 'suptermarket': 25334, 'haunts': 13562, 'hsn': 14108, 'ned': 18572, 'senses': 23504, 'pulse': 21346, 'weapon': 27996, 'c5r5vt': 6810, '941': 3460, 'jmann': 15406, 'vineland': 27631, 'pubs': 21323, 'mann': 17152, '11am': 464, 'massachussetts': 17282, 'marathon': 17187, 'std_disclaimer': 24799, '151729': 712, '8610': 3255, 'volunteering': 27747, 'comrades': 8214, 'spartan': 24416, 'brocku': 6463, 'ciceran': 7589, 'catharines': 7143, 'windows3': 28240, 'launchers_730956689': 16229, '_international': 3677, 'systems_': 25526, 'isakowitz': 15133, 'paylaods': 19995, 'nm': 18833, 'reliablity': 22116, 'familiy': 11678, 'applicable': 4844, 'families': 11677, 'asterisk': 5168, 'ar40': 4912, '65m': 2748, 'ar42p': 4914, '67m': 2786, '730': 2932, 'ar44p': 4917, '70m': 2885, 'ar42l': 4913, '90m': 3362, '050': 181, 'ar44lp': 4916, '95m': 3498, 'ar44l': 4915, '115m': 444, 'ar5': 4918, '105m': 381, '300nm': 1837, '0w': 298, '820': 3187, '45m': 2286, 'vandeberg': 27385, '6w': 2854, '395': 2099, '75m': 3027, 'iia': 14370, '810': 3171, '85m': 3250, 'iias': 14371, '390': 2091, '490': 2351, '6925': 2818, '7925': 3085, '045': 175, '830': 3204, 'baikonur': 5493, '110m': 413, 'tangeshima': 25612, 'kosmos': 15970, '371': 2052, 'plestek': 20562, '1350': 603, '2300': 1528, 'kapustin': 15640, 'yar': 28655, 'jiquan': 15390, '1d': 1132, '10m': 404, 'xichang': 28559, '590': 2571, 'taiyuan': 25572, '20m': 1379, '2e': 1808, '40m': 2176, '33m': 1959, '3a': 2111, 'peg': 20070, 'l1011': 16052, 'taur': 25664, '15m': 766, 'baikonour': 5492, 'ff': 11850, '12m': 559, 'enhanced': 10957, '372': 2055, 'shavit': 23682, 'palmachim': 19812, '22m': 1525, '248m': 1612, 'fy88': 12508, 'slv': 24111, '400km': 2156, '900km': 3348, 'aslv': 5107, 'pslv': 21282, '990': 3542, 'gslv': 13255, '905': 3354, '43m': 2244, '140m': 632, '154m': 738, '227m': 1514, 'srmu': 24642, '1401': 628, '650km': 2732, '14m': 691, '944': 3466, '1500kg': 697, '3300': 1933, 'eliptical': 10776, '740': 2986, '090': 272, 'idoy': 14329, 'crux1': 8862, 'scoresheets': 23298, 'hofstadter': 13923, 'reminder_734971619': 22159, 'spool': 24551, 'faq1': 11694, 'froument': 12398, 'lifl': 16511, 'froumentin': 12399, 'laboratoire': 16074, 'fondamentale': 12145, 'lille': 16546, 'marlow': 17245, 'conic': 8313, '8336': 3209, 'tigran': 26120, 'petrossian': 20240, 'fascinated': 11714, 'albums': 4367, 'inquiring': 14787, 'braking': 6354, '_______________________________________________________________________': 3605, 'c13': 6706, 'p230': 19718, '914': 3378, '1673': 823, 'poughkeepsie': 20809, '12602': 534, 'davewood': 9207, 'rex': 22481, 'shaky': 23643, 'dreaded': 10300, 'picthers': 20375, 'wont': 28364, 'lightly': 16523, 'increasingly': 14580, 'rape': 21671, 'jerks': 15338, 'spelling': 24489, 'sensational': 23500, 'raped': 21672, 'throat': 26058, 'degrade': 9417, 'khansen': 15772, 'x239': 28518, 'twin': 26714, 'univerity': 27043, '12718': 540, 'news1': 18699, 'peachnet': 20046, 'concert': 8236, 'unspecified': 27115, '7224': 2915, 'basketball': 5637, 'guides': 13289, 'izaak': 15223, 'kolthoff': 15945, 'mpw': 18216, 'upfront': 27155, '014305': 72, '28536': 1740, 'excerpt': 11357, 'talents': 25586, 'wsf': 28477, 'palomar': 19817, 'notebook': 18942, '91301': 3375, 'anthology': 4746, 'nonfiction': 18877, 'staehle': 24686, 'brin': 6436, 'mallove': 17106, 'v36': 27333, 'v37': 27334, '491': 2352, 'v38': 27335, 'reprints': 22267, 'drexler': 10310, '1418': 638, 'boats': 6147, 'vibrations': 27573, 'atom': 5247, 'piccolo': 20362, 'meredith': 17593, 'willson': 28221, '1948': 1010, 'savoy': 23144, 'lethbridge': 16414, 'amen': 4550, 'timestamps': 26148, 'delays': 9436, '18th': 963, 'boating': 6146, 'linescores': 16582, 'excluded': 11369, '_____________________________________________________________________________': 3610, 'sigless': 23862, 'bible': 5900, 'robbins': 22647, 'io20456': 15057, '153407': 728, '19101': 975, 'penobscot': 20102, '214406': 1424, '29128': 1768, 'shine': 23732, '1raejd': 1271, 'bf4': 5885, 'hypothesis': 14240, 'shear': 23688, 'movements': 18193, 'shocked': 23754, 'upa': 27145, 'harmonic': 13515, 'resonance': 22344, 'struts': 25052, 'ali': 4404, 'abutaha': 3872, 'slightest': 24070, 'shred': 23814, 'windshear': 28244, 'puffs': 21331, 'smoke': 24138, 'wallacen': 27872, 'nathan': 18486, 'beethoven': 5743, '61912': 2654, 'academically': 3883, 'alphaean': 4484, 'proverb': 21249, 'invoked': 15047, 'relieves': 22124, 'rubery': 22874, 'aitc': 4330, 'tasc': 25643, 'utilies': 27257, 'regis': 22036, 'tektonic': 25751, 'esacpe': 11163, 'goto': 13009, 'meta': 17624, 'ppt': 20850, 'alboum': 4365, 'uva': 27294, 'shmoozing': 23750, 'chroma': 7554, '142747': 646, 'c5sb3p': 6814, 'ib9': 14271, 'physician': 20345, 'airs': 4326, 'rigth': 22562, 'credits': 8784, 'astra': 5176, 'ardua': 4961, 'nostra': 18933, 's127': 22966, 'uib': 26826, 'torgeir': 26289, 'veimo': 27474, 'institutt': 14843, 'informatikk': 14704, '1r3ih5innldi': 1246, 'irau40': 15089, 'bouknight': 6294, 'blinn': 6078, 'whitted': 28148, 'bergen': 5836, 'gona': 12974, 'freak': 12329, 'dxf12': 10465, 'fowler': 12268, 'atas': 5212, '1pqf84': 1168, 'caf': 6872, 'slc12': 24051, 'redding': 21933, 'battled': 5661, 'chet': 7470, 'dramatic': 10285, 'challenging': 7348, 'bunning': 6614, 'preferrably': 20928, 'ashburn': 5091, 'singled': 23946, 'kiki': 15800, 'bullet': 6589, 'christobel': 7550, 'torrienti': 26296, 'refusing': 22018, 'klein': 15875, 'lashed': 16194, 'papa': 19836, 'nellie': 18615, 'grounded': 13212, 'platoons': 20527, 'spells': 24490, 'slumped': 24108, 'bunted': 6618, 'luckily': 16867, 'parrish': 19892, 'sutter': 25401, 'bowa': 6311, 'delahanty': 9429, 'desiring': 9619, 'trillo': 26538, 'speedy': 24484, 'righthander': 22554, 'madlock': 17004, 'worn': 28417, 'phillie': 20278, 'triumph': 26562, 'grover': 13227, 'waddell': 27834, 'gaining': 12542, 'stood': 24934, 'conclude': 8241, 'tudor': 26653, 'greats': 13145, 'wacky': 27833, 'triumphed': 26564, 'outdueled': 19583, 'dizzy': 10060, 'refused': 22016, 'remarked': 22149, 'thirds': 26005, 'bucs': 6544, 'gil': 12839, 'hodges': 13912, 'rube': 22872, 'defeated': 9371, 'candelaria': 6966, 'outshone': 19611, 'relivers': 22130, 'blyleven': 6127, 'dwight': 10460, 'possessed': 20768, 'fantastic': 11690, 'staub': 24792, 'mookie': 18100, 'mazilli': 17371, 'countered': 8669, 'tekulve': 25754, 'groundout': 13215, 'slid': 24062, 'tug': 26658, 'relieved': 22121, 'improbable': 14508, 'boswaukta': 6279, 'tire': 26167, 'lew': 16434, 'burdette': 6625, 'reuschel': 22436, 'faced': 11595, 'niekro': 18776, 'slugfest': 24102, 'cake': 6881, 'seesaw': 23448, 'lombardi': 16723, 'mackey': 16978, 'vida': 27586, 'retiring': 22412, 'faltered': 11669, 'mcginnity': 17413, 'hoyt': 14069, 'wilhelm': 28200, 'homered': 13965, 'comeback': 7988, 'ewell': 11327, 'blackwell': 6038, 'straining': 24964, 'narleski': 18469, 'candiotti': 6970, 'thirteenth': 26007, 'departed': 9526, 'browning': 6492, 'thurm': 26084, 'gamed': 12568, 'denied': 9505, 'emotional': 10852, 'brookangeles': 6475, 'plains': 20492, 'drysdale': 10352, 'winked': 28262, 'decked': 9321, 'furillo': 12476, 'nastness': 18483, 'alleys': 4437, 'tantrum': 25621, 'revitalize': 22464, 'chopping': 7530, 'wynn': 28505, 'cruz': 8863, 'mess': 17616, 'responded': 22359, 'erase': 11110, 'deficit': 9385, 'threatened': 26048, 'alston': 4490, 'pee': 20061, 'wee': 28015, 'reese': 21973, 'barehanded': 5574, 'shallow': 23645, 'valenzuela': 27363, 'thirteen': 26006, 'cey': 7306, 'maury': 17343, 'wills': 28220, 'demons': 9487, 'sunk': 25258, 'basestealing': 5626, 'stros': 25039, 'swiped': 25460, 'oaksaselphia': 19083, 'mommys': 18051, 'daddys': 9090, 'relatives': 22096, 'poem': 20619, '16598': 816, 'jena': 15326, 'ial3': 14255, 'visitors': 27672, 'mcgv': 17418, 'eindhoven': 10704, 'annoying': 4714, 'decodes': 9336, 'recopies': 21904, 'recopy': 21905, 'enabled': 10879, 'repeated': 22219, 'realizes': 21821, 'finishes': 11943, 'repetition': 22224, '1200x900': 473, 'floppies': 12066, 'corruptimg': 8622, 'choosing': 7526, 'insists': 14811, 'drown': 10337, 'tears': 25708, 'strife': 25014, 'script': 23339, 'tele': 25756, 'advtech': 4163, 'uswest': 27247, 'novak': 18966, '203546': 1340, '14540': 669, 'jaynes': 15283, 'ban': 5544, 'dorsai': 10209, 'captains': 7019, 'diverse': 10042, 'monicker': 18061, 'cowboys': 8709, 'spreas': 24581, 'aby': 3873, 'campaigns': 6942, 'caray': 7027, 'dupe': 10425, 'arrogant': 5043, 'adapt': 4047, 'idolize': 14328, 'egos': 10682, 'jpegs': 15507, 'agonizingly': 4265, 'cvadrmaz': 9027, 'acvax2': 4033, 'degroff': 9420, '21012d': 1389, 'armoring': 5010, 'sulfuric': 25224, 'nitric': 18814, 'acids': 3965, 'oxides': 19699, 'notion': 18959, 'ices': 14288, 'extream': 11541, 'unlikly': 27067, 'worthy': 28429, 'unclear': 26919, 'regress': 22044, 'hardliners': 13503, 'cetera': 7303, 'sycophants': 25482, 'beleivin': 5774, 'sorta': 24324, 'communist': 8056, 'hardliner': 13502, 'defunded': 9412, 'ghetto': 12810, 'ose': 19530, 'hes': 13753, 'stefan': 24816, 'hermansson': 13735, 'pc9_b109': 20015, '210712': 1396, 'hassles': 13544, 'poses': 20749, '10km': 402, 'immensely': 14454, 'sagadollars': 23007, 'beelyuns': 5738, 'dominates': 10174, 'kiernan': 15797, 'ka9q': 15612, '123832': 510, '23894': 1568, 'akiernan': 4341, 'dr_bobo': 10270, 'ponton': 20695, 'pruessmann': 21265, 'hamburg': 13424, 'intern': 14944, 'crtc': 8842, 'addison': 4063, 'wesley': 28073, 'insemination': 14798, 'rigidly': 22559, '220493104229': 1457, 'charging': 7401, 'chickened': 7482, 'prototypes': 21243, 'shipped': 23740, 'myths': 18404, 'paranoid': 19868, 'doink': 10157, 'b23b': 5440, 'intergraph': 14932, 'c5ros0': 6813, 'uy': 27321, '1quule': 1237, '5re': 2602, 'invitation': 15041, 'retyped': 22429, 'typo': 26744, 'regroup': 22047, 'flattering': 12021, 'invitations': 15042, 'committment': 8039, 'influential': 14689, 'conquest': 8329, 'engfer': 10940, '101747': 342, '22169': 1472, 'ugle': 26815, 'wynblatt': 28504, 'sbgrad5': 23157, 'stony': 24933, '795': 3090, '2bcc3ee1': 1801, 'ohstpy': 19250, 'mps': 18215, 'letizia': 16415, 'listened': 16619, 'jl': 15401, 'wabc': 27831, 'kaminicki': 15631, 'cheered': 7442, 'admired': 4103, 'seinfeld': 23457, '1psmbr': 1189, 'engimatic': 10941, 'deniability': 9503, 'fooling': 12159, 'inference': 14664, 'baseballistics': 5611, 'bolton': 6197, 'grandslam': 13081, 'ma_ind25': 16941, 'blurt': 6125, 'mordaci': 18117, 'nickname': 18764, 'catholic': 7145, 'nawlins': 18518, 'mordecai': 18118, 'protestant': 21233, 'adoptive': 4116, 'rah13': 21603, 'cunixb': 8964, 'holak': 13932, 'pman': 20594, 'filter': 11917, 'emm': 10846, 'tamarack202': 25596, 'mcconnell': 17393, 'interleaf': 14937, 'ileaf': 14389, 'frosty': 12396, 'statistic': 24782, 'improperly': 14509, 'leverage': 16428, 'shortcoming': 23775, 'overlook': 19647, 'devon': 9699, 'grapple': 13112, 'stow': 24956, 'cargo': 7051, 'unstow': 27118, 'repair': 22214, 'gyros': 13346, 'usingthe': 27228, 'reboost': 21846, 'spacewalks': 24387, 'pallet': 19807, 'weber': 28008, 'sipi': 23956, 'mitsubishi': 17926, 'p78u': 19726, 'bafta': 5487, 'cats': 7146, 'shari': 23666, 'santa': 23081, 'cheesy': 7446, '171148': 850, '6367': 2687, 'centauri': 7254, 'timed': 26138, 'episodes': 11066, 'stores': 24949, 'growly': 13231, 'anarchy': 4621, '024222': 122, '11181': 418, 'newshub': 18709, 'yah': 28637, 'henke': 13712, 'lavishing': 16239, 'bm562': 6128, 'trionfo': 26544, 'candlestick': 6973, 'imus': 14520, '1psbdn': 1176, 'marlboro': 17239, 'gondolin': 12976, '155118': 741, '5779': 2549, 'nicholson': 18759, 'cosby': 8628, 'entertainers': 10999, 'krattige': 15989, 'krattiger': 15990, 'slated': 24046, 'appearences': 4830, 'burkett': 6635, 'trevor': 26503, 'disables': 9870, '1psfan': 1182, 'pj0': 20468, 'arrives': 5040, 'narrow': 18471, 'gaspra': 12609, 'restructuring': 22390, 'imconv': 14439, 'ederveen': 10599, 'ptt': 21302, '068': 226, 'longitude': 16732, 'versamap': 27525, 'culberson': 8952, 'derk': 9570, '3323202': 1938, 'hlsdnl5': 13881, '3326477': 1940, 'x400': 28524, '400net': 2157, 'dnm': 10111, 'oracle': 19431, 'adabas': 4040, 'sybase': 25479, 'novell': 18967, 'lans': 16154, 'willett': 28206, 'greter': 13173, 'jog': 15432, 'shareholder': 23664, 'mumble': 18327, 'competion': 8121, 'mamatha': 17112, 'devineni': 9696, 'ratnam': 21709, 'mr47': 18219, 'otto': 19562, 'debacle': 9282, 'stinker': 24900, 'excruciatingly': 11373, 'prolonged': 21161, 'merced': 17583, 'decently': 9304, 'flukey': 12089, 'gloomy': 12910, 'desrved': 9630, 'instant': 14830, 'doughty': 10232, 'cooke': 8526, 'yikes': 28695, 'lonnie': 16735, 'didnt': 9765, 'lonnnie': 16736, 'asset': 5132, 'acquires': 3985, 'weirdo': 28040, 'sauer': 23134, 'forceful': 12177, 'pleasing': 20553, 'danforth': 9131, 'preparing': 20945, 'tampa': 25600, 'ironically': 15108, 'accomplishment': 3925, 'unavoidable': 26899, 'accomplishments': 3926, 'drafting': 10277, 'compensatory': 8114, 'rant': 21666, 'appealed': 4824, 'verdict': 27505, 'doesnt': 10147, 'willingness': 28216, 'impersonate': 14475, 'mccarthy': 17389, 'khun': 15779, 'fung': 12471, 'bresenhams': 6407, 'graeme': 13060, 'labtam': 16079, '025240': 127, '8884': 3303, '044946': 174, '12144': 489, 'springer': 24584, 'heidelberg': 13656, 'extrapolate': 11537, 'slices': 24060, 'wu': 28485, 'rokne': 22707, '331': 1935, 'ellipses': 10787, 'fungdraw': 12472, 'tina': 26157, 'nicholl': 18756, 'dewdney': 9705, 'middlesex': 17737, 'n6a': 18423, '5b7': 2588, '661': 2753, '6889': 2807, '3515': 1996, '172834io21087': 858, 'sing': 23942, 'kahn': 15615, '124526': 518, '10219': 348, '950k': 3481, 'chan': 7363, 'inquisitively': 14789, 'condemned': 8248, 'betty': 5872, 'standout': 24717, 'ddd': 9254, 'derrick': 9573, 'lone': 16725, 'microlight': 17711, 'harnessing': 13519, 'consumption': 8405, 'deploying': 9542, 'aluminized': 4514, 'fabric': 11590, 'daunting': 9203, 'microelectronics': 17705, 'metres': 17652, 'exerts': 11393, 'etched': 11224, 'amor': 4583, 'steered': 24814, 'unobserved': 27078, 'angling': 4663, 'craters': 8754, 'imaged': 14417, 'impacting': 14466, 'rebound': 21849, 'edged': 10601, 'biopsy': 5990, 'm2': 16933, 'ensures': 10988, 'reradiated': 22297, 'efectively': 10655, 'deg': 9413, 'insulating': 14857, 'container': 8413, 'colin': 7900, '0865': 264, '200447': 1305, 'oxford': 19697, 'designs': 9614, 'ox1': 19694, '4dh': 2374, '734984753': 2964, 'followon': 12138, 'favorable': 11743, 'insiders': 14804, 'mccool': 17394, 'imagicians': 14430, 'artware': 5067, '00pm': 59, '39a': 2108, 'crescent': 8786, 'outlined': 19597, 'confronting': 8295, 'startup': 24760, 'graciously': 13047, 'myck': 18382, 'kupka': 16035, 'stereoscope': 24852, 'upstairs': 27176, 'birthday': 6004, 'nominees': 18868, 'election': 10738, '465': 2300, '0943': 285, '0729': 238, 'coachhouse': 7829, 'wellesley': 28054, 'mediaeval': 17502, 'membership': 17551, '8072': 3159, '6027': 2618, '1654': 814, 'biosphere': 5993, '19930419': 1077, '062802': 217, '166': 817, '1q77ku': 1199, 'av6': 5369, 'sbv': 23161, 'scoriating': 23300, 'releasing': 22108, 'kiddo': 15789, 'scoriates': 23299, 'nobel': 18845, 'deemed': 9361, 'confidential': 8275, 'karamankars': 15641, 'moeny': 18022, 'bounds': 6306, 'keepers': 15696, 'shove': 23799, 'pointy': 20632, 'conically': 8315, 'posterior': 20785, 'orifices': 19486, 'sa': 22974, 'fehrabend': 11795, '162501': 794, 'delving': 9474, 'granting': 13088, 'fait': 11651, 'accompli': 3921, '214421': 1425, 'groups_733694492': 13223, 'groups_730956605': 13222, 'aia': 4288, 'reams': 21829, 'reputations': 22285, '2100': 1386, 'journals': 15487, '_the_': 3734, 'lobbies': 16679, 'liaison': 16465, 'clearinghouse': 7703, 'inquiries': 14786, 'partisan': 19919, 'yr': 28728, 'memberships': 17552, 'promenade': 21162, '20077': 1314, '0820': 254, '7400': 2987, 'develops': 9688, 'supplies': 25315, 'quicktrak': 21517, '20044': 1304, '589': 2567, '6062': 2625, 'asera': 5089, 'collaborators': 7908, 'microsatellites': 17718, 'a100': 3757, 'subscriptions': 25132, 'a25': 3767, 'a50': 3771, 'bis': 6005, '_spaceflight_': 3722, 'bis_': 6006, '_daedalus_': 3654, 'lambeth': 16111, 'sw8': 25418, '1sz': 1279, 'dues': 10400, 'promoting': 21173, 'peaceful': 20044, 'disciplinary': 9904, '02139': 109, '7666': 3037, 'carolyn': 7068, 'henson': 13720, 'colonization': 7944, '1970s': 1041, 'merged': 17597, 'forming': 12219, 'nsc': 18995, 'comprised': 8186, 'conduit': 8265, 'definitive': 9399, 'distinguished': 10005, '_ad': 3629, 'astra_': 5177, 'glossy': 12913, 'spacecause': 24367, 'spacepac': 24382, 'lobbying': 16681, '20003': 1289, '2140': 1421, '1900': 966, 'sagan': 23008, 'advocacy': 4160, '_planetary': 3710, 'report_': 22244, 'financially': 11926, 'amended': 4552, 'catalina': 7123, '91106': 3371, 'gerard': 12775, 'physicist': 20346, 'presidency': 20965, '_ssi': 3725, 'update_': 27150, 'bimonthly': 5956, 'conducts': 8264, 'simulants': 23924, 'associates': 5150, 'rosedale': 22750, '08540': 260, 'nationally': 18491, 'scholarship': 23234, 'contests': 8431, 'w20': 27816, '445': 2257, '8897': 3306, 'odyssey': 19200, 'discount': 9912, 'handbook_': 13443, 'interacting': 14902, '3435': 1973, 'monica': 18060, '90405': 3352, 'researches': 22310, 'volunteers': 27748, 'ussf': 27238, 'founder': 12260, '1838': 929, '80901': 3165, '53261': 2475, '80332': 3146, '3261': 1911, 'esapublications': 11164, 'wonders': 28361, '61054': 2639, '7852': 3069, 'spotty': 24570, 'springfield': 24585, '22159': 1471, '0500': 182, '7330': 2938, 'discounts': 9913, '6352': 2685, 'mill': 17785, '22152': 1470, '0020': 32, '859': 3249, 'willamette': 28203, '10460': 371, '97440': 3522, '2460': 1602, '08080': 250, '7811': 3065, 'montrose': 18093, 'potomac': 20807, 'mc': 17384, '20854': 1369, '1395': 621, '497': 2361, 'inclusion': 14554, 'fcs280s': 11760, 'ncifcrf': 18532, 'copier': 8551, 'cancer': 6965, 'clc': 7690, 'ipu': 15079, 'intelligent': 14883, 'scsi': 23353, 'lp': 16827, 'printouts': 21037, 'variaty': 27411, 'halftone': 13408, 'warranty': 27924, 'assurance': 5162, 'limiting': 16557, 'interpretor': 14970, '846': 3229, '5798': 2552, '173500': 866, '26383': 1675, 'groceries': 13203, 'bitching': 6013, 'tab': 25546, 'gms': 12934, 'craige': 8737, 'eid': 10697, 'surly': 25350, 'mystique': 18401, 'bathrooms': 5649, 'blows': 6111, 'homerun': 13969, 'wooden': 28366, 'bottome': 6289, 'fashioned': 11719, 'businessman': 6666, 'safeway': 23003, 'checkers': 7436, 'dispenser': 9965, 'jammed': 15252, 'attendant': 5272, 'apoligized': 4809, 'cleaned': 7693, 'concession': 8238, 'hpsad': 14088, 'joth': 15481, 'tham': 25921, 'nets': 18647, 'wwiv': 28500, 'wwivnet': 28501, 'subscribed': 25129, 'c5jm0m': 6773, '6jw': 2846, 'dependant': 9532, 'spork': 24555, 'izzo': 15224, '734911319': 2960, 'moose': 18110, 'depresses': 9550, 'gubizca': 13276, 'gardner': 12591, 'acquisitions': 3988, 'joining': 15450, 'sucks': 25184, 'collapsed': 7910, 'mendoza': 17566, '90s': 3364, 'comprise': 8185, 'partly': 19921, 'unprofessional': 27087, 'duplicate': 10426, 'surpass': 25351, 'lefties': 16346, 'dominating': 10175, 'cleanup': 7699, 'wrecking': 28448, 'ugh': 26813, '20s': 1382, '30s': 1866, 'scooter': 23289, 'cow': 8706, 'scratch': 23326, 'sims': 23920, 'slot': 24089, 'dougb': 10229, '234031': 1553, '4950': 2357, 'bohnert': 6175, '576': 2547, '8207': 3188, '011720': 68, '28958': 1757, 'boisvert': 6184, 'photostyler': 20329, '486dx': 2342, 'math_730956451': 17307, 'bate': 5643, '455pp': 2277, '60061': 2610, 'handbooks': 13444, 'dating': 9198, 'govt': 13024, 'minovitch': 17850, 'attractions_': 5286, '_utilizing': 3741, 'perubations': 20217, 'ecliptic': 10570, 'trajectories_': 26389, '849': 3232, 'realy': 21828, '_short_': 3717, 'practitioner': 20860, 'taff': 25559, 'determinations': 9659, 'flandern': 12011, 'pullinen': 21338, '_low': 3691, 'formulae': 12223, 'positions_': 20759, 'supp': 25311, '2049': 1354, 'bretagnon': 6409, 'danby': 9124, 'calculators': 6894, 'longitudes': 16733, 'diskette': 9947, 'duffett': 10402, 'amateurs': 4534, 'microcomputer': 17700, 'tattersfield': 25658, 'thornes': 26025, 'amherst': 4560, '14226': 642, '0605': 209, 'diameters': 9743, 'astrogeologist': 5183, 'proposes': 21211, 'cratering': 8753, 'alluvium': 4454, 'jangle': 15259, '074': 241, 'empirically': 10858, 'kinetic': 15829, 'cgs': 7326, 'barringer': 5591, 'ergs': 11120, 'hiroshima': 13840, '_physics': 3709, 'today_': 26211, 'layman': 16255, 'bombardment': 6203, '_ann': 3635, 'rev': 22440, 'comprehensive': 8174, 'wolfe': 28347, '_asteroids_': 3637, '_introduction': 3679, 'frontier_': 12394, 'willman': 28217, 'trignometry': 26535, 'encyclopaedia': 10908, 'brittanica': 6447, '_graphics': 3669, 'gems_': 12672, 'exposition': 11499, 'suitability': 25216, 'trig': 26532, 'digitally': 9804, 'plotted': 20570, 'cared': 7041, 'ellipsoidal': 10788, 'voxland': 27770, '1453': 668, '22092': 1462, 'timely': 26141, 'topos': 26281, '5022': 2414, '9769': 3527, '119th': 463, 'broomfield': 6482, '80021': 3129, 'reddy': 21935, 'v12': 27325, 'cartog': 7085, 'coastline': 7835, 'genie': 12702, 'bbss': 5683, '_spherical': 3724, 'astronomy_': 5198, '1931': 999, 'compendium': 8111, 'woolard': 28376, 'clemence': 7708, 'hockney': 13910, 'eastwood': 10528, 'hilger': 13813, 'greengard': 13157, 'breakthrough': 6381, 'parallelized': 19859, 'rokhlin': 22706, 'msee': 18244, 'feng': 11816, 'ailab': 4297, '995': 3547, 'binney': 5972, 'tremaine': 26492, 'aarseth': 3805, 'hierarchical': 13790, 'tree': 26488, 'appel': 4833, 'siam': 23834, 'barnes': 5582, 'v324': 27331, '6096': 2632, 'hernquist': 13741, 'ephmeris': 11061, 'possessing': 20770, 'ascension': 5078, 'declination': 9326, 'sudbury': 25185, 'keyboard': 15752, '053333': 193, '15696': 748, 'helll': 13684, 'jmhodapp': 15409, 'aplcomm': 4803, 'jhuapl': 15372, 'peon': 20110, '173428': 865, '12056': 478, 'hodapp': 13911, '1930': 998, 'consistantly': 8352, 'probe_730956556': 21072, 'klaes': 15871, 'verga': 27507, 'formatting': 12215, 'wiener': 28185, 'weemba': 28024, 'libra': 16477, 'wistar': 28298, 'sakigake': 23020, 'yoshiro': 28711, 'yamada': 28643, 'yscvax': 28730, 'ysc': 28729, 'mariner': 17218, 'promptly': 21179, 'transcription': 26405, 'indicating': 14607, 'smoothed': 24142, 'eject': 10719, 'cratered': 8752, 'thinner': 25999, '1967': 1036, 'reconfirmed': 21898, 'autopilot': 5361, 'revealing': 22444, 'volcanoes': 27737, 'flowed': 12074, '1974': 1045, 'venusian': 27494, 'unseen': 27107, 'circling': 7612, 'ranger': 21654, 'decayed': 9298, 'enroute': 10981, 'drifted': 10314, 'surveyor': 25369, 'landers': 16126, 'sinking': 23952, 'feared': 11765, 'layers': 16253, 'proving': 21256, 'unsuccessful': 27119, 'scooping': 23288, 'explored': 11482, 'tycho': 26733, 'slopes': 24087, 'chryse': 7561, 'planitia': 20507, 'panoramas': 19832, 'pinkish': 20410, 'pink': 20408, 'reddish': 21934, 'boulders': 6296, 'functioning': 12460, 'hoped': 14007, 'errant': 11147, 'accidentally': 3909, 'regained': 22020, 'entrusted': 11020, 'safekeeping': 22999, 'plaque': 20515, 'expedition': 11429, 'utopia': 27272, 'seisometer': 23461, 'recording': 21910, 'marsquake': 17254, 'leaks': 16305, '2025': 1332, 'alignment': 4415, 'aurorae': 5318, 'sulfurous': 25225, 'magnetosphere': 17031, 'ringlets': 22574, 'shepherd': 23713, 'tame': 25597, 'variance': 27405, 'smoggy': 24137, 'startling': 24758, 'stranger': 24968, 'braids': 6348, 'kinks': 15839, 'spokes': 24542, 'heroic': 13743, 'monochromatic': 18070, 'oddity': 19192, 'icy': 14305, 'patchwork': 19959, 'terrains': 25845, 'arcs': 4957, 'canteloupe': 6986, 'geysers': 12800, '38k': 2089, 'voyagers': 27773, 'journeying': 15490, 'heliopause': 13678, 'zond': 28799, 'circumlunar': 7622, 'lunokhod': 16895, 'acknowledged': 3971, 'transmissions': 26433, '2003': 1300, 't5': 25541, 'kagoshima': 15613, 'approached': 4870, 'instru': 14845, 'ments': 17578, 'swingby': 25457, '23h08m47s': 1574, 'jst': 15539, '9h': 3558, 'geocentric': 12718, '997': 3548, 'geotail': 12770, 'muses': 18351, 'renamed': 22175, 'looped': 16749, 'lunary': 16887, 'midget': 17740, 'unites': 27037, 'transistor': 26419, 'optically': 19407, 'f3': 11576, 'kiso': 15847, '3n': 2140, 'apoapsis': 4805, 'periapsis': 20149, 'categorized': 7137, 'overviews': 19675, 'periodical': 20162, 'pertinent': 20213, 'bookstore': 6233, 'beatty': 5713, 'merton': 17610, 'davies': 9214, 'gatland': 12624, 'greeley': 13152, 'koppes': 15960, 'littman': 16637, 'oran': 19432, 'nicks': 18766, 'travelers': 26464, 'oberg': 19094, 'disasters': 9892, 'irl': 15104, 'newlan': 18692, 'margaret': 17202, 'poynter': 20833, 'intelligences': 14882, 'newsweek': 18718, 'unfolding': 26990, 'climatic': 7729, 'spreads': 24579, 'betting': 5871, 'ajs8': 4337, 'schorr': 23240, 'clipart': 7736, 'ophthalmology': 19383, 'eyeglasses': 11555, 'lenses': 16394, 'tiems': 26107, 'whoops': 28160, '173252': 863, '7393': 2983, 'madler': 17003, 'chiefly': 7485, 'buford': 6565, 'spunk': 24596, 'kosher': 15968, 'jplee': 15522, 'cymbal': 9062, 'cjkuo': 7650, 'symantec': 25488, 'kuo': 16034, 'quoth': 21534, 'impose': 14496, 'suspension': 25385, 'jlee': 15402, 'busfac': 6661, 'tongue': 26252, 'saddest': 22994, 'greenleaf': 13159, 'pessimists': 20225, 'encountering': 10903, 'unforeseen': 26991, 'abysmal': 3874, 'undisputed': 26978, 'stanton': 24728, 'falter': 11668, 'lousey': 16800, 'troubling': 26585, 'shakiness': 23641, 'taubensee': 25661, 'cedeno': 7235, 'loopiest': 16752, 'bargain': 5576, 'aspromonte': 5112, 'dierker': 9772, 'bass': 5638, 'jetson': 15350, 'rodgers': 22689, 'hasnt': 13541, 'colt': 7963, 'g_waugaman': 12522, 'nac': 18430, 'waugaman': 27964, '193907': 1006, '24177': 1588, 'rested': 22375, 'littleton': 16636, 'jbragg': 15294, 'bragg': 6346, 'newfoundland': 18687, 'actor': 4021, 'rebel': 21845, 'nmsca': 18834, 'confuse': 8296, 'headspace': 13615, 'softworks': 24234, '486clone': 2341, 'underway': 26971, 'shortage': 23774, '13622': 608, 'north13': 18913, '680x1024': 2797, 'w1': 27814, 'w4': 27818, 'anvance': 4765, 'spaecraft': 24390, 'c5jkik': 6771, '1zf': 1283, 'unreliable': 27100, 'coaching': 7830, 'trust': 26604, 'exacerbated': 11330, 'closing': 7764, 'torque': 26293, 'reinjure': 22071, 'larussa': 16186, 'objected': 19107, 'analogies': 4608, 'rechenzentrum': 21869, 'gesellschaft': 12787, 'fig': 11888, 'islanddraw': 15146, 'erasing': 11113, 'zirkel': 28795, 'rjh': 22613, 'holt': 13958, 'mssc5k4w5': 18263, 'gqe': 13032, 'tonyo': 26260, 'pendragon': 20090, 'cna': 7813, 'ozrelic': 19708, 'redmond': 21947, 'clues': 7785, 'faxes': 11753, 'secretary': 23418, 'unscrambled': 27105, 'nb': 18521, 'mssc52qmx': 18259, 'jumped': 15573, 'jeopardy': 15333, 'duh': 10405, 'methinks': 17647, 'promotion': 21174, 'playoff': 20543, 'demotion': 9499, 'drunen': 10343, 'reloadable': 22134, 'ldrs': 16286, 'fireballs': 11957, 'assoc': 5147, 'amatuer': 4535, 'peakups': 20052, 'capricornus': 7014, 'radiative': 21571, 'arrangements': 5032, 'borneo': 6266, '1r4gmginn8fm': 1253, 'zephyr': 28776, 'cri': 8789, 'srlnjal': 24639, 'spits': 24523, 'stripping': 25026, 'trimming': 26542, '131954': 574, 'reprogrammed': 22278, 'progam': 21125, 'twarted': 26702, 'gouldin': 13014, 'spite': 24522, '1r6mcginne87': 1259, '93apr6094402': 3448, 'machanical': 16962, 'conventionally': 8499, 'pushrods': 21391, 'folding': 12130, 'hangar': 13465, 'wingtips': 28257, '184527': 937, 'ballons': 5528, 'sprayed': 24575, 'drys': 10351, 'baloon': 5539, 'baloons': 5540, 'harden': 13497, 'attaching': 5258, 'bingo': 5966, 'someother': 24279, 'wals': 27882, 'gasing': 12606, 'congrete': 8312, 'caplets': 7011, 'instea': 14832, 'dof': 10148, 'caplet': 7010, 'congret': 8311, 'grin': 13192, 'musta': 18361, 'girders': 12859, 'eli': 10766, 'cinninati': 7605, 'offseason': 19238, 'postion': 20792, 'showdown': 23804, 'tackett': 25552, 'parent': 19873, 'hammonds': 13434, 'defended': 9376, 'chito': 7512, 'plusses': 20586, 'snows': 24188, 'leyfre': 16442, 'mcrcim': 17447, 'frederic': 12333, 'leymarie': 16444, 'developable': 9678, 'c5x9xs': 6833, 'khe': 15774, 'hkuxb': 13877, 'hku': 13875, 'hk': 13873, 'h8902939': 13356, 'hkuxa': 13876, 'abel': 3824, 'infomation': 14694, 'lay': 16251, 'intrinsic': 15001, 'curvature': 9000, 'singular': 23948, 'hessian': 13758, 'derivatives': 9567, 'treats': 26485, 'manifolds': 17140, 'carmo': 7062, 'carmo76differential': 7063, 'manfredo': 17134, '8236': 3192, '3480': 1983, 'h3a': 13354, '2a7': 1794, '7348': 2956, 'ocsmd': 19181, 'ocs': 19180, 'dent': 9520, 'factually': 11618, 'lifespans': 16508, '9204': 3391, '2215': 1469, 'disclaims': 9909, 'eylerken': 11561, 'eyler': 11560, '1r75bginnob9': 1263, '5k': 2597, 'configurations': 8277, 'expandibilty': 11418, 'vtr': 27799, 'evergreen': 11298, 'commish': 8029, 'selig': 23474, 'suspend': 25382, 'umped': 26883, 'spared': 24410, 'ensuing': 10986, '1529': 723, 'dems': 9500, 'elevation': 10761, 'cartographic': 7086, 'webster': 28010, '716': 2901, '422': 2205, '2496': 1617, 'wbst128': 27981, 'ncgia': 18531, 'ucsb': 26791, 'selled': 23476, 'dlg': 10085, 'datas': 9192, 'menlo': 17568, 'census': 7252, 'tso': 26629, '4100': 2180, '1568': 747, 'dobbs': 10120, 'counterpart': 8670, 'dcw': 9248, 'gigabytes': 12835, 'coastlines': 7836, 'railrays': 21609, 'airports': 4325, 'towns': 26337, 'elevations': 10762, 'iso9660': 15153, '25286': 1638, '80225': 3140, 'k1a': 15604, '0e9': 295, 'elmwood': 10793, 'feltham': 11810, 'tw13': 26699, '7ah': 3101, 'cp2': 8715, 'aukuni': 5312, 'vista': 27676, 'vrl': 27788, '2341': 1554, 'ganador': 12574, '93401': 3426, '8515': 3238, 'scenery': 23198, 'raklin': 21628, '95677': 3492, '916': 3381, '1436': 652, 'topologically': 26279, 'oncs': 19314, 'strokes': 25032, '720x360': 2913, 'mfil': 17666, 'pi1': 20354, 'hierachical': 13789, 'polyline': 20674, 'polylines': 20675, 'joes': 15431, 'liant': 16466, 'vplot': 27782, 'libvplot': 16485, 'terrain': 25844, 'vegetation': 27467, 'exabyte': 11329, 'hobbyist': 13902, 'ilana': 14386, 'mri': 18223, 'scans': 23179, 'altimetry': 4507, 'nodis': 18854, 'carriage': 7072, 'responds': 22362, 'cogs': 7874, 'aurelie': 5314, 'soest': 24222, 'avhrr': 5386, '200k': 1317, 'ss01': 24652, 'capitalization': 7006, 'vab02': 27345, 'discharge': 9902, 'streamflow': 24996, 'earthinfo': 10509, '5541': 2508, '938': 3432, '1788': 896, 'vmd': 27713, 'wx': 28502, 'hourly': 14046, 'earthquake': 10511, 'topography': 26278, 'geopolitical': 12760, 'ngdc': 18740, 'broadway': 6458, '80303': 3143, '6958': 2824, 'eosat': 11048, 'generalization': 12679, 'grips': 13196, '821': 3189, '5245': 2462, 'adrg': 4121, 'digitised': 9806, 'topographic': 26277, 'perez': 20135, 'nrcc': 18987, 'rioux': 22579, 'cournoyer': 8686, 'cnrc': 7818, '29077': 1763, 'council': 8660, 'finder': 11930, 'monterey': 18087, 'manufactures': 17168, 'digitizer': 9810, '93940': 3437, '1441': 656, '3582': 2017, 'polhemus': 20646, '6d': 2841, 'vpl': 27781, 'dataglove': 9190, 'isotrack': 15163, 'keiser': 15701, '_free_': 3666, 'anatomy': 4623, 'trains': 26386, 'cataloge': 7125, '870': 3272, 'orem': 19455, '84057': 3216, '2222': 1478, '2272': 1512, 'dataset': 9193, 'digitizers': 9811, '05402': 194, '802': 3139, '7879': 3076, '5904': 2573, 'hercules': 13727, 'colchester': 7892, '05446': 195, '3159': 1883, 'logitech': 16718, 'ultrasonic': 26859, '6506': 2727, 'kaiser': 15618, 'freemont': 12347, '94555': 3470, '8500w': 3236, 'headtracker': 13617, '1921': 989, 'holdom': 13937, 'v5b': 27338, '3w4': 2145, '8574': 3246, '8580': 3248, 'suffolk': 25199, '01854': 89, '970': 3515, '0330': 144, '0199': 94, '966': 3508, '8123': 3176, 'transfinite': 26411, 'brick': 6419, '0903': 276, '969': 3511, '9570': 3494, 'd2002': 9077, 'eyephone': 11556, '14th': 692, '94404': 3467, '9356': 3430, 'simgraphics': 23902, '1137': 429, '91030': 3368, '4563': 2279, '0900': 273, 'wallpapers': 27879, 'coverings': 8701, 'doll': 10160, 'houses': 14052, 'educorp': 10634, '536': 2483, '9999': 3552, 'comstock': 8217, 'uniphoto': 27029, 'belvedere': 5802, '00196': 30, 'rome': 22725, 'piazzale': 20357, 'flaminio': 12008, 'mannikin': 17156, 'sceptre': 23202, 'textiles': 25893, '256x256': 1648, 'shipments': 23739, 'amigas': 4567, 'algorithmically': 4401, 'tiled': 26128, '32789': 1917, '9484': 3474, '7242': 2920, 'algoritmic': 4403, 'apex': 4796, '94025': 3454, '286160': 1742, 'concise': 8240, 'kuchkuda': 16024, 'foundations': 12258, 'earnshaw': 10506, 'nato': 18497, '1039': 366, '1060': 383, 'fundamentally': 12464, '_procedural': 3712, 'graphics_': 13101, 'cg': 7317, 'newell': 18683, 'rotations': 22771, '8x8': 3340, 'x4': 28523, 'meshing': 17613, 'tessellation': 25866, 'tolis': 26233, 'lerios': 16401, 'model1': 17987, 'model2': 17988, 'existent': 11407, 'sequent': 23540, 'model3': 17989, 'henders': 13709, 'model4': 17990, 'offsets': 19240, '3473': 1980, '2748': 1705, '2268': 1510, 'berndt': 5848, 'l14h11': 16053, 'model5': 17991, 'star5': 24732, 'touchup': 26317, 'rasterfiles': 21691, 'rasterfile': 21690, 'screendump': 23331, 'idraw': 14331, 'macdraw': 16956, 'tgif': 25910, 'xbm': 28538, 'xpm': 28575, 'ucla': 26784, 'patchlevel': 19958, 'patch8': 19955, 'patch9': 19956, 'editimage': 10607, 'pbmtext': 20008, 'overlaid': 19643, 'eo': 11042, 'lxt': 16912, 'ldgoc': 16282, 'statically': 24775, 'linked': 16589, 'sun4': 25249, 'property': 21195, 'redistributed': 21945, 'annotations': 4702, 'wysiwyg': 28506, 'rasterizing': 21695, 'annotate': 4700, 'xds': 28541, 'champaign': 7355, '61820': 2651, 'maintained': 17073, 'spyglass': 24605, 'dicer': 9751, 'volumetric': 27744, '6388': 2693, '61826': 2652, '87131': 3274, 'chama': 7351, 'macphase': 16986, 'combinations': 7979, 'ffts': 11855, 'filtering': 11918, 'norton': 18924, '74017': 2988, 'gui': 13284, 'custom': 9008, 'traditonal': 26373, 'epcc': 11053, 'ape': 4794, 'taravisual': 25630, '929': 3405, 'harrison': 13525, '43215': 2233, '8731': 3278, '2912': 1767, '2867': 1747, 'runtime': 22918, 'sutherland': 25400, 'stardent': 24739, 'wavetracer': 27971, 'avs4': 5402, 'waltham': 27887, '02154': 111, '4300': 2227, '8287': 3200, 'exploits': 11477, 'inherent': 14734, 'parallelism': 19858, 'standalone': 24708, 'iconified': 14298, 'morphological': 18135, 'merge': 17596, 'synchronization': 25500, 'conditional': 8254, 'sequencing': 23539, 'delivers': 9459, 'consolidate': 8363, 'workspace': 28405, 'hp9000': 14074, '7xx': 3124, 'datacube': 9186, 'poon': 20702, '3700': 2051, 'gilmore': 12850, 'v5g': 27339, '4m1': 2391, '2587': 1652, '8840': 3296, '5d': 2591, 'visually': 27687, 'gridded': 13180, 'vgx': 27563, 'gtx': 13268, 'tg': 25906, 'r4000': 21542, 'ssec': 24658, 'vis5d': 27658, 'hibbard': 13779, 'whibbard': 28125, 'macc': 16952, 'bpaul': 6330, 'dataexplorer': 9188, 'simd': 23900, 'i860s': 14248, 'kilgore': 15802, 'yktvmh': 28699, 'kilcore': 15801, '981': 3534, '4510': 2271, 'wti': 28482, 'montecito': 18084, '93103': 3415, '962': 3503, '8117': 3174, '0410': 161, 'guldenspoorstraat': 13298, 'gent': 12709, '17f': 902, 'shinjuku': 23734, 'nishi': 18811, 'shunjuku': 23822, '168': 825, '3342': 1945, '7353': 2974, 'plot3d': 20566, 'elson': 10800, 'pelson': 20080, 'xgraph': 28554, 'x11r5': 28513, '80307': 3145, '1201': 474, 'scdinfo': 23193, 'multiply': 18316, 'manupulation': 17170, 'gridding': 13181, 'ultrix': 26861, '3750': 2060, 'pvwave': 21408, 'bundle': 6606, '777': 3055, '29th': 1792, '9900': 3543, '9909': 3546, 'rsinc': 22847, 'sips': 23958, 'goetz': 12959, 'terramar': 25846, '_was_': 3742, 'aviris': 5392, 'pcw': 20029, 'walsh': 27883, 'pseudocoloring': 21275, 'clustering': 7790, 'modification': 18009, 'megabyte': 17523, 'handles': 13455, 'crunching': 8852, 'igor': 14362, 'excel': 11348, 'kaleidagraph': 15623, 'visual3': 27679, 'haimes': 13396, 'fieldview': 11881, 'lawn': 16241, '07410': 242, '794': 3087, '7550': 3020, 'kramer': 15988, 'ilight': 14390, 'scian': 23260, 'visualizations': 27682, 'monu1': 18095, 'scry': 23351, 'vides': 27597, 'distri': 10018, 'buted': 6672, 'tations': 25657, '4bsd': 2372, 'sockets': 24213, 'csam': 8885, 'johnston': 15446, 'wejohnston': 28045, 'ucbvax': 26774, 'dwrobertson': 10462, '50b': 2429, '2239': 1489, 'cyclotron': 9056, '94720': 3473, 'svlib': 25412, 'fvs': 12500, 'macro': 16989, 'comprising': 8187, 'scrollbars': 23343, 'reusability': 22434, 'encapsulation': 10884, 'colormap': 7952, 'targetted': 25637, 'integrates': 14873, 'cfd': 7310, 'graphically': 13099, 'pu': 21305, 'quek': 21497, 'hian': 13777, 'ncb': 18529, 'sicence': 23838, '7720435': 3047, '7795966': 3061, 'leehian': 16335, 'gvlware': 13332, 'acquire': 3983, 'mkdir': 17943, 'zcat': 28764, 'xvf': 28602, 'cubed': 8940, 'compositing': 8165, 'subvolumes': 25163, 'subsampling': 25126, 'partition': 19920, 'ximage': 28561, 'interpolated': 14960, 'spaces': 24383, 'communicates': 8050, 'daalo3': 9084, '0038': 42, 'iap': 14262, 'multiplanar': 18307, 'reformating': 22002, 'cine': 7602, 'intermixes': 14943, 'hardcopy': 13494, 'printers': 21033, 'interconnection': 14911, 'fda': 11763, 'oem': 19203, 'developer': 9682, '10k': 401, 'isg': 15139, '6509': 2731, 'mississauga': 17906, 'l4v': 16060, '1s7': 1277, 'gilchrist': 12842, 'isgtec': 15140, 'cristy': 8799, 'flex': 12038, 'scripps': 23338, '4mb': 2392, 'perutz': 20220, 'macmolecule': 16983, 'lybrand': 16916, 'xtalview': 28595, 'crystallography': 8872, 'visualize': 27683, 'mcree': 17448, 'landman': 16131, 'alter': 4496, 'bindings': 5963, 'supercells': 25281, 'neighbor': 18606, 'acceptably': 3897, '10mhz': 405, 'icsg0001': 14304, 'kgngraf': 15768, 'motecc': 18155, 'malena': 17101, 'crs4': 8840, 'troff': 26572, 'ditolla': 10035, 'itnsg1': 15200, 'cineca': 7603, 'dynamically': 10473, 'graphi': 13096, 'xball': 28536, 'nedde': 18573, 'daven': 9205, 'maxine': 17356, 'xmol': 28571, 'chemlab': 7457, 'molsim': 18045, 'mopac': 18112, 'msci': 18237, 'insight': 14805, 'biosym': 5994, 'scarecrow': 23182, 'analyze': 4618, 'charmm': 7412, 'yasp': 28661, 'mumod': 18328, 'affinity': 4205, 'orbitals': 19438, 'huckel': 14126, 'leif': 16375, 'laaksonen': 16063, 'laaksone': 16062, 'niehs': 18775, 'mindtool': 17813, 'cgi': 7321, 'rani': 21658, 'cerl': 7283, 'friendly': 12376, 'resampling': 22301, 'maurice': 17341, 'vexcel': 27556, 'stardents': 24740, '0094': 50, 'ogi': 19244, 'cecer': 7232, 'canonical': 6979, 'uncompression': 26924, 'archiving': 4953, 'correspondence': 8614, 'grassx': 13118, 'uark': 26767, 'grassu': 13117, 'grassp': 13116, 'subset': 25135, 'veracity': 27498, 'microstation': 17723, 'manipulations': 17147, 'affine': 4204, 'rectification': 21924, 'ihs': 14368, 'isodata': 15154, 'xforms': 28548, 'enhancing': 10961, 'median': 17503, 'histogram': 13848, 'pci': 20023, 'lgsowg': 16453, 'bsq': 6519, 'grouped': 13220, 'numeric': 19037, 'spe': 24428, 'cifically': 7591, 'histo': 13847, 'gram': 13074, 'equalization': 11085, 'channel': 7376, 'scripting': 23340, 'lengthy': 16390, 'executions': 11386, 'independently': 14595, 'dcl': 9243, 'optional': 19422, 'headerless': 13606, 'interleave': 14939, 'ct2t': 8922, 'vectors': 27456, 'overlaying': 19645, '_believe_': 3639, 'gould': 13013, 'deanza': 9278, 'workarounds': 28394, 'peritek': 20170, 'vct': 27444, 'directcolor': 9852, 'coincidence': 7883, 'overlays': 19646, 'identification': 14316, 'vicar': 27575, 'tae': 25558, 'disperate': 9966, 'coverages': 8698, 'rodney': 22690, 'hoinkes': 13930, '7197': 2906, '48178': 2331, 'sdcc12': 23367, '212428': 1412, 'contribu': 8470, 'tion': 26161, 'determin': 9656, 'determines': 9662, 'cess': 7301, 'lates': 16208, 'solutely': 24263, 'ascertain': 5080, 'contributes': 8473, 'cham': 7350, 'pionship': 20421, 'jective': 15309, 'mere': 17592, 'jeanne': 15308, 'dixon': 10059, 'ballgames': 5524, 'stubborn': 25059, 'consumed': 8401, 'hoc': 13906, 'ergo': 11119, 'propter': 21216, 'ignoratio': 14357, 'elenchi': 10758, 'cheek': 7440, 'formance': 12209, 'baying': 5670, 'hounds': 14044, 'cordially': 8570, 'morons': 18130, 'atttributed': 5292, 'rlm7638': 22627, 'mckinney': 17427, 'mistress': 17914, 'palace': 19797, '_official_': 3707, 'bookstores': 6234, 'jmckinney': 15407, 'mering': 17600, 'morse': 18141, 'emo': 10850, 'seer': 23446, 'foolishness': 12161, '733989466': 2941, 'prophesies': 21197, 'pondered': 20689, 'brady': 6345, 'ado': 4111, 'segui': 23454, 'oates': 19088, 'slumping': 24109, 'pecota': 20058, 'obprediction': 19124, 'abbot': 3814, 'wholesale': 28156, 'arrested': 5036, 'eerie': 10650, 'suspects': 25381, 'gillick': 12846, 'contender': 8422, 'whip': 28133, 'nagy': 18439, 'olin': 19282, 'bielecki': 5915, 'incompetent': 14560, 'rainouts': 21618, 'whining': 28132, '033843': 145, '26854': 1685, 'grfwk61t': 13177, 'everthing': 11300, '145914': 672, '1575': 751, 'csi': 8898, 'nights': 18788, 'stiffness': 24887, 'curveball': 9002, 'loosen': 16757, 'terraforming': 25843, 'borax': 6252, 'millernw': 17788, 'merkelbd': 17604, 'sage': 23010, 'merkel': 17603, '1993apr11': 1084, '132604': 580, '13400': 595, '_24x_': 3569, 'cjpeg': 7651, 'uvesa31': 27297, 'dvpeg': 10450, 'aka': 4338, 'tseng400': 26621, 'dac': 9087, 'sneeze': 24171, 'prefect': 20919, 'ctds': 8924, 'dots': 10214, 'happily': 13486, 'litterally': 16634, '184732': 940, '1105': 412, 'srt': 24648, 'gn': 12938, 'kw': 16040, 'optimize': 19415, 'vehilce': 27472, 'sexist': 23600, 'ports': 20740, 'docked': 10124, 'habitability': 13371, 'habitation': 13374, 'lightweight': 16530, 'visits': 27673, 'adopted': 4115, 'radiator': 21572, 'internationals': 14951, 'slap': 24041, 'tangentially': 25611, 'radiators': 21573, 'micrometeroid': 17713, 'centerline': 7261, 'floors': 12065, 'passageway': 19936, 'graceful': 13045, 'degradation': 9416, 'loops': 16753, 'bowling': 6316, 'bk': 6031, 'ktt3': 16019, 'brighton': 6433, 'koon': 15956, 'gino': 12855, 'verison': 27514, '0a': 293, 'runnining': 22916, 'outputing': 19603, 'bton': 6529, 'itri': 15203, 'bn2': 6135, '4gj': 2384, 'stoppers': 24941, 'stopper': 24940, 'cursory': 8994, 'worries': 28419, 'c5tk4u': 6823, 'c6t': 6839, 'ykim': 28698, 'yong': 28704, 'loosing': 16760, 'markl': 17234, 'hunan': 14169, 'rastek': 21688, 'larsen': 16182, 'traycing': 26473, 'watkins': 27957, 'photorealism': 20324, 'finlay': 11948, 'glanced': 12879, 'r2': 21539, 'motivator': 18168, 'wordup': 28389, 'backspace': 5471, 'rectangle': 21922, 'floodfill': 12063, 'onscreen': 19332, 'voc': 27721, 'cmf': 7807, 'tiles': 26129, 'nuke': 19030, 'ems': 10869, 'xms': 28572, 'mget': 17671, 'clj': 7745, 'ksr': 16013, 'kendall': 15716, '1r2aii': 1245, 'salyuts': 23043, 'unreservedly': 27101, 'hav': 13563, 'digress': 9815, 'dtax': 10375, 'reshape': 22321, 'ignor': 14353, 'ance': 4625, 'gwang': 13335, 'ge': 12647, 'recommendation': 21890, 'dwestner': 10458, 'cardhu': 7032, 'dundee': 10417, 'dominik': 10178, 'westner': 28081, 'scotland': 23306, 'deeply': 9365, 'idealism': 14312, 'inforce': 14696, 'vulnerable': 27805, 'sanctions': 23060, 'declare': 9324, 'soverign': 24354, 'colonists': 7943, 'crack': 8729, 'omelet': 19299, 'irresponsible': 15116, 'yeasteryears': 28673, 'piss': 20434, 'ancestors': 4626, 'binds': 5964, 'immigrants': 14458, 'intrepid': 14998, 'bering': 5840, 'backs': 5468, 'cogently': 7872, 'sank': 23080, 'donleavy': 10190, '_fairy': 3662, 'york_': 28709, '231343': 1535, '17894': 897, 'splurged': 24536, '900k': 3347, 'kenny': 15723, 'wakefield': 27859, 'arguably': 4975, 'wager': 27841, 'tampere': 25601, 'corrects': 8605, 'misundertanding': 17919, 'rasterized': 21693, 'quantizers': 21472, 'quantizer': 21471, 'quantizes': 21473, 'lousier': 16801, 'quantized': 21470, 'violate': 27637, 'otherway': 19556, 'best24': 5862, 'ppmquant': 20843, 'rlequant': 22625, 'djpeg': 10071, 'fbmquant': 11757, 'suggeeded': 25202, 'pressings': 20972, 'waited': 27851, 'activating': 4012, 'pops': 20714, 'button': 6677, '47844': 2322, 'getcredit': 12791, 'stint': 24902, 'scorer': 23296, 'valentin': 27361, 'vulihman': 27804, 'vulih': 27803, 'ipmce': 15074, 'prec': 20879, 'pasting': 19951, 'tesselations': 25865, 'difficaltis': 9788, 'paste': 19949, 'c5sumg': 6817, '2rf': 1825, 'avid': 5390, 'owlnet': 19687, 'woulda': 28431, 'thunk': 26082, 'biancalana': 5894, 'somethings': 24285, 'manhattan': 17136, 'mis2': 17873, '16bb1c589': 835, 'dak988s': 9107, 'staffs': 24689, 'drastic': 10288, 'widener': 28175, 'depot': 9548, '2762': 1711, '776': 3052, '4041': 2165, '66502': 2760, 'bprofane': 6334, 'niewahr': 18781, 'bprofanec51whz': 6335, 'hio': 13830, 'c51eyz': 6734, '4ix': 2387, 'tooling': 26264, 'bullshitting': 6594, 'loudly': 16793, 'impartial': 14469, '734129736': 2948, '18979': 961, 'trs': 26588, 'avery': 5384, 'hofs': 13922, 'myer': 18383, 'kling': 15878, 'norm': 18900, 'sherry': 23717, 'jews': 15356, 'philosphy': 20289, 'basser': 5639, 'optimised': 19411, 'modex': 18008, 'parslow': 19899, 'p00421': 19710, 'psilink': 21280, '4fjvbvy00iuz86yo5_': 2382, 'karim': 15646, 'edvard': 10636, 'ahmed': 4282, 'ka0k': 15610, 'erikson': 11133, 'matured': 17337, 'deshaies': 9602, 'unproven': 27090, 'languished': 16150, 'dane': 9129, '1542': 734, 'dtmb': 10381, 'div': 10037, '1340': 594, '1psg95': 1183, 'ree': 21962, 'bitter': 6023, 'newsfeed': 18704, '20khz': 1378, 'spalling': 24397, 'c50zxa': 6726, '1k9': 1144, 'fb': 11754, 'decisive': 9319, 'convair': 8493, 'contractually': 8460, 'commmitted': 8040, 'incapable': 14535, '102a': 362, '1953': 1016, 'wasp': 27938, 'waisetd': 27849, 'compartment': 8080, 'transonic': 26441, 'khan0095': 15771, 'gmi': 12930, 'mohammad': 18028, 'razi': 21738, 'flint': 12049, 'mkhan': 17944, 'rachford': 21555, 'jeffery': 15317, 'tribune': 26520, 'doctors': 10130, 'padded': 19757, 'gloved': 12915, 'healer': 13619, 'lclark': 16274, 'snodgrass': 24183, '191542': 981, '9392': 3435, '1qvkaeinngat': 1241, 'brand': 6357, 'pros': 21218, 'cons': 8332, 'disemination': 9938, 'orientiation': 19483, 'uninitiated': 27023, 'svhs': 25411, 'overscan': 19660, 'repeats': 22222, 'distracting': 10014, 'premier': 20936, 'enjoyable': 10964, 'crystalize': 8871, 'dve': 10447, 'matting': 17334, 'montage': 18081, '40megs': 2177, 'gig': 12834, 'itor': 15201, 'gear': 12648, 'cassette': 7106, 'mixer': 17930, 'toasterhead': 26208, 'ingoring': 14726, 'vechicle': 27451, 'hissy': 13846, 'thacker': 25917, 'daytime': 9227, 'wohlers': 28343, '91387': 3377, 'ccastmm': 7190, 'marler': 17240, '224251': 1491, '21212': 1408, 'shannonr': 23654, 'reeves': 21976, 'cntr': 7824, 'mcmchael': 17436, 'intends': 14888, 'howell': 14064, 'berenguer': 5833, 'ain': 4302, 'mop': 18111, 'mcmichael': 17437, 'mexican': 17660, 'mercker': 17588, 'ryanph': 22955, 'mrl': 18224, 'dregistere': 10304, '125750': 530, 'omnigate': 19304, 'aliases': 4407, 'xv221': 28601, 'quarterdeck': 21482, 'desqview': 9629, 'blurbs': 6121, 'requiring': 22296, 'emptive': 10866, 'tasking': 25646, 'compilers': 8132, 'advertise': 4143, 'qdeck': 21426, 'lipman': 16605, 'sciviz': 23278, 'ness': 18632, 'solicited': 24255, 'videotape': 27593, 'byoh': 6691, 'viewgraphs': 27605, 'reproduced': 22272, '2042': 1344, '3618': 2031, '5753': 2546, 'affiliations': 4203, 'designate': 9606, 'deadlines': 9269, 'abstact': 3862, 'notification': 18955, 'distribute': 10020, 'basin': 5632, 'cdnswc': 7217, 'lip': 16604, 'voicenet': 27728, 'factsnet': 11616, 'phishnet': 20291, 'stockings': 24916, 'legs': 16367, 'shiek': 23721, 'williams4000': 28209, 'iscsvax': 15137, 'kells': 15708, 'aparantly': 4788, 'mistyped': 17915, '25228': 1636, 'jfw': 15364, 'woods': 28369, 'nanderso': 18458, 'endor': 10918, 'sim': 23898, 'ssrbs': 24664, 'rattling': 21711, 'pissing': 20435, 'delaying': 9435, 'shipment': 23738, 'sor': 24314, 'putt': 21396, 'explosives': 11490, 'sculptor': 23362, 'dickson': 9757, 'scholarly': 23233, 'rc': 21747, 'pythagorean': 21417, 'xwp': 28615, '351': 1994, '548': 2498, '319': 1890, '759': 3025, '226': 1502, '782': 3066, '797': 3095, '585': 2563, '281': 1724, '459': 2284, '726': 2923, '376': 2061, 'cranked': 8744, 'predictably': 20908, 'upped': 27169, 'blatant': 6058, 'predictive': 20913, 'cavgeoe': 7165, 'yalevm': 28642, 'ycc': 28667, 'brandt': 6360, 'outright': 19607, 'honeymoon': 13985, 'platooning': 20526, 'taker': 25578, 'chronological': 7560, 'riddoch': 22535, 'mattel': 17327, 'trol': 26574, 'tsk': 26627, 'hmph': 13892, 'flounders': 12071, 'rushes': 22926, 'criticizes': 8810, 'udqceao00vpeii_li1': 26800, 'likhyani': 16544, '792': 3083, 'naked': 18447, 'navarra': 18510, 'posterity': 20786, 'rallies': 21631, 'statheads': 24773, 'nss3': 19006, 'ballsy': 5537, 'nonetheless': 18874, 'ecaxron': 10548, 'comprehend': 8171, 'djohnson': 10070, 'cayley': 7168, 'clinch': 7732, '1991nov13': 1073, '060413': 206, '9187': 3387, 'stvjas': 25086, 'rijo': 22564, 'victories': 27583, 'adjust': 4084, 'cmcl2': 7802, 'scouts': 23314, 'quantrill': 21475, 'rubber': 22871, 'cincinatti': 7599, 'intentional': 14898, 'trn': 26570, 'strdev': 24992, 'welded': 28050, 'outgoing': 19590, 'defer': 9383, 'tumble': 26663, 'credibly': 8781, 'hefty': 13654, 'jpalmer': 15500, 'uwovax': 27313, 'cory': 8626, 'siding': 23847, 'kerfeld': 15733, 'lovelace': 16810, 'rozema': 22811, 'hare': 13508, 'hurst': 14191, 'outfielders': 19587, 'hassey': 13542, '_not_': 3704, 'huckaby': 14125, '125608': 529, '7506': 3006, 'ipns': 15075, 'gridlock': 13182, 'opponenents': 19389, 'breeder': 6393, 'wipp': 28279, 'fought': 12252, 'courts': 8692, 'incinerator': 14545, 'deaf': 9270, 'nevada': 18667, 'nimby': 18799, 'overrule': 19656, 'opposition': 19399, '1qplh7': 1228, 'e2g': 10482, 'overwhelming': 19677, 'necessity': 18569, 'michael_maier': 17691, 'qmgate': 21436, 'maier': 17050, 'elliptical': 10790, 'iici': 14372, 'linotronic': 16596, 'l300': 16058, 'imagesetter': 14425, 'separations': 23527, 'appreshed': 4868, 'unscene': 27103, 'veiw': 27476, 'milk': 17782, 'amnesia': 4577, '5298': 2469, '233154': 1547, '7045': 2877, 'lije': 16533, 'cognito': 7873, 'elijah': 10771, 'millgram': 17789, 'graphed': 13095, 'encloses': 10890, 'envelopes': 11025, 'airplane': 4322, 'schedule_730956538': 23212, 'launchings': 16232, '4636': 2297, 'asc': 5075, '2102': 1391, 'assure': 5163, 'orients': 19485, 'alleviates': 4436, 'downrange': 10249, 'couched': 8655, 'jargon': 15268, 'clears': 7705, 'chord': 7531, 'trailing': 26381, 'execute': 11382, 'improves': 14514, 'mandatory': 17128, 'piloting': 20398, 'attain': 5263, 'begs': 5756, 'leftovers': 16347, 'straddles': 24959, 'trenches': 26496, 'fluffy': 12085, 'axes': 5425, 'yaw': 28663, 'quaternion': 21490, 'matrices': 17320, 'satcom': 23109, 'f2r': 11575, '3960': 2102, 'stationed': 24779, 'frequencies': 12360, 'believed': 5780, 'rebroadcast': 21851, 'w6fxn': 27820, 'k6mf': 15607, 'wa3nan': 27823, 'w5rrr': 27819, 'w6vio': 27821, 'w1aw': 27815, '80m': 3167, 'transmits': 26435, 'supplying': 25317, '0245': 124, '0545': 196, 'usb': 27207, 'lsb': 16842, 'fm': 12104, 'kk6yb': 15863, 'n5qwc': 18420, '8b': 3328, '12770': 541, 'ammonium': 4574, 'perchlorate': 20131, 'catalyst': 7129, 'polybutadiene': 20666, 'acrilic': 3989, 'acrylonitrile': 3997, 'epoxy': 11070, 'curing': 8975, '153137': 725, 'u122743': 26748, 'twncu865': 26724, 'projector': 21159, 'inetnet': 14651, 'u129008': 26749, 'sparc20': 24406, 'nuc': 19023, 'lineber': 16576, 'lineberry': 16577, 'accidently': 3910, 'erased': 11111, 'def': 9367, 'targas': 25633, '71221': 2893, '3015': 1839, 'dfl': 9715, 'frohardt': 12387, '212014': 1405, '1782': 893, 'lions': 16603, 'pistons': 20437, 'wolverines': 28352, 'poisoning': 20634, 'tee': 25740, 'shifts': 23730, 'consensus': 8336, 'newbie': 18676, 'seasoning': 23400, 'intimate': 14995, 'tangible': 25613, 'piling': 20394, 'incompetence': 14559, 'charitable': 7404, 'studs': 25070, 'elderly': 10732, 'pensions': 20104, '_keep_': 3687, 'offended': 19211, 'cite': 7634, 'innate': 14764, 'rectitude': 21926, 'armchair': 5006, 'disagee': 9873, 'guffaws': 13283, 'reversible': 22453, 'slinky': 24075, 'somes': 24282, 'djgp': 10066, 'burgermeister': 6632, 'presses': 20970, 'valued': 27376, 'understatement': 26967, 'feldstein': 11802, 'universes': 27046, 'pvtmakela': 21407, 'hylkn1': 14222, 'kel': 15704, '28641': 1745, 'datadec': 9187, 'ucrengr': 26788, 'nebulae': 18563, 'globus': 12907, 'gearing': 12650, 'vacations': 27348, '200m': 1318, 'kms': 15890, 'villages': 27620, 'countryside': 8675, 'lakes': 16105, 'esecially': 11172, 'criterion': 8803, '5km': 2598, 'desires': 9618, '9sqkm': 3563, 'sanity': 23078, 'inhale': 14732, 'zonker': 28801, '8813': 3292, 'heap': 13625, 'disorganized': 9961, 'secretive': 23419, 'expired': 11456, 'marinara': 17216, '93105': 3417, '124117rvesterm': 514, '175545': 881, '3528': 1998, 'ecomomists': 10576, 'punchline': 21356, '204742': 1351, '10671': 388, 'c5tvl2': 6824, '1in': 1142, 'fascists': 11716, 'overreaction': 19654, 'questionable': 21503, 'frothing': 12397, 'impacted': 14465, 'inflatables': 14680, 'gained': 12541, 'summit': 25241, 'wpd': 28439, '011653': 67, '7403': 2989, 'qb': 21422, 'echen': 10556, '1r49iainnc3k': 1252, 'mssc50dfw': 18257, '71u': 2908, 'brilliant': 6435, 'yaer': 28636, 'overhyping': 19640, 'contraire': 8465, 'cools': 8532, 'caddy': 6863, 'knuckler': 15920, 'offenivsively': 19214, 'disprove': 9979, 'clouded': 7769, 'chink': 7502, 'offensively': 19219, 'belliard': 5790, 'chipper': 7506, 'johnh': 15439, 'humpal': 14166, 'entirety': 11009, 'cpuserver': 8724, 'acsc': 3999, 'uscacsc': 27209, 'announcing': 4711, 'focused': 12118, 'entertainment': 11001, 'customizable': 9012, 'attachment': 5259, 'ambient': 4544, 'communicated': 8049, 'adapting': 4053, 'adaptations': 4050, 'addressing': 4073, 'customization': 9013, 'terminating': 25837, 'animate': 4673, 'selectable': 23465, 'initialisers': 14741, 'handler': 13454, 'callback': 6911, 'init': 14738, 'collide': 7926, 'terminate': 25834, 'worldserver': 28411, 'initworld': 14749, 'initialization': 14742, 'positionobject': 20757, 'installworldobjects': 14828, 'wld': 28326, 'getworldtype': 12796, 'persona': 20198, 'animateworld': 4676, 'outrunning': 19608, 'stairs': 24698, 'futures': 12496, 'hmd': 13887, 'friction': 12369, 'interaction': 14903, 'comms': 8047, 'rectified': 21925, 'explorations': 11479, 'kindness': 15825, 'desperation': 9626, 'criticisms': 8807, 'hates': 13553, '735027990': 2968, '697': 2828, '701': 2865, 'youm': 28714, '___________________': 3583, 'meaqns': 17478, 'horrid': 14026, 'ewb': 11324, 'unfortunely': 26997, 'ewb2': 11325, 'sfovx7o00wb4mium0d': 23608, 'aright': 4990, 'hcurrently': 13595, 'forsee': 12229, 'bunk': 6610, 'righties': 22555, 'mcnally': 17440, 'lussmyer': 16903, 'angus': 4668, 'cac': 6857, '735077099': 2970, '185317': 944, '12231': 498, 'sbcs': 23156, 'henneman': 13714, 'kkeach': 15865, '015908': 78, '10416': 369, 'springsteen': 24587, 'mentions': 17575, 'sandiego': 23067, 'graig': 13068, 'nettles': 18649, 'fl1': 11995, 'sics': 23841, 'karlsson': 15652, 'kista': 15851, '1263': 537, '6154': 2646, '7011': 2866, 'ttx': 26642, '2401': 1581, 'propoganda': 21199, '220610': 1458, '1532': 726, 'bigfoot': 5921, '1phv98': 1160, 'jbk': 15293, 'billed': 5943, '12a': 556, 'aams': 3792, 'bays': 5673, 'underside': 26960, 'exceeding': 11346, 'publically': 21310, 'lbj': 16264, 'mippselled': 17858, 'boo': 6223, '1qsk9d': 1231, 'dck': 9242, 'mcrandall': 17446, 'wesleyan': 28074, 'coronal': 8590, 'recurrant': 21927, 'telluric': 25788, 'bafflers': 5486, 'sporatic': 24554, 'eternally': 11226, 'marty': 17262, 'crandall': 8740, 'grela': 13170, 'vleck': 27704, 'middletown': 17738, '06487': 221, 'reef': 21966, 'enemy': 10926, 'cirop59': 7626, 'elm': 10792, '190156': 969, '7769': 3054, 'lmpsbbs': 16664, 't4': 25539, 'integrate': 14871, 'harsh': 13527, 'envorinment': 11040, 'additionally': 4066, 'rocking': 22676, 'train': 26382, 'stabilization': 24678, 'achieves': 3959, 'cleanliness': 7696, 'pfl': 20247, 'lifts': 16517, 'lhe': 16459, 'storable': 24944, 'ullage': 26849, 'cryo': 8866, 'gse': 13251, '1bil': 1126, '150437': 699, 'governmental': 13022, 'somthing': 24291, 'millionaire': 17793, 'billionaire': 5948, 'commericalization': 8025, 'broach': 6451, '1mil': 1150, 'peice': 20072, 'bdunn': 5693, 'brendan': 6401, 'punisher': 21361, 'c5l068': 6782, '6v3': 2853, 'leg': 16350, 'paoli': 19834, 'danberg': 9123, 'bergmann': 5839, '1qkq0q': 1214, '8rl': 3338, 'softball': 24226, 'dbergmann': 9233, 'sharps': 23677, 'uwast': 27305, 'corruption': 8623, 'tho': 26013, 'whew': 28123, 'oehler': 19201, 'picard': 20360, 'tttddd': 26640, 'swiv3d': 25469, '020751': 105, '13389': 591, 'madison': 17002, 'crazed': 8760, '120665': 479, 'pronunciation': 21185, 'ston': 24928, 'kev': 15744, 'sportscasters': 24559, 'cabanrf': 6850, 'wkuvx1': 28325, 'ky': 16044, 'mssc4zyo8': 18256, '12176': 491, 'klasko': 15873, 'firstbaseman': 11965, 'favorably': 11744, 'shabby': 23621, 'benito': 5821, 'dismiss': 9954, 'seasoned': 23399, 'cabaniss': 6849, 'pinstripes': 20414, 'gaylord': 12633, 'extragalactic': 11534, 'absorption': 3861, 'burster': 6652, '_x_': 3746, 'megaparsec': 17525, 'dude': 10395, 'emarciniak': 10820, 'bony': 6222, 'storing': 24951, 'cahnge': 6878, 'emanuel': 10819, 'marciniak': 17197, 'c5jbse': 6766, 'kkk': 15868, 'chihuahua': 7488, 'loopback': 16748, 'buchholz': 6536, 'x3252': 28519, 'wmf': 28332, 'windowsmetafile': 28241, 'couloir': 8658, 'leafusa': 16298, '4990': 2365, '3252': 1909, 'c558172': 6746, 'mizzou1': 17936, 'ctr': 8929, '222601': 1482, '21160': 1402, 'kohl': 15937, '214653': 1426, 'ugo62b8w165w': 26818, 'abc': 3821, '66th': 2767, 'cbs': 7181, '10023': 318, '2020': 1328, '887': 3299, '4040': 2164, '20036': 1301, '457': 2281, '4321': 2232, 'rockefeller': 22665, '10020': 316, '1663': 818, '828': 3199, 'cnn': 7816, '10019': 315, '20001': 1288, '975': 3525, '3693': 2047, '898': 3320, '7900': 3080, 'mutual': 18368, '1755': 880, '2824': 1733, 'arlington': 5000, '22202': 1477, '2175': 1438, '02115': 107, '90053': 3344, '7090': 2883, '528': 2467, '4637': 2298, 'macneil': 16984, 'lehrer': 16371, 'newshour': 18708, '2626': 1671, '105366': 377, '20013': 1296, '30348': 1846, '998': 3550, '2870': 1750, 'wnet': 28337, '356': 2009, '58th': 2569, '3113': 1872, 'crossfire': 8824, 'nbc': 18523, '4001': 2154, '885': 3297, '4200': 2198, '362': 2032, '2009': 1316, '43rd': 2245, '20037': 1302, '1234': 503, '7415': 2990, '1627': 795, '22229': 1479, '862': 3256, '0300': 134, '10281': 361, 'nightline': 18786, '1150': 438, '20071': 1312, '4995': 2366, 'koppel': 15959, 'weta': 28085, '1717': 852, 'desales': 9575, '7364': 2979, 'brinkley': 6441, '7777': 3056, 'warner': 27916, '1212': 486, 'oooooo': 19347, 'sweepstakes': 25439, 'hindsight': 13823, 'hexagonal': 13764, 'youve': 28726, 'hexagons': 13765, 'rows': 22804, 'neath': 18557, 'fourht': 12262, 'arbritrary': 4929, 'hexagon': 13763, 'tangent': 25610, 'helpers': 13692, 'baffeled': 5485, 'bon': 6206, 'lte': 16854, 'technik': 25718, 'erlangen': 11136, 'bonnes': 6219, 'aladin': 4352, 'ephem': 11056, 'elwood': 10807, 'hernan': 13738, '1d12': 1133, 'a7e61e0c2e01fe53': 3774, 'cadet': 6865, 'baseballers': 5608, 'c00053': 6703, '100lez': 329, '93apr22002043': 3445, 'omnivorous': 19306, 'shuffling': 23821, 'grahpics': 13067, '386sx': 2085, 'knoweth': 15911, 'frustration': 12410, 'pogo': 20620, 'marietta': 17214, 'tp892275': 26341, 'vine': 27630, 'mierzanowski': 17749, '20hz': 1376, 'cst': 8910, 'garfield': 12592, 'catt': 7147, 'caroline': 7067, 'tsang': 26617, '051201': 185, '9535': 3486, 'raleigh': 21630, 'recommandation': 21888, 'genus': 12715, 'aniruddha': 4685, 'deglurkar': 9415, 'gurus': 13317, 'notation': 18939, 'bounded': 6305, 'wholly': 28157, 'trivially': 26569, 'thiss': 26011, 'irritated': 15120, '91513': 3380, 'inflation': 14684, '1928': 994, 'pun': 21353, 'yearly': 28671, 'measly': 17479, 'fv': 12499, 'crunch': 8851, '000021': 6, 'foolerie': 12157, 'portugals': 20742, 'spains': 24394, 'reformation': 22003, 'yur': 28739, 'soem': 24221, 'saudia': 23133, 'arabia': 4919, '001718': 27, '1r6b7v': 1257, 'ec5': 10547, 'aint': 4304, 'sluice': 24106, 'toa': 26206, 'sustaint': 25396, 'heir': 13668, 'fotentimes': 12250, 'minign': 17829, 'statutes': 24791, '1830': 924, '1870': 955, 'uninhabited': 27022, 'spouting': 24572, 'nonsense': 18884, 'welfare': 28051, 'outlived': 19600, 'usefulness': 27216, 'tuinstra': 26660, 'folk': 12132, 'huckleberry': 14127, 'hound': 14043, 'tuinstrd': 26661, 'homo': 13978, 'sapiens': 23088, 'parabolas': 19842, 'ellips': 10785, 'enlarged': 10969, '1ralibinnc0f': 1272, 'cbl': 7172, 'starburst': 24734, 'santangelo': 23082, 'strapping': 24972, 'nosecone': 18929, 'terribly': 25853, 'macadam': 16947, 'mpce': 18206, 'mq': 18217, 'reposted': 22253, '1993apr9': 1107, '152336': 718, '14605': 676, 'uvaarpa': 27295, 'lammers': 16114, 'seely': 23440, 'shatter': 23679, 'castoffs': 7115, 'rebecca': 21844, 'anderman': 4635, 'lrdpa': 16837, 'authorize': 5342, 'aggregate': 4256, 'bid': 5911, 'legalese': 16353, 'staffed': 24688, 'feedback': 11785, '3136': 1877, 'yorba': 28706, 'apt': 4896, 'fullerton': 12446, '92631': 3400, 'corrupted': 8621, 'obbaseball': 19092, 'spektr': 24486, 'koltovoy': 15946, 'nikolay': 18795, 'alexeevich': 4383, 'eunet': 11253, 'inductrial': 14630, 'videoscan': 27592, 'wich': 28166, 'kit': 15852, 'gistogramme': 12868, 'vs9': 27793, '724x600': 2921, '5s': 2603, 'vs52': 27792, '64x64': 2722, '1024x512': 352, '2048x1024': 1353, 'multiplexer': 18311, 'lookup': 16745, 'lut': 16905, 'scroll': 23342, 'reprogramming': 22279, 'vs100': 27791, 'accumulate': 3939, 'adc': 4055, '8192': 3185, '130922': 567, '144427': 659, '17399': 868, 'renting': 22209, 'disqualification': 9983, 'credited': 8783, 'c5ky58': 6779, '12kd': 557, '234838': 1558, '4138': 2187, 'ccsvax': 7206, 'sfasu': 23605, 'z_millerwl': 28749, 'lumberjack': 16879, 'enthusiastic': 11004, 'discourage': 9914, 'ahold': 4283, 'obbase': 19091, 'drayton': 10298, 'mclain': 17430, 'excuses': 11377, 'statesman': 24771, 'accounted': 3931, 'fearful': 11766, 'meddle': 17499, 'canadele': 6954, 'jonesy': 15463, 'c5scgu': 6815, '1ll': 1145, '073051': 239, '9160': 3382, 'fraze': 12327, 'bf25': 5884, 'freshman': 12365, 'po4': 20611, '100921rk0vsanu': 324, 'miamiu': 17684, 'htat': 14113, 'rs43873': 22836, 'raist': 21624, 'a1200': 3759, '1280': 547, 'billj': 5950, 'b11': 5436, 'beowulf': 5830, '418': 2193, 'equivalencies': 11103, 'admire': 4102, 'duren': 10433, '10kw': 403, 'apprach': 4859, 'interupting': 14983, 'kavishar': 15670, 'umcees': 26874, 'solomons': 24262, 'umuc': 26888, 'fwd': 12502, 'arose': 5021, 'mauch': 17339, 'ineptitude': 14642, 'abused': 3871, 'ounce': 19571, 'mahaffey': 17044, 'bennett': 5823, 'tying': 26734, 'northampton': 18916, '155656': 744, '15apr199315012030': 760, '094320': 286, '1723': 856, 'mechanic': 17490, 'vram': 27785, 'rj': 22608, 'mical': 17687, 'josephson': 15476, 'resizes': 22336, 'q950': 21421, 'generality': 12678, 'sizing': 23992, 'quicksilver': 21514, 'kaminiecki': 15632, 'witt': 28311, 'slaughterhouse': 24049, 'forwards': 12242, 'gigantic': 12836, 'salvage': 23037, 'jj': 15394, 'holler': 13946, 'holli': 13948, 'augs1': 5309, 'adsp': 4128, 'newssoftware': 18717, 'grn': 13200, '16f': 838, 'schwartz': 23256, 'flamed': 12004, 'begged': 5749, 'crosspost': 8827, 'bern': 5846, 'iamexwi': 14257, 'cbmehq': 7173, 'cbmswi': 7174, 'cbmvax': 7175, 'commodore': 8042, 'browdy': 6489, 'u31851': 26751, '225740': 1500, '15978': 757, 'perew': 20134, 'p201': 19716, 'f208': 11572, 'n103': 18409, 'jg': 15365, 'msged': 18247, 'bogart': 6170, 'hn': 13894, 'xvga': 28603, 'alderson': 4375, 'haas': 13364, 'willingly': 28215, 'negotiate': 18594, 'goat': 12949, 'spouted': 24571, 'chronicle': 7558, 'ante': 4741, 'hated': 13551, 'ccox': 7201, 'isms': 15149, '213008': 1415, '1009': 323, 'poincare': 20622, 'woke': 28345, 'streakers': 24994, 'interupted': 14982, 'dashing': 9179, 'unclad': 26916, 'rosenberg': 22752, 'charts': 7419, 'geode01': 12723, 'geode02': 12724, 'geode03': 12725, 'geode04': 12726, 'geode05': 12727, 'geode06': 12728, 'geode07': 12729, 'geode08': 12730, 'geode09': 12731, 'geode10': 12732, 'geode11': 12733, 'geode12': 12734, 'geode13': 12735, 'geode14': 12736, 'geode15': 12737, 'geode16': 12738, 'geode17': 12739, 'geodea': 12740, 'geodeb': 12741, 'booms': 6239, 'luma': 16878, 'pheneomenon': 20264, 'shockwave': 23755, 'jtk': 15545, 's1': 22965, 'jordin': 15470, 'kare': 15645, 'entreprenurial': 11017, 'parade': 19847, 'nahh': 18441, 'mutant': 18365, '1pst9uinn7tj': 1193, '10505': 375, '2bbcb8c3': 1799, 'wonko': 28363, 'akin': 4342, 'roommate': 22738, 'c5q0hk': 6804, 'kod': 15928, 'hawnews': 13578, 'cloudless': 7770, 'skin': 24015, 'amjad': 4572, 'soomro': 24305, 'glue': 12920, 'tubes': 26648, 'linearities': 16574, 'circuitry': 7614, 'errrors': 11152, 'wam': 27890, 'manute': 17171, 'bol': 6187, 'blockhead': 6091, 'warmed': 27913, 'inabilities': 14523, 'soap': 24200, 'bubble': 6533, 'hamstring': 13437, 'overvalue': 19673, 'inflammatory': 14678, 'denny': 9512, 'walling': 27876, '7960': 3092, 'mota': 18154, '1130': 424, 'wawers': 27973, 'lif': 16504, 'theo': 25945, 'lahmeyer': 16098, 'frankfurt': 12315, 'emacs': 10813, 'sunny': 25261, 'lyonerstr': 16926, '1qp1m9innfjg': 1226, '050311': 183, '10098': 325, 'upated': 27147, 'newscasts': 18701, '986': 3538, 'branches': 6356, 'jointly': 15452, 'organising': 19465, 'frascati': 12323, 'renewable': 22197, 'francophone': 12307, 'african': 4224, 'esrin': 11190, 'africa': 4223, 'ensure': 10987, 'oceanography': 19175, 'coastal': 7834, 'meteorology': 17640, 'lecturers': 16329, 'latin': 16211, 'cyklop': 9058, 'kth': 16017, 'tardell': 25631, 'sine': 23940, 'discrepancy': 9923, 'earths': 10512, 'ff88': 11851, 'gra': 13034, '735168686': 2971, 'swimming': 25452, 'swimmers': 25451, 'famer': 11672, 'c5ut0z': 6828, 'ctg': 8925, '1r46ofinndku': 1251, 'antisatellite': 4756, 'reminded': 22157, 'skysweepers': 24031, 'steveq': 24873, 'dialix': 9738, 'quartly': 21486, 'sird': 23960, 'alogorythmn': 4466, '1praaa': 1173, 'pqv': 20851, 'perth': 20212, 'localhost': 16684, 'stereogram': 24849, 'sndcrft': 24166, 'mtoivakk': 18277, 'martti': 17261, 'toivakka': 26221, 'pap': 19835, 'hintze_matthew': 13829, 'idaho': 14308, 'pocatello': 20613, 'qualit': 21457, 'collors': 7937, 'unreal': 27095, 'definitly': 9401, 'compromise': 8188, 'im': 14412, 'excelerator': 11349, 'paridise': 19878, 'links386': 16594, 'gromi': 13204, 'a16pd': 3762, 'shamsky': 23650, 'swoboda': 25473, 'swobo': 25472, 'prefab': 20917, '124456': 517, '14123': 636, 'c5133a': 6729, 'gzx': 13349, 'cheapest': 7429, 'luanch': 16858, 'churning': 7580, 'sucker': 25182, 'okstate': 19262, 'mich': 17689, '013846': 70, '1374': 614, 'colorix': 7951, 'wilbanks': 28193, 'kokopeli': 15941, 'doubly': 10222, 'broncos': 6471, 'superbore': 25277, 'rockie': 22673, 'catagory': 7121, 'zzzzzzt': 28831, 'environ': 11027, 'rabid': 21551, '1143': 433, '80306': 3144, 'intenionally': 14889, 'trystro': 26614, 'nickle': 18763, '7155': 2900, 'c5ljg5': 6794, '17n': 904, 'malreaders': 17110, 'logins': 16715, 'forgetting': 12197, 'somerville': 24281, 'kofax': 15933, 'repentence': 22223, 'consume': 8400, 'reestablish': 21974, 'comprehensible': 8172, 'jfreund': 15362, 'taquito': 25628, 'freund': 12366, 'activists': 4017, 'goodyear': 12988, 'blimp': 6075, 'collective': 7920, 'disapproval': 9885, 'cluttering': 7798, '014506': 73, '27923': 1718, 'wink': 28261, 'intensely': 14891, 'sarcastic': 23097, 'trickle': 26523, 'devotion': 9703, 'thoroughness': 26030, 'methodologically': 17649, 'proportion': 21203, 'lvandyke': 16911, 'balboa': 5509, 'dyke': 10468, 'tia': 26093, 'infotec': 14715, 'sunkist': 25259, 'francesa': 12298, '171819': 854, '123904': 511, '17806': 892, 'porthos': 20735, 'bellcore': 5787, '162835': 798, 'francesca': 12299, 'hovered': 14056, 'nfl': 18734, 'counting': 8672, 'whne': 28152, 'russo': 22936, 'instinct': 14835, 'caldera': 6896, 'g210b': 12515, 'c5c9ja': 6749, 'amb': 4540, 'ddsokol': 9260, 'sokol': 24239, 'boxscores': 6319, 'nytimes': 19065, 'skimpy': 24013, 'enemies': 10925, 'nazarene': 18520, 'hpdmd48': 14079, 'kewe': 15750, 'bskewe': 6517, 'atr': 5252, 'bso': 6518, 'cornelis': 8581, 'wessels': 28075, 'mathemagic': 17308, '102007': 346, '20664': 1364, 'uk03': 26838, 'puntbinnenpolygoon': 21365, 'auteur': 5333, 'datum': 9200, 'omschrijving': 19308, 'bepaalt': 5831, 'aangeboden': 3794, 'vector2d': 27453, 'binnen': 5970, 'polygoon': 20672, 'wijzigingen': 28191, 'clibstatus': 7717, 'aantal_snijpunten': 3797, 'geefpolygoonlengte': 12655, 'geefpolygoonrandpunt': 12656, 'interpoleerlineair': 14963, 'clibsucces': 7718, 'kopieervector2d': 15958, 'cliberbuiten': 7716, 'krommenoord': 16000, '3079': 1857, 'zt': 28814, 'rotterdam': 22778, '4826394': 2333, 'crichar': 8790, 'eskimo': 11174, 'c5jck0': 6768, '3837': 2075, 'nominate': 18865, 'liver': 16641, 'pullman': 21340, 'sleepers': 24054, 'obfbl': 19100, 'rainiers': 21616, 'ifl': 14343, 'tacoma': 25553, 'adders': 4060, 'ibl': 14274, 'highlanders': 13799, 'pty': 21304, 'mpdillon': 18207, 'stepping': 24846, 'aaaa': 3788, 'bbbb': 5675, 'cccc': 7191, '1qr05cinnpel': 1230, 'skeena': 23999, 'stlouis': 24909, 'unixg': 27059, 'phill': 20277, 'callapse': 6910, 'chasm': 7422, 'mediocrity': 17508, 'smallest': 24117, 'burleigh': 6639, 'grimes': 13190, 'busch': 6659, 'winds': 28242, 'retire': 22408, 'hunch': 14170, 'gutsy': 13322, 'banished': 5557, 'remainder': 22142, 'gaston': 12610, 'dare': 9149, 'cooperate': 8535, '121843': 492, 'mariatta': 17212, 'mcdonell': 17401, 'pints': 20415, '3million': 2139, 'recognizing': 21886, '1200mi': 472, 'sematech': 23479, 'intention': 14897, 'roi': 22704, 'yelling': 28677, 'canceled': 6962, 'dcy': 9251, 'japaneese': 15265, 'phony': 20300, 'generals': 12683, 'reimburse': 22064, 'fokker': 12127, 'nungesser': 19043, 'ultimately': 26857, 'c5r5b8': 6809, 'd1u': 9076, 'slo': 24079, 'scrutinizing': 23349, 'sorority': 24318, 'congrats': 8302, '48fps': 2347, 'helluva': 13686, 'expert': 11452, 'pulldown': 21335, 'laserdisc': 16190, 'slowest': 24096, 'fettucine': 11842, 'alfredo': 4389, 'pivot': 20456, 'marvel': 17263, 'hemorrhoids': 13706, 'throne': 26059, 'kidneys': 15792, 'spoken': 24541, 'twisted': 26720, 'pedro': 20060, 'munoz': 18338, 'newfound': 18686, 'sinkers': 23951, 'adjusts': 4089, 'rifling': 22545, '1qt1f3': 1232, 'o7o': 19073, 'msuinfo': 18269, 'vergolin': 27509, 'euler': 11252, 'kittys': 15858, 'meowing': 17582, 'tiggers': 26116, 'ignite': 14351, 'simi': 23903, 'valleys': 27370, 'combustion': 7986, 'inspection': 14813, 'pumps': 21352, 'vaporized': 27399, '1901': 967, 'lulagos': 16877, 'cipres': 7608, 'uchile': 26780, 'admirador': 4099, 'needd': 18578, 'centro': 7273, 'computacion': 8197, 'universidad': 27047, 'chile': 7493, 'araucaria': 4921, 'mackk': 16981, 'ack': 3967, 'yankkes': 28652, '210350': 1392, '2865': 1746, '002251w': 34, '734117130': 2946, 'axe': 5423, 'acadiau': 3885, 'pools': 20700, 'severalrs': 23593, 'bold': 6188, 'herot': 13746, 'speaks': 24434, 'listens': 16621, 'hasch': 13538, 'doppleackers': 10201, 'anvil': 4766, 'primo': 21020, 'jobbed': 15418, 'deserved': 9599, 'hmmmm': 13890, 'dependable': 9531, 'credentials': 8780, 'equalizer': 11086, 'racked': 21561, 'homerman': 13967, 'underrated': 26956, 'lemme': 16383, 'goddamn': 12951, 'tempered': 25799, 'cept': 7280, 'niedenfuer': 18772, 'stump': 25076, 'skyjack': 24027, 'woofers': 28373, 'puck': 21325, 'retirees': 22410, 'trammell': 26391, 'eckersley': 10565, 'bowen': 6313, 'awake': 5406, 'fastball': 11722, '1rbp6q': 1273, 'oai': 19078, 'heh': 13655, 'rescued': 22306, 'vegr': 27468, 'cmeyer': 7806, 'bloch': 6087, 'dso': 10360, 'cunixf': 8965, 'lefthanded': 16344, 'righthanded': 22553, 'lhp': 16460, 'rhp': 22500, 'postseason': 20800, 'juggle': 15558, 'inferior': 14665, 'arno': 5015, 'silene': 23886, 'grenoble': 13172, 'c5lerr': 6791, '1j3': 1143, 'vgalib': 27560, 'xwindows': 28614, 'ensimag': 10984, 'annee': 4693, 'gwittt': 13340, 'gwitt': 13339, 'ditto': 10036, 'vulture': 27806, 'ccgwt': 7194, 'totten': 26311, 'grabber': 13037, 'cica': 7588, 'printscreen': 21039, 'clipboard': 7737, 'gtotten': 13266, '748': 3000, '1653': 813, '1246': 519, 'thurber': 26083, 'meddling': 17500, 'mlogan': 17954, 'x2313': 28517, 'mif101': 17752, 'garden': 12589, 'hurdle': 14183, 'grumbling': 13240, 'foxboro': 12270, 'prevents': 20993, 'nashua': 18478, 'mtt': 18280, 'unh': 27003, 'censorship': 7251, 'hampshire': 13435, 'chose': 7534, 'occupation': 19163, 'jazz': 15286, '____________': 3579, 'recordings': 21911, 'objectionable': 19110, 'other________________': 19553, 'controling': 8481, 'labeling': 16069, 'explanations': 11465, 'anoynamous': 4730, 'ution': 27267, 'rrrrrrr': 22829, 'shazam': 23684, 'internation': 14947, 'moley': 18041, 'minitel': 17842, 'annick': 4695, 'bureaud': 6629, 'rue': 22887, 'falguiere': 11656, '75015': 3005, 'lsk1v9inn93c': 16844, 'triangulations': 26516, 'boissonnat5': 6183, 'boissonnat': 6182, 'fortunate': 12234, 'bucky': 6543, 'webber': 28007, 'chokes': 7522, 'argon': 4973, 'uug': 27287, 'theodore': 25946, 'resulted': 22393, 'buckner': 6540, 'chelsea': 7451, 'soldier': 24247, 'dislikes': 9950, 'c5xr2w': 6835, 'dnw': 10113, 'forgiven': 12200, 'offensensitivity': 19216, 'ldaddari': 16278, 'polaris': 20639, 'addario': 4057, 'iki': 14382, 'ikimail': 14383, 'esoc1': 11177, 'logs': 16722, 'belonging': 5796, 'sovam': 24353, 'fian': 11860, 'transliterated': 26431, 'voluminous': 27745, 'frivilous': 12383, '0324': 141, '456': 2278, '2015': 1323, '973': 3519, '4983': 2364, '2226': 1481, '2106': 1395, '2256': 1499, 'esteemed': 11204, 'karnak': 15656, 'snag': 24154, 'gloom': 12909, 'doom': 10196, 'meditations': 17511, '205911': 1359, '2654': 1681, 'geesh': 12658, 'jt': 15541, '1776': 889, 'perisol': 20169, 'periterr': 20171, 'pericynthion': 20151, 'perilune': 20158, 'perizeon': 20172, '_______________________________________': 3592, '01776': 82, '3265': 1912, 'surveyed': 25368, 'hyatt': 14213, 'regency': 22028, 'initiate': 14745, 'affordable': 4210, 'keynote': 15756, 'dailey': 9102, 'plenary': 20558, 'advancements': 4135, 'commitments': 8034, 'insights': 14806, 'preconditions': 20896, 'agreements': 4271, 'timeliness': 26140, '0018': 29, '20073': 1313, '7508': 3007, 'ina': 14522, 'especial': 11181, 'mcpaper': 17444, 'shermann': 23715, 'shipley': 23737, 'lesat': 16403, 'anythingelse': 4774, 'benes': 5818, 'evrey': 11321, 'tueful': 26655, 'keach': 15688, 'patrice': 19970, 'ccw': 7210, 'workaround': 28393, 'decreases': 9349, 'alta': 4492, 'analytics': 4617, '93apr18005752': 3439, 'grywalski': 13247, 'gaf5': 12533, 'gail': 12538, 'fullman': 12447, '232537': 1543, '20672': 1365, 'grosses': 13207, 'balked': 5515, 'benched': 5807, 'gunning': 13307, 'karros': 15658, 'warm': 27912, 'relieving': 22125, 'stunk': 25077, 'jinx': 15389, 'profs': 21123, 'whooooooooshhhhhh': 28159, 'sputter': 24599, 'lt': 16852, 'afspacecom': 4227, 'goodwill': 12987, 'uccs': 26776, 'sneakers': 24170, 'rschmitt': 22842, 'shearson': 23690, 'schmitt': 23229, 'lehman': 16370, 'phew': 20268, 'hew': 13760, 'pict': 20372, 'mackerel': 16977, 'estop07': 11214, 'appstate': 4889, 'crusing': 8857, 'sysem': 25518, 'beem': 5739, 'tartarus': 25640, 'mm210': 17957, '225909': 1501, '16116': 785, 'nt3qc': 19012, 'cunyvm': 8968, 'recommened': 21893, '1993apr10': 1083, '145502': 670, '28866': 1753, '9apr199318394890': 3554, 'seperately': 23529, 'subcontracts': 25096, 'reffered': 21988, 'ther': 25957, 'marquette': 17246, 'embry': 10828, 'doees': 10142, 'provost': 21260, 'virgina': 27647, 'uah': 26762, 'barking': 5578, 'allegations': 4424, 'overrun': 19657, 'congresses': 8306, 'artice': 5056, 'congressionally': 8308, 'blatent': 6059, 'contridiction': 8479, 'understandably': 26963, 'cgschot': 7327, 'gerco': 12776, 'schot': 23241, 'poolball': 20698, 'pooltable': 20701, 'poolballs': 20699, '_gerco_': 3667, '__cgschot': 3623, 'nl__': 18826, '___________________________________': 3589, 'jbrandt': 15295, 'testers': 25873, '5900': 2572, 'xeg': 28542, 'ceg': 7238, 'imsl': 14519, 'vni': 27720, 'numerics': 19040, 'securing': 23427, 'exponent': 11492, '3gl': 2134, '4mm': 2394, 'cstom': 8912, 'callbacks': 6912, 'conforms': 8290, 'familar': 11674, 'uim': 26830, 'fo': 12110, 'wendy': 28060, '1066': 386, 'jaclyn': 15236, 'fisherg': 11974, 'egr': 10683, 'eecae': 10642, '21766': 1439, '122649': 499, '22938': 1523, 'husc3': 14199, 'fry': 12411, 'zariski': 28760, 'contestant': 8429, 'trebek': 26487, '007': 49, '931': 3413, '888': 3302, '873': 3277, 'stl': 24908, '833': 3207, '754': 3016, '474': 2316, 'vanderwal': 27388, '746': 2995, 'nym': 19061, 'tfernandez': 25903, '709': 2882, 'snf': 24176, '686': 2804, 'eyoung': 11562, 'flo': 12055, '393': 2096, 'snd': 24165, '409': 2174, 'sosa': 24328, 'vanslyke': 27397, 'grissom': 13198, '501': 2411, '479': 2323, '428': 2216, 'osmith': 19535, '454': 2275, 'nymets': 19062, '434': 2236, 'snfrancisco': 24177, '396': 2101, '397': 2103, 'destrade': 9636, '388': 2087, '383': 2074, 'garcia': 12588, 'sndiego': 24167, 'losangeles': 16773, '311': 1871, 'pagnozzi': 19772, 'bolick': 6190, 'cianfrocco': 7586, 'buechle': 6556, 'sanchez': 23059, 'laker': 16103, '087': 265, '053': 190, 'grabiner': 13041, 'c5l40c': 6784, '9lc': 3560, '1955': 1020, 'dialed': 9737, 'zowie': 28811, 'powderkeg': 20823, 'deforest': 9407, '3918': 2093, 'freon': 12358, 'steering': 24815, 'liters': 16631, 'financed': 11924, 'tenancy': 25809, 'nittmo': 18816, 'acn': 3976, 'tristant': 26558, 'syma': 25487, 'sussex': 25389, 'tristan': 26557, 'tarrant': 25638, '90c030': 3361, '640x480x32k': 2706, '800x600x32k': 3135, 'cols': 7962, 'ramdac': 21639, 'dithered': 10033, 'assembler': 5119, 'refuses': 22017, 'untried': 27130, 'grossly': 13208, 'las': 16187, 'vegas': 27465, 'mediocrities': 17507, 'bur': 6619, 'dur': 10430, '271': 1694, '1262': 536, '1278': 542, 'neon': 18618, 'mccarver': 17390, '868': 3266, '290s': 1765, 'fla': 11996, '086': 263, 'ric': 22510, '242': 1589, '399': 2107, '1237': 506, 'jiu1': 15392, 'husc11': 14198, 'haibin': 13394, 'jiu': 15391, 'rithms': 22596, 'contemplating': 8419, 'hbj': 13588, '214032': 1422, 'anderge': 4634, 'umcc': 26873, 'leon': 16396, 'mpeg_play': 18210, 'dither': 10032, 'mono2': 18069, 'pandonia': 19825, 'newmarch': 18695, 'mpeg2': 18209, 'restrained': 22382, 'pref': 20916, 'thester': 25973, '5103': 2435, 'colorview': 7956, 'befuddled': 5746, 'genuinely': 12713, 'gigolos': 12838, 'giraffes': 12857, 'geigel': 12664, 'seas': 23395, 'gwu': 13342, 'parsing': 19898, 'jogle': 15434, '1r6v3a': 1262, 'rj2': 22609, 'fg1': 11856, 'forgiving': 12202, 'cobol': 7843, 'heatonn': 13635, 'heaton': 13634, 'sammy': 23049, 'doctor': 10127, 'certainty': 7291, 'steward': 24874, 'insecure': 14797, 'freezing': 12353, 'shadowing': 23629, 'pufferfish': 21329, 'johnsh': 15444, 'mustang': 18362, '060493161931': 208, '040493161915': 158, 'iicx': 14373, 'compressor': 8183, 'caveat': 7162, 'ruined': 22895, '2gb': 1816, 'lis': 16610, 'eckart': 10563, 'dmpeg10': 10102, 'decoder': 9334, 'accompanying': 3920, 'dmpeg': 10101, 'dmplay': 10103, '352x240': 2000, 'floyd': 12080, 'steinberg': 24822, '640kb': 2699, 'vgas': 27561, 'idct': 14309, 'multiplication': 18312, 'optimum': 19420, 'coefficients': 7863, 'saturation': 23126, 'clipped': 7738, 'saturated': 23125, 'approximated': 4881, 'alternating': 4500, 'yields': 28694, 'subjectivly': 25108, 'pal': 19796, 'redish': 21944, 'inexcusable': 14656, 'rounding': 22785, '200602': 1309, '8229': 3191, 'immune': 14461, 'ravages': 21713, 'gavin': 12631, 'dictionary': 9761, 'integers': 14870, 'representing': 22261, 'counter_clockwise': 8667, 'orient': 19478, 'recurse': 21928, 'indices': 14612, 'src': 24629, 'ivnorm': 15215, 'relies': 22119, 'larsonian': 16184, 'claire': 7663, 'physicists': 20347, 'astrophysicists': 5202, 'unified': 27013, 'systematically': 25522, 'ignoring': 14361, 'suppressing': 25329, 'dewey': 9708, 'reciprocal': 21876, 'postulates': 20803, 'natures': 18502, 'discrete': 9924, 'commutative': 8059, 'magnitudes': 17038, 'euclidean': 11248, 'translational': 26428, 'vibrational': 27572, 'scalar': 23166, 'photons': 20321, 'incomplete': 14561, 'clusters': 7791, 'exploding': 11473, 'crystals': 8873, 'compressibility': 8178, 'collider': 7928, 'bonding': 6210, 'neglected': 18591, 'mysteries': 18397, '13255': 579, '97213': 3517, 'isus': 15179, '1680': 826, 'atkin': 5232, '84106': 3219, 'reciprocity': 21877, 'outsider': 19613, 'trees': 26489, 'contradictions': 8463, 'impotence': 14499, 'consistencies': 8354, 'experimentally': 11447, 'quotations': 21530, 'epicycles': 11062, 'conceptually': 8231, 'emeritus': 10837, 'uw': 27302, 'boondoggle': 6240, 'contruction': 8491, 'goofy': 12989, 'mesons': 17614, 'hyperons': 14233, 'quarks': 21478, 'colliders': 7929, 'disintegrate': 9945, 'insulation': 14858, 'insecticides': 14795, 'supercollider': 25283, 'reagon': 21809, 'absurd': 3866, 'equivalents': 11106, 'positron': 20763, 'neutralize': 18661, '531': 2472, 'lorentz': 16767, 'doppler': 10202, 'inward': 15055, 'indexed': 14597, 'unrecognized': 27099, 'dwarfs': 10455, 'consequence': 8338, 'scratching': 23327, 'mysterious': 18398, 'disc': 9895, 'correspond': 8612, 'halves': 13421, 'extinctions': 11525, 'larsons': 16185, 'accretion': 3937, 'gradually': 13054, 'disappears': 9881, 'gravitationally': 13128, 'densest': 9517, 'dispersed': 9968, 'fantasies': 11689, 'degenerate': 9414, 'revolving': 22472, 'derive': 9568, 'merging': 17598, 'unusually': 27135, 'unorthodox': 27083, 'constructed': 8388, 'constitute': 8377, 'absorbed': 3856, 'uncharged': 26915, 'photon': 20320, 'progression': 21143, 'aggregates': 4257, 'continual': 8440, 'equilibrium': 11097, 'massless': 17289, 'labels': 16070, 'rear': 21834, 'vibration': 27571, 'meteorologists': 17639, 'suppression': 25330, 'wheeler': 28112, 'priests': 21011, 'religion': 22127, 'puzzling': 21400, 'openly': 19362, 'dogma': 10152, 'consult': 8394, 'rk0vsanu': 22616, 'shameless': 23648, 'behalf': 5758, 'appoligize': 4856, 'agae': 4239, 'gaeris': 12529, 'uofr': 27139, 'energetics': 10928, '164655': 808, '11048': 411, 'willner': 28219, 'appointments': 4855, 'junior': 15578, 'fusioneer': 12489, 'zeroth': 28780, 'bothell': 6282, 'rwing': 22947, 'uuxpresso': 27292, '223040': 1486, '8733': 3279, 'sublime': 25110, '1pfiuh': 1156, '64e': 2720, 'bwr': 6686, 'pwrs': 21413, 'sodium': 24219, 'solves': 24268, 'eats': 10533, 'bitch': 6012, 'flwed': 12096, 'isolation': 15158, 'pwr': 21412, 'c51c4r': 6733, 'btg': 6528, '125205': 527, '29853': 1787, 'aplcen': 4802, 'apl': 4800, 'preceded': 20882, 'marred': 17248, 'wambsganss': 27891, 'riggs': 22548, 'helix': 13682, '8hc': 3332, '160929': 781, 'amused': 4598, 'infuriates': 14718, '7525': 3013, '2699': 1688, '27599': 1709, '231654': 1537, '14060': 629, 'rdouglas': 21771, '124722': 520, 'revolt': 22465, 'prograsm': 21141, 'geta': 12790, 'bprisco': 6333, 'prisco': 21043, 'slack': 24036, 'iesd': 14335, 'auc': 5295, 'archer': 4936, 'elysium': 10809, 'aalborg': 3790, '144520': 661, '2190': 1446, 'h48vtis': 13355, 'cop': 8548, 'madonna': 17005, 'sexium': 23601, 'uncommon': 26921, 'ifthe': 14344, 'grv': 13244, 'hutt': 14204, 'responsbible': 22365, 'gamble': 12566, 'replys': 22240, 'companys': 8069, 'organics': 19461, 'economically': 10580, 'irreplaceable': 15115, 'alternatives': 4502, 'competetive': 8118, 'reserves': 22319, 'petroleum': 20239, 'comparatively': 8072, 'bogus': 6173, 'seasonal': 23398, '19930422': 1079, '121236': 488, 'jumbo': 15571, 'defcon': 9370, 'reliablility': 22115, 'invents': 15022, 'laserdave': 16189, 'davidl': 9212, 'byab314': 6689, 'chpc': 7539, '140649': 630, 'surreal': 25359, '8520': 3240, '78713': 3075, '4332': 2235, 'uthermes': 27256, 'robink': 22653, 'puncture': 21358, 'metalization': 17628, 'insulated': 14856, 'deflating': 9404, 'bunny': 6615, 'ripstop': 22584, 'endorsed': 10919, 'authorised': 5337, 'employers': 10864, '______________________________________________________________________': 3604, '003719': 41, '101323': 338, 'pontificated': 20694, 'failsafe': 11634, 'burnt': 6648, 'routinely': 22795, 'squirting': 24623, 'similiar': 23908, 'geosynch': 12768, 'stationkeeping': 24780, 'pff': 20246, 'untended': 27127, 'shutdown': 23825, 'refunded': 22011, 'ellipse': 10786, 'dmis': 10093, 'indutrial': 14636, 'internationaly': 14952, 'defective': 9372, 'employed': 10860, 'specially': 24446, 'reconstruct': 21902, 'analytical': 4615, 'poits': 20635, 'emails': 10818, 'rsc': 22841, 'altair': 4493, 'srnelson': 24643, 'speedsail': 24481, 'admission': 4104, 'venues': 27492, '6830': 2801, 'wimp': 28228, 'arse': 5047, 'burton': 6656, 'anims': 4683, 'crappy': 8747, 'trekker': 26491, 'situnayake': 23979, '203122': 1338, '12367': 505, 'reed5575': 21965, 'evr': 11320, 'remodeled': 22164, 'sheffields': 23700, 'uppercut': 27171, 'idol': 14327, 'inviting': 15045, 'refuse': 22015, 'domination': 10176, 'koolish': 15955, 'proj': 21150, 'germanium': 12779, 'gaas': 12524, 'speculative': 24475, 'hjistorical': 13872, 'framework': 12293, 'groves': 13228, 'mcsnet': 17452, 'yayayay': 28664, 'ddsw1': 9261, 'r4938585': 21544, 'joplin': 15467, 'biosci': 5992, 'spos': 24565, 'representatives': 22259, 'honored': 13991, 'demands': 9479, 'utmost': 27271, 'objectivity': 19114, 'assessing': 5129, 'proposing': 21212, 'alford': 4387, 'vp': 27775, 'chabrow': 7332, 'chu': 7564, 'jmr': 15410, 'superconductivity': 25288, 'crawley': 8756, 'fabian': 11589, 'anser': 4732, 'fain': 11638, 'fort': 12231, 'chancellor': 7365, 'hauck': 13558, 'allied': 4440, 'underwriters': 26974, 'lanzerotti': 16160, 'mcruer': 17450, 'parkinson': 19887, 'seamans': 23386, 'keck': 15691, 'wheelon': 28113, 'r3000': 21540, 'predates': 20900, 'decstation': 9350, 'roell': 22695, 'elsa': 10795, 'winner4000': 28265, 's3': 22968, '928': 3402, 'bt485': 6524, 'metheus': 17646, '4vl': 2400, 'sgcs': 23613, 'xserver': 28586, 'x386': 28521, '1024x768x24': 355, 'reh': 22055, 'springt': 24588, 'hoch': 13907, 'weit': 28043, 'soll': 24259, 'tun': 26664, 'ja': 15226, 'zeit': 28767, '286s': 1748, 'polyn': 20678, 'viewport': 27608, 'waaay': 27827, 'hunting': 14180, '8725157m': 3276, 'unisa': 27033, 'egsner': 10689, 'ernest': 11137, 'tilde': 26126, '233805': 1551, '29755': 1782, 'aa649': 3786, 'timmerman': 26153, 'drivel': 10322, '0223': 115, 'moroney': 18129, 'hypothesized': 14241, 'perturbation': 20214, '8007': 3131, 'equivalence': 11102, 'reap': 21831, 'gutted': 13323, 'credence': 8779, 'ux2': 27317, 'metafile': 17625, 'woodfield': 28367, 'bordello': 6253, 'stayed': 24794, 'creeping': 8785, 'backstop': 5472, 'kiteball': 15854, '130652': 565, '22090': 1460, 'pollak': 20657, 'deletions': 9443, 'outburst': 19577, 'drabek': 10271, 'laughable': 16221, 'cramp': 8739, '485': 2339, 'unhappy': 27004, 'movments': 18199, 'postulated': 20802, 'spotted': 24568, 'wicked': 28170, 'cease': 7228, 'expound': 11501, 'ambrose': 4548, 'bierce': 5918, 'devil': 9693, '1r6rn3innn96': 1260, 'titans': 26176, 'pricetags': 21005, 'channui': 7379, 'nui': 19029, 'trantor': 26454, 'c4tkgm': 6714, '1v6': 1280, 'ville': 27623, 'walveranta': 27889, 'rs232': 22835, 'shopper': 23768, 'com1': 7972, 'com3': 7973, 'modems': 18001, 'rjungcla': 22615, 'cbnewsd': 7177, 'jungclas': 15577, 'naperville': 18462, 'compoments': 8158, 'commerically': 8026, 'flourishing': 12072, 'blanket': 6047, 'designates': 9608, 'certified': 7296, 'demonstarted': 9488, 'ihlpb': 14366, 'misrepresented': 17896, 'wrapping': 28445, 'transfers': 26410, 'mbh2': 17377, 'barton': 5602, 'stereoscopic': 24853, 'refresh': 22005, 'representations': 22257, '144533': 662, '6779': 2783, 'neuharth': 18654, '1pserkinnltg': 1180, 'jpopovich': 15524, 'remembered': 22154, 'redesigning': 21939, 'dpierce': 10263, 'pierce': 20383, '15apr199316461058': 761, 'loudspeaker': 16794, 'sartelle': 23099, 'pepperell': 20117, '01463': 74, 'c5juyz': 6777, 'aly': 4525, 'rws2v': 22949, 'stoakley': 24910, 'preparata': 20940, 'shamos': 23649, 'campion': 6947, '1780': 891, 'herring': 13747, 'evas': 11280, 'repackage': 22212, 'probabilities': 21066, 'adaptability': 4048, 'laying': 16254, 'wf': 28092, 'accomplishing': 3924, 'heflin': 13653, 'unprecedented': 27084, 'alleviate': 4435, 'lessons': 16411, 'formulate': 12225, 'lasting': 16199, 'assisting': 5145, 'weightlessness': 28032, 'inflight': 14686, 'spacewalking': 24386, 'experiences': 11444, 'trainers': 26384, 'fixtures': 11991, 'handholds': 13450, 'revisit': 22462, 'dingebre': 9836, 'imp': 14463, 'ingebretsen': 14721, 'increments': 14584, 'incumbered': 14586, 'aminet': 4569, 'lha': 16458, 'thunder': 26079, 'reflects': 22000, 'challenged': 7345, 'acrossed': 3995, 'vein': 27475, 'endevour': 10915, 'correlated': 8607, 'preparations': 20942, '734117444': 2947, 'derichc52gje': 9563, 'fja': 11993, 'evaluated': 11272, 'expose': 11497, 'woody': 28371, 'apana': 4786, 'elu': 10802, 'mgr': 17674, 'naplps': 18463, 'frontends': 12392, 'resonable': 22343, 'pp3': 20836, 'soley': 24252, 'libs': 16482, 'advan': 4131, 'mazeroski': 17370, 'maranville': 17186, 'postulate': 20801, 'stratomatic': 24982, 'wijkstra': 28190, 'fwi': 12504, 'marcel': 17191, 'ixos': 15222, 'xwd': 28610, 'xpr': 28577, 'hardcopies': 13493, 'louzy': 16805, 'pnmtops': 20606, 'graylevel': 13133, 'xwdtopnm': 28612, 'xwdfile': 28611, 'ppmtopgm': 20845, 'noturn': 18963, 'rotated': 22766, 'stinks': 24901, 'rudyc52rbd': 22883, '86w': 3270, 'victims': 27580, 'brainwashing': 6352, 'ehgasm2': 10694, 'cylindrical': 9061, 'conveniently': 8496, 'emailed': 10816, 'hu6': 14116, '7rx': 3116, '482': 2332, '465951': 2304, '466666': 2305, 'shankley': 23652, '113223': 426, '12092': 482, 'subdirs': 25100, 'correcting': 8600, 'appealing': 4825, 'curveballs': 9003, 'pain': 19776, 'winmarks': 28263, '42m': 2224, 'yielded': 28693, 'benchmarked': 5810, 'wintach': 28271, 'c5owcb': 6801, 'n3p': 18417, 'ching': 7501, 'heminger': 13701, 'logistician': 16716, 'reigns': 22060, 'supreme': 25332, 'sichase': 23839, 'csa2': 8884, 'chase': 7420, '735606045': 2977, 'protagonists': 21224, 'gondola': 12975, 'fob': 12112, 'natives': 18496, 'patient': 19967, '23apr199317452695': 1573, 'ritual': 22598, 'pity': 20454, 'turkey': 26678, 'sensible': 23506, 'jbickers': 15290, 'templar': 25800, 'actrix': 4023, 'bickers': 5908, 'tap': 25623, '125147': 525, '10665': 387, 'gl2p1': 12876, 'pic2hl': 20359, 'hamlab': 13427, 'picpal': 20370, 'radioactivity': 21578, 'kraftwerk': 15986, 'vincenzo': 27628, '2983': 1785, '2929': 1772, '1q1kia': 1197, 'gg8': 12803, '19930408': 1076, '043740': 169, '1q09ud': 1196, 'ji0': 15377, 'b2': 5439, 'ecologies': 10574, 'eveil': 11282, 'mcguire': 17417, 'coem': 7864, 'tent': 25825, 'washed': 27934, 'bs': 6514, 'bathroom': 5648, 'regulation': 22052, 'vitiello': 27691, 'tfd': 25902, 'coplex': 8557, '502': 2413, '8654': 3261, 'saz': 23153, 'ell': 10782, '959sa': 3497, 'barrym': 5596, 'mednick': 17513, '8910782': 3314, 'sunvax': 25271, '104107': 368, '5742': 2543, 'stellenbosch': 24832, 'chessboard': 7466, 'chesspieces': 7468, 'artistic': 5063, 'msmilor': 18254, 'skat': 23997, 'smilor': 24132, 'internships': 14956, '1psaifinnfc5': 1175, 'internship': 14955, 'graduating': 13057, 'masters': 17293, 'applyi': 4852, 'macdac': 16953, 'nyone': 19064, 'mogal': 18024, 'deadhead': 9267, '1993mar17': 1109, '185725': 947, '13487': 600, 'rchui': 21751, 'wo': 28339, 'chui': 7569, 'terminater': 25836, 'lawnmover': 16242, 'terminator': 25838, 'acheive': 3952, 'bim': 5954, 'contiguous': 8434, 'distracted': 10013, 'bypassing': 6693, 'uniprocessor': 27030, 'sparc10': 24404, 'onyx': 19339, 'smp': 24146, 'realityengine': 21817, 'realityengine2': 21818, 'jagged': 15244, 'aliased': 4406, 'unfortunate': 26994, 'distraction': 10015, 'immersed': 14455, 'dvs': 10452, 'sens8': 23498, 'sausalito': 23137, 'worldtoolkit': 28412, 'postgraduate': 20789, 'npsnet': 18982, 'gvs': 13333, 'simation': 23899, 'paradigm': 19848, 'visionworks': 27668, 'audioworks': 5300, 'performer': 20143, 'binocular': 5973, 'omni': 19303, 'orientational': 19480, 'hamlets': 13430, 'smattering': 24119, 'cyberglove': 9044, 'cricket': 8791, 'carlsbad': 7060, 'helmet': 13687, 'pleasantville': 20549, 'mtd': 18275, 'pimental': 20401, 'texiera': 25890, 'mirage': 17865, 'kreuger': 15994, 'virtual_worlds': 27652, '7311': 2935, '9l': 3559, '1460': 675, '964': 3506, '8671': 3265, 'scgraph': 23205, 'norad': 18898, '513': 2443, '0674': 225, 'accessed': 3904, '22621u': 1504, '06179397': 215, '00044513': 13, '00000': 3, '12649': 538, '22621': 1503, '0022': 33, '2850': 1739, '0004246': 11, '7332': 2939, '0941': 284, '92991629': 3406, '1084': 393, '023b': 120, '22623u': 1506, '37312705': 2057, '00041032': 9, '11888': 458, '22623': 1505, '0000': 2, '0004422': 12, '5967': 2579, '92653917': 3401, '803': 3141, 'immaculate': 14447, 'triumphant': 26563, 'switchpitch': 25467, 'moeller': 18021, 'simmon': 23909, 'unhittable': 27005, 'candeleria': 6967, 'patterson': 19978, 'stead': 24802, 'slyke': 24112, 'thye': 26090, 'svan': 25405, 'lefts': 16348, 'rthe': 22861, 'redus': 21960, 'peaked': 20049, 'pravin': 20872, 'plutonium': 20588, 'pact': 19755, 'develope': 9679, 'cycled': 9051, 'warhead': 27910, 'stockpiles': 24919, 'pelletized': 20077, 'ceramic': 7281, 'contaminated': 8416, 'deter': 9655, 'atomics': 5249, 'icem': 14287, 'full_name': 12445, '26417': 1677, 'realise': 21812, 'cilek': 7593, 'edimg': 10603, 'willard': 28205, 'pimentel': 20402, 'encod': 10892, '8814': 3293, 'institutional': 14841, 'rfd': 22486, 'otg': 19550, 'telematic': 25764, 'developement': 9681, 'incorporate': 14570, 'ivr': 15216, 'flc': 12027, 'accomodated': 3917, 'plaform': 20488, 'sdk': 23372, 'simte20': 23921, '95901': 3495, '30347': 1845, '0901': 275, '985': 3537, '1198': 462, 'epimntl': 11064, 'gisatl': 12865, 'vdbsan': 27446, 'uumind': 27288, 'binkley': 5969, 'rug': 22891, 'pco204a': 20025, 'faculteit': 11619, 'letteren': 16419, 'rijksuniversiteit': 22563, 'elysian': 10808, 'lazarus': 16259, 'katarina': 15662, 'mcglaughlin': 17414, 'codex': 7859, 'canton': 6988, 'punchy': 21357, 'jftm': 15363, 'helf': 13672, 'everbody': 11294, 'airships': 4327, '12424': 515, 'parkway': 19889, '32826': 1920, '5030': 2417, '5059': 2422, 'mart4678': 17256, 'mach1': 16960, 'wilfrid': 28199, 'laurier': 16235, '68h': 2809, 'soooo': 24308, 'dchien': 9241, 'hougen': 14042, 'chien': 7487, 'seasnet': 23396, 'osculating': 19528, 'gsm': 13256, 'preferable': 20921, '2x': 1827, 'a3': 3769, '7x': 3121, 'a30': 3770, 'i5': 14247, 'e24': 10481, '4x': 2401, 'sma': 24114, 'ecc': 10549, 'omg': 19300, 'ascending': 5076, 'pom': 20686, 'pericentre': 20150, 'tra': 26348, 'hap': 13476, 'apocentre': 4807, 'hpe': 14080, '167290000000000000e': 822, '829159999999995925e': 3202, '692307999999998591e': 2817, '899999999999999858e': 3326, '184369999999999994e': 933, '336549999999999955e': 1952, '359999999999999943e': 2022, '133941270127999174e': 592, '191344498719999910e': 977, '167317532658774153e': 824, '829125167527418671e': 3201, '691472268118590319e': 2814, '899596754214342091e': 3324, '184377521828175002e': 934, '336683788851850579e': 1953, '153847166458030088e': 731, '133866082767180880e': 590, '192026707383028306e': 988, 'kepko': 15728, 'lkepko': 16652, 'igpp': 14363, 'bio1': 5977, 'navi': 18512, 'fourie': 12263, 'joubert': 15482, 'pretoria': 20986, 'zeno': 28774, 'histograms': 13849, 'drek': 10305, 'syndication': 25506, 'rcasteto': 21748, 'watsol': 27959, 'castelletto': 7110, 'july26': 15570, 'aug6': 5305, 'aug30': 5304, 'sept10': 23534, 'opponents': 19391, 'ronc': 22730, 'astelletto': 5167, '2546': 1643, '778': 3057, '843': 3226, 'allocating': 4445, 'subcontractors': 25095, 'commercialization': 8020, 'jsut': 15540, 'seoparate': 23519, 'hemoraging': 13705, 'suprise': 25333, 'overheads': 19638, 'overruns': 19658, 'resuply': 22398, 'framming': 12295, 'ripple': 22583, 'algorithmic': 4400, 'brushmapping': 6508, 'brushmaps': 6509, 'objs': 19116, 'backdrops': 5460, 'animted': 4684, 'retail': 22400, 'renderering': 22184, 'kja': 15860, 'arbeitman': 4923, 'fishkill': 11976, 'pinchrunner': 20404, 'rightfield': 22551, '1qqob2innqev': 1229, 'arounds': 5023, 'pep': 20115, 'instruction': 14847, 'kncukle': 15891, 'lafcol': 16092, '1psvouinna2l': 1194, 'discarcina': 9897, 'looney': 16746, '5029': 2415, '5033': 2419, '4413': 2250, 'futile': 12493, 'wmiler': 28334, 'miler': 17776, '000062david42': 7, '041493003715': 164, 'ltm1': 16855, 'edutainment': 10635, 'disseminating': 9989, 'creativity': 8775, 'murals': 18342, 'interfacing': 14925, 'playground': 20538, 'recreational': 21920, 'planetariums': 20501, 'retailers': 22402, 'hereby': 13730, 'machinelets': 16967, 'bulldozerlet': 6587, 'quarry': 21479, 'machinelet': 16966, 'digitizes': 9812, 'stopping': 24942, 'suspended': 25383, 'servo': 23567, 'bulldozerlets': 6588, 'traveling': 26465, 'dmodem': 10096, 'shovels': 23800, 'solemn': 24251, 'photographer': 20308, 'pulley': 21337, 'traction': 26361, 'facilitates': 11602, 'blending': 6071, 'enjoyed': 10965, 'globally': 12904, 'recreation': 21919, 'moonlighters': 18104, 'illuminating': 14398, 'david42': 9210, 'rob47': 22644, 'dash': 9177, 'hyson': 14242, 'jzer0': 15603, 'vril': 27787, 'tiggertoo': 26117, 'hatter': 13557, 'jogden': 15433, '2400bd': 1579, '9600bd': 3501, 'jzer': 15602, 'mislead': 17886, 'grievance': 13186, 'grew': 13174, 'sped': 24476, 'gt': 13260, 'archaic': 4933, 'bandwidths': 5553, 'capacities': 6998, 'uncompetitive': 26922, 'multiprocessing': 18318, 'purchasers': 21372, 'r4400': 21543, 'becausing': 5723, 'misunderstandings': 17918, 'attempting': 5268, 'annoy': 4712, 'onesy': 19323, 'twosey': 26727, 'generations': 12690, 'demanding': 9478, 'purchases': 21373, 'viability': 27568, 'kicks': 15785, '100km': 328, 'phrased': 20333, 'cosmospheres': 8641, 'padgett': 19758, 'ttacs': 26635, 'thenet': 25944, 'lubbock': 16859, '79409': 3088, '42042': 2201, '3653': 2037, 'hijakk': 13809, '1psghn': 1184, 's7r': 22970, 'c4t3k3': 6712, 'tubing': 26649, 'aquanauts': 4904, 'cyclically': 9053, 'breather': 6390, '160316': 776, '9170': 3384, 'c5sjdp': 6816, 'airliner': 4317, '5g': 2594, 'attract': 5283, 'gurantee': 13314, 'c5l9vc': 6787, '3r6': 2141, 'onions': 19326, '030934': 138, '23187': 1538, '133620': 587, 'bates': 5644, '053221': 191, '11240': 422, 'canal': 6957, 'transaltes': 26397, 'handgun': 13449, 'averaged': 5380, 'maynardverse': 17365, 'mystical': 18400, 'patiently': 19968, 'attributing': 5290, 'greatness': 13144, 'racecar': 21553, 'intelligently': 14884, 'congratulate': 8303, 'elated': 10730, 'intervening': 14987, 'rlennip4': 22624, 'lennips': 16391, '9209': 3392, 'pavo1': 19990, '23rd': 1575, 'chicken': 7481, 'pox': 20832, 'blind': 6076, 'austen': 5325, 'cti': 8926, 'gibbons': 12820, '1998': 1116, 'acquainted': 3982, 'europeans': 11259, 'canadians': 6956, 'consultation': 8397, 'assets': 5133, 'preserving': 20964, 'capabilitiaes': 6994, 'reiterated': 22078, 'redesigned': 21938, 'preserve': 20962, 'roald': 22639, 'sagdeev': 23009, 'advisor': 4157, 'stringent': 25022, 'drchambe': 10299, 'tekig5': 25749, 'impatient': 14471, 'egyptian': 10691, 'cultures': 8960, 'rennaisance': 22200, 'gelling': 12668, 'yarns': 28658, 'kennu': 15722, 'falck': 11654, 'telecomm': 25758, 'c5mv2n': 6797, '49t': 2369, 'frandsen': 12309, 'tweaked': 26703, 'et4k': 11220, 'dumps': 10415, 'declaration': 9323, 'linus': 16600, 'torvalds': 26299, 'posix': 20764, '020021': 100, '186145': 952, 'hurtful': 14193, 'crushing': 8856, 'stalled': 24702, 'speulate': 24497, 'drifts': 10315, 'callison': 6918, 'swoon': 25475, 'jkatz': 15398, 'katz': 15666, 'triumphs': 26565, 'privileged': 21052, 'schriever': 23244, 'intercontinental': 14912, 'toilet': 26220, 'hearken': 13629, 'destined': 9634, 'swell': 25443, 'refurbish': 22012, 'minuteman': 17856, 'legacy': 16351, 'enthusiasm': 11003, 'mistakes': 17913, 'impetus': 14477, 'firts': 11969, 'discipline': 9905, 'tirelessly': 26169, 'elegantly': 10752, 'weld': 28049, 'undoubtably': 26981, 'transcontinental': 26403, '1920': 987, 'ladner': 16089, 'grandfathers': 13079, 'signaled': 23866, 'impasse': 14470, 'underscored': 26959, 'magnificent': 17034, 'adversaries': 4140, 'temptations': 25807, 'succumb': 25176, 'colleagues': 7913, 'exhausts': 11396, 'torch': 26286, 'semmett': 23487, 'gmuvax2': 12937, 'gmu': 12936, 'emmett': 10849, 'mason': 17278, 'fairfax': 11644, 'unchanged': 26914, 'airframe': 4314, 'powerplant': 20830, 'tupolev': 26671, 'iluchine': 14411, 'migoyan': 17759, 'schooled': 23237, 'mai': 17048, 'mig23': 17755, 'yak': 28638, 'cockpit': 7847, 'expecially': 11422, 'antiquated': 4755, 'poljot': 20655, 'quartz': 21487, 'watches': 27949, 'monuments': 18097, 'theatres': 25934, 'halls': 13415, 'competitions': 8123, 'oleg': 19276, 'samelovich': 23047, 'certificate': 7293, 'meals': 17467, 'excursions': 11375, '3500': 1991, '109147': 396, 'marksistskaja': 17237, '411989': 2182, 'polex': 20643, 'passport': 19944, 'receipt': 21859, 'entrance': 11013, 'hesitate': 13755, 'edmund': 10620, '1pgdno': 1159, '3t1': 2144, 'northrup': 18920, 'fairchild': 11643, 'grumman': 13241, 'sperry': 24496, 'nassau': 18482, 'rbd': 21742, 'uncontrolled': 26926, 'criticizing': 8811, 'ccraig': 7203, 'nmt': 18836, 'catherine': 7144, '0x': 299, 'ss24': 24653, 'iies': 14375, 'seams': 23388, 'blisters': 6081, 'reliving': 22131, 'danj': 9140, 'jacobson': 15238, 'merlot': 17608, 'austria': 5330, 'grpahics': 13235, 'cadence': 6864, 'mapgen': 17177, 'plotgen': 20567, 'seismicity': 23459, 'isdres': 15138, 'urf': 27190, 'icl': 14294, 'sw2001': 25417, 'fredriksson': 12336, 'swe2001': 25429, 'baseplate': 5621, 'narrative': 18470, 'detonations': 9667, 'olevitch': 19280, 'bilinsky': 5936, 'ragraca': 21602, 'vela': 27478, 'graca': 13043, '000th': 18, 'krueter': 16002, 'skeeter': 24000, 'thurmond': 26086, 'reuben': 22430, 'doherty': 10154, 'honeycutt': 13984, 'goose': 12991, 'eckersly': 10566, 'eckerseley': 10564, 'wjr': 28319, 'unanimously': 26895, 'oved3b': 19627, 'petter': 20241, 'tro': 26571, 'knoll': 15907, '1qu36i': 1234, 'kh7': 15769, 'dux': 10445, 'xviewgl': 28606, 'xviewgl_v1': 28607, 'fairlane': 11648, 'ovep': 19629, 'dkelo': 10078, 'msmail': 18253, 'pepperdine': 20116, 'kelo': 15711, '____________________________________________________': 3594, 'pepvax': 20119, 'tactics': 25555, 'channeling': 7377, 'bums': 6603, 'recalled': 21856, 'analytically': 4616, '734063192': 2945, '5apr199318045045': 2586, 'impossibility': 14497, 'measuring': 17486, '_nucleus_': 3705, 'coma': 7974, '17th': 905, 'satruday': 23121, 'noe': 18856, 'mailaddress': 17053, 'baseballs': 5612, '123433': 504, '1r96hb': 1266, 'kbi': 15678, 'unionist': 27027, 'priviledge': 21051, 'forbearers': 12172, 'historians': 13850, 'poli': 20647, 'socialist': 24209, 'hardworking': 13506, 'egg': 10677, 'dstos3': 10368, '6x6x6': 2855, 'devareaux': 9676, 'beter': 5865, 'toughest': 26321, 'pinella': 20406, '181509': 916, '175117': 875, '1848': 941, '083731': 257, 'informative': 14709, 'uphrrmk': 27161, 'parody': 19890, 'chuckle': 7568, 'starving': 24762, 'aloud': 4474, 'buffet': 6563, 'holderman': 13935, '1317': 572, 'mholderm': 17680, 'jscprofs': 15537, 'geode': 12722, 'strongback': 25035, 'centrifuge': 7271, 'remonte': 22165, 'srms': 24641, 'pod': 20617, 'thrusting': 26074, 'structurally': 25043, 'constrains': 8383, 'circulated': 7619, 'eventual': 11290, 'footprint': 12168, 'vent': 27488, 'h2': 13353, 'sofi': 24223, 'erodes': 11140, 'sheath': 23691, 'contaminating': 8417, 'micrometeor': 17712, 'permits': 20183, 'gyro': 13345, 'desaturation': 9576, 'kangaroos': 15634, 'wernher': 28069, 'jaufrecht': 15275, '0096a95c': 51, 'a0cbe0e8': 3754, 'coouple': 8547, 'neagle': 18547, '286165': 1743, 'bolsheviks': 6193, 'bullshitviks': 6595, 'yevgeny': 28686, 'yevtechenko': 28687, 'kruzifix': 16006, 'pc386': 20013, 'chia': 7475, '9403': 3455, 'harti': 13530, 'mikro': 17765, 'hartmann': 13532, 'behse': 5765, 'genoa': 12705, 'mailgzrz': 17058, '1qpf1r': 1227, '9ti': 3565, 'tuberlin': 26647, 'zrz': 28812, 'hash': 13539, '7000series': 2862, 'ol': 19263, 'buns': 6616, 'hominum': 13975, 'sentences': 23515, 'howl': 14068, 'bias': 5895, 'completly': 8149, 'seperating': 23530, 'symptom': 25496, 'narrowly': 18472, 'reitereate': 22079, 'timet': 26149, 'indicative': 14609, 'assesment': 5126, 'consistant': 8351, 'guests': 13282, 'cheketts': 7450, 'wilpon': 28223, 'costas': 8647, 'cataldi': 7122, 'blanketing': 6048, 'interjects': 14935, 'celebrities': 7244, 'styles': 25089, 'jm': 15404, 'transcend': 26401, 'mentality': 17571, 'evident': 11311, 'iggles': 14348, 'egging': 10679, 'overnight': 19650, 'sportstalk': 24561, 'weekends': 28021, '4pm': 2395, 'fatso': 11737, 'froot': 12395, 'loyalties': 16826, 'matd': 17298, 'hilarious': 13810, 'missanelli': 17898, 'novice': 18969, 'racism': 21560, 'grating': 13123, 'nerves': 18629, 'knicks': 15898, 'howie': 14067, 'sixers': 23981, 'flyers': 12101, 'wysp': 28507, 'stern': 24856, 'opcy': 19356, 'sro': 24644, 'likelyhood': 16538, 'rightfielder': 22552, 'victors': 27584, 'uncorks': 26928, 'po5': 20612, 'championship': 7360, 'billlee': 5951, 'warming': 27914, 'drugs': 10340, 'jroberts': 15530, 'wkshop': 28324, '1024x768x65000': 356, 'gws': 13341, '16m': 839, '800x600x24bit': 3133, 'hanover': 13470, 'pef1': 20069, 'enrico': 10980, 'palazzo': 19800, 'detected': 9649, 'dector': 9352, '_think_': 3737, 'annulus': 4719, 'annuli': 4718, 'voila': 27731, 'inde': 14589, 'pendent': 20087, 'nai': 18442, 'afield': 4215, 'peterf': 20233, 'oddjob': 19193, '1qi008innphe': 1204, '9802': 3533, '1134': 428, 'abberation': 3813, 'duluth': 10410, 'phylo': 20340, '1ra2painn68s': 1268, 'wsi': 28478, 'abstractsoft': 3865, 'elemental': 10755, 'fineman': 11934, 'toes': 26215, 'swap': 25420, 'uuencoded': 27286, 'brass': 6365, 'brien': 6427, 'brein': 6399, 'counntries': 8661, 'surveillance': 25366, 'ethnocentric': 11234, 'usian': 27226, 'xussr': 28598, 'grazing': 13135, 'detects': 9654, 'appended': 4835, 'thomson': 26019, 'mclean': 17432, 'geodetic': 12743, 'takabe': 25573, 'masao': 17271, 'itabe': 15182, 'toshikazu': 26301, 'aruga': 5069, 'tadashi': 25557, 'issn': 15171, '0033': 39, '801x': 3138, 'rrl': 22827, 'jas': 15271, 'effectivenes': 10659, 'sato': 23120, 'toru': 26298, 'kayama': 15673, 'hidetoshi': 13788, 'furusawa': 12485, 'akira': 4343, 'kimura': 15820, 'iwane': 15219, 'rpn': 22821, '1343': 596, 'scattering': 23191, 'discriminate': 9926, 'echoes': 10559, 'undesired': 26977, 'trail': 26378, 'atmospherics': 5244, 'ohzora': 19251, 'exos': 11413, 'inooka': 14775, 'fukao': 12439, 'kato': 15665, 'uji': 26835, 'unions': 27028, 'mst': 18267, 'troposphere': 26580, 'radars': 21565, 'amplifier': 4587, 'feeds': 11786, 'enables': 10880, 'dividing': 10049, 'subarrays': 25093, 'microsec': 17721, 'zenith': 28772, 'mum': 18326, 'shoichiro': 23762, 'tsuda': 26633, 'toshitaka': 26302, 'susumu': 25397, 'cospar': 8642, 'iaga': 14252, 'scostep': 23304, 'workshops': 28404, 'espoo': 11187, '0273': 129, '1177': 454, 'incoherent': 14555, 'pontianak': 20693, 'kalimantan': 15625, 'indonesia': 14626, 'monostatic': 18077, 'supervision': 25308, 'msilverm': 18248, 'mnemosyn': 17972, '194103': 1008, '8810': 3291, 'marlines': 17243, 'buechelle': 6555, 'aquino': 4908, 'armstrong': 5012, 'hammond': 13433, 'marline': 17242, 'middlemen': 17736, 'anf': 4655, 'klink': 15879, 'assenmacher': 5123, 'mcelroy': 17406, 'geddy': 12653, 'ajpat': 4336, 'amy': 4603, 'ole': 19275, '231903': 1539, '4045': 2166, 'resourse': 22351, 'mailnote': 17060, 'succesfully': 25167, 'solaris': 24243, 'portability': 20726, 'scenary': 23196, 'atchison': 5215, 'cowardlylion': 8707, '121202': 487, '100648': 322, 'ojeda': 19256, 'haircut': 13400, 'plagiarisms': 20489, '7961': 3093, 'tychay': 26732, 'terrence': 25850, 'chay': 7425, 'appsoft': 4888, 'messes': 17620, 'imageviewer0': 14427, '9a': 3553, 'behaves': 5759, 'drw': 10346, 'alphachannel': 4483, 'imageviiewer0': 14428, 'recognizable': 21882, 'terrychay': 25860, '2908404': 1764, 'undernet': 26950, '73525': 2973, 'gzip': 13348, 'dkusswur': 10081, 'depaul': 9529, 'kusswurm': 16038, 'annimation': 4698, 'c5qiv3': 6805, 'h0o': 13350, 'revb': 22441, 'temporal': 25803, 'filmpak': 11913, 'sugarman': 25200, 'umb': 26868, 'garman': 12595, 'shaft': 23633, 'tucker': 26651, 'encoder': 10895, '965': 3507, '3408': 1965, '6172876077': 2649, '6177313637': 2650, 'goguen': 12961, 'eclipsed': 10568, 'ingress': 14729, 'egress': 10685, 'photometric': 20315, 'refining': 21991, '3100': 1870, 'soma': 24271, 'l21': 16055, 'l24': 16057, 'odell': 19197, 'jdg': 15302, 'scn5': 23282, 'disappearance': 9878, 'inaccessible': 14525, 'calar': 6884, 'airmasses': 4321, 'ukraine': 26843, 'fainter': 11640, 'fertile': 11833, 'fared': 11700, 'mcmurty': 17439, 'lilliquist': 16549, 'overhyped': 19639, 'luciano': 16863, 'mcweekly': 17456, 'franjion': 12310, '734996049': 2965, 'franjione': 12311, 'grubbing': 13237, '092051': 280, '19814': 1056, 'd88': 9079, 'jwa': 15595, 'hemul': 13707, 'wtte': 28484, 'z2442b4w164w': 28745, 'apda': 4793, 'macwireframe': 16993, 'royalties': 22809, '737': 2980, 'knowledgeable': 15915, '5418': 2489, '734792933': 2955, 'ordinance': 19449, 'flamsteed': 12009, 'rgo': 22493, 'surplus': 25353, 'scrap': 23323, 'gunpowder': 13308, 'impoortance': 14488, 'daysis': 9226, 'crustal': 8860, 'purturbations': 21385, 'habiting': 13375, 'gallileo': 12563, 'footage': 12165, 'spliced': 24530, '173236': 862, '14321': 649, 'esca': 11165, 'sandra': 23069, 'snuck': 24192, 'behold': 5764, 'appier': 4839, 'tripple': 26553, 's901924': 22971, 'mailserv': 17062, 'cuhk': 8950, 'knell': 15895, 'wksb14': 28323, 'c4m8e5': 6711, 'aud': 5296, 'c4kvjf': 6710, '4qo': 2397, 'metares': 17631, 'crb7q': 8764, 'randale': 21646, 'launchpad': 16233, 'undefined': 26937, 'synonymous': 25508, 'crb': 8763, 'unobservable': 27077, 'constructs': 8393, 'inferred': 14668, '7272': 2925, 'moto': 18170, 'ldawes': 16279, 'uahcs2': 26763, 'dawes': 9218, 'squeegee': 24614, 'gilardi': 12840, 'strokeadjust': 25030, 'endpoint': 10921, 'snapping': 24159, 'endpoints': 10922, 'emulate': 10872, 'new_coord': 18672, 'old_coord': 19265, 'trunc': 26601, 'spotting': 24569, 'territory': 25857, 'precious': 20890, 'metals': 17630, 'vapour': 27401, 'saver': 23140, 'drought': 10335, 'irrigation': 15118, 'imense': 14441, 'mortalities': 18143, 'charity': 7405, 'deposits': 9547, 'sstick': 24668, 'coconut': 7850, 'porter': 20731, 'snoopy': 24184, '1pqlhninn8k1': 1169, '183303': 927, '6442': 2713, 'jna8182': 15414, 'dta': 10373, 'arjed': 4997, 'xmemory': 28567, 'dmorfx': 10099, 'aaplay': 3800, 'tp': 26340, 'durned': 10436, 'jna': 15413, '32850': 1923, 'banbury': 5546, '2406': 1585, 'hcrlgw92': 13594, 'collinear': 7932, 'coplaner': 8556, 'bisectors': 6008, 'dq': 10268, 'coincident': 7884, 'numerically': 19039, 'bd': 5691, 'ox2': 19695, '6nn': 2849, '273211': 1699, 'aad': 3789, 'scr': 23316, 'siemens': 23849, 'datri': 9199, 'lovecraft': 16808, 'weyland': 28091, 'yutani': 28740, 'xgif': 28550, 'grandfather': 13078, 'pbenson': 20005, 'ecst': 10587, 'csuchico': 8915, 'benson': 5827, 'chico': 7483, 'cscihp': 8891, 'nermal': 18625, 'santarosa': 23083, 'jasper': 15274, 'winjpeg': 28260, 'photofinish': 20306, 'renggli': 22198, 'masg1': 17274, 'loris': 16770, '_simple_': 3719, 'pane': 19826, 'delete': 9439, '6934230': 2819, '6934303': 2820, '1015': 339, 'lausanne': 16236, '153725': 730, '17543': 879, 'veek': 27461, '_get': 3668, 'nigger': 18783, 'field_': 11875, 'berras': 5853, 'stultz': 25074, 'phad': 20253, 'deflate': 9402, 'drunken': 10345, 'arches': 4937, 'sobered': 24204, 'lewism': 16436, 'equalateral': 11082, 'autocarto': 5348, 'c5jsxs': 6776, '1m0': 1147, 'jlroffma': 15403, 'roffman': 22698, 'definately': 9389, '_jewish': 3684, 'times_': 26145, 'joec': 15427, 'cyprs': 9068, 'cipale': 7606, 'cypress': 9067, 'c56zra': 6748, '75n': 3028, 'undefeated': 26936, 'believers': 5781, 'pronouncements': 21183, 'prayer': 20873, 'amply': 4589, 'roller': 22713, 'cooley': 8531, 'shower': 23806, 'detracters': 9669, 'unpredictable': 27085, 'certainity': 7289, 'godot': 12954, 'impersonating': 14476, 'ursula': 27197, 'bike': 5931, 'celtics': 7250, 'seahawks': 23381, 'sonics': 24299, 'uck': 26783, 'buzz': 6682, 'aldrin': 4377, 'shmuel': 23751, 'mapsut': 17184, 'cymk': 9064, 'quark': 21477, 'lintronix': 16599, 'wilshire': 28224, 'hills': 13817, '90212': 3349, '8971': 3319, '8872': 3300, 'feiner': 11797, 'yk4': 28697, 'nsiad': 18999, '71fs': 2907, '6241': 2664, '121925': 493, '14451': 660, 'microware': 17728, 'jejones': 15320, 'signetics': 23874, 'dma': 10089, 'jscotti': 15536, 'lpl': 16832, 'scotti': 23308, 'discoverer': 9918, '85721': 3244, 'salazar': 23025, 'riles': 22566, '627': 2671, 'brookens': 6476, 'lyons': 16927, 'oberkfell': 19095, 'presley': 20968, 'schu': 23247, 'worthington': 28426, 'gantner': 12579, 'organizing': 19473, 'snazzy': 24163, 'knights': 15901, 'gallant': 12558, 'carelcomp': 7048, 'xgks': 28551, 'salesman': 23029, 'lappeenranta': 16169, 'rebounded': 21850, 'stirred': 24905, 'childhood': 7490, 'baldschun': 5513, 'sole': 24249, 'possesion': 20767, 'schantz': 23207, 'boozer': 6250, 'roebuck': 22694, 'overused': 19672, 'desperate': 9625, 'sharpest': 23674, 'inetersting': 14649, 'extro': 11545, 'ucc': 26775, 'merel': 17594, 'complacency': 8135, 'overtook': 19670, 'destabilized': 9632, 'tradition': 26369, 'comics': 8000, 'destabilization': 9631, 'brezhnev': 6417, 'triggered': 26534, 'mcvax': 17455, 'reject': 22080, 'rarity': 21681, 'scranton': 23322, 'underwhelming': 26973, 'inesc': 14646, 'porto': 20739, 'dsuit': 10370, 'makefile': 17088, 'judd': 15547, 'ferrar': 11831, 'gregt': 13169, 'discard': 9898, 'backface': 5463, 'scn2sff': 23281, 'reworked': 22477, 'irit2scn': 15102, 'nffclean': 18731, 'nffp2pp': 18732, 'sol2scn': 24241, 'acad11': 3880, 'nff2sff': 18730, 'mol2scn': 18034, 'sff': 23607, 'cpp': 8719, 'pdb2scn': 20034, 'picmix': 20369, 'picblend': 20361, 'ppmmix': 20842, 'chem2scn': 7453, 'ppmblend': 20841, '3ds2scn': 2125, 'iv2scn': 15211, 'rtrac820': 22866, 'arj': 4996, 'utils820': 27266, 'image820': 14416, 'acosta': 3980, 'mompilher': 18052, '321006': 1901, '4200416': 2199, 'kewageshig': 15749, 'flocking': 12060, 'boids': 6178, '0______________________________________________________________________0': 292, 'deluxeý': 9473, 'virus': 27656, 'stooges': 24936, 'apparenly': 4820, 'herm': 13733, 'winningham': 28268, 'curly': 8981, 'circumvent': 7625, 'resigning': 22329, '193829': 1004, 'belive': 5785, '25aircraft': 1654, '93122': 3421, 'darin': 9152, 'keener': 15694, '150545': 701, '24058': 1584, 'transporters': 26451, 'usualy': 27245, 'slimy': 24073, 'gills': 12848, 'python': 21418, 'valo': 27371, 'cvtstu': 9033, 'cvt': 9032, 'stuba': 25058, 'slovak': 24091, 'bratislava': 6366, 'slovakia': 24092, 'sk2eu': 23996, 'sk': 23995, 'replyto': 22241, 'c4ihqm': 6709, '7v3': 3120, 'ocr': 19178, 'wsmrsimtel20': 28480, 'deskpub': 9622, 'ocr104': 19179, 'simibm': 23904, 'lst': 16849, '93310': 3424, '910424': 3369, 'dick1': 9754, 'herahera': 13725, '133703': 588, '28131': 1728, 'talkin': 25590, 'foresaw': 12190, 'tournament': 26327, 'peril': 20157, 'exploded': 11471, 'tuned': 26666, 'inet': 14648, '011605': 66, '909': 3360, '1bit': 1128, 'c_1': 6842, 'c_2': 6843, 'compinations': 8134, 'choises': 7520, 'lc2b': 16270, 'po3': 20610, 'denotes': 9515, 'hpr': 14087, 'phenolic': 20265, 'graphite': 13104, 'nozzles': 18975, 'corresponds': 8618, 'doubling': 10221, 'limbo': 16553, 'legalities': 16354, 'societies': 24211, 'uncertified': 26913, 'legit': 16364, 'jonesk': 15462, 'ur': 27180, 'sanford': 23074, '173224': 861, '13148': 571, 'ur117': 27181, '045040': 176, '10480': 372, 'drafted': 10276, 'ezzie': 11566, 'lucs2': 16870, 'lancs': 16122, 'daze': 9229, 'lancaster': 16120, 'wellington': 28056, 'regent': 22029, 'ish': 15141, '_ccc_c_': 3647, '_ccc_c_____chumphre': 3648, 'nz_______________________________': 19071, 'tgl': 25911, 'faq_733898461': 11695, '1027': 358, 'clarifications': 7668, 'archiver': 4950, 'pmjpeg': 20597, '6a': 2836, 'canned': 6975, '6b': 2839, 'hoopla': 14001, 'lossless': 16782, 'misreading': 17894, 'myname': 18389, 'mysite': 18396, 'standardized': 24710, 'cartoons': 7089, 'jbig': 15291, 'lossy': 16783, 'notably': 18937, 'invisible': 15040, 'lossiness': 16781, 'thumbnail': 26078, 'icons': 14299, 'mbyte': 17383, 'kbytes': 15680, 'tradeoff': 26366, 'decompress': 9340, 'macpaint': 16985, 'exchanging': 11365, 'displace': 9970, 'distinct': 10001, 'introducing': 15006, 'defects': 9373, 'adjacent': 4083, 'blurred': 6122, 'blurriness': 6123, 'subtly': 25156, 'argues': 4978, 'irretrievably': 15117, '727x525': 2927, 'harbor': 13489, '1145040': 435, '963829': 3505, 'compressors': 8184, '240438': 1583, 'fs': 12413, 'ppmtogif': 20844, 'jpg95': 15518, '155622': 743, 'indistinguishable': 14619, 'nonprofessional': 18882, 'eyeballs': 11553, 'jpg75': 15517, '58009': 2556, 'jpg50': 15515, '38406': 2077, 'jpeged': 15505, 'jpg25': 15513, '25192': 1632, 'characteristic': 7391, 'blocksmooth': 6095, 'poorer': 20704, 'jpg5o': 15516, '6587': 2746, 'blocky': 6096, '173': 859, 'decompresses': 9342, 'tolerate': 26232, 'implementations': 14480, 'concentrates': 8225, 'internally': 14946, 'checkbox': 7433, 'colormapped': 7953, 'ijg': 14381, 'headings': 13610, 'praetzel': 20863, '4a': 2371, 'dvpeg24a': 10451, 'functional': 12457, 'rezaei': 22483, 'hiview': 13868, 'hv12': 14208, 'vcpi': 27442, 'qemm386': 21431, '386max': 2083, 'panning': 19831, 'denying': 9524, 'slows': 24099, 'spiffier': 24510, 'keystrokes': 15761, 'dcview21': 9247, 'vesadrv2': 27543, 'compushow': 8196, '60a': 2633, 'cshw860a': 8897, 'intermediate': 14941, 'vpic5': 27778, 'reputed': 22286, 'ftpable': 12424, 'jpeg4': 15502, 'jpeg4386': 15503, 'compilations': 8128, 'gif2jpg': 12827, 'jpg2gif': 15514, 'hsi': 14105, 'jfif': 15359, 'gif2jpg2': 12828, 'alch161': 4369, 'milnet': 17799, 'informational': 14706, 'winecj': 28246, 'wecj': 28011, 'frills': 12379, 'hogging': 13926, 'noticeably': 18952, 'previewing': 20997, 'jview': 15592, 'decompressed': 9341, 'jview090': 15593, 'slideshow': 24067, 'winjp210': 28259, 'cview097': 9030, 'uploads': 27166, 'os2': 19520, 'jpegv4': 15510, 'imgarc11': 14443, 'weaker': 27990, 'pmjpeg11': 20598, 'pmview84': 20603, 'pmview': 20602, '68020': 2792, 'dts': 10383, 'corrupt': 8620, 'jpegview': 15511, 'presenting': 20959, 'gifconverter': 12832, 'pictpixie': 20376, 'drawbacks': 10291, 'unfriendly': 26998, 'pictcompressor': 20374, 'buggier': 6570, 'descendant': 9578, 'hamlab208d': 13428, 'rend24': 22177, 'ilbm': 14387, 'os30': 19522, 'rend105': 22176, 'amigados': 4564, 'viewtek': 27611, 'viewtek104': 27612, 'krehbiel': 15992, 'cinemorph': 7604, 'imagefx': 14418, 'prepress': 20948, 'adpro': 4118, 'asdg': 5086, 'imagemaster': 14421, 'conv': 8492, 'amigajpegv4': 4565, 'infested': 14669, 'notifying': 18957, 'augjpeg': 5306, 'newamyjpeg': 18675, 'vjpeg': 27697, 'tt': 26634, 'jpeg4bin': 15504, 'ataris': 5211, 'changefsi': 7372, 'provision': 21257, 'cli': 7715, 'clicking': 7722, 'bboards': 5680, 'kortink': 15966, 'nutterbrink': 19052, '7544': 3018, 'wj': 28318, 'enschede': 10982, 'guilders': 13293, 'freepost': 12349, '841099': 3220, 'offerings': 19223, 'popping': 20712, 'complies': 8156, 'earliest': 10499, 'cope': 8549, 'jpegsrc4': 15509, 'graphsupport': 13108, 'jpsrc4': 15525, 'pgm': 20250, 'truevision': 26595, 'reused': 22439, 'crays': 8759, 'acknowledgement': 3972, 'decompressor': 9344, 'affects': 4199, 'smeared': 24122, 'decoders': 9335, 'roundoff': 22786, 'precomputes': 20895, 'quantize': 21469, 'forevermore': 12195, 'shoddy': 23756, 'quantizations': 21468, 'sloppiness': 24088, 'macintoshes': 16974, 'chrominance': 7556, 'cosine': 8632, 'coefficient': 7862, 'huffman': 14133, 'entropy': 11019, '1x1': 1282, 'uncompressed': 26923, 'bilevel': 5933, 'patents': 19961, 'absence': 3851, 'facto': 11608, 'transports': 26452, 'transportable': 26447, 'historically': 13852, 'subsets': 25136, 'adhere': 4080, 'unusably': 27132, 'denominator': 9513, 'emit': 10843, 'd8': 9078, 'e0': 10479, 'decodable': 9331, 'hsi1': 14106, 'm_': 16938, 'c_x': 6844, 'downloading': 10247, 'doctrine': 10131, 'dubious': 10391, 'recompress': 21895, 'recompressing': 21896, 'accumulation': 3940, 'repeatedly': 22220, 'unmodified': 27074, 'multiples': 18310, 'archival': 4947, 'cartoon': 7088, 'chew': 7472, 'originals': 19492, 'jpeging': 15506, 'enlarge': 10968, 'enlargement': 10970, 'blur': 6119, 'pnmconvol': 20605, 'upshot': 27175, 'organizer': 19471, 'respones': 22363, 'etallic': 11222, 'maidenhead': 17049, 'vue': 27801, '0684': 227, '564438': 2526, 'terrace': 25842, '0628': 216, '784351': 3068, 'malvern': 17111, '794137': 3089, 'worcestershire': 28381, 'wr14': 28442, '4pz': 2396, 'blake': 6041, 'gid': 12823, '1qn044': 1220, 'gq5': 13031, 'vor': 27755, 'tac': 25551, 'ils': 14409, 'dfw': 9717, 'grapevine': 13093, 'irving': 15124, 'struggles': 25050, 'windscreen': 28243, 'canopies': 6980, 'goshawk': 13003, 'reboots': 21847, 'nessie': 18634, 'dos5': 10211, 'easter': 10522, '4meg': 2393, '8meg': 3335, 'nrs': 18991, '6011': 2614, '6040': 2621, 'g1yyh': 12514, 'gb7pwy': 12635, 'gbr': 12637, 'eu': 11246, '124759': 522, 'from1': 12389, 'discriminator': 9928, 'thifrom': 25987, 'wethat': 28086, 'succeeded': 25165, 'boole': 6236, 'sfb256': 23606, 'nikan': 18791, 'firoozye': 11963, 'lattitude': 16217, 'maximized': 17352, 'elliptic': 10789, 'hemisphere': 13702, 'sizeable': 23988, 'popovich': 20709, 'chopin': 7528, 'wcfields': 27984, 'hl7204': 13878, 'eehp22': 10647, 'univeristy': 27042, '213553': 1417, '2181': 1443, 'organpipe': 19474, 'comeone': 7990, 'racially': 21558, 'hiring': 13837, 'homosexuals': 13981, 'pallone': 19810, 'homosexual': 13980, 'downright': 10250, 'ludicrous': 16873, 'suspending': 25384, 'derogatory': 9571, 'reconsider': 21900, 'inferno': 14667, 'sherwin': 23718, 'periphonics': 20168, 'ablaze': 3832, 'xx': 28616, 'mcdhup': 17398, 'bohemia': 6174, '11716': 453, 'blazes': 6062, 'matson': 17324, 'unconfirmed': 26925, 'delightful': 9450, 'erupting': 11158, 'rallying': 21633, 'relearning': 22104, 'violates': 27639, 'eberhart': 10540, 'rachtin': 21557, 'defies': 9388, 'truism': 26596, 'werhner': 28066, 'truths': 26609, 'persistent': 20196, 'solicit': 24253, 'ephemeral': 11057, 'shifter': 23729, 'strapped': 24971, 'evolve': 11318, 'embarrassed': 10824, 'nay': 18519, 'sayers': 23150, 'stunt': 25079, 'sheets': 23698, 'apparant': 4817, 'competence': 8116, 'differentating': 9783, 'u7711501': 26753, 'bicmos': 5909, 'nctu': 18539, 'jih': 15382, 'disp135': 9962, 'chiao': 7476, 'tung': 26667, 'writng': 28466, 'macbinary': 16951, 'formts': 12221, '8m': 3334, 'swapping': 25421, 'wares': 27908, '128m': 551, 'supervga': 25306, '80387': 3149, 'vdisk': 27447, 'qemm': 21430, 'dpmi': 10265, 'emulator': 10875, 'emu387': 10871, 'runme': 22912, '80x87': 3169, 'grd': 13138, 'tr8900': 26347, 'initial_display_type': 14740, 'sort_method': 24323, 'f2': 11571, 'ctrl': 8930, 'f4': 11578, 'f5': 11579, 'f7': 11584, 'untag': 27126, 'f6': 11580, 'f8': 11586, 'prompting': 21178, 'reread': 22298, 'ras': 21682, 'mki': 17945, 'lbm': 16266, 'pds': 20038, 'vik': 27615, 'vic': 27574, 'usenix': 27219, 'fac': 11593, 'allowable': 4448, 'whthin': 28163, 'pressing': 20971, 'beep': 5741, 'write2': 28459, 'lzw': 16930, '24bits': 1619, 'thoese': 26014, 'grx': 13246, '0xc010': 304, '0xc018': 305, 'acknowledgment': 3973, 'mor': 18113, 'metafiles': 17626, 'predefined': 20902, 'oreilly': 19454, 'olivia': 19288, 'tempe': 25795, 'kieffer': 15795, 'moroz': 18131, 'wrl': 28468, 'pmafire': 20593, 'inel': 14640, 'lechner': 16325, 'winco': 28232, 'buffs': 6564, 'as16': 5073, 'shah': 23635, '734981173': 2963, 'mercutio': 17590, '5338': 2479, 'woodlawn': 28368, '60615': 2624, '3586': 2019, 'u49839': 26752, '213102': 1416, '4954': 2358, 'tryin': 26612, 'messing': 17621, 'mental': 17570, 'rained': 21613, 'dontcha': 10194, '93102': 3414, '164224rvesterm': 805, '184311': 931, '16351': 801, 'duels': 10399, 'cranking': 8745, 'duel': 10398, 'ukrphil': 26844, '_does_': 3658, 'featurfes': 11775, 'i2c': 14244, 'microcontroller': 17702, 'numbering': 19035, 'differend': 9781, 'pcf': 20021, 'pcd7': 20020, 'swoithe': 25474, 'crackle': 8731, 'woithe': 28344, 'hiya': 13869, 'amuture': 4601, 'psudo': 21287, 'hawiian': 13574, 'obsevatory': 19140, 'supposably': 25324, 'acording': 3978, '150miles': 707, 'diamater': 9741, 'faily': 11637, 'plutos': 20589, 'furthest': 12484, 'karna': 15655, 'aelmg': 4165, 'lawyer': 16248, 'heaviest': 13643, 'hitch': 13859, 'boring': 6262, 'outdoors': 19582, 'brewed': 6412, 'convient': 8516, 'centaurs': 7255, 'levs': 16432, 'refueled': 22007, 'restartable': 22372, 'sponsered': 24545, 'contestents': 8430, 'huddling': 14128, 'rickety': 22527, 'shelters': 23709, 'lastly': 16201, 'moonbases': 18103, 'flares': 12014, '13536': 604, 'protested': 21234, 'assessed': 5128, 'judgement': 15550, 'baseless': 5615, '221704': 1473, '4291': 2220, 'rudyc5fxc8': 22886, 'deu': 9673, 'gidp': 12825, 'balances': 5507, 'xbh': 28537, 'cs60805': 8878, 'basin04': 5633, 'koganti': 15936, 'srinivasa': 24634, 'sided': 23844, 'c5qvjc': 6806, 'b4b': 5441, '7123': 2894, '02138': 108, 'lpf': 16829, '052025': 189, '10610': 384, 'detrimental': 9670, 'precaution': 20880, 'suspiciously': 25388, 'fallback': 11663, 'maximizes': 17353, 'dgempey': 9719, 'ucscb': 26793, 'empey': 10853, '165459': 815, '3323': 1937, 'macaloon': 16949, 'macalloon': 16948, 'geddit': 12652, 'contingent': 8438, 'walkout': 27867, 'cornerstone': 8586, 'dualpage': 10387, 'tkelder': 26187, 'ebc': 10538, 'tonis': 26256, 'kelder': 15705, 'kask': 15660, 'nis': 18808, 'estonian': 11213, 'biocentre': 5979, 'williamsport': 28211, 'pigeons': 20389, 'resourceful': 22349, 'gracefully': 13046, 'astounding': 5175, 'straits': 24965, 'phoned': 20298, 'iltered': 14410, 'obv': 19151, 'ious': 15065, 'equat': 11089, '16th': 840, 'philliesidle': 20280, 'clutter': 7797, 'malfunctioning': 17103, 'mlee': 17951, 'monochrome': 18071, 'eck': 10562, '6998': 2833, 'jao': 15263, 'megatest': 17526, 'oswalt': 19544, 'devised': 9697, 'lindsey': 16571, '_the_hidden_game_of_baseball_': 3735, 'skoog': 24023, '4212': 2203, 'debit': 9287, 'validation': 27366, 'screwy': 23336, 'disregard': 9985, 'accrued': 3938, 'amassed': 4532, 'insistance': 14808, 'closers': 7759, 'outweighed': 19621, 'comming': 8028, 'predictor': 20914, 'offence': 19209, 'sinks': 23953, 'spraining': 24574, 'ankle': 4688, 'elses': 10797, 'turnovers': 26684, 'fouls': 12255, 'critisize': 8813, 'valadates': 27360, 'clutchness': 7795, 'cluthness': 7796, 'revolves': 22471, 'elevate': 10760, 'noice': 18858, 'valuble': 27374, 'tektoniks': 25752, 'volcanic': 27736, 'scape': 23180, 'fiends': 11882, 'palatable': 19798, 'torture': 26297, 'explicable': 11466, 'shaking': 23642, 'chasing': 7421, 'wagered': 27842, 'reiterate': 22077, 'disbelief': 9894, 'baseballisdead': 5609, '195853': 1024, '10650': 385, 'embrace': 10827, 'editorials': 10614, 'preach': 20877, 'allegedly': 4426, 'bankruptcies': 5559, 'alarming': 4355, 'plummet': 20582, 'unthinkable': 27128, 'labor': 16073, 'confidence': 8273, 'frustrates': 12408, 'inevitably': 14655, 'offs': 19236, 'interleague': 14938, 'drum': 10341, '230732': 1532, '27804': 1716, 'kakwa': 15621, 'piccy': 20363, '010745': 63, 'lauderdale': 16219, 'outwards': 19619, 'flipped': 12051, 'galbraith': 12550, '174843': 873, '28111': 1725, 'c00068': 6704, 'anchorperson': 4630, 'elaboration': 10727, 'specfically': 24437, 'commenting': 8016, 'ssrb': 24663, 'xsession': 28587, 'onroot': 19330, 'fullscreen': 12449, 'gif_file_name': 12831, 'switches': 25464, 'locks': 16702, 'pioneers': 20420, 'nobrega': 18849, 'filebank': 11900, 'paintbrush': 19784, 'fallbrook': 11664, '4318': 2230, 'configure': 8278, 'zsoft': 28813, 'scanman': 23174, 'pcboard': 20019, '5a': 2584, 'e10': 10480, 'rime': 22569, 'schultz': 23250, 'kgn': 15767, '2150': 1431, '95131': 3483, '2029': 1335, 'vbe': 27440, 'starndards': 24748, 'anchored': 4629, 'granularities': 13090, '101h': 344, 'announcements': 4707, 'relate': 22087, 'tte': 26639, 'hacker': 13383, 'dnadams': 10109, 'withdrawn': 28302, '56th': 2534, '1c': 1129, 'arsene': 5048, '42l': 2223, 'refurbished': 22013, 'ela': 10724, 'guiana': 13285, 'injection': 14752, 'l220': 16056, 'l33': 16059, 'mbb': 17373, 'erno': 11139, 'biliquid': 5937, 'uh25': 26820, 'n2o4': 18414, 'h10': 13351, '7b': 3102, 'fairing': 11647, 'jettison': 15351, 'ignition': 14352, 'cyclade': 9049, 'societe': 24210, 'europeenne': 11260, 'homes': 13971, '96m': 3513, '36000': 2027, '446': 2259, 'laguardia': 16097, '_bull_durham_': 3645, 'flu': 12083, 'luxury': 16910, 'davey': 9208, 'gif87a': 12829, 'caption': 7020, 'dialup': 9740, 'ozone93a': 19706, 'ozone93b': 19707, 'westmoreland': 28080, '90064': 3345, '2980': 1784, '739': 2982, '6984': 2831, '42210': 2207, 'depicts': 9538, 'monoxide': 18078, 'clo': 7747, '42211': 2208, 'abundances': 3869, 'destroys': 9639, '162313': 792, '154828': 737, 'mathews': 17316, '607': 2627, '401': 2158, '954': 3487, 'putouts': 21393, '079': 247, 'compares': 8075, '3bman': 2114, 'outweighs': 19622, 'loa': 16668, 'citilille': 7637, 'sphinx': 24506, 'loasil': 16676, 'conducting': 8261, 'intuitive': 15011, 'dialog': 9739, 'menuing': 17580, 'assortment': 5154, 'convolution': 8521, 'onometric': 19329, 'transcendental': 26402, 'possesses': 20769, 'meteosat': 17641, 'externally': 11522, 'manipulates': 17144, 'enhances': 10960, 'multispectral': 18321, '1024x1024': 351, 'combines': 7982, 'modifying': 18013, 'inkjet': 14757, 'importing': 14494, 'mosaic': 18145, 'optique': 19425, 'atmospherique': 5245, 'recherche': 21870, 'scientifique': 23266, 'cnrs': 7819, 'etudes': 11244, 'undergoes': 26945, 'adeos': 4076, 'polder': 20640, 'physique': 20352, 'environnement': 11034, 'normale': 18903, 'superieure': 25291, 'recherches': 21871, 'teledetection': 25762, 'spatiale': 24418, 'meteorologie': 17638, 'dynamique': 10475, 'all_sphinx': 4420, 'disable': 9868, '165122': 812, '19860': 1062, 'theodorus': 25947, 'redsox': 21950, 'fannus': 11687, 'hofers': 13917, 'outhit': 19592, '2bs': 1803, 'lectronic': 16326, 'vanallen': 27379, 'arcjets': 4954, 'messy': 17622, 'refueling': 22008, 'teleoperation': 25769, 'deltav': 9469, 'biding': 5914, '1qmj6h': 1218, 'm5h': 16935, 'rabbitball': 21550, 'rash': 21684, '48th': 2349, '1rd1g0': 1274, 'ckb': 7653, 'adrift': 4124, 'afterward': 4234, 'contamination': 8418, 'omv': 19309, 'membry': 17553, 'rodchenko': 22684, 'jaworski': 15280, '204': 1342, 'permane': 20175, '2metres': 1820, 'weater': 28001, 'itos': 15202, 'ao': 4779, 'trippy': 26554, 'quanta': 21462, '758': 3024, '2712': 1695, '0233': 117, 'pvconway': 21404, 'cudnvr': 8947, 'coutours': 8693, 'delauney': 9431, 'criiterion': 8793, 'krige': 15996, 'conway': 8524, 'copper': 8558, 'sed': 23429, 'stel': 24829, 'traditions': 26372, 'beauracrats': 5714, 'fath': 11730, 'mbcrr': 17375, 'dfci': 9711, 'farber': 11698, 'greatful': 13142, 'fffff': 11853, 'microbiology': 17698, 'fff': 11852, 'courant': 8684, 'wollongong': 28351, 'pithy': 20448, 'polluting': 20661, 'nightime': 18785, 'oribital': 19477, 'hoffmane': 13920, 'space1': 24365, 'spacenet': 24380, 'hoffman': 13919, 'triad': 26507, 'discos': 9911, 'alloy': 4452, 'cavity': 7167, 'microthrusters': 17726, 'centered': 7258, 'thereby': 25960, 'ixels': 15221, '000100255pixel': 8, '001200201pixel': 23, '2etc': 1814, 'ored': 19452, '58333333': 2560, '00090711': 17, '25599': 1646, '8669': 3263, '0004136': 10, '2989': 1788, '3206': 1896, '92851555': 3403, '1179': 455, 'snake': 24156, 'c00137': 6705, 'amroc': 4592, 'salvaged': 23039, 'scanlan': 23172, 'tsoft': 26630, '8238': 3193, 'sticker': 24882, 'havn': 13571, 'cga': 7318, 'slots': 24090, 'jele': 15321, 'gilligan': 12847, 'thetech': 25976, 'safed': 22998, 'bugging': 6571, 'pesky': 20222, 'bureaucrat': 6628, 'unaccessible': 26893, 'exiting': 11411, 'galilleo': 12554, '46556': 2302, 'aliester': 4412, 'n5snp': 18421, 'sirius': 23961, '3241': 1906, 'asel': 5088, 'refund': 22010, 'c5sy4s': 6819, '4x2': 2402, 'detract': 9668, 'practicies': 20858, 'pc137': 20012, 'abbrev': 3816, 'woes': 28342, 'abbreviations': 3818, 'gannett': 12577, 'rag': 21600, 'stared': 24742, 'cleman': 7707, 'colemn': 7898, 'gust': 13318, 'teamhas': 25700, 'peaking': 20050, 'aquisition': 4909, 'cardnials': 7038, 'leftfielder': 16343, 'overachieving': 19631, 'oveshadowed': 19680, 'climb': 7730, 'tide': 26103, 'mrw9e': 18231, 'fulton': 12452, 'binding': 5962, 'impressi': 14504, 'indenture': 14592, 'tng': 26201, 'ufcc': 26802, '735211806': 2972, 'toolkits': 26266, 'disparate': 9963, 'vistapro': 27677, 'alogirhtm': 4465, 'fsmarc': 12417, 'tristero': 26559, 'sverdrup': 25408, 'playmate': 20540, '8898': 3307, 'cowgirls': 8711, 'covlir': 8705, 'crockett1c': 8816, 'covlin': 8704, 'descriptor': 9594, 'afffff': 4201, 'affraid': 4212, 'repainting': 22213, 'rickc': 22524, 'krill': 15997, 'casares': 7095, 'heckling': 13647, 'bigots': 5927, 'negatively': 18589, 'msc_wdqn': 18236, 'naiman': 18445, 'polytopes': 20683, 'inequalities': 14643, 'equalities': 11084, 'c5mu5z': 6796, 'hh8': 13771, '220309': 1456, 'c5l9zs': 6788, '44n': 2266, 'cosell': 8630, 'korhiezer': 15965, 'shirly': 23746, 'povich': 20819, 'kamieniecki': 15630, '1psf0dinnm4q': 1181, '190141': 968, '17623': 884, 'nabbing': 18429, 'arhgghrghh': 4983, 'zabolotzky': 28751, 'prophet': 21198, 'boradcoast': 6251, 'stoney': 24932, 'alomost': 4469, 'kimd': 15818, 'rs6401': 22839, 'chungwan': 7574, 'allies': 4441, 'bypasses': 6692, 'fonseca': 12148, 'rodrigues': 22691, 'tonigth': 26255, 'brasil': 6364, 'designation': 9609, 'fw': 12501, 'john_carson': 15436, '5118': 2438, 'dtbl': 10376, 'c52s31': 6741, '49q': 2368, 'soup': 24338, 'tabletop': 25549, 'inflate': 14681, 'biff': 5919, 'pocoroba': 20616, 'shooty': 23766, 'babitt': 5450, 'lips': 16606, 'voting': 27765, '338': 1957, 'emartinez': 10821, '559': 2516, '518': 2451, '425': 2213, '309': 1860, '541': 2488, 'jgonzalez': 15367, 'sho': 23752, 'dmartinez': 10091, 'khill': 15775, '193': 997, 'tewksbury': 25884, 'curt': 8995, 'zavatson': 28761, 'schatz': 23209, 'ist': 15176, 'soweit': 24357, 'liebe': 16500, 'vorbei': 27756, '14apr199316550695': 689, '193114': 1000, 'karma': 15653, 'ackers': 3969, 'kidnapped': 15791, 'fassero': 11720, 'gardiner': 12590, 'roughed': 22782, 'witty': 28314, 'bandied': 5549, 'anagram': 4605, 'aptly': 4897, 'incompressible': 14562, 'bend': 5811, 'thickens': 25982, 'pipes': 20427, 'stall': 24701, 'aplace': 4801, 'shoulf': 23796, 'subtract': 25158, '200100': 1294, '23703': 1566, 'catalogues': 7128, 'stars_': 24750, 'mavin': 17347, 'bjarkman': 6030, 'astonishingly': 5172, 'mangled': 17135, 'rusinow': 22929, 'believing': 5783, 'knowledgable': 15913, 'overstating': 19668, 'gall': 12556, 'drafts': 10278, 'diluted': 9820, 'drain': 10283, 'backman': 5467, 'leafing': 16297, 'teammate': 25702, '_nails_': 3700, 'kph2q': 15982, 'hinckley': 13822, 'hp730': 14073, 'adresses': 4120, 'hassle': 13543, 'neurosurgical': 18658, 'cywang': 9069, 'yuan': 28734, 'che': 7426, 'cw21219': 9035, 'c5p6xq': 6803, 'managerial': 17121, 'tw2': 26700, 'irz': 15125, 'wolf': 28346, 'irz205': 15126, 'haphazardly': 13478, 'misspelled': 17910, 'consectutive': 8334, 'constituted': 8378, 'shortened': 23776, 'barrry': 5594, 'hubbell': 14120, 'trout': 26586, 'harland': 13511, 'clift': 7727, 'boyer': 6322, 'peaks': 20051, 'heilmann': 13665, 'elston': 10801, 'steib': 24818, 'lemon': 16385, 'fergie': 11822, 'jenkins': 15327, 'muisial': 18294, 'jbrown': 15297, 'scorecard': 23293, 'taterball': 25654, 'delucia': 9471, 'enchilada': 10886, 'phast': 20263, 'phys': 20341, 'amhux3': 4561, 'pl7': 20478, 'pallis': 19809, 'uwindsor': 27310, 'dimitrios': 9832, 'blitz': 6083, '1600x1200x256': 774, 'ni': 18745, 'apd2c': 4792, 'televisions': 25780, 'unbelievably': 26905, 'scratchy': 23328, '1r4uos': 1254, 'jid': 15381, 'ericsc52qld': 11127, '6l2': 2847, 'mal': 17096, 'nado': 18436, 'thaaammy': 25916, 'thotha': 26034, 'heathcliff': 13632, 'slocumb': 24082, 'encoded': 10894, 'a_costa': 3780, 'flush': 12092, 'rankin': 21662, '31st': 1893, 'bp': 6329, 'psyched': 21291, 'mtissand': 18276, 'tissandier': 26171, 'c5ialu': 6764, 'jn9': 15412, 'criminally': 8795, 'doggie': 10151, 'uuuggghhhh': 27291, 'verge': 27508, 'prognosis': 21126, 'burbank': 6622, 'hoffa': 13918, 'cynically': 9066, 'c5ub2s': 6825, 'fossil': 12246, 'locates': 16690, 'ascesion': 5081, 'uudecode': 27284, 'scepticus': 23201, 'skeptics': 24005, 'marxism': 17267, 'feminism': 11813, 'heidi': 13657, 'catharine': 7142, 'mackinnon': 16980, 'feminist': 11814, 'maverick': 17346, 'giaquinto': 12819, '01609': 80, '2280': 1516, 'dunston': 10422, 'cs1442aq': 8877, 'uta': 27249, 'cartlidge': 7084, 'inhis': 14737, 'glp': 12919, 'phillson': 20284, 'lyon': 16925, 'lamb': 16108, 'minivas': 17843, 'abekas': 3823, 'a66': 3772, 'smpte': 24147, 'ryam': 22953, '3d2': 2117, '1rft1ninnc7s': 1276, 'chaining': 7337, 'meshes': 17612, 'u895027': 26754, 'penumbral': 20108, 'dispersion': 9969, 'mmackey': 17958, 'addictive': 4061, '_you_': 3748, '1qlnkninn2sh': 1216, 'unmistakeable': 27073, 'supporters': 25320, 'superstar': 25303, 'kittle': 15857, 'boneshead': 6215, 'louder': 16792, 'mieske': 17750, 'mcilvaine': 17421, 'shucks': 23819, 'estelle': 11205, 'npr': 18979, 'jints': 15388, 'wjs112': 28320, 'c5lcop': 6789, '4fv': 2383, '121055': 485, '132013': 576, 'weekdays': 28019, 'shep': 23711, 'rimsat': 22571, 'sternberg': 24857, 'informal': 14699, 'acdis': 3947, 'disarmament': 9888, 'neilson': 18613, 'tonga': 26250, 'majesty': 17083, 'debated': 9285, 'hilliard': 13816, 'reside': 22322, 'rim': 22567, 'nevis': 18670, 'negotiating': 18596, 'glavkosmos': 12890, 'comforts': 7998, 'coup': 8678, 'kgb': 15766, 'operatives': 19377, 'brochures': 6460, 'unfavorable': 26988, 'koptev': 15961, 'concessions': 8239, 'siberians': 23836, 'musovites': 18358, 'midwesterners': 17748, 'lookng': 16743, 'insured': 14865, 'cellsat': 7249, 'southeast': 24346, 'downplayed': 10248, 'instabilites': 14820, 'unvarying': 27136, 'monolith': 18073, 'transfering': 26407, 'coffers': 7867, 'austrian': 5331, 'swindled': 25455, 'stonewalling': 24931, 'intelsat': 14885, 'reassuring': 21843, 'gorizont': 12999, 'data_730956427': 9183, 'broadest': 6457, 'forebodingly': 12183, 'advisories': 4158, 'cdrom2': 7222, 'imdisp': 14440, 'officers': 19229, 'queried': 21498, 'cuads': 8935, 'coloradu': 7948, 'quickstart': 21515, 'ads_user_guide': 4126, 'techreports': 25732, 'tcp': 25683, 'maintainer': 17074, 'downloadable': 10245, 'xsl': 28591, 'nimbus': 18798, 'canopus': 6981, 'czcs': 9071, 'postal': 20780, 'proposers': 21210, 'veron': 27521, 'convenient': 8495, 'retreived': 22417, 'ecf': 10554, 'iris1': 15098, 'ucis': 26782, '8am': 3327, 'yale_bsc': 28640, 'dishaw': 9943, 'jdishaw': 15303, 'hmcvax': 13886, 'st101': 24671, 'ashton': 5094, '94112': 3461, '2624': 1670, '5205': 2455, 'neustaedter': 18659, '3123': 1875, 'bodenteich': 6157, '5824': 2558, '3197': 1892, 'astonomical': 5173, 'phoon': 20301, 'starchart': 24737, 'moontool': 18106, 'n3emo': 18416, 'starchart2': 24738, 'jupmoons': 15583, 'lunisolar': 16894, 'e_downey': 10483, 'tasha': 25644, 'cca': 7186, 'xsat': 28584, 'xsat1': 28585, 'curry': 8987, 'davy': 9217, 'xsky': 28590, 'tarz': 25641, 'friedrichsen': 12373, 'sunquest': 25264, 'kauri': 15668, 'confining': 8282, 'bankst': 5561, 'idlastro': 14324, 'landsman': 16139, 'tvro': 26696, 'molczan': 18036, 'celbbs': 7242, 'satel': 23110, 'kilroy': 15814, 'filetype': 11904, 'positives': 20762, 'edc': 10594, 'eros': 11142, '6511': 2733, '135x180': 606, 'digitial': 9805, 'transparencies': 26442, '918': 3385, 'rengstorff': 22199, '94043': 3458, '6270': 2672, '1535': 729, 'albedo': 4359, '1618': 788, '2030': 1337, '1802': 909, 'photomosaic': 20317, 'photomosaics': 20318, 'stooke': 24937, 'telegrams': 25763, '4935': 2354, '1292': 554, 'subscribers': 25130, 'circulars': 7617, '2s2d': 1826, '8087': 3163, 'meantion': 17476, 'c5x86o': 6832, '8p4': 3337, 'firstest': 11967, 'mostest': 18151, 'ohhh': 19247, 'wonderous': 28360, 'pournellesque': 20816, 'provos': 21259, 'camped': 6945, 'assembling': 5121, 'itty': 15206, 'bitty': 6024, 'canadarms': 6953, 'appreciato': 4864, 'demoted': 9498, 'curtailing': 8996, 'supplement': 25312, 'sorting': 24326, 'buildup': 6580, 'reporters': 22248, 'moderate': 18002, 'fitted': 11984, 'deposited': 9546, 'contradicts': 8464, 'streamlined': 24997, '1993apr24': 1098, '221344': 1468, 'jbatka': 15288, 'inhibits': 14736, 'babbling': 5447, 'batka': 5650, 'batkaj': 5651, 'beatles': 5711, 'submarine_': 25111, '235wardell': 1562, 'wmich': 28333, 'passthrough': 19945, 'whcih': 28107, 'connects': 8326, 'blaster': 6056, 'controversial': 8487, 'controversy_733694426': 8490, 'controversy_730956589': 8489, 'blueprints': 6114, 'microfilm': 17707, 'scooped': 23287, 'uninvolved': 27025, 'sparked': 24413, 'scenarios': 23195, 'accidental': 3908, '19b2': 1120, 'rtgs': 22860, 'reentered': 21969, 'jettisoned': 15352, 'corrosion': 8619, 'resistant': 22334, 'salisbury': 23031, 'chipman': 7505, 'naumann': 18505, 'toxicity': 26339, 'nus': 19048, '5235': 2460, 'tier': 26108, 'transuranic': 26453, 'tic': 26097, '22800': 1517, 'jackman': 15233, 'prather': 20869, 'giss': 12867, 'anne': 4692, 'douglass': 10235, 'malcolm': 17097, 'ko': 15923, 'dak': 9106, 'sze': 25530, '0065': 48, 'variability': 27402, 'halocarbons': 13418, 'stratosphere_': 24984, 'mj': 17937, 'ar': 4911, '18583': 948, '18590': 949, '_chemical': 3649, 'environment_': 11030, 'hinshaw': 13824, 'unprotected': 27089, 'scuba': 23357, 'divers': 10041, 'eardrum': 10494, 'eustachian': 11263, 'consciousness': 8333, 'sunburn': 25252, 'bends': 5813, 'mild': 17773, 'swelling': 25445, 'chimpanzee': 7496, 'vacuum_': 27351, 'koestler': 15932, '_experimental': 3661, 'bancroft': 5547, 'destroy': 9637, 'kerwin': 15739, 'forensic': 12189, '200mph': 1319, 'buried': 6633, 'costly': 8649, 'wasteful': 27942, 'remarkably': 22148, 'humanoid': 14157, '35a72': 2023, 'facelike': 11596, '70a13': 2884, 'hoagland': 13897, 'championed': 7358, 'resemble': 22312, 'resemblance': 22311, 'lava': 16237, 'altnet': 4510, 'dipeitro': 9844, 'molenaar': 18040, 'pozos': 20834, 'formations': 12212, 'carlotto': 7059, 'extracts': 11533, 'leary': 16315, '162800': 796, '168967': 830, 'burger': 6631, 'thinly': 25996, '_bright_': 3642, 'abandon': 3811, 'spraying': 24576, 'sulphur': 25226, 'fizzy': 11992, 'legionaires': 16360, 'prisoners': 21046, 'bmc': 6129, 'actuator': 4029, 'dda': 9252, 'ej': 10717, 'uplinked': 27163, 'rra': 22823, 'uso': 27233, 'retro': 22422, 'flushing': 12094, 'cta': 8923, 'tgc': 25909, 'tca': 25679, 'tpa': 26342, 'mts': 18279, 'mccc': 17391, 'ammos': 4575, 'mgds': 17670, 'v18': 27326, '10bps': 397, 'metering': 17643, 'mvt': 18374, '70184': 2869, '65076': 2729, 'shootout': 23765, 'swatted': 25428, '132741': 581, '11322': 425, 'rfk': 22488, 'olim': 19281, 'integrators': 14876, 'folsom': 12142, 'hispanic': 13844, 'bellevue': 5789, 'icop': 14302, 'csa': 8883, 'bu': 6532, 'pera': 20121, 'aired': 4312, 'stereotype': 24854, 'emphasised': 10855, 'rantings': 21667, 'jessie': 15345, 'echelons': 10555, 'barrier': 5588, 'elaborated': 10726, 'cormac': 8578, '_all': 3630, 'horses_': 14029, 'personel': 20202, 'bundles': 6608, 'painlessly': 19780, '14400': 655, 'vip': 27645, 'hub': 14118, 'hubbing': 14121, 'permannet': 20179, 'ftsc': 12428, 'grantable': 13085, 'granter': 13087, 'forgiveness': 12201, 'forbid': 12174, 'alleghany': 4427, 'appalachian': 4815, 'bolivarian': 6191, '1820': 918, 'whaling': 28100, 'coincidentally': 7885, 'megatonnes': 17528, 'lute': 16906, 'keyser': 15758, 'libya': 16486, 'propaganda': 21187, 'renege': 22193, 'playmation': 20542, 'scraps': 23325, '02142': 110, '1pptv1': 1166, 'mgb': 17669, '05apr93': 202, '13661642': 609, '0023': 35, 'televised': 25778, 'bathing': 5647, 'swimmer': 25450, 'spitz': 24524, 'huma1': 14152, 'c5hcbo': 6757, 'economies': 10582, 'sampe': 23050, 'akron': 4344, 'devoted': 9702, 'horowitz': 14023, 'cowen': 8710, 'sikorski': 23883, 'fite': 11981, 'stereolithography': 24850, 'erie': 11130, 'vassilios': 27421, 'galiatsato': 12551, 'upadhyay': 27146, 'dutcher': 10442, '734553308snx': 2954, 'zellner': 28768, 'monumental': 18096, 'buckwalter': 6542, '66678': 2763, 'xgrasp': 28555, '210510': 1394, '2943': 1777, 'mse': 18243, '25836': 1651, 'evenchick': 11284, 'f113': 11570, 'livingston': 16646, 'averag': 5378, 'perceive': 20122, 'instumental': 14855, 'shattered': 23680, 'strikeouts': 25017, 'summing': 25240, 'treatments': 26484, 'wcarter': 27982, 'datasys': 9195, 'swri': 25476, 'jmuller': 15411, 'muller': 18297, 'rigby': 22546, 'csws18': 8920, 'clog': 7752, 'caffeine': 6875, 'zen': 28770, 'sisal': 23963, 'libserv1': 16483, 'drunk': 10344, 'nothin': 18948, 'thrid': 26055, 'weston': 28082, 'ucssun1': 26795, 'arrows': 5046, 'arrowheads': 5045, '6218': 2659, '7477': 2998, '92182': 3397, '0303': 135, 'juggling': 15560, 'mssc5mx2v': 18265, 'c44': 6708, 'juggled': 15559, 'reclaimed': 21878, 'primadonna': 21013, 'strawman': 24989, 'publicly': 21315, 'humiliating': 14162, 'knuckling': 15921, 'seawater': 23406, 'dissolved': 9995, 'quanity': 21461, 'absorbers': 3857, 'phosphate': 20302, 'sufficiency': 25196, '118466': 457, '183304': 928, '29191': 1770, 'platter': 20528, 'cmdr': 7804, 'sisko': 23964, 'asdi': 5087, 'x6172': 28526, 'mssc5kcru': 18264, '5ip': 2596, 'groupe': 13219, 'operationnelle': 19374, 'telecommunication': 25759, 'c5r2dk': 6807, '49th': 2370, 'asserted': 5125, 'forefront': 12186, 'reflectors': 21999, 'filmed': 11912, 'merchandising': 17586, 'enters': 10997, '5x': 2605, 'superbowl': 25278, 'tailor': 25566, 'overfly': 19636, 'prohibition': 21148, 'fights': 11894, 'louts': 16804, 'negate': 18587, 'reflected': 21993, 'minimizing': 17836, 'turbulence': 26674, 'mitigate': 17924, 'flesh': 12035, 'privileges': 21053, 'c51875': 6730, '67p': 2787, 'governemnt': 13019, 'complicates': 8153, 'refurbishment': 22014, 'verbatim': 27499, 'napoli': 18465, 'gaetano': 12530, 'napolitano': 18466, 'ccsun': 7205, 'unicamp': 27009, 'cotuca': 8654, 'colegio': 7896, 'tecnico': 25735, 'depto': 9556, 'processamento': 21088, 'dados': 9092, 'ccvax': 7209, '0192': 93, '9519': 3485, 'campinas': 6946, 'john_shepardson': 15437, 'esh': 11173, '210493100336': 1393, 'slac': 24035, 'qmail': 21435, 'shepardson': 23712, 'advertised': 4144, 'awed': 5413, 'offscreen': 19237, 'zbuffering': 28762, 'hypercard': 14230, 'faxed': 11752, '_bsplinesurface': 3644, '_drawstring3d': 3660, 'mactutor': 16992, 'seventy': 23591, 'acaps': 3886, 'verbrugge': 27503, 'dominic': 10177, 'lai': 16099, 'cs_cylai': 8882, 'ust': 27240, 'svgabg40': 25410, 'everex': 11297, '8800': 3289, 'video7': 27588, 'honk': 13989, 'blat': 6057, 'wak': 27858, 'ungow': 27002, 'crudely': 8844, '_brightest_': 3643, 'isotropy': 15165, 'invite': 15043, 'c51j5c': 6735, 'amx': 4602, 'poppy': 20713, 'lineups': 16586, 'benches': 5808, 'blunts': 6118, 'realtime': 21825, '1pt592': 1195, 'f9a': 11587, 'stud': 25062, 'culver': 8961, '115072': 439, 'problem_with_inews_gateway_file': 21075, 'baccki': 5454, 'obiwan': 19105, '6xx0': 2857, '66x0': 2768, 'cisc': 7631, 'tfp': 25905, 'gwh': 13337, 'margins': 17209, '1r85m2': 1265, 'k66': 15606, 'ven': 27482, 'bohr': 6176, 'neie': 18604, '180630': 911, '18313': 926, 'mmi': 17963, '19907': 1070, '21211': 1406, '1222': 497, 'purccvm': 21368, 'comarow': 7975, 'jwt': 15597, 'oau': 19089, 'eisner': 10715, 'decus': 9353, 'intro_730956346': 15003, 'excessive': 11361, 'condensing': 8251, 'circulate': 7618, 'depressing': 9551, '100th': 333, 'miscellanous': 17876, 'queries': 21499, 'netiquette': 18642, 'newusers': 18723, 'ups': 27173, 'mailers': 17057, '0004847546': 14, 'mcimail': 17422, 'ad038': 4035, 'yfn': 28690, 'ysu': 28732, 'akerman': 4340, 'alweigel': 4524, 'weigel': 28026, 'aoab314': 4781, 'awpaeth': 5419, 'watcgl': 27946, 'paeth': 19764, 'rata': 21697, 'trier': 26529, 'jochen': 15420, 'brosen': 6483, 'bschlesinger': 6516, 'schlesinger': 23226, 'cew': 7305, 'chapin': 7384, 'cbnewsc': 7176, 'cunnida': 8966, 'tenet': 25816, 'cyamamot': 9042, 'yamamoto': 28645, 'daver': 9206, 'dlbres10': 10084, 'gaetz': 12532, 'grandi': 13080, 'utd201': 27254, 'dnet': 10110, 'utadnx': 27250, 'utspan': 27278, 'hmueller': 13893, 'cssun': 8909, 'pnet01': 20604, 'jnhead': 15415, 'pirl': 20433, 'kcarroll': 15682, 'kieran': 15796, 'manuever': 17163, 'lfa': 16448, 'adornato': 4117, 'markowitz': 17235, 'egsgate': 10688, 'darkside': 9158, 'mbellon': 17376, 'mcdurb': 17405, 'mcconley': 17392, 'nickw': 18767, 'ohainaut': 19246, 'hainaut': 13397, 'oneil': 19319, 'graham': 13066, 'panama': 19823, 'blase': 6052, 'plato': 20524, 'pschleck': 21272, 'schleck': 23225, 'rdb': 21767, 'cocam': 7845, 'rja7m': 22611, 'atkinson': 5233, 'roelle': 22696, 'sigi': 23860, 'skipper': 24019, 'sndpit': 24168, 'gpwd': 13030, 'sterner': 24858, 'warper': 27920, 'ted_anderson': 25738, 'transarc': 26398, 'thorson': 26031, 'typhoon': 26740, 'tm2b': 26195, 'masco': 17272, 'horsley': 14030, 'memoriam': 17558, 'flinn': 12048, 'conditioning': 8256, 'guru': 13316, 'steroids': 24860, 'steroid': 24859, 'bregel': 6397, '49er': 2367, 'deficiencies': 9384, 'trigger': 26533, '013145': 69, '8770': 3283, 'sdcns': 23369, 'melvin': 17547, 'scrub': 23347, 'baserunner': 5622, 'assigning': 5138, 'new_probes_730956574': 18674, 'vvejga': 27811, 'traverses': 26471, 'touring': 26324, 'synchronous': 25502, 'threefold': 26051, 'hydrocarbons': 14218, 'photochemical': 20304, 'condense': 8249, '1625': 793, '1712': 851, 'christiaan': 7545, '1629': 799, '1695': 833, 'unfurl': 26999, 'abandoned': 3812, 'unfurled': 27000, 'deflection': 9406, 'magnetotail': 17033, 'manuver': 17172, 'bent': 5828, 'tilted': 26133, 'neigborhood': 18605, '1489': 684, 'gory': 13001, 'cataclysmic': 7119, 'flare': 12013, 'isolated': 15156, 'jjb': 15396, 'srl': 24636, 'retrieved': 22421, 'iml': 14446, 'elucidating': 10803, 'fate': 11728, 'emitting': 10845, 'earch': 10493, '2016': 1324, 'revisited': 22463, 'depended': 9533, 'tankage': 25617, 'facinated': 11605, 'pnumatic': 20608, 'frei': 12355, 'ballon': 5527, 'clever': 7714, '1qnb9tinn7ff': 1223, 'motherships': 18158, 'lumpy': 16883, '1993mar29': 1110, '044248': 172, '16010': 775, 'headstart': 13616, 'ianr053': 14261, 'unlvm': 27070, 'relible': 22117, 'hagins': 13390, 'avlin8': 5394, 'openr': 19364, 'linthicum': 16598, 'mills': 17798, 'eekim': 10648, 'lecture': 16327, 'innovator': 14773, 'microprocessing': 17716, 'aiken': 4296, 'computations': 8200, 'cookies': 8528, 'admissions': 4105, 'videotaped': 27594, '_doesn': 3659, 't_': 25544, 'regret': 22046, 'schrodinger': 23245, 'besmith': 5859, 'uncc': 26909, 'ws27': 28475, 'charlotte': 7410, 'chessboards': 7467, 'leonard': 16397, 'extraordinary': 11536, 'diane': 9745, 'sigkids': 23861, 'converge': 8500, 'tutorials': 26693, 'installations': 14825, 'groupware': 13224, 'microworlds': 17732, '1890': 959, '60201': 2616, '5258': 2464, 'reccommended': 21858, 'submitter': 25119, 'chooses': 7525, 'rental': 22208, '______________________________________cut': 3614, 'here__________________________________': 13729, 'accompany': 3919, 'legibly': 16359, 'name________________________________________________': 18450, 'company______________________________________________': 8068, 'address______________________________________________': 4069, 'city_________________________________________________': 7643, 'state_____________postal': 24766, 'code______________country_________________': 7854, 'phone_____________________evening': 20297, 'phone____________________': 20296, 'fax_____________________________email______________________________': 11751, 'piece__________________________________': 20381, 'collaborator': 7907, '__________________________________': 3588, 'periferals': 20152, '_____________________________________________________________': 3599, '________________________________________________________________________________': 3612, '___need': 3618, 'software________________________________________________________________________': 24232, '___other': 3620, '__________________________________________________': 3593, 'description____________________________________________________________': 9591, 'power___________________________________________________________________________': 20826, 'dimensions______________________________________________________________________': 9830, 'other__________________________________________________________________________': 19554, 'musical': 18356, 'compositions': 8167, 'permissions': 20181, 'liscenses': 16612, '___yes': 3622, '___no': 3619, 'signature______________________________________date_________': 23870, 'loaned': 16675, 'nonexclusive': 18875, 'informs': 14713, 'indivicual': 14620, 'donh': 10189, 'hirschfeld': 13842, 'pals': 19819, '9393': 3436, 'calalogged': 6883, 'haberj': 13368, 'haber': 13367, 'sunbulirsch4': 25251, 'peterson': 20237, 'proc': 21077, 'mathematisches': 17315, 'isaackuo': 15131, 'skippy': 24020, 'isaac': 15130, 'liquids': 16609, 'float': 12056, 'tongs': 26251, 'clutching': 7794, 'frantic': 12321, 'swim': 25449, 'humane': 14154, '_o_': 3706, 'twinkle': 26717, 'dprjdg': 10266, 'inetg1': 14650, 'grasham': 13113, 'developmental': 9686, 'gummint': 13302, 'voronoi': 27757, 'constructions': 8390, 'aurenhammer': 5315, 'okabe': 19258, 'boots': 6248, 'sugihara': 25209, 'tessellations': 25867, '93430': 3427, '532p': 2477, 'neighbour': 18610, '044201': 171, '27457': 1703, 'trends': 26498, 'c50z77': 6725, 'ee6': 10640, 'jelson': 15323, 'rcnext': 21754, 'expeditions': 11430, 'dehydrated': 9421, 'foods': 12154, 'dried': 10312, 'sensation': 23499, 'gastrointestinal': 12611, 'tract': 26360, 'gastronomic': 12612, '1qflpk': 1201, 're1': 21777, '_speed_': 3723, 'ior': 15063, 'lens': 16393, 'khayash': 15773, 'hsc': 14104, 'hayashida': 13580, '184507': 936, '10511': 376, 'c51buv': 6732, 'kln': 15881, 'texan': 25886, 'sugra': 25210, 'totowa': 26310, '191658': 982, '9836': 3536, 'reprocess': 22268, 'reprocessing': 22270, 'fabricate': 11591, 'rods': 22693, 'fabricating': 11592, 'reprocessed': 22269, 'eies2': 10699, 'njit': 18823, '134526': 598, '14966': 688, 'crumbly': 8849, 'crumbs': 8850, 'slooooooooooooooooooooooowly': 24083, '734906386': 2959, 'basebal': 5606, 'softened': 24227, 'reiss': 22075, '20057': 1307, 'repeatable': 22218, 'characterized': 7395, 'statistically': 24784, 'rigorous': 22560, 'analysed': 4610, 'rcb': 21749, 'slacvm': 24037, 'cnter': 7823, 'x1': 28508, 'y1': 28629, 'y4': 28631, 'z4': 28747, 'determininant': 9663, 'dz': 10478, 'jyst': 15600, 'xc': 28539, 'yc': 28666, 'zc': 28763, '1023': 349, 'xvgr': 28604, 'xmgr': 28568, 'xy': 28622, 'collectively': 7921, 'x11r3': 28511, 'ccalmr': 7189, 'acegr': 3949, 'pturner': 21303, 'amb4': 4541, 'ese': 11171, 'f2c': 11574, 'astrod': 5180, 'vg': 27558, 'sunspot': 25270, 'ceee': 7237, 'xgobi': 28552, 'speciality': 24442, 'multidimensional': 18305, 'statlib': 24787, 'temper': 25796, 'pgplot': 20251, 'tjp': 26184, 'ggraph': 12804, 'shorty': 23786, 'epigraph': 11063, 'dvj': 10448, 'lab2': 16065, 'lgu': 16455, 'spb': 24423, 'dmitriev': 10095, '1251': 524, 'budapest': 6546, 'posta': 20778, 'fiok': 11953, 'hungary': 14176, '1753696': 878, '2017760': 1325, 'multiplot': 18315, 'xln': 28564, 'baxter': 5668, 'agb16': 4243, 'mbuc': 17382, 'tennis': 25820, 'cb2': 7170, '1qp': 1225, 'v6': 27340, 'v5': 27337, 'lineplots': 16579, 'subgrid': 25103, 'subtic': 25154, 'dashed': 9178, 'marker': 17228, 'aligning': 4414, 'sciplot': 23273, 'subviews': 25162, 'logarithmic': 16711, 'normalizing': 18906, 'subtractions': 25160, 'tougaard': 26318, 'regression': 22045, 'differentiation': 9785, 'sciplot3': 23274, 'wesemann': 28072, 'scillerstr': 23269, 'fiasko': 11862, 'plplot': 20575, 'quickness': 21513, 'semilog': 23484, 'widths': 28181, 'alphabet': 4480, 'symbols': 25490, 'hagar': 13389, 'ix': 15220, 'unicos': 27010, 'exec': 11379, 'lebrun': 16324, 'mjl': 17938, 'xterm': 28596, 'xwindow': 28613, 'amr': 4590, 'supermongo': 25297, 're00': 21776, 'gle': 12891, 'vaxes': 27435, 'tek4010': 25748, 'vt100s': 27797, 'paintjet': 19789, 'latex': 16210, 'manip': 17141, 'columnar': 7968, 'fitls': 11982, 'glelist': 12894, 'listserver': 16626, 'tbone': 25676, 'biol': 5985, 'boyd': 6321, 'pentcheff': 20106, 'dean2': 9277, 'labview': 16080, 'wiring': 28286, 'macintoshs': 16975, 'compatables': 8101, 'debugging': 9290, 'dsp2300': 10362, 'programers': 21128, 'optimized': 19416, 'linker': 16590, 'ultimage': 26855, 'graftek': 13065, 'thermography': 25967, 'biomedical': 5989, 'quantitative': 21464, 'satie': 23114, 'aipd': 4306, 'dilation': 9817, 'skeletons': 24002, 'perimeter': 20159, 'chords': 7532, 'depicted': 9537, 'sharpening': 23671, 'eroding': 11141, 'dilating': 9816, 'gtfs': 13264, '2455': 1599, '100c': 326, '95494': 3489, '707': 2880, '1733': 864, 'iplab': 15073, 'franceus': 12300, 'alteration': 4497, 'paledit': 19802, 'devonshire': 9700, '8925': 3315, 'alw': 4521, 'zippy': 28794, 'nimh': 18800, 'delimited': 9452, 'nonfpu': 18878, 'photomac': 20313, 'locke': 16697, '01752': 81, 'photopress': 20323, '3039': 1847, 'marigold': 17215, '91360': 3376, '9973': 3549, 'pixeltools': 20463, 'tcl_image': 25682, 'indirect': 14616, 'pict2': 20373, 'perceptics': 20126, 'pellissippi': 20079, '37933': 2066, '9200': 3390, 'harddisk': 13496, 'ate1': 5219, 'liz': 16648, '6980': 2829, '01852': 88, 'rtrue': 22868, 'rre': 22824, 'toucheds': 26314, 'rpaints': 22813, 'eraser': 11112, 'brush': 6507, 'rpastes': 22814, 'pasted': 19950, 'rphoto': 22818, 'editings': 10609, 'balancing': 5508, 'subjected': 25106, 'sharpen': 23670, 'availlable': 5372, 'epsf': 11073, 'pixelpaint': 20461, 'scitex': 23275, 'thunderscan': 26081, '1585': 755, 'charlestown': 7408, '4400': 2248, 'colorstudio': 7955, 'imagestudio': 14426, 'letraset': 16416, 'hues': 14132, 'eisenhower': 10714, 'paramus': 19867, '07653': 244, '845': 3228, '6100': 2638, 'dapple': 9148, 'olive': 19283, '94086': 3459, '733': 2937, '3283': 1921, 'darkroom': 9157, '9770': 3528, '92126': 3395, '6956': 2823, 'dimple': 9833, '6mb': 2848, 'erdas': 11115, 'unsupervised': 27121, 'pca': 20016, 'iol': 15059, 'mapii': 17178, 'inbuilt': 14533, '2110': 1399, '2500': 1625, '261757': 1668, '264190': 1678, 'rrulers': 22830, 'microfrontier': 17708, '7650': 3036, 'hickman': 13781, '50322': 2418, '8109': 3172, 'microscopes': 17719, 'radiographs': 21581, 'textural': 25896, 'recognizes': 21885, 'scion': 23271, 'grabbers': 13039, 'movable': 18189, 'sizable': 23986, 'clut': 7792, 'automatix': 5358, 'turnpike': 26685, 'billerica': 5944, '01821': 85, 'vienna': 27599, '22180': 1474, '3277': 1915, '2509': 1627, 'pseudocolor': 21274, 'willamon': 28204, '2801': 1723, '30329': 1843, '9400': 3452, 'rsvga': 22853, 'eidetic': 10698, 'obtuse': 19149, 'imagine32': 14434, 'image32': 14415, 'compuscope': 8193, 'pasp': 19931, 'bllac': 6085, 'bkyast': 6032, '360k': 2028, 'quad': 21443, '44m': 2265, 'shattuck': 23681, '94704': 3472, 'traveller': 26467, 'regents': 22030, 'gunn': 13306, 'maxen386': 17349, 'deconvolution': 9345, 'jandel': 15256, 'java': 15276, 'koch': 15926, 'corte': 8624, 'madera': 17000, '94925': 3476, '8640': 3258, '874': 3280, '1888': 957, 'microbrian': 17699, 'windowed': 28237, 'dongle': 10188, 'mbrian': 17381, 'anaysis': 4624, 'mpa': 18204, 'lusher': 16902, 'croydon': 8837, '4488': 2263, '4455': 2258, 'a10k': 3758, 'microimage': 17710, '1937': 1002, '6900': 2812, '5430': 2493, 'complement': 8142, 'stsdas': 25055, '_de': 3657, 'facto_': 11609, 'shells': 23706, 'saoimage': 23087, 'extendable': 11512, 'skilled': 24011, 'alv': 4517, '11dec89': 465, 'bris': 6443, 'aipsmail': 4308, 'wv': 28492, 'baboon': 5451, 'publ': 21308, 'xas': 28533, 'modelled': 17995, 'laboimage': 16071, 'xxx': 28619, 'os3': 19521, 'allegro': 4432, 'laboimage_': 16072, 'thierry': 25986, 'geneva': 12699, 'lac': 16081, 'cui': 8951, 'unige': 27017, 'cgeuge51': 7320, 'shortridge': 23780, 'aaoepp': 3799, 'southard': 24345, 'sns': 24190, '110mbytes': 414, '20mbytes': 1380, 'disimp': 9944, 'friendliness': 12375, 'incorporates': 14572, 'ratioing': 21706, 'icon': 14297, 'enhancments': 10962, 'stretches': 25007, 'truthing': 26608, 'grids': 13183, 'clough': 7773, 'yarra': 28660, '3141': 1879, '825': 3195, '5555': 2512, '826': 3196, '6463': 2716, 'calibrate': 6902, 'predesigned': 20903, 'carefree': 7044, 'landy': 16140, 'documenting': 10135, 'microvax': 17727, 'masscomp': 17283, 'grinnell': 13193, 'adage': 4041, 'ikonas': 14384, '386i': 2082, 'consoles': 8362, 'framestores': 12292, 'windowing': 28238, 'console': 8361, 'lexidata': 16440, 'hipsaddon': 13833, 'crs': 8839, 'interfaced': 14923, 'arlunya': 5001, 'reel': 21967, 'convolu': 8520, 'masks': 17277, 'sharpimage': 23675, '10012': 314, '0007': 16, '7857': 3071, '4011': 2159, 'msl': 18251, 'cns': 7820, 'mira': 17861, 'thalmanns': 25920, 'handsome': 13461, 'keystroke': 15760, 'cursors': 8993, 'magnified': 17035, 'palettes': 19806, 'niceties': 18751, 'unary': 26896, 'polynomial': 20679, 'chs': 7563, 'byteswap': 6699, 'autoscaling': 5362, 'convolutions': 8522, 'unsharp': 27110, 'underscan': 26958, 'normalize': 18904, 'modal': 17984, 'subimage': 25104, 'luminance': 16880, 'isophotal': 15161, 'luminances': 16881, 'isophotes': 15162, 'diagonal': 9732, 'centroid': 7274, 'crosshair': 8825, 'framed': 12288, 'deletion': 9442, 'undelete': 26938, 'weighting': 28031, 'quadratic': 21446, 'loess': 16706, 'binomial': 5975, 'tricolor': 26526, 'deskjet': 9621, 'vinyl': 27635, 'binder': 5961, '44162': 2252, '85733': 3245, '791': 3081, '2864': 1744, 'saguaro': 23012, 'veeck': 27459, 'scuk': 23358, 'cuck': 8944, 'aqlso': 4901, 'shoulda': 23791, 'weathered': 28003, 'tautology': 25666, 'needn': 18582, 'championships': 7361, 'accuse': 3944, 'mouthing': 18187, 'crussell': 8858, 'adaptive': 4054, '4048': 2167, 'amaze': 4536, 'peers': 20068, 'scrabble': 23317, 'diner': 9834, 'awhile': 5418, 'gte': 13263, '5424': 2491, '91675': 3383, '7424': 2992, '001757': 28, '7543': 3017, 'attic': 5278, 'checkbook': 7432, 'petro': 20238, 'windsor': 28245, 'adkins': 4090, 'ag1': 4236, 'ag2': 4237, 'draftc': 10275, 'envision': 11038, 'envis1': 11036, 'envis2': 11037, 'neopaint': 18619, 'neopnt': 18620, 'kwyjibo': 16043} <Compressed Sparse Row sparse matrix of dtype 'int64'
	with 252780 stored elements and shape (1774, 28834)>
  Coords	Values
  (0, 12388)	7
  (0, 16333)	2
  (0, 8874)	4
  (0, 26907)	3
  (0, 10628)	3
  (0, 15458)	1
  (0, 25105)	1
  (0, 24364)	20
  (0, 11693)	2
  (0, 625)	3
  (0, 693)	3
  (0, 14058)	3
  (0, 26205)	48
  (0, 5725)	6
  (0, 4604)	16
  (0, 5186)	30
  (0, 15763)	1
  (0, 12363)	1
  (0, 5102)	1
  (0, 21507)	1
  (0, 5057)	1
  (0, 5188)	1
  (0, 11457)	1
  (0, 17359)	8
  (0, 1075)	1
  :	:
  (1773, 8657)	1
  (1773, 25926)	1
  (1773, 4938)	1
  (1773, 16209)	2
  (1773, 23665)	2
  (1773, 5512)	1
  (1773, 7518)	2
  (1773, 28791)	6
  (1773, 28403)	1
  (1773, 21319)	1
  (1773, 4794)	1
  (1773, 23768)	1
  (1773, 27310)	2
  (1773, 20238)	5
  (1773, 28245)	2
  (1773, 4090)	1
  (1773, 4236)	1
  (1773, 4237)	1
  (1773, 10275)	1
  (1773, 11038)	1
  (1773, 11036)	1
  (1773, 11037)	1
  (1773, 18619)	1
  (1773, 18620)	1
  (1773, 16043)	1

Explanation¶

Term Meaning
x_train_counts Sparse matrix: documents as rows, words as columns
(0, 12388) 7 Word with index 12388 appears 7 times in doc 0
vocabulary_ Word → index mapping used to build the matrix
Sparse Format Saves memory by storing only non-zero values
In [ ]:
tfid_transformer = TfidfTransformer()
x_train_tfidf = tfid_transformer.fit_transform(x_train_counts)

print(x_train_tfidf)
<Compressed Sparse Row sparse matrix of dtype 'float64'
	with 252780 stored elements and shape (1774, 28834)>
  Coords	Values
  (0, 60)	0.0220399995597289
  (0, 97)	0.011634908554226994
  (0, 154)	0.009630185518216098
  (0, 308)	0.01226338322218642
  (0, 408)	0.00820444228507001
  (0, 625)	0.02382684838861426
  (0, 626)	0.028114237365476445
  (0, 693)	0.022075616415870938
  (0, 694)	0.011410958017113795
  (0, 1059)	0.01364233830514972
  (0, 1064)	0.01134095269012306
  (0, 1075)	0.00726471133796042
  (0, 1284)	0.05184861325631628
  (0, 1829)	0.007957811823156326
  (0, 1876)	0.014296813183136001
  (0, 2090)	0.010441618738317752
  (0, 2225)	0.010847132326657445
  (0, 2267)	0.010792310550677236
  (0, 2403)	0.009083865986031765
  (0, 2502)	0.011207090928265738
  (0, 2554)	0.012369215960726878
  (0, 2696)	0.011410958017113795
  (0, 3029)	0.025439815546172726
  (0, 3043)	0.015634024092787864
  (0, 3341)	0.02117070067222264
  :	:
  (1773, 21319)	0.0937351317979693
  (1773, 21866)	0.05887068146521336
  (1773, 22371)	0.059351132537528516
  (1773, 23145)	0.0617597732252851
  (1773, 23558)	0.13336633441403203
  (1773, 23665)	0.13801369946828929
  (1773, 23768)	0.09753568482653183
  (1773, 24196)	0.028665391955512175
  (1773, 25105)	0.013210948447959156
  (1773, 25926)	0.0724729305066114
  (1773, 25927)	0.01869466428473517
  (1773, 25929)	0.07079838084188718
  (1773, 25958)	0.0534572420313432
  (1773, 25977)	0.02714938742354254
  (1773, 26036)	0.04805308926494674
  (1773, 27054)	0.04890355750792
  (1773, 27310)	0.19507136965306365
  (1773, 27529)	0.09315643872289857
  (1773, 27559)	0.06036786088447917
  (1773, 27567)	0.10898627884851167
  (1773, 27931)	0.025484551235960905
  (1773, 28117)	0.037374651973244605
  (1773, 28245)	0.20578452693438995
  (1773, 28403)	0.08037092430387642
  (1773, 28791)	0.43483758303966846

You are converting word counts into TF-IDF scores.

Some words (like "the", "and", "is") appear in almost every document, so plain counting makes them seem important — but they’re not.

TF-IDF downweights common words, and upweights rare but meaningful words

In [ ]:
model = MultinomialNB().fit(x_train_tfidf, training_data.target)
Method What It Does When to Use
fit() Learns from the data (builds vocabulary, computes mean/var, etc.) On training data only
transform() Applies what was learned to new data On both train & test
fit_transform() Does both steps in one line On training data only
In [ ]:
new_sentences = [
    "NASA is planning a new mission to Mars in 2027.",
    "The 3D rendering in this graphics software is mind-blowing.",
    "The Yankees won the baseball game in extra innings.",
    "Astrophysicists discovered a new black hole near the Milky Way.",
    "Photoshop is the most powerful image editing tool I’ve used.",
    "The pitcher threw a perfect game in last night’s match.",
    "SpaceX successfully launched another satellite.",
    "OpenGL is essential for real-time rendering in game engines.",
    "The outfielder made an incredible diving catch!",

    "Astronauts train for months before heading to the International Space Station."
]


x_new_counts = count_vector.transform(new_sentences)
x_new_tfidf = tfid_transformer.transform(x_new_counts)

predicted = model.predict(x_new_tfidf)

for doc, category in zip(new_sentences,predicted):
  print('%r----------------->%s'%(doc,training_data.target_names[category]))
'NASA is planning a new mission to Mars in 2027.'----------------->sci.space
'The 3D rendering in this graphics software is mind-blowing.'----------------->comp.graphics
'The Yankees won the baseball game in extra innings.'----------------->rec.sport.baseball
'Astrophysicists discovered a new black hole near the Milky Way.'----------------->sci.space
'Photoshop is the most powerful image editing tool I’ve used.'----------------->comp.graphics
'The pitcher threw a perfect game in last night’s match.'----------------->rec.sport.baseball
'SpaceX successfully launched another satellite.'----------------->sci.space
'OpenGL is essential for real-time rendering in game engines.'----------------->rec.sport.baseball
'The outfielder made an incredible diving catch!'----------------->rec.sport.baseball
'Astronauts train for months before heading to the International Space Station.'----------------->sci.space

A Pipeline is a way to chain multiple steps in your ML workflow so they run sequentially and consistently.¶

In [ ]:
from sklearn.pipeline import Pipeline

model_pipeline = Pipeline([
    ('Counter',CountVectorizer()),
    ('vectorizer',TfidfTransformer()),
    ('model',MultinomialNB())
])

#training the pipeline

model_pipeline.fit(training_data.data,training_data.target)

predicted = model_pipeline.predict(new_sentences)
print(predicted)

for doc, category in zip(new_sentences,predicted):
  print(f"{doc!r}----->{training_data.target_names[category]}")
[2 0 1 2 0 1 2 1 1 2]
'NASA is planning a new mission to Mars in 2027.'----->sci.space
'The 3D rendering in this graphics software is mind-blowing.'----->comp.graphics
'The Yankees won the baseball game in extra innings.'----->rec.sport.baseball
'Astrophysicists discovered a new black hole near the Milky Way.'----->sci.space
'Photoshop is the most powerful image editing tool I’ve used.'----->comp.graphics
'The pitcher threw a perfect game in last night’s match.'----->rec.sport.baseball
'SpaceX successfully launched another satellite.'----->sci.space
'OpenGL is essential for real-time rendering in game engines.'----->rec.sport.baseball
'The outfielder made an incredible diving catch!'----->rec.sport.baseball
'Astronauts train for months before heading to the International Space Station.'----->sci.space