List of valid Words
@@ -146,7 +147,6 @@
List of valid Words
constructor()
{
this.LB = null;
- this.sortedScore = null;
}
}
@@ -186,6 +186,7 @@
List of valid Words
var no_clicks = 0; //No. of clicks done by user
var selected_letters = []; //The letters clicked on and letters between those two selected letters
+ var sent_status = 0;
var selected_word = null;
var button = null;
var number = 1;
@@ -193,40 +194,13 @@
List of valid Words
var timerInterval;
var state_timer = false;
var words = "";
+ var grid_test = null;
+ var times = 0;
var leaderboard_list = [];
var Player_table = document.getElementById("PlayersAndWords");
- for (var i = 0; i < 20; i++)
- {
- var buttonTable = document.getElementById("Grid");
- var row = buttonTable.insertRow();
- for (var j = 1; j < 21; j++)
- {
- var cell = row.insertCell();
- var button = document.createElement("button");
- button.textContent = "?";
- button.id = number;
-
- button.style.border = "none";
- button.style.backgroundColor = "transparent";
- button.style.boxShadow = "none";
- button.style.margin = "0";
- button.style.outline = "none";
- button.style.cursor = "pointer";
- button.style.fontSize = "20px";
- button.style.width = "20px";
- button.style.height = "20px";
- button.style.lineHeight = "0";
- (function(i, j) {
- button.addEventListener("click", function() {
- button_click(i, j);
- });
- })(i, j);
-
- cell.appendChild(button);
- number+=1;
- }
- }
+ var buttonTable = document.getElementById("Grid");
+
connection = new WebSocket(serverUrl);
@@ -239,7 +213,7 @@
List of valid Words
{
console.log("close");
}
-
+
connection.onmessage = function(event)
{
//Store the data
@@ -248,11 +222,31 @@
List of valid Words
//Assign each server to a userid
if (!isNaN(receivedData))
- {
- console.log("entered empty");
- userid = parseInt(receivedData);
+ {
+ if (times === 0)
+ {
+ console.log("entered empty");
+ userid = parseInt(receivedData);
+ times+=1;
+ }
+ else
+ {
+ grid_test = parseInt(receivedData);
+ times = 0;
+ create_grid();
+ }
+
+ }
+ else if (JSON.parse(event.data)==="approved")
+ {
+ sent_status = 1;
+ join();
+ }
+ else if (JSON.parse(event.data)==="disapproved")
+ {
+ sent_status = -1;
+ join();
}
-
//Checks if it is a waiting list
else if (Array.isArray(JSON.parse(event.data)))
{
@@ -341,9 +335,9 @@
List of valid Words
//Assign the grid with each letter
var number = 1;
- for (var i = 0; i < 20; i++)
+ for (var i = 0; i < grid_test; i++)
{
- for (var k = 0; k < 20; k++)
+ for (var k = 0; k < grid_test; k++)
{
var button = document.getElementById(number);
@@ -355,7 +349,7 @@
List of valid Words
//Go through the letters to highlight if it is there
for (var i = 0; i < userevent.letters.length; i++)
{
- var buttonId = userevent.letters[i].row * 20 + userevent.letters[i].col;
+ var buttonId = userevent.letters[i].row * grid_test + userevent.letters[i].col;
button = document.getElementById(buttonId);
button.style.backgroundColor = userevent.color;
}
@@ -471,69 +465,96 @@
List of valid Words
}
- function update()
- {
- U = new UserEvent();
- U.Handle = username;
- U.GameType = gametype;
+
+
+
+ function update() {
var radioButton = document.getElementById("ready");
+
console.log(radioButton);
- if (radioButton.checked)
- {
- U.ready = 1;
- var number = 1;
- for (var i = 0; i < 20; i++)
- {
- for (var k = 0; k < 20; k++)
- {
- var button = document.getElementById(number);
- button.style.backgroundColor = "transparent";
- number++;
- }
- }
- state_timer = false;
- }
- else
- {
- U.ready = -1;
+
+ if (radioButton.checked) {
+ U = new UserEvent();
+ U.Handle = username;
+ U.GameType = gametype;
+ U.ready = 1;
+
+ // Clear the color of all buttons
+ for (var i = 1; i <= 400; i++) {
+ var button = document.getElementById(i);
+ if (button) {
+ button.style.backgroundColor = "transparent";
+ }
+ }
+
+ state_timer = false;
+ } else {
+ U = new UserEvent();
+ U.Handle = username;
+ U.GameType = gametype;
+ U.ready = -1;
}
-
-
+
connection.send(JSON.stringify(U));
- console.log(JSON.stringify(U));
- }
+ console.log(JSON.stringify(U));
+ }
+
function join()
{
username = document.getElementById("username").value;
- var gameTypeRadios = document.getElementsByName("game_type");
- if (username.trim() !== "")
+ if (username.trim() !== "")
{
- for (var i = 0; i < gameTypeRadios.length; i++)
- {
- if (gameTypeRadios[i].checked)
- {
- gametype = gameTypeRadios[i].value;
- }
- }
-
- U = new UserEvent();
- U.Handle = username;
- U.GameType = gametype;
- U.ready = -1;
- U.game = null;
- U.Uid = userid;
- U.letters = [];
-
- connection.send(JSON.stringify(U));
- console.log(JSON.stringify(U));
-
- console.log("I am showing the lobby and hiding basic info") ;
- // Show the lobby form
- document.getElementById("Lobby").style.display = "block";
- // Hide the basic info form
- document.getElementById("Basic_info").style.display = "none";
- }
+
+
+ if (sent_status === 0)
+ {
+ U = new UserEvent();
+ U.Handle = username;
+ U.ready = -2;
+
+ connection.send(JSON.stringify(U));
+ }
+ else if (sent_status === 1)
+ {
+
+
+ var gameTypeRadios = document.getElementsByName("game_type");
+
+
+ for (var i = 0; i < gameTypeRadios.length; i++)
+ {
+ if (gameTypeRadios[i].checked)
+ {
+ gametype = gameTypeRadios[i].value;
+ }
+ }
+
+ U = new UserEvent();
+ U.Handle = username;
+ U.GameType = gametype;
+ U.ready = -1;
+ U.game = null;
+ U.Uid = userid;
+ U.letters = [];
+
+ connection.send(JSON.stringify(U));
+ console.log(JSON.stringify(U));
+
+ console.log("I am showing the lobby and hiding basic info");
+ // Show the lobby form
+ document.getElementById("Lobby").style.display = "block";
+ // Hide the basic info form
+ document.getElementById("Basic_info").style.display = "none";
+
+
+ }
+ else
+ {
+ alert("Username already taken.");
+ sent_status = 0;
+ }
+ }
else
{
@@ -560,7 +581,7 @@
List of valid Words
if (no_clicks === 1)
{
- var buttonId = row * 20 + column;
+ var buttonId = row * grid_test + column;
button = document.getElementById(buttonId);
button.style.backgroundColor = "#f2f2f2";
}
@@ -637,9 +658,9 @@
List of valid Words
function startGameTimer()
{
- var threeMinutes = 60 * 1, // 3 minutes in seconds
+ var threeMinutes = 60 * 3, // 3 minutes in seconds
display = document.querySelector('#timer');
- startTimer(30, display);
+ startTimer(threeMinutes, display);
}
function sendMessage()
@@ -653,6 +674,41 @@
List of valid Words
document.getElementById("chat-input").value = "";
}
+function create_grid()
+{
+
+ for (var i = 0; i < grid_test; i++)
+ {
+
+ var row = buttonTable.insertRow();
+ for (var j = 1; j < (grid_test+1); j++)
+ {
+ var cell = row.insertCell();
+ var button = document.createElement("button");
+ button.textContent = "?";
+ button.id = number;
+
+ button.style.border = "none";
+ button.style.backgroundColor = "transparent";
+ button.style.boxShadow = "none";
+ button.style.margin = "0";
+ button.style.outline = "none";
+ button.style.cursor = "pointer";
+ button.style.fontSize = "20px";
+ button.style.width = "20px";
+ button.style.height = "20px";
+ button.style.lineHeight = "0";
+ (function(i, j) {
+ button.addEventListener("click", function() {
+ button_click(i, j);
+ });
+ })(i, j);
+
+ cell.appendChild(button);
+ number+=1;
+ }
+ }
+}
diff --git a/pom.xml b/pom.xml
index cd39d6d..95db4e3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,17 +1,16 @@
-
4.0.0
uta.cse3310
- TicTacToe
+ TWSG
1.0-SNAPSHOT
- TicTacToe
+ TWSG
A simple game example.
- http://www.example.com
+ http://127.0.0.1:9022/
UTF-8
@@ -21,15 +20,10 @@
- junit
- junit
- 3.8.1
-
-
- org.junit.jupiter
- junit-jupiter-api
- 5.7.0
- test
+ org.junit.jupiter
+ junit-jupiter-api
+ 5.7.0
+ test
com.googlecode.json-simple
@@ -39,33 +33,31 @@
${pom.basedir}/lib/json-simple-1.1.1.jar
- junit
- junit
- 4.11
- test
-
-
- com.google.code.gson
- gson
- 2.9.1
-
-
-
- net.freeutils
- jlhttp
- 2.6
-
-
-
- org.java-websocket
- Java-WebSocket
- 1.5.4
-
-
+ junit
+ junit
+ 4.11
+ test
+
+
+ com.google.code.gson
+ gson
+ 2.9.1
+
+
+ net.freeutils
+ jlhttp
+ 2.6
+
+
+ org.java-websocket
+ Java-WebSocket
+ 1.5.4
+
-
+
+
maven-clean-plugin
@@ -116,3 +108,4 @@
+
diff --git a/src/main/files.txt b/src/main/files.txt
index 6bd26e2..6abae1c 100644
--- a/src/main/files.txt
+++ b/src/main/files.txt
@@ -1,11 +1,4 @@
-a
-aa
-aaa
-aaron
-ab
abandoned
-abc
-aberdeen
abilities
ability
able
@@ -13,9 +6,7 @@ aboriginal
abortion
about
above
-abraham
abroad
-abs
absence
absent
absolute
@@ -23,13 +14,10 @@ absolutely
absorption
abstract
abstracts
-abu
abuse
-ac
academic
academics
academy
-acc
accent
accept
acceptable
@@ -66,9 +54,6 @@ accuracy
accurate
accurately
accused
-acdbentity
-ace
-acer
achieve
achieved
achievement
@@ -78,7 +63,6 @@ acid
acids
acknowledge
acknowledged
-acm
acne
acoustic
acquire
@@ -90,7 +74,6 @@ acres
acrobat
across
acrylic
-act
acting
action
actions
@@ -108,17 +91,11 @@ acts
actual
actually
acute
-ad
-ada
-adam
-adams
adaptation
adapted
adapter
adapters
adaptive
-adaptor
-add
added
addiction
adding
@@ -131,10 +108,7 @@ addressed
addresses
addressing
adds
-adelaide
adequate
-adidas
-adipex
adjacent
adjust
adjustable
@@ -156,9 +130,6 @@ adolescent
adopt
adopted
adoption
-adrian
-ads
-adsl
adult
adults
advance
@@ -186,10 +157,8 @@ advisory
advocacy
advocate
adware
-ae
aerial
aerospace
-af
affair
affairs
affect
@@ -202,17 +171,12 @@ affiliates
affiliation
afford
affordable
-afghanistan
afraid
-africa
-african
after
afternoon
afterwards
-ag
again
against
-age
aged
agencies
agency
@@ -223,7 +187,6 @@ ages
aggregate
aggressive
aging
-ago
agree
agreed
agreement
@@ -231,15 +194,10 @@ agreements
agrees
agricultural
agriculture
-ah
ahead
-ai
-aid
aids
-aim
aimed
aims
-air
aircraft
airfare
airline
@@ -247,46 +205,22 @@ airlines
airplane
airport
airports
-aj
-ak
-aka
-al
-ala
-alabama
-alan
alarm
-alaska
-albania
-albany
-albert
-alberta
album
albums
-albuquerque
alcohol
alert
alerts
-alex
-alexander
-alexandria
-alfred
algebra
-algeria
algorithm
algorithms
-ali
alias
-alice
alien
align
alignment
alike
alive
-all
-allah
-allan
alleged
-allen
allergy
alliance
allied
@@ -301,13 +235,11 @@ alloy
almost
alone
along
-alot
alpha
alphabetical
alpine
already
also
-alt
alter
altered
alternate
@@ -316,45 +248,25 @@ alternatively
alternatives
although
alto
-aluminium
aluminum
alumni
always
-am
-amanda
amateur
amazing
amazon
-amazoncom
-amazoncouk
ambassador
amber
-ambien
ambient
-amd
amend
amended
amendment
amendments
amenities
-america
-american
-americans
-americas
amino
among
-amongst
amount
amounts
-amp
-ampland
amplifier
-amsterdam
-amy
-an
-ana
-anaheim
-anal
analog
analyses
analysis
@@ -366,33 +278,17 @@ analyzed
anatomy
anchor
ancient
-and
-andale
-anderson
-andorra
-andrea
-andreas
-andrew
-andrews
-andy
angel
-angela
-angeles
angels
anger
angle
-angola
angry
animal
animals
animated
animation
anime
-ann
-anna
-anne
annex
-annie
anniversary
annotated
annotation
@@ -410,22 +306,16 @@ answer
answered
answering
answers
-ant
-antarctica
antenna
-anthony
anthropology
anti
antibodies
antibody
anticipated
-antigua
antique
antiques
antivirus
-antonio
anxiety
-any
anybody
anymore
anyone
@@ -433,16 +323,9 @@ anything
anytime
anyway
anywhere
-aol
-ap
-apache
apart
apartment
apartments
-api
-apnic
-apollo
-app
apparatus
apparel
apparent
@@ -485,19 +368,11 @@ approx
approximate
approximately
apps
-apr
-april
-apt
aqua
aquarium
aquatic
-ar
-arab
-arabia
-arabic
arbitrary
arbitration
-arc
arcade
arch
architect
@@ -508,29 +383,19 @@ archive
archived
archives
arctic
-are
area
areas
arena
-arg
-argentina
argue
argued
argument
arguments
arise
arising
-arizona
-arkansas
-arlington
-arm
armed
-armenia
armor
arms
-armstrong
army
-arnold
around
arrange
arranged
@@ -545,9 +410,7 @@ arrive
arrived
arrives
arrow
-art
arthritis
-arthur
article
articles
artificial
@@ -556,26 +419,13 @@ artistic
artists
arts
artwork
-aruba
-as
asbestos
-ascii
-ash
-ashley
-asia
-asian
aside
-asin
-ask
asked
asking
asks
-asn
-asp
aspect
aspects
-aspnet
-ass
assault
assembled
assembly
@@ -612,19 +462,10 @@ assured
asthma
astrology
astronomy
-asus
-at
-ata
-ate
-athens
athletes
athletic
athletics
-ati
-atlanta
-atlantic
atlas
-atm
atmosphere
atmospheric
atom
@@ -655,25 +496,15 @@ attractions
attractive
attribute
attributes
-au
auburn
-auckland
auction
auctions
-aud
-audi
audience
audio
audit
auditor
-aug
august
aurora
-aus
-austin
-australia
-australian
-austria
authentic
authentication
author
@@ -692,20 +523,14 @@ automobiles
automotive
autos
autumn
-av
availability
available
avatar
-ave
avenue
average
-avg
-avi
aviation
avoid
avoiding
-avon
-aw
award
awarded
awards
@@ -715,11 +540,6 @@ away
awesome
awful
axis
-aye
-az
-azerbaijan
-b
-ba
babe
babes
babies
@@ -734,36 +554,25 @@ backup
bacon
bacteria
bacterial
-bad
badge
badly
-bag
-baghdad
bags
-bahamas
-bahrain
bailey
baker
baking
balance
balanced
bald
-bali
ball
ballet
balloon
ballot
balls
-baltimore
-ban
banana
band
bands
bandwidth
bang
-bangbus
-bangkok
-bangladesh
bank
banking
bankruptcy
@@ -772,28 +581,21 @@ banned
banner
banners
baptist
-bar
-barbados
-barbara
barbie
-barcelona
bare
barely
bargain
bargains
barn
-barnes
barrel
barrier
barriers
-barry
bars
base
baseball
based
baseline
basement
-basename
bases
basic
basically
@@ -804,7 +606,6 @@ basket
basketball
baskets
bass
-bat
batch
bath
bathroom
@@ -815,15 +616,6 @@ batteries
battery
battle
battlefield
-bay
-bb
-bbc
-bbs
-bbw
-bc
-bd
-bdsm
-be
beach
beaches
beads
@@ -834,10 +626,7 @@ bear
bearing
bears
beast
-beastality
-beastiality
beat
-beatles
beats
beautiful
beautifully
@@ -848,13 +637,10 @@ because
become
becomes
becoming
-bed
bedding
-bedford
bedroom
bedrooms
beds
-bee
beef
been
beer
@@ -869,21 +655,14 @@ begun
behalf
behavior
behavioral
-behaviour
behind
-beijing
being
beings
-belarus
-belfast
-belgium
belief
beliefs
believe
believed
believes
-belize
-belkin
bell
belle
belly
@@ -892,7 +671,6 @@ belongs
below
belt
belts
-ben
bench
benchmark
bend
@@ -900,60 +678,40 @@ beneath
beneficial
benefit
benefits
-benjamin
-bennett
-benz
-berkeley
-berlin
-bermuda
-bernard
berry
beside
besides
best
-bestiality
bestsellers
-bet
beta
-beth
better
betting
-betty
between
beverage
beverages
-beverly
beyond
-bg
-bhutan
-bi
bias
bible
biblical
bibliographic
bibliography
bicycle
-bid
bidder
bidding
bids
-big
bigger
biggest
bike
bikes
-bikini
bill
billing
billion
bills
billy
-bin
binary
bind
binding
bingo
-bio
biodiversity
biographies
biography
@@ -964,28 +722,17 @@ bios
biotechnology
bird
birds
-birmingham
birth
birthday
bishop
-bit
-bitch
bite
bits
-biz
bizarre
-bizrate
-bk
-bl
black
blackberry
blackjack
-blacks
blade
blades
-blah
-blair
-blake
blame
blank
blanket
@@ -1010,41 +757,26 @@ blonde
blood
bloody
bloom
-bloomberg
blow
blowing
-blowjob
-blowjobs
blue
blues
-bluetooth
-blvd
-bm
-bmw
-bo
board
boards
boat
boating
boats
-bob
bobby
-boc
bodies
body
bold
-bolivia
bolt
bomb
-bon
bond
-bondage
bonds
bone
bones
bonus
-boob
-boobs
book
booking
bookings
@@ -1052,26 +784,19 @@ bookmark
bookmarks
books
bookstore
-bool
-boolean
boom
boost
boot
booth
boots
-booty
border
borders
bored
boring
born
-borough
-bosnia
boss
-boston
both
bother
-botswana
bottle
bottles
bottom
@@ -1083,37 +808,26 @@ boundaries
boundary
bouquet
boutique
-bow
bowl
bowling
-box
boxed
boxes
boxing
-boy
boys
-bp
-br
-bra
bracelet
bracelets
bracket
brad
-bradford
-bradley
brain
brake
brakes
branch
branches
brand
-brandon
brands
bras
brass
brave
-brazil
-brazilian
breach
bread
break
@@ -1121,14 +835,11 @@ breakdown
breakfast
breaking
breaks
-breast
-breasts
breath
breathing
breed
breeding
breeds
-brian
brick
bridal
bride
@@ -1139,23 +850,15 @@ briefing
briefly
briefs
bright
-brighton
brilliant
bring
bringing
brings
-brisbane
-bristol
-britain
-britannica
-british
-britney
broad
broadband
broadcast
broadcasting
broader
-broadway
brochure
brochures
broke
@@ -1163,8 +866,6 @@ broken
broker
brokers
bronze
-brook
-brooklyn
brooks
bros
brother
@@ -1175,29 +876,16 @@ browse
browser
browsers
browsing
-bruce
-brunei
brunette
-brunswick
brush
-brussels
brutal
-bryan
-bryant
-bs
-bt
bubble
-buck
bucks
-budapest
buddy
budget
budgets
-buf
buffalo
buffer
-bufing
-bug
bugs
build
builder
@@ -1206,9 +894,6 @@ building
buildings
builds
built
-bukkake
-bulgaria
-bulgarian
bulk
bull
bullet
@@ -1220,22 +905,16 @@ bunny
burden
bureau
buried
-burke
-burlington
burn
burner
burning
burns
burst
-burton
-bus
buses
bush
business
businesses
-busty
busy
-but
butler
butt
butter
@@ -1243,20 +922,13 @@ butterfly
button
buttons
butts
-buy
buyer
buyers
buying
buys
buzz
-bw
-by
-bye
byte
bytes
-c
-ca
-cab
cabin
cabinet
cabinets
@@ -1264,13 +936,10 @@ cable
cables
cache
cached
-cad
-cadillac
cafe
cage
cake
cakes
-cal
calcium
calculate
calculated
@@ -1280,43 +949,24 @@ calculator
calculators
calendar
calendars
-calgary
calibration
-calif
-california
call
called
calling
calls
calm
-calvin
-cam
-cambodia
-cambridge
-camcorder
-camcorders
-came
camel
camera
cameras
-cameron
-cameroon
camp
campaign
campaigns
-campbell
camping
camps
campus
-cams
-can
-canada
-canadian
canal
-canberra
cancel
cancellation
-cancelled
cancer
candidate
candidates
@@ -1328,7 +978,6 @@ canon
cant
canvas
canyon
-cap
capabilities
capability
capable
@@ -1340,12 +989,9 @@ caps
captain
capture
captured
-car
-carb
carbon
card
cardiac
-cardiff
cardiovascular
cards
care
@@ -1353,24 +999,15 @@ career
careers
careful
carefully
-carey
cargo
-caribbean
caring
-carl
-carlo
-carlos
-carmen
carnival
carol
-carolina
-caroline
carpet
carried
carrier
carriers
carries
-carroll
carry
carrying
cars
@@ -1380,32 +1017,25 @@ cartoon
cartoons
cartridge
cartridges
-cas
-casa
case
cases
-casey
cash
cashiers
casino
casinos
-casio
cassette
cast
casting
castle
casual
-cat
catalog
catalogs
-catalogue
catalyst
catch
categories
category
catering
cathedral
-catherine
catholic
cats
cattle
@@ -1416,16 +1046,6 @@ causes
causing
caution
cave
-cayman
-cb
-cbs
-cc
-ccd
-cd
-cdna
-cds
-cdt
-ce
cedar
ceiling
celebrate
@@ -1436,7 +1056,6 @@ celebs
cell
cells
cellular
-celtic
cement
cemetery
census
@@ -1445,12 +1064,9 @@ center
centered
centers
central
-centre
-centres
cents
centuries
century
-ceo
ceramic
ceremony
certain
@@ -1459,13 +1075,6 @@ certificate
certificates
certification
certified
-cest
-cet
-cf
-cfr
-cg
-cgi
-ch
chad
chain
chains
@@ -1483,13 +1092,11 @@ champion
champions
championship
championships
-chan
chance
chancellor
chances
change
changed
-changelog
changes
changing
channel
@@ -1513,10 +1120,7 @@ charges
charging
charitable
charity
-charles
-charleston
charlie
-charlotte
charm
charming
charms
@@ -1540,21 +1144,13 @@ checks
cheers
cheese
chef
-chelsea
chem
chemical
chemicals
chemistry
-chen
-cheque
cherry
chess
chest
-chester
-chevrolet
-chevy
-chi
-chicago
chick
chicken
chicks
@@ -1562,13 +1158,9 @@ chief
child
childhood
children
-childrens
-chile
china
-chinese
chip
chips
-cho
chocolate
choice
choices
@@ -1579,36 +1171,19 @@ choosing
chorus
chose
chosen
-chris
-christ
christian
-christianity
-christians
-christina
-christine
-christmas
-christopher
chrome
chronic
chronicle
chronicles
-chrysler
chubby
chuck
church
churches
-ci
-cia
-cialis
ciao
cigarette
cigarettes
-cincinnati
-cindy
cinema
-cingular
-cio
-cir
circle
circles
circuit
@@ -1617,7 +1192,6 @@ circular
circulation
circumstances
circus
-cisco
citation
citations
cite
@@ -1627,22 +1201,15 @@ citizen
citizens
citizenship
city
-citysearch
civic
civil
civilian
civilization
-cj
-cl
claim
claimed
claims
-claire
clan
-clara
clarity
-clark
-clarke
class
classes
classic
@@ -1665,7 +1232,6 @@ cleared
clearing
clearly
clerk
-cleveland
click
clicking
clicks
@@ -1678,7 +1244,6 @@ climbing
clinic
clinical
clinics
-clinton
clip
clips
clock
@@ -1702,13 +1267,6 @@ club
clubs
cluster
clusters
-cm
-cms
-cn
-cnet
-cnetcom
-cnn
-co
coach
coaches
coaching
@@ -1719,22 +1277,14 @@ coastal
coat
coated
coating
-cock
-cocks
-cod
code
codes
coding
coffee
cognitive
-cohen
coin
coins
-col
cold
-cole
-coleman
-colin
collaboration
collaborative
collapse
@@ -1742,7 +1292,6 @@ collar
colleague
colleagues
collect
-collectables
collected
collectible
collectibles
@@ -1754,24 +1303,16 @@ collector
collectors
college
colleges
-collins
cologne
-colombia
colon
colonial
colony
color
-colorado
colored
colors
-colour
-colours
-columbia
-columbus
column
columnists
columns
-com
combat
combination
combinations
@@ -1817,7 +1358,6 @@ commonwealth
communicate
communication
communications
-communist
communities
community
comp
@@ -1825,7 +1365,6 @@ compact
companies
companion
company
-compaq
comparable
comparative
compare
@@ -1882,7 +1421,6 @@ computed
computer
computers
computing
-con
concentrate
concentration
concentrations
@@ -1910,7 +1448,6 @@ condos
conduct
conducted
conducting
-conf
conference
conferences
conferencing
@@ -1918,7 +1455,6 @@ confidence
confident
confidential
confidentiality
-config
configuration
configure
configured
@@ -1930,14 +1466,12 @@ conflict
conflicts
confused
confusion
-congo
congratulations
congress
congressional
conjunction
connect
connected
-connecticut
connecting
connection
connections
@@ -1974,7 +1508,6 @@ consolidated
consolidation
consortium
conspiracy
-const
constant
constantly
constitute
@@ -2077,7 +1610,6 @@ coordinated
coordinates
coordination
coordinator
-cop
cope
copied
copies
@@ -2093,16 +1625,13 @@ cordless
core
cork
corn
-cornell
corner
corners
-cornwall
corp
corporate
corporation
corporations
corps
-corpus
correct
corrected
correction
@@ -2112,11 +1641,9 @@ correlation
correspondence
corresponding
corruption
-cos
cosmetic
cosmetics
cost
-costa
costs
costume
costumes
@@ -2156,21 +1683,13 @@ coverage
covered
covering
covers
-cow
cowboy
-cox
-cp
-cpu
-cr
crack
cradle
craft
crafts
-craig
-crap
craps
crash
-crawford
crazy
cream
create
@@ -2199,8 +1718,6 @@ criterion
critical
criticism
critics
-crm
-croatia
crop
crops
cross
@@ -2212,15 +1729,7 @@ crucial
crude
cruise
cruises
-cruz
-cry
crystal
-cs
-css
-cst
-ct
-cu
-cuba
cube
cubic
cuisine
@@ -2228,12 +1737,7 @@ cult
cultural
culture
cultures
-cum
-cumshot
-cumshots
cumulative
-cunt
-cup
cups
cure
curious
@@ -2243,65 +1747,40 @@ current
currently
curriculum
cursor
-curtis
curve
curves
custody
custom
customer
customers
-customise
customize
customized
customs
-cut
cute
cuts
cutting
-cv
-cvs
-cw
-cyber
cycle
cycles
cycling
cylinder
-cyprus
-cz
-czech
-d
-da
-dad
daddy
daily
dairy
daisy
-dakota
dale
-dallas
-dam
damage
damaged
damages
dame
-damn
-dan
-dana
dance
dancing
danger
dangerous
-daniel
danish
-danny
-dans
dare
dark
darkness
-darwin
-das
dash
-dat
data
database
databases
@@ -2311,44 +1790,25 @@ dates
dating
daughter
daughters
-dave
-david
-davidson
-davis
dawn
-day
days
-dayton
-db
-dc
-dd
-ddr
-de
dead
deadline
deadly
-deaf
deal
-dealer
-dealers
dealing
deals
dealt
-dealtime
dean
dear
death
deaths
debate
-debian
-deborah
debt
debug
debut
-dec
decade
decades
-december
decent
decide
decided
@@ -2367,17 +1827,14 @@ decorative
decrease
decreased
dedicated
-dee
deemed
deep
deeper
deeply
deer
-def
default
defeat
defects
-defence
defend
defendant
defense
@@ -2393,15 +1850,12 @@ definition
definitions
degree
degrees
-del
-delaware
delay
delayed
delays
delegation
delete
deleted
-delhi
delicious
delight
deliver
@@ -2412,7 +1866,6 @@ delivery
dell
delta
deluxe
-dem
demand
demanding
demands
@@ -2426,16 +1879,12 @@ demonstrate
demonstrated
demonstrates
demonstration
-den
denial
denied
-denmark
-dennis
dense
density
dental
dentists
-denver
deny
department
departmental
@@ -2454,11 +1903,8 @@ depression
dept
depth
deputy
-der
derby
-derek
derived
-des
descending
describe
described
@@ -2503,12 +1949,6 @@ determine
determined
determines
determining
-detroit
-deutsch
-deutsche
-deutschland
-dev
-devel
develop
developed
developer
@@ -2523,12 +1963,7 @@ deviation
device
devices
devil
-devon
devoted
-df
-dg
-dh
-di
diabetes
diagnosis
diagnostic
@@ -2539,19 +1974,12 @@ dialogue
diameter
diamond
diamonds
-diana
-diane
diary
dice
-dick
-dicke
dicks
dictionaries
dictionary
-did
-die
died
-diego
dies
diesel
diet
@@ -2566,22 +1994,15 @@ differently
difficult
difficulties
difficulty
-diffs
-dig
digest
digit
digital
-dildo
-dildos
-dim
dimension
dimensional
dimensions
dining
dinner
-dip
diploma
-dir
direct
directed
direction
@@ -2594,7 +2015,6 @@ directors
directory
dirt
dirty
-dis
disabilities
disability
disable
@@ -2634,7 +2054,6 @@ dish
dishes
disk
disks
-disney
disorder
disorders
dispatch
@@ -2647,7 +2066,6 @@ disposal
disposition
dispute
disputes
-dist
distance
distances
distant
@@ -2663,7 +2081,6 @@ distributors
district
districts
disturbed
-div
dive
diverse
diversity
@@ -2674,17 +2091,6 @@ divine
diving
division
divisions
-divorce
-divx
-diy
-dj
-dk
-dl
-dm
-dna
-dns
-do
-doc
dock
docs
doctor
@@ -2693,64 +2099,44 @@ doctrine
document
documentary
documentation
-documentcreatetextnode
documented
documents
-dod
dodge
-doe
does
-dog
dogs
doing
doll
dollar
dollars
dolls
-dom
domain
domains
dome
domestic
dominant
-dominican
-don
-donald
donate
donated
donation
donations
done
-donna
donor
donors
-dont
doom
door
doors
-dos
dosage
dose
-dot
double
doubt
-doug
-douglas
-dover
-dow
down
download
downloadable
-downloadcom
downloaded
downloading
downloads
downtown
dozen
dozens
-dp
-dpi
-dr
draft
drag
dragon
@@ -2787,54 +2173,27 @@ drop
dropped
drops
drove
-drug
-drugs
drum
drums
-drunk
-dry
dryer
-ds
-dsc
-dsl
-dt
-dts
-du
dual
-dubai
-dublin
duck
dude
-due
-dui
duke
-dumb
dump
-duncan
-duo
duplicate
durable
duration
-durham
during
dust
dutch
duties
duty
-dv
-dvd
-dvds
-dx
-dying
-dylan
dynamic
dynamics
-e
-ea
each
eagle
eagles
-ear
earl
earlier
earliest
@@ -2851,35 +2210,20 @@ ease
easier
easily
east
-easter
eastern
easy
-eat
eating
-eau
-ebay
ebony
-ebook
-ebooks
-ec
echo
eclipse
-eco
ecological
ecology
-ecommerce
economic
economics
economies
economy
-ecuador
-ed
-eddie
-eden
-edgar
edge
edges
-edinburgh
edit
edited
editing
@@ -2889,17 +2233,10 @@ editor
editorial
editorials
editors
-edmonton
-eds
-edt
educated
education
educational
educators
-edward
-edwards
-ee
-ef
effect
effective
effectively
@@ -2910,16 +2247,9 @@ efficient
efficiently
effort
efforts
-eg
-egg
eggs
-egypt
-egyptian
-eh
eight
either
-ejaculation
-el
elder
elderly
elect
@@ -2930,7 +2260,6 @@ electoral
electric
electrical
electricity
-electro
electron
electronic
electronics
@@ -2946,15 +2275,8 @@ eligible
eliminate
elimination
elite
-elizabeth
-ellen
-elliott
-ellis
else
elsewhere
-elvis
-em
-emacs
email
emails
embassy
@@ -2962,12 +2284,9 @@ embedded
emerald
emergency
emerging
-emily
-eminem
emirates
emission
emissions
-emma
emotional
emotions
emperor
@@ -2982,12 +2301,10 @@ employer
employers
employment
empty
-en
enable
enabled
enables
enabling
-enb
enclosed
enclosure
encoding
@@ -2999,10 +2316,8 @@ encourages
encouraging
encryption
encyclopedia
-end
endangered
ended
-endif
ending
endless
endorsed
@@ -3012,7 +2327,6 @@ enemies
enemy
energy
enforcement
-eng
engage
engaged
engagement
@@ -3022,8 +2336,6 @@ engineer
engineering
engineers
engines
-england
-english
enhance
enhanced
enhancement
@@ -3033,18 +2345,14 @@ enjoy
enjoyed
enjoying
enlarge
-enlargement
enormous
enough
-enquiries
-enquiry
enrolled
enrollment
ensemble
ensure
ensures
ensuring
-ent
enter
entered
entering
@@ -3068,16 +2376,9 @@ environment
environmental
environments
enzyme
-eos
-ep
-epa
epic
-epinions
-epinionscom
episode
episodes
-epson
-eq
equal
equality
equally
@@ -3088,30 +2389,18 @@ equipment
equipped
equity
equivalent
-er
-era
-eric
-ericsson
-erik
-erotic
-erotica
-erp
error
errors
-es
escape
escort
escorts
especially
-espn
essay
essays
essence
essential
essentially
essentials
-essex
-est
establish
established
establishing
@@ -3122,33 +2411,18 @@ estimate
estimated
estimates
estimation
-estonia
-et
-etc
eternal
-ethernet
ethical
ethics
-ethiopia
ethnic
-eu
-eugene
-eur
euro
-europe
-european
euros
-ev
-eva
-eval
evaluate
evaluated
evaluating
evaluation
evaluations
evanescence
-evans
-eve
even
evening
event
@@ -3165,7 +2439,6 @@ evidence
evident
evil
evolution
-ex
exact
exactly
exam
@@ -3223,17 +2496,14 @@ existing
exists
exit
exotic
-exp
expand
expanded
expanding
expansion
-expansys
expect
expectations
expected
expects
-expedia
expenditure
expenditures
expense
@@ -3264,7 +2534,6 @@ explore
explorer
exploring
explosion
-expo
export
exports
exposed
@@ -3273,7 +2542,6 @@ express
expressed
expression
expressions
-ext
extend
extended
extending
@@ -3291,19 +2559,14 @@ extraordinary
extras
extreme
extremely
-eye
eyed
eyes
-ez
-f
-fa
fabric
fabrics
fabulous
face
faced
faces
-facial
facilitate
facilities
facility
@@ -3321,7 +2584,6 @@ fails
failure
failures
fair
-fairfield
fairly
fairy
faith
@@ -3336,14 +2598,10 @@ familiar
families
family
famous
-fan
fancy
fans
fantastic
fantasy
-faq
-faqs
-far
fare
fares
farm
@@ -3356,7 +2614,6 @@ fashion
fast
faster
fastest
-fat
fatal
fate
father
@@ -3367,16 +2624,6 @@ favor
favorite
favorites
favors
-favour
-favourite
-favourites
-fax
-fbi
-fc
-fcc
-fd
-fda
-fe
fear
fears
feat
@@ -3384,12 +2631,8 @@ feature
featured
features
featuring
-feb
-february
-fed
federal
federation
-fee
feed
feedback
feeding
@@ -3407,27 +2650,19 @@ felt
female
females
fence
-feof
-ferrari
ferry
festival
festivals
fetish
fever
-few
fewer
-ff
-fg
-fi
fiber
-fibre
fiction
field
fields
fifteen
fifth
fifty
-fig
fight
fighter
fighters
@@ -3435,7 +2670,6 @@ fighting
figure
figured
figures
-fiji
file
filed
filename
@@ -3445,12 +2679,10 @@ fill
filled
filling
film
-filme
films
filter
filtering
filters
-fin
final
finally
finals
@@ -3459,31 +2691,23 @@ finances
financial
financing
find
-findarticles
finder
finding
findings
-findlaw
finds
fine
finest
finger
-fingering
fingers
finish
finished
finishing
finite
-finland
-finnish
-fioricet
fire
fired
-firefox
fireplace
fires
firewall
-firewire
firm
firms
firmware
@@ -3494,19 +2718,14 @@ fisher
fisheries
fishing
fist
-fisting
-fit
fitness
fits
fitted
fitting
five
-fix
fixed
fixes
fixtures
-fl
-fla
flag
flags
flame
@@ -3521,7 +2740,6 @@ flesh
flex
flexibility
flexible
-flickr
flight
flights
flip
@@ -3533,8 +2751,6 @@ flooring
floors
floppy
floral
-florence
-florida
florist
florists
flour
@@ -3542,23 +2758,16 @@ flow
flower
flowers
flows
-floyd
-flu
fluid
flush
flux
-fly
-flyer
flying
-fm
-fo
foam
focal
focus
focused
focuses
focusing
-fog
fold
folder
folders
@@ -3571,7 +2780,6 @@ following
follows
font
fonts
-foo
food
foods
fool
@@ -3579,8 +2787,6 @@ foot
footage
football
footwear
-for
-forbes
forbidden
force
forced
@@ -3620,8 +2826,6 @@ forward
forwarding
fossil
foster
-foto
-fotos
fought
foul
found
@@ -3632,9 +2836,6 @@ founder
fountain
four
fourth
-fox
-fp
-fr
fraction
fragrance
fragrances
@@ -3643,19 +2844,10 @@ framed
frames
framework
framing
-france
franchise
-francis
-francisco
frank
-frankfurt
-franklin
-fraser
fraud
-fred
-frederick
free
-freebsd
freedom
freelance
freely
@@ -3668,8 +2860,6 @@ frequency
frequent
frequently
fresh
-fri
-friday
fridge
friend
friendly
@@ -3679,24 +2869,13 @@ frog
from
front
frontier
-frontpage
frost
frozen
fruit
fruits
-fs
-ft
-ftp
-fu
-fuck
-fucked
-fucking
fuel
-fuji
-fujitsu
full
fully
-fun
function
functional
functionality
@@ -3713,7 +2892,6 @@ funeral
funk
funky
funny
-fur
furnished
furnishings
furniture
@@ -3723,15 +2901,7 @@ fusion
future
futures
fuzzy
-fw
-fwd
-fx
-fy
-g
-ga
-gabriel
gadgets
-gage
gain
gained
gains
@@ -3741,25 +2911,17 @@ galleries
gallery
gambling
game
-gamecube
games
-gamespot
gaming
gamma
gang
-gangbang
-gap
gaps
garage
garbage
-garcia
garden
gardening
gardens
garlic
-garmin
-gary
-gas
gasoline
gate
gates
@@ -3769,22 +2931,9 @@ gathered
gathering
gauge
gave
-gay
-gays
gazette
-gb
-gba
-gbp
-gc
-gcc
-gd
-gdp
-ge
gear
geek
-gel
-gem
-gen
gender
gene
genealogy
@@ -3804,7 +2953,6 @@ genes
genesis
genetic
genetics
-geneva
genius
genome
genre
@@ -3813,51 +2961,31 @@ gentle
gentleman
gently
genuine
-geo
geographic
geographical
geography
geological
geology
geometry
-george
-georgia
-gerald
-german
-germany
-get
gets
getting
-gg
-ghana
ghost
-ghz
-gi
giant
giants
-gibraltar
-gibson
-gif
gift
gifts
-gig
-gilbert
girl
girlfriend
girls
-gis
give
given
gives
giving
-gl
glad
glance
-glasgow
glass
glasses
glen
-glenn
global
globe
glory
@@ -3865,17 +2993,10 @@ glossary
gloves
glow
glucose
-gm
-gmbh
-gmc
-gmt
gnome
-gnu
-go
goal
goals
goat
-god
gods
goes
going
@@ -3887,18 +3008,13 @@ gonna
good
goods
google
-gordon
gore
gorgeous
gospel
gossip
-got
-gothic
-goto
gotta
gotten
gourmet
-gov
governance
governing
government
@@ -3906,10 +3022,6 @@ governmental
governments
governor
govt
-gp
-gpl
-gps
-gr
grab
grace
grad
@@ -3925,7 +3037,6 @@ grain
grammar
grams
grand
-grande
granny
grant
granted
@@ -3935,11 +3046,9 @@ graphic
graphical
graphics
graphs
-gras
grass
grateful
gratis
-gratuit
grave
gravity
gray
@@ -3947,19 +3056,11 @@ great
greater
greatest
greatly
-greece
-greek
green
-greene
greenhouse
-greensboro
greeting
greetings
-greg
-gregory
-grenada
grew
-grey
grid
griffin
grill
@@ -3978,24 +3079,16 @@ growing
grown
grows
growth
-gs
-gsm
-gst
-gt
-gtk
-guam
guarantee
guaranteed
guarantees
guard
guardian
guards
-guatemala
guess
guest
guestbook
guests
-gui
guidance
guide
guided
@@ -4007,44 +3100,26 @@ guinea
guitar
guitars
gulf
-gun
guns
guru
-guy
-guyana
guys
-gym
-gzip
-h
-ha
habitat
habits
hack
hacker
-had
hair
hairy
-haiti
half
-halfcom
-halifax
hall
-halloween
halo
-ham
hamburg
-hamilton
hammer
-hampshire
-hampton
hand
handbags
handbook
handed
handheld
handhelds
-handjob
-handjobs
handle
handled
handles
@@ -4054,17 +3129,13 @@ hands
handy
hang
hanging
-hans
-hansen
happen
happened
happening
happens
happiness
happy
-harassment
harbor
-harbour
hard
hardcore
hardcover
@@ -4072,41 +3143,22 @@ harder
hardly
hardware
hardwood
-harley
harm
harmful
harmony
-harold
-harper
-harris
-harrison
harry
hart
-hartford
-harvard
harvest
-harvey
-has
hash
-hat
hate
hats
have
haven
having
-hawaii
-hawaiian
hawk
-hay
-hayes
hazard
hazardous
hazards
-hb
-hc
-hd
-hdtv
-he
head
headed
header
@@ -4137,15 +3189,11 @@ heating
heaven
heavily
heavy
-hebrew
heel
height
heights
held
-helen
-helena
helicopter
-hell
hello
helmet
help
@@ -4154,11 +3202,7 @@ helpful
helping
helps
hence
-henderson
-henry
-hentai
hepatitis
-her
herald
herb
herbal
@@ -4170,10 +3214,6 @@ heritage
hero
heroes
herself
-hewlett
-hey
-hh
-hi
hidden
hide
hierarchy
@@ -4191,35 +3231,22 @@ highways
hiking
hill
hills
-hilton
-him
himself
-hindu
hint
hints
-hip
hire
hired
hiring
-his
-hispanic
hist
historic
historical
history
-hit
-hitachi
hits
hitting
-hiv
-hk
-hl
-ho
hobbies
hobby
hockey
hold
-holdem
holder
holders
holding
@@ -4229,11 +3256,8 @@ hole
holes
holiday
holidays
-holland
hollow
holly
-hollywood
-holmes
holocaust
holy
home
@@ -4243,29 +3267,21 @@ homepage
homes
hometown
homework
-hon
-honda
-honduras
honest
honey
-hong
-honolulu
honor
honors
hood
hook
-hop
hope
hoped
hopefully
hopes
hoping
-hopkins
horizon
horizontal
hormone
horn
-horny
horrible
horror
horse
@@ -4280,11 +3296,8 @@ hostel
hostels
hosting
hosts
-hot
hotel
hotels
-hotelscom
-hotmail
hottest
hour
hourly
@@ -4296,27 +3309,8 @@ houses
housewares
housewives
housing
-houston
-how
-howard
however
-howto
-hp
-hq
-hr
-href
-hrs
-hs
-ht
-html
-http
-hu
-hub
-hudson
huge
-hugh
-hughes
-hugo
hull
human
humanitarian
@@ -4328,41 +3322,22 @@ humor
hundred
hundreds
hung
-hungarian
-hungary
hunger
hungry
hunt
hunter
hunting
-huntington
hurricane
hurt
husband
-hwy
hybrid
hydraulic
-hydrocodone
hydrogen
hygiene
hypothesis
hypothetical
-hyundai
-hz
-i
-ia
-ian
-ibm
-ic
-ice
-iceland
icon
icons
-icq
-ict
-id
-idaho
-ide
idea
ideal
ideas
@@ -4376,30 +3351,18 @@ identifying
identity
idle
idol
-ids
-ie
-ieee
-if
ignore
ignored
-ii
-iii
-il
-ill
illegal
-illinois
illness
illustrated
illustration
illustrations
-im
-ima
image
images
imagination
imagine
imaging
-img
immediate
immediately
immigrants
@@ -4434,13 +3397,10 @@ improved
improvement
improvements
improving
-in
inappropriate
inbox
-inc
incentive
incentives
-incest
inch
inches
incidence
@@ -4466,7 +3426,6 @@ increasing
increasingly
incredible
incurred
-ind
indeed
independence
independent
@@ -4474,11 +3433,6 @@ independently
index
indexed
indexes
-india
-indian
-indiana
-indianapolis
-indians
indicate
indicated
indicates
@@ -4493,8 +3447,6 @@ indirect
individual
individually
individuals
-indonesia
-indonesian
indoor
induced
induction
@@ -4502,7 +3454,6 @@ industrial
industries
industry
inexpensive
-inf
infant
infants
infected
@@ -4523,7 +3474,6 @@ informative
informed
infrared
infrastructure
-ing
ingredients
inherited
initial
@@ -4535,22 +3485,17 @@ injection
injured
injuries
injury
-ink
-inkjet
inline
-inn
inner
innocent
innovation
innovations
innovative
-inns
input
inputs
inquire
inquiries
inquiry
-ins
insects
insert
inserted
@@ -4591,7 +3536,6 @@ instruments
insulin
insurance
insured
-int
intake
integer
integral
@@ -4600,7 +3544,6 @@ integrated
integrating
integration
integrity
-intel
intellectual
intelligence
intelligent
@@ -4623,7 +3566,6 @@ interests
interface
interfaces
interference
-interim
interior
intermediate
internal
@@ -4643,7 +3585,6 @@ interventions
interview
interviews
intimate
-intl
into
intranet
intro
@@ -4670,7 +3611,6 @@ investments
investor
investors
invisible
-invision
invitation
invitations
invite
@@ -4681,131 +3621,43 @@ involved
involvement
involves
involving
-io
-ion
-iowa
-ip
-ipaq
-ipod
-ips
-ir
-ira
-iran
-iraq
-iraqi
-irc
-ireland
-irish
iron
irrigation
-irs
-is
-isa
-isaac
-isbn
-islam
-islamic
island
islands
isle
-iso
isolated
isolation
-isp
-israel
-israeli
-issn
issue
issued
issues
-ist
-istanbul
-it
-italia
-italian
-italiano
italic
-italy
item
items
-its
-itsa
itself
-itunes
-iv
ivory
-ix
-j
-ja
jack
jacket
jackets
-jackie
-jackson
-jacksonville
-jacob
jade
jaguar
jail
-jake
-jam
-jamaica
-james
-jamie
-jan
-jane
-janet
-january
japan
-japanese
-jar
-jason
java
-javascript
-jay
jazz
-jc
-jd
-je
jean
jeans
jeep
-jeff
-jefferson
-jeffrey
-jelsoft
-jennifer
jenny
-jeremy
-jerry
jersey
-jerusalem
-jesse
-jessica
-jesus
-jet
jets
jewel
-jewellery
jewelry
-jewish
-jews
-jill
-jim
jimmy
-jj
-jm
-jo
-joan
-job
jobs
-joe
-joel
john
johnny
johns
-johnson
-johnston
join
joined
joining
@@ -4813,44 +3665,21 @@ joins
joint
joke
jokes
-jon
-jonathan
-jones
-jordan
-jose
-joseph
josh
-joshua
journal
journalism
journalist
journalists
journals
journey
-joy
-joyce
-jp
-jpeg
-jpg
-jr
-js
-juan
judge
judges
judgment
judicial
-judy
juice
-jul
-julia
-julian
-julie
-july
jump
jumping
-jun
junction
-june
jungle
junior
junk
@@ -4859,63 +3688,29 @@ jury
just
justice
justify
-justin
juvenile
-jvc
-k
-ka
-kai
-kansas
karaoke
-karen
-karl
karma
-kate
-kathy
-katie
-katrina
-kay
-kazakhstan
-kb
-kde
keen
keep
keeping
keeps
-keith
-kelkoo
-kelly
-ken
-kennedy
-kenneth
-kenny
keno
-kent
-kentucky
-kenya
kept
kernel
-kerry
-kevin
-key
keyboard
keyboards
keys
keyword
keywords
-kg
kick
-kid
kidney
kids
-kijiji
-kill
killed
killer
killing
kills
kilometers
-kim
kinase
kind
kinda
@@ -4923,16 +3718,9 @@ kinds
king
kingdom
kings
-kingston
-kirk
-kiss
-kissing
-kit
kitchen
kits
kitty
-klein
-km
knee
knew
knife
@@ -4945,31 +3733,14 @@ knock
know
knowing
knowledge
-knowledgestorm
known
knows
-ko
-kodak
-kong
-korea
-korean
-kruger
-ks
-kurt
-kuwait
-kw
-ky
-kyle
-l
-la
-lab
label
labeled
labels
labor
laboratories
laboratory
-labour
labs
lace
lack
@@ -4977,16 +3748,12 @@ ladder
laden
ladies
lady
-lafayette
-laid
lake
lakes
lamb
lambda
lamp
lamps
-lan
-lancaster
lance
land
landing
@@ -4995,62 +3762,39 @@ landscape
landscapes
lane
lanes
-lang
language
languages
-lanka
-lap
laptop
laptops
large
largely
larger
largest
-larry
-las
laser
last
lasting
-lat
late
lately
later
latest
latex
-latin
-latina
-latinas
-latino
latitude
latter
-latvia
-lauderdale
laugh
laughing
launch
launched
launches
laundry
-laura
-lauren
-law
lawn
-lawrence
laws
lawsuit
lawyer
lawyers
-lay
layer
layers
layout
lazy
-lb
-lbs
-lc
-lcd
-ld
-le
lead
leader
leaders
@@ -5071,14 +3815,9 @@ leather
leave
leaves
leaving
-lebanon
lecture
lectures
-led
-lee
-leeds
left
-leg
legacy
legal
legally
@@ -5092,62 +3831,37 @@ legitimate
legs
leisure
lemon
-len
lender
lenders
lending
length
lens
lenses
-leo
-leon
-leonard
-leone
-les
lesbian
-lesbians
-leslie
less
lesser
lesson
lessons
-let
lets
letter
letters
letting
-leu
level
levels
-levitra
levy
-lewis
-lexington
-lexmark
-lexus
-lf
-lg
-li
liabilities
liability
liable
-lib
liberal
-liberia
liberty
librarian
libraries
library
-libs
-licence
license
licensed
licenses
licensing
licking
-lid
-lie
-liechtenstein
lies
life
lifestyle
@@ -5165,7 +3879,6 @@ likelihood
likely
likes
likewise
-lil
lime
limit
limitation
@@ -5174,59 +3887,38 @@ limited
limiting
limits
limousines
-lincoln
-linda
-lindsay
line
linear
lined
lines
-lingerie
link
linked
linking
links
-linux
lion
lions
-lip
lips
liquid
-lisa
list
listed
listen
listening
listing
listings
-listprice
lists
-lit
lite
literacy
literally
literary
literature
-lithuania
litigation
little
live
-livecam
lived
liver
-liverpool
lives
-livesex
livestock
living
-liz
-ll
-llc
-lloyd
-llp
-lm
-ln
-lo
load
loaded
loading
@@ -5234,7 +3926,6 @@ loads
loan
loans
lobby
-loc
local
locale
locally
@@ -5249,21 +3940,15 @@ locking
locks
lodge
lodging
-log
-logan
logged
logging
logic
logical
login
logistics
-logitech
logo
logos
logs
-lol
-lolita
-london
lone
lonely
long
@@ -5274,29 +3959,20 @@ look
looked
looking
looks
-looksmart
lookup
loop
loops
loose
-lopez
lord
-los
lose
losing
loss
losses
lost
-lot
lots
lottery
lotus
-lou
loud
-louis
-louise
-louisiana
-louisville
lounge
love
loved
@@ -5305,52 +3981,24 @@ lover
lovers
loves
loving
-low
lower
lowest
lows
-lp
-ls
-lt
-ltd
-lu
-lucas
-lucia
luck
lucky
-lucy
luggage
-luis
-luke
lunch
lung
-luther
-luxembourg
luxury
-lycos
lying
-lynn
lyric
lyrics
-m
-ma
-mac
-macedonia
machine
machinery
machines
-macintosh
macro
-macromedia
-mad
-madagascar
made
-madison
madness
-madonna
-madrid
-mae
-mag
magazine
magazines
magic
@@ -5359,16 +4007,13 @@ magnet
magnetic
magnificent
magnitude
-mai
maiden
mail
mailed
mailing
mailman
mails
-mailto
main
-maine
mainland
mainly
mainstream
@@ -5385,29 +4030,20 @@ makers
makes
makeup
making
-malawi
-malaysia
-maldives
male
males
-mali
mall
malpractice
-malta
mambo
-man
manage
managed
management
manager
managers
managing
-manchester
mandate
mandatory
manga
-manhattan
-manitoba
manner
manor
manual
@@ -5419,29 +4055,16 @@ manufacturer
manufacturers
manufacturing
many
-map
maple
mapping
maps
-mar
marathon
marble
-marc
march
-marco
-marcus
-mardi
-margaret
margin
maria
-mariah
-marie
-marijuana
-marilyn
marina
marine
-mario
-marion
maritime
mark
marked
@@ -5455,29 +4078,18 @@ marking
marks
marriage
married
-marriott
mars
-marshall
mart
-martha
martial
martin
marvel
-mary
-maryland
-mas
mask
mason
mass
-massachusetts
massage
massive
master
-mastercard
masters
-masturbating
-masturbation
-mat
match
matched
matches
@@ -5492,27 +4104,14 @@ mathematics
mating
matrix
mats
-matt
matter
matters
-matthew
mattress
mature
-maui
-mauritius
-max
maximize
maximum
-may
maybe
mayor
-mazda
-mb
-mba
-mc
-mcdonald
-md
-me
meal
meals
mean
@@ -5532,7 +4131,6 @@ mechanical
mechanics
mechanism
mechanisms
-med
medal
media
median
@@ -5545,19 +4143,13 @@ medicine
medicines
medieval
meditation
-mediterranean
medium
-medline
meet
meeting
meetings
meets
meetup
mega
-mel
-melbourne
-melissa
-mem
member
members
membership
@@ -5567,17 +4159,12 @@ memorabilia
memorial
memories
memory
-memphis
-men
-mens
-ment
mental
mention
mentioned
mentor
menu
menus
-mercedes
merchandise
merchant
merchants
@@ -5589,69 +4176,41 @@ merge
merger
merit
merry
-mesa
-mesh
mess
message
messages
messaging
messenger
-met
meta
metabolism
metadata
metal
metallic
-metallica
metals
meter
meters
method
methodology
methods
-metres
metric
metro
metropolitan
-mexican
-mexico
-meyer
-mf
-mfg
-mg
-mh
-mhz
-mi
-mia
-miami
-mic
mice
-michael
-michel
-michelle
-michigan
micro
microphone
-microsoft
microwave
-mid
middle
midi
midlands
midnight
-midwest
might
mighty
migration
mike
-mil
-milan
mild
mile
mileage
miles
-milf
-milfhunter
milfs
military
milk
@@ -5660,11 +4219,7 @@ millennium
miller
million
millions
-mills
-milton
-milwaukee
mime
-min
mind
minds
mine
@@ -5681,12 +4236,8 @@ minister
ministers
ministries
ministry
-minneapolis
-minnesota
-minolta
minor
minority
-mins
mint
minus
minute
@@ -5702,34 +4253,19 @@ missile
missing
mission
missions
-mississippi
-missouri
mistake
mistakes
mistress
-mit
-mitchell
-mitsubishi
-mix
mixed
mixer
mixing
mixture
-mj
-ml
-mlb
-mls
-mm
-mn
-mo
mobile
mobiles
mobility
-mod
mode
model
modeling
-modelling
models
modem
modems
@@ -5742,58 +4278,38 @@ modification
modifications
modified
modify
-mods
modular
module
modules
moisture
mold
-moldova
molecular
molecules
-mom
moment
moments
momentum
-moms
-mon
-monaco
-monday
monetary
money
-mongolia
-monica
monitor
monitored
monitoring
monitors
monkey
mono
-monroe
monster
-montana
-monte
-montgomery
month
monthly
months
-montreal
mood
moon
-moore
moral
more
moreover
-morgan
morning
morocco
-morris
-morrison
mortality
mortgage
mortgages
-moscow
-moses
moss
most
mostly
@@ -5808,7 +4324,6 @@ motivation
motor
motorcycle
motorcycles
-motorola
motors
mount
mountain
@@ -5827,38 +4342,12 @@ moves
movie
movies
moving
-mozambique
-mozilla
-mp
-mpeg
-mpegs
-mpg
-mph
-mr
-mrna
-mrs
-ms
-msg
-msgid
-msgstr
-msie
-msn
-mt
-mtv
-mu
much
-mud
-mug
multi
multimedia
multiple
-mumbai
-munich
municipal
municipality
-murder
-murphy
-murray
muscle
muscles
museum
@@ -5867,81 +4356,43 @@ music
musical
musician
musicians
-muslim
-muslims
must
mustang
mutual
-muze
-mv
-mw
-mx
-my
-myanmar
-myers
myrtle
myself
-mysimon
-myspace
-mysql
mysterious
mystery
myth
-n
-na
nail
nails
-naked
-nam
name
named
namely
names
-namespace
-namibia
-nancy
-nano
-naples
narrative
narrow
-nasa
-nascar
-nasdaq
-nashville
nasty
-nat
-nathan
nation
national
nationally
nations
nationwide
native
-nato
natural
naturally
naturals
nature
naughty
-nav
naval
navigate
navigation
navigator
navy
-nb
-nba
-nbc
-nc
-ncaa
-nd
-ne
near
nearby
nearest
nearly
-nebraska
-nec
necessarily
necessary
necessity
@@ -5957,109 +4408,61 @@ negotiations
neighbor
neighborhood
neighbors
-neil
neither
nelson
-neo
neon
-nepal
nerve
nervous
nest
nested
-net
-netherlands
-netscape
network
networking
networks
neural
neutral
-nevada
never
nevertheless
-new
-newark
newbie
-newcastle
newer
newest
-newfoundland
newly
-newport
news
-newscom
newsletter
newsletters
newspaper
newspapers
newton
next
-nextel
-nfl
-ng
-nh
-nhl
-nhs
-ni
-niagara
-nicaragua
nice
-nicholas
nick
nickel
nickname
-nicole
-niger
-nigeria
night
nightlife
nightmare
nights
-nike
-nikon
-nil
nine
-nintendo
-nipple
-nipples
nirvana
-nissan
nitrogen
-nj
-nl
-nm
-nn
-no
noble
nobody
node
nodes
noise
-nokia
nominated
nomination
nominations
-non
none
nonprofit
noon
-nor
-norfolk
norm
normal
normally
-norman
north
northeast
northern
northwest
-norton
-norway
-norwegian
-nos
nose
-not
note
notebook
notebooks
@@ -6074,25 +4477,12 @@ notifications
notified
notify
notion
-notre
-nottingham
-nov
nova
novel
novels
novelty
-november
-now
nowhere
-np
-nr
-ns
-nsw
-nt
-ntsc
-nu
nuclear
-nude
nudist
nudity
nuke
@@ -6106,27 +4496,14 @@ nurse
nursery
nurses
nursing
-nut
nutrition
nutritional
nuts
-nutten
-nv
-nvidia
-nw
-ny
-nyc
nylon
-nz
-o
-oak
-oakland
oaks
oasis
-ob
obesity
obituaries
-obj
object
objective
objectives
@@ -6143,7 +4520,6 @@ obtained
obtaining
obvious
obviously
-oc
occasion
occasional
occasionally
@@ -6158,16 +4534,7 @@ occurrence
occurring
occurs
ocean
-oclc
-oct
-october
-odd
odds
-oe
-oecd
-oem
-of
-off
offense
offensive
offer
@@ -6186,43 +4553,21 @@ offline
offset
offshore
often
-og
-oh
-ohio
-oil
oils
-ok
okay
-oklahoma
-ol
-old
older
oldest
olive
-oliver
-olympic
-olympics
-olympus
-om
-omaha
-oman
omega
omissions
-on
once
-one
ones
ongoing
onion
online
only
-ons
-ontario
onto
-oo
-ooo
oops
-op
open
opened
opening
@@ -6247,7 +4592,6 @@ opportunity
opposed
opposite
opposition
-opt
optical
optics
optimal
@@ -6257,9 +4601,7 @@ optimum
option
optional
options
-or
oracle
-oral
orange
orbit
orchestra
@@ -6269,13 +4611,7 @@ ordering
orders
ordinance
ordinary
-oregon
-org
-organ
organic
-organisation
-organisations
-organised
organisms
organization
organizational
@@ -6284,8 +4620,6 @@ organize
organized
organizer
organizing
-orgasm
-orgy
oriental
orientation
oriented
@@ -6293,21 +4627,12 @@ origin
original
originally
origins
-orlando
-orleans
-os
-oscar
-ot
other
others
otherwise
-ottawa
-ou
ought
-our
ours
ourselves
-out
outcome
outcomes
outdoor
@@ -6332,8 +4657,6 @@ overhead
overnight
overseas
overview
-owen
-own
owned
owner
owners
@@ -6342,24 +4665,18 @@ owns
oxford
oxide
oxygen
-oz
ozone
-p
-pa
-pac
pace
pacific
pack
package
packages
packaging
-packard
packed
packet
packets
packing
packs
-pad
pads
page
pages
@@ -6373,37 +4690,24 @@ painting
paintings
pair
pairs
-pakistan
-pal
palace
pale
-palestine
-palestinian
palm
-palmer
-pam
-pamela
-pan
panama
-panasonic
panel
panels
panic
-panties
pants
pantyhose
paper
paperback
paperbacks
papers
-papua
-par
para
parade
paradise
paragraph
paragraphs
-paraguay
parallel
parameter
parameters
@@ -6412,10 +4716,8 @@ parent
parental
parenting
parents
-paris
parish
park
-parker
parking
parks
parliament
@@ -6442,8 +4744,6 @@ partnership
partnerships
parts
party
-pas
-paso
pass
passage
passed
@@ -6460,7 +4760,6 @@ past
pasta
paste
pastor
-pat
patch
patches
patent
@@ -6471,65 +4770,40 @@ paths
patient
patients
patio
-patricia
-patrick
patrol
pattern
patterns
-paul
pavilion
-paxil
-pay
payable
payday
paying
payment
payments
-paypal
payroll
pays
-pb
-pc
-pci
-pcs
-pct
-pd
-pda
-pdas
-pdf
-pdt
-pe
peace
peaceful
peak
pearl
peas
pediatric
-pee
peeing
peer
peers
-pen
penalties
penalty
pencil
pendant
pending
-penetration
penguin
peninsula
-penis
-penn
-pennsylvania
penny
pens
pension
pensions
-pentium
people
peoples
pepper
-per
perceived
percent
percentage
@@ -6551,16 +4825,12 @@ periodically
periods
peripheral
peripherals
-perl
-permalink
permanent
permission
permissions
permit
permits
permitted
-perry
-persian
persistent
person
personal
@@ -6572,22 +4842,12 @@ personnel
persons
perspective
perspectives
-perth
-peru
pest
-pet
-pete
peter
-petersburg
-peterson
petite
petition
petroleum
pets
-pf
-pg
-pgp
-ph
phantom
pharmaceutical
pharmaceuticals
@@ -6596,16 +4856,7 @@ pharmacology
pharmacy
phase
phases
-phd
phenomenon
-phentermine
-phi
-phil
-philadelphia
-philip
-philippines
-philips
-phillips
philosophy
phoenix
phone
@@ -6618,9 +4869,6 @@ photographic
photographs
photography
photos
-photoshop
-php
-phpbb
phrase
phrases
phys
@@ -6630,10 +4878,7 @@ physician
physicians
physics
physiology
-pi
piano
-pic
-pichunter
pick
picked
picking
@@ -6643,18 +4888,14 @@ picnic
pics
picture
pictures
-pie
piece
pieces
pierce
-pierre
-pig
pike
pill
pillow
pills
pilot
-pin
pine
ping
pink
@@ -6664,18 +4905,10 @@ pipe
pipeline
pipes
pirates
-piss
-pissing
-pit
pitch
-pittsburgh
-pix
pixel
pixels
pizza
-pj
-pk
-pl
place
placed
placement
@@ -6706,16 +4939,13 @@ platforms
platinum
play
playback
-playboy
played
player
players
playing
playlist
plays
-playstation
plaza
-plc
pleasant
please
pleased
@@ -6729,15 +4959,8 @@ plugin
plugins
plumbing
plus
-plymouth
-pm
-pmc
-pmid
-pn
-po
pocket
pockets
-pod
podcast
podcasts
poem
@@ -6749,9 +4972,7 @@ pointed
pointer
pointing
points
-pokemon
poker
-poland
polar
pole
police
@@ -6771,22 +4992,16 @@ polyester
polymer
polyphonic
pond
-pontiac
pool
pools
poor
-pop
pope
popular
popularity
population
populations
-por
porcelain
pork
-porn
-porno
-porsche
port
portable
portal
@@ -6794,14 +5009,9 @@ porter
portfolio
portion
portions
-portland
portrait
portraits
ports
-portsmouth
-portugal
-portuguese
-pos
pose
posing
position
@@ -6824,9 +5034,7 @@ poster
posters
posting
postings
-postposted
posts
-pot
potato
potatoes
potential
@@ -6839,29 +5047,20 @@ pounds
pour
poverty
powder
-powell
power
powered
powerful
-powerpoint
powers
-powerseller
-pp
-ppc
-ppm
-pr
practical
practice
practices
practitioner
practitioners
-prague
prairie
praise
pray
prayer
prayers
-pre
preceding
precious
precipitation
@@ -6910,9 +5109,7 @@ press
pressed
pressing
pressure
-preston
pretty
-prev
prevent
preventing
prevention
@@ -6931,7 +5128,6 @@ primary
prime
prince
princess
-princeton
principal
principle
principles
@@ -6952,16 +5148,13 @@ privacy
private
privilege
privileges
-prix
prize
prizes
-pro
probability
probably
probe
problem
problems
-proc
procedure
procedures
proceed
@@ -6997,10 +5190,8 @@ profiles
profit
profits
program
-programme
programmer
programmers
-programmes
programming
programs
progress
@@ -7028,7 +5219,6 @@ promotions
prompt
promptly
proof
-propecia
proper
properly
properties
@@ -7046,8 +5236,6 @@ prospect
prospective
prospects
prostate
-prostores
-prot
protect
protected
protecting
@@ -7077,18 +5265,9 @@ provincial
provision
provisions
proxy
-prozac
-ps
-psi
-psp
-pst
psychiatry
psychological
psychology
-pt
-pts
-pty
-pub
public
publication
publications
@@ -7099,9 +5278,7 @@ published
publisher
publishers
publishing
-pubmed
pubs
-puerto
pull
pulled
pulling
@@ -7128,20 +5305,11 @@ pursuit
push
pushed
pushing
-pussy
-put
puts
putting
puzzle
puzzles
-pvc
python
-q
-qatar
-qc
-qld
-qt
-qty
quad
qualification
qualifications
@@ -7157,11 +5325,8 @@ quantum
quarter
quarterly
quarters
-que
-quebec
queen
queens
-queensland
queries
query
quest
@@ -7169,7 +5334,6 @@ question
questionnaire
questions
queue
-qui
quick
quickly
quiet
@@ -7182,12 +5346,9 @@ quotations
quote
quoted
quotes
-r
-ra
rabbit
race
races
-rachel
racial
racing
rack
@@ -7209,11 +5370,7 @@ raise
raised
raises
raising
-raleigh
rally
-ralph
-ram
-ran
ranch
rand
random
@@ -7227,14 +5384,11 @@ ranked
ranking
rankings
ranks
-rap
-rape
rapid
rapidly
rapids
rare
rarely
-rat
rate
rated
rates
@@ -7245,15 +5399,7 @@ ratio
rational
ratios
rats
-raw
-ray
-raymond
rays
-rb
-rc
-rca
-rd
-re
reach
reached
reaches
@@ -7275,8 +5421,6 @@ realize
realized
really
realm
-realtor
-realtors
realty
rear
reason
@@ -7286,10 +5430,8 @@ reasoning
reasons
rebate
rebates
-rebecca
rebel
rebound
-rec
recall
receipt
receive
@@ -7307,7 +5449,6 @@ recipe
recipes
recipient
recipients
-recognised
recognition
recognize
recognized
@@ -7332,7 +5473,6 @@ recreational
recruiting
recruitment
recycling
-red
redeem
redhead
reduce
@@ -7341,10 +5481,7 @@ reduces
reducing
reduction
reductions
-reed
-reef
reel
-ref
refer
reference
referenced
@@ -7371,7 +5508,6 @@ refund
refurbished
refuse
refused
-reg
regard
regarded
regarding
@@ -7396,10 +5532,8 @@ regulations
regulatory
rehab
rehabilitation
-reid
reject
rejected
-rel
relate
related
relates
@@ -7458,12 +5592,9 @@ rendering
renew
renewable
renewal
-reno
rent
rental
rentals
-rentcom
-rep
repair
repairs
repeat
@@ -7512,7 +5643,6 @@ requirement
requirements
requires
requiring
-res
rescue
research
researcher
@@ -7590,8 +5720,6 @@ returned
returning
returns
reunion
-reuters
-rev
reveal
revealed
reveals
@@ -7612,25 +5740,11 @@ revolution
revolutionary
reward
rewards
-reynolds
-rf
-rfc
-rg
-rh
-rhode
rhythm
-ri
ribbon
-rica
rice
rich
-richard
-richards
-richardson
-richmond
rick
-rico
-rid
ride
rider
riders
@@ -7639,13 +5753,10 @@ ridge
riding
right
rights
-rim
ring
rings
ringtone
ringtones
-rio
-rip
ripe
rise
rising
@@ -7654,32 +5765,18 @@ risks
river
rivers
riverside
-rj
-rl
-rm
-rn
-rna
-ro
road
roads
-rob
-robert
-roberts
-robertson
robin
-robinson
robot
robots
robust
-rochester
rock
rocket
rocks
rocky
-rod
roger
rogers
-roland
role
roles
roll
@@ -7687,14 +5784,9 @@ rolled
roller
rolling
rolls
-rom
roman
romance
-romania
romantic
-rome
-ron
-ronald
roof
room
roommate
@@ -7703,10 +5795,8 @@ rooms
root
roots
rope
-rosa
rose
roses
-ross
roster
rotary
rotation
@@ -7724,59 +5814,30 @@ routine
routines
routing
rover
-row
rows
-roy
royal
royalty
-rp
-rpg
-rpm
-rr
-rrp
-rs
-rss
-rt
-ru
rubber
ruby
-rug
rugby
rugs
rule
ruled
rules
ruling
-run
runner
running
runs
-runtime
rural
rush
-russell
-russia
-russian
-ruth
-rv
-rw
-rwanda
-rx
-ryan
-s
-sa
-sacramento
sacred
sacrifice
-sad
-saddam
safari
safe
safely
safer
safety
sage
-sagem
said
sail
sailing
@@ -7787,64 +5848,38 @@ salad
salaries
salary
sale
-salem
sales
sally
salmon
salon
salt
-salvador
salvation
-sam
samba
same
-samoa
sample
samples
sampling
-samsung
-samuel
-san
sand
-sandra
sandwich
sandy
sans
-santa
-sanyo
-sao
-sap
sapphire
-sara
-sarah
-sas
-saskatchewan
-sat
satellite
satin
satisfaction
satisfactory
satisfied
satisfy
-saturday
-saturn
sauce
-saudi
savage
-savannah
save
saved
saver
saves
saving
savings
-saw
-say
saying
says
-sb
-sbjct
-sc
scale
scales
scan
@@ -7871,7 +5906,6 @@ scholarship
scholarships
school
schools
-sci
science
sciences
scientific
@@ -7883,10 +5917,6 @@ score
scored
scores
scoring
-scotia
-scotland
-scott
-scottish
scout
scratch
screen
@@ -7896,23 +5926,16 @@ screensaver
screensavers
screenshot
screenshots
-screw
script
scripting
scripts
scroll
-scsi
scuba
sculpture
-sd
-se
-sea
seafood
seal
sealed
-sean
search
-searchcom
searched
searches
searching
@@ -7923,8 +5946,6 @@ seasons
seat
seating
seats
-seattle
-sec
second
secondary
seconds
@@ -7941,7 +5962,6 @@ secured
securely
securities
security
-see
seed
seeds
seeing
@@ -7954,8 +5974,6 @@ seem
seemed
seems
seen
-sees
-sega
segment
segments
select
@@ -7975,7 +5993,6 @@ semi
semiconductor
seminar
seminars
-sen
senate
senator
senators
@@ -7983,7 +6000,6 @@ send
sender
sending
sends
-senegal
senior
seniors
sense
@@ -7994,19 +6010,12 @@ sensors
sent
sentence
sentences
-seo
-sep
separate
separated
separately
separation
-sept
-september
-seq
sequence
sequences
-ser
-serbia
serial
series
serious
@@ -8022,7 +6031,6 @@ services
serving
session
sessions
-set
sets
setting
settings
@@ -8035,28 +6043,18 @@ seventh
several
severe
sewing
-sex
-sexcam
-sexo
-sexual
sexuality
sexually
sexy
-sf
-sg
-sh
shade
shades
shadow
shadows
shaft
shake
-shakespeare
-shakira
shall
shame
shanghai
-shannon
shape
shaped
shapes
@@ -8067,25 +6065,18 @@ shares
shareware
sharing
shark
-sharon
sharp
shaved
-shaw
-she
shed
sheep
sheer
sheet
sheets
-sheffield
shelf
shell
shelter
-shemale
-shemales
shepherd
sheriff
-sherman
shield
shift
shine
@@ -8097,7 +6088,6 @@ shipping
ships
shirt
shirts
-shit
shock
shoe
shoes
@@ -8105,12 +6095,9 @@ shoot
shooting
shop
shopper
-shoppercom
shoppers
shopping
-shoppingcom
shops
-shopzilla
shore
short
shortcuts
@@ -8129,18 +6116,12 @@ showers
showing
shown
shows
-showtimes
shut
shuttle
-si
-sic
sick
side
sides
-sie
-siemens
sierra
-sig
sight
sigma
sign
@@ -8154,41 +6135,30 @@ significant
significantly
signing
signs
-signup
silence
silent
silicon
silk
silly
silver
-sim
similar
similarly
-simon
simple
simplified
simply
-simpson
-simpsons
sims
simulation
simulations
simultaneously
-sin
since
sing
-singapore
singer
-singh
singing
single
singles
sink
-sip
-sir
sister
sisters
-sit
site
sitemap
sites
@@ -8196,14 +6166,11 @@ sitting
situated
situation
situations
-six
sixth
size
sized
sizes
-sk
skating
-ski
skiing
skill
skilled
@@ -8213,11 +6180,6 @@ skins
skip
skirt
skirts
-sku
-sky
-skype
-sl
-slave
sleep
sleeping
sleeps
@@ -8229,40 +6191,25 @@ slight
slightly
slim
slip
-slope
slot
slots
-slovak
-slovakia
-slovenia
slow
slowly
-slut
-sluts
-sm
small
smaller
smart
smell
smile
-smilies
smith
-smithsonian
smoke
smoking
smooth
-sms
-smtp
-sn
snake
snap
snapshot
snow
snowboard
-so
-soa
soap
-soc
soccer
social
societies
@@ -8276,9 +6223,7 @@ soft
softball
software
soil
-sol
solar
-solaris
sold
soldier
soldiers
@@ -8286,14 +6231,11 @@ sole
solely
solid
solo
-solomon
solution
solutions
solve
solved
solving
-soma
-somalia
some
somebody
somehow
@@ -8303,12 +6245,10 @@ something
sometimes
somewhat
somewhere
-son
song
songs
sonic
sons
-sony
soon
soonest
sophisticated
@@ -8326,23 +6266,15 @@ soup
source
sources
south
-southampton
southeast
southern
southwest
soviet
-sox
-sp
-spa
space
spaces
-spain
spam
span
-spanish
-spank
spanking
-sparc
spare
spas
spatial
@@ -8380,11 +6312,9 @@ speed
speeds
spell
spelling
-spencer
spend
spending
spent
-sperm
sphere
spice
spider
@@ -8414,24 +6344,13 @@ spray
spread
spreading
spring
-springer
-springfield
springs
sprint
-spy
spyware
-sq
-sql
squad
square
squirt
squirting
-sr
-src
-sri
-ss
-ssl
-st
stability
stable
stack
@@ -8444,19 +6363,15 @@ stainless
stakeholders
stamp
stamps
-stan
stand
standard
standards
standing
standings
stands
-stanford
-stanley
star
starring
stars
-starsmerchant
start
started
starter
@@ -8486,8 +6401,6 @@ stay
stayed
staying
stays
-std
-ste
steady
steal
steam
@@ -8495,15 +6408,9 @@ steel
steering
stem
step
-stephanie
-stephen
steps
stereo
sterling
-steve
-steven
-stevens
-stewart
stick
sticker
stickers
@@ -8511,7 +6418,6 @@ sticks
sticky
still
stock
-stockholm
stockings
stocks
stolen
@@ -8530,7 +6436,6 @@ stores
stories
storm
story
-str
straight
strain
strand
@@ -8558,21 +6463,17 @@ strikes
striking
string
strings
-strip
stripes
strips
-stroke
strong
stronger
strongly
struck
-struct
structural
structure
structured
structures
struggle
-stuart
stuck
stud
student
@@ -8586,20 +6487,15 @@ studying
stuff
stuffed
stunning
-stupid
style
styles
stylish
stylus
-su
-sub
-subaru
subcommittee
subdivision
subject
subjects
sublime
-sublimedirectory
submission
submissions
submit
@@ -8627,13 +6523,9 @@ success
successful
successfully
such
-suck
-sucking
sucks
-sudan
sudden
suddenly
-sue
suffer
suffered
suffering
@@ -8653,14 +6545,10 @@ suite
suited
suites
suits
-sullivan
-sum
summaries
summary
summer
summit
-sun
-sunday
sunglasses
sunny
sunrise
@@ -8689,7 +6577,6 @@ supports
suppose
supposed
supreme
-sur
sure
surely
surf
@@ -8717,37 +6604,25 @@ survival
survive
survivor
survivors
-susan
-suse
suspect
suspected
suspended
suspension
-sussex
sustainability
sustainable
sustained
-suzuki
-sv
-sw
swap
-sweden
-swedish
sweet
swift
swim
swimming
swing
swingers
-swiss
switch
switched
switches
switching
-switzerland
sword
-sydney
-symantec
symbol
symbols
sympathy
@@ -8762,15 +6637,9 @@ synopsis
syntax
synthesis
synthetic
-syracuse
-syria
-sys
system
systematic
systems
-t
-ta
-tab
table
tables
tablet
@@ -8778,12 +6647,9 @@ tablets
tabs
tackle
tactics
-tag
tagged
tags
-tahoe
tail
-taiwan
take
taken
takes
@@ -8797,16 +6663,10 @@ talked
talking
talks
tall
-tamil
-tampa
-tan
tank
tanks
-tanzania
-tap
tape
tapes
-tar
target
targeted
targets
@@ -8816,18 +6676,9 @@ tasks
taste
tattoo
taught
-tax
taxation
taxes
taxi
-taylor
-tb
-tba
-tc
-tcp
-td
-te
-tea
teach
teacher
teachers
@@ -8846,17 +6697,11 @@ techno
technological
technologies
technology
-techrepublic
-ted
teddy
-tee
teen
teenage
teens
teeth
-tel
-telecharger
-telecom
telecommunications
telephone
telephony
@@ -8875,11 +6720,9 @@ temple
temporal
temporarily
temporary
-ten
tenant
tend
tender
-tennessee
tennis
tension
tent
@@ -8906,8 +6749,6 @@ testimonials
testimony
testing
tests
-tex
-texas
text
textbook
textbooks
@@ -8915,25 +6756,14 @@ textile
textiles
texts
texture
-tf
-tft
-tgp
-th
-thai
-thailand
than
thank
thanks
thanksgiving
that
-thats
-the
theater
theaters
-theatre
-thee
theft
-thehun
their
them
theme
@@ -8965,14 +6795,10 @@ thing
things
think
thinking
-thinkpad
thinks
third
thirty
this
-thomas
-thompson
-thomson
thong
thongs
thorough
@@ -8992,7 +6818,6 @@ threatened
threatening
threats
three
-threesome
threshold
thriller
throat
@@ -9002,34 +6827,23 @@ throw
throwing
thrown
throws
-thru
-thu
thumb
thumbnail
thumbnails
thumbs
-thumbzilla
thunder
-thursday
thus
-thy
-ti
ticket
tickets
tide
-tie
tied
tier
ties
-tiffany
tiger
tigers
tight
-til
tile
tiles
-till
-tim
timber
time
timeline
@@ -9038,47 +6852,29 @@ timer
times
timing
timothy
-tin
tiny
-tion
-tions
-tip
tips
tire
tired
tires
tissue
-tit
titanium
titans
title
titled
titles
-tits
-titten
-tm
-tmp
-tn
-to
tobacco
-tobago
today
-todd
toddler
-toe
together
toilet
token
-tokyo
told
tolerance
toll
-tom
tomato
tomatoes
-tommy
tomorrow
-ton
tone
toner
tones
@@ -9086,7 +6882,6 @@ tongue
tonight
tons
tony
-too
took
tool
toolbar
@@ -9094,14 +6889,11 @@ toolbox
toolkit
tools
tooth
-top
topic
topics
topless
tops
-toronto
torture
-toshiba
total
totally
totals
@@ -9123,22 +6915,15 @@ town
towns
township
toxic
-toy
-toyota
toys
-tp
-tr
trace
track
-trackback
-trackbacks
tracked
tracker
tracking
tracks
tract
tractor
-tracy
trade
trademark
trademarks
@@ -9160,17 +6945,13 @@ trainer
trainers
training
trains
-tramadol
trance
-tranny
trans
transaction
transactions
transcript
transcription
transcripts
-transexual
-transexuales
transfer
transferred
transfers
@@ -9190,7 +6971,6 @@ transparency
transparent
transport
transportation
-transsexual
trap
trash
trauma
@@ -9198,11 +6978,7 @@ travel
traveler
travelers
traveling
-traveller
-travelling
travels
-travesti
-travis
tray
treasure
treasurer
@@ -9217,12 +6993,9 @@ treaty
tree
trees
trek
-trembl
tremendous
trend
trends
-treo
-tri
trial
trials
triangle
@@ -9238,11 +7011,9 @@ tried
tries
trigger
trim
-trinidad
trinity
trio
trip
-tripadvisor
triple
trips
triumph
@@ -9264,30 +7035,19 @@ trustee
trustees
trusts
truth
-try
trying
-ts
tsunami
-tt
-tu
-tub
tube
tubes
-tucson
-tue
-tuesday
tuition
-tulsa
tumor
tune
tuner
tunes
tuning
-tunisia
tunnel
turbo
turkey
-turkish
turn
turned
turner
@@ -9296,49 +7056,27 @@ turns
turtle
tutorial
tutorials
-tv
-tvcom
-tvs
twelve
twenty
twice
-twiki
twin
twinks
twins
twist
twisted
-two
-tx
-ty
-tyler
type
types
typical
typically
typing
-u
-uc
-uganda
-ugly
-uh
-ui
-uk
-ukraine
-ul
ultimate
ultimately
ultra
-ultram
-um
-un
-una
unable
unauthorized
unavailable
uncertainty
uncle
-und
undefined
under
undergraduate
@@ -9351,16 +7089,13 @@ undertake
undertaken
underwear
undo
-une
unemployment
unexpected
unfortunately
-uni
unified
uniform
union
unions
-uniprotkb
unique
unit
united
@@ -9371,7 +7106,6 @@ universal
universe
universities
university
-unix
unknown
unless
unlike
@@ -9386,8 +7120,6 @@ untitled
unto
unusual
unwrap
-up
-upc
upcoming
update
updated
@@ -9400,64 +7132,33 @@ upload
uploaded
upon
upper
-ups
upset
-upskirt
-upskirts
-ur
urban
urge
urgent
-uri
-url
-urls
-uruguay
-urw
-us
-usa
usage
-usb
-usc
-usd
-usda
-use
used
useful
user
username
users
uses
-usgs
using
-usps
-usr
usual
usually
-ut
-utah
-utc
utilities
utility
utilization
utilize
-utils
-uv
-uw
-uzbekistan
-v
-va
vacancies
vacation
vacations
vaccine
vacuum
-vagina
-val
valentine
valid
validation
validity
-valium
valley
valuable
valuation
@@ -9467,10 +7168,7 @@ values
valve
valves
vampire
-van
-vancouver
vanilla
-var
variable
variables
variance
@@ -9483,16 +7181,8 @@ various
vary
varying
vast
-vat
-vatican
vault
-vb
-vbulletin
-vc
-vcr
-ve
vector
-vegas
vegetable
vegetables
vegetarian
@@ -9503,21 +7193,14 @@ velocity
velvet
vendor
vendors
-venezuela
-venice
venture
ventures
venue
venues
-ver
verbal
-verde
verification
verified
verify
-verizon
-vermont
-vernon
verse
version
versions
@@ -9525,49 +7208,32 @@ versus
vertex
vertical
very
-verzeichnis
vessel
vessels
veteran
veterans
veterinary
-vg
-vhs
-vi
-via
-viagra
vibrator
vibrators
-vic
vice
victim
victims
victor
-victoria
-victorian
victory
-vid
video
videos
-vids
-vienna
-vietnam
-vietnamese
view
viewed
viewer
viewers
viewing
-viewpicture
views
-vii
viii
viking
villa
village
villages
villas
-vincent
vintage
vinyl
violation
@@ -9575,10 +7241,7 @@ violations
violence
violent
violin
-vip
viral
-virgin
-virginia
virtual
virtually
virtue
@@ -9606,9 +7269,6 @@ vocational
voice
voices
void
-voip
-vol
-volkswagen
volleyball
volt
voltage
@@ -9617,34 +7277,20 @@ volumes
voluntary
volunteer
volunteers
-volvo
-von
vote
voted
voters
votes
voting
-voyeur
-voyeurweb
-voyuer
-vp
-vpn
-vs
-vsnet
-vt
vulnerability
vulnerable
-w
-wa
wage
wages
-wagner
wagon
wait
waiting
waiver
wake
-wal
wales
walk
walked
@@ -9652,30 +7298,22 @@ walker
walking
walks
wall
-wallace
wallet
wallpaper
wallpapers
walls
walnut
-walt
-walter
-wan
-wang
wanna
want
wanted
wanting
wants
-war
-warcraft
ward
ware
warehouse
warm
warming
warned
-warner
warning
warnings
warrant
@@ -9685,11 +7323,9 @@ warren
warrior
warriors
wars
-was
wash
washer
washing
-washington
waste
watch
watched
@@ -9699,19 +7335,11 @@ water
waterproof
waters
watershed
-watson
watt
watts
-wav
wave
waves
-wax
-way
-wayne
ways
-wb
-wc
-we
weak
wealth
weapon
@@ -9719,7 +7347,6 @@ weapons
wear
wearing
weather
-web
webcam
webcams
webcast
@@ -9727,16 +7354,10 @@ weblog
weblogs
webmaster
webmasters
-webpage
-webshots
website
websites
-webster
-wed
wedding
weddings
-wednesday
-weed
week
weekend
weekends
@@ -9754,14 +7375,10 @@ wellington
wellness
wells
welsh
-wendy
went
were
-wesley
west
western
-westminster
-wet
whale
what
whatever
@@ -9779,15 +7396,10 @@ which
while
whilst
white
-who
whole
wholesale
whom
-whore
whose
-why
-wi
-wichita
wicked
wide
widely
@@ -9796,25 +7408,17 @@ widescreen
widespread
width
wife
-wifi
wiki
-wikipedia
wild
wilderness
wildlife
-wiley
will
-william
-williams
willing
willow
-wilson
-win
wind
window
windows
winds
-windsor
wine
wines
wing
@@ -9823,20 +7427,16 @@ winner
winners
winning
wins
-winston
winter
wire
wired
wireless
wires
wiring
-wisconsin
wisdom
wise
wish
wishes
-wishlist
-wit
witch
with
withdrawal
@@ -9846,14 +7446,9 @@ witness
witnesses
wives
wizard
-wm
-wma
-wn
wolf
woman
women
-womens
-won
wonder
wonderful
wondering
@@ -9861,9 +7456,7 @@ wood
wooden
woods
wool
-worcester
word
-wordpress
words
work
worked
@@ -9879,9 +7472,7 @@ workshop
workshops
workstation
world
-worldcat
worlds
-worldsex
worldwide
worm
worn
@@ -9894,9 +7485,6 @@ worth
worthy
would
wound
-wow
-wp
-wr
wrap
wrapped
wrapping
@@ -9912,89 +7500,32 @@ writings
written
wrong
wrote
-ws
-wt
-wto
-wu
-wv
-ww
-www
-wx
-wy
-wyoming
-x
-xanax
-xbox
xerox
-xhtml
-xi
-xl
-xml
-xnxx
-xp
-xx
-xxx
-y
-ya
yacht
yahoo
-yale
-yamaha
yang
yard
yards
yarn
-ye
-yea
yeah
year
yearly
years
yeast
yellow
-yemen
-yen
-yes
yesterday
-yet
yield
yields
-yn
-yo
yoga
-york
-yorkshire
-you
young
younger
your
yours
yourself
youth
-yr
-yrs
-yu
-yugoslavia
-yukon
-z
-za
-zambia
-zdnet
-zealand
-zen
zero
-zimbabwe
zinc
-zip
-zoloft
zone
zones
zoning
-zoo
zoom
-zoophilia
-zope
-zshops
-zu
-zum
-zus
diff --git a/src/main/java/files.txt b/src/main/java/files.txt
index 6bd26e2..6abae1c 100644
--- a/src/main/java/files.txt
+++ b/src/main/java/files.txt
@@ -1,11 +1,4 @@
-a
-aa
-aaa
-aaron
-ab
abandoned
-abc
-aberdeen
abilities
ability
able
@@ -13,9 +6,7 @@ aboriginal
abortion
about
above
-abraham
abroad
-abs
absence
absent
absolute
@@ -23,13 +14,10 @@ absolutely
absorption
abstract
abstracts
-abu
abuse
-ac
academic
academics
academy
-acc
accent
accept
acceptable
@@ -66,9 +54,6 @@ accuracy
accurate
accurately
accused
-acdbentity
-ace
-acer
achieve
achieved
achievement
@@ -78,7 +63,6 @@ acid
acids
acknowledge
acknowledged
-acm
acne
acoustic
acquire
@@ -90,7 +74,6 @@ acres
acrobat
across
acrylic
-act
acting
action
actions
@@ -108,17 +91,11 @@ acts
actual
actually
acute
-ad
-ada
-adam
-adams
adaptation
adapted
adapter
adapters
adaptive
-adaptor
-add
added
addiction
adding
@@ -131,10 +108,7 @@ addressed
addresses
addressing
adds
-adelaide
adequate
-adidas
-adipex
adjacent
adjust
adjustable
@@ -156,9 +130,6 @@ adolescent
adopt
adopted
adoption
-adrian
-ads
-adsl
adult
adults
advance
@@ -186,10 +157,8 @@ advisory
advocacy
advocate
adware
-ae
aerial
aerospace
-af
affair
affairs
affect
@@ -202,17 +171,12 @@ affiliates
affiliation
afford
affordable
-afghanistan
afraid
-africa
-african
after
afternoon
afterwards
-ag
again
against
-age
aged
agencies
agency
@@ -223,7 +187,6 @@ ages
aggregate
aggressive
aging
-ago
agree
agreed
agreement
@@ -231,15 +194,10 @@ agreements
agrees
agricultural
agriculture
-ah
ahead
-ai
-aid
aids
-aim
aimed
aims
-air
aircraft
airfare
airline
@@ -247,46 +205,22 @@ airlines
airplane
airport
airports
-aj
-ak
-aka
-al
-ala
-alabama
-alan
alarm
-alaska
-albania
-albany
-albert
-alberta
album
albums
-albuquerque
alcohol
alert
alerts
-alex
-alexander
-alexandria
-alfred
algebra
-algeria
algorithm
algorithms
-ali
alias
-alice
alien
align
alignment
alike
alive
-all
-allah
-allan
alleged
-allen
allergy
alliance
allied
@@ -301,13 +235,11 @@ alloy
almost
alone
along
-alot
alpha
alphabetical
alpine
already
also
-alt
alter
altered
alternate
@@ -316,45 +248,25 @@ alternatively
alternatives
although
alto
-aluminium
aluminum
alumni
always
-am
-amanda
amateur
amazing
amazon
-amazoncom
-amazoncouk
ambassador
amber
-ambien
ambient
-amd
amend
amended
amendment
amendments
amenities
-america
-american
-americans
-americas
amino
among
-amongst
amount
amounts
-amp
-ampland
amplifier
-amsterdam
-amy
-an
-ana
-anaheim
-anal
analog
analyses
analysis
@@ -366,33 +278,17 @@ analyzed
anatomy
anchor
ancient
-and
-andale
-anderson
-andorra
-andrea
-andreas
-andrew
-andrews
-andy
angel
-angela
-angeles
angels
anger
angle
-angola
angry
animal
animals
animated
animation
anime
-ann
-anna
-anne
annex
-annie
anniversary
annotated
annotation
@@ -410,22 +306,16 @@ answer
answered
answering
answers
-ant
-antarctica
antenna
-anthony
anthropology
anti
antibodies
antibody
anticipated
-antigua
antique
antiques
antivirus
-antonio
anxiety
-any
anybody
anymore
anyone
@@ -433,16 +323,9 @@ anything
anytime
anyway
anywhere
-aol
-ap
-apache
apart
apartment
apartments
-api
-apnic
-apollo
-app
apparatus
apparel
apparent
@@ -485,19 +368,11 @@ approx
approximate
approximately
apps
-apr
-april
-apt
aqua
aquarium
aquatic
-ar
-arab
-arabia
-arabic
arbitrary
arbitration
-arc
arcade
arch
architect
@@ -508,29 +383,19 @@ archive
archived
archives
arctic
-are
area
areas
arena
-arg
-argentina
argue
argued
argument
arguments
arise
arising
-arizona
-arkansas
-arlington
-arm
armed
-armenia
armor
arms
-armstrong
army
-arnold
around
arrange
arranged
@@ -545,9 +410,7 @@ arrive
arrived
arrives
arrow
-art
arthritis
-arthur
article
articles
artificial
@@ -556,26 +419,13 @@ artistic
artists
arts
artwork
-aruba
-as
asbestos
-ascii
-ash
-ashley
-asia
-asian
aside
-asin
-ask
asked
asking
asks
-asn
-asp
aspect
aspects
-aspnet
-ass
assault
assembled
assembly
@@ -612,19 +462,10 @@ assured
asthma
astrology
astronomy
-asus
-at
-ata
-ate
-athens
athletes
athletic
athletics
-ati
-atlanta
-atlantic
atlas
-atm
atmosphere
atmospheric
atom
@@ -655,25 +496,15 @@ attractions
attractive
attribute
attributes
-au
auburn
-auckland
auction
auctions
-aud
-audi
audience
audio
audit
auditor
-aug
august
aurora
-aus
-austin
-australia
-australian
-austria
authentic
authentication
author
@@ -692,20 +523,14 @@ automobiles
automotive
autos
autumn
-av
availability
available
avatar
-ave
avenue
average
-avg
-avi
aviation
avoid
avoiding
-avon
-aw
award
awarded
awards
@@ -715,11 +540,6 @@ away
awesome
awful
axis
-aye
-az
-azerbaijan
-b
-ba
babe
babes
babies
@@ -734,36 +554,25 @@ backup
bacon
bacteria
bacterial
-bad
badge
badly
-bag
-baghdad
bags
-bahamas
-bahrain
bailey
baker
baking
balance
balanced
bald
-bali
ball
ballet
balloon
ballot
balls
-baltimore
-ban
banana
band
bands
bandwidth
bang
-bangbus
-bangkok
-bangladesh
bank
banking
bankruptcy
@@ -772,28 +581,21 @@ banned
banner
banners
baptist
-bar
-barbados
-barbara
barbie
-barcelona
bare
barely
bargain
bargains
barn
-barnes
barrel
barrier
barriers
-barry
bars
base
baseball
based
baseline
basement
-basename
bases
basic
basically
@@ -804,7 +606,6 @@ basket
basketball
baskets
bass
-bat
batch
bath
bathroom
@@ -815,15 +616,6 @@ batteries
battery
battle
battlefield
-bay
-bb
-bbc
-bbs
-bbw
-bc
-bd
-bdsm
-be
beach
beaches
beads
@@ -834,10 +626,7 @@ bear
bearing
bears
beast
-beastality
-beastiality
beat
-beatles
beats
beautiful
beautifully
@@ -848,13 +637,10 @@ because
become
becomes
becoming
-bed
bedding
-bedford
bedroom
bedrooms
beds
-bee
beef
been
beer
@@ -869,21 +655,14 @@ begun
behalf
behavior
behavioral
-behaviour
behind
-beijing
being
beings
-belarus
-belfast
-belgium
belief
beliefs
believe
believed
believes
-belize
-belkin
bell
belle
belly
@@ -892,7 +671,6 @@ belongs
below
belt
belts
-ben
bench
benchmark
bend
@@ -900,60 +678,40 @@ beneath
beneficial
benefit
benefits
-benjamin
-bennett
-benz
-berkeley
-berlin
-bermuda
-bernard
berry
beside
besides
best
-bestiality
bestsellers
-bet
beta
-beth
better
betting
-betty
between
beverage
beverages
-beverly
beyond
-bg
-bhutan
-bi
bias
bible
biblical
bibliographic
bibliography
bicycle
-bid
bidder
bidding
bids
-big
bigger
biggest
bike
bikes
-bikini
bill
billing
billion
bills
billy
-bin
binary
bind
binding
bingo
-bio
biodiversity
biographies
biography
@@ -964,28 +722,17 @@ bios
biotechnology
bird
birds
-birmingham
birth
birthday
bishop
-bit
-bitch
bite
bits
-biz
bizarre
-bizrate
-bk
-bl
black
blackberry
blackjack
-blacks
blade
blades
-blah
-blair
-blake
blame
blank
blanket
@@ -1010,41 +757,26 @@ blonde
blood
bloody
bloom
-bloomberg
blow
blowing
-blowjob
-blowjobs
blue
blues
-bluetooth
-blvd
-bm
-bmw
-bo
board
boards
boat
boating
boats
-bob
bobby
-boc
bodies
body
bold
-bolivia
bolt
bomb
-bon
bond
-bondage
bonds
bone
bones
bonus
-boob
-boobs
book
booking
bookings
@@ -1052,26 +784,19 @@ bookmark
bookmarks
books
bookstore
-bool
-boolean
boom
boost
boot
booth
boots
-booty
border
borders
bored
boring
born
-borough
-bosnia
boss
-boston
both
bother
-botswana
bottle
bottles
bottom
@@ -1083,37 +808,26 @@ boundaries
boundary
bouquet
boutique
-bow
bowl
bowling
-box
boxed
boxes
boxing
-boy
boys
-bp
-br
-bra
bracelet
bracelets
bracket
brad
-bradford
-bradley
brain
brake
brakes
branch
branches
brand
-brandon
brands
bras
brass
brave
-brazil
-brazilian
breach
bread
break
@@ -1121,14 +835,11 @@ breakdown
breakfast
breaking
breaks
-breast
-breasts
breath
breathing
breed
breeding
breeds
-brian
brick
bridal
bride
@@ -1139,23 +850,15 @@ briefing
briefly
briefs
bright
-brighton
brilliant
bring
bringing
brings
-brisbane
-bristol
-britain
-britannica
-british
-britney
broad
broadband
broadcast
broadcasting
broader
-broadway
brochure
brochures
broke
@@ -1163,8 +866,6 @@ broken
broker
brokers
bronze
-brook
-brooklyn
brooks
bros
brother
@@ -1175,29 +876,16 @@ browse
browser
browsers
browsing
-bruce
-brunei
brunette
-brunswick
brush
-brussels
brutal
-bryan
-bryant
-bs
-bt
bubble
-buck
bucks
-budapest
buddy
budget
budgets
-buf
buffalo
buffer
-bufing
-bug
bugs
build
builder
@@ -1206,9 +894,6 @@ building
buildings
builds
built
-bukkake
-bulgaria
-bulgarian
bulk
bull
bullet
@@ -1220,22 +905,16 @@ bunny
burden
bureau
buried
-burke
-burlington
burn
burner
burning
burns
burst
-burton
-bus
buses
bush
business
businesses
-busty
busy
-but
butler
butt
butter
@@ -1243,20 +922,13 @@ butterfly
button
buttons
butts
-buy
buyer
buyers
buying
buys
buzz
-bw
-by
-bye
byte
bytes
-c
-ca
-cab
cabin
cabinet
cabinets
@@ -1264,13 +936,10 @@ cable
cables
cache
cached
-cad
-cadillac
cafe
cage
cake
cakes
-cal
calcium
calculate
calculated
@@ -1280,43 +949,24 @@ calculator
calculators
calendar
calendars
-calgary
calibration
-calif
-california
call
called
calling
calls
calm
-calvin
-cam
-cambodia
-cambridge
-camcorder
-camcorders
-came
camel
camera
cameras
-cameron
-cameroon
camp
campaign
campaigns
-campbell
camping
camps
campus
-cams
-can
-canada
-canadian
canal
-canberra
cancel
cancellation
-cancelled
cancer
candidate
candidates
@@ -1328,7 +978,6 @@ canon
cant
canvas
canyon
-cap
capabilities
capability
capable
@@ -1340,12 +989,9 @@ caps
captain
capture
captured
-car
-carb
carbon
card
cardiac
-cardiff
cardiovascular
cards
care
@@ -1353,24 +999,15 @@ career
careers
careful
carefully
-carey
cargo
-caribbean
caring
-carl
-carlo
-carlos
-carmen
carnival
carol
-carolina
-caroline
carpet
carried
carrier
carriers
carries
-carroll
carry
carrying
cars
@@ -1380,32 +1017,25 @@ cartoon
cartoons
cartridge
cartridges
-cas
-casa
case
cases
-casey
cash
cashiers
casino
casinos
-casio
cassette
cast
casting
castle
casual
-cat
catalog
catalogs
-catalogue
catalyst
catch
categories
category
catering
cathedral
-catherine
catholic
cats
cattle
@@ -1416,16 +1046,6 @@ causes
causing
caution
cave
-cayman
-cb
-cbs
-cc
-ccd
-cd
-cdna
-cds
-cdt
-ce
cedar
ceiling
celebrate
@@ -1436,7 +1056,6 @@ celebs
cell
cells
cellular
-celtic
cement
cemetery
census
@@ -1445,12 +1064,9 @@ center
centered
centers
central
-centre
-centres
cents
centuries
century
-ceo
ceramic
ceremony
certain
@@ -1459,13 +1075,6 @@ certificate
certificates
certification
certified
-cest
-cet
-cf
-cfr
-cg
-cgi
-ch
chad
chain
chains
@@ -1483,13 +1092,11 @@ champion
champions
championship
championships
-chan
chance
chancellor
chances
change
changed
-changelog
changes
changing
channel
@@ -1513,10 +1120,7 @@ charges
charging
charitable
charity
-charles
-charleston
charlie
-charlotte
charm
charming
charms
@@ -1540,21 +1144,13 @@ checks
cheers
cheese
chef
-chelsea
chem
chemical
chemicals
chemistry
-chen
-cheque
cherry
chess
chest
-chester
-chevrolet
-chevy
-chi
-chicago
chick
chicken
chicks
@@ -1562,13 +1158,9 @@ chief
child
childhood
children
-childrens
-chile
china
-chinese
chip
chips
-cho
chocolate
choice
choices
@@ -1579,36 +1171,19 @@ choosing
chorus
chose
chosen
-chris
-christ
christian
-christianity
-christians
-christina
-christine
-christmas
-christopher
chrome
chronic
chronicle
chronicles
-chrysler
chubby
chuck
church
churches
-ci
-cia
-cialis
ciao
cigarette
cigarettes
-cincinnati
-cindy
cinema
-cingular
-cio
-cir
circle
circles
circuit
@@ -1617,7 +1192,6 @@ circular
circulation
circumstances
circus
-cisco
citation
citations
cite
@@ -1627,22 +1201,15 @@ citizen
citizens
citizenship
city
-citysearch
civic
civil
civilian
civilization
-cj
-cl
claim
claimed
claims
-claire
clan
-clara
clarity
-clark
-clarke
class
classes
classic
@@ -1665,7 +1232,6 @@ cleared
clearing
clearly
clerk
-cleveland
click
clicking
clicks
@@ -1678,7 +1244,6 @@ climbing
clinic
clinical
clinics
-clinton
clip
clips
clock
@@ -1702,13 +1267,6 @@ club
clubs
cluster
clusters
-cm
-cms
-cn
-cnet
-cnetcom
-cnn
-co
coach
coaches
coaching
@@ -1719,22 +1277,14 @@ coastal
coat
coated
coating
-cock
-cocks
-cod
code
codes
coding
coffee
cognitive
-cohen
coin
coins
-col
cold
-cole
-coleman
-colin
collaboration
collaborative
collapse
@@ -1742,7 +1292,6 @@ collar
colleague
colleagues
collect
-collectables
collected
collectible
collectibles
@@ -1754,24 +1303,16 @@ collector
collectors
college
colleges
-collins
cologne
-colombia
colon
colonial
colony
color
-colorado
colored
colors
-colour
-colours
-columbia
-columbus
column
columnists
columns
-com
combat
combination
combinations
@@ -1817,7 +1358,6 @@ commonwealth
communicate
communication
communications
-communist
communities
community
comp
@@ -1825,7 +1365,6 @@ compact
companies
companion
company
-compaq
comparable
comparative
compare
@@ -1882,7 +1421,6 @@ computed
computer
computers
computing
-con
concentrate
concentration
concentrations
@@ -1910,7 +1448,6 @@ condos
conduct
conducted
conducting
-conf
conference
conferences
conferencing
@@ -1918,7 +1455,6 @@ confidence
confident
confidential
confidentiality
-config
configuration
configure
configured
@@ -1930,14 +1466,12 @@ conflict
conflicts
confused
confusion
-congo
congratulations
congress
congressional
conjunction
connect
connected
-connecticut
connecting
connection
connections
@@ -1974,7 +1508,6 @@ consolidated
consolidation
consortium
conspiracy
-const
constant
constantly
constitute
@@ -2077,7 +1610,6 @@ coordinated
coordinates
coordination
coordinator
-cop
cope
copied
copies
@@ -2093,16 +1625,13 @@ cordless
core
cork
corn
-cornell
corner
corners
-cornwall
corp
corporate
corporation
corporations
corps
-corpus
correct
corrected
correction
@@ -2112,11 +1641,9 @@ correlation
correspondence
corresponding
corruption
-cos
cosmetic
cosmetics
cost
-costa
costs
costume
costumes
@@ -2156,21 +1683,13 @@ coverage
covered
covering
covers
-cow
cowboy
-cox
-cp
-cpu
-cr
crack
cradle
craft
crafts
-craig
-crap
craps
crash
-crawford
crazy
cream
create
@@ -2199,8 +1718,6 @@ criterion
critical
criticism
critics
-crm
-croatia
crop
crops
cross
@@ -2212,15 +1729,7 @@ crucial
crude
cruise
cruises
-cruz
-cry
crystal
-cs
-css
-cst
-ct
-cu
-cuba
cube
cubic
cuisine
@@ -2228,12 +1737,7 @@ cult
cultural
culture
cultures
-cum
-cumshot
-cumshots
cumulative
-cunt
-cup
cups
cure
curious
@@ -2243,65 +1747,40 @@ current
currently
curriculum
cursor
-curtis
curve
curves
custody
custom
customer
customers
-customise
customize
customized
customs
-cut
cute
cuts
cutting
-cv
-cvs
-cw
-cyber
cycle
cycles
cycling
cylinder
-cyprus
-cz
-czech
-d
-da
-dad
daddy
daily
dairy
daisy
-dakota
dale
-dallas
-dam
damage
damaged
damages
dame
-damn
-dan
-dana
dance
dancing
danger
dangerous
-daniel
danish
-danny
-dans
dare
dark
darkness
-darwin
-das
dash
-dat
data
database
databases
@@ -2311,44 +1790,25 @@ dates
dating
daughter
daughters
-dave
-david
-davidson
-davis
dawn
-day
days
-dayton
-db
-dc
-dd
-ddr
-de
dead
deadline
deadly
-deaf
deal
-dealer
-dealers
dealing
deals
dealt
-dealtime
dean
dear
death
deaths
debate
-debian
-deborah
debt
debug
debut
-dec
decade
decades
-december
decent
decide
decided
@@ -2367,17 +1827,14 @@ decorative
decrease
decreased
dedicated
-dee
deemed
deep
deeper
deeply
deer
-def
default
defeat
defects
-defence
defend
defendant
defense
@@ -2393,15 +1850,12 @@ definition
definitions
degree
degrees
-del
-delaware
delay
delayed
delays
delegation
delete
deleted
-delhi
delicious
delight
deliver
@@ -2412,7 +1866,6 @@ delivery
dell
delta
deluxe
-dem
demand
demanding
demands
@@ -2426,16 +1879,12 @@ demonstrate
demonstrated
demonstrates
demonstration
-den
denial
denied
-denmark
-dennis
dense
density
dental
dentists
-denver
deny
department
departmental
@@ -2454,11 +1903,8 @@ depression
dept
depth
deputy
-der
derby
-derek
derived
-des
descending
describe
described
@@ -2503,12 +1949,6 @@ determine
determined
determines
determining
-detroit
-deutsch
-deutsche
-deutschland
-dev
-devel
develop
developed
developer
@@ -2523,12 +1963,7 @@ deviation
device
devices
devil
-devon
devoted
-df
-dg
-dh
-di
diabetes
diagnosis
diagnostic
@@ -2539,19 +1974,12 @@ dialogue
diameter
diamond
diamonds
-diana
-diane
diary
dice
-dick
-dicke
dicks
dictionaries
dictionary
-did
-die
died
-diego
dies
diesel
diet
@@ -2566,22 +1994,15 @@ differently
difficult
difficulties
difficulty
-diffs
-dig
digest
digit
digital
-dildo
-dildos
-dim
dimension
dimensional
dimensions
dining
dinner
-dip
diploma
-dir
direct
directed
direction
@@ -2594,7 +2015,6 @@ directors
directory
dirt
dirty
-dis
disabilities
disability
disable
@@ -2634,7 +2054,6 @@ dish
dishes
disk
disks
-disney
disorder
disorders
dispatch
@@ -2647,7 +2066,6 @@ disposal
disposition
dispute
disputes
-dist
distance
distances
distant
@@ -2663,7 +2081,6 @@ distributors
district
districts
disturbed
-div
dive
diverse
diversity
@@ -2674,17 +2091,6 @@ divine
diving
division
divisions
-divorce
-divx
-diy
-dj
-dk
-dl
-dm
-dna
-dns
-do
-doc
dock
docs
doctor
@@ -2693,64 +2099,44 @@ doctrine
document
documentary
documentation
-documentcreatetextnode
documented
documents
-dod
dodge
-doe
does
-dog
dogs
doing
doll
dollar
dollars
dolls
-dom
domain
domains
dome
domestic
dominant
-dominican
-don
-donald
donate
donated
donation
donations
done
-donna
donor
donors
-dont
doom
door
doors
-dos
dosage
dose
-dot
double
doubt
-doug
-douglas
-dover
-dow
down
download
downloadable
-downloadcom
downloaded
downloading
downloads
downtown
dozen
dozens
-dp
-dpi
-dr
draft
drag
dragon
@@ -2787,54 +2173,27 @@ drop
dropped
drops
drove
-drug
-drugs
drum
drums
-drunk
-dry
dryer
-ds
-dsc
-dsl
-dt
-dts
-du
dual
-dubai
-dublin
duck
dude
-due
-dui
duke
-dumb
dump
-duncan
-duo
duplicate
durable
duration
-durham
during
dust
dutch
duties
duty
-dv
-dvd
-dvds
-dx
-dying
-dylan
dynamic
dynamics
-e
-ea
each
eagle
eagles
-ear
earl
earlier
earliest
@@ -2851,35 +2210,20 @@ ease
easier
easily
east
-easter
eastern
easy
-eat
eating
-eau
-ebay
ebony
-ebook
-ebooks
-ec
echo
eclipse
-eco
ecological
ecology
-ecommerce
economic
economics
economies
economy
-ecuador
-ed
-eddie
-eden
-edgar
edge
edges
-edinburgh
edit
edited
editing
@@ -2889,17 +2233,10 @@ editor
editorial
editorials
editors
-edmonton
-eds
-edt
educated
education
educational
educators
-edward
-edwards
-ee
-ef
effect
effective
effectively
@@ -2910,16 +2247,9 @@ efficient
efficiently
effort
efforts
-eg
-egg
eggs
-egypt
-egyptian
-eh
eight
either
-ejaculation
-el
elder
elderly
elect
@@ -2930,7 +2260,6 @@ electoral
electric
electrical
electricity
-electro
electron
electronic
electronics
@@ -2946,15 +2275,8 @@ eligible
eliminate
elimination
elite
-elizabeth
-ellen
-elliott
-ellis
else
elsewhere
-elvis
-em
-emacs
email
emails
embassy
@@ -2962,12 +2284,9 @@ embedded
emerald
emergency
emerging
-emily
-eminem
emirates
emission
emissions
-emma
emotional
emotions
emperor
@@ -2982,12 +2301,10 @@ employer
employers
employment
empty
-en
enable
enabled
enables
enabling
-enb
enclosed
enclosure
encoding
@@ -2999,10 +2316,8 @@ encourages
encouraging
encryption
encyclopedia
-end
endangered
ended
-endif
ending
endless
endorsed
@@ -3012,7 +2327,6 @@ enemies
enemy
energy
enforcement
-eng
engage
engaged
engagement
@@ -3022,8 +2336,6 @@ engineer
engineering
engineers
engines
-england
-english
enhance
enhanced
enhancement
@@ -3033,18 +2345,14 @@ enjoy
enjoyed
enjoying
enlarge
-enlargement
enormous
enough
-enquiries
-enquiry
enrolled
enrollment
ensemble
ensure
ensures
ensuring
-ent
enter
entered
entering
@@ -3068,16 +2376,9 @@ environment
environmental
environments
enzyme
-eos
-ep
-epa
epic
-epinions
-epinionscom
episode
episodes
-epson
-eq
equal
equality
equally
@@ -3088,30 +2389,18 @@ equipment
equipped
equity
equivalent
-er
-era
-eric
-ericsson
-erik
-erotic
-erotica
-erp
error
errors
-es
escape
escort
escorts
especially
-espn
essay
essays
essence
essential
essentially
essentials
-essex
-est
establish
established
establishing
@@ -3122,33 +2411,18 @@ estimate
estimated
estimates
estimation
-estonia
-et
-etc
eternal
-ethernet
ethical
ethics
-ethiopia
ethnic
-eu
-eugene
-eur
euro
-europe
-european
euros
-ev
-eva
-eval
evaluate
evaluated
evaluating
evaluation
evaluations
evanescence
-evans
-eve
even
evening
event
@@ -3165,7 +2439,6 @@ evidence
evident
evil
evolution
-ex
exact
exactly
exam
@@ -3223,17 +2496,14 @@ existing
exists
exit
exotic
-exp
expand
expanded
expanding
expansion
-expansys
expect
expectations
expected
expects
-expedia
expenditure
expenditures
expense
@@ -3264,7 +2534,6 @@ explore
explorer
exploring
explosion
-expo
export
exports
exposed
@@ -3273,7 +2542,6 @@ express
expressed
expression
expressions
-ext
extend
extended
extending
@@ -3291,19 +2559,14 @@ extraordinary
extras
extreme
extremely
-eye
eyed
eyes
-ez
-f
-fa
fabric
fabrics
fabulous
face
faced
faces
-facial
facilitate
facilities
facility
@@ -3321,7 +2584,6 @@ fails
failure
failures
fair
-fairfield
fairly
fairy
faith
@@ -3336,14 +2598,10 @@ familiar
families
family
famous
-fan
fancy
fans
fantastic
fantasy
-faq
-faqs
-far
fare
fares
farm
@@ -3356,7 +2614,6 @@ fashion
fast
faster
fastest
-fat
fatal
fate
father
@@ -3367,16 +2624,6 @@ favor
favorite
favorites
favors
-favour
-favourite
-favourites
-fax
-fbi
-fc
-fcc
-fd
-fda
-fe
fear
fears
feat
@@ -3384,12 +2631,8 @@ feature
featured
features
featuring
-feb
-february
-fed
federal
federation
-fee
feed
feedback
feeding
@@ -3407,27 +2650,19 @@ felt
female
females
fence
-feof
-ferrari
ferry
festival
festivals
fetish
fever
-few
fewer
-ff
-fg
-fi
fiber
-fibre
fiction
field
fields
fifteen
fifth
fifty
-fig
fight
fighter
fighters
@@ -3435,7 +2670,6 @@ fighting
figure
figured
figures
-fiji
file
filed
filename
@@ -3445,12 +2679,10 @@ fill
filled
filling
film
-filme
films
filter
filtering
filters
-fin
final
finally
finals
@@ -3459,31 +2691,23 @@ finances
financial
financing
find
-findarticles
finder
finding
findings
-findlaw
finds
fine
finest
finger
-fingering
fingers
finish
finished
finishing
finite
-finland
-finnish
-fioricet
fire
fired
-firefox
fireplace
fires
firewall
-firewire
firm
firms
firmware
@@ -3494,19 +2718,14 @@ fisher
fisheries
fishing
fist
-fisting
-fit
fitness
fits
fitted
fitting
five
-fix
fixed
fixes
fixtures
-fl
-fla
flag
flags
flame
@@ -3521,7 +2740,6 @@ flesh
flex
flexibility
flexible
-flickr
flight
flights
flip
@@ -3533,8 +2751,6 @@ flooring
floors
floppy
floral
-florence
-florida
florist
florists
flour
@@ -3542,23 +2758,16 @@ flow
flower
flowers
flows
-floyd
-flu
fluid
flush
flux
-fly
-flyer
flying
-fm
-fo
foam
focal
focus
focused
focuses
focusing
-fog
fold
folder
folders
@@ -3571,7 +2780,6 @@ following
follows
font
fonts
-foo
food
foods
fool
@@ -3579,8 +2787,6 @@ foot
footage
football
footwear
-for
-forbes
forbidden
force
forced
@@ -3620,8 +2826,6 @@ forward
forwarding
fossil
foster
-foto
-fotos
fought
foul
found
@@ -3632,9 +2836,6 @@ founder
fountain
four
fourth
-fox
-fp
-fr
fraction
fragrance
fragrances
@@ -3643,19 +2844,10 @@ framed
frames
framework
framing
-france
franchise
-francis
-francisco
frank
-frankfurt
-franklin
-fraser
fraud
-fred
-frederick
free
-freebsd
freedom
freelance
freely
@@ -3668,8 +2860,6 @@ frequency
frequent
frequently
fresh
-fri
-friday
fridge
friend
friendly
@@ -3679,24 +2869,13 @@ frog
from
front
frontier
-frontpage
frost
frozen
fruit
fruits
-fs
-ft
-ftp
-fu
-fuck
-fucked
-fucking
fuel
-fuji
-fujitsu
full
fully
-fun
function
functional
functionality
@@ -3713,7 +2892,6 @@ funeral
funk
funky
funny
-fur
furnished
furnishings
furniture
@@ -3723,15 +2901,7 @@ fusion
future
futures
fuzzy
-fw
-fwd
-fx
-fy
-g
-ga
-gabriel
gadgets
-gage
gain
gained
gains
@@ -3741,25 +2911,17 @@ galleries
gallery
gambling
game
-gamecube
games
-gamespot
gaming
gamma
gang
-gangbang
-gap
gaps
garage
garbage
-garcia
garden
gardening
gardens
garlic
-garmin
-gary
-gas
gasoline
gate
gates
@@ -3769,22 +2931,9 @@ gathered
gathering
gauge
gave
-gay
-gays
gazette
-gb
-gba
-gbp
-gc
-gcc
-gd
-gdp
-ge
gear
geek
-gel
-gem
-gen
gender
gene
genealogy
@@ -3804,7 +2953,6 @@ genes
genesis
genetic
genetics
-geneva
genius
genome
genre
@@ -3813,51 +2961,31 @@ gentle
gentleman
gently
genuine
-geo
geographic
geographical
geography
geological
geology
geometry
-george
-georgia
-gerald
-german
-germany
-get
gets
getting
-gg
-ghana
ghost
-ghz
-gi
giant
giants
-gibraltar
-gibson
-gif
gift
gifts
-gig
-gilbert
girl
girlfriend
girls
-gis
give
given
gives
giving
-gl
glad
glance
-glasgow
glass
glasses
glen
-glenn
global
globe
glory
@@ -3865,17 +2993,10 @@ glossary
gloves
glow
glucose
-gm
-gmbh
-gmc
-gmt
gnome
-gnu
-go
goal
goals
goat
-god
gods
goes
going
@@ -3887,18 +3008,13 @@ gonna
good
goods
google
-gordon
gore
gorgeous
gospel
gossip
-got
-gothic
-goto
gotta
gotten
gourmet
-gov
governance
governing
government
@@ -3906,10 +3022,6 @@ governmental
governments
governor
govt
-gp
-gpl
-gps
-gr
grab
grace
grad
@@ -3925,7 +3037,6 @@ grain
grammar
grams
grand
-grande
granny
grant
granted
@@ -3935,11 +3046,9 @@ graphic
graphical
graphics
graphs
-gras
grass
grateful
gratis
-gratuit
grave
gravity
gray
@@ -3947,19 +3056,11 @@ great
greater
greatest
greatly
-greece
-greek
green
-greene
greenhouse
-greensboro
greeting
greetings
-greg
-gregory
-grenada
grew
-grey
grid
griffin
grill
@@ -3978,24 +3079,16 @@ growing
grown
grows
growth
-gs
-gsm
-gst
-gt
-gtk
-guam
guarantee
guaranteed
guarantees
guard
guardian
guards
-guatemala
guess
guest
guestbook
guests
-gui
guidance
guide
guided
@@ -4007,44 +3100,26 @@ guinea
guitar
guitars
gulf
-gun
guns
guru
-guy
-guyana
guys
-gym
-gzip
-h
-ha
habitat
habits
hack
hacker
-had
hair
hairy
-haiti
half
-halfcom
-halifax
hall
-halloween
halo
-ham
hamburg
-hamilton
hammer
-hampshire
-hampton
hand
handbags
handbook
handed
handheld
handhelds
-handjob
-handjobs
handle
handled
handles
@@ -4054,17 +3129,13 @@ hands
handy
hang
hanging
-hans
-hansen
happen
happened
happening
happens
happiness
happy
-harassment
harbor
-harbour
hard
hardcore
hardcover
@@ -4072,41 +3143,22 @@ harder
hardly
hardware
hardwood
-harley
harm
harmful
harmony
-harold
-harper
-harris
-harrison
harry
hart
-hartford
-harvard
harvest
-harvey
-has
hash
-hat
hate
hats
have
haven
having
-hawaii
-hawaiian
hawk
-hay
-hayes
hazard
hazardous
hazards
-hb
-hc
-hd
-hdtv
-he
head
headed
header
@@ -4137,15 +3189,11 @@ heating
heaven
heavily
heavy
-hebrew
heel
height
heights
held
-helen
-helena
helicopter
-hell
hello
helmet
help
@@ -4154,11 +3202,7 @@ helpful
helping
helps
hence
-henderson
-henry
-hentai
hepatitis
-her
herald
herb
herbal
@@ -4170,10 +3214,6 @@ heritage
hero
heroes
herself
-hewlett
-hey
-hh
-hi
hidden
hide
hierarchy
@@ -4191,35 +3231,22 @@ highways
hiking
hill
hills
-hilton
-him
himself
-hindu
hint
hints
-hip
hire
hired
hiring
-his
-hispanic
hist
historic
historical
history
-hit
-hitachi
hits
hitting
-hiv
-hk
-hl
-ho
hobbies
hobby
hockey
hold
-holdem
holder
holders
holding
@@ -4229,11 +3256,8 @@ hole
holes
holiday
holidays
-holland
hollow
holly
-hollywood
-holmes
holocaust
holy
home
@@ -4243,29 +3267,21 @@ homepage
homes
hometown
homework
-hon
-honda
-honduras
honest
honey
-hong
-honolulu
honor
honors
hood
hook
-hop
hope
hoped
hopefully
hopes
hoping
-hopkins
horizon
horizontal
hormone
horn
-horny
horrible
horror
horse
@@ -4280,11 +3296,8 @@ hostel
hostels
hosting
hosts
-hot
hotel
hotels
-hotelscom
-hotmail
hottest
hour
hourly
@@ -4296,27 +3309,8 @@ houses
housewares
housewives
housing
-houston
-how
-howard
however
-howto
-hp
-hq
-hr
-href
-hrs
-hs
-ht
-html
-http
-hu
-hub
-hudson
huge
-hugh
-hughes
-hugo
hull
human
humanitarian
@@ -4328,41 +3322,22 @@ humor
hundred
hundreds
hung
-hungarian
-hungary
hunger
hungry
hunt
hunter
hunting
-huntington
hurricane
hurt
husband
-hwy
hybrid
hydraulic
-hydrocodone
hydrogen
hygiene
hypothesis
hypothetical
-hyundai
-hz
-i
-ia
-ian
-ibm
-ic
-ice
-iceland
icon
icons
-icq
-ict
-id
-idaho
-ide
idea
ideal
ideas
@@ -4376,30 +3351,18 @@ identifying
identity
idle
idol
-ids
-ie
-ieee
-if
ignore
ignored
-ii
-iii
-il
-ill
illegal
-illinois
illness
illustrated
illustration
illustrations
-im
-ima
image
images
imagination
imagine
imaging
-img
immediate
immediately
immigrants
@@ -4434,13 +3397,10 @@ improved
improvement
improvements
improving
-in
inappropriate
inbox
-inc
incentive
incentives
-incest
inch
inches
incidence
@@ -4466,7 +3426,6 @@ increasing
increasingly
incredible
incurred
-ind
indeed
independence
independent
@@ -4474,11 +3433,6 @@ independently
index
indexed
indexes
-india
-indian
-indiana
-indianapolis
-indians
indicate
indicated
indicates
@@ -4493,8 +3447,6 @@ indirect
individual
individually
individuals
-indonesia
-indonesian
indoor
induced
induction
@@ -4502,7 +3454,6 @@ industrial
industries
industry
inexpensive
-inf
infant
infants
infected
@@ -4523,7 +3474,6 @@ informative
informed
infrared
infrastructure
-ing
ingredients
inherited
initial
@@ -4535,22 +3485,17 @@ injection
injured
injuries
injury
-ink
-inkjet
inline
-inn
inner
innocent
innovation
innovations
innovative
-inns
input
inputs
inquire
inquiries
inquiry
-ins
insects
insert
inserted
@@ -4591,7 +3536,6 @@ instruments
insulin
insurance
insured
-int
intake
integer
integral
@@ -4600,7 +3544,6 @@ integrated
integrating
integration
integrity
-intel
intellectual
intelligence
intelligent
@@ -4623,7 +3566,6 @@ interests
interface
interfaces
interference
-interim
interior
intermediate
internal
@@ -4643,7 +3585,6 @@ interventions
interview
interviews
intimate
-intl
into
intranet
intro
@@ -4670,7 +3611,6 @@ investments
investor
investors
invisible
-invision
invitation
invitations
invite
@@ -4681,131 +3621,43 @@ involved
involvement
involves
involving
-io
-ion
-iowa
-ip
-ipaq
-ipod
-ips
-ir
-ira
-iran
-iraq
-iraqi
-irc
-ireland
-irish
iron
irrigation
-irs
-is
-isa
-isaac
-isbn
-islam
-islamic
island
islands
isle
-iso
isolated
isolation
-isp
-israel
-israeli
-issn
issue
issued
issues
-ist
-istanbul
-it
-italia
-italian
-italiano
italic
-italy
item
items
-its
-itsa
itself
-itunes
-iv
ivory
-ix
-j
-ja
jack
jacket
jackets
-jackie
-jackson
-jacksonville
-jacob
jade
jaguar
jail
-jake
-jam
-jamaica
-james
-jamie
-jan
-jane
-janet
-january
japan
-japanese
-jar
-jason
java
-javascript
-jay
jazz
-jc
-jd
-je
jean
jeans
jeep
-jeff
-jefferson
-jeffrey
-jelsoft
-jennifer
jenny
-jeremy
-jerry
jersey
-jerusalem
-jesse
-jessica
-jesus
-jet
jets
jewel
-jewellery
jewelry
-jewish
-jews
-jill
-jim
jimmy
-jj
-jm
-jo
-joan
-job
jobs
-joe
-joel
john
johnny
johns
-johnson
-johnston
join
joined
joining
@@ -4813,44 +3665,21 @@ joins
joint
joke
jokes
-jon
-jonathan
-jones
-jordan
-jose
-joseph
josh
-joshua
journal
journalism
journalist
journalists
journals
journey
-joy
-joyce
-jp
-jpeg
-jpg
-jr
-js
-juan
judge
judges
judgment
judicial
-judy
juice
-jul
-julia
-julian
-julie
-july
jump
jumping
-jun
junction
-june
jungle
junior
junk
@@ -4859,63 +3688,29 @@ jury
just
justice
justify
-justin
juvenile
-jvc
-k
-ka
-kai
-kansas
karaoke
-karen
-karl
karma
-kate
-kathy
-katie
-katrina
-kay
-kazakhstan
-kb
-kde
keen
keep
keeping
keeps
-keith
-kelkoo
-kelly
-ken
-kennedy
-kenneth
-kenny
keno
-kent
-kentucky
-kenya
kept
kernel
-kerry
-kevin
-key
keyboard
keyboards
keys
keyword
keywords
-kg
kick
-kid
kidney
kids
-kijiji
-kill
killed
killer
killing
kills
kilometers
-kim
kinase
kind
kinda
@@ -4923,16 +3718,9 @@ kinds
king
kingdom
kings
-kingston
-kirk
-kiss
-kissing
-kit
kitchen
kits
kitty
-klein
-km
knee
knew
knife
@@ -4945,31 +3733,14 @@ knock
know
knowing
knowledge
-knowledgestorm
known
knows
-ko
-kodak
-kong
-korea
-korean
-kruger
-ks
-kurt
-kuwait
-kw
-ky
-kyle
-l
-la
-lab
label
labeled
labels
labor
laboratories
laboratory
-labour
labs
lace
lack
@@ -4977,16 +3748,12 @@ ladder
laden
ladies
lady
-lafayette
-laid
lake
lakes
lamb
lambda
lamp
lamps
-lan
-lancaster
lance
land
landing
@@ -4995,62 +3762,39 @@ landscape
landscapes
lane
lanes
-lang
language
languages
-lanka
-lap
laptop
laptops
large
largely
larger
largest
-larry
-las
laser
last
lasting
-lat
late
lately
later
latest
latex
-latin
-latina
-latinas
-latino
latitude
latter
-latvia
-lauderdale
laugh
laughing
launch
launched
launches
laundry
-laura
-lauren
-law
lawn
-lawrence
laws
lawsuit
lawyer
lawyers
-lay
layer
layers
layout
lazy
-lb
-lbs
-lc
-lcd
-ld
-le
lead
leader
leaders
@@ -5071,14 +3815,9 @@ leather
leave
leaves
leaving
-lebanon
lecture
lectures
-led
-lee
-leeds
left
-leg
legacy
legal
legally
@@ -5092,62 +3831,37 @@ legitimate
legs
leisure
lemon
-len
lender
lenders
lending
length
lens
lenses
-leo
-leon
-leonard
-leone
-les
lesbian
-lesbians
-leslie
less
lesser
lesson
lessons
-let
lets
letter
letters
letting
-leu
level
levels
-levitra
levy
-lewis
-lexington
-lexmark
-lexus
-lf
-lg
-li
liabilities
liability
liable
-lib
liberal
-liberia
liberty
librarian
libraries
library
-libs
-licence
license
licensed
licenses
licensing
licking
-lid
-lie
-liechtenstein
lies
life
lifestyle
@@ -5165,7 +3879,6 @@ likelihood
likely
likes
likewise
-lil
lime
limit
limitation
@@ -5174,59 +3887,38 @@ limited
limiting
limits
limousines
-lincoln
-linda
-lindsay
line
linear
lined
lines
-lingerie
link
linked
linking
links
-linux
lion
lions
-lip
lips
liquid
-lisa
list
listed
listen
listening
listing
listings
-listprice
lists
-lit
lite
literacy
literally
literary
literature
-lithuania
litigation
little
live
-livecam
lived
liver
-liverpool
lives
-livesex
livestock
living
-liz
-ll
-llc
-lloyd
-llp
-lm
-ln
-lo
load
loaded
loading
@@ -5234,7 +3926,6 @@ loads
loan
loans
lobby
-loc
local
locale
locally
@@ -5249,21 +3940,15 @@ locking
locks
lodge
lodging
-log
-logan
logged
logging
logic
logical
login
logistics
-logitech
logo
logos
logs
-lol
-lolita
-london
lone
lonely
long
@@ -5274,29 +3959,20 @@ look
looked
looking
looks
-looksmart
lookup
loop
loops
loose
-lopez
lord
-los
lose
losing
loss
losses
lost
-lot
lots
lottery
lotus
-lou
loud
-louis
-louise
-louisiana
-louisville
lounge
love
loved
@@ -5305,52 +3981,24 @@ lover
lovers
loves
loving
-low
lower
lowest
lows
-lp
-ls
-lt
-ltd
-lu
-lucas
-lucia
luck
lucky
-lucy
luggage
-luis
-luke
lunch
lung
-luther
-luxembourg
luxury
-lycos
lying
-lynn
lyric
lyrics
-m
-ma
-mac
-macedonia
machine
machinery
machines
-macintosh
macro
-macromedia
-mad
-madagascar
made
-madison
madness
-madonna
-madrid
-mae
-mag
magazine
magazines
magic
@@ -5359,16 +4007,13 @@ magnet
magnetic
magnificent
magnitude
-mai
maiden
mail
mailed
mailing
mailman
mails
-mailto
main
-maine
mainland
mainly
mainstream
@@ -5385,29 +4030,20 @@ makers
makes
makeup
making
-malawi
-malaysia
-maldives
male
males
-mali
mall
malpractice
-malta
mambo
-man
manage
managed
management
manager
managers
managing
-manchester
mandate
mandatory
manga
-manhattan
-manitoba
manner
manor
manual
@@ -5419,29 +4055,16 @@ manufacturer
manufacturers
manufacturing
many
-map
maple
mapping
maps
-mar
marathon
marble
-marc
march
-marco
-marcus
-mardi
-margaret
margin
maria
-mariah
-marie
-marijuana
-marilyn
marina
marine
-mario
-marion
maritime
mark
marked
@@ -5455,29 +4078,18 @@ marking
marks
marriage
married
-marriott
mars
-marshall
mart
-martha
martial
martin
marvel
-mary
-maryland
-mas
mask
mason
mass
-massachusetts
massage
massive
master
-mastercard
masters
-masturbating
-masturbation
-mat
match
matched
matches
@@ -5492,27 +4104,14 @@ mathematics
mating
matrix
mats
-matt
matter
matters
-matthew
mattress
mature
-maui
-mauritius
-max
maximize
maximum
-may
maybe
mayor
-mazda
-mb
-mba
-mc
-mcdonald
-md
-me
meal
meals
mean
@@ -5532,7 +4131,6 @@ mechanical
mechanics
mechanism
mechanisms
-med
medal
media
median
@@ -5545,19 +4143,13 @@ medicine
medicines
medieval
meditation
-mediterranean
medium
-medline
meet
meeting
meetings
meets
meetup
mega
-mel
-melbourne
-melissa
-mem
member
members
membership
@@ -5567,17 +4159,12 @@ memorabilia
memorial
memories
memory
-memphis
-men
-mens
-ment
mental
mention
mentioned
mentor
menu
menus
-mercedes
merchandise
merchant
merchants
@@ -5589,69 +4176,41 @@ merge
merger
merit
merry
-mesa
-mesh
mess
message
messages
messaging
messenger
-met
meta
metabolism
metadata
metal
metallic
-metallica
metals
meter
meters
method
methodology
methods
-metres
metric
metro
metropolitan
-mexican
-mexico
-meyer
-mf
-mfg
-mg
-mh
-mhz
-mi
-mia
-miami
-mic
mice
-michael
-michel
-michelle
-michigan
micro
microphone
-microsoft
microwave
-mid
middle
midi
midlands
midnight
-midwest
might
mighty
migration
mike
-mil
-milan
mild
mile
mileage
miles
-milf
-milfhunter
milfs
military
milk
@@ -5660,11 +4219,7 @@ millennium
miller
million
millions
-mills
-milton
-milwaukee
mime
-min
mind
minds
mine
@@ -5681,12 +4236,8 @@ minister
ministers
ministries
ministry
-minneapolis
-minnesota
-minolta
minor
minority
-mins
mint
minus
minute
@@ -5702,34 +4253,19 @@ missile
missing
mission
missions
-mississippi
-missouri
mistake
mistakes
mistress
-mit
-mitchell
-mitsubishi
-mix
mixed
mixer
mixing
mixture
-mj
-ml
-mlb
-mls
-mm
-mn
-mo
mobile
mobiles
mobility
-mod
mode
model
modeling
-modelling
models
modem
modems
@@ -5742,58 +4278,38 @@ modification
modifications
modified
modify
-mods
modular
module
modules
moisture
mold
-moldova
molecular
molecules
-mom
moment
moments
momentum
-moms
-mon
-monaco
-monday
monetary
money
-mongolia
-monica
monitor
monitored
monitoring
monitors
monkey
mono
-monroe
monster
-montana
-monte
-montgomery
month
monthly
months
-montreal
mood
moon
-moore
moral
more
moreover
-morgan
morning
morocco
-morris
-morrison
mortality
mortgage
mortgages
-moscow
-moses
moss
most
mostly
@@ -5808,7 +4324,6 @@ motivation
motor
motorcycle
motorcycles
-motorola
motors
mount
mountain
@@ -5827,38 +4342,12 @@ moves
movie
movies
moving
-mozambique
-mozilla
-mp
-mpeg
-mpegs
-mpg
-mph
-mr
-mrna
-mrs
-ms
-msg
-msgid
-msgstr
-msie
-msn
-mt
-mtv
-mu
much
-mud
-mug
multi
multimedia
multiple
-mumbai
-munich
municipal
municipality
-murder
-murphy
-murray
muscle
muscles
museum
@@ -5867,81 +4356,43 @@ music
musical
musician
musicians
-muslim
-muslims
must
mustang
mutual
-muze
-mv
-mw
-mx
-my
-myanmar
-myers
myrtle
myself
-mysimon
-myspace
-mysql
mysterious
mystery
myth
-n
-na
nail
nails
-naked
-nam
name
named
namely
names
-namespace
-namibia
-nancy
-nano
-naples
narrative
narrow
-nasa
-nascar
-nasdaq
-nashville
nasty
-nat
-nathan
nation
national
nationally
nations
nationwide
native
-nato
natural
naturally
naturals
nature
naughty
-nav
naval
navigate
navigation
navigator
navy
-nb
-nba
-nbc
-nc
-ncaa
-nd
-ne
near
nearby
nearest
nearly
-nebraska
-nec
necessarily
necessary
necessity
@@ -5957,109 +4408,61 @@ negotiations
neighbor
neighborhood
neighbors
-neil
neither
nelson
-neo
neon
-nepal
nerve
nervous
nest
nested
-net
-netherlands
-netscape
network
networking
networks
neural
neutral
-nevada
never
nevertheless
-new
-newark
newbie
-newcastle
newer
newest
-newfoundland
newly
-newport
news
-newscom
newsletter
newsletters
newspaper
newspapers
newton
next
-nextel
-nfl
-ng
-nh
-nhl
-nhs
-ni
-niagara
-nicaragua
nice
-nicholas
nick
nickel
nickname
-nicole
-niger
-nigeria
night
nightlife
nightmare
nights
-nike
-nikon
-nil
nine
-nintendo
-nipple
-nipples
nirvana
-nissan
nitrogen
-nj
-nl
-nm
-nn
-no
noble
nobody
node
nodes
noise
-nokia
nominated
nomination
nominations
-non
none
nonprofit
noon
-nor
-norfolk
norm
normal
normally
-norman
north
northeast
northern
northwest
-norton
-norway
-norwegian
-nos
nose
-not
note
notebook
notebooks
@@ -6074,25 +4477,12 @@ notifications
notified
notify
notion
-notre
-nottingham
-nov
nova
novel
novels
novelty
-november
-now
nowhere
-np
-nr
-ns
-nsw
-nt
-ntsc
-nu
nuclear
-nude
nudist
nudity
nuke
@@ -6106,27 +4496,14 @@ nurse
nursery
nurses
nursing
-nut
nutrition
nutritional
nuts
-nutten
-nv
-nvidia
-nw
-ny
-nyc
nylon
-nz
-o
-oak
-oakland
oaks
oasis
-ob
obesity
obituaries
-obj
object
objective
objectives
@@ -6143,7 +4520,6 @@ obtained
obtaining
obvious
obviously
-oc
occasion
occasional
occasionally
@@ -6158,16 +4534,7 @@ occurrence
occurring
occurs
ocean
-oclc
-oct
-october
-odd
odds
-oe
-oecd
-oem
-of
-off
offense
offensive
offer
@@ -6186,43 +4553,21 @@ offline
offset
offshore
often
-og
-oh
-ohio
-oil
oils
-ok
okay
-oklahoma
-ol
-old
older
oldest
olive
-oliver
-olympic
-olympics
-olympus
-om
-omaha
-oman
omega
omissions
-on
once
-one
ones
ongoing
onion
online
only
-ons
-ontario
onto
-oo
-ooo
oops
-op
open
opened
opening
@@ -6247,7 +4592,6 @@ opportunity
opposed
opposite
opposition
-opt
optical
optics
optimal
@@ -6257,9 +4601,7 @@ optimum
option
optional
options
-or
oracle
-oral
orange
orbit
orchestra
@@ -6269,13 +4611,7 @@ ordering
orders
ordinance
ordinary
-oregon
-org
-organ
organic
-organisation
-organisations
-organised
organisms
organization
organizational
@@ -6284,8 +4620,6 @@ organize
organized
organizer
organizing
-orgasm
-orgy
oriental
orientation
oriented
@@ -6293,21 +4627,12 @@ origin
original
originally
origins
-orlando
-orleans
-os
-oscar
-ot
other
others
otherwise
-ottawa
-ou
ought
-our
ours
ourselves
-out
outcome
outcomes
outdoor
@@ -6332,8 +4657,6 @@ overhead
overnight
overseas
overview
-owen
-own
owned
owner
owners
@@ -6342,24 +4665,18 @@ owns
oxford
oxide
oxygen
-oz
ozone
-p
-pa
-pac
pace
pacific
pack
package
packages
packaging
-packard
packed
packet
packets
packing
packs
-pad
pads
page
pages
@@ -6373,37 +4690,24 @@ painting
paintings
pair
pairs
-pakistan
-pal
palace
pale
-palestine
-palestinian
palm
-palmer
-pam
-pamela
-pan
panama
-panasonic
panel
panels
panic
-panties
pants
pantyhose
paper
paperback
paperbacks
papers
-papua
-par
para
parade
paradise
paragraph
paragraphs
-paraguay
parallel
parameter
parameters
@@ -6412,10 +4716,8 @@ parent
parental
parenting
parents
-paris
parish
park
-parker
parking
parks
parliament
@@ -6442,8 +4744,6 @@ partnership
partnerships
parts
party
-pas
-paso
pass
passage
passed
@@ -6460,7 +4760,6 @@ past
pasta
paste
pastor
-pat
patch
patches
patent
@@ -6471,65 +4770,40 @@ paths
patient
patients
patio
-patricia
-patrick
patrol
pattern
patterns
-paul
pavilion
-paxil
-pay
payable
payday
paying
payment
payments
-paypal
payroll
pays
-pb
-pc
-pci
-pcs
-pct
-pd
-pda
-pdas
-pdf
-pdt
-pe
peace
peaceful
peak
pearl
peas
pediatric
-pee
peeing
peer
peers
-pen
penalties
penalty
pencil
pendant
pending
-penetration
penguin
peninsula
-penis
-penn
-pennsylvania
penny
pens
pension
pensions
-pentium
people
peoples
pepper
-per
perceived
percent
percentage
@@ -6551,16 +4825,12 @@ periodically
periods
peripheral
peripherals
-perl
-permalink
permanent
permission
permissions
permit
permits
permitted
-perry
-persian
persistent
person
personal
@@ -6572,22 +4842,12 @@ personnel
persons
perspective
perspectives
-perth
-peru
pest
-pet
-pete
peter
-petersburg
-peterson
petite
petition
petroleum
pets
-pf
-pg
-pgp
-ph
phantom
pharmaceutical
pharmaceuticals
@@ -6596,16 +4856,7 @@ pharmacology
pharmacy
phase
phases
-phd
phenomenon
-phentermine
-phi
-phil
-philadelphia
-philip
-philippines
-philips
-phillips
philosophy
phoenix
phone
@@ -6618,9 +4869,6 @@ photographic
photographs
photography
photos
-photoshop
-php
-phpbb
phrase
phrases
phys
@@ -6630,10 +4878,7 @@ physician
physicians
physics
physiology
-pi
piano
-pic
-pichunter
pick
picked
picking
@@ -6643,18 +4888,14 @@ picnic
pics
picture
pictures
-pie
piece
pieces
pierce
-pierre
-pig
pike
pill
pillow
pills
pilot
-pin
pine
ping
pink
@@ -6664,18 +4905,10 @@ pipe
pipeline
pipes
pirates
-piss
-pissing
-pit
pitch
-pittsburgh
-pix
pixel
pixels
pizza
-pj
-pk
-pl
place
placed
placement
@@ -6706,16 +4939,13 @@ platforms
platinum
play
playback
-playboy
played
player
players
playing
playlist
plays
-playstation
plaza
-plc
pleasant
please
pleased
@@ -6729,15 +4959,8 @@ plugin
plugins
plumbing
plus
-plymouth
-pm
-pmc
-pmid
-pn
-po
pocket
pockets
-pod
podcast
podcasts
poem
@@ -6749,9 +4972,7 @@ pointed
pointer
pointing
points
-pokemon
poker
-poland
polar
pole
police
@@ -6771,22 +4992,16 @@ polyester
polymer
polyphonic
pond
-pontiac
pool
pools
poor
-pop
pope
popular
popularity
population
populations
-por
porcelain
pork
-porn
-porno
-porsche
port
portable
portal
@@ -6794,14 +5009,9 @@ porter
portfolio
portion
portions
-portland
portrait
portraits
ports
-portsmouth
-portugal
-portuguese
-pos
pose
posing
position
@@ -6824,9 +5034,7 @@ poster
posters
posting
postings
-postposted
posts
-pot
potato
potatoes
potential
@@ -6839,29 +5047,20 @@ pounds
pour
poverty
powder
-powell
power
powered
powerful
-powerpoint
powers
-powerseller
-pp
-ppc
-ppm
-pr
practical
practice
practices
practitioner
practitioners
-prague
prairie
praise
pray
prayer
prayers
-pre
preceding
precious
precipitation
@@ -6910,9 +5109,7 @@ press
pressed
pressing
pressure
-preston
pretty
-prev
prevent
preventing
prevention
@@ -6931,7 +5128,6 @@ primary
prime
prince
princess
-princeton
principal
principle
principles
@@ -6952,16 +5148,13 @@ privacy
private
privilege
privileges
-prix
prize
prizes
-pro
probability
probably
probe
problem
problems
-proc
procedure
procedures
proceed
@@ -6997,10 +5190,8 @@ profiles
profit
profits
program
-programme
programmer
programmers
-programmes
programming
programs
progress
@@ -7028,7 +5219,6 @@ promotions
prompt
promptly
proof
-propecia
proper
properly
properties
@@ -7046,8 +5236,6 @@ prospect
prospective
prospects
prostate
-prostores
-prot
protect
protected
protecting
@@ -7077,18 +5265,9 @@ provincial
provision
provisions
proxy
-prozac
-ps
-psi
-psp
-pst
psychiatry
psychological
psychology
-pt
-pts
-pty
-pub
public
publication
publications
@@ -7099,9 +5278,7 @@ published
publisher
publishers
publishing
-pubmed
pubs
-puerto
pull
pulled
pulling
@@ -7128,20 +5305,11 @@ pursuit
push
pushed
pushing
-pussy
-put
puts
putting
puzzle
puzzles
-pvc
python
-q
-qatar
-qc
-qld
-qt
-qty
quad
qualification
qualifications
@@ -7157,11 +5325,8 @@ quantum
quarter
quarterly
quarters
-que
-quebec
queen
queens
-queensland
queries
query
quest
@@ -7169,7 +5334,6 @@ question
questionnaire
questions
queue
-qui
quick
quickly
quiet
@@ -7182,12 +5346,9 @@ quotations
quote
quoted
quotes
-r
-ra
rabbit
race
races
-rachel
racial
racing
rack
@@ -7209,11 +5370,7 @@ raise
raised
raises
raising
-raleigh
rally
-ralph
-ram
-ran
ranch
rand
random
@@ -7227,14 +5384,11 @@ ranked
ranking
rankings
ranks
-rap
-rape
rapid
rapidly
rapids
rare
rarely
-rat
rate
rated
rates
@@ -7245,15 +5399,7 @@ ratio
rational
ratios
rats
-raw
-ray
-raymond
rays
-rb
-rc
-rca
-rd
-re
reach
reached
reaches
@@ -7275,8 +5421,6 @@ realize
realized
really
realm
-realtor
-realtors
realty
rear
reason
@@ -7286,10 +5430,8 @@ reasoning
reasons
rebate
rebates
-rebecca
rebel
rebound
-rec
recall
receipt
receive
@@ -7307,7 +5449,6 @@ recipe
recipes
recipient
recipients
-recognised
recognition
recognize
recognized
@@ -7332,7 +5473,6 @@ recreational
recruiting
recruitment
recycling
-red
redeem
redhead
reduce
@@ -7341,10 +5481,7 @@ reduces
reducing
reduction
reductions
-reed
-reef
reel
-ref
refer
reference
referenced
@@ -7371,7 +5508,6 @@ refund
refurbished
refuse
refused
-reg
regard
regarded
regarding
@@ -7396,10 +5532,8 @@ regulations
regulatory
rehab
rehabilitation
-reid
reject
rejected
-rel
relate
related
relates
@@ -7458,12 +5592,9 @@ rendering
renew
renewable
renewal
-reno
rent
rental
rentals
-rentcom
-rep
repair
repairs
repeat
@@ -7512,7 +5643,6 @@ requirement
requirements
requires
requiring
-res
rescue
research
researcher
@@ -7590,8 +5720,6 @@ returned
returning
returns
reunion
-reuters
-rev
reveal
revealed
reveals
@@ -7612,25 +5740,11 @@ revolution
revolutionary
reward
rewards
-reynolds
-rf
-rfc
-rg
-rh
-rhode
rhythm
-ri
ribbon
-rica
rice
rich
-richard
-richards
-richardson
-richmond
rick
-rico
-rid
ride
rider
riders
@@ -7639,13 +5753,10 @@ ridge
riding
right
rights
-rim
ring
rings
ringtone
ringtones
-rio
-rip
ripe
rise
rising
@@ -7654,32 +5765,18 @@ risks
river
rivers
riverside
-rj
-rl
-rm
-rn
-rna
-ro
road
roads
-rob
-robert
-roberts
-robertson
robin
-robinson
robot
robots
robust
-rochester
rock
rocket
rocks
rocky
-rod
roger
rogers
-roland
role
roles
roll
@@ -7687,14 +5784,9 @@ rolled
roller
rolling
rolls
-rom
roman
romance
-romania
romantic
-rome
-ron
-ronald
roof
room
roommate
@@ -7703,10 +5795,8 @@ rooms
root
roots
rope
-rosa
rose
roses
-ross
roster
rotary
rotation
@@ -7724,59 +5814,30 @@ routine
routines
routing
rover
-row
rows
-roy
royal
royalty
-rp
-rpg
-rpm
-rr
-rrp
-rs
-rss
-rt
-ru
rubber
ruby
-rug
rugby
rugs
rule
ruled
rules
ruling
-run
runner
running
runs
-runtime
rural
rush
-russell
-russia
-russian
-ruth
-rv
-rw
-rwanda
-rx
-ryan
-s
-sa
-sacramento
sacred
sacrifice
-sad
-saddam
safari
safe
safely
safer
safety
sage
-sagem
said
sail
sailing
@@ -7787,64 +5848,38 @@ salad
salaries
salary
sale
-salem
sales
sally
salmon
salon
salt
-salvador
salvation
-sam
samba
same
-samoa
sample
samples
sampling
-samsung
-samuel
-san
sand
-sandra
sandwich
sandy
sans
-santa
-sanyo
-sao
-sap
sapphire
-sara
-sarah
-sas
-saskatchewan
-sat
satellite
satin
satisfaction
satisfactory
satisfied
satisfy
-saturday
-saturn
sauce
-saudi
savage
-savannah
save
saved
saver
saves
saving
savings
-saw
-say
saying
says
-sb
-sbjct
-sc
scale
scales
scan
@@ -7871,7 +5906,6 @@ scholarship
scholarships
school
schools
-sci
science
sciences
scientific
@@ -7883,10 +5917,6 @@ score
scored
scores
scoring
-scotia
-scotland
-scott
-scottish
scout
scratch
screen
@@ -7896,23 +5926,16 @@ screensaver
screensavers
screenshot
screenshots
-screw
script
scripting
scripts
scroll
-scsi
scuba
sculpture
-sd
-se
-sea
seafood
seal
sealed
-sean
search
-searchcom
searched
searches
searching
@@ -7923,8 +5946,6 @@ seasons
seat
seating
seats
-seattle
-sec
second
secondary
seconds
@@ -7941,7 +5962,6 @@ secured
securely
securities
security
-see
seed
seeds
seeing
@@ -7954,8 +5974,6 @@ seem
seemed
seems
seen
-sees
-sega
segment
segments
select
@@ -7975,7 +5993,6 @@ semi
semiconductor
seminar
seminars
-sen
senate
senator
senators
@@ -7983,7 +6000,6 @@ send
sender
sending
sends
-senegal
senior
seniors
sense
@@ -7994,19 +6010,12 @@ sensors
sent
sentence
sentences
-seo
-sep
separate
separated
separately
separation
-sept
-september
-seq
sequence
sequences
-ser
-serbia
serial
series
serious
@@ -8022,7 +6031,6 @@ services
serving
session
sessions
-set
sets
setting
settings
@@ -8035,28 +6043,18 @@ seventh
several
severe
sewing
-sex
-sexcam
-sexo
-sexual
sexuality
sexually
sexy
-sf
-sg
-sh
shade
shades
shadow
shadows
shaft
shake
-shakespeare
-shakira
shall
shame
shanghai
-shannon
shape
shaped
shapes
@@ -8067,25 +6065,18 @@ shares
shareware
sharing
shark
-sharon
sharp
shaved
-shaw
-she
shed
sheep
sheer
sheet
sheets
-sheffield
shelf
shell
shelter
-shemale
-shemales
shepherd
sheriff
-sherman
shield
shift
shine
@@ -8097,7 +6088,6 @@ shipping
ships
shirt
shirts
-shit
shock
shoe
shoes
@@ -8105,12 +6095,9 @@ shoot
shooting
shop
shopper
-shoppercom
shoppers
shopping
-shoppingcom
shops
-shopzilla
shore
short
shortcuts
@@ -8129,18 +6116,12 @@ showers
showing
shown
shows
-showtimes
shut
shuttle
-si
-sic
sick
side
sides
-sie
-siemens
sierra
-sig
sight
sigma
sign
@@ -8154,41 +6135,30 @@ significant
significantly
signing
signs
-signup
silence
silent
silicon
silk
silly
silver
-sim
similar
similarly
-simon
simple
simplified
simply
-simpson
-simpsons
sims
simulation
simulations
simultaneously
-sin
since
sing
-singapore
singer
-singh
singing
single
singles
sink
-sip
-sir
sister
sisters
-sit
site
sitemap
sites
@@ -8196,14 +6166,11 @@ sitting
situated
situation
situations
-six
sixth
size
sized
sizes
-sk
skating
-ski
skiing
skill
skilled
@@ -8213,11 +6180,6 @@ skins
skip
skirt
skirts
-sku
-sky
-skype
-sl
-slave
sleep
sleeping
sleeps
@@ -8229,40 +6191,25 @@ slight
slightly
slim
slip
-slope
slot
slots
-slovak
-slovakia
-slovenia
slow
slowly
-slut
-sluts
-sm
small
smaller
smart
smell
smile
-smilies
smith
-smithsonian
smoke
smoking
smooth
-sms
-smtp
-sn
snake
snap
snapshot
snow
snowboard
-so
-soa
soap
-soc
soccer
social
societies
@@ -8276,9 +6223,7 @@ soft
softball
software
soil
-sol
solar
-solaris
sold
soldier
soldiers
@@ -8286,14 +6231,11 @@ sole
solely
solid
solo
-solomon
solution
solutions
solve
solved
solving
-soma
-somalia
some
somebody
somehow
@@ -8303,12 +6245,10 @@ something
sometimes
somewhat
somewhere
-son
song
songs
sonic
sons
-sony
soon
soonest
sophisticated
@@ -8326,23 +6266,15 @@ soup
source
sources
south
-southampton
southeast
southern
southwest
soviet
-sox
-sp
-spa
space
spaces
-spain
spam
span
-spanish
-spank
spanking
-sparc
spare
spas
spatial
@@ -8380,11 +6312,9 @@ speed
speeds
spell
spelling
-spencer
spend
spending
spent
-sperm
sphere
spice
spider
@@ -8414,24 +6344,13 @@ spray
spread
spreading
spring
-springer
-springfield
springs
sprint
-spy
spyware
-sq
-sql
squad
square
squirt
squirting
-sr
-src
-sri
-ss
-ssl
-st
stability
stable
stack
@@ -8444,19 +6363,15 @@ stainless
stakeholders
stamp
stamps
-stan
stand
standard
standards
standing
standings
stands
-stanford
-stanley
star
starring
stars
-starsmerchant
start
started
starter
@@ -8486,8 +6401,6 @@ stay
stayed
staying
stays
-std
-ste
steady
steal
steam
@@ -8495,15 +6408,9 @@ steel
steering
stem
step
-stephanie
-stephen
steps
stereo
sterling
-steve
-steven
-stevens
-stewart
stick
sticker
stickers
@@ -8511,7 +6418,6 @@ sticks
sticky
still
stock
-stockholm
stockings
stocks
stolen
@@ -8530,7 +6436,6 @@ stores
stories
storm
story
-str
straight
strain
strand
@@ -8558,21 +6463,17 @@ strikes
striking
string
strings
-strip
stripes
strips
-stroke
strong
stronger
strongly
struck
-struct
structural
structure
structured
structures
struggle
-stuart
stuck
stud
student
@@ -8586,20 +6487,15 @@ studying
stuff
stuffed
stunning
-stupid
style
styles
stylish
stylus
-su
-sub
-subaru
subcommittee
subdivision
subject
subjects
sublime
-sublimedirectory
submission
submissions
submit
@@ -8627,13 +6523,9 @@ success
successful
successfully
such
-suck
-sucking
sucks
-sudan
sudden
suddenly
-sue
suffer
suffered
suffering
@@ -8653,14 +6545,10 @@ suite
suited
suites
suits
-sullivan
-sum
summaries
summary
summer
summit
-sun
-sunday
sunglasses
sunny
sunrise
@@ -8689,7 +6577,6 @@ supports
suppose
supposed
supreme
-sur
sure
surely
surf
@@ -8717,37 +6604,25 @@ survival
survive
survivor
survivors
-susan
-suse
suspect
suspected
suspended
suspension
-sussex
sustainability
sustainable
sustained
-suzuki
-sv
-sw
swap
-sweden
-swedish
sweet
swift
swim
swimming
swing
swingers
-swiss
switch
switched
switches
switching
-switzerland
sword
-sydney
-symantec
symbol
symbols
sympathy
@@ -8762,15 +6637,9 @@ synopsis
syntax
synthesis
synthetic
-syracuse
-syria
-sys
system
systematic
systems
-t
-ta
-tab
table
tables
tablet
@@ -8778,12 +6647,9 @@ tablets
tabs
tackle
tactics
-tag
tagged
tags
-tahoe
tail
-taiwan
take
taken
takes
@@ -8797,16 +6663,10 @@ talked
talking
talks
tall
-tamil
-tampa
-tan
tank
tanks
-tanzania
-tap
tape
tapes
-tar
target
targeted
targets
@@ -8816,18 +6676,9 @@ tasks
taste
tattoo
taught
-tax
taxation
taxes
taxi
-taylor
-tb
-tba
-tc
-tcp
-td
-te
-tea
teach
teacher
teachers
@@ -8846,17 +6697,11 @@ techno
technological
technologies
technology
-techrepublic
-ted
teddy
-tee
teen
teenage
teens
teeth
-tel
-telecharger
-telecom
telecommunications
telephone
telephony
@@ -8875,11 +6720,9 @@ temple
temporal
temporarily
temporary
-ten
tenant
tend
tender
-tennessee
tennis
tension
tent
@@ -8906,8 +6749,6 @@ testimonials
testimony
testing
tests
-tex
-texas
text
textbook
textbooks
@@ -8915,25 +6756,14 @@ textile
textiles
texts
texture
-tf
-tft
-tgp
-th
-thai
-thailand
than
thank
thanks
thanksgiving
that
-thats
-the
theater
theaters
-theatre
-thee
theft
-thehun
their
them
theme
@@ -8965,14 +6795,10 @@ thing
things
think
thinking
-thinkpad
thinks
third
thirty
this
-thomas
-thompson
-thomson
thong
thongs
thorough
@@ -8992,7 +6818,6 @@ threatened
threatening
threats
three
-threesome
threshold
thriller
throat
@@ -9002,34 +6827,23 @@ throw
throwing
thrown
throws
-thru
-thu
thumb
thumbnail
thumbnails
thumbs
-thumbzilla
thunder
-thursday
thus
-thy
-ti
ticket
tickets
tide
-tie
tied
tier
ties
-tiffany
tiger
tigers
tight
-til
tile
tiles
-till
-tim
timber
time
timeline
@@ -9038,47 +6852,29 @@ timer
times
timing
timothy
-tin
tiny
-tion
-tions
-tip
tips
tire
tired
tires
tissue
-tit
titanium
titans
title
titled
titles
-tits
-titten
-tm
-tmp
-tn
-to
tobacco
-tobago
today
-todd
toddler
-toe
together
toilet
token
-tokyo
told
tolerance
toll
-tom
tomato
tomatoes
-tommy
tomorrow
-ton
tone
toner
tones
@@ -9086,7 +6882,6 @@ tongue
tonight
tons
tony
-too
took
tool
toolbar
@@ -9094,14 +6889,11 @@ toolbox
toolkit
tools
tooth
-top
topic
topics
topless
tops
-toronto
torture
-toshiba
total
totally
totals
@@ -9123,22 +6915,15 @@ town
towns
township
toxic
-toy
-toyota
toys
-tp
-tr
trace
track
-trackback
-trackbacks
tracked
tracker
tracking
tracks
tract
tractor
-tracy
trade
trademark
trademarks
@@ -9160,17 +6945,13 @@ trainer
trainers
training
trains
-tramadol
trance
-tranny
trans
transaction
transactions
transcript
transcription
transcripts
-transexual
-transexuales
transfer
transferred
transfers
@@ -9190,7 +6971,6 @@ transparency
transparent
transport
transportation
-transsexual
trap
trash
trauma
@@ -9198,11 +6978,7 @@ travel
traveler
travelers
traveling
-traveller
-travelling
travels
-travesti
-travis
tray
treasure
treasurer
@@ -9217,12 +6993,9 @@ treaty
tree
trees
trek
-trembl
tremendous
trend
trends
-treo
-tri
trial
trials
triangle
@@ -9238,11 +7011,9 @@ tried
tries
trigger
trim
-trinidad
trinity
trio
trip
-tripadvisor
triple
trips
triumph
@@ -9264,30 +7035,19 @@ trustee
trustees
trusts
truth
-try
trying
-ts
tsunami
-tt
-tu
-tub
tube
tubes
-tucson
-tue
-tuesday
tuition
-tulsa
tumor
tune
tuner
tunes
tuning
-tunisia
tunnel
turbo
turkey
-turkish
turn
turned
turner
@@ -9296,49 +7056,27 @@ turns
turtle
tutorial
tutorials
-tv
-tvcom
-tvs
twelve
twenty
twice
-twiki
twin
twinks
twins
twist
twisted
-two
-tx
-ty
-tyler
type
types
typical
typically
typing
-u
-uc
-uganda
-ugly
-uh
-ui
-uk
-ukraine
-ul
ultimate
ultimately
ultra
-ultram
-um
-un
-una
unable
unauthorized
unavailable
uncertainty
uncle
-und
undefined
under
undergraduate
@@ -9351,16 +7089,13 @@ undertake
undertaken
underwear
undo
-une
unemployment
unexpected
unfortunately
-uni
unified
uniform
union
unions
-uniprotkb
unique
unit
united
@@ -9371,7 +7106,6 @@ universal
universe
universities
university
-unix
unknown
unless
unlike
@@ -9386,8 +7120,6 @@ untitled
unto
unusual
unwrap
-up
-upc
upcoming
update
updated
@@ -9400,64 +7132,33 @@ upload
uploaded
upon
upper
-ups
upset
-upskirt
-upskirts
-ur
urban
urge
urgent
-uri
-url
-urls
-uruguay
-urw
-us
-usa
usage
-usb
-usc
-usd
-usda
-use
used
useful
user
username
users
uses
-usgs
using
-usps
-usr
usual
usually
-ut
-utah
-utc
utilities
utility
utilization
utilize
-utils
-uv
-uw
-uzbekistan
-v
-va
vacancies
vacation
vacations
vaccine
vacuum
-vagina
-val
valentine
valid
validation
validity
-valium
valley
valuable
valuation
@@ -9467,10 +7168,7 @@ values
valve
valves
vampire
-van
-vancouver
vanilla
-var
variable
variables
variance
@@ -9483,16 +7181,8 @@ various
vary
varying
vast
-vat
-vatican
vault
-vb
-vbulletin
-vc
-vcr
-ve
vector
-vegas
vegetable
vegetables
vegetarian
@@ -9503,21 +7193,14 @@ velocity
velvet
vendor
vendors
-venezuela
-venice
venture
ventures
venue
venues
-ver
verbal
-verde
verification
verified
verify
-verizon
-vermont
-vernon
verse
version
versions
@@ -9525,49 +7208,32 @@ versus
vertex
vertical
very
-verzeichnis
vessel
vessels
veteran
veterans
veterinary
-vg
-vhs
-vi
-via
-viagra
vibrator
vibrators
-vic
vice
victim
victims
victor
-victoria
-victorian
victory
-vid
video
videos
-vids
-vienna
-vietnam
-vietnamese
view
viewed
viewer
viewers
viewing
-viewpicture
views
-vii
viii
viking
villa
village
villages
villas
-vincent
vintage
vinyl
violation
@@ -9575,10 +7241,7 @@ violations
violence
violent
violin
-vip
viral
-virgin
-virginia
virtual
virtually
virtue
@@ -9606,9 +7269,6 @@ vocational
voice
voices
void
-voip
-vol
-volkswagen
volleyball
volt
voltage
@@ -9617,34 +7277,20 @@ volumes
voluntary
volunteer
volunteers
-volvo
-von
vote
voted
voters
votes
voting
-voyeur
-voyeurweb
-voyuer
-vp
-vpn
-vs
-vsnet
-vt
vulnerability
vulnerable
-w
-wa
wage
wages
-wagner
wagon
wait
waiting
waiver
wake
-wal
wales
walk
walked
@@ -9652,30 +7298,22 @@ walker
walking
walks
wall
-wallace
wallet
wallpaper
wallpapers
walls
walnut
-walt
-walter
-wan
-wang
wanna
want
wanted
wanting
wants
-war
-warcraft
ward
ware
warehouse
warm
warming
warned
-warner
warning
warnings
warrant
@@ -9685,11 +7323,9 @@ warren
warrior
warriors
wars
-was
wash
washer
washing
-washington
waste
watch
watched
@@ -9699,19 +7335,11 @@ water
waterproof
waters
watershed
-watson
watt
watts
-wav
wave
waves
-wax
-way
-wayne
ways
-wb
-wc
-we
weak
wealth
weapon
@@ -9719,7 +7347,6 @@ weapons
wear
wearing
weather
-web
webcam
webcams
webcast
@@ -9727,16 +7354,10 @@ weblog
weblogs
webmaster
webmasters
-webpage
-webshots
website
websites
-webster
-wed
wedding
weddings
-wednesday
-weed
week
weekend
weekends
@@ -9754,14 +7375,10 @@ wellington
wellness
wells
welsh
-wendy
went
were
-wesley
west
western
-westminster
-wet
whale
what
whatever
@@ -9779,15 +7396,10 @@ which
while
whilst
white
-who
whole
wholesale
whom
-whore
whose
-why
-wi
-wichita
wicked
wide
widely
@@ -9796,25 +7408,17 @@ widescreen
widespread
width
wife
-wifi
wiki
-wikipedia
wild
wilderness
wildlife
-wiley
will
-william
-williams
willing
willow
-wilson
-win
wind
window
windows
winds
-windsor
wine
wines
wing
@@ -9823,20 +7427,16 @@ winner
winners
winning
wins
-winston
winter
wire
wired
wireless
wires
wiring
-wisconsin
wisdom
wise
wish
wishes
-wishlist
-wit
witch
with
withdrawal
@@ -9846,14 +7446,9 @@ witness
witnesses
wives
wizard
-wm
-wma
-wn
wolf
woman
women
-womens
-won
wonder
wonderful
wondering
@@ -9861,9 +7456,7 @@ wood
wooden
woods
wool
-worcester
word
-wordpress
words
work
worked
@@ -9879,9 +7472,7 @@ workshop
workshops
workstation
world
-worldcat
worlds
-worldsex
worldwide
worm
worn
@@ -9894,9 +7485,6 @@ worth
worthy
would
wound
-wow
-wp
-wr
wrap
wrapped
wrapping
@@ -9912,89 +7500,32 @@ writings
written
wrong
wrote
-ws
-wt
-wto
-wu
-wv
-ww
-www
-wx
-wy
-wyoming
-x
-xanax
-xbox
xerox
-xhtml
-xi
-xl
-xml
-xnxx
-xp
-xx
-xxx
-y
-ya
yacht
yahoo
-yale
-yamaha
yang
yard
yards
yarn
-ye
-yea
yeah
year
yearly
years
yeast
yellow
-yemen
-yen
-yes
yesterday
-yet
yield
yields
-yn
-yo
yoga
-york
-yorkshire
-you
young
younger
your
yours
yourself
youth
-yr
-yrs
-yu
-yugoslavia
-yukon
-z
-za
-zambia
-zdnet
-zealand
-zen
zero
-zimbabwe
zinc
-zip
-zoloft
zone
zones
zoning
-zoo
zoom
-zoophilia
-zope
-zshops
-zu
-zum
-zus
diff --git a/src/main/java/uta/cse3310/App.java b/src/main/java/uta/cse3310/App.java
index af48e31..b1fb116 100644
--- a/src/main/java/uta/cse3310/App.java
+++ b/src/main/java/uta/cse3310/App.java
@@ -59,6 +59,7 @@ public class App extends WebSocketServer {
private ArrayList
Selected_Game;
private int GId = 1;
public String jsonString = "";
+ public static int TEST_GRID;
//Game variables
@@ -101,11 +102,11 @@ private void initialize()
//Initialize available games
Games = new ArrayList<>();
- Game game1 = new Game(0,0);
- Game game2 = new Game(0,0);
- Game game3 = new Game(0,0);
- Game game4 = new Game(0,0);
- Game game5 = new Game(0,0);
+ Game game1 = new Game(0,TEST_GRID);
+ Game game2 = new Game(0,TEST_GRID);
+ Game game3 = new Game(0,TEST_GRID);
+ Game game4 = new Game(0,TEST_GRID);
+ Game game5 = new Game(0,TEST_GRID);
Games.add(game1);
Games.add(game2);
@@ -123,6 +124,8 @@ public void onOpen(WebSocket conn, ClientHandshake handshake) {
Gson gson = new Gson();
//Send out the server id to each user
conn.send(gson.toJson(ser));
+ conn.send(gson.toJson(TEST_GRID));
+
System.out.println(gson.toJson(ser));
ser+=1;
@@ -180,9 +183,20 @@ public void onMessage(WebSocket conn, String message)
}
UserEvent U = gson.fromJson(message, UserEvent.class);
-
- //Just entered the game
- if (U.ready == -1)
+ if (U.ready == -2)
+ {
+ if (!Players.containsKey(U.Handle) || U.Handle.length() > 10)
+ {
+ conn.send(gson.toJson("approved"));
+ }
+ else
+ {
+ conn.send(gson.toJson("disapproved"));
+ }
+ return;
+ }
+ //username approved
+ else if (U.ready == -1)
{
System.out.println("This is the player: " + U.Uid);
//Assign the color
@@ -259,8 +273,8 @@ else if (U.GameType == 3)
if (g != null)
{
g.busy = 1;
- g.GameId = GId;
- GId++;
+ g.test_grid = TEST_GRID;
+
//Remove the players from wait list if there is a game
for (int i = 0; i < U.GameType; i++)
@@ -288,7 +302,7 @@ else if (U.GameType == 3)
//moving back to lobby
else if (U.ready == 2)
{
- Game game = new Game(0,0);
+ Game game = new Game(0,TEST_GRID);
Games.remove(Players.get(U.Handle).game);
Players.get(U.Handle).game = null;
Games.add(game);
@@ -411,6 +425,8 @@ public static void main(String[] args) {
port = 9122;
String WSPort = System.getenv("WEBSOCKET_PORT");
+ String t_grid = System.getenv("TEST_GRID");
+ TEST_GRID = Integer.valueOf(t_grid);
if (WSPort!=null)
{
port = Integer.valueOf(WSPort);
diff --git a/src/main/java/uta/cse3310/Create_Grid.java b/src/main/java/uta/cse3310/Create_Grid.java
index 26db550..1306132 100644
--- a/src/main/java/uta/cse3310/Create_Grid.java
+++ b/src/main/java/uta/cse3310/Create_Grid.java
@@ -8,9 +8,9 @@
public class Create_Grid {
public char[][] boardArray;
- private int boardLength;
- private int boardWidth;
- private double density;
+ public int boardLength;
+ public int boardWidth;
+ public double density;
public ArrayList validWords;
public ArrayList selected_words;
@@ -46,28 +46,30 @@ public boolean initializeBoard(String filePath) {
return true;
}
- public boolean populateBoardWithWords() {
- Random random = new Random();
- int wordsPlaced = 0;
- double totalCells = boardLength * boardWidth;
- double currentDensity = 0;
-
- while (currentDensity < density && !validWords.isEmpty()) {
- String word = validWords.remove(random.nextInt(validWords.size()));
- int startX = random.nextInt(boardLength);
- int startY = random.nextInt(boardWidth);
- int orientation = random.nextInt(5); // 0: horizontal, 1: vertical up, 2: vertical down, 3: diagonal down, 4: diagonal up
-
- // Place word based on orientation
- boolean placed = placeWord(word, startX, startY, orientation);
- if (placed) {
- wordsPlaced++;
- currentDensity = (double) (wordsPlaced * word.length()) / totalCells;
- selected_words.add(word);
- }
- }return true;
-
- }
+ public boolean populateBoardWithWords() {
+ Random random = new Random();
+ int wordsPlaced = 0;
+ double totalCells = boardLength * boardWidth;
+ double currentDensity = 0;
+
+ while (currentDensity < density && !validWords.isEmpty()) {
+ int orientation = random.nextInt(5); // 0: horizontal, 1: vertical up, 2: vertical down, 3: diagonal down, 4: diagonal up
+
+ String word = validWords.remove(random.nextInt(validWords.size()));
+ int startX = random.nextInt(boardLength);
+ int startY = random.nextInt(boardWidth);
+
+ // Place word based on orientation
+ boolean placed = placeWord(word, startX, startY, orientation);
+ if (placed) {
+ wordsPlaced++;
+ currentDensity = (double) (wordsPlaced * word.length()) / totalCells;
+ selected_words.add(word);
+ }
+ }
+ return true;
+ }
+
public boolean placeWord(String word, int startX, int startY, int orientation) {
int wordLength = word.length();
diff --git a/src/main/java/uta/cse3310/Game.java b/src/main/java/uta/cse3310/Game.java
index b98f463..309301a 100644
--- a/src/main/java/uta/cse3310/Game.java
+++ b/src/main/java/uta/cse3310/Game.java
@@ -5,7 +5,7 @@
public class Game
{
public int busy;
- public int GameId;
+ public int test_grid;
public ArrayList ID;
public char[][] grid = new char[20][20];
//public char[] word;
@@ -13,10 +13,10 @@ public class Game
public ArrayList valid_words;
- Game(int busy, int GameId)
+ Game(int busy, int test_grid)
{
this.busy = busy;
- this.GameId = GameId;
+ this.test_grid = test_grid;
ID = new ArrayList<>();
valid_words = new ArrayList<>();
@@ -28,17 +28,17 @@ public class Game
char[][] createGrid()
{
Random rand = new Random();
- Create_Grid create_grid = new Create_Grid(20,20,0.67);
- char[][] grid = new char[20][20];
+ Create_Grid create_grid = new Create_Grid(test_grid,test_grid,0.67);
+ char[][] grid = new char[test_grid][test_grid];
if (create_grid.initializeBoard("files.txt"))
{
grid = create_grid.boardArray;
valid_words = create_grid.selected_words;
}
- for (int i = 0; i < 20; i++)
+ for (int i = 0; i < test_grid; i++)
{
- for (int j = 0; j < 20; j++)
+ for (int j = 0; j < test_grid; j++)
{
if (grid[i][j] == '#')
{
diff --git a/src/main/java/uta/cse3310/files.txt b/src/main/java/uta/cse3310/files.txt
index 6bd26e2..6abae1c 100644
--- a/src/main/java/uta/cse3310/files.txt
+++ b/src/main/java/uta/cse3310/files.txt
@@ -1,11 +1,4 @@
-a
-aa
-aaa
-aaron
-ab
abandoned
-abc
-aberdeen
abilities
ability
able
@@ -13,9 +6,7 @@ aboriginal
abortion
about
above
-abraham
abroad
-abs
absence
absent
absolute
@@ -23,13 +14,10 @@ absolutely
absorption
abstract
abstracts
-abu
abuse
-ac
academic
academics
academy
-acc
accent
accept
acceptable
@@ -66,9 +54,6 @@ accuracy
accurate
accurately
accused
-acdbentity
-ace
-acer
achieve
achieved
achievement
@@ -78,7 +63,6 @@ acid
acids
acknowledge
acknowledged
-acm
acne
acoustic
acquire
@@ -90,7 +74,6 @@ acres
acrobat
across
acrylic
-act
acting
action
actions
@@ -108,17 +91,11 @@ acts
actual
actually
acute
-ad
-ada
-adam
-adams
adaptation
adapted
adapter
adapters
adaptive
-adaptor
-add
added
addiction
adding
@@ -131,10 +108,7 @@ addressed
addresses
addressing
adds
-adelaide
adequate
-adidas
-adipex
adjacent
adjust
adjustable
@@ -156,9 +130,6 @@ adolescent
adopt
adopted
adoption
-adrian
-ads
-adsl
adult
adults
advance
@@ -186,10 +157,8 @@ advisory
advocacy
advocate
adware
-ae
aerial
aerospace
-af
affair
affairs
affect
@@ -202,17 +171,12 @@ affiliates
affiliation
afford
affordable
-afghanistan
afraid
-africa
-african
after
afternoon
afterwards
-ag
again
against
-age
aged
agencies
agency
@@ -223,7 +187,6 @@ ages
aggregate
aggressive
aging
-ago
agree
agreed
agreement
@@ -231,15 +194,10 @@ agreements
agrees
agricultural
agriculture
-ah
ahead
-ai
-aid
aids
-aim
aimed
aims
-air
aircraft
airfare
airline
@@ -247,46 +205,22 @@ airlines
airplane
airport
airports
-aj
-ak
-aka
-al
-ala
-alabama
-alan
alarm
-alaska
-albania
-albany
-albert
-alberta
album
albums
-albuquerque
alcohol
alert
alerts
-alex
-alexander
-alexandria
-alfred
algebra
-algeria
algorithm
algorithms
-ali
alias
-alice
alien
align
alignment
alike
alive
-all
-allah
-allan
alleged
-allen
allergy
alliance
allied
@@ -301,13 +235,11 @@ alloy
almost
alone
along
-alot
alpha
alphabetical
alpine
already
also
-alt
alter
altered
alternate
@@ -316,45 +248,25 @@ alternatively
alternatives
although
alto
-aluminium
aluminum
alumni
always
-am
-amanda
amateur
amazing
amazon
-amazoncom
-amazoncouk
ambassador
amber
-ambien
ambient
-amd
amend
amended
amendment
amendments
amenities
-america
-american
-americans
-americas
amino
among
-amongst
amount
amounts
-amp
-ampland
amplifier
-amsterdam
-amy
-an
-ana
-anaheim
-anal
analog
analyses
analysis
@@ -366,33 +278,17 @@ analyzed
anatomy
anchor
ancient
-and
-andale
-anderson
-andorra
-andrea
-andreas
-andrew
-andrews
-andy
angel
-angela
-angeles
angels
anger
angle
-angola
angry
animal
animals
animated
animation
anime
-ann
-anna
-anne
annex
-annie
anniversary
annotated
annotation
@@ -410,22 +306,16 @@ answer
answered
answering
answers
-ant
-antarctica
antenna
-anthony
anthropology
anti
antibodies
antibody
anticipated
-antigua
antique
antiques
antivirus
-antonio
anxiety
-any
anybody
anymore
anyone
@@ -433,16 +323,9 @@ anything
anytime
anyway
anywhere
-aol
-ap
-apache
apart
apartment
apartments
-api
-apnic
-apollo
-app
apparatus
apparel
apparent
@@ -485,19 +368,11 @@ approx
approximate
approximately
apps
-apr
-april
-apt
aqua
aquarium
aquatic
-ar
-arab
-arabia
-arabic
arbitrary
arbitration
-arc
arcade
arch
architect
@@ -508,29 +383,19 @@ archive
archived
archives
arctic
-are
area
areas
arena
-arg
-argentina
argue
argued
argument
arguments
arise
arising
-arizona
-arkansas
-arlington
-arm
armed
-armenia
armor
arms
-armstrong
army
-arnold
around
arrange
arranged
@@ -545,9 +410,7 @@ arrive
arrived
arrives
arrow
-art
arthritis
-arthur
article
articles
artificial
@@ -556,26 +419,13 @@ artistic
artists
arts
artwork
-aruba
-as
asbestos
-ascii
-ash
-ashley
-asia
-asian
aside
-asin
-ask
asked
asking
asks
-asn
-asp
aspect
aspects
-aspnet
-ass
assault
assembled
assembly
@@ -612,19 +462,10 @@ assured
asthma
astrology
astronomy
-asus
-at
-ata
-ate
-athens
athletes
athletic
athletics
-ati
-atlanta
-atlantic
atlas
-atm
atmosphere
atmospheric
atom
@@ -655,25 +496,15 @@ attractions
attractive
attribute
attributes
-au
auburn
-auckland
auction
auctions
-aud
-audi
audience
audio
audit
auditor
-aug
august
aurora
-aus
-austin
-australia
-australian
-austria
authentic
authentication
author
@@ -692,20 +523,14 @@ automobiles
automotive
autos
autumn
-av
availability
available
avatar
-ave
avenue
average
-avg
-avi
aviation
avoid
avoiding
-avon
-aw
award
awarded
awards
@@ -715,11 +540,6 @@ away
awesome
awful
axis
-aye
-az
-azerbaijan
-b
-ba
babe
babes
babies
@@ -734,36 +554,25 @@ backup
bacon
bacteria
bacterial
-bad
badge
badly
-bag
-baghdad
bags
-bahamas
-bahrain
bailey
baker
baking
balance
balanced
bald
-bali
ball
ballet
balloon
ballot
balls
-baltimore
-ban
banana
band
bands
bandwidth
bang
-bangbus
-bangkok
-bangladesh
bank
banking
bankruptcy
@@ -772,28 +581,21 @@ banned
banner
banners
baptist
-bar
-barbados
-barbara
barbie
-barcelona
bare
barely
bargain
bargains
barn
-barnes
barrel
barrier
barriers
-barry
bars
base
baseball
based
baseline
basement
-basename
bases
basic
basically
@@ -804,7 +606,6 @@ basket
basketball
baskets
bass
-bat
batch
bath
bathroom
@@ -815,15 +616,6 @@ batteries
battery
battle
battlefield
-bay
-bb
-bbc
-bbs
-bbw
-bc
-bd
-bdsm
-be
beach
beaches
beads
@@ -834,10 +626,7 @@ bear
bearing
bears
beast
-beastality
-beastiality
beat
-beatles
beats
beautiful
beautifully
@@ -848,13 +637,10 @@ because
become
becomes
becoming
-bed
bedding
-bedford
bedroom
bedrooms
beds
-bee
beef
been
beer
@@ -869,21 +655,14 @@ begun
behalf
behavior
behavioral
-behaviour
behind
-beijing
being
beings
-belarus
-belfast
-belgium
belief
beliefs
believe
believed
believes
-belize
-belkin
bell
belle
belly
@@ -892,7 +671,6 @@ belongs
below
belt
belts
-ben
bench
benchmark
bend
@@ -900,60 +678,40 @@ beneath
beneficial
benefit
benefits
-benjamin
-bennett
-benz
-berkeley
-berlin
-bermuda
-bernard
berry
beside
besides
best
-bestiality
bestsellers
-bet
beta
-beth
better
betting
-betty
between
beverage
beverages
-beverly
beyond
-bg
-bhutan
-bi
bias
bible
biblical
bibliographic
bibliography
bicycle
-bid
bidder
bidding
bids
-big
bigger
biggest
bike
bikes
-bikini
bill
billing
billion
bills
billy
-bin
binary
bind
binding
bingo
-bio
biodiversity
biographies
biography
@@ -964,28 +722,17 @@ bios
biotechnology
bird
birds
-birmingham
birth
birthday
bishop
-bit
-bitch
bite
bits
-biz
bizarre
-bizrate
-bk
-bl
black
blackberry
blackjack
-blacks
blade
blades
-blah
-blair
-blake
blame
blank
blanket
@@ -1010,41 +757,26 @@ blonde
blood
bloody
bloom
-bloomberg
blow
blowing
-blowjob
-blowjobs
blue
blues
-bluetooth
-blvd
-bm
-bmw
-bo
board
boards
boat
boating
boats
-bob
bobby
-boc
bodies
body
bold
-bolivia
bolt
bomb
-bon
bond
-bondage
bonds
bone
bones
bonus
-boob
-boobs
book
booking
bookings
@@ -1052,26 +784,19 @@ bookmark
bookmarks
books
bookstore
-bool
-boolean
boom
boost
boot
booth
boots
-booty
border
borders
bored
boring
born
-borough
-bosnia
boss
-boston
both
bother
-botswana
bottle
bottles
bottom
@@ -1083,37 +808,26 @@ boundaries
boundary
bouquet
boutique
-bow
bowl
bowling
-box
boxed
boxes
boxing
-boy
boys
-bp
-br
-bra
bracelet
bracelets
bracket
brad
-bradford
-bradley
brain
brake
brakes
branch
branches
brand
-brandon
brands
bras
brass
brave
-brazil
-brazilian
breach
bread
break
@@ -1121,14 +835,11 @@ breakdown
breakfast
breaking
breaks
-breast
-breasts
breath
breathing
breed
breeding
breeds
-brian
brick
bridal
bride
@@ -1139,23 +850,15 @@ briefing
briefly
briefs
bright
-brighton
brilliant
bring
bringing
brings
-brisbane
-bristol
-britain
-britannica
-british
-britney
broad
broadband
broadcast
broadcasting
broader
-broadway
brochure
brochures
broke
@@ -1163,8 +866,6 @@ broken
broker
brokers
bronze
-brook
-brooklyn
brooks
bros
brother
@@ -1175,29 +876,16 @@ browse
browser
browsers
browsing
-bruce
-brunei
brunette
-brunswick
brush
-brussels
brutal
-bryan
-bryant
-bs
-bt
bubble
-buck
bucks
-budapest
buddy
budget
budgets
-buf
buffalo
buffer
-bufing
-bug
bugs
build
builder
@@ -1206,9 +894,6 @@ building
buildings
builds
built
-bukkake
-bulgaria
-bulgarian
bulk
bull
bullet
@@ -1220,22 +905,16 @@ bunny
burden
bureau
buried
-burke
-burlington
burn
burner
burning
burns
burst
-burton
-bus
buses
bush
business
businesses
-busty
busy
-but
butler
butt
butter
@@ -1243,20 +922,13 @@ butterfly
button
buttons
butts
-buy
buyer
buyers
buying
buys
buzz
-bw
-by
-bye
byte
bytes
-c
-ca
-cab
cabin
cabinet
cabinets
@@ -1264,13 +936,10 @@ cable
cables
cache
cached
-cad
-cadillac
cafe
cage
cake
cakes
-cal
calcium
calculate
calculated
@@ -1280,43 +949,24 @@ calculator
calculators
calendar
calendars
-calgary
calibration
-calif
-california
call
called
calling
calls
calm
-calvin
-cam
-cambodia
-cambridge
-camcorder
-camcorders
-came
camel
camera
cameras
-cameron
-cameroon
camp
campaign
campaigns
-campbell
camping
camps
campus
-cams
-can
-canada
-canadian
canal
-canberra
cancel
cancellation
-cancelled
cancer
candidate
candidates
@@ -1328,7 +978,6 @@ canon
cant
canvas
canyon
-cap
capabilities
capability
capable
@@ -1340,12 +989,9 @@ caps
captain
capture
captured
-car
-carb
carbon
card
cardiac
-cardiff
cardiovascular
cards
care
@@ -1353,24 +999,15 @@ career
careers
careful
carefully
-carey
cargo
-caribbean
caring
-carl
-carlo
-carlos
-carmen
carnival
carol
-carolina
-caroline
carpet
carried
carrier
carriers
carries
-carroll
carry
carrying
cars
@@ -1380,32 +1017,25 @@ cartoon
cartoons
cartridge
cartridges
-cas
-casa
case
cases
-casey
cash
cashiers
casino
casinos
-casio
cassette
cast
casting
castle
casual
-cat
catalog
catalogs
-catalogue
catalyst
catch
categories
category
catering
cathedral
-catherine
catholic
cats
cattle
@@ -1416,16 +1046,6 @@ causes
causing
caution
cave
-cayman
-cb
-cbs
-cc
-ccd
-cd
-cdna
-cds
-cdt
-ce
cedar
ceiling
celebrate
@@ -1436,7 +1056,6 @@ celebs
cell
cells
cellular
-celtic
cement
cemetery
census
@@ -1445,12 +1064,9 @@ center
centered
centers
central
-centre
-centres
cents
centuries
century
-ceo
ceramic
ceremony
certain
@@ -1459,13 +1075,6 @@ certificate
certificates
certification
certified
-cest
-cet
-cf
-cfr
-cg
-cgi
-ch
chad
chain
chains
@@ -1483,13 +1092,11 @@ champion
champions
championship
championships
-chan
chance
chancellor
chances
change
changed
-changelog
changes
changing
channel
@@ -1513,10 +1120,7 @@ charges
charging
charitable
charity
-charles
-charleston
charlie
-charlotte
charm
charming
charms
@@ -1540,21 +1144,13 @@ checks
cheers
cheese
chef
-chelsea
chem
chemical
chemicals
chemistry
-chen
-cheque
cherry
chess
chest
-chester
-chevrolet
-chevy
-chi
-chicago
chick
chicken
chicks
@@ -1562,13 +1158,9 @@ chief
child
childhood
children
-childrens
-chile
china
-chinese
chip
chips
-cho
chocolate
choice
choices
@@ -1579,36 +1171,19 @@ choosing
chorus
chose
chosen
-chris
-christ
christian
-christianity
-christians
-christina
-christine
-christmas
-christopher
chrome
chronic
chronicle
chronicles
-chrysler
chubby
chuck
church
churches
-ci
-cia
-cialis
ciao
cigarette
cigarettes
-cincinnati
-cindy
cinema
-cingular
-cio
-cir
circle
circles
circuit
@@ -1617,7 +1192,6 @@ circular
circulation
circumstances
circus
-cisco
citation
citations
cite
@@ -1627,22 +1201,15 @@ citizen
citizens
citizenship
city
-citysearch
civic
civil
civilian
civilization
-cj
-cl
claim
claimed
claims
-claire
clan
-clara
clarity
-clark
-clarke
class
classes
classic
@@ -1665,7 +1232,6 @@ cleared
clearing
clearly
clerk
-cleveland
click
clicking
clicks
@@ -1678,7 +1244,6 @@ climbing
clinic
clinical
clinics
-clinton
clip
clips
clock
@@ -1702,13 +1267,6 @@ club
clubs
cluster
clusters
-cm
-cms
-cn
-cnet
-cnetcom
-cnn
-co
coach
coaches
coaching
@@ -1719,22 +1277,14 @@ coastal
coat
coated
coating
-cock
-cocks
-cod
code
codes
coding
coffee
cognitive
-cohen
coin
coins
-col
cold
-cole
-coleman
-colin
collaboration
collaborative
collapse
@@ -1742,7 +1292,6 @@ collar
colleague
colleagues
collect
-collectables
collected
collectible
collectibles
@@ -1754,24 +1303,16 @@ collector
collectors
college
colleges
-collins
cologne
-colombia
colon
colonial
colony
color
-colorado
colored
colors
-colour
-colours
-columbia
-columbus
column
columnists
columns
-com
combat
combination
combinations
@@ -1817,7 +1358,6 @@ commonwealth
communicate
communication
communications
-communist
communities
community
comp
@@ -1825,7 +1365,6 @@ compact
companies
companion
company
-compaq
comparable
comparative
compare
@@ -1882,7 +1421,6 @@ computed
computer
computers
computing
-con
concentrate
concentration
concentrations
@@ -1910,7 +1448,6 @@ condos
conduct
conducted
conducting
-conf
conference
conferences
conferencing
@@ -1918,7 +1455,6 @@ confidence
confident
confidential
confidentiality
-config
configuration
configure
configured
@@ -1930,14 +1466,12 @@ conflict
conflicts
confused
confusion
-congo
congratulations
congress
congressional
conjunction
connect
connected
-connecticut
connecting
connection
connections
@@ -1974,7 +1508,6 @@ consolidated
consolidation
consortium
conspiracy
-const
constant
constantly
constitute
@@ -2077,7 +1610,6 @@ coordinated
coordinates
coordination
coordinator
-cop
cope
copied
copies
@@ -2093,16 +1625,13 @@ cordless
core
cork
corn
-cornell
corner
corners
-cornwall
corp
corporate
corporation
corporations
corps
-corpus
correct
corrected
correction
@@ -2112,11 +1641,9 @@ correlation
correspondence
corresponding
corruption
-cos
cosmetic
cosmetics
cost
-costa
costs
costume
costumes
@@ -2156,21 +1683,13 @@ coverage
covered
covering
covers
-cow
cowboy
-cox
-cp
-cpu
-cr
crack
cradle
craft
crafts
-craig
-crap
craps
crash
-crawford
crazy
cream
create
@@ -2199,8 +1718,6 @@ criterion
critical
criticism
critics
-crm
-croatia
crop
crops
cross
@@ -2212,15 +1729,7 @@ crucial
crude
cruise
cruises
-cruz
-cry
crystal
-cs
-css
-cst
-ct
-cu
-cuba
cube
cubic
cuisine
@@ -2228,12 +1737,7 @@ cult
cultural
culture
cultures
-cum
-cumshot
-cumshots
cumulative
-cunt
-cup
cups
cure
curious
@@ -2243,65 +1747,40 @@ current
currently
curriculum
cursor
-curtis
curve
curves
custody
custom
customer
customers
-customise
customize
customized
customs
-cut
cute
cuts
cutting
-cv
-cvs
-cw
-cyber
cycle
cycles
cycling
cylinder
-cyprus
-cz
-czech
-d
-da
-dad
daddy
daily
dairy
daisy
-dakota
dale
-dallas
-dam
damage
damaged
damages
dame
-damn
-dan
-dana
dance
dancing
danger
dangerous
-daniel
danish
-danny
-dans
dare
dark
darkness
-darwin
-das
dash
-dat
data
database
databases
@@ -2311,44 +1790,25 @@ dates
dating
daughter
daughters
-dave
-david
-davidson
-davis
dawn
-day
days
-dayton
-db
-dc
-dd
-ddr
-de
dead
deadline
deadly
-deaf
deal
-dealer
-dealers
dealing
deals
dealt
-dealtime
dean
dear
death
deaths
debate
-debian
-deborah
debt
debug
debut
-dec
decade
decades
-december
decent
decide
decided
@@ -2367,17 +1827,14 @@ decorative
decrease
decreased
dedicated
-dee
deemed
deep
deeper
deeply
deer
-def
default
defeat
defects
-defence
defend
defendant
defense
@@ -2393,15 +1850,12 @@ definition
definitions
degree
degrees
-del
-delaware
delay
delayed
delays
delegation
delete
deleted
-delhi
delicious
delight
deliver
@@ -2412,7 +1866,6 @@ delivery
dell
delta
deluxe
-dem
demand
demanding
demands
@@ -2426,16 +1879,12 @@ demonstrate
demonstrated
demonstrates
demonstration
-den
denial
denied
-denmark
-dennis
dense
density
dental
dentists
-denver
deny
department
departmental
@@ -2454,11 +1903,8 @@ depression
dept
depth
deputy
-der
derby
-derek
derived
-des
descending
describe
described
@@ -2503,12 +1949,6 @@ determine
determined
determines
determining
-detroit
-deutsch
-deutsche
-deutschland
-dev
-devel
develop
developed
developer
@@ -2523,12 +1963,7 @@ deviation
device
devices
devil
-devon
devoted
-df
-dg
-dh
-di
diabetes
diagnosis
diagnostic
@@ -2539,19 +1974,12 @@ dialogue
diameter
diamond
diamonds
-diana
-diane
diary
dice
-dick
-dicke
dicks
dictionaries
dictionary
-did
-die
died
-diego
dies
diesel
diet
@@ -2566,22 +1994,15 @@ differently
difficult
difficulties
difficulty
-diffs
-dig
digest
digit
digital
-dildo
-dildos
-dim
dimension
dimensional
dimensions
dining
dinner
-dip
diploma
-dir
direct
directed
direction
@@ -2594,7 +2015,6 @@ directors
directory
dirt
dirty
-dis
disabilities
disability
disable
@@ -2634,7 +2054,6 @@ dish
dishes
disk
disks
-disney
disorder
disorders
dispatch
@@ -2647,7 +2066,6 @@ disposal
disposition
dispute
disputes
-dist
distance
distances
distant
@@ -2663,7 +2081,6 @@ distributors
district
districts
disturbed
-div
dive
diverse
diversity
@@ -2674,17 +2091,6 @@ divine
diving
division
divisions
-divorce
-divx
-diy
-dj
-dk
-dl
-dm
-dna
-dns
-do
-doc
dock
docs
doctor
@@ -2693,64 +2099,44 @@ doctrine
document
documentary
documentation
-documentcreatetextnode
documented
documents
-dod
dodge
-doe
does
-dog
dogs
doing
doll
dollar
dollars
dolls
-dom
domain
domains
dome
domestic
dominant
-dominican
-don
-donald
donate
donated
donation
donations
done
-donna
donor
donors
-dont
doom
door
doors
-dos
dosage
dose
-dot
double
doubt
-doug
-douglas
-dover
-dow
down
download
downloadable
-downloadcom
downloaded
downloading
downloads
downtown
dozen
dozens
-dp
-dpi
-dr
draft
drag
dragon
@@ -2787,54 +2173,27 @@ drop
dropped
drops
drove
-drug
-drugs
drum
drums
-drunk
-dry
dryer
-ds
-dsc
-dsl
-dt
-dts
-du
dual
-dubai
-dublin
duck
dude
-due
-dui
duke
-dumb
dump
-duncan
-duo
duplicate
durable
duration
-durham
during
dust
dutch
duties
duty
-dv
-dvd
-dvds
-dx
-dying
-dylan
dynamic
dynamics
-e
-ea
each
eagle
eagles
-ear
earl
earlier
earliest
@@ -2851,35 +2210,20 @@ ease
easier
easily
east
-easter
eastern
easy
-eat
eating
-eau
-ebay
ebony
-ebook
-ebooks
-ec
echo
eclipse
-eco
ecological
ecology
-ecommerce
economic
economics
economies
economy
-ecuador
-ed
-eddie
-eden
-edgar
edge
edges
-edinburgh
edit
edited
editing
@@ -2889,17 +2233,10 @@ editor
editorial
editorials
editors
-edmonton
-eds
-edt
educated
education
educational
educators
-edward
-edwards
-ee
-ef
effect
effective
effectively
@@ -2910,16 +2247,9 @@ efficient
efficiently
effort
efforts
-eg
-egg
eggs
-egypt
-egyptian
-eh
eight
either
-ejaculation
-el
elder
elderly
elect
@@ -2930,7 +2260,6 @@ electoral
electric
electrical
electricity
-electro
electron
electronic
electronics
@@ -2946,15 +2275,8 @@ eligible
eliminate
elimination
elite
-elizabeth
-ellen
-elliott
-ellis
else
elsewhere
-elvis
-em
-emacs
email
emails
embassy
@@ -2962,12 +2284,9 @@ embedded
emerald
emergency
emerging
-emily
-eminem
emirates
emission
emissions
-emma
emotional
emotions
emperor
@@ -2982,12 +2301,10 @@ employer
employers
employment
empty
-en
enable
enabled
enables
enabling
-enb
enclosed
enclosure
encoding
@@ -2999,10 +2316,8 @@ encourages
encouraging
encryption
encyclopedia
-end
endangered
ended
-endif
ending
endless
endorsed
@@ -3012,7 +2327,6 @@ enemies
enemy
energy
enforcement
-eng
engage
engaged
engagement
@@ -3022,8 +2336,6 @@ engineer
engineering
engineers
engines
-england
-english
enhance
enhanced
enhancement
@@ -3033,18 +2345,14 @@ enjoy
enjoyed
enjoying
enlarge
-enlargement
enormous
enough
-enquiries
-enquiry
enrolled
enrollment
ensemble
ensure
ensures
ensuring
-ent
enter
entered
entering
@@ -3068,16 +2376,9 @@ environment
environmental
environments
enzyme
-eos
-ep
-epa
epic
-epinions
-epinionscom
episode
episodes
-epson
-eq
equal
equality
equally
@@ -3088,30 +2389,18 @@ equipment
equipped
equity
equivalent
-er
-era
-eric
-ericsson
-erik
-erotic
-erotica
-erp
error
errors
-es
escape
escort
escorts
especially
-espn
essay
essays
essence
essential
essentially
essentials
-essex
-est
establish
established
establishing
@@ -3122,33 +2411,18 @@ estimate
estimated
estimates
estimation
-estonia
-et
-etc
eternal
-ethernet
ethical
ethics
-ethiopia
ethnic
-eu
-eugene
-eur
euro
-europe
-european
euros
-ev
-eva
-eval
evaluate
evaluated
evaluating
evaluation
evaluations
evanescence
-evans
-eve
even
evening
event
@@ -3165,7 +2439,6 @@ evidence
evident
evil
evolution
-ex
exact
exactly
exam
@@ -3223,17 +2496,14 @@ existing
exists
exit
exotic
-exp
expand
expanded
expanding
expansion
-expansys
expect
expectations
expected
expects
-expedia
expenditure
expenditures
expense
@@ -3264,7 +2534,6 @@ explore
explorer
exploring
explosion
-expo
export
exports
exposed
@@ -3273,7 +2542,6 @@ express
expressed
expression
expressions
-ext
extend
extended
extending
@@ -3291,19 +2559,14 @@ extraordinary
extras
extreme
extremely
-eye
eyed
eyes
-ez
-f
-fa
fabric
fabrics
fabulous
face
faced
faces
-facial
facilitate
facilities
facility
@@ -3321,7 +2584,6 @@ fails
failure
failures
fair
-fairfield
fairly
fairy
faith
@@ -3336,14 +2598,10 @@ familiar
families
family
famous
-fan
fancy
fans
fantastic
fantasy
-faq
-faqs
-far
fare
fares
farm
@@ -3356,7 +2614,6 @@ fashion
fast
faster
fastest
-fat
fatal
fate
father
@@ -3367,16 +2624,6 @@ favor
favorite
favorites
favors
-favour
-favourite
-favourites
-fax
-fbi
-fc
-fcc
-fd
-fda
-fe
fear
fears
feat
@@ -3384,12 +2631,8 @@ feature
featured
features
featuring
-feb
-february
-fed
federal
federation
-fee
feed
feedback
feeding
@@ -3407,27 +2650,19 @@ felt
female
females
fence
-feof
-ferrari
ferry
festival
festivals
fetish
fever
-few
fewer
-ff
-fg
-fi
fiber
-fibre
fiction
field
fields
fifteen
fifth
fifty
-fig
fight
fighter
fighters
@@ -3435,7 +2670,6 @@ fighting
figure
figured
figures
-fiji
file
filed
filename
@@ -3445,12 +2679,10 @@ fill
filled
filling
film
-filme
films
filter
filtering
filters
-fin
final
finally
finals
@@ -3459,31 +2691,23 @@ finances
financial
financing
find
-findarticles
finder
finding
findings
-findlaw
finds
fine
finest
finger
-fingering
fingers
finish
finished
finishing
finite
-finland
-finnish
-fioricet
fire
fired
-firefox
fireplace
fires
firewall
-firewire
firm
firms
firmware
@@ -3494,19 +2718,14 @@ fisher
fisheries
fishing
fist
-fisting
-fit
fitness
fits
fitted
fitting
five
-fix
fixed
fixes
fixtures
-fl
-fla
flag
flags
flame
@@ -3521,7 +2740,6 @@ flesh
flex
flexibility
flexible
-flickr
flight
flights
flip
@@ -3533,8 +2751,6 @@ flooring
floors
floppy
floral
-florence
-florida
florist
florists
flour
@@ -3542,23 +2758,16 @@ flow
flower
flowers
flows
-floyd
-flu
fluid
flush
flux
-fly
-flyer
flying
-fm
-fo
foam
focal
focus
focused
focuses
focusing
-fog
fold
folder
folders
@@ -3571,7 +2780,6 @@ following
follows
font
fonts
-foo
food
foods
fool
@@ -3579,8 +2787,6 @@ foot
footage
football
footwear
-for
-forbes
forbidden
force
forced
@@ -3620,8 +2826,6 @@ forward
forwarding
fossil
foster
-foto
-fotos
fought
foul
found
@@ -3632,9 +2836,6 @@ founder
fountain
four
fourth
-fox
-fp
-fr
fraction
fragrance
fragrances
@@ -3643,19 +2844,10 @@ framed
frames
framework
framing
-france
franchise
-francis
-francisco
frank
-frankfurt
-franklin
-fraser
fraud
-fred
-frederick
free
-freebsd
freedom
freelance
freely
@@ -3668,8 +2860,6 @@ frequency
frequent
frequently
fresh
-fri
-friday
fridge
friend
friendly
@@ -3679,24 +2869,13 @@ frog
from
front
frontier
-frontpage
frost
frozen
fruit
fruits
-fs
-ft
-ftp
-fu
-fuck
-fucked
-fucking
fuel
-fuji
-fujitsu
full
fully
-fun
function
functional
functionality
@@ -3713,7 +2892,6 @@ funeral
funk
funky
funny
-fur
furnished
furnishings
furniture
@@ -3723,15 +2901,7 @@ fusion
future
futures
fuzzy
-fw
-fwd
-fx
-fy
-g
-ga
-gabriel
gadgets
-gage
gain
gained
gains
@@ -3741,25 +2911,17 @@ galleries
gallery
gambling
game
-gamecube
games
-gamespot
gaming
gamma
gang
-gangbang
-gap
gaps
garage
garbage
-garcia
garden
gardening
gardens
garlic
-garmin
-gary
-gas
gasoline
gate
gates
@@ -3769,22 +2931,9 @@ gathered
gathering
gauge
gave
-gay
-gays
gazette
-gb
-gba
-gbp
-gc
-gcc
-gd
-gdp
-ge
gear
geek
-gel
-gem
-gen
gender
gene
genealogy
@@ -3804,7 +2953,6 @@ genes
genesis
genetic
genetics
-geneva
genius
genome
genre
@@ -3813,51 +2961,31 @@ gentle
gentleman
gently
genuine
-geo
geographic
geographical
geography
geological
geology
geometry
-george
-georgia
-gerald
-german
-germany
-get
gets
getting
-gg
-ghana
ghost
-ghz
-gi
giant
giants
-gibraltar
-gibson
-gif
gift
gifts
-gig
-gilbert
girl
girlfriend
girls
-gis
give
given
gives
giving
-gl
glad
glance
-glasgow
glass
glasses
glen
-glenn
global
globe
glory
@@ -3865,17 +2993,10 @@ glossary
gloves
glow
glucose
-gm
-gmbh
-gmc
-gmt
gnome
-gnu
-go
goal
goals
goat
-god
gods
goes
going
@@ -3887,18 +3008,13 @@ gonna
good
goods
google
-gordon
gore
gorgeous
gospel
gossip
-got
-gothic
-goto
gotta
gotten
gourmet
-gov
governance
governing
government
@@ -3906,10 +3022,6 @@ governmental
governments
governor
govt
-gp
-gpl
-gps
-gr
grab
grace
grad
@@ -3925,7 +3037,6 @@ grain
grammar
grams
grand
-grande
granny
grant
granted
@@ -3935,11 +3046,9 @@ graphic
graphical
graphics
graphs
-gras
grass
grateful
gratis
-gratuit
grave
gravity
gray
@@ -3947,19 +3056,11 @@ great
greater
greatest
greatly
-greece
-greek
green
-greene
greenhouse
-greensboro
greeting
greetings
-greg
-gregory
-grenada
grew
-grey
grid
griffin
grill
@@ -3978,24 +3079,16 @@ growing
grown
grows
growth
-gs
-gsm
-gst
-gt
-gtk
-guam
guarantee
guaranteed
guarantees
guard
guardian
guards
-guatemala
guess
guest
guestbook
guests
-gui
guidance
guide
guided
@@ -4007,44 +3100,26 @@ guinea
guitar
guitars
gulf
-gun
guns
guru
-guy
-guyana
guys
-gym
-gzip
-h
-ha
habitat
habits
hack
hacker
-had
hair
hairy
-haiti
half
-halfcom
-halifax
hall
-halloween
halo
-ham
hamburg
-hamilton
hammer
-hampshire
-hampton
hand
handbags
handbook
handed
handheld
handhelds
-handjob
-handjobs
handle
handled
handles
@@ -4054,17 +3129,13 @@ hands
handy
hang
hanging
-hans
-hansen
happen
happened
happening
happens
happiness
happy
-harassment
harbor
-harbour
hard
hardcore
hardcover
@@ -4072,41 +3143,22 @@ harder
hardly
hardware
hardwood
-harley
harm
harmful
harmony
-harold
-harper
-harris
-harrison
harry
hart
-hartford
-harvard
harvest
-harvey
-has
hash
-hat
hate
hats
have
haven
having
-hawaii
-hawaiian
hawk
-hay
-hayes
hazard
hazardous
hazards
-hb
-hc
-hd
-hdtv
-he
head
headed
header
@@ -4137,15 +3189,11 @@ heating
heaven
heavily
heavy
-hebrew
heel
height
heights
held
-helen
-helena
helicopter
-hell
hello
helmet
help
@@ -4154,11 +3202,7 @@ helpful
helping
helps
hence
-henderson
-henry
-hentai
hepatitis
-her
herald
herb
herbal
@@ -4170,10 +3214,6 @@ heritage
hero
heroes
herself
-hewlett
-hey
-hh
-hi
hidden
hide
hierarchy
@@ -4191,35 +3231,22 @@ highways
hiking
hill
hills
-hilton
-him
himself
-hindu
hint
hints
-hip
hire
hired
hiring
-his
-hispanic
hist
historic
historical
history
-hit
-hitachi
hits
hitting
-hiv
-hk
-hl
-ho
hobbies
hobby
hockey
hold
-holdem
holder
holders
holding
@@ -4229,11 +3256,8 @@ hole
holes
holiday
holidays
-holland
hollow
holly
-hollywood
-holmes
holocaust
holy
home
@@ -4243,29 +3267,21 @@ homepage
homes
hometown
homework
-hon
-honda
-honduras
honest
honey
-hong
-honolulu
honor
honors
hood
hook
-hop
hope
hoped
hopefully
hopes
hoping
-hopkins
horizon
horizontal
hormone
horn
-horny
horrible
horror
horse
@@ -4280,11 +3296,8 @@ hostel
hostels
hosting
hosts
-hot
hotel
hotels
-hotelscom
-hotmail
hottest
hour
hourly
@@ -4296,27 +3309,8 @@ houses
housewares
housewives
housing
-houston
-how
-howard
however
-howto
-hp
-hq
-hr
-href
-hrs
-hs
-ht
-html
-http
-hu
-hub
-hudson
huge
-hugh
-hughes
-hugo
hull
human
humanitarian
@@ -4328,41 +3322,22 @@ humor
hundred
hundreds
hung
-hungarian
-hungary
hunger
hungry
hunt
hunter
hunting
-huntington
hurricane
hurt
husband
-hwy
hybrid
hydraulic
-hydrocodone
hydrogen
hygiene
hypothesis
hypothetical
-hyundai
-hz
-i
-ia
-ian
-ibm
-ic
-ice
-iceland
icon
icons
-icq
-ict
-id
-idaho
-ide
idea
ideal
ideas
@@ -4376,30 +3351,18 @@ identifying
identity
idle
idol
-ids
-ie
-ieee
-if
ignore
ignored
-ii
-iii
-il
-ill
illegal
-illinois
illness
illustrated
illustration
illustrations
-im
-ima
image
images
imagination
imagine
imaging
-img
immediate
immediately
immigrants
@@ -4434,13 +3397,10 @@ improved
improvement
improvements
improving
-in
inappropriate
inbox
-inc
incentive
incentives
-incest
inch
inches
incidence
@@ -4466,7 +3426,6 @@ increasing
increasingly
incredible
incurred
-ind
indeed
independence
independent
@@ -4474,11 +3433,6 @@ independently
index
indexed
indexes
-india
-indian
-indiana
-indianapolis
-indians
indicate
indicated
indicates
@@ -4493,8 +3447,6 @@ indirect
individual
individually
individuals
-indonesia
-indonesian
indoor
induced
induction
@@ -4502,7 +3454,6 @@ industrial
industries
industry
inexpensive
-inf
infant
infants
infected
@@ -4523,7 +3474,6 @@ informative
informed
infrared
infrastructure
-ing
ingredients
inherited
initial
@@ -4535,22 +3485,17 @@ injection
injured
injuries
injury
-ink
-inkjet
inline
-inn
inner
innocent
innovation
innovations
innovative
-inns
input
inputs
inquire
inquiries
inquiry
-ins
insects
insert
inserted
@@ -4591,7 +3536,6 @@ instruments
insulin
insurance
insured
-int
intake
integer
integral
@@ -4600,7 +3544,6 @@ integrated
integrating
integration
integrity
-intel
intellectual
intelligence
intelligent
@@ -4623,7 +3566,6 @@ interests
interface
interfaces
interference
-interim
interior
intermediate
internal
@@ -4643,7 +3585,6 @@ interventions
interview
interviews
intimate
-intl
into
intranet
intro
@@ -4670,7 +3611,6 @@ investments
investor
investors
invisible
-invision
invitation
invitations
invite
@@ -4681,131 +3621,43 @@ involved
involvement
involves
involving
-io
-ion
-iowa
-ip
-ipaq
-ipod
-ips
-ir
-ira
-iran
-iraq
-iraqi
-irc
-ireland
-irish
iron
irrigation
-irs
-is
-isa
-isaac
-isbn
-islam
-islamic
island
islands
isle
-iso
isolated
isolation
-isp
-israel
-israeli
-issn
issue
issued
issues
-ist
-istanbul
-it
-italia
-italian
-italiano
italic
-italy
item
items
-its
-itsa
itself
-itunes
-iv
ivory
-ix
-j
-ja
jack
jacket
jackets
-jackie
-jackson
-jacksonville
-jacob
jade
jaguar
jail
-jake
-jam
-jamaica
-james
-jamie
-jan
-jane
-janet
-january
japan
-japanese
-jar
-jason
java
-javascript
-jay
jazz
-jc
-jd
-je
jean
jeans
jeep
-jeff
-jefferson
-jeffrey
-jelsoft
-jennifer
jenny
-jeremy
-jerry
jersey
-jerusalem
-jesse
-jessica
-jesus
-jet
jets
jewel
-jewellery
jewelry
-jewish
-jews
-jill
-jim
jimmy
-jj
-jm
-jo
-joan
-job
jobs
-joe
-joel
john
johnny
johns
-johnson
-johnston
join
joined
joining
@@ -4813,44 +3665,21 @@ joins
joint
joke
jokes
-jon
-jonathan
-jones
-jordan
-jose
-joseph
josh
-joshua
journal
journalism
journalist
journalists
journals
journey
-joy
-joyce
-jp
-jpeg
-jpg
-jr
-js
-juan
judge
judges
judgment
judicial
-judy
juice
-jul
-julia
-julian
-julie
-july
jump
jumping
-jun
junction
-june
jungle
junior
junk
@@ -4859,63 +3688,29 @@ jury
just
justice
justify
-justin
juvenile
-jvc
-k
-ka
-kai
-kansas
karaoke
-karen
-karl
karma
-kate
-kathy
-katie
-katrina
-kay
-kazakhstan
-kb
-kde
keen
keep
keeping
keeps
-keith
-kelkoo
-kelly
-ken
-kennedy
-kenneth
-kenny
keno
-kent
-kentucky
-kenya
kept
kernel
-kerry
-kevin
-key
keyboard
keyboards
keys
keyword
keywords
-kg
kick
-kid
kidney
kids
-kijiji
-kill
killed
killer
killing
kills
kilometers
-kim
kinase
kind
kinda
@@ -4923,16 +3718,9 @@ kinds
king
kingdom
kings
-kingston
-kirk
-kiss
-kissing
-kit
kitchen
kits
kitty
-klein
-km
knee
knew
knife
@@ -4945,31 +3733,14 @@ knock
know
knowing
knowledge
-knowledgestorm
known
knows
-ko
-kodak
-kong
-korea
-korean
-kruger
-ks
-kurt
-kuwait
-kw
-ky
-kyle
-l
-la
-lab
label
labeled
labels
labor
laboratories
laboratory
-labour
labs
lace
lack
@@ -4977,16 +3748,12 @@ ladder
laden
ladies
lady
-lafayette
-laid
lake
lakes
lamb
lambda
lamp
lamps
-lan
-lancaster
lance
land
landing
@@ -4995,62 +3762,39 @@ landscape
landscapes
lane
lanes
-lang
language
languages
-lanka
-lap
laptop
laptops
large
largely
larger
largest
-larry
-las
laser
last
lasting
-lat
late
lately
later
latest
latex
-latin
-latina
-latinas
-latino
latitude
latter
-latvia
-lauderdale
laugh
laughing
launch
launched
launches
laundry
-laura
-lauren
-law
lawn
-lawrence
laws
lawsuit
lawyer
lawyers
-lay
layer
layers
layout
lazy
-lb
-lbs
-lc
-lcd
-ld
-le
lead
leader
leaders
@@ -5071,14 +3815,9 @@ leather
leave
leaves
leaving
-lebanon
lecture
lectures
-led
-lee
-leeds
left
-leg
legacy
legal
legally
@@ -5092,62 +3831,37 @@ legitimate
legs
leisure
lemon
-len
lender
lenders
lending
length
lens
lenses
-leo
-leon
-leonard
-leone
-les
lesbian
-lesbians
-leslie
less
lesser
lesson
lessons
-let
lets
letter
letters
letting
-leu
level
levels
-levitra
levy
-lewis
-lexington
-lexmark
-lexus
-lf
-lg
-li
liabilities
liability
liable
-lib
liberal
-liberia
liberty
librarian
libraries
library
-libs
-licence
license
licensed
licenses
licensing
licking
-lid
-lie
-liechtenstein
lies
life
lifestyle
@@ -5165,7 +3879,6 @@ likelihood
likely
likes
likewise
-lil
lime
limit
limitation
@@ -5174,59 +3887,38 @@ limited
limiting
limits
limousines
-lincoln
-linda
-lindsay
line
linear
lined
lines
-lingerie
link
linked
linking
links
-linux
lion
lions
-lip
lips
liquid
-lisa
list
listed
listen
listening
listing
listings
-listprice
lists
-lit
lite
literacy
literally
literary
literature
-lithuania
litigation
little
live
-livecam
lived
liver
-liverpool
lives
-livesex
livestock
living
-liz
-ll
-llc
-lloyd
-llp
-lm
-ln
-lo
load
loaded
loading
@@ -5234,7 +3926,6 @@ loads
loan
loans
lobby
-loc
local
locale
locally
@@ -5249,21 +3940,15 @@ locking
locks
lodge
lodging
-log
-logan
logged
logging
logic
logical
login
logistics
-logitech
logo
logos
logs
-lol
-lolita
-london
lone
lonely
long
@@ -5274,29 +3959,20 @@ look
looked
looking
looks
-looksmart
lookup
loop
loops
loose
-lopez
lord
-los
lose
losing
loss
losses
lost
-lot
lots
lottery
lotus
-lou
loud
-louis
-louise
-louisiana
-louisville
lounge
love
loved
@@ -5305,52 +3981,24 @@ lover
lovers
loves
loving
-low
lower
lowest
lows
-lp
-ls
-lt
-ltd
-lu
-lucas
-lucia
luck
lucky
-lucy
luggage
-luis
-luke
lunch
lung
-luther
-luxembourg
luxury
-lycos
lying
-lynn
lyric
lyrics
-m
-ma
-mac
-macedonia
machine
machinery
machines
-macintosh
macro
-macromedia
-mad
-madagascar
made
-madison
madness
-madonna
-madrid
-mae
-mag
magazine
magazines
magic
@@ -5359,16 +4007,13 @@ magnet
magnetic
magnificent
magnitude
-mai
maiden
mail
mailed
mailing
mailman
mails
-mailto
main
-maine
mainland
mainly
mainstream
@@ -5385,29 +4030,20 @@ makers
makes
makeup
making
-malawi
-malaysia
-maldives
male
males
-mali
mall
malpractice
-malta
mambo
-man
manage
managed
management
manager
managers
managing
-manchester
mandate
mandatory
manga
-manhattan
-manitoba
manner
manor
manual
@@ -5419,29 +4055,16 @@ manufacturer
manufacturers
manufacturing
many
-map
maple
mapping
maps
-mar
marathon
marble
-marc
march
-marco
-marcus
-mardi
-margaret
margin
maria
-mariah
-marie
-marijuana
-marilyn
marina
marine
-mario
-marion
maritime
mark
marked
@@ -5455,29 +4078,18 @@ marking
marks
marriage
married
-marriott
mars
-marshall
mart
-martha
martial
martin
marvel
-mary
-maryland
-mas
mask
mason
mass
-massachusetts
massage
massive
master
-mastercard
masters
-masturbating
-masturbation
-mat
match
matched
matches
@@ -5492,27 +4104,14 @@ mathematics
mating
matrix
mats
-matt
matter
matters
-matthew
mattress
mature
-maui
-mauritius
-max
maximize
maximum
-may
maybe
mayor
-mazda
-mb
-mba
-mc
-mcdonald
-md
-me
meal
meals
mean
@@ -5532,7 +4131,6 @@ mechanical
mechanics
mechanism
mechanisms
-med
medal
media
median
@@ -5545,19 +4143,13 @@ medicine
medicines
medieval
meditation
-mediterranean
medium
-medline
meet
meeting
meetings
meets
meetup
mega
-mel
-melbourne
-melissa
-mem
member
members
membership
@@ -5567,17 +4159,12 @@ memorabilia
memorial
memories
memory
-memphis
-men
-mens
-ment
mental
mention
mentioned
mentor
menu
menus
-mercedes
merchandise
merchant
merchants
@@ -5589,69 +4176,41 @@ merge
merger
merit
merry
-mesa
-mesh
mess
message
messages
messaging
messenger
-met
meta
metabolism
metadata
metal
metallic
-metallica
metals
meter
meters
method
methodology
methods
-metres
metric
metro
metropolitan
-mexican
-mexico
-meyer
-mf
-mfg
-mg
-mh
-mhz
-mi
-mia
-miami
-mic
mice
-michael
-michel
-michelle
-michigan
micro
microphone
-microsoft
microwave
-mid
middle
midi
midlands
midnight
-midwest
might
mighty
migration
mike
-mil
-milan
mild
mile
mileage
miles
-milf
-milfhunter
milfs
military
milk
@@ -5660,11 +4219,7 @@ millennium
miller
million
millions
-mills
-milton
-milwaukee
mime
-min
mind
minds
mine
@@ -5681,12 +4236,8 @@ minister
ministers
ministries
ministry
-minneapolis
-minnesota
-minolta
minor
minority
-mins
mint
minus
minute
@@ -5702,34 +4253,19 @@ missile
missing
mission
missions
-mississippi
-missouri
mistake
mistakes
mistress
-mit
-mitchell
-mitsubishi
-mix
mixed
mixer
mixing
mixture
-mj
-ml
-mlb
-mls
-mm
-mn
-mo
mobile
mobiles
mobility
-mod
mode
model
modeling
-modelling
models
modem
modems
@@ -5742,58 +4278,38 @@ modification
modifications
modified
modify
-mods
modular
module
modules
moisture
mold
-moldova
molecular
molecules
-mom
moment
moments
momentum
-moms
-mon
-monaco
-monday
monetary
money
-mongolia
-monica
monitor
monitored
monitoring
monitors
monkey
mono
-monroe
monster
-montana
-monte
-montgomery
month
monthly
months
-montreal
mood
moon
-moore
moral
more
moreover
-morgan
morning
morocco
-morris
-morrison
mortality
mortgage
mortgages
-moscow
-moses
moss
most
mostly
@@ -5808,7 +4324,6 @@ motivation
motor
motorcycle
motorcycles
-motorola
motors
mount
mountain
@@ -5827,38 +4342,12 @@ moves
movie
movies
moving
-mozambique
-mozilla
-mp
-mpeg
-mpegs
-mpg
-mph
-mr
-mrna
-mrs
-ms
-msg
-msgid
-msgstr
-msie
-msn
-mt
-mtv
-mu
much
-mud
-mug
multi
multimedia
multiple
-mumbai
-munich
municipal
municipality
-murder
-murphy
-murray
muscle
muscles
museum
@@ -5867,81 +4356,43 @@ music
musical
musician
musicians
-muslim
-muslims
must
mustang
mutual
-muze
-mv
-mw
-mx
-my
-myanmar
-myers
myrtle
myself
-mysimon
-myspace
-mysql
mysterious
mystery
myth
-n
-na
nail
nails
-naked
-nam
name
named
namely
names
-namespace
-namibia
-nancy
-nano
-naples
narrative
narrow
-nasa
-nascar
-nasdaq
-nashville
nasty
-nat
-nathan
nation
national
nationally
nations
nationwide
native
-nato
natural
naturally
naturals
nature
naughty
-nav
naval
navigate
navigation
navigator
navy
-nb
-nba
-nbc
-nc
-ncaa
-nd
-ne
near
nearby
nearest
nearly
-nebraska
-nec
necessarily
necessary
necessity
@@ -5957,109 +4408,61 @@ negotiations
neighbor
neighborhood
neighbors
-neil
neither
nelson
-neo
neon
-nepal
nerve
nervous
nest
nested
-net
-netherlands
-netscape
network
networking
networks
neural
neutral
-nevada
never
nevertheless
-new
-newark
newbie
-newcastle
newer
newest
-newfoundland
newly
-newport
news
-newscom
newsletter
newsletters
newspaper
newspapers
newton
next
-nextel
-nfl
-ng
-nh
-nhl
-nhs
-ni
-niagara
-nicaragua
nice
-nicholas
nick
nickel
nickname
-nicole
-niger
-nigeria
night
nightlife
nightmare
nights
-nike
-nikon
-nil
nine
-nintendo
-nipple
-nipples
nirvana
-nissan
nitrogen
-nj
-nl
-nm
-nn
-no
noble
nobody
node
nodes
noise
-nokia
nominated
nomination
nominations
-non
none
nonprofit
noon
-nor
-norfolk
norm
normal
normally
-norman
north
northeast
northern
northwest
-norton
-norway
-norwegian
-nos
nose
-not
note
notebook
notebooks
@@ -6074,25 +4477,12 @@ notifications
notified
notify
notion
-notre
-nottingham
-nov
nova
novel
novels
novelty
-november
-now
nowhere
-np
-nr
-ns
-nsw
-nt
-ntsc
-nu
nuclear
-nude
nudist
nudity
nuke
@@ -6106,27 +4496,14 @@ nurse
nursery
nurses
nursing
-nut
nutrition
nutritional
nuts
-nutten
-nv
-nvidia
-nw
-ny
-nyc
nylon
-nz
-o
-oak
-oakland
oaks
oasis
-ob
obesity
obituaries
-obj
object
objective
objectives
@@ -6143,7 +4520,6 @@ obtained
obtaining
obvious
obviously
-oc
occasion
occasional
occasionally
@@ -6158,16 +4534,7 @@ occurrence
occurring
occurs
ocean
-oclc
-oct
-october
-odd
odds
-oe
-oecd
-oem
-of
-off
offense
offensive
offer
@@ -6186,43 +4553,21 @@ offline
offset
offshore
often
-og
-oh
-ohio
-oil
oils
-ok
okay
-oklahoma
-ol
-old
older
oldest
olive
-oliver
-olympic
-olympics
-olympus
-om
-omaha
-oman
omega
omissions
-on
once
-one
ones
ongoing
onion
online
only
-ons
-ontario
onto
-oo
-ooo
oops
-op
open
opened
opening
@@ -6247,7 +4592,6 @@ opportunity
opposed
opposite
opposition
-opt
optical
optics
optimal
@@ -6257,9 +4601,7 @@ optimum
option
optional
options
-or
oracle
-oral
orange
orbit
orchestra
@@ -6269,13 +4611,7 @@ ordering
orders
ordinance
ordinary
-oregon
-org
-organ
organic
-organisation
-organisations
-organised
organisms
organization
organizational
@@ -6284,8 +4620,6 @@ organize
organized
organizer
organizing
-orgasm
-orgy
oriental
orientation
oriented
@@ -6293,21 +4627,12 @@ origin
original
originally
origins
-orlando
-orleans
-os
-oscar
-ot
other
others
otherwise
-ottawa
-ou
ought
-our
ours
ourselves
-out
outcome
outcomes
outdoor
@@ -6332,8 +4657,6 @@ overhead
overnight
overseas
overview
-owen
-own
owned
owner
owners
@@ -6342,24 +4665,18 @@ owns
oxford
oxide
oxygen
-oz
ozone
-p
-pa
-pac
pace
pacific
pack
package
packages
packaging
-packard
packed
packet
packets
packing
packs
-pad
pads
page
pages
@@ -6373,37 +4690,24 @@ painting
paintings
pair
pairs
-pakistan
-pal
palace
pale
-palestine
-palestinian
palm
-palmer
-pam
-pamela
-pan
panama
-panasonic
panel
panels
panic
-panties
pants
pantyhose
paper
paperback
paperbacks
papers
-papua
-par
para
parade
paradise
paragraph
paragraphs
-paraguay
parallel
parameter
parameters
@@ -6412,10 +4716,8 @@ parent
parental
parenting
parents
-paris
parish
park
-parker
parking
parks
parliament
@@ -6442,8 +4744,6 @@ partnership
partnerships
parts
party
-pas
-paso
pass
passage
passed
@@ -6460,7 +4760,6 @@ past
pasta
paste
pastor
-pat
patch
patches
patent
@@ -6471,65 +4770,40 @@ paths
patient
patients
patio
-patricia
-patrick
patrol
pattern
patterns
-paul
pavilion
-paxil
-pay
payable
payday
paying
payment
payments
-paypal
payroll
pays
-pb
-pc
-pci
-pcs
-pct
-pd
-pda
-pdas
-pdf
-pdt
-pe
peace
peaceful
peak
pearl
peas
pediatric
-pee
peeing
peer
peers
-pen
penalties
penalty
pencil
pendant
pending
-penetration
penguin
peninsula
-penis
-penn
-pennsylvania
penny
pens
pension
pensions
-pentium
people
peoples
pepper
-per
perceived
percent
percentage
@@ -6551,16 +4825,12 @@ periodically
periods
peripheral
peripherals
-perl
-permalink
permanent
permission
permissions
permit
permits
permitted
-perry
-persian
persistent
person
personal
@@ -6572,22 +4842,12 @@ personnel
persons
perspective
perspectives
-perth
-peru
pest
-pet
-pete
peter
-petersburg
-peterson
petite
petition
petroleum
pets
-pf
-pg
-pgp
-ph
phantom
pharmaceutical
pharmaceuticals
@@ -6596,16 +4856,7 @@ pharmacology
pharmacy
phase
phases
-phd
phenomenon
-phentermine
-phi
-phil
-philadelphia
-philip
-philippines
-philips
-phillips
philosophy
phoenix
phone
@@ -6618,9 +4869,6 @@ photographic
photographs
photography
photos
-photoshop
-php
-phpbb
phrase
phrases
phys
@@ -6630,10 +4878,7 @@ physician
physicians
physics
physiology
-pi
piano
-pic
-pichunter
pick
picked
picking
@@ -6643,18 +4888,14 @@ picnic
pics
picture
pictures
-pie
piece
pieces
pierce
-pierre
-pig
pike
pill
pillow
pills
pilot
-pin
pine
ping
pink
@@ -6664,18 +4905,10 @@ pipe
pipeline
pipes
pirates
-piss
-pissing
-pit
pitch
-pittsburgh
-pix
pixel
pixels
pizza
-pj
-pk
-pl
place
placed
placement
@@ -6706,16 +4939,13 @@ platforms
platinum
play
playback
-playboy
played
player
players
playing
playlist
plays
-playstation
plaza
-plc
pleasant
please
pleased
@@ -6729,15 +4959,8 @@ plugin
plugins
plumbing
plus
-plymouth
-pm
-pmc
-pmid
-pn
-po
pocket
pockets
-pod
podcast
podcasts
poem
@@ -6749,9 +4972,7 @@ pointed
pointer
pointing
points
-pokemon
poker
-poland
polar
pole
police
@@ -6771,22 +4992,16 @@ polyester
polymer
polyphonic
pond
-pontiac
pool
pools
poor
-pop
pope
popular
popularity
population
populations
-por
porcelain
pork
-porn
-porno
-porsche
port
portable
portal
@@ -6794,14 +5009,9 @@ porter
portfolio
portion
portions
-portland
portrait
portraits
ports
-portsmouth
-portugal
-portuguese
-pos
pose
posing
position
@@ -6824,9 +5034,7 @@ poster
posters
posting
postings
-postposted
posts
-pot
potato
potatoes
potential
@@ -6839,29 +5047,20 @@ pounds
pour
poverty
powder
-powell
power
powered
powerful
-powerpoint
powers
-powerseller
-pp
-ppc
-ppm
-pr
practical
practice
practices
practitioner
practitioners
-prague
prairie
praise
pray
prayer
prayers
-pre
preceding
precious
precipitation
@@ -6910,9 +5109,7 @@ press
pressed
pressing
pressure
-preston
pretty
-prev
prevent
preventing
prevention
@@ -6931,7 +5128,6 @@ primary
prime
prince
princess
-princeton
principal
principle
principles
@@ -6952,16 +5148,13 @@ privacy
private
privilege
privileges
-prix
prize
prizes
-pro
probability
probably
probe
problem
problems
-proc
procedure
procedures
proceed
@@ -6997,10 +5190,8 @@ profiles
profit
profits
program
-programme
programmer
programmers
-programmes
programming
programs
progress
@@ -7028,7 +5219,6 @@ promotions
prompt
promptly
proof
-propecia
proper
properly
properties
@@ -7046,8 +5236,6 @@ prospect
prospective
prospects
prostate
-prostores
-prot
protect
protected
protecting
@@ -7077,18 +5265,9 @@ provincial
provision
provisions
proxy
-prozac
-ps
-psi
-psp
-pst
psychiatry
psychological
psychology
-pt
-pts
-pty
-pub
public
publication
publications
@@ -7099,9 +5278,7 @@ published
publisher
publishers
publishing
-pubmed
pubs
-puerto
pull
pulled
pulling
@@ -7128,20 +5305,11 @@ pursuit
push
pushed
pushing
-pussy
-put
puts
putting
puzzle
puzzles
-pvc
python
-q
-qatar
-qc
-qld
-qt
-qty
quad
qualification
qualifications
@@ -7157,11 +5325,8 @@ quantum
quarter
quarterly
quarters
-que
-quebec
queen
queens
-queensland
queries
query
quest
@@ -7169,7 +5334,6 @@ question
questionnaire
questions
queue
-qui
quick
quickly
quiet
@@ -7182,12 +5346,9 @@ quotations
quote
quoted
quotes
-r
-ra
rabbit
race
races
-rachel
racial
racing
rack
@@ -7209,11 +5370,7 @@ raise
raised
raises
raising
-raleigh
rally
-ralph
-ram
-ran
ranch
rand
random
@@ -7227,14 +5384,11 @@ ranked
ranking
rankings
ranks
-rap
-rape
rapid
rapidly
rapids
rare
rarely
-rat
rate
rated
rates
@@ -7245,15 +5399,7 @@ ratio
rational
ratios
rats
-raw
-ray
-raymond
rays
-rb
-rc
-rca
-rd
-re
reach
reached
reaches
@@ -7275,8 +5421,6 @@ realize
realized
really
realm
-realtor
-realtors
realty
rear
reason
@@ -7286,10 +5430,8 @@ reasoning
reasons
rebate
rebates
-rebecca
rebel
rebound
-rec
recall
receipt
receive
@@ -7307,7 +5449,6 @@ recipe
recipes
recipient
recipients
-recognised
recognition
recognize
recognized
@@ -7332,7 +5473,6 @@ recreational
recruiting
recruitment
recycling
-red
redeem
redhead
reduce
@@ -7341,10 +5481,7 @@ reduces
reducing
reduction
reductions
-reed
-reef
reel
-ref
refer
reference
referenced
@@ -7371,7 +5508,6 @@ refund
refurbished
refuse
refused
-reg
regard
regarded
regarding
@@ -7396,10 +5532,8 @@ regulations
regulatory
rehab
rehabilitation
-reid
reject
rejected
-rel
relate
related
relates
@@ -7458,12 +5592,9 @@ rendering
renew
renewable
renewal
-reno
rent
rental
rentals
-rentcom
-rep
repair
repairs
repeat
@@ -7512,7 +5643,6 @@ requirement
requirements
requires
requiring
-res
rescue
research
researcher
@@ -7590,8 +5720,6 @@ returned
returning
returns
reunion
-reuters
-rev
reveal
revealed
reveals
@@ -7612,25 +5740,11 @@ revolution
revolutionary
reward
rewards
-reynolds
-rf
-rfc
-rg
-rh
-rhode
rhythm
-ri
ribbon
-rica
rice
rich
-richard
-richards
-richardson
-richmond
rick
-rico
-rid
ride
rider
riders
@@ -7639,13 +5753,10 @@ ridge
riding
right
rights
-rim
ring
rings
ringtone
ringtones
-rio
-rip
ripe
rise
rising
@@ -7654,32 +5765,18 @@ risks
river
rivers
riverside
-rj
-rl
-rm
-rn
-rna
-ro
road
roads
-rob
-robert
-roberts
-robertson
robin
-robinson
robot
robots
robust
-rochester
rock
rocket
rocks
rocky
-rod
roger
rogers
-roland
role
roles
roll
@@ -7687,14 +5784,9 @@ rolled
roller
rolling
rolls
-rom
roman
romance
-romania
romantic
-rome
-ron
-ronald
roof
room
roommate
@@ -7703,10 +5795,8 @@ rooms
root
roots
rope
-rosa
rose
roses
-ross
roster
rotary
rotation
@@ -7724,59 +5814,30 @@ routine
routines
routing
rover
-row
rows
-roy
royal
royalty
-rp
-rpg
-rpm
-rr
-rrp
-rs
-rss
-rt
-ru
rubber
ruby
-rug
rugby
rugs
rule
ruled
rules
ruling
-run
runner
running
runs
-runtime
rural
rush
-russell
-russia
-russian
-ruth
-rv
-rw
-rwanda
-rx
-ryan
-s
-sa
-sacramento
sacred
sacrifice
-sad
-saddam
safari
safe
safely
safer
safety
sage
-sagem
said
sail
sailing
@@ -7787,64 +5848,38 @@ salad
salaries
salary
sale
-salem
sales
sally
salmon
salon
salt
-salvador
salvation
-sam
samba
same
-samoa
sample
samples
sampling
-samsung
-samuel
-san
sand
-sandra
sandwich
sandy
sans
-santa
-sanyo
-sao
-sap
sapphire
-sara
-sarah
-sas
-saskatchewan
-sat
satellite
satin
satisfaction
satisfactory
satisfied
satisfy
-saturday
-saturn
sauce
-saudi
savage
-savannah
save
saved
saver
saves
saving
savings
-saw
-say
saying
says
-sb
-sbjct
-sc
scale
scales
scan
@@ -7871,7 +5906,6 @@ scholarship
scholarships
school
schools
-sci
science
sciences
scientific
@@ -7883,10 +5917,6 @@ score
scored
scores
scoring
-scotia
-scotland
-scott
-scottish
scout
scratch
screen
@@ -7896,23 +5926,16 @@ screensaver
screensavers
screenshot
screenshots
-screw
script
scripting
scripts
scroll
-scsi
scuba
sculpture
-sd
-se
-sea
seafood
seal
sealed
-sean
search
-searchcom
searched
searches
searching
@@ -7923,8 +5946,6 @@ seasons
seat
seating
seats
-seattle
-sec
second
secondary
seconds
@@ -7941,7 +5962,6 @@ secured
securely
securities
security
-see
seed
seeds
seeing
@@ -7954,8 +5974,6 @@ seem
seemed
seems
seen
-sees
-sega
segment
segments
select
@@ -7975,7 +5993,6 @@ semi
semiconductor
seminar
seminars
-sen
senate
senator
senators
@@ -7983,7 +6000,6 @@ send
sender
sending
sends
-senegal
senior
seniors
sense
@@ -7994,19 +6010,12 @@ sensors
sent
sentence
sentences
-seo
-sep
separate
separated
separately
separation
-sept
-september
-seq
sequence
sequences
-ser
-serbia
serial
series
serious
@@ -8022,7 +6031,6 @@ services
serving
session
sessions
-set
sets
setting
settings
@@ -8035,28 +6043,18 @@ seventh
several
severe
sewing
-sex
-sexcam
-sexo
-sexual
sexuality
sexually
sexy
-sf
-sg
-sh
shade
shades
shadow
shadows
shaft
shake
-shakespeare
-shakira
shall
shame
shanghai
-shannon
shape
shaped
shapes
@@ -8067,25 +6065,18 @@ shares
shareware
sharing
shark
-sharon
sharp
shaved
-shaw
-she
shed
sheep
sheer
sheet
sheets
-sheffield
shelf
shell
shelter
-shemale
-shemales
shepherd
sheriff
-sherman
shield
shift
shine
@@ -8097,7 +6088,6 @@ shipping
ships
shirt
shirts
-shit
shock
shoe
shoes
@@ -8105,12 +6095,9 @@ shoot
shooting
shop
shopper
-shoppercom
shoppers
shopping
-shoppingcom
shops
-shopzilla
shore
short
shortcuts
@@ -8129,18 +6116,12 @@ showers
showing
shown
shows
-showtimes
shut
shuttle
-si
-sic
sick
side
sides
-sie
-siemens
sierra
-sig
sight
sigma
sign
@@ -8154,41 +6135,30 @@ significant
significantly
signing
signs
-signup
silence
silent
silicon
silk
silly
silver
-sim
similar
similarly
-simon
simple
simplified
simply
-simpson
-simpsons
sims
simulation
simulations
simultaneously
-sin
since
sing
-singapore
singer
-singh
singing
single
singles
sink
-sip
-sir
sister
sisters
-sit
site
sitemap
sites
@@ -8196,14 +6166,11 @@ sitting
situated
situation
situations
-six
sixth
size
sized
sizes
-sk
skating
-ski
skiing
skill
skilled
@@ -8213,11 +6180,6 @@ skins
skip
skirt
skirts
-sku
-sky
-skype
-sl
-slave
sleep
sleeping
sleeps
@@ -8229,40 +6191,25 @@ slight
slightly
slim
slip
-slope
slot
slots
-slovak
-slovakia
-slovenia
slow
slowly
-slut
-sluts
-sm
small
smaller
smart
smell
smile
-smilies
smith
-smithsonian
smoke
smoking
smooth
-sms
-smtp
-sn
snake
snap
snapshot
snow
snowboard
-so
-soa
soap
-soc
soccer
social
societies
@@ -8276,9 +6223,7 @@ soft
softball
software
soil
-sol
solar
-solaris
sold
soldier
soldiers
@@ -8286,14 +6231,11 @@ sole
solely
solid
solo
-solomon
solution
solutions
solve
solved
solving
-soma
-somalia
some
somebody
somehow
@@ -8303,12 +6245,10 @@ something
sometimes
somewhat
somewhere
-son
song
songs
sonic
sons
-sony
soon
soonest
sophisticated
@@ -8326,23 +6266,15 @@ soup
source
sources
south
-southampton
southeast
southern
southwest
soviet
-sox
-sp
-spa
space
spaces
-spain
spam
span
-spanish
-spank
spanking
-sparc
spare
spas
spatial
@@ -8380,11 +6312,9 @@ speed
speeds
spell
spelling
-spencer
spend
spending
spent
-sperm
sphere
spice
spider
@@ -8414,24 +6344,13 @@ spray
spread
spreading
spring
-springer
-springfield
springs
sprint
-spy
spyware
-sq
-sql
squad
square
squirt
squirting
-sr
-src
-sri
-ss
-ssl
-st
stability
stable
stack
@@ -8444,19 +6363,15 @@ stainless
stakeholders
stamp
stamps
-stan
stand
standard
standards
standing
standings
stands
-stanford
-stanley
star
starring
stars
-starsmerchant
start
started
starter
@@ -8486,8 +6401,6 @@ stay
stayed
staying
stays
-std
-ste
steady
steal
steam
@@ -8495,15 +6408,9 @@ steel
steering
stem
step
-stephanie
-stephen
steps
stereo
sterling
-steve
-steven
-stevens
-stewart
stick
sticker
stickers
@@ -8511,7 +6418,6 @@ sticks
sticky
still
stock
-stockholm
stockings
stocks
stolen
@@ -8530,7 +6436,6 @@ stores
stories
storm
story
-str
straight
strain
strand
@@ -8558,21 +6463,17 @@ strikes
striking
string
strings
-strip
stripes
strips
-stroke
strong
stronger
strongly
struck
-struct
structural
structure
structured
structures
struggle
-stuart
stuck
stud
student
@@ -8586,20 +6487,15 @@ studying
stuff
stuffed
stunning
-stupid
style
styles
stylish
stylus
-su
-sub
-subaru
subcommittee
subdivision
subject
subjects
sublime
-sublimedirectory
submission
submissions
submit
@@ -8627,13 +6523,9 @@ success
successful
successfully
such
-suck
-sucking
sucks
-sudan
sudden
suddenly
-sue
suffer
suffered
suffering
@@ -8653,14 +6545,10 @@ suite
suited
suites
suits
-sullivan
-sum
summaries
summary
summer
summit
-sun
-sunday
sunglasses
sunny
sunrise
@@ -8689,7 +6577,6 @@ supports
suppose
supposed
supreme
-sur
sure
surely
surf
@@ -8717,37 +6604,25 @@ survival
survive
survivor
survivors
-susan
-suse
suspect
suspected
suspended
suspension
-sussex
sustainability
sustainable
sustained
-suzuki
-sv
-sw
swap
-sweden
-swedish
sweet
swift
swim
swimming
swing
swingers
-swiss
switch
switched
switches
switching
-switzerland
sword
-sydney
-symantec
symbol
symbols
sympathy
@@ -8762,15 +6637,9 @@ synopsis
syntax
synthesis
synthetic
-syracuse
-syria
-sys
system
systematic
systems
-t
-ta
-tab
table
tables
tablet
@@ -8778,12 +6647,9 @@ tablets
tabs
tackle
tactics
-tag
tagged
tags
-tahoe
tail
-taiwan
take
taken
takes
@@ -8797,16 +6663,10 @@ talked
talking
talks
tall
-tamil
-tampa
-tan
tank
tanks
-tanzania
-tap
tape
tapes
-tar
target
targeted
targets
@@ -8816,18 +6676,9 @@ tasks
taste
tattoo
taught
-tax
taxation
taxes
taxi
-taylor
-tb
-tba
-tc
-tcp
-td
-te
-tea
teach
teacher
teachers
@@ -8846,17 +6697,11 @@ techno
technological
technologies
technology
-techrepublic
-ted
teddy
-tee
teen
teenage
teens
teeth
-tel
-telecharger
-telecom
telecommunications
telephone
telephony
@@ -8875,11 +6720,9 @@ temple
temporal
temporarily
temporary
-ten
tenant
tend
tender
-tennessee
tennis
tension
tent
@@ -8906,8 +6749,6 @@ testimonials
testimony
testing
tests
-tex
-texas
text
textbook
textbooks
@@ -8915,25 +6756,14 @@ textile
textiles
texts
texture
-tf
-tft
-tgp
-th
-thai
-thailand
than
thank
thanks
thanksgiving
that
-thats
-the
theater
theaters
-theatre
-thee
theft
-thehun
their
them
theme
@@ -8965,14 +6795,10 @@ thing
things
think
thinking
-thinkpad
thinks
third
thirty
this
-thomas
-thompson
-thomson
thong
thongs
thorough
@@ -8992,7 +6818,6 @@ threatened
threatening
threats
three
-threesome
threshold
thriller
throat
@@ -9002,34 +6827,23 @@ throw
throwing
thrown
throws
-thru
-thu
thumb
thumbnail
thumbnails
thumbs
-thumbzilla
thunder
-thursday
thus
-thy
-ti
ticket
tickets
tide
-tie
tied
tier
ties
-tiffany
tiger
tigers
tight
-til
tile
tiles
-till
-tim
timber
time
timeline
@@ -9038,47 +6852,29 @@ timer
times
timing
timothy
-tin
tiny
-tion
-tions
-tip
tips
tire
tired
tires
tissue
-tit
titanium
titans
title
titled
titles
-tits
-titten
-tm
-tmp
-tn
-to
tobacco
-tobago
today
-todd
toddler
-toe
together
toilet
token
-tokyo
told
tolerance
toll
-tom
tomato
tomatoes
-tommy
tomorrow
-ton
tone
toner
tones
@@ -9086,7 +6882,6 @@ tongue
tonight
tons
tony
-too
took
tool
toolbar
@@ -9094,14 +6889,11 @@ toolbox
toolkit
tools
tooth
-top
topic
topics
topless
tops
-toronto
torture
-toshiba
total
totally
totals
@@ -9123,22 +6915,15 @@ town
towns
township
toxic
-toy
-toyota
toys
-tp
-tr
trace
track
-trackback
-trackbacks
tracked
tracker
tracking
tracks
tract
tractor
-tracy
trade
trademark
trademarks
@@ -9160,17 +6945,13 @@ trainer
trainers
training
trains
-tramadol
trance
-tranny
trans
transaction
transactions
transcript
transcription
transcripts
-transexual
-transexuales
transfer
transferred
transfers
@@ -9190,7 +6971,6 @@ transparency
transparent
transport
transportation
-transsexual
trap
trash
trauma
@@ -9198,11 +6978,7 @@ travel
traveler
travelers
traveling
-traveller
-travelling
travels
-travesti
-travis
tray
treasure
treasurer
@@ -9217,12 +6993,9 @@ treaty
tree
trees
trek
-trembl
tremendous
trend
trends
-treo
-tri
trial
trials
triangle
@@ -9238,11 +7011,9 @@ tried
tries
trigger
trim
-trinidad
trinity
trio
trip
-tripadvisor
triple
trips
triumph
@@ -9264,30 +7035,19 @@ trustee
trustees
trusts
truth
-try
trying
-ts
tsunami
-tt
-tu
-tub
tube
tubes
-tucson
-tue
-tuesday
tuition
-tulsa
tumor
tune
tuner
tunes
tuning
-tunisia
tunnel
turbo
turkey
-turkish
turn
turned
turner
@@ -9296,49 +7056,27 @@ turns
turtle
tutorial
tutorials
-tv
-tvcom
-tvs
twelve
twenty
twice
-twiki
twin
twinks
twins
twist
twisted
-two
-tx
-ty
-tyler
type
types
typical
typically
typing
-u
-uc
-uganda
-ugly
-uh
-ui
-uk
-ukraine
-ul
ultimate
ultimately
ultra
-ultram
-um
-un
-una
unable
unauthorized
unavailable
uncertainty
uncle
-und
undefined
under
undergraduate
@@ -9351,16 +7089,13 @@ undertake
undertaken
underwear
undo
-une
unemployment
unexpected
unfortunately
-uni
unified
uniform
union
unions
-uniprotkb
unique
unit
united
@@ -9371,7 +7106,6 @@ universal
universe
universities
university
-unix
unknown
unless
unlike
@@ -9386,8 +7120,6 @@ untitled
unto
unusual
unwrap
-up
-upc
upcoming
update
updated
@@ -9400,64 +7132,33 @@ upload
uploaded
upon
upper
-ups
upset
-upskirt
-upskirts
-ur
urban
urge
urgent
-uri
-url
-urls
-uruguay
-urw
-us
-usa
usage
-usb
-usc
-usd
-usda
-use
used
useful
user
username
users
uses
-usgs
using
-usps
-usr
usual
usually
-ut
-utah
-utc
utilities
utility
utilization
utilize
-utils
-uv
-uw
-uzbekistan
-v
-va
vacancies
vacation
vacations
vaccine
vacuum
-vagina
-val
valentine
valid
validation
validity
-valium
valley
valuable
valuation
@@ -9467,10 +7168,7 @@ values
valve
valves
vampire
-van
-vancouver
vanilla
-var
variable
variables
variance
@@ -9483,16 +7181,8 @@ various
vary
varying
vast
-vat
-vatican
vault
-vb
-vbulletin
-vc
-vcr
-ve
vector
-vegas
vegetable
vegetables
vegetarian
@@ -9503,21 +7193,14 @@ velocity
velvet
vendor
vendors
-venezuela
-venice
venture
ventures
venue
venues
-ver
verbal
-verde
verification
verified
verify
-verizon
-vermont
-vernon
verse
version
versions
@@ -9525,49 +7208,32 @@ versus
vertex
vertical
very
-verzeichnis
vessel
vessels
veteran
veterans
veterinary
-vg
-vhs
-vi
-via
-viagra
vibrator
vibrators
-vic
vice
victim
victims
victor
-victoria
-victorian
victory
-vid
video
videos
-vids
-vienna
-vietnam
-vietnamese
view
viewed
viewer
viewers
viewing
-viewpicture
views
-vii
viii
viking
villa
village
villages
villas
-vincent
vintage
vinyl
violation
@@ -9575,10 +7241,7 @@ violations
violence
violent
violin
-vip
viral
-virgin
-virginia
virtual
virtually
virtue
@@ -9606,9 +7269,6 @@ vocational
voice
voices
void
-voip
-vol
-volkswagen
volleyball
volt
voltage
@@ -9617,34 +7277,20 @@ volumes
voluntary
volunteer
volunteers
-volvo
-von
vote
voted
voters
votes
voting
-voyeur
-voyeurweb
-voyuer
-vp
-vpn
-vs
-vsnet
-vt
vulnerability
vulnerable
-w
-wa
wage
wages
-wagner
wagon
wait
waiting
waiver
wake
-wal
wales
walk
walked
@@ -9652,30 +7298,22 @@ walker
walking
walks
wall
-wallace
wallet
wallpaper
wallpapers
walls
walnut
-walt
-walter
-wan
-wang
wanna
want
wanted
wanting
wants
-war
-warcraft
ward
ware
warehouse
warm
warming
warned
-warner
warning
warnings
warrant
@@ -9685,11 +7323,9 @@ warren
warrior
warriors
wars
-was
wash
washer
washing
-washington
waste
watch
watched
@@ -9699,19 +7335,11 @@ water
waterproof
waters
watershed
-watson
watt
watts
-wav
wave
waves
-wax
-way
-wayne
ways
-wb
-wc
-we
weak
wealth
weapon
@@ -9719,7 +7347,6 @@ weapons
wear
wearing
weather
-web
webcam
webcams
webcast
@@ -9727,16 +7354,10 @@ weblog
weblogs
webmaster
webmasters
-webpage
-webshots
website
websites
-webster
-wed
wedding
weddings
-wednesday
-weed
week
weekend
weekends
@@ -9754,14 +7375,10 @@ wellington
wellness
wells
welsh
-wendy
went
were
-wesley
west
western
-westminster
-wet
whale
what
whatever
@@ -9779,15 +7396,10 @@ which
while
whilst
white
-who
whole
wholesale
whom
-whore
whose
-why
-wi
-wichita
wicked
wide
widely
@@ -9796,25 +7408,17 @@ widescreen
widespread
width
wife
-wifi
wiki
-wikipedia
wild
wilderness
wildlife
-wiley
will
-william
-williams
willing
willow
-wilson
-win
wind
window
windows
winds
-windsor
wine
wines
wing
@@ -9823,20 +7427,16 @@ winner
winners
winning
wins
-winston
winter
wire
wired
wireless
wires
wiring
-wisconsin
wisdom
wise
wish
wishes
-wishlist
-wit
witch
with
withdrawal
@@ -9846,14 +7446,9 @@ witness
witnesses
wives
wizard
-wm
-wma
-wn
wolf
woman
women
-womens
-won
wonder
wonderful
wondering
@@ -9861,9 +7456,7 @@ wood
wooden
woods
wool
-worcester
word
-wordpress
words
work
worked
@@ -9879,9 +7472,7 @@ workshop
workshops
workstation
world
-worldcat
worlds
-worldsex
worldwide
worm
worn
@@ -9894,9 +7485,6 @@ worth
worthy
would
wound
-wow
-wp
-wr
wrap
wrapped
wrapping
@@ -9912,89 +7500,32 @@ writings
written
wrong
wrote
-ws
-wt
-wto
-wu
-wv
-ww
-www
-wx
-wy
-wyoming
-x
-xanax
-xbox
xerox
-xhtml
-xi
-xl
-xml
-xnxx
-xp
-xx
-xxx
-y
-ya
yacht
yahoo
-yale
-yamaha
yang
yard
yards
yarn
-ye
-yea
yeah
year
yearly
years
yeast
yellow
-yemen
-yen
-yes
yesterday
-yet
yield
yields
-yn
-yo
yoga
-york
-yorkshire
-you
young
younger
your
yours
yourself
youth
-yr
-yrs
-yu
-yugoslavia
-yukon
-z
-za
-zambia
-zdnet
-zealand
-zen
zero
-zimbabwe
zinc
-zip
-zoloft
zone
zones
zoning
-zoo
zoom
-zoophilia
-zope
-zshops
-zu
-zum
-zus
diff --git a/src/test/java/AppTest.java b/src/test/java/AppTest.java
index 7523b8d..04f9bb3 100644
--- a/src/test/java/AppTest.java
+++ b/src/test/java/AppTest.java
@@ -1,37 +1,38 @@
package uta.cse3310;
-import static org.junit.Assert.*;
-import org.junit.*;
-
-public class AppTest {
-
- private App app;
-
- @Before
- public void setUp() {
- app = new App(50000); // Choose a suitable port for testing
- }
-
- @Test
- public void testConstructor() {
- // Ensure the App instance is created properly
- assertNotNull(app);
- }
-
- @Test
- public void testOnOpen() {
- // Simulate connection opened and check if server sends correct response
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+/**
+ * Unit test for simple App.
+ */
+public class AppTest
+ extends TestCase
+{
+ /**
+ * Create the test case
+ *
+ * @param testName name of the test case
+ */
+ public AppTest( String testName )
+ {
+ super( testName );
}
- @Test
- public void testOnClose() {
- // Simulate connection closed and verify server's behavior
+ /**
+ * @return the suite of tests being tested
+ */
+ public static Test suite()
+ {
+ return new TestSuite( AppTest.class );
}
- @Test
- public void testOnMessage() {
- // Simulate receiving different types of messages and observe server's behavior
+ /**
+ * Rigourous Test :-)
+ */
+ public void testApp()
+ {
+ assertTrue( true );
}
-
- // Add more tests for other public methods as needed
}
diff --git a/src/test/java/ColorTest.java b/src/test/java/ColorTest.java
index 69a08ef..d2c13ff 100644
--- a/src/test/java/ColorTest.java
+++ b/src/test/java/ColorTest.java
@@ -45,4 +45,4 @@ public void testPickColor_AfterPickingAllColors() {
assertTrue(colors_list.isEmpty());
assertEquals(colors_list.size(), colors_taken.size());
}
-}
\ No newline at end of file
+}
diff --git a/src/test/java/CoordinateTest.java b/src/test/java/CoordinateTest.java
deleted file mode 100644
index c61bc16..0000000
--- a/src/test/java/CoordinateTest.java
+++ /dev/null
@@ -1,8 +0,0 @@
-package uta.cse3310;
-
-import static org.junit.Assert.*;
-import org.junit.*;
-
-public class CoordinateTest {
-
-}
diff --git a/src/test/java/Create_GridTest.java b/src/test/java/Create_GridTest.java
index 8af53a0..25bdb9a 100644
--- a/src/test/java/Create_GridTest.java
+++ b/src/test/java/Create_GridTest.java
@@ -1,30 +1,54 @@
package uta.cse3310;
import org.junit.jupiter.api.Test;
-
import java.io.File;
-
import static org.junit.jupiter.api.Assertions.*;
class Create_GridTest {
@Test
void testInitializeBoard() {
- Create_Grid grid = new Create_Grid(10, 10, 0.5);
- assertTrue(grid.initializeBoard("files.txt"));
+ Create_Grid grid = new Create_Grid(20, 20, 0.67);
+ assertTrue(grid.initializeBoard("files.txt"));
+
}
@Test
void testPopulateBoardWithWords() {
- Create_Grid grid = new Create_Grid(10, 10, 0.5);
+ Create_Grid grid = new Create_Grid(20, 20, 0.67);
assertTrue(grid.populateBoardWithWords());
- // Add more assertions as needed
+
}
@Test
void testPlaceWord() {
- Create_Grid grid = new Create_Grid(10, 10, 0.5);
+ Create_Grid grid = new Create_Grid(20, 20, 0.67);
assertTrue(grid.placeWord("TEST", 0, 0, 0)); // Assuming "TEST" is a valid word for testing
- // Add more assertions as needed
+
+ }
+
+
+
+ @Test
+ void testInvalidPlaceWord() {
+ Create_Grid grid = new Create_Grid(10, 10, 0.5);
+ // Test placing word out of bounds horizontally
+ assertFalse(grid.placeWord("TEST", 9, 9, 0));
+ // Test placing word out of bounds vertically
+ assertFalse(grid.placeWord("TEST", 9, 9, 1));
+ assertFalse(grid.placeWord("TEST", 0, 9, 2));
+ // Test placing word out of bounds diagonally
+ assertFalse(grid.placeWord("TEST", 9, 9, 3));
+ assertFalse(grid.placeWord("TEST", 9, 0, 4));
+
}
+
+ @Test
+ void testInvalidInitializeBoard() {
+ Create_Grid grid = new Create_Grid(10, 10, 0.5);
+ assertFalse(grid.initializeBoard("non_existing_file.txt")); // Assuming "non_existing_file.txt" doesn't exist
+
+ }
+
}
+
diff --git a/src/test/java/GameTest.java b/src/test/java/GameTest.java
index 62e0a4e..3a05398 100644
--- a/src/test/java/GameTest.java
+++ b/src/test/java/GameTest.java
@@ -8,22 +8,25 @@ public class GameTest {
@Test
public void testConstructor() {
- Game game = new Game(1, 1);
+
+ Game game = new Game(1, 20);
+ game.test_grid = 20;
assertNotNull(game.ID);
assertNotNull(game.identified_words);
assertNotNull(game.grid);
- assertEquals(20, game.grid.length);
- assertEquals(20, game.grid[0].length);
+ assertEquals(game.test_grid, game.grid.length);
+ assertEquals(game.test_grid, game.grid[0].length);
}
@Test
public void testCreateGrid() {
- Game game = new Game(1, 1);
+ Game game = new Game(1, 20);
+ game.test_grid = 20;
char[][] grid = game.createGrid();
- assertEquals(20, grid.length);
- assertEquals(20, grid[0].length);
- for (int i = 0; i < 20; i++) {
- for (int j = 0; j < 20; j++) {
+ assertEquals(game.test_grid, grid.length);
+ assertEquals(game.test_grid, grid[0].length);
+ for (int i = 0; i < game.test_grid; i++) {
+ for (int j = 0; j < game.test_grid; j++) {
assertTrue(Character.isLetter(grid[i][j]));
}
}
@@ -31,7 +34,8 @@ public void testCreateGrid() {
@Test
public void testIsValidWord() {
- Game game = new Game(1, 1);
+ Game game = new Game(1, 20);
+ game.test_grid = 20;
Leaderboard lb = new Leaderboard();
ArrayList indexLetters = new ArrayList<>();
// Add some coordinates to the list
@@ -42,7 +46,8 @@ public void testIsValidWord() {
@Test
public void testIsValidOrientation() {
- Game game = new Game(1, 1);
+ Game game = new Game(1, 20);
+ game.test_grid = 20;
ArrayList indexLetters = new ArrayList<>();
// Add some coordinates to the list
indexLetters.add(new Coordinate(1, 2));
@@ -72,4 +77,51 @@ public void testIsValidOrientation() {
assertEquals(i + 2, selectedLetters.get(i).col);
}
}
+
+ @Test
+ public void testGameOver() {
+ Game game = new Game(1, 20);
+ game.test_grid = 20;
+ Leaderboard lb = new Leaderboard();
+ ArrayList names_winners = game.GameOver(true, lb);
+ assertEquals(0, names_winners.size());
+
+ names_winners = game.GameOver(false, lb);
+ assertEquals(0, names_winners.size());
+ }
+
+ @Test
+ public void testAllMethods() {
+ Game game = new Game(1, 20);
+ game.test_grid = 20;
+ Leaderboard lb = new Leaderboard();
+
+ // Test createGrid
+ char[][] grid = game.createGrid();
+ assertEquals(game.test_grid, grid.length);
+ assertEquals(game.test_grid, grid[0].length);
+
+ // Test isValidWord
+ ArrayList indexLetters = new ArrayList<>();
+ // Add some coordinates to the list
+ indexLetters.add(new Coordinate(1, 2));
+ indexLetters.add(new Coordinate(1, 3));
+ assertTrue(game.isValidWord(indexLetters, "Test", lb));
+
+ // Test isValidOrientation
+ indexLetters.clear();
+ // Add some coordinates to the list
+ indexLetters.add(new Coordinate(1, 2));
+ indexLetters.add(new Coordinate(3, 2)); // Vertical orientation
+ ArrayList selectedLetters = game.isValidOrientation(indexLetters);
+ assertEquals(3, selectedLetters.size());
+ for (Coordinate coord : selectedLetters) {
+ assertEquals(2, coord.col);
+ }
+
+ // Test GameOver
+ ArrayList names_winners = game.GameOver(false, lb);
+ assertEquals(0, names_winners.size());
+ }
}
+
diff --git a/src/test/java/LeaderboardTest.java b/src/test/java/LeaderboardTest.java
index df6303b..dd90bc5 100644
--- a/src/test/java/LeaderboardTest.java
+++ b/src/test/java/LeaderboardTest.java
@@ -34,6 +34,18 @@ public void testRemove() {
assertEquals(1, lb.LB.size());
assertNull(lb.LB.get("John"));
}
+
+ @Test
+ public void testUpdate() {
+ Leaderboard lb = new Leaderboard();
+ lb.add("John", 100);
+ lb.add("Jane", 50);
+ lb.add("Bob", 200);
+
+ lb.update("Jane",60);
+ assertEquals(110,(int) lb.LB.get("Jane"));
+
+ }
@Test
public void testRemoveNullHandle() {
@@ -53,4 +65,4 @@ public void testAddDuplicateHandle() {
assertEquals(1, lb.LB.size());
assertEquals(200, (int) lb.LB.get("John"));
}
-}
\ No newline at end of file
+}
diff --git a/src/test/java/UserEventTest.java b/src/test/java/UserEventTest.java
deleted file mode 100644
index 0229d91..0000000
--- a/src/test/java/UserEventTest.java
+++ /dev/null
@@ -1,8 +0,0 @@
-package uta.cse3310;
-
-import static org.junit.Assert.*;
-import org.junit.*;
-
-public class UserEventTest {
-
-}