From: Huibo SHI Date: Tue, 18 Mar 2014 17:48:29 +0000 (+0100) Subject: nettoyer les commentaires X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=commitdiff_plain;h=72880536f01e8260441efda43430f893e8e4595b nettoyer les commentaires --- diff --git a/src/query_tree.ml b/src/query_tree.ml index 1599c4c..f0b2cbc 100644 --- a/src/query_tree.ml +++ b/src/query_tree.ml @@ -20,7 +20,7 @@ and compile_step_list p = let qtree = compile_step_list r in let res = Binop ( Inter,Axis (a,qtree), Tag (test) ) in List.fold_left (fun acc e -> - Binop(Inter, acc, compile_expr e)) res el (*avant j'ai utilise une function compile_expr_list ,c'est pas genial*) + Binop(Inter, acc, compile_expr e)) res el and compile_expr (e : Xpath.Ast.expr ) = match e with | Fun_call (f, [ e0 ]) when (QName.to_string f) = "not" -> @@ -49,7 +49,7 @@ and compile_step_list p = | Absolute p | Relative p -> compile_step_list_rev p (*(List.rev p)*) and compile_step_list_rev p = match p with - | [] -> Dom (*assert false*) (*on fait rien , mais comment signifer ???*) + | [] -> Dom | (a,(test,_),el) :: r -> let qtree = compile_step_list_rev r in let res = Binop (Inter , qtree, Tag(test)) in diff --git a/src/table.ml b/src/table.ml index 6da21c5..8e4f2e6 100644 --- a/src/table.ml +++ b/src/table.ml @@ -1,4 +1,3 @@ -(*creer a 28/01/2014*) type move = Self | Firstchild diff --git a/src/table_driver.ml b/src/table_driver.ml index 371dbdf..64d1a1d 100644 --- a/src/table_driver.ml +++ b/src/table_driver.ml @@ -37,18 +37,6 @@ let main () = let _ = if !Table_options.count then Format.fprintf Format.std_formatter "there are %i nodes\n" !Query_tree.compteur; in - - (* let output = - match !Options.output_file with - | None | Some "-" | Some "/dev/stdout" -> stdout - | Some f -> open_out f - in - List.iter (fun query -> - Logger.msg `STATS "Query: %a " Xpath.Ast.print_path query) queries; - List.iter (fun query_tree -> - Logger.msg `STATS "@[Query_tree: @\n%a@]" print_query_tree Format.std_formatter query_tree) query_tree_list; - - *) exit 0 @@ -60,76 +48,4 @@ let () = main () -(* let query = Xpath.Parser.parse - (Ulexing.from_utf8_string Sys.argv.(2)) - in - Format.printf "La requete est: %a\n%!" - Xpath.Ast.print_path query; *) - - (* print_endline "Test 1 root.firstchild"; - let c1 = eval_move doc [ (Naive_tree.root doc) ] Firstchild in - print_node_list doc c1; - print_endline "Test 2 root.firstchild.firstchild"; - let c2 = eval_move doc c1 Firstchild in - print_node_list doc c2; - print_endline "Test 3 root.firstchild.firstchild.nextsibling"; - let c3 = eval_move doc c2 Nextsibling in - print_node_list doc c3; - print_endline "Test 4 root.firstchild.firstchild.nextsibling.firstchild"; - let c4 = eval_move doc c3 Firstchild in - print_node_list doc c4; - print_endline "Test 5 root.firstchild.firstchild.nextsibling.firstchild.ancestor false"; - let c5 = eval_axis doc c4 (Ancestor false) in - print_node_list doc c5; - print_endline "Test 6"; - let c6 = eval_move doc c5 Prevsibling in - print_node_list doc c6; - print_endline "Test 7"; - let c7 = eval_move doc c6 Revfirstchild in - print_node_list doc c7; - print_endline "Test 8 Child [root]"; - let c8 = eval_axis doc [Naive_tree.root doc] Child in - print_node_list doc c8; - print_endline "Test 9 Descendant [b]"; - let c9 = eval_axis doc c2 (Descendant false) in - print_node_list doc c9; - print_endline "Test 10 Descendant or self [b]"; - let c10 = eval_axis doc c2 (Descendant true) in - print_node_list doc c10; - print_endline "Test 11 FollowingSibling [b]"; - let c11 = eval_axis doc c2 FollowingSibling in - print_node_list doc c11; - print_endline "Test 12 Parent [b]"; - let c12 = eval_axis doc c2 Parent in - print_node_list doc c12; - print_endline "Test 13 Ancestor or self [b]"; - let c13 = eval_axis doc c2 (Ancestor true) in - print_node_list doc c13; - print_endline "Test 14 PrecdingSibling [b]"; - let c14 = eval_axis doc c2 PrecedingSibling in - print_node_list doc c14; - print_endline "Test 15 preceding [b]"; - let c15 = eval_axis doc c2 Preceding in - print_node_list doc c15; - print_endline "Test 16 Following [b]"; - let c16 = eval_axis doc c2 Following in - print_node_list doc c16; - print_endline "Test 17 tag [b]"; - let c17 = element_by_tag doc (QName.make "b") in - print_node_list doc c17; - print_endline "Test 18 all nodes"; - let c18 = all_nodes doc in - print_node_list doc c18; - print_endline "Test 19 compile_xpath"; *) - - - (*Format.printf "Le document contient: %i noeuds\n%!" (Naive_tree.size doc); - let c19 = compile_xpath (parse_xpath "/child::a[child::b or not(following::]") in - Format.printf ">> %a\n%!" print_query_tree c19; - print_endline "Test 20 eval_query_tree"; - let res = eval_query_tree doc [ (Naive_tree.root doc) ] c19 in - print_node_list doc res; - print_endline "Fin";*) - - diff --git a/tests/huibo_test.sh b/tests/huibo_test.sh new file mode 100755 index 0000000..8355ba6 --- /dev/null +++ b/tests/huibo_test.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +INPUT=tests/xmark_0.00.xml +QUERIES="$INPUT".queries + +cat "$QUERIES" | while read N Q; +do + echo Query "$N : $Q" + src/table_driver.native -d "$INPUT" "$Q" > /tmp/huibo.xml + src/tatoo.native -d "$INPUT" "$Q" > /tmp/kim.xml + if diff -q /tmp/huibo.xml /tmp/kim.xml > /dev/null; + then + echo OK + else + echo Problem + diff -u /tmp/huibo.xml /tmp/kim.xml + fi + +done diff --git a/tests/tiny2.xml b/tests/tiny2.xml new file mode 100644 index 0000000..e51233c --- /dev/null +++ b/tests/tiny2.xml @@ -0,0 +1,12 @@ + + + +united states1duteous nine eighteen +united states1great +united states1scarce brook +united states1abhorr execution beckon rue +united states1unsur brutish +united states1nakedness + +dispatch reported dotard holofernes + diff --git a/tools/unix.c b/tools/unix.c new file mode 100644 index 0000000..25b87b3 --- /dev/null +++ b/tools/unix.c @@ -0,0 +1,7479 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +extern char *pmoptarg; +extern int pmoptind; +extern char dash; +int pmgetopt(int argc, char * const argv[], const char *optstring); +unsigned long timediff(void); +extern int indent_level; +extern int fmt_width; +int xmlfmtprintf(FILE *, const char *fmt,...); +typedef struct +{ + int type; + double mean, dev, min, max; +} +ProbDesc; +typedef struct +{ + int id; + ProbDesc pd; + char rec; +} +ElmDesc; +typedef struct +{ + char name[20]; + int type; + int ref; + ProbDesc pd; + float prcnt; +} +AttDesc; +typedef struct SetDesc +{ + int size,id; + struct SetDesc *next; +} +SetDesc; +typedef struct +{ + int id; + char *name; + ElmDesc elm[20]; + AttDesc att[5]; + int type; + int kids; + SetDesc set; + int flag; +} +ObjDesc; +extern int (*xmlprintf)(FILE *stream, const char *format, ...); +extern void FixSetByEdge(char *, char *, int size); +extern FILE *xmlout; +extern FILE *debug; +extern int indent_level; +extern int indent_inc; +extern ObjDesc *stack[]; +extern int stackdepth; +extern ObjDesc objs[]; +extern char dtd_name[128]; +extern int dtd_len; +extern char *dtd[]; +int NumberOfObjs(void); +int GenContents(ObjDesc*); +void GenAttCDATA(ObjDesc*,char*,char*); +extern int (*IdRefHook)(ObjDesc *od, int type, int *iRef); +extern void (*InitHook)(void); +extern double (*correction)(double scalefactor); +typedef struct { + int idum,iff; + long ix1,ix2,ix3; + double r[98]; + int ipos; +} random_gen; +void init_gen(random_gen *rg); +float genunf(float low,float high); +float genexp(float av); +float gennor(float av,float sd); +int ignuin(int low, int high); +int __ignuin(random_gen *rg, int low, int high); +int signuin(int seed, int low, int high); +double ranf(); +double GenRandomNum(ProbDesc *pd); +double GenRandomNumSeeded(int seed, ProbDesc *pd); +void MakeRandomString(char *string, int length); +static random_gen rgGlobal={-3}; +static random_gen rgNull,rgSeed; +void init_gen(random_gen *rg) +{ + memcpy(rg,&rgNull,sizeof(rgNull)); +} +double __ranf(random_gen *rg) { + register double temp; + register int j; + { + if (rg->idum<0 || rg->iff==0) { + rg->iff=1; + rg->ix1=(54773-rg->idum) % 259200; + rg->ix1=(7141*rg->ix1+54773) % 259200; + rg->ix2=rg->ix1 % 134456; + rg->ix1=(7141*rg->ix1+54773) % 259200; + rg->ix3=rg->ix1 % 243000; + for (j=1;j<=97;j++) { + rg->ix1=(7141*rg->ix1+54773) % 259200; + rg->ix2=(8121*rg->ix2+28411) % 134456; + rg->r[j]=(rg->ix1+rg->ix2*(1.0/134456))*(1.0/259200); + } + rg->idum=1; + } + rg->ix1=(7141*rg->ix1+54773) % 259200; + rg->ix2=(8121*rg->ix2+28411) % 134456; + rg->ix3=(4561*rg->ix3+51349) % 243000; + j=1+((97*rg->ix3)/243000); + if (j>97 || j<1) + printf("ranf: index out of range\n"); + temp=rg->r[j]; + rg->r[j]=(rg->ix1+rg->ix2*(1.0/134456))*(1.0/259200); + } + return temp; +} +double ranf() +{ + return __ranf(&rgGlobal); +} +float __sexpo(random_gen *rg) +{ +static float q[8] = { + 0.6931472,0.9333737,0.9888778,0.9984959,0.9998293,0.9999833,0.9999986,1.0 +}; + register long i; + register float a,u; + static float sexpo,ustar,umin; + static float *q1 = q; + a = 0.0; + u = __ranf(rg); + goto S30; +S20: + a += *q1; +S30: + u += u; + if(u <= 1.0) goto S20; + u -= 1.0; + if(u > *q1) goto S60; + sexpo = a+u; + return sexpo; +S60: + i = 1; + ustar = __ranf(rg); + umin = ustar; +S70: + ustar = __ranf(rg); + if(ustar < umin) umin = ustar; + i += 1; + if(u > *(q+i-1)) goto S70; + sexpo = a+umin**q1; + return sexpo; +} +float sexpo() +{ + return __sexpo(&rgGlobal); +} +float __genexp(random_gen *rg, float av) +{ +static float genexp; + genexp = __sexpo(rg)*av; + return genexp; +} +float genexp(float av) +{ + return __genexp(&rgGlobal,av); +} +float __snorm(random_gen *rg) +{ +static float a[32] = { + 0.0,3.917609E-2,7.841241E-2,0.11777,0.1573107,0.1970991,0.2372021,0.2776904, + 0.3186394,0.36013,0.4022501,0.4450965,0.4887764,0.5334097,0.5791322, + 0.626099,0.6744898,0.7245144,0.7764218,0.8305109,0.8871466,0.9467818, + 1.00999,1.077516,1.150349,1.229859,1.318011,1.417797,1.534121,1.67594, + 1.862732,2.153875 +}; +static float d[31] = { + 0.0,0.0,0.0,0.0,0.0,0.2636843,0.2425085,0.2255674,0.2116342,0.1999243, + 0.1899108,0.1812252,0.1736014,0.1668419,0.1607967,0.1553497,0.1504094, + 0.1459026,0.14177,0.1379632,0.1344418,0.1311722,0.128126,0.1252791, + 0.1226109,0.1201036,0.1177417,0.1155119,0.1134023,0.1114027,0.1095039 +}; +static float t[31] = { + 7.673828E-4,2.30687E-3,3.860618E-3,5.438454E-3,7.0507E-3,8.708396E-3, + 1.042357E-2,1.220953E-2,1.408125E-2,1.605579E-2,1.81529E-2,2.039573E-2, + 2.281177E-2,2.543407E-2,2.830296E-2,3.146822E-2,3.499233E-2,3.895483E-2, + 4.345878E-2,4.864035E-2,5.468334E-2,6.184222E-2,7.047983E-2,8.113195E-2, + 9.462444E-2,0.1123001,0.136498,0.1716886,0.2276241,0.330498,0.5847031 +}; +static float h[31] = { + 3.920617E-2,3.932705E-2,3.951E-2,3.975703E-2,4.007093E-2,4.045533E-2, + 4.091481E-2,4.145507E-2,4.208311E-2,4.280748E-2,4.363863E-2,4.458932E-2, + 4.567523E-2,4.691571E-2,4.833487E-2,4.996298E-2,5.183859E-2,5.401138E-2, + 5.654656E-2,5.95313E-2,6.308489E-2,6.737503E-2,7.264544E-2,7.926471E-2, + 8.781922E-2,9.930398E-2,0.11556,0.1404344,0.1836142,0.2790016,0.7010474 +}; +static long i; +static float snorm,u,s,ustar,aa,w,y,tt; + u = __ranf(rg); + s = 0.0; + if(u > 0.5) s = 1.0; + u += (u-s); + u = 32.0*u; + i = (long) (u); + if(i == 32) i = 31; + if(i == 0) goto S100; + ustar = u-(float)i; + aa = *(a+i-1); +S40: + if(ustar <= *(t+i-1)) goto S60; + w = (ustar-*(t+i-1))**(h+i-1); +S50: + y = aa+w; + snorm = y; + if(s == 1.0) snorm = -y; + return snorm; +S60: + u = __ranf(rg); + w = u*(*(a+i)-aa); + tt = (0.5*w+aa)*w; + goto S80; +S70: + tt = u; + ustar = __ranf(rg); +S80: + if(ustar > tt) goto S50; + u = __ranf(rg); + if(ustar >= u) goto S70; + ustar = __ranf(rg); + goto S40; +S100: + i = 6; + aa = *(a+31); + goto S120; +S110: + aa += *(d+i-1); + i += 1; +S120: + u += u; + if(u < 1.0) goto S110; + u -= 1.0; +S140: + w = u**(d+i-1); + tt = (0.5*w+aa)*w; + goto S160; +S150: + tt = u; +S160: + ustar = __ranf(rg); + if(ustar > tt) goto S50; + u = __ranf(rg); + if(ustar >= u) goto S150; + u = __ranf(rg); + goto S140; +} +float snorm() +{ + return __snorm(&rgGlobal); +} +float __gennor(random_gen *rg,float av,float sd) +{ +static float gennor; + gennor = sd*__snorm(rg)+av; + return gennor; +} +float gennor(float av, float sd) +{ + return __gennor(&rgGlobal,av,sd); +} +float __genunf(random_gen *rg,float low,float high) +{ +static float genunf; + if(!(low > high)) goto S10; + fprintf(stderr,"LOW > HIGH in GENUNF: LOW %16.6E HIGH: %16.6E\n",low,high); + fputs("Abort",stderr); + exit(1); +S10: + genunf = low+(high-low)*__ranf(rg); + return genunf; +} +float genunf(float low, float high) +{ + return __genunf(&rgGlobal,low,high); +} +int __ignuin(random_gen *rg,int low, int high) +{ + int f=(int)(__ranf(rg)*(high-low+1)); + return low+f; +} +int ignuin(int low, int high) +{ + return __ignuin(&rgGlobal,low,high); +} +int signuin(int seed, int low, int high) +{ + init_gen(&rgSeed); + rgSeed.idum=seed; + return __ignuin(&rgSeed,low,high); +} +double GenRandomNum(ProbDesc *pd) +{ + double res=0; + if (pd->max>0) + switch(pd->type) + { + case 0: + if (pd->min==pd->max && pd->min>0) + { + res=pd->min; + break; + } + fprintf(stderr,"undefined probdesc.\n"); + exit(EXIT_FAILURE); + case 1: + res=genunf(pd->min,pd->max); + break; + case 3: + res=pd->min+genexp(pd->mean); + res=(((pd->max)>(res)?(res):(pd->max))); + break; + case 2: + res=gennor(pd->mean,pd->dev); + res=(((pd->min)<((((pd->max)>(res)?(res):(pd->max))))?((((pd->max)>(res)?(res):(pd->max)))):(pd->min))); + break; + default: + fprintf(stderr,"woops! undefined distribution.\n"); + exit(EXIT_FAILURE); + } + return res; +} +void MakeRandomString(char *string, int length) +{ + int i; + length=(((0)<(length)?(length):(0))); + for (i=0;i=0) indent=newindent; + if (!trail+1) blank=0; + } + if (width==fmt_width && lstblank!=blank) + { + *blank='\0'; + fprintf(xfp,"%*s%s\n",indent,"",start); + lstblank=start=trail=++blank; + width=indent; + } + trail++; + } + write=trail; + return width; +} +FILE *xmlout=0; +char *outputname=0; +int indent_inc=0; +double scale_factor=1; +ObjDesc *stack[64]; +int stackdepth=0; +int stackatt=0; +int split=0; +int splitcnt=0; +int (*xmlprintf)(FILE *stream, const char *format, ...)=fprintf; +void OpenOutput() +{ + static int fileno=0; + char *newname=outputname; + if (!outputname) return; + if (xmlout!=stdout) fclose(xmlout); + if (split) + { + if (fileno>99999) + fprintf(stderr,"Warning: More than %d files.\n",99999); + newname=(char*)malloc(strlen(outputname)+7); + sprintf(newname,"%s%0*d",outputname,5,fileno++); + } + if ((xmlout=fopen(newname,"w"))==NULL) + { + fflush(stdout); + fprintf(stderr,"Can't open file %s\n",newname); + exit(EXIT_FAILURE); + } + if (split) free(newname); +} +int hasID(ObjDesc *od) +{ + int i; + for(i=0;i<5;i++) + { + if (od->att[i].type==0) break; + if (od->att[i].type==1) return 1; + } + return 0; +} +int GenRef(ProbDesc *pd, int type) +{ + ObjDesc* od=objs+type; + static ProbDesc pdnew; + ((void) 0); + ((void) 0); + ((void) 0); + if (pd->type!=0) + { + pdnew.min=0; + pdnew.max=od->set.size-1; + pdnew.type=pd->type; + if (pd->type!=1) + { + pdnew.mean=pd->mean*pdnew.max; + pdnew.dev=pd->dev*pdnew.max; + } + } + return (int)GenRandomNum(&pdnew); +} +void FixDist(ProbDesc *pd, double val) +{ + ((void) 0); + pd->min=pd->max=val; + pd->type=0; +} +void FixReferenceSets(ObjDesc *od) +{ + int i,j,maxref=0; + ((void) 0); + if (od->flag++) return; + for (i=0;ikids;i++) + { + ElmDesc *ed=&(od->elm[i]); + ObjDesc *son=&objs[ed->id]; + if (!son) continue; + if (ed->pd.min>1 && !hasID(son)) + { + int size; + double local_factor=1; + for (j=0;j<5;j++) + { + if (son->att[j].name[0]=='\0') break; + maxref=(((maxref)<(objs[son->att[j].ref].set.size)?(objs[son->att[j].ref].set.size):(maxref))); + } + if (!maxref) break; + local_factor=maxref/ed->pd.max; + size=(int)(GenRandomNum(&ed->pd)+0.5); + size=(int)(((1)<(size*local_factor)?(size*local_factor):(1))); + son->set.size+=size; + FixDist(&ed->pd,size); + } + FixReferenceSets(son); + } +} +void FixSetSize(ObjDesc *od) +{ + int i; + ((void) 0); + if (od->flag++) return; + for (i=0;ikids;i++) + { + ObjDesc *son; + ElmDesc *ed=&(od->elm[i]); + son=&objs[ed->id]; + if (!son) continue; + if (ed->pd.min>1 && (hasID(son) || (son->type&0x04))) + { + int size=(int)(GenRandomNum(&ed->pd)+0.5); + size=(int)(((1)<(size*scale_factor)?(size*scale_factor):(1))); + son->set.size+=size; + FixDist(&ed->pd,size); + } + FixSetSize(son); + } +} +void FixSetByEdge(char *father_name, char *son_name, int size) +{ + int nobj=NumberOfObjs(); + int i,j,fixed=0; + for (i=0;ikids;j++) + { + ElmDesc *ed=&(od->elm[j]); + ObjDesc *son=objs+ed->id; + if (!strcmp(son_name,son->name)) + { + FixDist(&ed->pd,size); + fixed=1; + } + } + } + } + ((void) 0); +} +void ClearFlags() +{ + int i; + int nobj=NumberOfObjs(); + for(i=0;iname); + for (i=0;i<5;i++) + { + char *attname; + att=&od->att[i]; + if (att->name[0]=='\0') break; + if (att->name[0]=='\1') attname=objs[att->ref].name; + else attname=att->name; + switch(att->type) + { + case 1: + xmlprintf(xmlout," %s=\"%s%d\"", + attname,od->name,od->set.id++); + break; + case 2: + { + int ref=0; + if (!IdRefHook || !IdRefHook(od,att->ref,&ref)) + ref=GenRef(&att->pd,att->ref); + xmlprintf(xmlout," %s=\"%s%d\"", + attname,objs[att->ref].name,ref); + } + break; + case 3: + if (genunf(0,1)prcnt) + { + GenAttCDATA(od,attname,cdata); + xmlprintf(xmlout," %s=\"%s\"",attname,cdata); + } + break; + default: + fflush(xmlout); + fprintf(stderr,"unknown ATT type %s\n",attname); + exit(EXIT_FAILURE); + } + } + if (!(od->elm[0].id!=0) && (od->att[0].name[0])) xmlprintf(xmlout,"/>\n"); + else + { + xmlprintf(xmlout,">"); + if ((od->elm[0].id!=0) || od->type&0x01) xmlprintf(xmlout,"\n"); + } +} +void ClosingTag(ObjDesc *od) +{ + ((void) 0); + stackdepth--; + if (od->type&0x01) xmlprintf(xmlout,"\n"); + if ((od->att[0].name[0]) && !(od->elm[0].id!=0)) return; + xmlprintf(xmlout,"\n",od->name); +} +void SplitDoc() +{ + int i; + int oldstackdepth=stackdepth; + for (i=oldstackdepth-1; i>=0; i--) + { + indent_level-=indent_inc; + ClosingTag(stack[i]); + } + OpenOutput(); + for (i=0; itype&0x10) return; + if (splitnow) + { + SplitDoc(); + splitnow=0; + } + OpeningTag(od); + indent_level+=indent_inc; + od->flag++; + if (GenContents(od) && (od->elm[0].id!=0)) xmlprintf(xmlout,"\n"); + if (od->type&0x02) + { + double sum=0,alt=genunf(0,1); + i=0; + if (od->flag>2-1) + while (ikids-1 && od->elm[i].rec) i++; + else + while (ikids-1 && (sum+=od->elm[i].pd.mean)elm[i].id); + } + else + for (i=0;ikids;i++) + { + int num; + ed=&od->elm[i]; + num=(int)(GenRandomNum(&ed->pd)+0.5); + while(num--) + GenSubtree(objs+ed->id); + } + indent_level-=indent_inc; + ClosingTag(od); + if (split && (od->type&0x20 || (od->type&0x40 && splitcnt++>split))) + splitnow=1; + od->flag--; + ((void) 0); +} +void Preamble(int type) +{ + switch(type) + { + case 1: + xmlprintf(xmlout,"\n"); + break; + case 2: + xmlprintf(xmlout,"\n\n", + objs[1].name,dtd_name); + break; + case 3: + xmlprintf(stderr,"Not yet implemented.\n"); + exit(EXIT_FAILURE); + } +} +void Version() +{ + fprintf(stderr,"This is xmlgen, version %s.%s\n%s\n","0","92","by Florian Waas (flw@mx4.org)"); +} +void Usage(char *progname) +{ + Version(); + fprintf(stderr, "Usage: %s [ %ch ] [ %cditve ] [ %cf ] [ %co ] [ %cs ]\n",progname,dash,dash,dash,dash,dash); + exit(EXIT_FAILURE); +} +void AlignObjs(void) +{ + int i=0,j; + ObjDesc * newobjs; + int nobj=NumberOfObjs(); + newobjs=(ObjDesc*)malloc(sizeof(ObjDesc)*nobj); + memset(newobjs,0,sizeof(ObjDesc)*nobj); + for (i=0;iflag) + { + od->flag=1; + for (i=0;ikids;i++) + r+=FindRec(objs+od->elm[i].id,search); + } + } + od->flag=0; + return r; +} +void CheckRecursion() +{ + int i,j; + int nobj=NumberOfObjs(); + ObjDesc *root; + for (i=1;itype&0x02)) continue; + for (j=0;jkids;j++) + root->elm[j].rec=FindRec(&objs[root->elm[j].id],root); + } +} +void printdtd() +{ + int i; + for (i=0;i\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n","\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n","\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n","\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n","\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n","\n", + "\n", + "\n", + "\n" +}; +int words_len=17000; +char *words[17000]={ + "the","and","you","that","not","with","for","his","this","your","but", + "have","him","thou","will","what","her","thy","all","shall","are", + "lord","thee","good","our","now","she","from","come","they","let", + "sir","which","would","there","was","here","well","more","love","how", + "then","man","enter","hath","when","their","them","know","than","say", + "one","upon","may","like","make","king","should","were","did","yet", + "must","why","see","out","had","give","such","some","who","too", + "where","most","these","speak","can","take","mine","think","time", + "heart","much","tell","death","exeunt","exit","look","father","never", + "men","doth","great","nor","life","art","hand","hear","god","very", + "away","own","made","again","true","fair","before","heaven","eyes", + "cannot","master","night","world","thus","lady","caesar","day", + "sweet","other","call","brother","pray","any","been","old","nothing", + "poor","blood","down","done","till","fear","ham","honour","duke", + "into","being","whose","name","son","queen","comes","against","wife", + "could","two","both","better","dead","nay","myself","though","even", + "leave","ever","still","fool","grace","noble","way","bear","die", + "live","madam","stand","might","hast","those","therefore","many", + "put","word","head","himself","soul","first","little","part","find", + "dear","house","show","off","every","indeed","peace","gone","none", + "within","mother","hold","daughter","keep","young","stay","another", + "thine","set","eye","bring","dost","friends","aside","answer","face", + "since","woman","friend","words","prince","long","matter","marry", + "lear","best","place","nature","tongue","about","full","after","else", + "antony","said","farewell","thought","faith","fortune","makes", + "mistress","once","husband","has","ere","fall","forth","kill","shame", + "without","thing","whom","does","bid","honest","sword","right", + "three","cause","please","unto","pardon","turn","boy","mind","only", + "john","back","follow","fellow","gentle","welcome","kent","help", + "earth","hope","gods","france","use","itself","brutus","things", + "false","lie","hither","beat","light","heard","cousin","meet","truth", + "nurse","hence","gentleman","send","thank","wrong","came","england", + "play","rather","hour","wit","yourself","lords","rest","friar", + "hands","tears","body","news","seen","grief","lay","rom","state", + "enough","get","foul","power","thousand","last","bed","reason", + "means","home","under","pedro","fight","romeo","villain","shalt", + "wilt","majesty","mark","end","sure","fire","believe","mean","arms", + "breath","child","lies","thoughts","between","swear","lost","prove", + "seek","crown","hector","saw","youth","cassio","sorrow","kind", + "uncle","return","yours","found","break","high","land","letter", + "through","beseech","told","together","each","ill","alas","knows", + "near","bene","says","far","talk","business","sent","strange","wish", + "war","spirit","desire","gloucester","claudio","while","sleep","dog", + "purpose","virtue","general","royal","court","cry","loves","present", + "looks","hang","claud","sound","hero","sun","watch","mad","ear", + "proud","beauty","knave","editions","leon","prithee","page","age", + "renascence","bloody","comfort","glou","law","joy","holy","seem", + "days","jul","strong","gold","pity","maid","ask","sin","kiss","save", + "same","devil","york","hamlet","sister","truly","scene","draw","goes", + "yes","fly","sight","need","left","warrant","service","alone","weep", + "happy","something","less","fault","thyself","hor","worthy","heavy", + "lives","free","times","haste","known","late","pass","remember", + "charge","gentlemen","read","patience","arm","women","hearts", + "richard","wise","serve","gave","married","wear","horse","grave", + "note","half","timon","cold","worth","rome","care","work","count", + "run","sea","air","dare","lose","given","sit","neither","further", + "deed","hate","gracious","change","gives","years","pleasure","foot", + "course","edg","sad","company","born","side","money","praise", + "content","because","rich","black","themselves","confess","others", + "woe","hot","strike","brought","trust","yea","hell","spoke","behold", + "touch","oft","command","field","new","sick","knew","base","troy", + "didst","sense","question","either","next","pompey","lips","bound", + "cassius","wind","justice","iago","open","troilus","enemy","duty", + "fit","hard","act","doubt","mercy","music","deep","just","plain", + "speech","sovereign","traitor","needs","speaks","pol","took","fare", + "canst","want","highness","paris","already","cut","stands","drink", + "walk","ears","almost","merry","straight","soldiers","past","sworn", + "heavens","thanks","over","certain","bosom","pretty","voice","lov", + "sing","liege","edward","lest","wouldst","appear","bad","sake","fie", + "common","oath","brave","ground","soldier","person","having","edm", + "lordship","palace","coming","above","point","worse","counsel", + "morning","mouth","office","achilles","white","lead","angelo", + "letters","eat","ten","pale","servant","withal","whole","methinks", + "souls","cap","kings","country","water","people","dream","presently", + "pluck","sport","slave","tender","write","twenty","reg","suit", + "passion","hide","ford","slain","fortunes","henry","learn","begin", + "form","lack","honesty","revenge","ourselves","speed","children", + "fast","curse","sirrah","rage","castle","mock","met","soon","seems", + "grow","signior","tent","wherefore","bold","valiant","laugh","living", + "captain","quick","tale","juliet","flesh","benedick","unless", + "morrow","poison","hours","vile","five","fashion","prison","pride", + "herself","dies","attendants","drum","loving","adieu","saint", + "become","issue","wherein","soft","report","worship","hark", + "flourish","behind","honourable","mighty","trumpet","presence","ben", + "going","guard","fools","ready","corn","marriage","respect","door", + "text","glad","spirits","knight","bears","anything","tybalt","banish", + "noise","shows","favour","deny","parts","short","wars","suffolk", + "offence","edmund","fetch","leonato","buckingham","throw","hadst", + "wisdom","mer","feel","excellent","laer","went","four","london", + "bless","buy","toward","anne","got","quickly","brief","desdemona", + "fell","action","quoth","deeds","angry","writ","brook","entreat", + "ajax","woo","city","dangerous","move","strength","yield","moor", + "often","paper","deliver","match","whilst","french","othello","along", + "loss","case","measure","win","awhile","anon","commend","health", + "guilty","dispatch","heads","teach","pay","worst","witness","alb", + "wert","hair","close","chamber","oph","beg","kept","faults","second", + "calls","died","consent","shake","march","falls","beard","sorry", + "ring","vow","piece","danger","weak","force","beatrice","understand", + "forget","pure","humour","harm","holds","moon","heir","mortal","jove", + "vain","bastard","enemies","wonder","quarrel","shape","ladies", + "grant","attend","masters","troth","hundred","stop","chance","cast", + "clown","scorn","thither","serv","subject","plague","beggar","wast", + "breast","fine","defend","greater","longer","gon","blow","ghost", + "conscience","laid","alack","pains","stir","sons","town","besides", + "sings","affection","order","mar","colour","jest","green","promise", + "dark","battle","shepherd","suffer","margaret","book","low","burn", + "bolingbroke","taken","judgment","melancholy","lend","labour","year", + "lust","kingdom","dull","feast","foolish","takes","carry","valour", + "treason","blame","reads","virtuous","obey","manner","drown", + "fearful","seal","folly","madness","stood","room","princes","cheek", + "several","public","forgot","small","least","wretched","helen","try", + "purse","patient","endure","wits","won","yonder","wine","beast", + "william","offer","tower","birth","simple","whither","quite","liv", + "knowledge","receive","ours","alive","army","rude","forest","brain", + "ass","egypt","clarence","coward","humphrey","camp","amen","pain", + "ancient","horatio","sudden","red","rosalind","street","roderigo", + "fain","wounds","dance","desires","evil","proof","whether","murther", + "precious","laertes","liberty","study","messenger","tear","wicked", + "athens","bitter","drunk","ros","servants","capulet","taste","keeps", + "creature","cunning","idle","scarce","approach","excuse","bones", + "opinion","doctor","hurt","wound","aught","round","whereof","stars", + "fond","daughters","brow","glory","led","blind","prisoner","golden", + "sometime","gross","argument","fled","camillo","murder","forbid", + "title","spent","lucius","nine","weary","gent","held","lion", + "yourselves","roman","perceive","motion","food","feed","awake","fill", + "heels","reasons","host","until","shouldst","cries","proper", + "university","trumpets","weeping","steal","bright","effect","wash", + "neck","walls","whore","cheeks","judge","don","thence","large", + "choose","dreadful","borne","smile","thrive","manners","seven", + "english","fame","reputation","terms","fellows","damn","occasion", + "affairs","hearing","heat","proclaim","shallow","thief","sigh", + "drawn","prepare","mere","broke","prayers","trial","among","self", + "advantage","vows","rise","widow","winter","kneel","cupid","stain", + "horns","swift","traitors","view","instant","safety","making","cross", + "possess","wives","wild","humbly","emilia","rogue","osw", + "disposition","becomes","lucrece","quiet","jealous","train","twice", + "fears","sometimes","list","protest","stone","blush","secret", + "clouds","priest","broken","princess","lawful","forward","grows", + "monstrous","storm","bawd","buried","slander","lieutenant", + "neighbour","knee","protector","innocent","courtier","wealth","niece", + "bora","early","steel","trouble","pow","third","perform","nose", + "begins","authority","loud","woes","gates","arthur","dust","leisure", + "flow","proceed","tongues","despair","double","citizens","cried", + "blessed","particular","boys","denied","swords","edgar","silver", + "pleas","earl","fresh","repent","hit","polonius","depart","lover", + "cressid","sharp","offend","bids","drop","vice","dinner","happiness", + "meat","join","due","courtesy","tonight","cleopatra","hastings", + "princely","quality","greatest","clear","entertain","slender", + "throne","diomed","cure","spring","betray","blows","deal","tarquin", + "visit","warwick","towards","wanton","ways","demand","possible", + "priam","shore","forsworn","embrace","knees","hereford","foe", + "powers","windsor","grown","hubert","remedy","breathe","streets", + "request","vouchsafe","bohemia","although","forgive","loved","deadly", + "leaves","struck","brings","glass","thinking","brows","safe","catch", + "mend","seeming","richmond","church","doing","tune","wait","ambition", + "jack","private","song","fancy","tree","peter","sort","weigh","fury", + "sits","goodly","officer","rain","maids","handkerchief","silence", + "gain","smell","fat","jewel","giving","casca","kisses","montague", + "forbear","choice","doom","thinks","devise","wrongs","falstaff", + "damned","cardinal","remembrance","dry","claim","rough","womb", + "whiles","goodness","follows","norfolk","forsooth","gift","doors", + "cor","uses","star","below","spake","turns","sighs","oaths","kinsman", + "rank","alarum","delight","condemn","spend","perchance","satisfied", + "puts","dread","colours","regan","griefs","wretch","bestow", + "countenance","dares","tidings","cordelia","following","natural", + "wrath","enjoy","dreams","always","deserve","goneril","brothers", + "apart","sickness","remain","desperate","dar","contrary","merit", + "heavenly","charity","salisbury","meaning","offended","monsieur", + "blest","search","wide","cheer","thrice","sacred","bark","intent", + "lands","brains","greek","malice","salt","guildenstern","cruel", + "fiend","flies","heed","receiv","meant","number","trick","ophelia", + "beaten","faces","gar","horses","foes","express","learned","legs", + "somerset","intend","finger","minds","conduct","teeth","friendship", + "post","top","meeting","dishonour","greatness","knife","slow", + "treasure","dying","shadow","grecian","bow","supper","abroad", + "undone","sooner","troyan","names","steward","whence","gifts", + "stones","hateful","spoken","whip","native","gallant","able","mirth", + "image","seeing","triumph","betwixt","runs","anger","officers", + "finds","moved","discourse","suspect","sees","freely","season","mars", + "gentlewoman","ends","spare","sentence","agamemnon","lancaster", + "flatter","thunder","sides","skill","six","empty","practice", + "suddenly","summer","fail","apt","fought","feet","guil","conceit", + "robert","ease","sign","sore","owe","witch","saying","shortly", + "thieves","therein","strain","seat","cade","realm","lock","draws", + "bend","story","speaking","cover","odds","coz","nought","fiery", + "sleeping","cyprus","swore","outward","wings","courage","easy", + "naked","winds","vengeance","encounter","painted","trade", + "displeasure","tedious","degree","party","chaste","window","table", + "tyrant","mess","honor","wall","lepidus","tom","ride","george", + "employ","cup","sold","girl","fate","flood","twain","confound", + "knock","warm","chide","greeks","necessity","bare","project","prey", + "hollow","stuff","ones","sicilia","spite","caius","credit", + "challenge","condition","eros","mirror","hid","crowns","deer","hail", + "east","behalf","ignorance","berowne","virtues","lovers","tempest", + "humble","disgrace","gaunt","gall","despite","thrust","basket", + "patroclus","few","month","groans","envy","former","cease","monument", + "rousillon","bade","throat","sky","crack","banishment","lip", + "strikes","violent","bearing","tells","titinius","mercutio","guess", + "hers","entertainment","rosencrantz","players","abuse","rash", + "impossible","pair","hereafter","stol","taking","commission","rose", + "warlike","dearly","villains","orlando","appears","victory","loose", + "counterfeit","worm","infinite","cost","prayer","custom","maiden", + "revolt","wears","knaves","policy","groan","weight","tomb","main", + "twelve","figure","hangs","success","cuckold","blessing","armour", + "bounty","county","reverence","allow","divine","mild","marg","shut", + "angel","ignorant","bleed","complexion","sail","discover","minute", + "octavius","followed","mayst","charmian","fierce","christian","wake", + "dearest","tread","purposes","blown","avoid","alexandria","thersites", + "garden","orchard","unknown","con","breed","messala","aid","osr", + "weeds","estate","denmark","rascal","yond","subjects","collatine", + "constable","threat","sins","paid","durst","instrument","corse", + "civil","promis","burden","wench","smiles","drops","hie","absence", + "messengers","accuse","liest","ambitious","peril","attending", + "repair","rail","single","stroke","consider","disdain","provost", + "dumb","surely","profit","suspicion","lent","weapons","dauphin", + "cares","deserv","inform","bite","venice","amiss","contempt","memory", + "prize","sell","smooth","pause","knowing","commons","isabel","delay", + "par","octavia","banished","fingers","moe","park","iron","convey", + "greet","unworthy","sounds","virginity","seest","advice","withdraw", + "birds","special","dignity","burning","unhappy","huge","rule","copy", + "cornwall","sleeps","envious","thereof","press","exchange","maintain", + "aim","assure","armed","mov","grandam","villainy","unnatural", + "wither","bent","senators","peers","thrown","sheep","jealousy", + "committed","sends","apemantus","higher","firm","appetite","faithful", + "modesty","devils","fares","habit","rivers","shed","whipt","snow", + "meantime","hopes","council","weeps","elsinore","elder","earnest", + "acquainted","feeling","everything","retire","catesby","tempt", + "beasts","beyond","kindness","slew","deceiv","fairer","length","kin", + "minister","ant","wisely","fairies","rare","govern","conquer", + "lights","reverend","scope","circumstance","closet","misery", + "perforce","staff","palm","creatures","root","sorrows","kindred", + "reward","seldom","cur","dagger","sum","silent","glorious","sue", + "garter","tame","perfect","presentation","benefit","modest","guest", + "marvel","temper","slaughter","big","frame","strife","wont","slaves", + "laurence","today","began","worn","followers","stronger","add", + "nights","capitol","isle","lusty","hugh","aeneas","methought", + "rotten","plot","equal","pieces","hercules","serpent","soil","raise", + "token","pour","horn","sirs","torture","countrymen","debt","ireland", + "undertake","tremble","direct","calf","breaks","bred","according", + "rhyme","enforce","visage","morn","ripe","audience","stomach","quit", + "start","liking","cursed","punish","tyranny","haply","stage","sour", + "fairly","tall","plays","darkness","strive","utter","leap", + "appointed","tide","flight","flower","taught","borrow","willow", + "remains","urge","pomp","savage","limbs","dew","midnight","gown", + "execution","fits","scape","beats","trees","comments","eternal", + "render","angels","edge","romans","apollo","publisher","frown", + "monster","shakespeare","obedience","apparel","deputy","waste", + "resolution","fright","drums","strumpet","remorse","mass","commit", + "lamb","honours","bought","cool","hall","caught","reading","sooth", + "ended","companion","oracle","odd","tend","check","parted","shown", + "height","whisper","ber","serves","copyright","sting","rosaline", + "difference","fathers","constant","unfold","terror","prepar", + "mischief","easily","corrections","goose","tarry","tricks","sets", + "prais","aumerle","domain","ransom","albany","bind","reign","prevent", + "oregon","miserable","newly","fairest","graces","familiar","advise", + "alike","desert","bury","altogether","nonprofit","babe","willing", + "begot","wail","honey","flowers","regard","looking","edition", + "accesses","matters","prick","numbers","unique","mount","adelaide", + "fox","clothes","kindly","fix","educational","stays","logotype", + "henceforth","mowbray","shot","conference","crying","remove","merely", + "gate","thomas","samp","lean","zeal","space","solemn","mistake", + "herald","rid","fifty","pleasures","months","bond","absent","example", + "coat","observe","stanley","extremity","costard","step","rememb", + "faint","store","stranger","guilt","cave","dwell","stocks","attempt", + "drinks","week","account","instance","eight","busy","dress","couch", + "partly","profess","steps","needful","phrase","delicate","pleasant", + "antonio","calm","hill","wedding","bleeding","wants","spur","passage", + "grey","murd","secrets","fish","pitiful","bodies","pound","piteous", + "apace","urs","blue","subtle","farther","acquaint","purchase","gait", + "cinna","wholesome","hears","graves","sex","rebels","commanded", + "wrought","saucy","also","clock","plead","chase","sweat","object", + "seize","blunt","wed","pawn","secure","sought","troubled","vantage", + "amaz","dame","school","effects","quarter","defence","dish","places", + "cell","senate","chair","untimely","ulysses","scurvy","asleep", + "enterprise","aloud","justly","society","mutiny","rapier","guiltless", + "lays","fulvia","senses","phebe","bird","dogs","crave","willingly", + "mask","leads","loyal","natures","guide","weapon","censure","loath", + "received","kneels","ugly","addition","naught","league","shoot", + "guarded","perhaps","torch","pin","garments","pitch","boot","recover", + "felt","verg","drew","instantly","virgin","hardly","task","stream", + "standing","younger","strew","invention","curses","lesser","bell", + "usurp","afraid","horrible","petty","owes","lucilius","books", + "weather","blot","oak","knights","immortal","honorable","knit","term", + "yielded","spy","satisfy","forehead","attended","emperor","shoulders", + "befall","combat","afterwards","stretch","inward","florence","stoop", + "fenton","conclusion","pocket","oswald","nestor","pinch","discretion", + "cat","prevail","conquest","otherwise","chang","unkindness", + "laughter","couldst","belike","opposite","accus","laws","curs", + "absolute","benvolio","tut","pen","possession","fruit","tyb", + "services","joys","directly","grieve","italy","wishes","perpetual", + "sweetly","judas","contents","furnish","cock","signs","affections", + "adam","pursue","wounded","trespass","satisfaction","humours","venom", + "seas","diest","nuncle","abus","pick","breathing","paulina","angiers", + "swain","device","beauteous","language","leg","nice","friendly", + "suck","evils","nearer","breeding","falsehood","destruction", + "kissing","joint","likewise","sitting","greeting","earthly", + "intelligence","fee","slept","ruin","redress","lucio","glove","sink", + "wing","hairs","verona","unseen","heartily","affliction","picture", + "grievous","chief","boast","conceive","signify","cloak","west", + "hermione","rights","begun","recompense","shapes","goddess","cherish", + "froth","attendant","destroy","compass","breeds","pack","obedient", + "substance","wooing","livery","philippi","wax","preparation","rouse", + "reproach","kills","maine","stern","dat","knowest","burgundy", + "physician","converse","physic","whereon","favours","rul","commands", + "persuade","determine","forms","butcher","barnardine","error", + "carried","dover","interest","abide","sat","flint","hunt","arise", + "swell","sway","siege","joyful","hanging","northumberland", + "musicians","verses","severally","deserves","hat","mourn","touches", + "barren","tax","intents","veins","expect","notice","ship","knot", + "swears","polixenes","mystery","moral","confirm","continue","harry", + "wonderful","houses","smoke","clifford","sceptre","acquaintance", + "shoulder","medicine","eats","beshrew","stale","scratch","wept","bay", + "undo","provide","shine","provided","disguised","confusion","share", + "privilege","yesterday","drive","fields","mouths","afternoon", + "parson","travel","supply","north","accident","fearing","game","gaze", + "brabantio","burns","price","parley","slip","shrewd","conjure", + "build","contract","moves","brown","corrupted","miracle","reply", + "ape","reach","pomfret","eleven","drinking","metal","evermore", + "amorous","craves","statue","whoreson","lament","shook","ourself", + "rot","smiling","alcibiades","rob","afford","middle","descend", + "mothers","wipe","throws","written","bottom","quench","everlasting", + "amongst","prov","royalty","kingly","sadness","stick","aged", + "treacherous","balthasar","spit","woeful","hazard","beware","pierce", + "beneath","imagine","wronged","writing","stabb","instruments","key", + "greg","theirs","beloved","charm","beggars","record","noted","nobles", + "whereto","fed","troop","deceit","nest","allegiance","babes","asham", + "esteem","assur","duchess","comforts","fatal","rush","walks","ranks", + "dim","perfection","spleen","semblance","ocean","spoil","direction", + "mantua","conqueror","retires","hated","slay","moment","creep", + "except","weakness","perjury","rises","pernicious","rate","bravely", + "points","tooth","bully","betimes","infant","mus","pandarus","sleeve", + "ope","doublet","push","forswear","bidding","liberal","parting", + "alarums","fortinbras","resign","corrupt","deceive","mountain","pace", + "likes","vex","burnt","aunt","penny","abhor","foreign","ward", + "kingdoms","lightning","answers","called","moreover","herein","mayor", + "jaques","crimes","ladyship","plantagenet","fires","worser","nephew", + "chain","climb","paint","dismiss","youthful","waking","beheld", + "dreamt","bequeath","mile","load","tomorrow","line","mankind", + "sisters","mettle","singing","scar","beholding","complete","charles", + "cannon","dangers","dozen","affect","afar","talking","softly","helm", + "nobody","belov","message","falling","decay","ursula","stubborn", + "husbands","touching","wolf","aboard","pindarus","toil","praises", + "infection","keeping","deaths","nobility","box","leaving","shadows", + "varlet","prologue","strongly","dukes","rejoice","chin","shores", + "richer","wenches","audrey","passes","motive","thursday","harsh", + "waters","lately","hey","aspect","urg","hideous","belly","violence", + "elbow","jewels","distress","dumain","poverty","accent","shameful", + "gage","changes","greece","bread","lift","backward","murderer","wore", + "melt","elements","empire","manage","suppose","villainous","band", + "gertrude","enobarbus","prodigal","acts","seeks","tents","forsake", + "senseless","refuse","deaf","falsely","dearer","fever","toad", + "current","philip","funeral","redeem","poet","nobly","burst","rogues", + "wills","daily","famous","breaking","rugby","revenue","assay","pays", + "serious","rightly","terrible","youngest","wot","hourly","mood", + "anointed","forfeit","grossly","lists","choler","confession", + "painter","afeard","pyrrhus","sans","decius","imagination","sights", + "compare","pleases","ingratitude","bar","fleet","ceremony","theme", + "tapster","event","fourteen","shakes","rites","happily","divide", + "exile","cloud","julius","limit","ran","sole","increase","rey","wink", + "trembling","mightst","likeness","faulconbridge","verse","holding", + "turning","score","carriage","experience","grieves","divided","flout", + "freedom","lacks","abused","concluded","appeal","speedy","beside", + "threw","gloves","ballad","sheets","import","norway","perjur", + "torment","design","craft","hates","lodge","proceeding","groom", + "nails","vassal","proportion","turk","spurs","politic","ago","sadly", + "perish","marks","wreck","metellus","crest","talents","observance", + "briefly","granted","commonwealth","sounded","stirring","beguile", + "troops","blushing","robb","portia","prophesy","process","invite", + "surety","cressida","style","cuckoo","marcellus","roses","lechery", + "property","infected","resolve","breach","carries","proclamation", + "pearl","eldest","profane","degrees","reports","treasons","yoke", + "neglect","unarm","produce","feeble","dorset","errand","painting", + "jot","mocking","advis","punishment","hung","suitor","cozen", + "caitiff","boar","passing","infamy","rags","writes","awe","prays", + "necessary","thick","flat","sovereignty","bills","offences","venus", + "swallow","ink","forced","retreat","vessel","whipp","forces", + "learning","nightly","peevish","torches","pronounce","mocks", + "journey","capable","secrecy","stirs","mistook","remuneration", + "thereby","sup","character","discharge","bull","keeper","deceived", + "sickly","destiny","tie","putting","rowland","blank","reported", + "reveng","actions","prevented","seeking","messina","charms", + "ventidius","throng","sweetest","approve","haunt","albans","charg", + "nimble","windows","armado","government","flatterer","noon", + "sensible","wearing","thirty","consequence","behaviour","madman", + "dwells","acknowledge","eleanor","amity","heel","sufferance","oppose", + "straw","rue","hum","certainly","mightily","giddy","capt","boyet", + "works","mistrust","rais","preserve","dash","disguise","com","limb", + "menelaus","prosperous","scandal","wheel","lovely","shout","knocks", + "drowsy","manly","promises","yielding","date","excellence","hap", + "tried","prosper","distance","saints","hose","lap","assist","prophet", + "hecuba","doubtful","disguis","pate","vanity","employment","spread", + "meddle","chastity","feeds","labouring","accept","delights","slight", + "borachio","lamentable","pull","marcus","loathed","relish","throwing", + "trebonius","setting","rack","complain","finding","yon","sack", + "dancing","egg","supposed","stopp","stops","value","luck","beds", + "shun","pilgrimage","skin","thin","jupiter","publius","suits","heirs", + "bore","conditions","rebellion","sith","innocence","sails","joints", + "keen","telling","period","division","block","rear","diseases", + "speeches","working","navarre","article","impatience","alter","grass", + "pole","parolles","swearing","delivered","flattering","arrest", + "fairy","notes","requires","vulgar","visitation","pope","grew", + "fantastical","ships","miss","feasts","treachery","devotion","fan", + "roaring","merrily","beguil","drift","florentine","safer","alexander", + "harbour","lodging","traveller","stole","curst","wiser","charitable", + "marching","religion","grim","front","clap","exceeding","wolves", + "lines","churchyard","dramatis","forever","prosperity","showing", + "abuses","thankful","persons","adventure","sheet","vienna","plant", + "exercise","contented","ambassador","advance","throats","immediate", + "velvet","demands","multitude","shift","requests","requite","stamp", + "backs","returns","unkind","bending","correction","waist", + "expectation","composition","level","lying","filthy","offers", + "leontes","offices","reproof","cicero","raw","shield","michael", + "disease","hurts","strokes","beaufort","performance","dine","stained", + "race","moiety","understanding","stuck","evening","doting","oblivion", + "regent","whate","bounteous","ancestors","feather","bianca", + "baseness","religious","hasty","lads","renowned","wring","aloft", + "corruption","steep","respects","mourning","offense","bounds", + "discontent","wrinkled","salute","raven","lief","sinews","philosophy", + "handsome","worthies","recreant","bethink","apparent","priests", + "removed","sullen","skull","scorns","losing","confidence","defy", + "ample","commodity","etc","bondage","resolv","precedent","lame", + "convenient","dispose","hush","apprehend","mon","woods","ought", + "desir","fighting","vault","divers","bush","renown","conceal", + "address","personae","mortimer","cimber","courteous","frail","strict", + "fort","cowards","longaville","noblest","flame","riches","pitied", + "enrich","hatch","gently","bargain","bride","silk","bone","neglected", + "bulk","depos","actor","lark","sums","jests","admirable","rebel", + "owner","clamour","ice","wag","ribs","fantasy","wondrous","anjou", + "hungry","coldly","whispers","beginning","petition","buck","antenor", + "spurn","witchcraft","rosalinde","sustain","conclude","songs", + "superfluous","oppos","cheese","growth","departure","neptune","inch", + "killing","oman","execute","heinous","sixth","repose","designs", + "wakes","prisoners","attends","guests","blemish","wander","plucks", + "crow","montano","balm","coin","alexas","ratcliff","crept","spotted", + "flatterers","naughty","couple","bail","fruitful","bait","wanting", + "silvius","lets","truer","ridiculous","bertram","rend","grandsire", + "meanest","sham","upright","howe","extremes","loathsome","manhood", + "endur","shining","horror","faster","distemper","waiting","burial", + "distracted","diet","impart","boldly","infirmity","miles","assurance", + "lower","plagues","escape","wood","nobler","impediment","banquet", + "patch","proves","philosopher","occasions","apply","sauce","fasting", + "fore","dealing","vanish","injury","forc","reigns","author", + "opportunity","leaden","penitent","states","ages","promised","dire", + "stock","bowels","rightful","desp","compliment","churlish","steals", + "powerful","hack","calpurnia","procure","blanch","tales","belong", + "proofs","seemed","chid","provoke","sav","wrestling","loyalty", + "legions","nuptial","defeat","hides","transform","amends","worms", + "afflict","jaquenetta","axe","pregnant","quake","comfortable","choke", + "potent","especially","purity","hire","executed","verges","corner", + "flock","yields","pet","blasts","hole","nan","shirt","relent", + "questions","mercury","garland","ravish","invisible","plots", + "bachelor","moan","clay","sexton","bereft","wand","marshal","pox", + "marvellous","brace","airy","dote","rheum","gilded","intended", + "starts","captive","lodovico","wet","endeavour","gladly","walking", + "reasonable","peep","rescue","fountain","enforced","heap", + "conspiracy","immediately","muster","inn","description","affected", + "inquire","geffrey","profession","dowry","twelvemonth","tailor", + "nell","girls","trifles","injuries","profound","trifle","plainly", + "became","bastards","milk","troyans","raging","damnable","fellowship", + "port","hedge","escalus","towns","exploit","laughing","lasting", + "subscribe","bowl","shade","eaten","riotous","wales","crows", + "egyptian","baser","britaine","forty","judgement","balth","toys", + "diana","instruction","fifth","harms","infect","oppression","south", + "ministers","voluntary","fact","robe","borrowed","dishes","knocking", + "faction","harvest","humor","awak","nation","stake","qualities", + "derive","beams","instruct","accusation","sanctuary","believ","tardy", + "guiltiness","used","strangely","miseries","torn","history", + "scarcely","playing","tempted","baby","gather","judgments","access", + "patiently","fray","imperial","epitaph","gentleness","extreme", + "evidence","welkin","vouch","incense","detested","imprisonment", + "shoes","fawn","presented","ragged","nobleness","parents","iras", + "region","conrade","notwithstanding","flames","cull","beating","dram", + "purge","approved","safely","owl","foolery","stab","compact", + "dislike","ambassadors","applause","partner","concerns","arras", + "harmless","holiday","restraint","damnation","simplicity","dotage", + "vat","thread","sennet","pit","lived","hiss","unjust","cato","shames", + "weed","dainty","enmity","killed","coast","smother","giant","undergo", + "devis","worthiness","beastly","oppress","pilgrim","heavily","tutor", + "humanity","understood","getting","mak","lends","answered","utmost", + "roar","wager","melted","growing","executioner","instead","thousands", + "generous","commandment","dove","listen","meed","assured","worldly", + "ado","spies","affair","linen","pledge","ache","slanders","toy","tow", + "bud","revenged","ligarius","bonds","river","hatred","print","snatch", + "cheerful","sap","bloods","voyage","longing","added","encount","vein", + "unlawful","juno","pine","hangman","peradventure","villany","knavery", + "intends","scruple","menas","ebb","frozen","frank","banks","april", + "imprison","outrage","personal","deformed","needless","broad", + "swelling","scale","suffers","drawing","discontented","tokens", + "gallows","heavier","goest","hurl","cousins","counsels","square", + "tainted","testimony","confident","boldness","settled","sire", + "smallest","harder","ruffian","studied","integrity","fixed","avaunt", + "assume","eve","holp","entrance","titles","bal","inclination","varro", + "pleasing","favor","beget","phoebus","frailty","monarch","complaint", + "loins","stool","negligence","universal","usurping","saved","bliss", + "wrathful","vices","blushes","commends","admit","clapp","bells", + "jealousies","footing","election","pestilence","ashes","proceedings", + "bosoms","riot","tush","spots","prime","agrippa","cam","drunken", + "create","threats","dried","laying","fights","perdita","mischance", + "rein","bias","tyrannous","ensue","disorder","determin","scholar", + "greekish","nod","betters","boots","doomsday","bernardo","pattern", + "persuasion","dane","assault","lascivious","theft","carrion", + "thorough","dismal","shin","rocks","vast","merciful","biting", + "kinsmen","lions","thereto","deserved","francis","plenteous", + "running","iniquity","clean","feathers","derby","imports","female", + "slumber","faithfully","feasting","stirr","pageant","different", + "expense","whit","strives","dogberry","strato","den","wat","shriek", + "sequent","thumb","rebuke","moving","island","stealing","greasy", + "wrinkles","stabs","liar","modern","constance","succession", + "occupation","talks","notorious","suffice","ent","sweets","driven", + "weaker","injustice","shrift","fertile","homely","approaches", + "mariana","staying","web","fouler","hinds","descent","blessings", + "curtain","secretly","landed","moist","calchas","heal","rashness", + "whereupon","mountains","thorns","insolence","sober","truce", + "idleness","presents","wary","gloss","support","control","squire", + "knighthood","subdue","roof","proceeded","daylight","wayward", + "entreated","afoot","contain","slack","whe","expedient","lik","oil", + "volumnius","fence","lofty","sparks","despised","swallowed","grand", + "mouse","blast","err","upward","objects","overheard","adverse", + "dispos","crafty","coronation","ominous","plains","visor","ascend", + "skies","bastardy","doct","proved","humorous","verge","substitute", + "degenerate","practise","merriment","dam","ordinary","calling", + "humility","submission","cords","coxcomb","amazement","shroud", + "affright","entreaty","spider","ingrateful","motley","trash", + "perfume","trow","injurious","filth","revolted","collatinus", + "helenus","pedlar","murderers","abhorr","revels","overthrown", + "confines","market","narrow","swoons","muffled","pasture","household", + "debts","governor","split","excess","frederick","its","compell", + "wildly","charges","gets","vanquish","enters","drives","hop", + "athenian","pillow","reap","falcon","finely","infancy","changed", + "depose","eunuch","vill","leading","discipline","lance","peasant", + "swoon","devilish","restore","pounds","debate","expedition","cuts", + "careless","ganymede","divorce","deserving","tire","pastime","stare", + "offered","goodman","deserts","bestowed","ilion","resolved","summon", + "emulation","importune","fowl","minutes","taper","threaten","feeding", + "pricks","dolabella","fran","plight","aquitaine","foils","depend", + "underneath","indignation","robes","forgiveness","hunter","nobleman", + "marble","inclin","sticks","admitted","offenders","testament","spot", + "receives","persuaded","offender","ability","assistance","follies", + "hinder","hare","mortality","bites","wrestler","aye","crime","circle", + "speechless","peer","appointment","shaking","entirely","dropp", + "albeit","harmony","outlive","eternity","obtain","champion","beam", + "array","impose","lewis","consorted","distraction","progress", + "chiding","holla","dispense","eagle","begg","merchant","embassy", + "future","bushy","sympathy","voices","sugar","images","follower", + "unruly","parliament","careful","marrying","jesu","affects","frantic", + "steed","attain","pleased","kneeling","despise","agreed","silly", + "club","respected","barbarous","brazen","duties","yesternight", + "entreaties","penance","servilius","path","faintly","examine", + "fourscore","canker","lowly","reserv","greatly","whipping","interim", + "deck","barbary","disturb","require","circumstances","merits", + "strangers","kindled","hiding","argues","quantity","likelihood", + "lamentation","temple","foil","gnaw","causes","magic","armourer", + "centre","frighted","heave","contemplation","resort","hume","isis", + "allowance","assembly","woful","lewd","trusty","feature","nym", + "privy","chapel","inherit","chose","events","oliver","guards","remov", + "bitterly","creation","leaf","antic","rock","detain","rode","vaughan", + "hind","childish","exclaim","spade","paltry","irons","imminent", + "tyrrel","ceremonious","factious","security","sweeter","wak","wheels", + "holiness","display","antigonus","monsters","coffers","constancy", + "gravity","whoever","unlike","decline","human","surgeon","famish", + "frenchman","unity","element","strangeness","plainness","cheerly", + "alms","somewhat","frankly","belongs","tenderness","attire", + "necessities","plants","boist","differences","navy","stumble","ross", + "convert","triumphant","mum","dunghill","notable","diadem","ling", + "vilely","pilot","proclaimed","duteous","arrows","rumour","osric", + "articles","sweetheart","gazing","nam","pandar","cow","perilous", + "grove","frowning","liquid","heme","grecians","however","fates", + "abominable","stout","cases","sending","amazed","fills","coil", + "inheritance","planet","heaviness","liquor","drugs","greetings", + "residence","confine","easier","draught","abides","thrift","wisest", + "hovel","forfend","trot","quicken","seventh","flaming","scant", + "basest","rings","cargo","distinguish","mangled","madmen","lungs", + "seiz","pursuit","discovery","harmful","shrewdly","rod","welsh", + "considered","counsellor","idly","spear","reck","glance","disloyal", + "spill","manifest","watchful","gentry","parthia","hoar","winters", + "contracted","overdone","prettiest","buys","brass","breathes","foh", + "estimation","replies","trencher","breadth","model","breaths","built", + "stiff","trunk","brawl","scars","precise","salve","climate","crew", + "sale","walter","lustre","parties","maskers","miscarry","rat","pipe", + "overcame","ram","royally","berkeley","engag","venture","beggary", + "keys","admiration","swan","creeping","tunes","wretches","cue", + "hymen","member","zounds","adversary","discord","poisonous", + "function","breathless","swells","nearest","bars","flattery","amaze", + "rascals","bankrupt","permit","mire","revenges","prefer","scarf", + "fardel","impression","oxford","cruelty","surrey","opens","sorts", + "strings","suitors","horrid","protect","hearers","wrestle", + "observation","mantle","vigour","flying","commander","murders", + "mingle","presume","appoint","guides","falchion","seemeth","crimson", + "tyrants","gentlewomen","sacrament","trim","publish","agree","stains", + "shelter","neighbours","worthiest","generally","slipp","corporal", + "decree","scourge","stew","payment","chastisement","contrive","noses", + "worthier","herod","abandon","victorious","opening","forthwith", + "spacious","cowardly","gear","carve","arriv","thump","denial", + "normandy","gap","eke","northern","goods","statutes","moans", + "motions","wond","puff","tapers","size","wonders","extremest","smock", + "sands","counted","sacrifice","apothecary","bode","peculiar", + "figures","ducats","troubles","indifferent","warning","denies", + "clamours","belief","heralds","latest","eager","publicly","despis", + "groaning","continent","dissembling","afore","bridegroom","acquit", + "loses","adding","nathaniel","courses","citadel","mute","paul", + "apprehension","arden","dial","provok","honors","dian","measures", + "purg","blasted","repeat","repeal","revel","purpos","ingenious", + "lambs","flinty","transgression","streams","warp","warn","fulfill", + "hits","chides","reckoning","remainder","strucken","dice","courtiers", + "cudgel","dissolve","armies","rhymes","lucullus","player","shepherds", + "conception","liver","pulpit","prate","aloof","dirt","wickedness", + "cradle","soothsayer","napkin","avouch","mate","plac","rarely", + "regiment","tables","cloudy","tired","concern","venetian","tough", + "fifteen","companions","impatient","torments","lurk","courtship", + "sinon","likely","outside","ides","hills","bank","gallants","coffin", + "bedlam","tied","eating","shrunk","challeng","generation","usurer", + "desolation","rages","fram","whistle","surfeit","adversaries","fold", + "ware","praising","consort","forlorn","capital","rated","flaminius", + "thereon","storms","lightly","cities","mightier","beauties", + "parchment","praised","gilt","haughty","snake","wantonness", + "accidents","angle","ports","irish","unhallowed","swine","behaviours", + "digest","pursues","riddle","subdu","spark","selfsame","legate", + "virgins","dotes","closely","balance","arrant","dissuade","solemnity", + "liable","appeared","wounding","thames","moons","travail","comedy", + "nourish","condemned","obscure","justices","boundless","hereditary", + "battles","tucket","tak","samson","claims","alisander","soundly", + "conversation","rebellious","dwelling","grieved","gripe", + "advancement","hostess","beads","cutting","farthest","latin","palate", + "importunate","hue","fails","wight","leather","incensed","doctrine", + "dialogue","chamberlain","frowns","recount","propose","fery", + "calamity","fun","sung","silken","smil","board","latter","redemption", + "whet","cassandra","tiber","resolute","insolent","feels","apology", + "theatre","conspirators","heav","ghosts","asunder","chivalry", + "barber","fishes","mistaking","extend","sweep","ungentle","casement", + "shoots","nunnery","husbandry","roll","doubts","spain","smells", + "lick","domestic","sonnet","confin","breakfast","halfpenny","lunatic", + "exceed","faints","spied","inclining","grain","glories","betrayed", + "jades","severe","habits","embracing","flows","somebody","hasten", + "enfranchisement","orator","litter","brainford","branch","delivers", + "bench","griev","proudly","clitus","swifter","incline","penury", + "staring","usurper","brooch","probable","excursions","rests","jaws", + "divinity","mutual","dispers","jade","defiance","fret","longs", + "throughly","interpreter","allay","crush","perdition","pestilent", + "counts","unpleasing","bridge","rising","aliena","plate","jocund", + "bows","greets","porter","unwholesome","crystal","suff","forsook", + "globe","powder","comest","scarlet","returned","adder","pursu", + "debtor","german","important","effected","fiends","oyster","glow", + "joan","temperance","ills","peasants","levity","chiefly","fourth", + "mew","wedded","countess","slanderous","bands","whips","confounds", + "spectacles","harlot","depends","ecstasy","cleave","utterance", + "frenchmen","med","strait","distract","toe","leaps","tribute","lodg", + "clout","verily","weal","robs","seals","wretchedness","map","badge", + "syria","medlar","stalk","construe","enforcement","servile","bourn", + "meets","waits","stings","crosses","guts","hunting","servingman", + "turks","mounted","disgrac","battlements","devout","penalty", + "practices","restor","toads","murtherer","hoping","utt","itch", + "piercing","folks","during","imposition","covert","knives","shop", + "poise","wormwood","courtly","revenues","almighty","unjustly", + "incontinent","verity","instructed","ostentation","cipher","feign", + "worships","boarded","grounds","curtains","fortunate","muse","purple", + "marr","darkly","leader","moderate","winged","suppos","marquis", + "shines","deeper","howsoever","betide","truant","unfortunate", + "dances","bondman","wheresoe","blister","repute","grapes", + "schoolmaster","girdle","embrac","sores","laughs","daring","securely", + "proclaims","checks","tenderly","advancing","trail","mingled","musty", + "mistresses","masks","james","issues","signal","spectacle","howling", + "concerning","raised","departed","traffic","equally","recovered", + "pines","carriages","drab","sixteen","dominions","boughs","relief", + "numb","inches","bagot","speedily","yellow","commendations", + "voltemand","agent","edict","poisoned","jolly","coupled","gratiano", + "rosemary","certainty","car","prophecy","qualified","barr","generals", + "bitterness","chances","dismay","tops","served","womanish", + "englishman","madly","beadle","reynaldo","graze","passionate", + "descended","moody","crutch","ordinance","grapple","tail","remedies", + "prepared","unfit","howl","curious","accordingly","commended", + "sphere","westminster","deem","forestall","herd","rigour","dug", + "influence","herbs","hag","pleaseth","lass","admired","gild", + "slightly","cope","misfortune","turkish","courageous","cook", + "devoted","witty","ghostly","wednesday","eyeless","contend","bill", + "sland","discharg","beards","barks","fondly","misdoubt","expected", + "sequel","commanders","serpents","persever","admittance","kite", + "negligent","watching","rust","importing","waxen","translate", + "hopeful","sojourn","bawdy","tickling","arraign","arts","education", + "infants","wiltshire","posterity","fruits","compos","pirates", + "chains","cottage","helping","wedlock","rhodes","devour","luxury", + "antique","shepherdess","compound","lamented","conflict","wisdoms", + "forked","thunders","simply","jewry","jump","feelingly","earn", + "rhetoric","celestial","capulets","distinction","protestation","hart", + "honestly","alliance","downright","sow","iden","ladder","fitted", + "quarrels","pricket","lioness","ungracious","untainted","cog", + "hunger","session","eyesight","austria","proverb","goot","eagles", + "rancour","ornaments","paradise","fathom","abstract","blaze", + "branches","danish","surpris","dower","butt","simples","letting", + "soar","obligation","preserv","neat","grievously","judg","buzz", + "discomfort","crab","extended","winking","darts","compulsion", + "imperious","submit","builds","enquire","lively","declining", + "quillets","montagues","windy","losses","entire","hautboys","poorer", + "tuesday","appellant","revengeful","adore","pranks","mongrel", + "decrees","headstrong","dole","monuments","liars","wage","bonny", + "tempts","fantastic","wholly","bleak","fully","thievish","hidden", + "sisterhood","rub","gaudy","wart","religiously","sufficient", + "infects","vent","constraint","concludes","utters","valued","resides", + "bravery","sailor","spurns","petitions","brands","homage","nilus", + "seasons","shooting","abr","whale","unmask","tripp","detestable", + "embassage","nods","sly","prattle","exceeds","grieving","lowest", + "unloose","bleeds","halt","bootless","requital","defect","arrive", + "opposed","acted","happen","detest","rushing","healthful","reconcile", + "purchas","retir","hawk","declin","hies","measur","eyne","prodigious", + "defil","altar","estates","fist","slippery","accurs","purgation", + "honoured","operation","directed","overcome","breasts","attach", + "unborn","distressed","kites","practis","castles","dragon", + "digestion","barefoot","curb","auspicious","western","heraldry", + "codpiece","actors","uncles","interchange","quest","treasury", + "gorgeous","aweary","stealth","drag","bringing","ravenspurgh", + "richly","doubted","sprite","abject","answering","hive","played", + "carrying","nevils","sicily","nigh","balls","tore","visiting", + "career","belied","nile","disclos","chest","scroll","eastern", + "succeed","amend","chorus","lafeu","miscarried","galled","organ", + "lethe","compel","midst","plough","highest","reliev","canidius", + "phrygian","juvenal","gallop","ague","attaint","frenzy","tigers", + "comparison","instances","exquisite","sailors","italian","bur", + "acold","nightgown","converted","singular","suspected","parcel", + "flaw","flay","fitting","credulous","unmeet","countryman","blade", + "pelting","ambush","dishonest","salutation","anchor","peaceful", + "enforc","millions","provision","method","rape","syllable", + "ceremonies","scald","faiths","shifts","papers","recovery","wip", + "physicians","planets","reputed","rats","stony","currents","midwife", + "hound","conveyance","happier","opinions","plume","cheerfully", + "necks","advanc","platform","compounded","mote","moth","fashions", + "smelling","violets","impiety","pupil","sleepy","trip","omit", + "springs","territories","dues","survey","impress","usage","bathe", + "wishing","incertain","climbing","roots","companies","atone", + "lighted","waves","whores","pluto","lawyers","wrote","expressly", + "pith","trivial","flavius","dishonoured","legitimate","direful", + "meditation","errors","confessor","bawds","fitter","royalties", + "unlook","expos","uncleanly","calumny","learnt","chatillon","bag", + "bak","ban","finish","sunder","pent","ravens","chosen","fitness", + "braggart","trojan","pulls","ignoble","cage","workman","musician", + "populous","timeless","imitate","alteration","reckon","pulse", + "professes","cures","christendom","unclean","speeds","sanctified", + "bags","complexions","opposition","partake","pavilion","caps", + "tewksbury","cars","vainly","misled","earnestly","vehement", + "nightingale","camel","vexation","invited","dearth","whatever", + "lances","costly","convenience","flatteries","baggage","expecting", + "sayest","peruse","protection","monday","vicious","pronounc","surge", + "yare","bruise","jointly","rely","countries","rent","shorter", + "morsel","chambers","terrors","isabella","surprise","provokes", + "courtesies","entrails","attorney","proculeius","temples","reveal", + "crowned","transformed","travell","passions","christ","famine", + "lastly","jester","continuance","partial","conspire","danc","receipt", + "garlands","complaints","filling","hook","doe","creditors","feared", + "diligence","lineaments","forswore","characters","tragedy","impious", + "restrain","esteemed","malicious","cornelius","volume","wasted", + "scornful","approbation","bequeathed","framed","captains", + "soldiership","doubly","annoy","dedicate","indirect","carpenter", + "lace","advocate","ely","chiefest","abbey","helps","subscrib","grape", + "arbour","lamp","lash","malady","drunkard","lawn","worshipp", + "praying","minority","spheres","snuff","beggarly","fin","correct", + "conspirator","infallible","plantain","overthrow","distill", + "dignities","basely","nettles","prunes","retort","created","lodges", + "principal","blench","profits","gav","excuses","replied","cleft", + "belie","wrongfully","tasted","sepulchre","reprove","quoted","gor", + "frights","rite","whatsoever","encounters","shamed","apish","blots", + "pistol","hem","spout","crocodile","treble","cedar","poisons", + "drunkards","hoo","fasten","bigger","hug","priz","calendar", + "conquerors","laments","labours","pangs","dispraise","mounting", + "convoy","icy","arrived","organs","capacity","wages","exact", + "gregory","posts","harness","needle","arch","starve","minion", + "discredit","ilium","watches","disperse","wrack","deeply","nations", + "thigh","folded","jar","allies","myrmidons","bridal","boat","jig", + "shoe","frost","lodowick","dissemble","sincerity","louder","soever", + "wealthy","aspiring","quarrelling","dexterity","dejected","outface", + "festival","boon","shrine","peerless","ghastly","dally","gorge", + "robin","handle","contradict","collected","ken","bottle","vizard", + "incur","disaster","clip","pours","entreats","reverent","porridge", + "hallow","smack","clog","mansion","searching","clothe","wrangling", + "pious","benefits","containing","daggers","brutish","chariot", + "safest","smart","moonshine","cashier","headlong","despiteful","farm", + "affords","pipes","prompt","arming","nether","soften","enrolled", + "commonweal","colder","brothel","gesture","challenger","wooed", + "wooer","taint","incestuous","formal","tickle","inconstant","hearer", + "housewife","queens","shuts","relieve","knots","oppressed", + "wherewith","confounded","showed","parle","trudge","peremptory", + "clears","across","unrest","dungeon","withhold","seventeen","brag", + "sweating","majestical","clamorous","excels","mud","lily","ensign", + "rous","rout","thaw","hanged","renew","skirts","celerity","fickle", + "affrighted","locks","eggs","accord","proceeds","amiable","pander", + "holes","continual","non","athwart","enjoin","ruler","rules", + "wrangle","nativity","sighing","nut","pirate","coals","rutland", + "turtles","knightly","scattered","betake","maccabaeus","ending", + "awry","wanted","sheriff","effeminate","dealt","assign","brethren", + "endless","gloucestershire","desired","worthily","abhorred","snail", + "qualify","orb","marketplace","supple","british","lineal","empress", + "pauca","firmament","seated","advised","hammer","zealous","cowardice", + "comparisons","implore","gowns","solace","odious","thorn","pearls", + "beguiles","hastily","pot","citizen","offends","sextus","reprieve", + "endeavours","foretell","foulness","lordly","overture","apes", + "cordial","nurs","pleads","wrench","swallowing","studies", + "dispossess","changing","linger","triumphing","propos","massy", + "drave","yeoman","accidental","senator","forgotten","aches", + "adultress","victor","portion","trib","brooks","restless","arrow", + "lucky","arguments","flatters","paces","remiss","chronicle","weighty", + "drowns","assistant","intellect","impudent","niggard","doleful", + "blossom","cramm","cart","truncheon","combine","glean","simpleness", + "cited","manifested","authentic","canon","dank","daub","gibes", + "twigs","usurers","tenth","imaginations","gardon","rails","circled", + "succeeding","haviour","broils","vaulty","approof","longest","rive", + "void","delivery","rider","oratory","shell","orators","earls","bate", + "galleys","predominant","broach","grudge","wield","daws","rounds", + "bolt","attention","pins","derived","beckons","fretted","chuck", + "string","lamenting","shrink","perceived","parcels","digested","bald", + "herring","provoked","leans","datchet","crutches","smelt","requir", + "wilderness","mates","dun","roger","delighted","refused","bended", + "excepted","gape","abraham","dreaming","kennel","lightness","fairs", + "mandate","withheld","countermand","stray","achiev","slime", + "repentant","bearers","antonius","bolder","doctors","dispute", + "bullets","potion","epilogue","discarded","humbled","poland", + "unseasonable","doricles","whining","stayed","maim","bide","galls", + "suffered","butchers","prouder","slips","duller","haunts","beest", + "constantly","tribe","uncertain","reservation","burthen","touraine", + "parallel","earthquake","invocation","imputation","unaccustom", + "nonino","advances","vial","cuckoldly","crooked","rewards","spices", + "prating","prescribe","whereat","larger","alacrity","manifold", + "margent","banners","forerun","meagre","bits","abate","summons", + "demonstrate","trembles","warr","thrifty","carved","gay","probation", + "mourner","venison","uncover","foresee","weeks","orders","boil", + "heath","saddle","pie","piety","teachest","conceited","possessed", + "dates","anchors","benediction","beguiled","slaught","stamps", + "ensues","serving","civility","grin","inferior","scathe","meanings", + "veil","chat","examination","leprosy","validity","duly","strains", + "summers","defects","suppliant","battery","surrender","suburbs", + "elizabeth","mounts","showers","canary","erring","pages","feats", + "therewithal","pry","whoe","surly","vestal","consenting","polack", + "bee","sentenc","foresaid","greediness","treads","kerns","puddle", + "lightens","tailors","tending","warmth","corpse","pretence","foam", + "begs","palmers","wantons","methoughts","soonest","lecher", + "incorporate","proudest","geese","offspring","abode","washes", + "admits","bier","abed","displeas","strangle","cloaks","minstrels", + "brand","highly","glib","december","kindle","skulls","faculties", + "arrogance","spaniard","amber","candle","anguish","furious","admir", + "justify","male","enjoying","chafe","burdens","salvation", + "controversy","depending","mayest","bishop","sever","herb","solicit", + "sinking","striving","reverse","sweeten","consideration","pinion", + "choleric","wins","instructions","breathed","trifling","blocks", + "observ","schools","popilius","oaks","insinuate","freer","sues", + "welshmen","banner","needy","demanded","mockery","cop","wasteful", + "abstinence","hay","footman","conjuration","christians","rabble", + "source","scales","florizel","prizes","furr","beer","engage", + "slaughtered","roars","reserve","trod","truths","steads","precisely", + "obsequious","exil","giv","witnesses","slavish","winchester","idiot", + "enrag","determination","engirt","chairs","crust","bandy","regreet", + "flourishes","gazed","uneven","wilful","lawyer","murderous","jet", + "intelligent","sociable","saith","murdered","plucked","chaos", + "gossips","poorly","intolerable","stag","raz","refuge","starv", + "unpitied","sports","reference","descried","chaps","towers","turned", + "comely","ungovern","stable","portents","privately","supreme","doers", + "helpless","transformation","hen","arithmetic","adders","rag", + "illustrious","apprehended","smithfield","yawn","preposterous", + "amain","dart","hatches","cain","sped","dukedom","consume","vapour", + "contagion","excepting","additions","hellish","cured","churl", + "consuls","remote","hood","stratagem","uttered","lain","inconstancy", + "crop","visible","pence","murtherous","bit","beck","discern", + "buttock","forbids","maidenhead","provinces","livest","unsettled", + "spar","bountiful","mischiefs","offending","dumbness","unusual", + "damsel","sprung","coventry","bubble","desiring","gamester","qui", + "started","pursuivant","shifted","clerk","tarried","asses","conjur", + "particulars","francisco","glasses","gaoler","naming","labor", + "calais","license","muddy","aright","chok","accessary","sable", + "blossoms","chop","disdainful","conclusions","betime","vicar","fated", + "travels","readiness","richest","relics","pierc","painful","lane", + "eminence","approves","lank","chill","flatt","miracles","legacy", + "diamonds","retain","greedy","vowed","pointing","slowly","rascally", + "vision","bloodless","mince","shaft","cliff","broker","comment", + "fleeting","casket","agrees","cropp","playfellow","percy","poetry", + "bauble","charged","toothache","thinkest","vapours","amended", + "surmise","languish","sinn","obscur","functions","feasted","hir", + "varnish","melun","steeds","patron","kinds","clime","clink", + "suspects","contemn","swim","crowd","singly","family","arrested", + "murmuring","disclose","devours","descry","camps","lucretia", + "dimpled","befits","beholds","unluckily","throughout","dissolute", + "reform","benefactors","tiger","blazon","discourses","distaste", + "tenour","swinstead","toss","frogmore","punk","index","providence", + "weakest","lackey","selves","forfeits","hyperion","excus","snatches", + "potency","laur","sways","blinded","forgo","dick","offering", + "impotent","tires","annoyance","dido","evasion","declined","recorded", + "accursed","embraces","prevention","fortnight","swing","curled", + "mould","infectious","avoided","ninth","cleomenes","ballads","goats", + "sufficiency","sinful","skins","heedful","bucklers","meals","impeach", + "lid","lin","rushes","extenuate","begets","sparkle","million", + "meritorious","encourage","teaches","mournful","aery","imaginary", + "hoa","cheap","envenom","wooes","hog","islanders","mended","lot", + "dispositions","guardian","downward","puissant","havoc", + "henceforward","dive","buckled","resemble","permission","urging", + "heigh","weighing","tearing","mast","heretic","merciless","lazy", + "distrust","civet","deities","shunn","levied","exhibition","emulous", + "prophetic","spits","unpeopled","regards","boisterous","railing", + "barbarism","sampson","mature","corners","traitorously","discords", + "conceived","persuades","relate","weighs","complaining","factions", + "stead","lovel","mardian","venge","athenians","bruised", + "caterpillars","curtsy","martial","freeze","magician","abortive", + "coffer","revive","grac","road","pembroke","cracking","cabin","pless", + "enchanting","carelessly","quote","exempt","rudely","braving", + "relation","brine","packing","skip","meal","plenty","hint","hearty", + "minist","paying","meg","consum","larded","solely","blacker","sups", + "nail","raining","warrior","grange","meek","dolour","compassion", + "eyelids","curiosity","obsequies","knell","bran","wrinkle","presses", + "brat","conquering","commendation","fig","businesses","trusted", + "commanding","mix","recreation","waken","greyhound","wittenberg", + "dregs","bardolph","wards","grease","unmannerly","ambles","seleucus", + "rood","agony","clouded","palter","rook","carefully","crotchets", + "beholders","foolishly","shock","placed","invest","knavish","charter", + "planted","suns","adultery","fraught","suited","exclaims","stinking", + "modestly","trace","breeches","accounted","deceas","dissolution", + "prospect","noting","suffering","flag","tides","savour","channel", + "tithe","link","spotless","yard","external","infer","ashore", + "sunshine","clearly","commotion","adds","vulcan","masque","comforted", + "impossibility","ditch","stomachs","alarm","cursing","deliverance", + "maria","ransack","credo","sardis","apoth","asking","alehouse", + "violate","scraps","haud","peck","marseilles","sorely","magnanimous", + "thetis","harp","makest","hypocrite","enclosed","wiped","purblind", + "pleading","spell","mutually","denote","obdurate","depriv","gentler", + "unwilling","afterward","suborn","chimney","hoarse","hypocrisy", + "repetition","depth","arbitrate","pursued","brotherhood","coach", + "wildness","lawless","seriously","meaner","ruled","gonzago","ivory", + "antiquity","varying","russians","ensuing","regal","attendance", + "core","matron","finer","intending","pear","acting","olympus","ebbs", + "nun","preferment","ewes","logs","esquire","scatter","firmly", + "burgonet","purest","hitherto","slanderer","estimate","chanced", + "glittering","immaculate","attempts","din","afflicted","sparrow", + "sinewy","dardanius","animals","creeps","tumble","promising","taunt", + "urged","expose","bruit","trophies","agate","credence","misprizing", + "decreed","unthankfulness","violently","dawning","military","trump", + "wooden","hoop","folk","curiously","undiscover","feeders","buckle", + "lionel","shent","pudding","misprision","lute","whiter","discoloured", + "stall","lanthorn","counterfeited","elected","unmatched","color", + "mortified","frighting","cripple","dow","accompt","gum","carp","gun", + "safeguard","varied","brawling","poniards","repeals","mainly","bane", + "helmets","card","sententious","elbows","peering","withered", + "browner","deposing","perus","meteors","copied","falconers","baynard", + "milky","carlisle","hardness","loathes","combined","gnat","radiant", + "promotion","lusts","properties","assays","shorten","successive", + "olive","conjunction","untrue","gelded","spiders","indirectly","asp", + "properly","graceless","millstones","reprobate","cursy","blowing", + "subornation","moralize","enfranchise","blotted","raze","ptolemy", + "sandy","reside","resting","swerve","dighton","unsure","mail","wheat", + "pink","opportunities","seizure","monarchy","angling","contention", + "clerkly","lifeless","saws","advanced","monkey","taunts","sufficeth", + "slumbers","mocker","bated","gender","lump","mellow","crier", + "wearied","heroical","straws","gladness","porch","changeling", + "button","undoing","goblins","smoothing","loser","idolatry","proffer", + "consumption","members","decorum","lunacy","replete","rapiers", + "origin","alabaster","imp","smothered","reels","expend","authorities", + "bedrid","commenting","puritan","sounding","posset","lottery", + "misshapen","assemble","artemidorus","catching","cank","solicited", + "preferr","tends","unhappily","cockatrice","accents","petitioner", + "interchangeably","abundant","bareheaded","pulling","eas","leer", + "musical","incapable","committing","leaning","puissance","afresh", + "mutton","juice","ashy","bugle","unadvised","halters","pelican", + "remembers","defective","frames","utterly","casting","maecenas", + "patrimony","lending","sicyon","couched","muddied","semblable","eel", + "trespasses","accused","stairs","heaps","diseas","disputation", + "station","monkeys","valor","clutch","credent","maidenheads", + "foresters","teem","caper","honester","looked","napkins","unavoided", + "momentary","wreath","bees","cancelled","sainted","nineteen", + "prophetess","bristow","meddling","unfelt","graff","phoenix", + "perceiv","passado","graft","heathen","regist","deceitful", + "confirmation","gaming","fitzwater","pill","resemblance","strifes", + "eld","births","entomb","mort","ruthless","caparison","curtsies", + "accuser","orderly","controlment","reek","rudeness","cough", + "enfranchis","protectorship","files","ardea","shamefully", + "transparent","panting","omitted","swor","pageants","teen","forester", + "bustle","hew","scum","curer","remorseful","proscription","kinder", + "thirsty","matches","capon","neigh","stephen","mann","professed", + "imagin","isbel","dictynna","footed","taints","nearly","workmen", + "tabor","doubtless","valentine","ruffians","anew","controlling", + "europa","hent","contriving","delays","keel","exactly","engine", + "begging","position","badness","customary","startles","conjured", + "palpable","conjurer","conjures","picked","waving","flew","mixture", + "triumphs","pois","handkercher","disgraces","pendent","pigeons", + "adjunct","beetle","attainder","curan","savageness","grasp","incest", + "yew","tortures","hitherward","parish","refer","threatens","bookish", + "mule","beau","guise","via","prophesied","stoutly","ignobly", + "wailing","prefix","insupportable","protected","opposites","eighteen", + "chests","adulterate","vines","inferr","namely","threes","oily", + "eves","heifer","resistance","crassus","wherever","blackheath", + "kentish","accompanied","performed","subjection","ludlow","expects", + "creditor","convince","reconcil","dardan","toasted","portentous", + "limited","accurst","russian","edmundsbury","sterile","blemishes", + "laud","melts","qualm","dutchman","redeems","puppies","presumption", + "wrapp","hardy","covering","bribes","hogshead","posted","perplex", + "unmasks","facility","waited","stumbling","unprepared","begone", + "standards","dere","properer","prostrate","dissolved","conferr", + "passages","marked","mary","goal","poictiers","withdrew","missing", + "videlicet","vents","galen","gratis","scripture","interrupt", + "burying","propagate","pens","comply","penn","lowness","prerogative", + "prescience","sprightly","triple","unhandsome","prisons","cicatrice", + "guile","lifts","importunes","drudge","claws","ranker","familiarity", + "rumours","pompeius","vizards","unwieldy","insinuation","messes", + "invent","fleer","curfew","skilful","pictures","bashful","bobb", + "monumental","jesting","promethean","failing","crosby","anybody", + "woodcock","shilling","posture","roundly","visited","metaphor", + "nickname","owed","timandra","wronger","refus","superstitious", + "hereby","volley","delphos","cannons","determined","importun", + "besiege","formerly","petter","woodman","rusty","contraries","bodkin", + "misdeeds","vipers","watery","flax","watchmen","plunge","gallops", + "pathetical","cheers","hotter","heartless","societies","reflection", + "caudle","lender","shipp","residing","arragon","mamillius","cools", + "acceptance","carbonado","timorous","brood","directions","figur", + "engaged","thereabouts","plashy","strengthen","keepers","abilities", + "alencon","dilated","spilt","transported","exercises","replication", + "purer","chidden","watchman","mistaken","thrives","vials","flush", + "rivals","muffler","forgetting","choked","professions","splinter", + "gulf","oxen","gull","desirous","menace","wonted","recorders", + "applied","extravagant","apparell","vassals","strongest","fry", + "astonish","prolong","traverse","audacious","embossed","peeping", + "infirm","nominate","catastrophe","stride","merited","unthrifty", + "condemns","thrusting","guerdon","recourse","venomous","sacrifices", + "variance","porpentine","conjoin","lecherous","defile","tarquinius", + "relenting","forges","commoners","counterfeiting","everywhere","ver", + "portal","touchstone","brick","dusky","unacquainted","frosty", + "perceives","traduc","sanctify","define","gust","testy","confer", + "undermine","courts","councils","leisurely","bribe","rejoicing", + "nowhere","rattling","anchises","unwillingness","lamely","strip", + "exeter","lodged","appearing","endow","parching","slaughters", + "imperfect","delightful","sparing","sage","buildings","cavaleiro", + "sear","temperate","repays","quondam","meditating","destin","fitly", + "sprinkle","sceptres","eloquence","levell","humh","presages", + "choughs","expel","united","exton","shap","older","interruption", + "halting","chafes","stripp","seed","hoodwink","sorel","queasy", + "offal","seel","binds","striking","grosser","saucily","vacant", + "preys","unfurnish","rapt","ate","arrival","stares","splendour", + "hollowness","rarest","milan","forfeited","ruffle","tenant","bushes", + "jumps","copper","whitmore","insulting","violet","rice","vanquished", + "banqueting","volumes","maintains","expire","twinn","thronging", + "sagittary","hotly","remembrances","contaminated","assails","hover", + "comprehend","butter","parentage","jelly","raught","inky","gem", + "differs","tasks","scarfs","interprets","mightiest","consummate", + "jacks","beautify","shave","revelling","pennyworth","everlastingly", + "levy","appointments","recoil","talent","blackness","robbing", + "dreadfully","converts","petticoat","instigation","sued","waxes", + "clubs","perpend","tastes","gig","exterior","quietness","expiration", + "temporize","contagious","proportions","wrapped","conceiv", + "nakedness","britain","cloister","diomedes","dugs","durance","freed", + "pottle","excrement","gavest","defiles","twofold","consecrated", + "coronet","restitution","servingmen","bestowing","groats","enlarge", + "advisedly","collection","brandon","insatiate","forsaken","brawls", + "blackest","incision","whirl","tetchy","susan","teeming","ripened", + "bondmen","majesties","sicken","purses","judicious","welshman", + "unchaste","weasel","alps","cormorant","promotions","quirks", + "vessels","strawberries","indignity","robbers","unprofitable","limed", + "softest","snakes","draughts","regarded","scatt","extent","brew", + "revolting","schedule","mines","lieu","unite","rainbow","fainted", + "thankfulness","glassy","vilest","outstretch","obloquy","controlled", + "riots","attires","bounties","teaching","woodstock","defame", + "disarms","absurd","seduced","brib","uttermost","revolts","brim", + "ail","cloven","views","fooling","solus","shooter","whetstone","bon", + "brakenbury","prophets","fang","passengers","rocky","martext","bout", + "naples","seduc","caves","convers","suggested","parthian","wrestled", + "sharper","proposed","worthless","shins","ginger","lime","bewept", + "franciscan","disclaim","avis","devouring","misenum","prabbles", + "novice","caus","instructs","nony","unnoted","achievements", + "faultless","borrowing","lacking","shades","perch","sinners","signet", + "test","forgiven","befriend","foams","dragons","lisp","wandering", + "cozening","lout","lour","rarity","approv","ducks","file","capers", + "downfall","thankfully","motives","earldom","perils","disobedience", + "orphan","congregation","lag","andromache","vacancy","maidens", + "deathbed","blanket","precepts","amount","fixture","underprop", + "phrases","sayings","ornament","covetous","coal","seeds","dropping", + "plagued","bonnet","congeal","advantages","defac","hats","abound", + "bawdry","shortens","nev","digg","deriv","shapeless","thickest", + "whisp","figs","incident","sixty","enchanted","lousy","fancies", + "dishonesty","geld","dullness","hawking","augmenting","fife", + "lolling","genitive","forbearance","newer","sequence","captivity", + "stamped","receiving","turf","fragment","ragozine","impudence", + "alban","resembling","cogging","gentles","snatching","mildness", + "wrest","gossip","eyeballs","inter","sug","whispering","candles", + "truest","narbon","stubbornness","sty","hermit","beheaded", + "continues","satyr","lilies","aldermen","mortals","conjecture", + "germans","cudgell","impute","examined","conn","erect","waning", + "tutors","remaining","leanness","sponge","quean","pities","infringe", + "attired","suggestions","knighted","sheathe","appearance","tragic", + "minded","paradox","sallet","eton","resist","register","acknowledg", + "cord","hilts","daff","nonny","college","halts","hopeless","foppery", + "parrot","toucheth","thatch","hale","libya","pedant","justified", + "sprites","vale","plentifully","dimm","combating","vane","adversity", + "sweetness","drowning","engender","fork","foundation","nicely", + "fitchew","clowns","lim","dig","lucretius","actium","russia","sop", + "dogged","sustaining","supplications","active","inflam","commune", + "sol","cattle","moulded","confederate","paths","knog","comforting", + "aching","ding","inhabit","ducdame","courser","disposer","willoughby", + "competitors","prompted","disposed","deiphobus","plutus","jail", + "discreet","commerce","removing","tempests","synod","complices", + "dion","mustard","westward","apparition","bestial","dip","darling", + "loam","guiding","buffets","penetrable","sallets","composure", + "stately","erewhile","imitation","gules","similes","sift","handiwork", + "stabbing","clergymen","captives","solid","counties","addle", + "poisoner","avails","hearted","undoubted","anthony","adoption", + "wooers","fresher","lucifer","autumn","shrouded","bravest","devised", + "timber","dissever","chants","austere","collatium","inundation", + "behove","dignified","slower","settle","quaint","pitifully","excel", + "tongueless","tenders","exceedingly","warble","renders","embark", + "quis","jointure","belonging","englishmen","consented","chertsey", + "merchants","suppress","meats","discoveries","halter","acquire", + "believing","ord","horrors","rubs","suggestion","equity","sparrows", + "hales","rubb","mattock","copies","digging","summit","repay", + "mantuan","disobedient","refrain","marcheth","quod","cruelly", + "excellency","retiring","cats","enkindled","compt","carters","quiver", + "enraged","necessaries","fees","drove","entertained","expostulate", + "surnamed","lovest","libertine","tortur","jephthah","wanteth", + "engines","conduit","buckles","countercheck","penitence","snare", + "presage","herne","sects","student","widower","establish","stalks", + "painfully","doves","godly","tuft","sinister","desolate","plea", + "values","saves","privily","garb","marches","vere","flattered", + "seacoal","importance","stafford","beaver","despairing","invites", + "formed","sportive","unlawfully","hangers","aspects","burneth", + "placket","conceits","clad","shuns","statesman","tediousness", + "thereupon","righteous","kissed","pah","hannibal","quittance", + "sentences","aptly","paw","stumbled","mechanical","epithet","clod", + "exclamation","sieve","sparkling","sailing","benedictus","respecting", + "wails","portly","beldam","inside","gratulate","reversion","clos", + "merrier","roasted","ruinous","counterpoise","overtake","bonfires", + "cloy","unfeignedly","melting","soles","smote","deformity","devoured", + "extant","robbed","shears","canopy","melodious","accomplish","pil", + "privacy","suggest","posterns","untaught","shares","oration","remit", + "kerchief","allons","fulsome","transport","variable","range", + "abusing","appetites","ply","unsatisfied","unseal","horribly", + "strangled","bleat","tinct","tun","limits","boskos","tug","coxcombs", + "realms","aprons","sanctimony","flashes","marking","remorseless", + "pinnace","grossness","rashly","bethought","supplied","saving", + "brach","plausive","undertakings","augurers","province","dolours", + "mannerly","duck","bolts","affrights","rescued","sluttish","celia", + "tavern","misty","allows","misgives","interr","misus","discovers", + "divides","brags","flown","judges","divines","trusting","prone", + "bishops","scold","kernel","darken","lesson","roughly","discovered", + "lunes","unkindly","smoking","doubled","partisans","desperately", + "sharpness","hazards","tenants","undeserved","whoremaster","abhorson", + "churchman","bedfellow","burs","stables","decays","deprive", + "ottomites","discontents","virtuously","gotten","clouts","sourest", + "forrest","tarre","ambling","outrun","mutinies","quietly","waft", + "aspic","thicket","ponderous","injur","churchmen","nomination", + "subdued","inhuman","sobs","silius","iris","fearfully","marrow", + "strut","graceful","scour","subdues","floods","creating","helmet", + "chaff","deputation","atomies","escap","beweep","noblemen","meetings", + "fainting","malignant","cups","material","upper","mab","fetches", + "breather","misuse","combatants","curate","dames","hallowmas","cram", + "maw","diable","unclasp","unworthiest","vineyard","lapwing", + "unfolded","changeable","succour","argal","slipper","mice","carnal", + "damask","shouting","difficulty","unstained","allowing","accustom", + "thrall","counters","chastis","varrius","juggling","retired", + "southwark","steer","humane","spectators","stormy","mead","bruis", + "sycamore","engross","inheritor","divisions","fornication","hoist", + "masterly","doff","alias","shamest","rancorous","alt","purposed", + "deathsman","rugged","anywhere","artificial","thicker","stink", + "disasters","animal","mental","bearer","plotted","hired","homicide", + "ounce","returning","snares","ethiope","gerard","jule","appeach", + "favourites","consult","tott","isidore","enthron","assailed", + "incurable","worcester","apprehensions","exception","ashamed", + "vagabond","swallows","nuns","goddesses","squar","cloth","mint", + "idol","paragon","infirmities","dumps","spokes","livers", + "commendable","briers","cozened","fretful","smoothness","eclipses", + "threefold","apiece","approaching","darest","bray","throngs","winks", + "span","ruins","beautiful","wares","cooling","union","brittle", + "excellently","prodigies","albion","lengthen","bestrid","mist", + "manent","puny","required","deject","dependants","hunts","paradoxes", + "positive","jog","voluble","riddling","epithets","allowed","scouring", + "diminish","grizzled","unwash","partners","closes","proverbs", + "module","poorest","pennyworths","spending","unquestion","inkhorn", + "crouch","gambols","awful","records","rolling","unmeasurable", + "miscall","eminent","inseparable","marquess","bridle","sunburnt", + "louring","toothpick","seats","indiscretion","comparing","offic", + "grates","cheapside","hunted","muscovites","respite","whirls", + "unconstant","neutral","coy","woos","churches","asia","climbs", + "cancel","dungy","sweeting","team","sterner","fealty","croak", + "observed","sluts","molten","observer","readily","nests","reviv", + "asks","sunset","sempronius","horner","vouchers","gauntlets","grated", + "horned","crowner","besmear","scion","conversion","tract","perge", + "frustrate","unreverend","cement","perfections","substitutes", + "audaciously","domine","inflict","thereunto","pencil","inherits", + "arrogant","maintained","recantation","subscribes","blades","pouch", + "persuading","soundest","inherited","displayed","unfolding","basis", + "huswife","conjunct","jude","puppet","blossoming","matchless","bin", + "sentinels","scare","misbegotten","fadom","academes","whirlwind", + "alcides","bellowed","potential","swimmer","crownets","smirch", + "supplication","scroop","apprehensive","smaller","satire","mannish", + "deposed","forcing","communicate","crescent","viewed","amazedness", + "multitudes","dissembler","experienc","bans","retail","brokers", + "advertised","harshly","disjoin","flats","profitless","smocks", + "claps","singer","sultry","perdy","mediators","daisies","interpose", + "bang","threshold","temp","larks","attentive","scurrility","tangle", + "cannoneer","frightful","disrobe","fusty","flags","turrets","claw", + "deceives","revolution","insociable","galley","fruitfully","ordered", + "spares","overcharged","fighter","deserver","cherry","experiment", + "actaeon","betrothed","scolding","plighted","brightness","warranted", + "nouns","bereave","convertite","unhappiness","ball","unconquered", + "rabblement","sorrowed","autolycus","shady","counsellors","standard", + "awkward","dulcet","orbs","loneliness","deliberate","bracelet", + "forthcoming","discovering","clients","arn","russet","unhoused", + "compelled","forgery","eater","apprehends","ruminate","livelong", + "myrtle","britaines","removes","fogs","simp","perfum","charactery", + "mutes","blushed","dwarf","imperfections","landlord","dotard","smoky", + "scanted","mindless","furnace","saluteth","corrects","sequest", + "bladders","constables","alexandrian","wrested","beforehand","waggon", + "lamentations","mirrors","destroyed","reckless","households", + "indifferently","cape","contemplative","forego","reprehend","likest", + "postmaster","lordings","profan","tombs","marjoram","darted", + "monarchs","morton","mechanic","inwardly","tanner","attir", + "appliance","thyreus","surcease","shipwright","lubber","focative", + "hobgoblin","couples","polluted","moneys","quits","regions","trance", + "rooted","ordering","abase","descant","accepts","suspend","spurring", + "strik","victories","haught","fineness","hearsed","forefathers", + "freshest","impure","bitt","prentice","sakes","broil","faded", + "shouts","thwart","suffic","woodcocks","scab","divulged","mumbling", + "peard","winnowed","hatfield","scap","nipping","splits","brabbler", + "basilisks","encouragement","hermitage","illegitimate","plated", + "consecrate","sworder","tattling","awork","pillar","vulture","alice", + "speciously","footpath","gualtier","descending","consents","entering", + "glares","useful","revellers","smites","nemean","unbruised", + "dallying","science","stagger","weaver","ates","beetles","weaves", + "destroying","sheath","turbulent","prompts","confounding", + "torchbearers","disgorge","tormenting","sells","kitchens", + "confirmations","unexpected","cuckolds","breaches","forgetfulness", + "tartar","pribbles","unseason","stifled","tarrying","headborough", + "confederates","chapless","coaches","celebrated","magistrates", + "shrieks","concealing","loads","patents","expert","sluggard", + "carcass","requiring","succeeders","esteems","pained","whelp", + "stoops","fraud","torrent","fulness","pardoned","curls","plod", + "invasion","ravishment","hectors","fashioning","forgets","demesnes", + "oyes","tumbling","unscarr","emboss","biscuit","abram","filths", + "heedfully","lamentably","horridly","vexed","liker","restrained", + "houseless","pump","grovel","miscreant","counter","sizes","poole", + "lenity","attraction","discard","givest","scotch","exigent","pursy", + "pepin","circumstantial","shelves","humbleness","bricklayer", + "benison","palates","cydnus","spends","pushes","lendings","mermaid", + "harlots","birthright","multiplying","licence","bequeathing", + "writings","reconciled","chastely","orts","dispensation","engenders", + "uncurrent","unfirm","reconciles","flask","wool","scarcity","quails", + "expressure","inquir","violation","insurrection","violated","edified", + "revolving","ventur","distemp","india","divinely","flash","includes", + "feverous","differ","topp","espy","accusativo","canakin","fann", + "alchemist","erected","callet","solicitor","rankle","trophy", + "newness","usurped","fishmonger","nodded","admiring","forage", + "unmanly","pash","repentance","grimly","hangeth","prain","cake", + "invincible","tool","fastened","vizarded","gillyvors","overweening", + "beef","meads","lustful","skilless","wreathed","diligent", + "stratagems","lad","doings","lucy","pard","renounce","gravel", + "importeth","forge","irksome","giver","blanks","drumming","winners", + "neighbourhood","gory","disbursed","ranges","pillage","spills", + "villainies","graver","preserver","outrageous","helms","corses", + "measuring","toll","sundry","thirteen","trots","tumult","sluic", + "swath","joyfully","preserved","frets","discuss","slavery", + "stewardship","declare","unable","consisting","trotting","poem", + "streaks","erst","chickens","eloquent","pant","visages","stifle", + "spartan","retentive","bearded","mickle","subjected","spritely", + "territory","usuring","itching","confront","lechers","sciatica", + "hapless","cumber","monastery","ridges","unwillingly","prorogue", + "barbarian","consuming","errs","harping","pight","pillicock", + "smoothly","paly","boats","stories","lake","languishment","grants", + "pall","bleaching","whiteness","jour","pompous","aspire","ulcerous", + "potpan","surnam","fractions","accounts","madrigals","enact","acres", + "orient","transgressing","intermission","finest","besort","curbs", + "reaches","positively","spilling","ribbons","rustic","batter","ewe", + "abbot","furthest","baited","triumvir","pilate","unstate", + "butterflies","forehand","perjured","poll","laps","opulent", + "extraordinary","replenish","discredited","forcibly","ungain", + "ribbon","teacher","sharpest","titus","distant","essentially", + "remission","beak","wheresoever","tradition","affront","cheat","pond", + "printed","vowing","gramercy","servitor","hist","drachmas","lasts", + "personally","feeder","presageth","coral","censures","unequal", + "fordoes","inhibited","discretions","industry","abroach","procures", + "idiots","prologues","censured","demanding","shuffle","loo", + "corrigible","surest","duellist","hares","debauch","hungerly","popp", + "lath","fetter","handled","tapsters","moods","quills","declension", + "equall","severals","temptation","turpitude","equals","prepares", + "buttons","solomon","cream","surfeits","bewitched","southern", + "obscurely","orphans","pore","cornets","unsafe","cerberus","believes", + "epitaphs","votaries","ceas","adjacent","reprieves","especial", + "mockwater","raiment","hateth","christmas","lobby","levying", + "ashford","disquiet","indiscreet","throes","compounds","largely", + "observances","mislike","believed","inclusive","unreasonable", + "meddler","cobbler","horum","lug","unblest","heartly","leapt","knoll", + "tributary","killingworth","madding","goat","julietta","hounds", + "sacked","betroth","mends","redeemer","wrap","lifted","undertaking", + "sighed","pots","recanting","using","genius","plainer","buckets", + "levies","grounded","thistle","stung","factor","retirement", + "paintings","awaking","reckonings","vanished","untouch","posting", + "garish","debase","mandragora","gobbets","thwarting","highway","fac", + "fam","brightest","helena","fay","shivers","ascended","shards", + "amities","appertaining","denying","multiplied","forgeries", + "calculate","gaining","unpeople","dross","doubting","pomegranate", + "major","wedges","sally","disfigured","thefts","ignominy","jarring", + "openly","shrinks","wren","pelt","tameness","celebration","idea", + "gawds","plaining","vesture","intrusion","eruptions","draweth", + "tuned","inordinate","heretics","kate","hovering","misadventure", + "beseeming","ergo","excessive","formless","hips","onset","puling", + "curl","uncivil","fostered","katharine","cable","grinding","thrill", + "sticking","consequently","curd","perfectly","consist","aims","bat", + "gout","unction","vehemency","immured","tackle","compromise", + "pardoning","jerkin","pheasant","obstinate","commits","exhibit", + "determines","musing","farthing","disclosed","dennis","malefactors", + "commencement","sunday","ravished","antipodes","thankings","welcomes", + "scenes","latch","likelihoods","ravisher","parishioners","fir", + "monthly","staves","dragg","attest","dealings","unvalued","warms", + "daintiest","basilisk","droop","insert","swiftly","luxurious", + "gentility","phrygia","spreads","thoroughly","unpregnant","provoking", + "later","strikest","infringed","eclipse","prediction","votarist", + "drain","stripes","passeth","inviolable","provocation","errands", + "ropes","clothier","covet","coughing","straining","thews","godhead", + "hearse","disproportion","arrests","chalky","prenominate","repaid", + "tisick","habiliments","infallibly","learns","endeared","forerunner", + "ravel","raves","unquiet","distain","comforter","gore","lagging", + "thrasonical","purposeth","strove","defied","ascribe","reechy", + "shillings","unyoke","tolerable","cumberland","mistakes","evilly", + "complots","incite","troublesome","unquietness","retrograde", + "choking","drench","village","weraday","troublous","rural","sheathed", + "plaints","demigod","calmly","yorick","shriving","scornfully", + "concave","ruder","exalted","immodest","languishes","jaded","maketh", + "savages","venerable","attributes","oppressor","defended","fro", + "saffron","thwarted","reformation","ravin","customers","rational", + "brushes","inland","dialect","gravestone","allusion","intermingle", + "braz","pelion","scolds","blasting","corin","waked","guns","marullus", + "scurrilous","youths","fines","impon","quell","tis","emulate","peal", + "lustihood","poets","perseus","tir","instinct","fur","unbraced", + "congruent","tip","readiest","increaseth","digression","forged", + "boils","intrude","sobbing","distempered","secondary","rankness", + "poesy","ouphes","crabbed","folds","sixpence","aforesaid","bellow", + "nevil","putrified","iteration","repast","stench","lids","taurus", + "sounder","mention","purposely","loggerhead","holofernes","redeliver", + "frosts","amounts","lightless","titan","shoon","heresy","stepp", + "canterbury","blameful","revives","maliciously","encompass","winding", + "perplexity","precedence","becks","blindfold","furies","kinswoman", + "purchased","remained","ordnance","lammas","masked","lectures", + "paler","pales","nursery","untun","lecture","ancestor","bor", + "disposing","noiseless","sweaty","alley","surgery","scept", + "favourable","nothings","condign","betrays","unbolt","barely", + "released","prompting","inconsiderate","protests","officious", + "formally","unpin","augmented","digressing","simois","heartstrings", + "quarters","mingling","spanish","pebble","requested","adopted", + "bacchus","barricado","arabian","acquittance","whereuntil","knits", + "diverted","stockings","sharing","chased","revenging","borrows", + "dedication","meteor","whensoever","disprove","innocency","omne", + "confessing","armours","inde","fetters","rote","lining","lease", + "goers","gains","tar","sect","flouting","disclaiming","dishclout", + "drawer","armipotent","equivocal","sickens","amendment","splitted", + "irrevocable","bob","petticoats","congregated","innocents","comrade", + "ungently","familiarly","gapes","defense","whereby","prevails", + "feigning","exhort","argus","bearest","profanation","osiers","curtal", + "titled","sleepest","pish","bastinado","grise","stealeth","jars", + "causeless","confesses","thinly","elves","satan","belch","nephews", + "adheres","debatement","smith","straightway","runagate","abundance", + "sulphurous","smite","buffet","dependency","extremities","confused", + "desdemon","observing","venturous","mares","harbor","indued","foison", + "sprays","bowls","quips","muffle","visitors","farthings","marvell", + "punto","bewray","dreamer","unwise","gaz","preach","scythe","hisses", + "circumference","successively","falconbridge","examin","demean", + "dump","type","sulph","chaf","strengths","refresh","bottomless", + "incomparable","fortified","losest","rarer","slackness","dale","chas", + "extemporal","accountant","tennis","pagans","fondness","flowing", + "selling","nessus","incony","anatomiz","limping","leagues","reposing", + "shuffling","aroint","provender","cricket","aha","amazedly","cobham", + "rendered","compliments","speaker","pledges","lott","lots","film", + "dolphin","january","sympathise","girdles","constrain","grovelling", + "laboring","suspicious","interpret","scandalous","riband","bodykins", + "welfare","itches","tape","planetary","supposition","guiltier", + "cards","batters","adulterous","deniest","recoveries","nap", + "impartial","distinct","childishness","godfathers","rift","planks", + "filled","legion","notify","inflame","helpful","thanksgiving", + "anatomy","caesarion","thriving","ensnare","chew","caret","rejoices", + "prettily","duchy","quarrelsome","tours","exiled","unlearned","blust", + "scrape","beset","jauncing","palsy","sully","defiled","blab","reave", + "midway","succeeds","drowned","stopping","assail","blam","farewells", + "trodden","restraining","taverns","heaviest","suffocate","posies", + "polecats","net","vaunt","fortress","acre","yoked","poetical", + "prizer","barne","indirection","carping","promontory","unprovided", + "exhales","posterior","dishonourable","mopsa","loos","loop", + "vanishest","bottled","spurr","retorts","untie","construction", + "combin","covered","smiled","pilgrims","puffing","trumpeters", + "essence","purging","competitor","envenomed","paste","restrains", + "adieus","sonnets","requited","unbonneted","taker","wittingly", + "cockle","pasty","easiness","berard","gouty","testify","celebrate", + "botch","unkennel","compassionate","besieged","slighted","sere", + "slop","plausible","blew","budge","jeweller","swits","traded", + "thereat","worshipper","appeareth","verbal","mischievous","fantasies", + "champions","foggy","silks","haps","perfumed","rind","affined", + "malcontents","movables","happ","equality","minstrelsy","obeys", + "remotion","defendant","orthography","covetousness","fable","target", + "gnats","hymn","dutch","perjure","primrose","tremblest","spaniel", + "frequent","onward","springe","avenged","ruth","brainsick","chor", + "abomination","preposterously","indistinct","holly","pilled", + "expedience","plumed","tenure","commandments","germane","pitchy", + "carving","rubbish","applauding","berwick","extremely","supported", + "outlives","behoves","toast","demonstration","germany","misplac", + "picking","toils","knower","dubb","ducat","collect","slut", + "distraught","goodwin","treaty","aweless","cesse","aggravate", + "defends","villanous","craftily","ratified","concernings","becoming", + "leopard","verba","sleeves","rinaldo","arched","edmunds","hams", + "contending","prentices","instalment","contains","unkiss", + "proserpina","thievery","pronouncing","obtained","advertisement", + "unsounded","tetter","interrupted","ignominious","propertied","terra", + "vail","adramadio","clocks","sealed","leathern","creaking","customs", + "bachelors","pardons","cork","gyves","boasted","boyish","rived", + "butcheries","rivet","brush","dungeons","laden","hawthorn","cophetua", + "tallest","putter","repairs","saunder","alters","bower","assembled", + "lowliness","cote","ebony","cherubin","accoutrement","vomit", + "pandars","ensnared","brute","splitting","dispersed","inspir", + "shirts","slough","comfortless","sightless","preceding","meanly", + "bowed","determinate","stooping","affable","trembled","markets", + "blur","travelling","ceases","touched","prognostication","villanies", + "cinders","apple","lydia","mysteries","damp","joyless","etna", + "lovedst","horseman","rhenish","inviting","sov","scruples","debating", + "gibbet","dean","sot","trinkets","chapmen","woodville","roofs", + "affecting","flutes","hostages","unhair","rays","ties","gins", + "conjunctive","magnificent","bedded","unkindest","bloom","forg", + "crimeful","brevity","salutes","vary","importunity","merchandise", + "soe","seconded","tickles","showest","remnant","patchery","fume", + "egyptians","agreeing","shouted","rung","rearward","candied", + "glorify","behests","dismember","toryne","nostril","clapping", + "orisons","sulphur","tickled","varlets","trap","prompter","befell", + "bounded","conveniently","bounden","laundress","acquir","mummy", + "enjoys","coats","quart","weathercock","criedst","leander", + "esperance","tile","instigate","fishermen","daisy","unking", + "unwisely","bitch","defences","gratify","worshipful","nearness", + "hags","worlds","thunderbolt","scrap","mason","bestride","vouchsaf", + "gazes","upbraids","seeded","impediments","imposthume","chambermaids", + "crossing","embowell","tightly","bodes","influences","lineament", + "braggarts","scores","barge","loan","illustrate","sucks","stirrup", + "sensibly","straggling","denounc","lustier","simpcox","clasp", + "neighbouring","media","recall","reft","awakes","husks","hostile", + "clamors","moated","sip","sate","godlike","starting","justicer", + "standers","authors","provincial","gasping","pile","replenished", + "concealment","isbels","droops","impetuous","enjoyed","expertness", + "venetia","fallow","unlock","grinning","shy","sessions","homeward", + "hyperboles","nameless","sucking","pitiless","quae","ingredient", + "intendment","standeth","parallels","forts","glendower","imprisoned", + "afear","separated","mistrusted","laboured","unskilful","halberds", + "scorch","affectation","fugitive","mildly","annual","hospitable", + "grating","purpled","riddles","sensual","hic","tithing","censur", + "spiteful","helper","valiantly","whoso","lamps","easing","hip", + "forbidden","warnings","unbutton","avouched","whosoever","coloured", + "surfeiting","monk","bounding","likings","slays","philomel", + "commence","townsmen","casque","triumvirate","intemperate","wreaths", + "boundeth","prelate","braver","uplifted","packet","cradles", + "scholars","smear","dukedoms","humidity","oddly","sev","peeps", + "portable","archbishop","groat","wallow","serpigo","louse","braved", + "felicity","features","hollander","fortunately","disturbed", + "staggers","garlic","canoniz","quip","embracement","mole","consumes", + "debated","prat","rehearse","thron","signories","certes","purgatory", + "circles","repented","sealing","odoriferous","freshly","trimm", + "insinuating","espouse","loathe","quail","incens","vaults","patches", + "wizard","thorny","afflictions","hospitality","owners","consumed", + "writers","ore","parasite","ork","thankless","feat","palmer","ort", + "langley","hight","omnipotent","wilfully","fathoms","unicorn","deity", + "foully","unspeakable","descends","squier","cetera","everyone", + "jerusalem","musters","bestows","bedchamber","dreaded","lunatics", + "rides","terribly","unrespective","bath","tumbled","urgent","ripens", + "bewitch","languages","supp","slice","taxing","ensconce","cypress", + "dews","tilting","pollution","dewy","tripping","amplest","zir", + "overflow","sundays","unhack","slide","invades","thunderbolts", + "womanhood","refined","privileg","grateful","unlucky","canonized", + "performs","hecate","villages","sunk","prig","nighted","fiction", + "partially","dovehouse","clasps","puffs","dateless","prevents", + "loveth","signified","captainship","signifies","bloodily","deficient", + "recovers","carouses","antics","consciences","dissolv","mated", + "disports","twisted","erection","bulwark","mater","heaping", + "warranty","moderately","forefinger","counterfeits","uncurable", + "plagu","buildeth","atalanta","destinies","humors","urgeth","upholds", + "superficially","broader","complement","medlars","modo", + "contemptuous","gardeners","whatsoe","invulnerable","laughed", + "witless","marries","felon","babbling","disorders","marched","viands", + "conceiving","argued","smokes","entitle","gard","seizes","snap", + "snar","accusations","redoubted","smacks","bosworth","leicester", + "cooks","intimate","circumspect","epicurean","spleens","fitteth", + "flux","worts","embers","underhand","overplus","gasp","foregone", + "admonition","slily","grievance","knotted","peaceably","branded", + "wagoner","ordain","ploughman","trunks","flibbertigibbet","slimy", + "unparallel","critic","metals","barbed","fittest","slink","unspotted", + "weaken","besieg","assuredly","blaspheme","murthers","postern", + "elephant","tribune","hellespont","fuller","norman","cracks", + "blasphemy","dowers","preparations","railest","wave","recks", + "livelihood","inspired","plackets","sterling","gradation","dallied", + "conjectures","urinals","medicinal","unnecessary","pat","butchery", + "freezes","spurio","pollute","tuscan","healths","chastise", + "interview","melteth","reins","theoric","furrow","omnes","holier", + "surviving","unfledg","constrains","haunted","contempts","savours", + "shanks","volt","fest","carver","marring","spoils","disgracious", + "contumelious","exceeded","presenting","possesses","complements", + "snip","peascod","moles","guildhall","uphold","confederacy", + "surmises","bends","severity","dauntless","acute","tumultuous", + "outwardly","obscene","conduce","leaven","wasp","ancientry","billow", + "honourably","colliers","priamus","whine","arrives","obstacles", + "comma","beacon","edgeless","scratching","housewives","mace","earned", + "vell","robber","perpetually","rescu","panders","decayed", + "quintessence","trowest","confirmed","pia","swagger","stair","patent", + "distinctly","copulation","philippe","sinew","heroes","aveng", + "drunkenness","pants","lurking","detect","respective","furniture", + "infidels","uncleanness","observant","claudius","halfpence", + "arbitrement","baleful","ascends","punished","vigilance","buds", + "rang","hooted","rains","dangerously","buyer","impressure","caution", + "outcry","ungrateful","partridge","nerves","plantagenets", + "constrained","solemniz","admiringly","supposes","sables","fragments", + "leak","flaws","redeeming","blinding","witb","calumnious","supplant", + "rams","leas","wildest","mobled","ramm","yearly","brabant","imagined", + "unbruis","cramp","hairy","unmeritable","untruths","solemnly","mahu", + "tractable","coins","concord","procession","sauciness","lupercal", + "flinch","altitude","taffeta","fangs","nominativo","reignier", + "lengthens","owest","inducement","outruns","presumptuous","examples", + "novelty","continuate","harlotry","sliver","survive","margery", + "returneth","scalps","dislik","struggling","biding","escapes","mista", + "ipse","supremacy","extinct","substantial","boasting","curing", + "courtezans","battered","row","badges","stabbed","jourdain", + "anatomize","quill","wassails","pandulph","parlous","fearless", + "sinks","dwarfish","yell","shrew","plucking","gathering","spice", + "dizzy","roe","expressed","adjudg","int","hindmost","rifled","vine", + "faithless","assisted","caphis","jarteer","buoy","covers","foaming", + "darker","tying","eunuchs","filial","useth","sessa","baits", + "undertakes","airs","gray","lucianus","stark","emphasis","boding", + "cocks","turtle","operant","tendance","release","bristol","vaporous", + "props","birthday","unmatchable","predominate","commodities","mane", + "thrusts","cursies","bluntly","satiety","disgraced","kibes", + "building","fridays","reduce","cupbearer","paved","reeking","nymph", + "disdains","attribute","maggots","tarquins","clearer","amazons", + "kick","archers","buss","excommunicate","crestfall","craving", + "damage","wrist","courteously","wearer","portend","pursuing", + "simpler","flea","grasps","forbade","naturally","apron","sumptuous", + "obscured","skittish","interred","hungary","tilter","bolting", + "begrimed","hearken","innovation","donn","confronted","spok", + "griping","contriver","refusing","mart","statues","yeas","swashing", + "contrived","cistern","rebukes","paddling","lurks","gypsy","unadvis", + "total","noises","hammers","rig","supervise","weariness","ulcer", + "tyrannize","lena","avail","radiance","devices","trample","dancer", + "heaving","infortunate","raises","swains","lacedaemon","daunted", + "cygnet","gestures","squadrons","wade","dismantle","pancakes", + "terrestrial","unbridled","unstain","maul","implements","endured", + "delicious","beseems","friday","presentment","hating","desperation", + "nerve","conveniences","bedford","tended","awl","frugal","misprised", + "cozeners","arme","wells","hinge","studying","palestine","applies", + "neglecting","exploits","darkling","domitius","victors","craz", + "memorial","executioners","effusion","lethargy","execrations", + "abjects","tributaries","foremost","assigns","stinted","livia","doit", + "padua","scaled","brawn","benedicite","catechize","grudging", + "cardecue","crafts","tawny","unheard","shak","unlettered","budget", + "oblique","mazzard","remnants","disdainfully","impostor","ptolemies", + "sola","vor","appertain","noisome","derives","aiding","conjointly", + "yards","swounded","gainsay","owls","thinkings","presuming", + "cushions","warriors","falser","tamworth","echo","chicken","bragging", + "criminal","slightest","uncouth","dirge","glimpse","unbated", + "activity","stature","begotten","trusts","marrows","bum","runaways", + "childhood","pagan","vantages","mineral","oars","foolhardy", + "compulsive","smilingly","prophecies","narcissus","stile", + "collateral","demeanour","tarries","foreknowing","garboils", + "accusers","nursing","nimbly","baboon","rounded","doer","allied", + "steeled","manor","intention","gallimaufry","complot","distressful", + "spells","grafted","unsubstantial","defending","servitors","stint", + "driving","gnarling","wearisome","traitorous","primal","engend", + "july","customer","confidently","lisping","exorcist","unprepar", + "hooks","gratitude","daffodils","spruce","commoner","unfolds", + "massacre","lenten","florentines","earliest","fulfil","armenia", + "stow","spouts","stor","knaveries","mill","nero","shearers","ston", + "kersey","accuses","jew","indictment","fidelicet","treasures", + "forgetful","corns","caused","politician","bilbo","roared","roast", + "shipping","causer","shedding","melody","abominations","charters", + "tempers","plum","mutter","detected","disdained","minx","vaunts", + "neapolitan","sleeper","adorn","gossamer","leavening","hoops", + "waspish","sanctity","admiral","soothe","hacks","gauntlet", + "sensuality","tinkers","contradiction","lieutenantry","vanities", + "journeys","uncaught","unbuckle","whites","cozenage","frieze", + "raising","uncovered","transgress","ethiopian","unswear","separation", + "profitably","wean","sneaping","decision","scatters","incurr", + "infusion","shadowing","sevenfold","weightier","orange","drooping", + "whirlwinds","undertook","expectancy","fashionable","commonly", + "foulest","eyebrows","ravenous","strangling","excitements", + "husbanded","fling","exist","considerate","thirdly","rudder", + "inveterate","extorted","difficulties","unsanctified","bigot","bett", + "bridget","oppressing","sevennight","handful","anatomized","fleec", + "speeded","troths","covenant","employments","enchants","allege", + "unshunn","pyramides","ossa","starings","inauspicious","bespeak", + "expecters","blinds","brandish","perceiveth","vie","maggot","drones", + "encorporal","vir","disparage","pella","drabs","dispossessing", + "lovelier","stirreth","cordis","weet","recure","privates","yorkshire", + "flagging","venit","tossing","allottery","fet","rigol","accusing", + "pocky","incenses","angers","precor","entreatments","bellyful", + "blisters","exclamations","defunct","shrewdness","diurnal", + "unproportion","shocks","denoted","cudgeled","sincerely", + "malefactions","conquests","lurch","asquint","compacted","rumination", + "shrubs","lieth","silenc","germains","deputies","hurried","befitted", + "rehearsal","lethargies","charon","pamper","dislocate", + "handicraftsmen","flung","checking","dolts","venuto","weasels", + "whorish","votarists","pleats","paunches","hurries","cades","quando", + "pygmy","overbulk","requisites","vici","resisting","concernancy", + "drains","frampold","draff","figuring","absey","journeyman", + "unprevailing","eterniz","principles","lieve","tassel","skirmish", + "vidi","firebrands","hectic","childness","spiritual","headier","fil", + "muffling","centaurs","prudent","ecstacy","allure","waded","unshaked", + "viler","onions","unshaken","poppy","imparts","corrupter", + "quadrangle","greeted","defaced","augustus","moors","pruning", + "bargulus","deservest","riding","counselled","impurity","rudiments", + "unfool","daphne","bedrench","disquietly","defacer","accustomed", + "exhalations","lated","winnows","mildest","flourishing","ceres", + "muleteers","cureless","invocations","shrugs","credulity","chaunted", + "violenteth","temporal","hobnails","cushion","barbason","anselmo", + "northamptonshire","waggling","valorous","journeymen","rainbows", + "determining","transshape","inveigled","plantage","wend","flap", + "unstuff","olympian","interjections","untoward","empirics","madcap", + "weedy","fiddlestick","exacting","catalogue","bristle","indulgence", + "fettering","mastic","oceans","unforc","courageously","calydon", + "dragonish","stumblest","detector","threadbare","jesters","covent", + "wickedly","calveskins","uncharge","dependent","christendoms", + "singuled","cockney","maimed","shreds","stithied","destroys", + "slowness","possitable","boarish","conclud","exposition","vendible", + "styx","transporting","benumbed","circumscription","acorn","psalm", + "vigitant","mildews","pilates","successors","builded","taphouse", + "assemblies","alarms","terrene","owedst","contrives","shelvy","foi", + "terminations","columbine","venue","hujus","gastness","bucket","flee", + "extracting","trials","balsam","mortise","defies","scourg", + "disfurnish","deputing","fardels","maidenliest","illusion", + "nourisheth","unschool","miscarrying","competent","charlemain", + "inductions","abel","scorched","blabb","fadings","buttonhole","wets", + "ruddy","abet","paramour","recounting","supposal","farms","chimurcho", + "overgorg","viol","definitive","wights","unbrac","bolden","heavings", + "vindicative","intelligencer","pertinent","novum","whereinto", + "condolement","capricious","pressures","offensive","dolefull", + "heading","squadron","lessoned","oozes","suspecteth","targets", + "irremovable","relents","taffety","ratherest","venial","reclaim", + "flaying","drivelling","dunghills","abridged","facinerious","epicure", + "upmost","artless","leech","chanson","traders","unwittingly", + "tantalus","maudlin","crushest","restoration","spoiled","conferring", + "darting","unsay","attempting","shipped","spleenful","lolls","hereof", + "sicker","embracements","stinks","torchlight","pacing","rainy", + "unroll","threescore","meeter","schoolfellows","multipotent", + "thirtieth","oppresseth","doubtfully","fowls","misconstrued", + "pressing","convocation","verified","ruinate","misconstrues", + "rankest","anticipating","farre","inheriting","goads","fum", + "confirmer","lullaby","contenteth","deign","tropically", + "distractions","fut","bilberry","banes","fearfull","simular", + "progeny","garcon","saturn","triumphed","valerius","bewrayed", + "submits","hallowed","shambles","bloodied","distains","alleys", + "anticipation","shone","unroot","proscriptions","perished", + "choplogic","harbours","unscorch","ruminated","checked","earthquakes", + "planched","enernies","arises","advertise","vauvado","scurril", + "crossly","trenchant","champaign","enshielded","ruminates","checker", + "encumb","plautus","wan","wav","traces","displac","prefixed", + "chitopher","restorative","comprehended","chafed","fecks","gush", + "chetas","weeding","gloomy","crowded","featly","sepulchred","bleach", + "parcell","appellants","blanc","youtli","fraughtage","negation", + "shops","uprise","inclips","anthropophaginian","institutions","scent", + "dallies","goodliest","homewards","moat","enmities","cabinet", + "israel","gargantua","rhym","puttock","tougher","pursents","orbed", + "baptista","betumbled","seized","pointed","vulgarly","gnarled", + "godfather","brundusium","purchases","baring","sweats","shorn", + "quotidian","unlink","sophister","caroused","roguery","broached", + "meetly","underminers","unpruned","ploughmen","stricture","veiled", + "tragedian","sund","prioress","cincture","bluster","prest","spans", + "hedg","smeared","botchy","warmer","outstrike","roughest","grudged", + "forspoke","questioning","leperous","tremblingly","noontide", + "unbuckles","stints","unexpressive","seam","boggle","peating", + "switzers","destructions","bidden","intimation","soaking","bewails", + "unfriended","ycleped","flexure","immediacy","gathered","bosko", + "eliads","negative","directing","dilations","suspense","weakly", + "apennines","reputes","underbearing","lowing","smarting","consortest", + "drearning","inhoop","bretagne","unwedgeable","gibe","preparedly", + "advertising","absolution","pistols","stope","purifying","suspicions", + "champains","shove","insisture","beverage","fury,exceeds", + "pestiferous","wor","perpetuity","specialties","benefited","unsur", + "unwarily","hangings","profaned","suum","disnatur","abruption", + "translated","statilius","foster","nourishment","tragedies", + "gravediggers","mourningly","seditious","rackers","clouted","mons", + "emboldens","translates","canopied","spawn","dusty","foppish", + "mesopotamia","coctus","unmuffles","cognition","fiftyfold","hemm", + "hems","possesseth","wrecks","prattling","directive","mope", + "mastiffs","locked","dorcas","topple","stainless","servitude", + "reapers","featur","sapling","flamen","waftage","tyburn","stoup", + "uncheerful","untirable","carbuncle","europe","endart","caelo", + "unwrung","beldams","gad","leers","whooping","taleporter","amazes", + "brotherhoods","gat","palms","marigolds","bleats","hardocks", + "unlocked","particularly","stiffer","palmy","unconstrained","tissue", + "defeats","perverted","stows","burdenous","spilled","yarely", + "bannerets","rudand","dismantled","excused","ithaca","trough","gazer", + "cham","belee","voluptuousness","ladybird","chap","quare","snipe", + "moss","guilts","toadstool","tank","tann","leets","subcontracted", + "cataian","scoured","quasi","threatest","jointress","linguist","tray", + "grumble","prated","declares","caddisses","stablishment","impasted", + "transportance","caucasus","calumniating","ging","martino","modena", + "rubies","noyance","intruding","supporting","aroused","polyxena", + "melford","grained","bolster","ubique","teems","misgoverning", + "commentaries","mows","dandle","creator","provoketh","graciously", + "abhors","halberd","rids","hazelnut","tapp","tartness","hoarding", + "haunting","gen","entrench","harbourage","philotus","capons", + "grandame","indirections","fishified","prescription","eringoes", + "rooteth","foretold","chirping","stiffly","headsman","liquorish", + "chimneys","unshunnable","damsons","pikes","seld","unassail", + "untasted","girt","cared","sicles","lightest","seemers","pumpion", + "repairing","disunite","amazon","lighteth","roynish","tarr", + "questioned","tart","staple","seemest","rooks","troubler","rigg", + "gilbert","supporter","inns","sapphire","capocchia","principle", + "metheglin","portcullis","surfeited","circumvention","prerogatived", + "untroubled","imbecility","caviary","lustrous","rooms","governess", + "surfeiter","chivalrous","clemency","hairless","inconvenient", + "wolvish","expectations","earnestness","gib","dolorous","hesperides", + "blaz","releas","entrances","detects","trades","sculls","flexible", + "proportioned","hamstring","outstrip","tatt","tercel","monstrousness", + "gis","picardy","friars","unlocks","deprived","strutted", + "spendthrift","hereupon","contemning","ramping","seethes","sneaking", + "exultation","facile","divorc","soothsay","untir","thawed", + "abortives","canzonet","absolv","usually","sufficed","scrupulous", + "chaplain","sympathize","rejected","partlet","outstare","dispursed", + "videsne","almanacs","aurora","scoffs","unus","suffices","engraven", + "enfreedoming","charactered","implorators","expired","demeanor", + "facing","manacle","advantageous","sprightful","compasses","repeated", + "bechance","bled","drinkings","sureties","repenting","troien", + "unbroke","suggests","advisings","stoccadoes","byzantium","monopoly", + "grandmother","gallowglasses","labras","uncharitably","dimensions", + "sufficit","supportor","kentishman","vagabonds","mandrakes","leaping", + "invitation","fantasied","whored","foxes","housewifery","restoring", + "ruttish","covetously","circum","obidicut","thenceforth","mariners", + "chafing","halfcan","luces","visitations","untune","tenfold", + "confessed","sleepers","rawer","disrelish","whereas","untied", + "persistive","fluster","appeased","mitigation","perfumer","perfumes", + "regenerate","extirp","toothpicker","dupp","equinox","confectionary", + "malhecho","providently","aspiration","sinewed","cheated", + "unworthiness","tribunal","produced","whisperings","dastard","trouts", + "discandying","deprav","briareus","produces","skyish","lozel", + "madded","skills","prodigiously","presences","stoups","liquors", + "ephesian","lutes","behaved","cynic","carol","spicery","nettle", + "venturing","woundless","prodigality","marian","aforehand", + "labourers","plumes","subtly","tether","whizzing","unmingled","bloat", + "rested","cornuto","fringe","subtlety","fawning","hollowly", + "undertakeing","unveiling","reportingly","unhopefullest", + "depravation","disconsolate","cottages","unrestor","pense", + "satisfying","musics","hoodman","pleasance","cleansing","doating", + "outlawry","comedians","accompany","grandfather","excelling", + "vitruvio","oscorbidulchos","expir","expiate","sluttishness", + "riggish","ounces","scowls","enfetter","hymns","afric","adoration", + "mainmast","forbears","scarre","entituled","temporizer","repetitions", + "latten","eastward","doublets","peak","unicorns","firebrand", + "warwickshire","scambling","peat","sepulchring","berries", + "impossibilities","syrups","unpractised","speedier","cisterns", + "lamound","enigmatical","extempore","fleeter","nasty","epileptic", + "carts","searchers","catlike","promulgate","occupat","chud","furor", + "attent","eighth","savory","extolled","porches","threads","wider", + "scorning","pede","eighty","whirling","cloddy","peds","cavern", + "jakes","enpierced","stricken","fasts","pervert","opened", + "temperately","folio","debonair","laura","hornpipes","conceals", + "blackberry","seaport","abreast","prorogued","overblown","enclosing", + "grande","minikin","untruth","allot","briars","laurels", + "fruitfulness","catling","carbuncled","troat","southerly","enridged", + "threading","fewness","blastments","handmaids","fellowships", + "carbuncles","resolutes","jaundies","niobes","cramps","abettor", + "pegs","misers","cunningly","starvelackey","joiner","uprighteously", + "wranglers","puzzle","scaffoldage","copulatives","althaea","affin", + "misbhav","definitively","enforcest","northampton","compulsatory", + "sluices","decerns","blockish","ratcatcher","vehemence","portends", + "perspicuous","shuffled","transgressions","infused","administer", + "brink","immures","whereso","swam","bankrupts","araise","procreation", + "rareness","pelf","rechate","denier","heathenish","thrusteth", + "conies","inoculate","freezing","hypocrites","measurable","earthen", + "propension","shrinking","redoubled","sorrowful","plumpy","pertly", + "collusion","encroaching","leaned","pencilled","mender","leaner", + "unbegot","meditations","individable","brisk","freeman", + "respectively","manchus","consolate","harbingers","affability", + "conventicles","ordained","incaged","ador","injure","moulds", + "immaterial","protested","corambus","mouldy","yaw","battlefield", + "fantastically","envied","healing","discoursed","protester", + "boisterously","dissipation","sciaticas","waiter","commiseration", + "assaulted","importless","plentiful","weariest","envies","almsman", + "incurred","enthrall","lawfully","contemptible","chooser","decease", + "chooses","township","domineering","variety","dimples","oils", + "generations","pert","unnoble","scutcheon","replying","clepeth", + "uncurbable","withstood","unsheathed","estranged","favorable","pest", + "vocatur","exacted","bombast","prophesying","exasperate","freemen", + "skein","favorably","sandbag","oftentimes","worshipfully", + "copperspur","lengthened","imitari","steerage","communities", + "religions","prophesier","fistula","bouge","fopped","besmirch", + "horsemen","batten","breech","inaccessible","peppered","unpeaceable", + "bough","smalus","unfeed","grubs","hal","hoarded","chime","beach", + "singleness","guinea","philosophers","tweaks","stupid","goldenly", + "bragless","rejoindure","unpossible","murmur","china","glooming", + "cotsall","chins","tinker","largess","largest","fraction","darlings", + "packings","befallen","curds","numbness","shatter","purchaseth", + "lantern","whey","ditches","loggets","swol","undid","bemet", + "currants","chipp","spoon","pashed","couplement","requisite","boded", + "slash","scoffer","sapient","compared","ferryman","gorged","corrupts", + "corrosive","sighted","unhappied","infixed","gorget","unduteous", + "smothering","unvarnish","luce","delaying","chirrah","menecrates", + "reproachfully","wanderers","largeness","reporter","unurg","hulks", + "scuffles","droplets","antiquary","thirsts","boasts","untread", + "aerial","disburdened","psalms","interior","essay","dividant", + "recreants","bleated","swaddling","clovest","practised","grumbling", + "artists","wassail","wasting","sympathized","aeacida","perfectness", + "harpy","ungart","cables","practiser","practises","cabbage","runaway", + "definement","coucheth","emhracing","pickle","louses","beaks", + "preservation","propontic","yok","harshness","reflex","sheaf", + "berattle","traffics","foining","freshness","sisterly","wilder", + "sheal","fisnomy","disburs","receivest","shear","considering", + "crannies","hobbididence","outfrown","festinately","hoppedance", + "abjure","birdlime","traditional","undeserving","overlook", + "guessingly","patterned","freetown","hig","remissness","ghosted", + "satchel","mustachio","chestnut","displanting","enacted","lackeying", + "harum","congealed","grunt","useless","junius","baes","adversities", + "borders","deni","dens","sheds","whoa","unbelieved","sightly", + "chisel","prefers","schoolboy","spilth","taxation","ensued","bouts", + "pliant","whor","compremises","superscription","converting","upshoot", + "quaintly","reconcilement","worldlings","hyssop","sheen","luke", + "alligant","sheer","founts","whosoe","broking","affaire","absyrtus", + "monastic","petitioners","quoifs","scantling","privileges", + "soundness","priceless","adoptious","embraced","chronicled","briber", + "unlearn","flaunts","plates","desirest","nightcap","gorgon", + "chronicles","colic","unmoving","loathsomest","bisson","luxuriously", + "playfellows","breese","shortcake","appertainings","enlard", + "calamities","wived","pills","sauced","enlarg","affronted","luna", + "waterpots","inexorable","fountains","partialize","straitness", + "ruminat","offenses","boorish","reflect","lavache","yicld","parings", + "fundamental","charneco","accommodations","repugnancy","disdaining", + "startle","scanter","unskilfully","bake","desk","overstain","ionia", + "hoc","circumstanced","blubbering","dilatory","experimental", + "possibly","savouring","illume","ambiguous","educate","beardless", + "balk","retell","underta","essential","tented","foin","empoison", + "surplus","embattle","shelf","cheered","interpretation","vagram", + "unclaim","eterne","journal","lure","escoted","wronging","shelt", + "rivelled","complotted","mildew","withdrawn","rolled","plasterer", + "howsome","tainture","indented","pleasantly","circa","adorned", + "elect","simon","pedlars","posthorses","significant","circumscrib", + "venetians","mules","decides","unloading","ingrated","weights", + "accommodate","whitsun","thanked","disabled","veritable","quoint", + "alight","breeze","parched","tenths","blowest","pebbles","botcher", + "ampler","garrisons","concolinel","chopped","needles","afield", + "winner","staggering","piteously","invert","rosalinda","attachment", + "coloquintida","addiction","crabs","fooleries","faulty","yearn", + "dominator","appaid","demerits","judged","glose","adventurous", + "bestrides","propagation","columbines","bard","font","wittol", + "blusters","telamon","quivers","omitting","disguiser","disguises", + "smoth","slacked","jointing","beholdest","yeast","driveth","bask", + "relates","circummur","gracing","beginners","unvex","malmsey", + "gallantly","colts","verdict","victuall","bugbear","bondslave","fops", + "harden","casts","batt","appals","pension","favouring","tapestry", + "deliv","keepest","rivall","acknown","slides","darksome","thyme", + "bowstring","superior","nubibus","glows","hurricanoes","wondering", + "oven","denounce","missingly","reverted","omittance","conveniency", + "fost","crusadoes","awooing","urgest","lustiest","president", + "vailing","plunged","swinish","sufficiently","gardens","convicted", + "cranny","outliving","unregist","mediterraneum","baldrick","eftest", + "falliable","bounce","wafts","vomits","babble","saracens","aspir", + "courtlike","discharging","filching","zed","objections", + "singularities","horace","woefull","accordant","diffidence","doreus", + "shallows","fatherless","employed","locusts","usurps","blazing", + "seamen","equipage","resume","employer","panel","actual","sacks", + "cracker","successor","childhoods","underlings","unbolted","quoniam", + "conjectural","wick","hoxes","vagrom","ovid","eagerness","striv", + "misbecom","rageth","marcade","peaceable","wakened","falleth", + "gallantry","torcher","crams","slubber","kidney","answerable", + "caverns","industrious","harper","warped","snarling","outsides", + "urges","jenny","lettuce","untuneable","favourite","habitation", + "drained","pronouns","bespice","performances","manacles","entrap", + "severing","applying","earns","pensive","overthrows","tymbria", + "casualties","seemingly","unsecret","whiff","depress","demurely", + "arguing","tofore","ethiopes","yarn","rainold","uncleanliness", + "swounds","intentively","printing","crants","scabbard","twinkled", + "ambitions","devesting","raileth","cadent","potations","oracles", + "justle","sullies","perspectives","gondola","adopt","levels","glaz", + "tragedians","ventricle","resolvedly","rhapsody","spakest","munition", + "surveyor","throbbing","fretting","limber","propugnation", + "maculation","mockeries","suspiration","jaunce","unreprievable", + "unperfectness","unused","flaring","mixtures","consults", + "uncomeliness","assaileth","delve","phoebe","aquilon","nayward", + "embattailed","untender","crash","await","hominem","stared", + "snorting","diameter","treasurer","spencer","billows","prun","trowel", + "grazing","nutmegs","sithence","intreat","plurisy","craftsmen", + "topful","transports","slights","reciprocal","doffest","starteth", + "aqua","whistles","separate","carves","ungalled","personages", + "scullion","pueritia","unpolluted","surmised","espous","brainish", + "householder","tranquil","lunacies","edges","nourishing","twine", + "perfectest","skilfully","verier","diffused","sieges","sestos", + "herbert","stonish","vanquisher","twins","crawl","admire","braggards", + "medicines","milch","plast","tereus","courtesan","whittle", + "cathedral","semblances","verify","howbeit","disport","finished", + "praisest","embay","reposeth","embattl","garrison","misleader", + "bodily","unmatch","plats","finisher","keels","suspecting","revania", + "futurity","coherent","regardfully","unconfirm","indebted", + "subscription","unsoil","unfenced","procurator","choicely","ottoman", + "vincere","lessens","intercepted","whinid","shifting","lipsbury", + "wire","tiberio","landing","artus","award","yesty","wiry", + "consonancy","limitation","abbreviated","apostle","sanguis", + "crushing","colossus","protects","chucks","declensions","baptism", + "successful","rivality","missed","vapor","ifs","misconster", + "alehouses","gibing","tubs","tenures","unbegotten","artificer", + "distillation","thessaly","pansa","staid","pauses","foragers", + "debosh","mads","affy","premised","disliken","coranto","twist", + "embodied","unmuzzle","dislikes","goosequills","baking","premises", + "concealed","detecting","wive","hortensius","kettle","insculpture", + "sonneting","enacts","gloz","operate","judgest","wildcats", + "detection","dismissing","enchafed","needed","abrogate","capability", + "dropsied","epilogues","inaudible","overgo","adallas","elegancy", + "attendeth","farmer","laugher","muskos","muscovy","somever","tugg", + "avert","exhaust","singe","superflux","buzzards","lie,and","julio", + "dismission","emptier","empties","dangling","hoyday","scrivener", + "intitled","bards","overtopp","recanter","attorneys","opportune", + "soilure","glue","peopled","blushest","unburdens","bared", + "overlooking","conflicting","tarentum","revenger","peoples","leaped", + "transmigrates","betraying","dodge","aesculapius","parlors", + "avouches","heating","milks","meekly","gelida","dishonor","quests", + "sibyl","achieve","eases","hearest","returnest","filches", + "housekeeping","heareth","incontinency","noes","hater","swoopstake", + "pensioners","wheezing","messages","forwardness","proffered","posse", + "tuns","quicklier","accumulation","enclouded","controls","mills", + "bubbles","gossiping","auricular","affray","sympathiz","exchequers", + "brimstone","homily","yearns","leda","jawbone","whistling","packs", + "shuttle","gasted","goodyears","lewdsters","reproaches","belock", + "ostrich","accomplishment","serge","nois","misadventur","insensible", + "speculations","crawling","representing","frateretto","intrinsicate", + "stages","practiced","turd","ycliped","tristful","refractory", + "parlour","spelt","practicer","ratsbane","sheepcotes","clapped", + "alchemy","lees","jane","courier","prescript","clapper","fumbles", + "banbury","overta","roguish","prolixity","disordered","mala","razure", + "disjoining","hick","laurel","unnaturalness","arbitrating","mall", + "taxes","spinii","nibbling","handless","malt","handlest","barns", + "upshot","sovereignly","yokes","papist","guesses","lege","moderation", + "powerfully","undertaker","ensear","stealers","accoutred","ingener", + "unauthorized","specialty","recognizances","stolen","frequents", + "needly","fanning","marvels","famously","survivor","surplice", + "diapason","starr","glazed","mewling","tasting","kibe","hempen", + "nook","football","minime","arbitrator","willingness","nosegays", + "unlimited","milliner","portance","enfreed","sperr","epistrophus", + "whoremonger","humblest","artillery","distilment","desist","slippers", + "cleared","windlasses","borrower","quarries","primroses","sprigs", + "issuing","conversed","halfway","acquittances","goeth","converses", + "fortifications","mining","entail","ira","imminence","complimental", + "reaping","ire","shriv","bricks","reporting","bents","tasker", + "partisan","unshaped","unadvisedly","video","mynheers","backed", + "nicer","torchbearer","hugely","dullard","larron","unshapes", + "hipparchus","ise","sinner","cognizance","mapp","trojans","retinue", + "hurtless","disorderly","iso","distaff","ist","extinguishing", + "fleming","prowess","bolted","angelica","cheering","wagon","walked", + "unawares","proving","hild","exalt","scuffling","reigning","tiring", + "usuries","settlest","argo","lawns","servius","hilt","betakes", + "hilding","righteously","numberless","deanery","marl","sicil", + "circling","countervail","coney","bordered","marv","segregation", + "noun","seizing","tanquam","climature","allayment","entame","undoes", + "entombs","goblet","applauses","vailed","knack","jays","becom","hinc", + "fritters","managing","clamor","pible","novi","turban","submissive", + "quivering","offenseless","flannel","ivy","mediation","matching", + "enchas","odorous","drovier","burglary","instigations","pastoral", + "practisers","implies","troiluses","unperceived","baboons","ascanius", + "neighs","solitary","unsuspected","flemish","owen","angrily","esill", + "goblin","eschew","daemon","noonday","lattice","preambulate", + "pedestal","puddings","lifting","endamagement","sources","drossy", + "handles","meditates","exclaiming","circumcised","overborne", + "cherished","surmounts","adulterers","isles","misgiving","sackerson", + "appoints","poysam","inseparate","pygmalion","cherisher","cherishes", + "fearfulness","plaster","sardinia","manes","manet","desartless", + "howled","plodded","purified","amaimon","poleaxe","gulfs","caduceus", + "tufts","purifies","denay","deflow","remarkable","foresaw", + "pregnantly","hemlock","amyntas","maws","petrarch","disarm", + "raggedness","rupture","flatterest","shrieking","revisits","rudest", + "frock","profiting","prudence","nimbleness","manured","pancackes", + "ripping","sectary","bucking","wished","bunghole","headed","oathable", + "entangled","cedius","mangy","conjurers","basan","affectations", + "arni","palamedes","entangles","fairness","egress","astronomers", + "emptiness","globes","couronne","aslant","pajock","skyey", + "unquestionable","modesties","dexter","wavering","unanswer","tamely", + "huddling","turmoiled","forceful","monarchize","unfam","valley", + "intil","affinity","shackle","apricocks","flints","maze","maces", + "apostles","manors","skipping","laboursome","littlest","shan", + "moveables","depute","manager","knapp","publication","worshippers", + "shar","gulls","exteriors","lett","drayman","shaw","dominical", + "firework","compar","discreetly","bases","marketable","shrub", + "loveliness","tabourines","exhalation","spightfully","shrug","cringe", + "goffe","compeers","godliness","dyed","merriest","jigging","writer", + "anthropophagi","confirms","reviving","manka","deservings","commenc", + "furthermore","avoids","mournings","ursa","pantler","perdu","egally", + "artire","neuter","crickets","qualifies","afire","strand", + "enlargement","pretia","stripling","draymen","wenching","clotpoll", + "basin","infliction","improve","vetch","unveil","dulche","glowworm", + "elevated","invectively","sapit","scraping","golgotha","boxes", + "unfed","fornicatress","overrul","artist","unreverent","fivepence", + "prodigy","impositions","griped","respites","relier","revolutions", + "annexment","reverberate","clearness","protestations","peaches", + "conduits","hysterica","bother","spitting","shadowed","fencer", + "baptiz","seduce","inestimable","abatements","egregious","wicket", + "compil","praetor","unmuffling","missheathed","trustless","jaw","jay", + "multiply","circuit","undivulged","roundest","merriness","ploughed", + "niggardly","untreasur","uncape","adoptedly","encompasseth","blacks", + "opposing","warren","welcom","bedew","hilloa","pockets","joshua", + "valanc","arinado","doughy","ostentare","customed","disparagement", + "unresisted","spouse","engagements","perjuries","sincere", + "occurrents","kinred","endowments","ethiop","harried","antres", + "birch","mercer","maidenhood","plainest","garnish","highways", + "unseminar","founded","coasting","swimming","forenamed","forceless", + "enshelter","milksops","blithe","scoffing","confutes","strawy", + "crowing","bellows","doest","hurdle","horologe","contribution", + "saltiers","knewest","overhold","unsworn","potents","teller", + "contusions","unmarried","gentlemanlike","poins","speakest", + "thanking","ragg","muzzle","slenderly","embounded","strays","yeomen", + "mistrusting","spears","industriously","vexeth","cookery","stanzos", + "betroths","prosecution","hornbook","generative","immortality", + "indenture","disappointed","pined","unbent","assubjugate","reposal", + "steeples","cyclops","hugg","penetrative","archelaus","remediate", + "asketh","sermons","gazeth","libels","dalliance","hugs","chewing", + "toughness","neatly","restores","comprehends","rampant","mutines", + "conscionable","enjoined","incidency","carlot","sebastian","hovers", + "physical","enskied","staining","tantaene","usest","cadence","rake", + "starved","sylla","lames","boldest","wallet","bemonster","strutting", + "kindnesses","manus","urine","outgoes","wraps","richmonds","wrapt", + "outlaw","dismes","untowardly","commixture","picks","bodements", + "fedary","reposed","voic","brewage","pester","uprising","preceptial", + "exchequer","unpossess","pompion","breastplate","stocking","viper", + "affecteth","seducing","bepaint","expostulation","rant","voke", + "addressing","starkly","vortnight","birthrights","mutine", + "interpreted","exhale","reader","hibocrates","shov","farborough", + "pacorus","sterility","indisposition","slanderers","recountments", + "savagery","withold","conspired","raisins","bruising","debility", + "polemon","extol","conspires","courtney","poultice","ambiguities", + "piec","hull","pawning","pied","twas","pies","crumble","ciceter", + "century","wombs","forests","custody","bundle","schoolmasters", + "condemnation","misdoubts","brides","reflecting","impregnable", + "propinquity","loaves","untuned","womanly","olives","glistering", + "scrippage","nonsuits","waterdrops","timelier","expediently", + "denouncing","canaries","seamy","pinching","hefts","punishments", + "unload","sours","pinfold","clotpoles","abysm","mending", + "contrarious","injointed","branchless","unscour","prief","souse", + "succours","priories","supernatural","vore","lizard","ushered", + "unsavoury","breakers","boggler","traduced","bridges","lameness", + "passive","rave","fidelity","razed","outcast","performer","benied", + "castile","communicat","bullet","coops","abominably","omen", + "beaumond","jacet","mutations","plums","waywarder","pilf","hesperus", + "dissembly","batch","job","nightmare","dulls","interchanging","dully", + "plung","curstness","increasing","infinitely","justeius","usurpation", + "gaging","inveigh","seedsman","betook","oversee","frontier","sorted", + "contaminate","twit","lavolt","outliv","duello","cauterizing","vour", + "froze","overset","guiltian","carduus","apprenticehood","frog", + "monast","crossness","azure","bates","closed","pint","annoying", + "errant","overhead","endear","volivorco","soliciting","pausing", + "overhear","hundreds","chariots","raving","garters","dabbled", + "rejoiceth","exhaled","straited","quitting","mered","woollen", + "dicers","chameleon","document","codpieces","imprese","vacation", + "straiter","untimber","trencherman","bedclothes","suppers", + "renouncement","haven","baths","carman","inheritors","dreadeth", + "polecat","quenchless","pickaxe","calaber","murtherers","becomings", + "valentinus","bottoms","unthrifts","unhand","engrossest","beached", + "majestas","obscuring","dispiteous","streamed","haggish","couplets", + "eyases","behavior","boll","subsidy","fontibell","twos","patients", + "despoiled","piss","unbloodied","pomander","canonize","pinse", + "parthians","pancake","cites","corinth","unseasonably","publishing", + "exorcisms","reproveable","excrements","flouts","devonshire", + "adoreth","personating","cudgelling","unhapp","reveler","tellus", + "jug","jacob","fabric","legacies","bona","vengeful","jumpeth", + "leopards","sawpit","dryness","ponder","wharfs","inurn","crests", + "shrill","drest","primy","toaze","loudly","umpire","clearest", + "displeasures","quarry","games","wherewithal","forgave","bood", + "extortions","modicums","preparing","winning","sprag","combination", + "sweeps","illyrian","boor","unharm","thrilling","transcendence", + "enkindle","penurious","caters","shrimp","indubitate","sprat", + "unwelcome","sharpens","bubbling","mayday","teat","pettish", + "guiltily","reacheth","sentinel","nuthook","plodders","academe", + "trains","unconsidered","potatoes","majestic","colbrand","infamies", + "handed","mutualities","regress","catlings","dissuaded","goad", + "interpreters","hirtius","prescripts","razor","unweighing", + "ratifiers","dreads","herrings","plantest","lifter","fronting", + "addicted","enfranched","robed","cakes","straitly","neighbors", + "unbefitting","prisonment","pawned","regalia","sneaped","idles", + "practicing","readins","profaneness","mischances","lyen","polusion", + "talkers","cneius","channels","executors","inhibition","bean", + "prolongs","clergyman","unpress","twiggen","resembled","track", + "ungarter","lanch","noddles","magnus","talkest","habited", + "confusions","reprobation","resembles","disinherited","ronyon", + "jurors","trances","gyve","sufficing","inventorially","bentii", + "steadier","chopping","meadows","eddy","irae","lanes","unbitted", + "coped","hooded","gallery","disjunction","scribbled","dwelt", + "unshown","repealing","askance","eden","weathers","rankly", + "trappings","coesar","ringwood","yawning","cancell","bloodshed", + "labienus","scholarly","violates","scotland","transformations", + "priority","eclips","hardest","reasoned","dirges","grappling", + "posthorse","ratolorum","billiards","exult","rapes","encircle", + "eyebrow","perspective","dimming","unbashful","murk","compartner", + "responsive","culpable","stifles","causest","milford","plummet", + "penker","agnize","conserve","mush","audacity","husbandless", + "bescreen","musk","abandoned","muss","environ","augury","falter", + "unvisited","causeth","appeas","childed","harelip","importunacy", + "collars","unsquar","coronets","firmness","withers","pipers", + "scrimers","greenly","jovial","clergy","pursuest","ribands","discov", + "besotted","thwack","daintier","trait","dainties","emblem","zodiacs", + "rooting","moraler","pioneer","ground,as","tormented","solidares", + "phantasimes","rottenness","carv","cleaving","homager","yead", + "reclusive","fathered","cask","bested","ramston","pertains", + "necessitied","progenitors","atonement","rumble","limbo","vowel", + "revelry","glover","clerks","ewer","deceptious","giantlike", + "bordeaux","talked","moonish","shiny","gorg","vanisheth","tottered", + "insulted","contracting","vastidity","pillars","pastimes","beagles", + "consanguinity","airless","affectionate","closure","snowy","rioter", + "palabras","thicken","shoemaker","varld","tormentors","crone", + "upstart","affianced","unnumber","reprehended","tatter","tens", + "probal","irishman","justicers","tragical","menaces","bere", + "withstand","contraction","michaelmas","giantess","daintily", + "hundredth","petar","pyrenean","brokes","comagene","descants", + "accepted","crook","colourable","persecuted","tranc","spher", + "fortuna","inquisition","governance","hazarded","barkloughly", + "roughness","browsing","immoderate","ferret","fatherly","interlaces", + "irks","eaves","solicits","excommunication","gorging","zany","whenas", + "impartment","ennoble","harrow","overshines","prejudicates", + "unpossessing","official","irishmen","parasites","acclamation", + "beneficial","seafaring","regentship","bursts","crops","embalms", + "bevy","covertly","malefactor","enamour","unmasked","bickerings", + "benefice","libbard","pentecost","monachum","cloist","abbots", + "appertains","philippan","viewest","janus","lucentio","auditors", + "fumblest","trapp","obstinately","traps","comfect","nutshell", + "carnation","elegies","mountant","clew","unregarded","enactures", + "fulfilled","relume","extoll","blazoning","railed","unpack","wrung", + "jerks","beholder","shrouding","sparta","panted","wimpled", + "permitted","chatter","thirsting","grassy","testimonied","lessen", + "protectress","antick","travails","dissemblers","ridden","assailing", + "testimonies","minim","deceivers","derogately","reaps","aimest", + "strides","bucks","factors","hawks","limps","trebles","wingham", + "stubbornest","butler","blabbing","sancta","muzzl","ungor","scaring", + "personate","ungot","droven","dilate","rears","yerk","recalled", + "dismask","peaces","lukewarm","hearsay","fulfils","eyrie","stammer", + "squand","engluts","apostrophas","endanger","chained","unpaid", + "impair","cavil","audible","heedfull","meekness","demuring", + "felonious","valuing","hackney","clogging","vileness","bluest", + "heartsick","expositor","bloodshedding","displeased","kneaded", + "companionship","famed","profoundest","wharf","halloa","indigested", + "reserved","outjest","fantasticoes","victoress","pioners","retract", + "halloo","dignifies","gurney","skillet","evenly","banditto", + "submitting","expiring","reserves","unexamin","observancy","clipp", + "conveyers","enginer","udders","criest","clipt","catches","trueborn", + "wrenching","glouceste","paternal","farmhouse","landless","doubling", + "crieth","controller","notebook","compassing","softness","ciphered", + "flagon","solemnized","ensteep","anoint","wringing","outfacing", + "anticipates","adsum","monstruosity","mortifying","deflowered", + "remainders","mounseur","squash","revealed","vaunted","disclaims", + "ale","nightcaps","notedly","tevil","repulsed","pears","muscovits", + "ventures","untraded","untold","cowish","fordo","equalities","fords", + "ranging","fervour","punched","combatant","southward","bustling", + "dislimns","idolatrous","pease","overearnest","wedged","ruptures", + "romage","lutestring","debtors","warrener","issued","unspoke", + "lightnings","pantry","skillful","default","steely","behooves", + "resisted","colleagued","ang","continuing","fawns","cavils", + "ordaining","cobble","refell","nicety","rouseth","barnes","suiting", + "cupids","calms","norbery","riseth","hinges","ventages","sheweth", + "meetest","visions","cackling","ensconced","rebate","infixing", + "rampir","rebato","injunctions","stopped","searches","qualifying", + "whitely","theban","coelestibus","unpath","falstaffs","mitigate", + "neroes","allhallowmas","cassocks","mints","forfeiture","cloths", + "associate","lanceth","disjoins","disjoint","unhelpful", + "greensleeves","minstrel","carrier","principalities","ark","trooping", + "hooking","masterless","precipitating","justness","fade","interposes", + "chroniclers","espials","upholdeth","atonements","hoise","snaffle", + "needfull","steeps","dragged","parent","untrodden","steepy","filch", + "reclaims","rover","battalia","impawn","swung","immoderately","forks", + "predecease","sewing","waterton","daintiness","salary","expectance", + "ensconcing","affianc","unsifted","unassailable","labyrinth", + "sanctimonious","exempted","romano","stalling","poisoning","fencing", + "bulwarks","imitations","blaspheming","superserviceable","woefullest", + "pardoner","steers","passport","unblown","filed","represent","indian", + "mislead","forehorse","amerce","abated","sandal","peaking", + "marchpane","casual","invented","bowing","topgallant","invested", + "verbosity","attorneyed","snowballs","tight","preyful","unseemly", + "granteth","supplying","matrons","falcons","colouring","grapples", + "givers","lewdly","foretells","designment","changeful","impotence", + "pendant","belongings","taller","towardly","benevolences","particle", + "fronts","cozener","gratii","glanc","indict","calve","dispraisingly", + "lined","pythagoras","temporary","topping","beautied","fait","vowels", + "whitest","superficial","bajazet","corresponsive","yaughan","indies", + "devising","observants","sleid","repeating","bunch","deucalion", + "disputable","punishes","scalding","bunting","contradicts","machine", + "accoutrements","berrord","tyke","pitchers","supportance", + "unexecuted","triumvirs","propend","behead","triumviry","placentio", + "enrage","tempter","persecutions","ripen","indign","walnut","riper", + "shivered","cohorts","cogitation","reconciler","afflicts","footsteps", + "semicircle","carrions","heartlings","falt","affiance","droppings", + "damns","interlude","enwombed","superbus","confiscation","measured", + "unrighteous","particularities","forum","invasive","coragio","dumbly", + "conspiring","minions","frances","trull","aidant","intelligo", + "dividable","traitress","handling","chollors","smatter","damon", + "usher","horseback","links","billeted","prized","thickens","purr", + "purs","federary","bastardizing","maturity","trippingly","opposeless", + "fans","strumpets","archer","poles","diction","comutual","damps", + "lazars","dich","undetermin","imposed","shrieve","penitents", + "pronounced","lighten","squabble","gathers","unmindfull","cheveril", + "geminy","unmannerd","shovel","smarts","machination","lighter", + "seethe","quickness","rogero","horsing","speediest","intermit", + "attractive","stemming","repeats","intermix","tallow","stakes", + "muzzled","buttered","evans","murrain","needeth","elysium","bas", + "haggards","censuring","dismayed","twinkle","humbling","watchings", + "wringer","lac","edifice","scalded","sledded","stealer","bareness", + "excusable","forbiddenly","dieu","reinforcement","strangest", + "ruminaies","lam","curbed","ankle","fifteens","fulfilling","couching", + "enrapt","diff","chopp","rhymers","sergeant","chopt","ambuscadoes", + "puzzles","flagons","recorder","eels","hurtling","edifies", + "superiors","exceptless","snails","chastest","amnipotent","garment", + "unsphere","farthingale","unplagu","amending","bel","arithmetician", + "greens","debator","bet","adopts","digs","headless","umber", + "unimproved","latches","genitivo","bobtail","galathe","settling", + "deepvow","unfruitful","linta","outroar","benevolence","passant", + "grisly","eruption","moult","induced","gained","uprear","fats", + "matthew","ingross","gainer","bowling","coram","romanos","detesting", + "mincing","outdar","tradesman","metre","caesars","miraculous", + "contestation","corbo","flowed","familiars","naughtily","riddance", + "applaud","bis","garnished","les","kitchen","liberties","layest", + "rocked","jesus","mette","flaky","deformities","knead","rusted", + "thrumm","notary","delighting","amplify","unstooping","quatch", + "greybeards","increased","beseemeth","unproper","brittany","ooze", + "divulge","prester","unroosted","flights","fordone","condemning", + "loading","uproar","inkles","lazar","dild","accuseth","procur", + "usurpingly","childlike","calumniate","behoof","novelties", + "intenible","intellects","mealy","bedash","poising","surveyest", + "advantaging","palsied","softer","dowries","prolixious","palsies", + "continually","tradesmen","dims","deluge","goodyear","primero", + "riders","daunts","bog","indue","untried","casketed","bacon", + "oftener","lapis","ridest","smirched","bodiless","abridgment","fuel", + "langton","rideth","quire","pamphlet","dint","loosed","mermaids", + "villianda","encompassment","streak","fatted","loosen","bedaub", + "pharsalia","despiser","carous","jowl","understandeth","combated", + "camest","sarum","agile","indited","fatter","bocchus","subversion", + "amazing","unfinish","umbra","divideth","someone","palating", + "proportionable","outworn","conjuring","corky","epicurus","jamany", + "scribbl","grasshoppers","singes","thrush","dips","volquessen", + "greasily","morris","submerg","vauntingly","superscript","cromer", + "thrived","berhyme","wafting","scotches","issu","enduring","unwhipp", + "bug","challenges","divorcement","rustle","unstaid","kettledrums", + "shipwrights","faultiness","diffus","scribes","symbols","inventions", + "uncropped","loathsomeness","plural","unfaithful","guardians", + "diminutives","hideousness","endings","unsinew","prank","renege", + "unthread","preferring","gamesome","mockable","scall","gardener", + "face,.though","loa","lackbeard","opes","phantasma","derivative", + "senoys","misplaced","insisted","shepherdesses","lop","tails", + "perplexed","indentures","sunken","misplaces","scann","guiana", + "heyday","loathness","lapse","gabble","wheeling","atwain","memories", + "heartbreaking","taming","breeder","cacodemon","sicilian", + "unrightful","enigma","inwards","stepping","whelped","stithy", + "sallow","politicly","glutt","hearths","ursley","persists","sadder", + "foresight","lasses","enseamed","depended","crusty","paragons", + "saturdays","ranting","leaky","orgillous","incorrect","tyrannically", + "dercetas","bigamy","dartford","bateless","absolutely","paphlagonia", + "erudition","signiors","subtilly","compelling","signiory","grandsir", + "smilest","carouse","unread","dispark","stingless","unreal","arouse", + "sluttery","malapert","deferr","rugemount","unbanded","smilets", + "scarr","uncapable","teipsum","magnificence","forswearing","acerb", + "mounsieur","dissentious","rounding","taciturnity","steadfast", + "glisters","cotswold","cloudiness","suspire","twentieth","uplift", + "beehives","disorb","unbreech","luc","fust","retails","hests", + "vaumond","neighing","fallen","tybalts","discontinue","aunts", + "dishevelled","coverlet","sewer","sarcenet","dizy","redeemed", + "unwept","behav","emulator","provides","brocas","vexes","bandying", + "beloving","blended","discomfortable","thromuldo","overt","skirted", + "christen","rheums","staled","distasted","imitated","encompassed", + "rheumy","viewless","mouldeth","preaching","cytherea","hisperia", + "forfended","volubility","recov","carper","cak","preserving","carpet", + "parch","keiser","captious","ardent","bedfellows","seasick","client", + "cas","revengers","greenwood","maidhood","enlargeth","packthread", + "paysan","tullius","receipts","permissive","appliances","encamp", + "auld","lym","leash","clammer","graveness","pertain","seaside", + "healthsome","caelius","real","omission","swearings","portraiture", + "angler","puddled","prompture","vexing","pared","penitently", + "welcomed","welcomer","jesses","impeachments","truepenny","overseen", + "moisten","sain","phaethon","klll","divorced","speens","rattle", + "barons","rede","obtaining","glimpses","pippins","kernal","emblaze", + "cherishing","beautified","shared","uprous","misbegot","reputing", + "leavy","unlived","cressids","reed","sottish","mowing","relative", + "dreams.till","mauritania","reel","saucers","exposing","renews", + "struggle","intestate","deform","wanders","perpendicularly", + "misfortunes","parling","grav","bestirr","lingered","opprobriously", + "enwheel","salv","gaols","doits","gests","goliath","unsullied", + "traitorly","che","chi","landmen","juggled","mornings","magnifico", + "threatening","sand","primogenity","mover","whirlpool","quakes", + "sportful","goths","waddled","machiavel","minces","squints","beliest", + "convive","pierced","pomps","magical","vinaigre","cleans","chalice", + "feathered","mousing","rivets","befriends","insomuch","unpolicied", + "accordeth","cruels","rescues","kneading","oppresses","quiddits", + "masculine","item","midsummer","bumbast","insult","amply","clamb", + "guardage","bifold","goatish","unburthen","speculation","slewest", + "screen","preformed","encave","splenitive","chines","distinguishment", + "fleshmonger","consonant","continency","chamberers","excite","parks", + "condole","witnesseth","sodden","extermin","shower","irregular", + "uneasy","infusing","uneath","jeopardy","forthlight","eggshell", + "tiptoe","islands","foundations","prains","confessions","zeals", + "scutcheons","serpentine","resolving","omans","disprais","exits", + "trumpery","anvil","disturbers","bespoke","abstaining","afloat", + "cobloaf","cutpurses","squeaking","tortoise","spak","methink", + "pineth","treachers","clo","gleamed","coppice","throwest","mal", + "improvident","sard","seymour","mas","castaways","apollodorus", + "unfortified","dependence","whetted","reneges","horseway","roan", + "roscius","characterless","delivering","rotted","feebled","conflux", + "publicola","unreconciliable","voluntaries","accommodation","woof", + "reeked","differing","unwitted","picklock","timor","successfully", + "aristode","strewing","behooffull","tackling","fiddler","silverly", + "stigmatic","seedness","equalness","orderless","hunters","detriment", + "bloodiest","soundless","hatchet","blameless","swooned","sheepcote", + "fineless","pepper","reiterate","overmaster","zwagger","holborn", + "capite","mistemp","satirical","profanely","beastliest","flaxen", + "plaguy","abatement","hunteth","fragrant","mantles","denotement", + "convented","unpurpos","unintelligent","shadowy","amidst","adhere", + "june","ray","rods","immoment","hedges","sipping","pigmy", + "distasteful","firstlings","usurpers","chatham","cod","glided", + "smatch","achievement","powerless","pawns","metropolis","dogg", + "fustian","clare","bathed","sharps","possibilities","nonage","roes", + "vermin","regular","mammering","mindful","holden","hearkens","bathes", + "purgers","rushling","glides","impugns","thraldom","witches", + "overlooks","brevis","cox","badly","addrest","mede","yongrey", + "fierceness","jollity","supposest","softens","unmoan","repining", + "delver","tincture","displease","pharaoh","hereabouts","untented", + "honeysuckles","pheeze","lodgings","fartuous","ardour","outwards", + "brac","fleering","drawbridge","arinies","enobarb","northerly", + "affordeth","chinks","ripening","finally","wakest","forethought", + "umpires","supernal","peaten","brav","cypriot","grindstone", + "carnally","pecks","mid","distribution","engaging","drudges", + "assistants","wort","mir","contended","owning","speculative", + "grasped","manslaughter","partaken","jury","invective","augurer", + "transgressed","partaker","extends","heartiness","encouraged", + "spinning","unpriz","profaners","unskillful","mountebank","godson", + "undream","muskets","diablo","cuffs","embroidery","egregiously", + "furbish","phrynia","silenced","frailties","corrupting","necklace", + "guinever","brainless","reword","inevitable","shiver","congied", + "misterm","fellest","justest","haunch","greyhounds","pudder","metres", + "pastures","dolt","abrook","backwardly","bellies","tinder", + "induction","coagulate","consistory","orodes","finch","hobbyhorse", + "discredits","including","predominance","outfaced","crouching", + "havens","fornications","inexplicable","enchained","conserved","lied", + "fisher","rip","squirrel","inmost","sinfully","terrace","lien", + "ransacking","turlygod","cosmo","upbraid","hoard","herdsman", + "questrists","empery","outbreak","catechising","uneffectual","beckon", + "cautions","unswept","grop","aspics","gipsies","mell","hoars","gros", + "enchantingly","tippling","turnips","recomforture","hybla", + "unprovide","heritage","longboat","valentio","phlegmatic","hardiment", + "mot","drabbing","rheumatic","fumiter","mow","moy","remonstrance", + "wags","thasos","brooded","masker","purloined","perishest","writs", + "superstitiously","mandrake","gossiplike","cum","frontlet","halcyon", + "naso","engaol","comart","rattles","congealment","therewith","berry", + "frenchwoman","contentious","ideas","seducer","nursest","cataplasm", + "clipping","unscratch","published","salmon","cunnings","franklins", + "heartens","molestation","grime","posteriors","inwardness", + "operations","discontenting","bemadding","wheaten","cloves", + "exasperates","enterprises","drizzle","forenoon","falconer","grind", + "entertaining","coldness","tenor","beadles","local","tartly", + "swarming","mrs","suffocating","swills","misspoke","victims","blubb", + "clays","aves","unfashionable","blazed","removedness","intercepts", + "computation","nave","vede","coldest","pecus","overwhelming", + "buckram","purify","underwrite","cellarage","funerals", + "indistinguishable","accumulate","suffocation","maledictions", + "inequality","canus","blazes","detention","roi","fairwell","didest", + "blackamoor","cerements","select","thitherward","defiler","amble", + "occident","enforcedly","situate","nipple","rosy","shortness", + "scattering","dullest","wizards","awaits","outrages","devoutly", + "adored","penthouse","chalices","dirty","tatters","battering", + "adores","herdsmen","dreading","wainscot","rots","questionable", + "spun","sharpen","triumphers","caitiffs","pissing","too,.good", + "critics","mastiff","adulterates","mun","cautel","unnumb","repliest", + "groundlings","improper","intrinse","decipher","stews","pickers", + "proposer","detractions","proposes","fixes","maculate","babies", + "darkens","dout","limn","giddily","deathful","argue","evasions", + "limp","really","unbewail","unremovable","alla","discandy", + "rotundity","laces","envenoms","peised","imparteth","roisting", + "collied","oeillades","assuage","feigned","mete","unremovably", + "drumble","alls","udge","embold","ally","induce","sickliness", + "bespake","excelleth","tainting","unprun","gravities","clownish", + "hiems","libertines","grub","fortressed","engineer","getrude", + "casements","fordid","expounded","apter","searce","lasted","cliffs", + "rabbit","moming","uphoarded","discerning","adoring","stretches", + "progression","wann","approachers","costs","cherubims","augment", + "perigort","oeuvres","threepence","footmen","dependant","critical", + "elflocks","lipp","reconciliation","doted","periods","continents", + "sphinx","unpurged","hebona","enanmour","lengths","enfoldings", + "strangler","strangles","luckier","indues","doxy","complained", + "capels","wreak","conversant","tittles","foals","goddild","mehercle", + "forgone","witching","manlike","affirm","sophisticated","hildings", + "hurtled","darkest","established","philadelphos","espoused","texts", + "lobbies","counterpois","ordinaries","fevers","barefac","wappen", + "beteem","unbodied","cancelling","mourned","actively","marted", + "holidam","withdrawing","donation","uncharged","altars","missive", + "sated","asmath","dozy","adventures","shrills","oldest","shrilly", + "purport","apoplex","loather","unattempted","sharply","reformed", + "pleadeth","avow","unholy","penning","nostrils","solicitings", + "undescried","plaintiffs","nervii","wagtail","inspire","discernist", + "adorns","mower","fraudful","astonished","inclined","bursting", + "leagued","handsomely","exactest","lycaonia","bluntness","unmade", + "undressed","hazel","leaguer","soberly","peloponnesus","inclines", + "locking","languishings","whencesoever","undergoes","unknowing", + "wearers","pressure","dribbling","frowningly","dependents","keepdown", + "abuser","friendships","hoarsely","slings","rye","heeded","cambridge", + "polydamus","conspirant","satin","healthy","outlook","unbraided", + "satis","bawcock","cancer","discomfit","precurse","overweigh", + "inflamed","highmost","infernal","extemporally","crownet","elephants", + "trice","effigies","reflects","gaingiving","confining","fishpond", + "gaudeo","gennets","shearing","intelligencing","reaching","resolveth", + "nag","christopher","exampl","solemnize","vizaments","occupy", + "fleshment","adriano","spited","envelop","shovels","unbound","surges", + "despising","discomfited","wawl","gainsaying","conjoined", + "uncontrolled","worries","nominated","imperfection","resolves", + "precept","dildos","blurs","wrings","unhorse","ladyships","veronesa", + "valueless","moonshines","egma","unweeded","cheapest","volable", + "verb","erecting","spinster","gravell","incertainties","lonely", + "tries","travellers","wittolly","vainglory","soundpost","subduements", + "proclaimeth","heartache","peregrinate","intituled","strengthless", + "unslipping","turncoat","empale","polacks","plodding","culling", + "defuse","divert","inference","strung","thriftless","misanthropos", + "quagmire","catarrhs","unfeeling","pierceth","hamper","hyen","dad", + "discipled","divest","brooding","easiest","dan","neb","ned","unhous", + "bacchanals","vitae","unrecalling","legitimation","pickaxes", + "perturbations","versal","vital","daw","villager","unmake", + "pendulous","oldness","trempling","aired","whipster","maladies", + "mousetrap","marsh","viciousness","disputed","dilemma","chariest", + "tinsel","cods","elsewhere","arraigned","rents","disputes", + "yellowness","wrens","slandering","bagpipe","bargains","pitcher", + "ashouting","conducted","inkle","hurly","discerns","gourd", + "erroneous","revoke","easter","bucklersbury","epicurism","saf", + "mourns","unmann","pulpiter","inquiry","loathly","scarecrow", + "consolation","machinations","scamble","fleece","drier","nurture", + "dries","thronged","garbage","flatly","nonce","strived","travers", + "chough","fructify","healeth","sucked","entombed","gravest", + "neighbourly","seein","trill","explication","transcends", + "constancies","ruby","compile","sedges","rustling","encloses", + "engrave","gouts","abstains","warden","puppets","passed","warder", + "blunted","allicholy","nip","uncurse","nit","ovidius","penalties", + "treaties","ripeness","endurance","virginalling","gelding","thirst", + "hedgehog","bankrout","unfilial","deo","disciplin","hawthorns","des", + "guerra","deems","herculean","ripest","chrysolite","austereness", + "ordinant","spinners","chopine","nourishes","invade","sew","princox", + "hearings","uncheck","agues","resty","fatting","distilled", + "uncomfortable","sossius","income","overjoyed","masonry","seely", + "prings","coinage","preferments","acordo","claret","addressed", + "cuckoos","achieved","losers","hoards","appurtenance","hogs", + "steering","hurry","skilling","lacies","bides","whatsome","besom", + "enticing","ruff","achiever","alighted","incorps","achieves", + "betossed","exactions","unpolish","engrossing","disable","illiterate", + "rebukeable","dispenses","paracelsus","colt","greases","appal", + "unmast","rustics","incessantly","goodnight","solder","pronoun", + "continued","outfac","pelleted","demonstrating","trips","comb", + "charities","abhominable","revell","continuer","eneas","praetors", + "unrestrained","sneak","bating","turneth","nob","merlin","manual", + "unowed","deeps","drily","pomewater","behavedst","irreligious", + "passio","unsmirched","ungenitur","distracts","forestalled", + "epitheton","martyr","bowler","hois","suckle","freehearted", + "timorously","furlongs","turbulence","slug","smiteth","obeying", + "phoenicians","behalfs","phebes","deepest","singeth","gramercies", + "disponge","friended","halls","coact","siz","briefness","unforced", + "stragglers","unqualitied","scored","faustuses","ribaudred","liefest", + "haec","predicament","conductor","dir","dis","leman","amiens", + "redressed","woodbine","nereides","morisco","div","unarms","bessy", + "frisk","redresses","squiny","dang","outscold","fumes","residue", + "phoenicia","seese","clawed","quintain","soaks","fanciest", + "unfitness","crowkeeper","gelidus","decimation","suppliance", + "inhabitable","stoccata","taunting","apparitions","vouches", + "swiftest","detains","philosophical","minnow","leiger","impressed", + "lards","clippeth","soulless","vais","concur","unresolv","defacing", + "croaking","kicked","displant","offendress","disvalued","rump", + "berhym","custalorum","glister","villians","proclamations","purely", + "yells","fertility","brewers","noblesse","nuts","indifferency","runn", + "ingratitudes","coted","mortar","sob","disvouch","rubbing","sod", + "morsels","bringer","tremor","consumptions","disbranch","gibber", + "unagreeable","hammering","dressings","pulpits","untrussing", + "stomaching","cutpurse","felony","tully","attentivenes","finder", + "derision","recoiling","execut","unearthly","supervisor","seasoned", + "uncontroll","tressel","glide","tresses","perverse","cambrics", + "fleers","perturbed","ushering","unpractis","sacrificial","fronted", + "wagged","supersubtle","appelant","capriccio","warily","reverb", + "relieved","peise","emnity","ruddiness","outscorn","cardinals", + "attempted","discolour","effectual","mithridates","informal", + "spouting","boors","vant","spaces","treat","crowning","lincoln", + "tick","revers","cautelous","ceaseless","undinted","blotting", + "unpolished","coachmakers","depositaries","hoof","christianlike", + "untutored","ministration","treatise","rates","described","veneys", + "describes","misreport","distempering","arteries","soars", + "congratulate","usual","treasonable","prints","pates","noverbs", + "liegeman","dressed","scrip","appeals","beseem","fico","rescal", + "luccicos","scythian","photinus","specify","slandered","vouchsafing", + "unmitigated","regiments","targes","sooty","piping","sub","zone", + "earing","tiff","honorificabilitudinitatibus","vara","pillows", + "ungodly","stonecutter","propounded","demise","martyred","marigold", + "untrod","easeth","unlace","bountifully","receptacle","tardied", + "insanie","hungarian","pretended","forted","ambo","disembark", + "opposer","attracts","tuning","contentless","gutter","thereabout", + "honorably","ingots","darnel","ariseth","discommend","unweighed", + "medal","tuition","squeak","feedeth","squeal","liegemen","stelled", + "sardians","lemon","myst","requites","gnawn","deafs","tenable", + "ransacked","narrowly","loof","twinkling","accidence","ringing", + "vaux","gnaws","honestest","patterns","perdurable","illuminate", + "solidity","groping","reproving","unconfinable","morality", + "carnations","perdurably","panderly","proposition","coverture","gems", + "mangle","overpeering","physiognomy","abruptly","bezonians","redness", + "brigandine","baffl","longtail","roundure","lopp","silliness","medea", + "norwegian","proposing","misapplied","dozed","distaffs","advantaged", + "tilt","immodestly","doters","priscian","anchoring","sweetmeats", + "gens","pointblank","capilet","fortification","bestained", + "obstruction","conceptions","pyramid","ribald","rebeck","shelters", + "whenever","squarer","squares","dawn","defam","evades","cogitations", + "mourners","ocular","jowls","endite","rapture","schoolboys", + "conveyances","worthied","aleppo","unanel","hailstones","outfly", + "fleeces","prouds","muffl","blamed","singulariter","convinced", + "longings","tiny","gadding","endowed","injunction","maxim","aiming", + "mortis","pantaloon","brimful","plighter","spangled","mountanto", + "fixing","ode","custard","smit","blames","razing","foreigners", + "stuffs","shivering","sacrificing","tipp","vesper","odes","taxations", + "tips","unsightly","shipmen","insinuateth","supporters","waterish", + "palaces","defer","miller","cannibals","franker","ungentleness", + "hyrcanian","whoop","dealest","gashes","charging","epilepsy","gest", + "uncertainly","discharged","propriety","glanced","appease","novices", + "debaters","virginal","justles","gaged","fathomless","glances", + "impudently","onion","giglets","contemns","betid","offenceful", + "outright","guided","standest","faultful","cheats","glozes","masts", + "goodlier","luckiest","untangled","scimitar","depeche","complains", + "bandied","advocation","glist","fillip","fount","drunkenly","homes", + "metheglins","douts","quak","startingly","envying","sconce","ruthful", + "quat","lown","quay","echoes","gondolier","lavish","thimbles", + "praiseworthy","unpeg","uncomprehensive","reedy","espied","woundings", + "splay","shineth","lewdness","tardiness","separates","labourer", + "unpitifully","deedless","conceptious","bennet","constring","glitt", + "unaccommodated","baker","bakes","calves","fleshes","brotherly", + "livelier","hurricano","captivated","purples","dispatcheth","espies", + "earthy","smulkin","iscariot","pedantical","smok","exposure", + "prohibit","shriller","triumphantly","concupy","wondrously","dears", + "victual","miching","serviceable","departs","dedicated", + "prescriptions","strictly","misthought","injurer","usury","reliances", + "thumbs","potions","deceivable","touze","dedicates","humbles", + "commissions","pheazar","devises","conquered","nutriment","luscious", + "fattest","tugging","hidest","prodigally","indulgent","felicitate", + "manure","slaughterhouse","pensiveness","tal","harbouring","scorpion", + "dye","resumes","vented","thunderstone","tam","royalize","tap", + "opulency","enquired","monarcho","abler","confluence","mellowing", + "duchies","danskers","cogscomb","whitsters","betoken","emmanuel", + "portotartarossa","interrogatories","grains","patrick","strictest", + "fadoms","pothecary","streching","souring","potently","sumpter", + "adamant","incensing","notion","uglier","dominations","antidotes", + "unattainted","wrathfully","stinging","sheeps","unkept","rewarding", + "cheerless","tally","enguard","smug","treys","ionian","prepost", + "quittal","viewing","shipboard","palfrey","protractive","governors", + "recounts","pourest","angelical","dutiful","biddings","vengeances", + "gipsy","stinkingly","evitate","philemon","professors","abash", + "upbraided","entreating","coursing","severely","happiest","consters", + "gleek","pastors","permanent","indrench","barred","scandy","tricking", + "barrel","foreward","osier","risen","preordinance","charmed", + "disquantity","seasoning","lubberly","forewarn","obligations", + "instigated","eminently","misconstruction","almond","conjurations", + "inflaming","collar","villainously","charmer","quinces","camping", + "mewed","charbon","turncoats","misinterpret","extracted","skulking", + "underground","summoners","students","surmis","billing","arbitrators", + "quitted","crimeless","waywardnes","dashing","wheer","fauste","scal", + "scan","revolve","stomachers","flecked","springes","obstruct", + "contumely","stillness","consummation","recommends","fleshly", + "infold","lingers","nurses","characts","honeying","termed","vales", + "tackled","ancestry","grievest","butcheed","unneighbourly", + "divulging","eagerly","tumbler","oui","chasing","mockvater","hydra", + "gliding","booties","dowerless","dinners","enticements","votary", + "tib","vastly","huntress","ticklish","annex","issueless","profoundly", + "abbeys","unwatch","sanctuarize","facere","perfidious","orld", + "robbery","reeky","confixed","deceiving","overkind","genders", + "cheaters","impos","normans","manifoldly","wishers","attainture", + "snapp","wastes","dilemmas","fullest","rioting","starveth", + "untrained","sporting","mustering","rewarded","astronomical","gale", + "wiles","sender","cynthia","rewarder","beguild","meiny","deracinate", + "wishest","truster","ditties","thoas","barbermonger","sermon", + "tested","warring","intendeth","stanch","discontentedly","repel", + "brecknock","gambol","goaded","soiled","assumes","tester","dismemb", + "strewments","aspicious","enriched","sprinkles","friending","aided", + "upbraidings","phantasime","bragged","succeeded","diminution", + "indistinguish","talons","spades","pioner","forefather","deprave", + "pathway","warrants","enriches","fearest","gaping","extern","seniory", + "fells","plessing","attributed","ransoms","tinctures","dastards", + "promiseth","loquitur","streaming","guilfords","oppugnancy","weening", + "bedeck","saturday","windpipe","misheard","chicurmurco","tenement", + "gaol","woodland","sliding","hereabout","comprising","feareth", + "milkmaid","owing","stringless","tuners","qualification","rumor", + "diverts","advises","collie","maritime","evidences","petruchio", + "lavender","unguem","flakes","outlaws","cheapen","erebus","worry", + "rebound","barrow","longed","snarleth","severest","defeated", + "instigator","cheaper","sinning","potato","damosella","prosecute", + "trampled","restful","matin","baillez","sheathes","courted", + "auguring","insuppressive","arrivance","winded","revealing","unhatch", + "operative","indexes","sunrising","spigot","necessarily","fullam", + "squeezing","repugnant","justs","battalions","sanctimonies","tutored", + "bullocks","rector","subsequent","gash","bridegrooms","tod", + "forerunning","observers","lovingly","prevaileth","forthright", + "unloads","perusing","whelk","fenc","dreamers","withholds","knotty", + "compose","whelm","minerals","haunches","takest","ditty","compost", + "swineherds","margarelon","imperfectly","pastorals","misgovernment", + "interruptest","negotiations","demonstrated","vaunting","gaul", + "adornings","tithed","ravishments","misgoverned","occulted", + "certainer","decrease","float","denunciation","indispos","morgan", + "impertinency","unctuous","investments","acutely","fallible", + "sacrificers","composture","pastry","helmed","fanatical", + "crowflowers","parfect","graveless","straits","zenelophon","fragile", + "pac","heartbreak","pad","abridgement","portugal","unbowed", + "embrasures","copesmate","facit","suppliest","leaders","displacest", + "pugging","fracted","debile","warns","marbled","preeminence", + "obscenely","pap","mounteth","cockled","invocate","trimming","collop", + "yieldings","butchered","resists","swaggerer","wealthiest", + "unbookish","callat","umbrage","untired","vizor","propositions", + "enviously","unfellowed","wholesom","descents","diminutive","perusal", + "iwis","proselytes","leadeth","ennobled","illo","reeling","scants", + "ferrers","expressive","swagg","savoury","thirties","ballow", + "hissing","heirless","pommel","bolds","burly","untent","briefest", + "tub","churchyards","languageless","hospital","springing", + "grandsires","antenorides","wether","unacted","threepile", + "recognizance","pontic","southwell","moveth","statesmen","sullens", + "seller","fawneth","unvirtuous","flavio","oddest","capel","environed", + "dissolutely","feud","blinking","dappled","blains","whoremasterly", + "miser","savoy","hillo","perturbation","dapples","imperator", + "wagging","tediously","per","washing","dividing","glorified","pew", + "drawling","unsway","benches","suffigance","worths","dishonorable", + "obeyed","eventful","recompens","canons","crisp","hammered", + "giddiness","varletry","confirmers","notest","taber","information", + "diamond","compiled","importancy","stormed","melancholies", + "accusative","hewgh","equivocation","salutations","bepray","assures", + "allurement","tamed","yorks","unclew","outran","entertainments", + "parricides","tamer","lymoges","tames","eie","stratford","thrifts", + "varletto","unreclaimed","coursers","runner","attainted","rendezvous", + "enmesh","decayer","spherical","partizan","exhal","pid","cullionly", + "mephostophilus","amphimacus","perused","unpublish","deliciousness", + "frush","retention","unlov","impatiently","antiquities","huntsmen", + "hostility","loosing","tods","hottest","slaying","hostilius", + "behaviors","connive","teacheth","burghers","scorned","corporate", + "disobeys","dorsetshire","adjoin","finical","toes","february","unapt", + "pail","despitefully","kindless","cappadocia","dwelled","billets", + "brambles","laundry","wondered","swans","pearly","difficult", + "fehemently","flushing","wotting","ensnareth","solicitation", + "sugared","recoverable","purged","adjoining","preventions" +}; +extern int firstnames_len; +extern char *firstnames[]; +extern int lastnames_len; +extern char *lastnames[]; +extern int words_len; +extern char *words[]; +extern int provinces_len; +extern char *provinces[]; +extern int countries_len; +extern int countries_USA; +extern char *countries[]; +extern int emails_len; +extern char *emails[]; +extern int cities_len; +extern char *cities[]; +static struct idrepro idr[2]; +char dtd_name[128]="auction.dtd"; +enum { + ERROR_OBJ, + AUCTION_SITE, + CATGRAPH, EDGE, CATEGORY_LIST, CATEGORY, CATNAME, + PERSON_LIST, PERSON, EMAIL, ADDRESS, PHONE, STREET, CITY, COUNTRY, ZIPCODE, + PROVINCE, HOMEPAGE, PROFILE, EDUCATION, INCOME, GENDER, BUSINESS, NAME, + AGE, CREDITCARD, INTEREST, + REGION, EUROPE, ASIA, NAMERICA, SAMERICA, AFRICA, AUSTRALIA, + ITEM, LOCATION, QUANTITY, PAYMENT, SHIPPING, + MAIL, FROM, TO, XDATE, ITEMNAME, + DESCRIPTION, LISTITEM, PARLIST, TEXT, + OPEN_TRANS_LIST, OPEN_TRANS, CLOSED_TRANS_LIST, CLOSED_TRANS, + WATCHES, WATCH, AMOUNT, CURRENT, INCREASE, INTERVAL, RESERVE, + INCATEGORY, MAILBOX, BIDDER, PRIVACY, ITEMREF, SELLER, TYPE, TIME, + STATUS, PERSONREF, INIT_PRICE, START, END, BUYER, PRICE, ANNOTATION, + HAPPINESS, AUTHOR +}; +ObjDesc objs[]={ + { + 0, "*error*" + }, + { + AUCTION_SITE, "site", + { + {REGION,{1,0,0,1,1}}, + {CATEGORY_LIST,{1,0,0,1,1}}, + {CATGRAPH,{1,0,0,1,1}}, + {PERSON_LIST,{1,0,0,1,1}}, + {OPEN_TRANS_LIST,{1,0,0,1,1}}, + {CLOSED_TRANS_LIST,{1,0,0,1,1}} + } + }, + { + CATEGORY_LIST, "categories", + { + {CATEGORY,{1,0,0,1000,1000}} + } + }, + { + REGION, "regions", + { + {AFRICA,{1,0,0,1,1}}, + {ASIA,{1,0,0,1,1}}, + {AUSTRALIA,{1,0,0,1,1}}, + {EUROPE,{1,0,0,1,1}}, + {NAMERICA,{1,0,0,1,1}}, + {SAMERICA,{1,0,0,1,1}} + } + }, + { + EUROPE, "europe", + { + {ITEM,{1,0,0,6000,6000}} + } + }, + { + AUSTRALIA, "australia", + { + {ITEM,{1,0,0,2200,2200}} + } + }, + { + AFRICA, "africa", + { + {ITEM,{1,0,0,550,550}} + } + }, + { + NAMERICA, "namerica", + { + {ITEM,{1,0,0,10000,10000}} + } + }, + { + SAMERICA, "samerica", + { + {ITEM,{1,0,0,1000,1000}} + } + }, + { + ASIA, "asia", + { + {ITEM,{1,0,0,2000,2000}} + } + }, + { + CATGRAPH, "catgraph", + { + {EDGE,{1,0,0,3800,3800}} + }, + {{"",0,0,{0,0,0,0,0}}}, + 0x20 + }, + { + EDGE, "edge", + {{0,{0,0,0,0,0}}}, + { + {"from",2,CATEGORY,{1,0,0,0,0}}, + {"to",2,CATEGORY,{1,0,0,0,0}} + } + }, + { + CATEGORY, "category", + { + {CATNAME,{1,0,0,1,1}}, + {DESCRIPTION,{1,0,0,1,1}}, + }, + { + {"id",1,0,{0,0,0,0,0}} + } + }, + { + ITEM, "item", + { + {LOCATION,{1,0,0,1,1}}, + {QUANTITY,{1,0,0,1,1}}, + {ITEMNAME,{1,0,0,1,1}}, + {PAYMENT,{1,0,0,1,1}}, + {DESCRIPTION,{1,0,0,1,1}}, + {SHIPPING,{1,0,0,1,1}}, + {INCATEGORY,{3,3,0,1,10}}, + {MAILBOX,{1,0,0,1,1}} + }, + { + {"id",1,0,{0,0,0,0,0}}, + {"featured",3,0,{0,0,0,0,0},0.1} + }, + 0x40 + }, + { + LOCATION, "location" + }, + { + QUANTITY, "quantity" + }, + { + PAYMENT, "payment" + }, + { + NAME, "name" + }, + { + ITEMNAME, "name" + }, + { + CATNAME, "name" + }, + { + DESCRIPTION, "description", + { + {TEXT,{1,0.7,0,0,0}}, + {PARLIST,{1,0.3,0,0,0}} + }, + {{"",0,0,{0,0,0,0,0}}}, + 0x02 + }, + { + PARLIST, "parlist", + { + {LISTITEM,{3,1,0,2,5}} + } + }, + { + TEXT, "text", + {{0,{0,0,0,0,0}}}, + {{"",0,0,{0,0,0,0,0}}}, + 0x01 + }, + { + LISTITEM, "listitem", + { + {TEXT,{1,0.8,0,0,0}}, + {PARLIST,{1,0.2,0,0,0}} + }, + {{"",0,0,{0,0,0,0,0}}}, + 0x02 + }, + { + SHIPPING, "shipping" + }, + { + RESERVE, "reserve" + }, + { + INCATEGORY, "incategory", + {{0,{0,0,0,0,0}}}, + { + {"\1",2,CATEGORY,{1,0,0,0,0}} + } + }, + { + MAILBOX, "mailbox", + { + {MAIL,{3,1,0,0,250}} + } + }, + { + MAIL, "mail", + { + {FROM,{1,0,0,1,1}}, + {TO,{1,0,0,1,1}}, + {XDATE,{1,0,0,1,1}}, + {TEXT,{1,0,0,1,1}} + } + }, + { + FROM, "from" + }, + { + TO, "to" + }, + { + XDATE, "date" + }, + { + PERSON_LIST, "people", + { + {PERSON,{1,0,0,25500,25500}} + } + }, + { + PERSON, "person", + { + {NAME,{1,0,0,1,1}}, + {EMAIL,{1,0,0,1,1}}, + {PHONE, {1,0,0,0,1}}, + {ADDRESS, {1,0,0,0,1}}, + {HOMEPAGE, {1,0,0,0,1}}, + {CREDITCARD, {1,0,0,0,1}}, + {PROFILE, {1,0,0,0,1}}, + {WATCHES, {1,0,0,0,1}} + }, + { + {"id",1,0,{0,0,0,0,0}} + }, + 0x40 + }, + { + EMAIL, "emailaddress" + }, + { + PHONE, "phone" + }, + { + HOMEPAGE, "homepage" + }, + { + CREDITCARD, "creditcard" + }, + { + ADDRESS, "address", + { + {STREET,{1,0,0,1,1}}, + {CITY,{1,0,0,1,1}}, + {COUNTRY,{1,0,0,1,1}}, + {PROVINCE, {1,0,0,0,1}}, + {ZIPCODE,{1,0,0,1,1}} + } + }, + { + STREET, "street" + }, + { + CITY, "city" + }, + { + PROVINCE, "province" + }, + { + ZIPCODE, "zipcode" + }, + { + COUNTRY, "country" + }, + { + PROFILE, "profile", + { + {INTEREST,{3,3,0,0,25}}, + {EDUCATION, {1,0,0,0,1}}, + {GENDER, {1,0,0,0,1}}, + {BUSINESS,{1,0,0,1,1}}, + {AGE, {1,0,0,0,1}} + }, + { + {"income",3,0,{0,0,0,0,0},1} + } + }, + { + EDUCATION, "education" + }, + { + INCOME, "income" + }, + { + GENDER, "gender" + }, + { + BUSINESS, "business" + }, + { + AGE, "age" + }, + { + INTEREST, "interest", + {{0,{0,0,0,0,0}}}, + { + {"\1",2,CATEGORY,{1,0,0,0,0}} + } + }, + { + WATCHES, "watches", + { + {WATCH,{3,4,0,0,100}}, + } + }, + { + WATCH, "watch", + {{0,{0,0,0,0,0}}}, + { + {"\1",2,OPEN_TRANS,{1,0,0,0,0}} + } + }, + { + OPEN_TRANS_LIST, "open_auctions", + { + {OPEN_TRANS,{1,0,0,12000,12000}} + } + }, + { + OPEN_TRANS, "open_auction", + { + {INIT_PRICE,{1,0,0,1,1}}, + {RESERVE, {1,0,0,0,1}}, + {BIDDER,{3,5,0,0,200}}, + {CURRENT,{1,0,0,1,1}}, + {PRIVACY, {1,0,0,0,1}}, + {ITEMREF,{1,0,0,1,1}}, + {SELLER,{1,0,0,1,1}}, + {ANNOTATION,{1,0,0,1,1}}, + {QUANTITY,{1,0,0,1,1}}, + {TYPE,{1,0,0,1,1}}, + {INTERVAL,{1,0,0,1,1}} + }, + { + {"id",1,0,{0,0,0,0,0}} + }, + 0x04|0x40 + }, + { + PRIVACY, "privacy" + }, + { + AMOUNT, "amount" + }, + { + CURRENT, "current" + }, + { + INCREASE, "increase" + }, + { + TYPE, "type" + }, + { + ITEMREF, "itemref", + {{0,{0,0,0,0,0}}}, + { + {"\1",2,ITEM,{1,0,0,0,0}} + } + }, + { + BIDDER, "bidder", + { + {XDATE,{1,0,0,1,1}}, + {TIME,{1,0,0,1,1}}, + {PERSONREF,{1,0,0,1,1}}, + {INCREASE,{1,0,0,1,1}} + } + }, + { + TIME, "time" + }, + { + STATUS, "status", + }, + { + INIT_PRICE, "initial" + }, + { + PERSONREF, "personref", + {{0,{0,0,0,0,0}}}, + { + {"\1",2,PERSON,{1,0,0,0,0}} + } + }, + { + SELLER, "seller", + {{0,{0,0,0,0,0}}}, + { + {"\1",2,PERSON,{2,0.5,0.10,0,0}} + } + }, + { + INTERVAL, "interval", + { + {START,{1,0,0,1,1}}, + {END,{1,0,0,1,1}} + } + }, + { + START, "start" + }, + { + END, "end" + }, + { + CLOSED_TRANS_LIST, "closed_auctions", + { + {CLOSED_TRANS,{1,0,0,3000,3000}} + } + } + , + { + CLOSED_TRANS, "closed_auction", + { + {SELLER,{1,0,0,1,1}}, + {BUYER,{1,0,0,1,1}}, + {ITEMREF,{1,0,0,1,1}}, + {PRICE,{1,0,0,1,1}}, + {XDATE,{1,0,0,1,1}}, + {QUANTITY,{1,0,0,1,1}}, + {TYPE,{1,0,0,1,1}}, + {ANNOTATION,{1,0,0,1,1}} + }, + {{"",0,0,{0,0,0,0,0}}}, + 0x04|0x40 + }, + { + PRICE, "price" + }, + { + BUYER, "buyer", + {{0,{0,0,0,0,0}}}, + { + {"\1",2,PERSON,{2,.5,.10,0,0}} + } + }, + { + ANNOTATION, "annotation", + { + {AUTHOR,{1,0,0,1,1}}, + {DESCRIPTION,{1,0,0,1,1}}, + {HAPPINESS,{1,0,0,1,1}} + } + }, + { + HAPPINESS, "happiness" + }, + { + AUTHOR, "author", + {{0,{0,0,0,0,0}}}, + { + {"\1",2,PERSON,{1,0,0,1,1}} + } + } +}; +void PrintName(int *lastout) +{ + int fst,lst; + fst=(int)genexp(firstnames_len/3.); + lst=(int)genexp(lastnames_len/3.); + fst=(((firstnames_len-1)>(fst)?(fst):(firstnames_len-1))); + lst=(((lastnames_len-1)>(lst)?(lst):(lastnames_len-1))); + xmlprintf(xmlout,"%s %s",firstnames[fst],lastnames[lst]); + if (lastout) *lastout=lst; +} +void PrintEmail() +{ + int i,j; + i=ignuin(0,firstnames_len-1); + j=ignuin(0,lastnames_len-1); + xmlprintf(xmlout,"%s@%s.com",firstnames[i],lastnames[j]); +} +void PrintSentence(int w) +{ + int i; + for (i=0;i(word)?(word):(words_len-1))); + xmlprintf(xmlout,words[word]); + xmlprintf(xmlout," "); + } +} +static char *markup[3]={"emph","keyword","bold"}; +static char tick[3]; +void PrintANY() +{ + int sen=1+(int)genexp(20); + int i; + static int st[3]; + int stptr=0; + for (i=0;i ",markup[st[stptr]]); + stptr++; + } + else + if (genunf(0,1)<0.8 && stptr) + { + --stptr; + xmlprintf(xmlout," ",markup[st[stptr]]); + tick[st[stptr]]=0; + } + PrintSentence(1+(int)genexp(4)); + } + while(stptr) + { + --stptr; + xmlprintf(xmlout," ",markup[st[stptr]]); + tick[st[stptr]]=0; + } +} +int GenContents(ObjDesc *od) +{ + int r,i,result=1; + static int lstname=0; + static int country=-1; + static int email=0; + static int quantity=0; + static double initial=0; + static double increases=0; + switch(od->id) + { + case CITY: + xmlprintf(xmlout,cities[ignuin(0,cities_len-1)]); + break; + case TYPE: + { + static char *auction_type[]={"Regular","Featured"}; + xmlprintf(xmlout,auction_type[ignuin(0,1)]); + if (quantity>1 && ignuin(0,1)) xmlprintf(xmlout,", Dutch"); + } + break; + case LOCATION: + case COUNTRY: + if (genunf(0,1)<0.75) country=countries_USA; + else country=ignuin(0,countries_len-1); + xmlprintf(xmlout,countries[country]); + break; + case PROVINCE: + if (country==countries_USA) + xmlprintf(xmlout,provinces[ignuin(0,provinces_len-1)]); + else + xmlprintf(xmlout,lastnames[ignuin(0,lastnames_len-1)]); + break; + case EDUCATION: + { + static char *education[]={"High School","College", + "Graduate School","Other"}; + xmlprintf(xmlout,education[ignuin(0,3)]); + } + break; + case STATUS: + case HAPPINESS: + xmlprintf(xmlout,"%d",ignuin(1,10)); + break; + case HOMEPAGE: + xmlprintf(xmlout,"http://www.%s/~%s", + emails[email],lastnames[lstname]); + break; + case STREET: + r=ignuin(0,lastnames_len-1); + xmlprintf(xmlout,"%d %s St",ignuin(1,100),lastnames[r]); + break; + case PHONE: + { + int contry=ignuin(1,99); + int area=ignuin(10,999); + int number=ignuin(123456,98765432); + xmlprintf(xmlout,"+%d (%d) %d",country,area,number); + } + break; + case CREDITCARD: + for(i=0;i<4;i++) + xmlprintf(xmlout,"%d%s",ignuin(1000,9999),(i<3?" ":"")); + break; + case PAYMENT: + { + static char *money[]={"Money order","Creditcard", + "Personal Check","Cash"}; + r=0; + for (i=0;i<4;i++) + if (ignuin(0,1)) + xmlprintf(xmlout,"%s%s",(r++?", ":""),money[(((i)>(3)?(3):(i)))]); + } + break; + case SHIPPING: + { + static char *shipping[]={ + "Will ship only within country", + "Will ship internationally", + "Buyer pays fixed shipping charges", + "See description for charges"}; + r=0; + for (i=0;i<4;i++) + if (ignuin(0,1)) + xmlprintf(xmlout,"%s%s",(r++?", ":""),shipping[(((i)>(3)?(3):(i)))]); + } + break; + case TIME: + { + int hrs=ignuin(0,23); + int min=ignuin(0,59); + int sec=ignuin(0,59); + xmlprintf(xmlout,"%02d:%02d:%02d",hrs,min,sec); + } + break; + case AGE: + r=(int)gennor(30,15); + xmlprintf(xmlout,"%d",(((18)<(r)?(r):(18)))); + break; + case ZIPCODE: + r=ignuin(3,4); + { + int cd=10,j; + for (j=0;jid!=ITEMREF || stackdepth<2) return 0; + od=stack[stackdepth-2]; + if (od->id==OPEN_TRANS) return GenItemIdRef(&idr[0],iRef); + if (od->id==CLOSED_TRANS) return GenItemIdRef(&idr[1],iRef); + return 0; +} +void initialize(void) +{ + int nobj=NumberOfObjs(); + int search[3]={ITEM,OPEN_TRANS,CLOSED_TRANS}; + int f[3]={0,0,0},items,open,closed; + int i,j; + for (i=0;iout=0; + rep->cur=rep->brosout=0; + rep->max=max; + rep->brosmax=brosmax; + rep->dir=0; + rep->mydir=direction++; + rep->cur=0; + init_gen(&rep->rk); +} +void InitReproPair(struct idrepro *rep1, struct idrepro *rep2, + int max1, int max2) +{ + InitRepro(rep1,max1,max2); + InitRepro(rep2,max2,max1); +} +int GenItemIdRef(struct idrepro *rep, int *idref) +{ + int res=0; + if (rep->out>=rep->max) return 0; + rep->out++; + if (rep->brosout>=rep->brosmax) + { + *idref=rep->cur++; + res=2; + } + else + { + rep->dir=__ignuin(&rep->rk,0,1); + while(rep->dir!=rep->mydir && rep->brosoutbrosmax) + { + rep->brosout++; + rep->cur++; + rep->dir=__ignuin(&rep->rk,0,1); + } + *idref=rep->cur++; + res=1; + } + ((void) 0); + return res; +} + diff --git a/tools/xmarkgen b/tools/xmarkgen new file mode 100755 index 0000000..60de1ea Binary files /dev/null and b/tools/xmarkgen differ