-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
6017 lines (5998 loc) · 278 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/grid.css" type="text/css" media="screen">
<script src="js/jquery-1.6.2.min.js" type="text/javascript"></script>
<script src="js/jquery.galleriffic.js" type="text/javascript"></script>
<script src="js/jquery.opacityrollover.js" type="text/javascript"></script>
<script src="angular.js"></script>
<script>
var dict = function ($scope, $filter) {
$scope.words = [{term:"a fly in the ointment",related:["a problem that spoils a good situation, snag"]},
{term:"a la",related:[" in the manner of , shy , like balk"]},
{term:"a priori",related:["deductive,assumed,based on, premade"]},
{term:"a sea",related:[" balled up, on briny, sailing, on bounding main, at sea, confused, at a loss"]},
{term:"a tout prix",related:["at any price"]},
{term:"a votre sante",related:["cheers"]},
{term:"aah !",related:["intj-comprehension, delight sound"]},
{term:"ab",related:[" awry ; story"]},
{term:"abalone",related:["ear shell , edible shell fish"]},
{term:"abandon",related:[" walk out on"]},
{term:"abas",related:["down with (French)"]},
{term:"abase",related:[" humiliate"]},
{term:"abash",related:[" disconcert ; embarrass"]},
{term:"abate",related:["lessen"]},
{term:"abattoir",related:[" slaughter house"]},
{term:"abbe",related:[" priest (French), what we call is abba =sire, father"]},
{term:"abed",related:[" sleeping"]},
{term:"aberrant",related:[" untrue to type"]},
{term:"abet",related:[" let up; acts as a work out; help ; urge; crime assist ; help crook,foster"]},
{term:"abhor",related:[" Loathe"]},
{term:"abide",related:[" tolerate ; wait patiently"]},
{term:"abject",related:[" wretched"]},
{term:"abjure",related:[" foreseen"]},
{term:"abode",related:[" Residence"]},
{term:"abominate",related:[" hate, detest"]},
{term:"abound",related:[" teem"]},
{term:"above all",related:[" especially"]},
{term:"above board",related:[" legal"]},
{term:"above named",related:[" wide supra"]},
{term:"above par",related:[" more than average"]},
{term:"abovo",related:["from beginning"]},
{term:"abreast",related:[" side by side"]},
{term:"abrogate",related:[" repeat ; void"]},
{term:"absolutely",related:[" yes"]},
{term:"absolution",related:["pardon"]},
{term:"absolve",related:["pronounce free from guilt"]},
{term:"absorbing",related:[" interesting"]},
{term:"abstract",related:[" theoretical"]},
{term:"abstruse",related:[" subtle"]},
{term:"abuzz",related:["rumbling with murmers"]},
{term:"abyss",related:[" pit"]},
{term:"academe",related:[" edu.. environment"]},
{term:"Acadia",related:[" new world"]},
{term:"accede",related:[" aye ,allow"]},
{term:"access",related:[" right to use"]},
{term:"acclamation",related:[" éclat"]},
{term:"accolade",related:[" honour"]},
{term:"accomplice",related:["cohort"]},
{term:"accost",related:[" approach aggressively, confront"]},
{term:"accrete",related:[" grow together"]},
{term:"accuere",related:[" sharpen acuity"]},
{term:"ace",related:[" serve perfectly, top notch, a-one"]},
{term:"ace in the hole",related:[" recourse, literally “a running back, help"]},
{term:"ace up one's sleeve",related:[" hidden adv."]},
{term:"acerose",related:[" needle shaped"]},
{term:"acetum",related:[" vinegar"]},
{term:"ach",related:[" alas German)"]},
{term:"ache",related:[" discomfort"]},
{term:"achtung",related:[" watch out babe (German)"]},
{term:"acid reign",related:[" bitter dominance"]},
{term:"acolyte",related:[" devotee"]},
{term:"acrid",related:[" bitter n sharp"]},
{term:"acro",related:[" height (prefix)"]},
{term:"across the board",related:[" all inclusive"]},
{term:"act out",related:[" mime"]},
{term:"act the squealer",related:[" tell on"]},
{term:"act up",related:[" misbehave"]},
{term:"acta",related:[" court proceeds"]},
{term:"activist",related:[" doer"]},
{term:"actuate",related:[" move to"]},
{term:"acuity",related:[" keenness, perceptive"]},
{term:"acunest",related:[" too much perceptive"]},
{term:"Acura",related:[" leg end maker"]},
{term:"acute",related:[" keenness, perceptive"]},
{term:"ad lib",related:[" off the cuff, unthoughtful ,extemporize"]},
{term:"ad rem",related:[" to the point"]},
{term:"adage",related:[" words from wise"]},
{term:"adamant",related:[" not to be dissuaded"]},
{term:"add up",related:[" make sense"]},
{term:"addle",related:[" confused"]},
{term:"addle brained",related:[" potty"]},
{term:"ade",related:[" fruit juice drink"]},
{term:"adept",related:[" skilled"]},
{term:"adeste fidelis",related:[""]},
{term:"ad-hoc",related:[" temporary"]},
{term:"adieu",related:[" see ya ! so long"]},
{term:"adieu - ado",related:[" parting scene"]},
{term:"adit",related:[" mine entrance"]},
{term:"admonish",related:[" caution, scold"]},
{term:"ado",related:[" excitement,fun,rucku,commotion,bother,fuss"]},
{term:"adobe",related:[" unburnt brick"]},
{term:"Adonis",related:[" handsome man"]},
{term:"adore",related:[" dear ; cherish ;love to pieces;,"]},
{term:"adre",related:[" relevant (Latin)"]},
{term:"adren",related:[" relevant (Latin)"]},
{term:"adroit",related:[" apt ; nimble"]},
{term:"adue",related:[" for two in music"]},
{term:"adversaries",related:["enemies"]},
{term:"aegis",related:["sponsorship"]},
{term:"aeon",related:[" eons ; semi eternity"]},
{term:"aesthetic",related:[" lover of beauty"]},
{term:"affectation",related:[" air"]},
{term:"affluent",related:[" rich"]},
{term:"aficionado",related:[" devotee fan"]},
{term:"afoot",related:[" in progress, in the pipeline"]},
{term:"afoul",related:[" in trouble with"]},
{term:"aft",related:[" rear shuttle"]},
{term:"agate",related:[" colorful"]},
{term:"age long",related:[" immortal"]},
{term:"ager",related:[" last teen"]},
{term:"aghast",related:[" shocked"]},
{term:"agio",related:[" exchange charge"]},
{term:"agitate",related:[" try to gain support"]},
{term:"aglet",related:[" lace tip"]},
{term:"agnate",related:[" parental relations"]},
{term:"Agnus dei",related:["lamb of god"]},
{term:"agog",related:[" in a tizzy,avid,wild run"]},
{term:"agon",related:[" conflict in Greek drama"]},
{term:"agora",related:[" Spartan market"]},
{term:"agua",related:[" water (Spanish)"]},
{term:"ague",related:[" chills"]},
{term:"ah !",related:["approval sound"]},
{term:"ah me !",related:["alas"]},
{term:"aha !",related:["spotters cry, so that`s it, gotcha,eureka, gotcha, thats it"]},
{term:"ahem",related:[" excuse me, psst"]},
{term:"ahora",related:[" now"]},
{term:"ahoy",related:[" sailor's call"]},
{term:"ail",related:["trouble"]},
{term:"aint",related:["is not incorrect"]},
{term:"ainu",related:[" Japanese"]},
{term:"air",related:[" where lovers walk (date)"]},
{term:"air head",related:[" nit wit,Bimbo"]},
{term:"aira",related:[" attar (germen)"]},
{term:"aisle",related:[" passage, church area, alter path"]},
{term:"ait",related:[" insect"]},
{term:"ajar",related:[" partly open"]},
{term:"aka",related:[" alias, also known as"]},
{term:"akimbo",related:[" hands on hips"]},
{term:"akin",related:[" blood relative"]},
{term:"akita",related:[" dog (jp)"]},
{term:"al fresco",related:[" open air"]},
{term:"ala",related:[" misfit"]},
{term:"alack",related:[" regret interjection"]},
{term:"alameda",related:[" shadow walkway"]},
{term:"alas",related:[" unfortunately"]},
{term:"albeit",related:[" even though"]},
{term:"alcove",related:[" niche"]},
{term:"alder",related:[" rot proof wood"]},
{term:"ale",related:["(ayl) smart guy, intoxicating drink.”beer"]},
{term:"alea jacta est",related:["die has been cast"]},
{term:"alee",related:[" outa winds, towards"]},
{term:"Aleut",related:[" Alaskan"]},
{term:"algid",related:[" chilly"]},
{term:"algorithm",related:[" a clever scheme, flowchart"]},
{term:"aliatory",related:["Via Latin aleatorius from, ultimately, alea “dice,” of unknown origin.hence alien"]},
{term:"alibi",related:[" excuse"]},
{term:"alien",related:[" green card holder"]},
{term:"align",related:[" true up"]},
{term:"aline",related:[" fashionable"]},
{term:"alist",related:[" elite society"]},
{term:"all along",related:[" from beginning, anew"]},
{term:"all arms and legs",related:["lanky"]},
{term:"all ears",related:["alert"]},
{term:"all in",related:[" tired, pooped out"]},
{term:"all in all",related:[" on the whole"]},
{term:"all square",related:["even Steven"]},
{term:"all the same",related:["yet"]},
{term:"all there",related:["sane"]},
{term:"all tied up",related:[" even"]},
{term:"all time",related:[" unsurpassed"]},
{term:"all worked up",related:[" angry, out of sorts, fit to be tied,hoppingmad"]},
{term:"alla breve",related:["alla=ago, breve=short period"]},
{term:"allas",related:[" sac"]},
{term:"allay",related:[" set to rest"]},
{term:"allege",related:[" assert without proof"]},
{term:"allegro",related:[" not presto music)"]},
{term:"allein",related:[" alone (fr)"]},
{term:"allele",related:[" gene pair"]},
{term:"alleluia",related:[" shout from pews ; praise be"]},
{term:"alley",related:[" vigilant"]},
{term:"allocate",related:[" devote"]},
{term:"allores!",related:[""]},
{term:"allude",related:[" hint , refer, drawing power"]},
{term:"ally",related:[" comrade in arms, friend"]},
{term:"alma mater",related:[" college"]},
{term:"almanac",related:[" fact book,gen ref. book"]},
{term:"alms",related:[" charity"]},
{term:"aloft",related:["over head"]},
{term:"aloha !",related:["Hawaian greet, good- bye, welcome,. howdy,"]},
{term:"aloof",related:[" cool, above it all"]},
{term:"alop",related:[" hung on one side"]},
{term:"alpha",related:[" brightest star, dominant male"]},
{term:"alto",related:[" choir voice"]},
{term:"alumna",related:[" graduate"]},
{term:"amandine",related:[" almond garnished"]},
{term:"amass",related:[" accumulate"]},
{term:"amat",related:[" he loves"]},
{term:"amatory",related:[" of love"]},
{term:"Amazon",related:[" giantess"]},
{term:"amber",related:[" brown to dark yellow"]},
{term:"ambit",related:[" circuit"]},
{term:"ambivalent",related:["torn"]},
{term:"amble",related:[" casual walk"]},
{term:"ambush",related:[" trap"]},
{term:"ameliorate",related:[" improve"]},
{term:"amen",related:[" so be it"]},
{term:"amenable",related:["responsible"]},
{term:"amerce",related:[" set an arbitrary punishment"]},
{term:"amicus curie",related:[" courts friend"]},
{term:"amigo",related:[" pal (sp)"]},
{term:"amiss",related:[" out of kitter , awry , not quite right , out of order"]},
{term:"amity",related:[" mutual goodwill"]},
{term:"amo amas amat",related:[" Latin conjugation"]},
{term:"amoco",related:["standerd offshoot"]},
{term:"amoi",related:[" mine(minnasota)"]},
{term:"amok",related:[" burserk,agog"]},
{term:"amole",related:[" soap plant"]},
{term:"among the quick",related:[" alive"]},
{term:"amor vincit omnia",related:[" love wins all , amo - I love, cupid - love god"]},
{term:"amour",related:[" illicit love affair"]},
{term:"amscray !",related:["get lost !"]},
{term:"amulet",related:[" good luck charm"]},
{term:"ana",related:[" literary snippets"]},
{term:"analeptic",related:[" restorative"]},
{term:"analogous",related:[" compare"]},
{term:"anarchy",related:["lawlessness"]},
{term:"anathema",related:[" detested person, object of loathe"]},
{term:"anathematize",related:[" curse"]},
{term:"and soon",related:[" continue in like manner"]},
{term:"anecdote",related:[" yarn, somebody’s account of something: a short personal account of an incident or event [Early 18th century. Directly or via French from modern Latin anecdota , from Greek anekdota , literally “"]},
{term:"anemia",related:[" lack of vigor"]},
{term:"anemo",related:[" air (prefix)"]},
{term:"anent",related:[" as too ,concerning"]},
{term:"aner",related:[" andros,arren"]},
{term:"angst",related:[" anxiety, dreadful"]},
{term:"anile",related:[" old womanish"]},
{term:"anima",related:[" inner soul"]},
{term:"animus",related:[" bad blood"]},
{term:"anise",related:[" liquid sweet flavor"]},
{term:"ankh",related:["cross with a loop over<Egypt>"]},
{term:"ankle deep",related:["partly mired"]},
{term:"annex",related:[" add"]},
{term:"Annie",related:[" music set in depression"]},
{term:"annotative",related:[" like explanatory notes"]},
{term:"annuity",related:[" annual income"]},
{term:"annul",related:[" invalidate"]},
{term:"ano",related:[" year (Spanish)"]},
{term:"anomaly",related:[" exceptions to the rule"]},
{term:"anomie",related:[" lack of personal instability, loss of confidence, anomy"]},
{term:"anon",related:[" once, ASAP, shortly, in a sec, sometime hence, now"]},
{term:"ansa",related:[" jug handle (Latin)"]},
{term:"Ant",related:[" Hill Dweller, pesk,pismire, emmet"]},
{term:"anthrax",related:[" coal"]},
{term:"antic",related:[" playful trick"]},
{term:"antler",related:[" head bump"]},
{term:"ants in pants",related:[" itchy"]},
{term:"antsy",related:[" fidgety, wiggly"]},
{term:"any more",related:[" from now on, ever again"]},
{term:"aorta",related:[" way from one's heart"]},
{term:"apb",related:[" comfort letters"]},
{term:"ape",related:[" parrot,copycat,imitate"]},
{term:"apercus",related:[" synopsis"]},
{term:"aphorism",related:[" adage, truism"]},
{term:"apis",related:[" sacred bull of Egypt"]},
{term:"apishly",related:[" lively music"]},
{term:"apogee",related:[" orbit zenith"]},
{term:"appall",related:[" aghast"]},
{term:"apparel",related:[" clothes, attire"]},
{term:"apparition",related:[" phantom"]},
{term:"appellation",related:[" name"]},
{term:"append",related:[" annex"]},
{term:"applause",related:[" well done"]},
{term:"apple sauce",related:[" non sensical, flapdoodle, balderdash, rubbish, tom foolery, rot"]},
{term:"appliqué",related:[" cuts in ornaments"]},
{term:"apply elbow grease",related:[" exert"]},
{term:"appose",related:[" put side to side"]},
{term:"appraise",related:[" estimate,evaluate,rate"]},
{term:"après",related:["after (fr)"]},
{term:"apriore",related:[" deductive"]},
{term:"apron",related:[" front of the stage"]},
{term:"apse",related:[" hurriedly , swift"]},
{term:"apt",related:[" inclined , wise"]},
{term:"apus",related:["bird of paradise"]},
{term:"aquila",related:["eagle"]},
{term:"arable",related:[" agriculture fit"]},
{term:"arachic",related:[" antiquated"]},
{term:"arbor",related:[" bowler, shaded area"]},
{term:"arcade",related:[" video parlor"]},
{term:"arcana",related:[" deep secrets"]},
{term:"arcane",related:[" obscure"]},
{term:"arch",related:[" crafty , chief"]},
{term:"ardour",related:[" zeal ,passion ,ardent"]},
{term:"are",related:[" live and breathing, 100 square meter"]},
{term:"area rug",related:["small carpet"]},
{term:"areal",related:[" lip flapping female"]},
{term:"arenose",related:[" sandy"]},
{term:"areola",related:[" colored ring, iris ring"]},
{term:"areole",related:[" space b/w leaf veins, surface pit in cactus, colored rings"]},
{term:"Ares",related:[" war God"]},
{term:"arête",related:[" rocky ridge"]},
{term:"arf",related:[" dog's comment"]},
{term:"arf !",related:["dogs comment"]},
{term:"argot",related:[" jargon"]},
{term:"argyle",related:[" socks pattern"]},
{term:"aria",related:[" solo"]},
{term:"arid",related:[" sere,parched,saharan,bone dry"]},
{term:"arista",related:[" awn"]},
{term:"arm twister",related:[" forced cajole"]},
{term:"armada",related:[" fleet"]},
{term:"armistice",related:[" truce"]},
{term:"around the corner",related:["soon"]},
{term:"arouse",related:[" foment"]},
{term:"arrant",related:[" without moderation"]},
{term:"array",related:[" orderly arrangement, display"]},
{term:"arrivederci",related:[" adieu, andre"]},
{term:"arrogate",related:[" claim without right"]},
{term:"ars gracia artis",related:[""]},
{term:"ars poetica",related:[" poetic art"]},
{term:"arsenio",related:[" host hall"]},
{term:"artery",related:[" main road"]},
{term:"articulate",related:[" fluent"]},
{term:"artifis",related:[" non genuine"]},
{term:"artlessness",related:[" naiveté"]},
{term:"arty",related:[" presumptively creative, aesthetic to a fault"]},
{term:"as a rule",related:[" usually"]},
{term:"as if",related:[" you wish"]},
{term:"as is where is",related:[" caveat emptor"]},
{term:"as it were",related:[" so to speak"]},
{term:"as many",related:[" equal amount"]},
{term:"as naked as jay bird",related:["naked"]},
{term:"as of",related:[" to begin with, from"]},
{term:"as of now",related:[" at this point of time"]},
{term:"as old as hill",related:[" over the hill"]},
{term:"as quiet as mouse",related:[" quiet"]},
{term:"as to",related:[" to and fro walk, concern,regardinginre,about"]},
{term:"as under",related:[" apart"]},
{term:"as warm",related:[" teeming"]},
{term:"asbestos",related:["Ca2 Mg5 Si8 O22 (OH)2, Greek asbestos “unslaked lime,” literally “inextinguishable,” from sbestos “extinguished,” from sbennunai “to extinguish.”"]},
{term:"ascertain",related:[" discover"]},
{term:"ascetic",related:[" self damaging"]},
{term:"ascot",related:[" broad tie"]},
{term:"asgard",related:[" Norse God's home"]},
{term:"ashore",related:[" on terra firma"]},
{term:"aside",related:[" in reserve, stage whisper"]},
{term:"asinine",related:[" stupid"]},
{term:"askew",related:[" awry"]},
{term:"aspersion",related:[" slur"]},
{term:"aspic",related:[" meat jelly"]},
{term:"aspirer",related:[" hopeful one, dreamer and attention seeker"]},
{term:"assail",related:[" ball out, verbal attack"]},
{term:"assent",related:[" concur"]},
{term:"assert",related:[" put forward"]},
{term:"asset",related:[" add on ,plus"]},
{term:"asseverate",related:[" aver"]},
{term:"assignation",related:[" tryst"]},
{term:"assorted",related:[" miscellaneous"]},
{term:"astern",related:[" aft ward"]},
{term:"astir",related:[" up and about"]},
{term:"astound",related:[" over awe"]},
{term:"astrangement",related:[" alienation"]},
{term:"astray",related:[" off the right path, err , lost"]},
{term:"astride",related:[" with a leg on each side"]},
{term:"astrude",related:[" difficult to understand"]},
{term:"astute",related:[" shrewd"]},
{term:"asyla",related:[" refuse shelter"]},
{term:"at a loss",related:["perplexed"]},
{term:"at all",related:[" ever, the least bit"]},
{term:"at an endasse",related:[""]},
{term:"at bat",related:[" stand by plate"]},
{term:"at bay",related:[" cornered , up the tree"]},
{term:"at issue",related:["on the table"]},
{term:"at it",related:[" fighting , upto something , persisting"]},
{term:"at large",related:[" loose"]},
{term:"at length",related:[" eventually"]},
{term:"at loose ends",related:[" unresolved"]},
{term:"at odds",related:[" in conflict, butting heads"]},
{term:"at ones elbow",related:["near"]},
{term:"at times",related:[" now and then"]},
{term:"atavism",related:[" throw back, come back to earlier, mimic like grand parents"]},
{term:"ate crow",related:[" suffered humiliation"]},
{term:"atilt",related:[" list"]},
{term:"atip",related:[" lean precariously, reckless"]},
{term:"atoi",related:[""]},
{term:"atresia",related:[" no hole(tresis-bore)"]},
{term:"atria",related:[" courtyard"]},
{term:"attaceabottoni",related:[" a bore who corners people with sad &pointless tales (Italian)"]},
{term:"attenuate",related:[" make slender"]},
{term:"attenuated",related:["long"]},
{term:"au natural",related:[" nude"]},
{term:"aubade",related:[" day break sound"]},
{term:"audaces fortuna juvet",related:["fortune favours bold"]},
{term:"audacity",related:[" nerve"]},
{term:"audair",related:["mothers help abroad"]},
{term:"auf",related:[" until(ger)"]},
{term:"aught",related:[" anything ,whatever"]},
{term:"auld lang syne",related:["Scotland times long past: old times or times long gone (archaic)"]},
{term:"aupair",related:["mothers helper"]},
{term:"aura",related:[" distinctive air"]},
{term:"auriga",related:["charioteer, a nothern costellation"]},
{term:"auspice",related:[" patronage"]},
{term:"austere",related:[" severe"]},
{term:"authentic",related:[" real"]},
{term:"autumn",related:[" fall"]},
{term:"avail",related:["benefit"]},
{term:"avant garde",related:[" new wave"]},
{term:"avarice",related:[" greed"]},
{term:"avast",related:[" sailor's-hold it"]},
{term:"ave maria",related:[" salute"]},
{term:"avec",related:["Fr=with"]},
{term:"avenge",related:[" exact satisfaction for"]},
{term:"avenue",related:[" line of enquiry, urban road, access means"]},
{term:"averse",related:[" strongly disinclined"]},
{term:"avifauna",related:[" ornithology"]},
{term:"avow",related:[" confess, plea, pledge"]},
{term:"avowl",related:[" frank admission"]},
{term:"aw !",related:["exc-sympathetic"]},
{term:"awe",related:[" fill with wonder,revernce,religious dread"]},
{term:"awesome",related:[" surprising"]},
{term:"awful",related:[" scary, extremely disturbing"]},
{term:"awhile",related:[" sometime"]},
{term:"awn",related:["arista"]},
{term:"awol",related:[" away without leave"]},
{term:"awry",related:[" off the kitter"]},
{term:"axil",related:[" leaf stem angle"]},
{term:"axiom",related:["self evident truth"]},
{term:"axis",related:[" enemy of allies"]},
{term:"aye",related:[" yes(gob), assert a sea, vote for, mete's reply"]},
{term:"aye !",related:["yes <gob>, yawl"]},
{term:"azote",related:[" nitrogen"]},
{term:"Aztec",related:[" fifteenth century warrior"]},
{term:"azure",related:[" blue shade"]},
{term:"Baal",related:["fertility God"]},
{term:"baba",related:["raisin rum cake"]},
{term:"Baba au rhum",related:[" Russian cake"]},
{term:"babe",related:["infant"]},
{term:"bable",related:["tough target"]},
{term:"babushka",related:["head scarf"]},
{term:"bacchanal",related:["orgy"]},
{term:"Bacchante",related:[" Maened"]},
{term:"back number",related:["outdated"]},
{term:"back slap",related:[" show effusive goodwill"]},
{term:"back then",related:["once"]},
{term:"backout",related:["dispromise"]},
{term:"backwash",related:["aftermath"]},
{term:"bacon paper",related:["essay"]},
{term:"bactran",related:["camel"]},
{term:"bad lot",related:["dishonest"]},
{term:"bad mouth",related:["insult"]},
{term:"bad to bone",related:["evil"]},
{term:"bade",related:["commandant, be omen of auger"]},
{term:"badgered",related:["harried (repeat till patience)"]},
{term:"baez",related:["frequency (poetic)"]},
{term:"bag",related:["capture"]},
{term:"bah !",related:["phooey ! cry of contempt, soffer`s comment, scourge exl., humbug, scornful exl.,"]},
{term:"bah humbug",related:[" humbug=fraud, bah=disgust"]},
{term:"bail",related:["security money"]},
{term:"bail out",related:["abandon"]},
{term:"baits and witch",related:["merchant scam"]},
{term:"balderdash",related:["rot, tommyrot"]},
{term:"bale",related:["long bundle, (noun, verb)"]},
{term:"balk",related:["shy , pitcher s error"]},
{term:"ball",related:["formal dance"]},
{term:"Ballard",related:[" song"]},
{term:"ballast",related:["balancing weight"]},
{term:"bally ho !",related:["hoopla, public uproar"]},
{term:"ballyhoo",related:["uproar"]},
{term:"balm",related:["salve, soothe, mild and pleasant"]},
{term:"baloney",related:["lie"]},
{term:"balustrade",related:["rail"]},
{term:"bamboozle",related:["horns woggle, con, trick and confuse, snow, dupe"]},
{term:"banal",related:["common place,trife,time worn"]},
{term:"banana",related:["gaga"]},
{term:"bandicoot",related:["rat"]},
{term:"bandwagon",related:["fashionable activity"]},
{term:"bandy",related:["tossed about (idea)"]},
{term:"bane",related:["deadly poison,cause of destruction"]},
{term:"bang",related:["crow"]},
{term:"bangs",related:["hair on forehead"]},
{term:"banish",related:["exile"]},
{term:"banister",related:["rail"]},
{term:"bankable",related:["profit guarantee"]},
{term:"banter",related:["casual talk"]},
{term:"barb",related:["pointed remark"]},
{term:"barbarous",related:["huntish"]},
{term:"barn",related:["rustic building"]},
{term:"barn storming",related:["on tour"]},
{term:"baronage",related:["peers of kingdom"]},
{term:"barrel",related:["(along) tear"]},
{term:"Barron",related:["(German) noble"]},
{term:"barter",related:["trade with money"]},
{term:"barterer",related:[" deal maker"]},
{term:"bas relief",related:["insufficient, sculpture carrying low relief"]},
{term:"basalt",related:["volcanic ash"]},
{term:"bash",related:["lively party"]},
{term:"basic",related:["no frills"]},
{term:"basilica",related:["assembly hall"]},
{term:"basket case",related:["hopeless case"]},
{term:"bass",related:["operative voice"]},
{term:"bast",related:["jute"]},
{term:"baste",related:[" sew, moisten periodically"]},
{term:"bat in the belfry",related:["a screw loose"]},
{term:"bat the breeze",related:["gab"]},
{term:"batt",related:["poor cotton"]},
{term:"batted a thousand",related:["did every thing right"]},
{term:"batterbogs",related:["wade"]},
{term:"batty",related:["insane, mad, zany, loco, irrational, arabic Loqwas=thoughless, slightly eccentric"]},
{term:"bawl",related:["weep noisily"]},
{term:"bawl control",related:["restrained weep"]},
{term:"bay",related:["howl , long bark, inlet"]},
{term:"bayou",related:["marshland"]},
{term:"bazooka",related:["rocket launcher"]},
{term:"be down with",related:["have"]},
{term:"be fruitful",related:["multiply"]},
{term:"be gutsy",related:["dare"]},
{term:"be in ones bonnet",related:["fixed, fanciful idea"]},
{term:"be in red",related:["owe"]},
{term:"be indisposed",related:["ail"]},
{term:"be nuts about",related:["adore"]},
{term:"be obliged",related:["Owe"]},
{term:"be off",related:["err"]},
{term:"be rid of",related:["eliminate"]},
{term:"beach baby",related:["only hit by class"]},
{term:"beam",related:["grin"]},
{term:"bean",related:["hit the head"]},
{term:"bean counter",related:["insulting term for accountant "]},
{term:"beanice",related:["cops"]},
{term:"beans",related:["slightest amount"]},
{term:"bear",related:["pessimist market slump"]},
{term:"bear witness",related:["take a stand"]},
{term:"bearing",related:["miens"]},
{term:"beat",related:["work route, exhaust"]},
{term:"beat a retreat",related:["run"]},
{term:"beat it",related:["scat !"]},
{term:"beat it !",related:["scat, shoo"]},
{term:"beat up",related:["damage by heavy use"]},
{term:"beatitude",related:["blessedness"]},
{term:"beats me",related:["no clue, idunno, no idea"]},
{term:"beau",related:["suitor, sweet ,sweetheart, swain"]},
{term:"beau geste",related:["generous act: a kind or magnanimous act (literary) "]},
{term:"beckon",related:["summer hither"]},
{term:"become a gully",related:["erode"]},
{term:"bed of rose",related:["cinch, cakewalk"]},
{term:"bed rood dud",related:["pyjama"]},
{term:"Bedazzled",related:["awe"]},
{term:"bedeck",related:["adorn"]},
{term:"bee",related:["spelling contest"]},
{term:"bee line",related:["shortest route"]},
{term:"beef",related:["complaint ,grouse , moan"]},
{term:"beef and moan",related:["carp"]},
{term:"beef up",related:["strengthen"]},
{term:"beefa",related:["tidy"]},
{term:"beefy",related:["heavy built"]},
{term:"Beelzebub",related:["Satan"]},
{term:"befuddle",related:["lose"]},
{term:"beget",related:["sire"]},
{term:"behind the scene",related:["in private"]},
{term:"behold",related:["see"]},
{term:"beldame",related:["old ugly (female)"]},
{term:"beleaguer",related:["harras,bedevil, torment, annoy"]},
{term:"belie",related:["contradict, misrepresent"]},
{term:"belittle",related:["depreciate"]},
{term:"bellet",related:["troop lodge"]},
{term:"belly up",related:["bankrupt"]},
{term:"belony",related:["lies"]},
{term:"below the surface",related:["not readily apparent"]},
{term:"belt out",related:["sing"]},
{term:"belvedere",related:["gazebo"]},
{term:"benchmark",related:["standard"]},
{term:"bene vibis",related:["health to you"]},
{term:"benediction",related:["blessing"]},
{term:"benevolent",related:["charitable"]},
{term:"benison",related:["blessing"]},
{term:"berate",related:["strong scolding"]},
{term:"bereft",related:["grief struck"]},
{term:"berm",related:["pavement"]},
{term:"bermese",related:["Shan"]},
{term:"bes",related:["egyptian God of pleasure"]},
{term:"beseech",related:["prey , implore , beg"]},
{term:"beset",related:["plague with, assail ,aasain"]},
{term:"besmirch",related:["smear, mire, bog"]},
{term:"beso",related:["buss (Spanish)"]},
{term:"besot",related:["intoxicate"]},
{term:"bespeak",related:["indicate"]},
{term:"besqueath",related:["leave"]},
{term:"bestial",related:["sub human, beastly"]},
{term:"bestow",related:["confer, grant"]},
{term:"betide",related:["elapse"]},
{term:"better off",related:["in preferable circumstances"]},
{term:"bevies",related:["flocks of female"]},
{term:"bevy",related:["great lark, group of girls"]},
{term:"bewilder",related:["a sea ,daze, dazzle, baffle"]},
{term:"bewitch",related:["enchant"]},
{term:"bezel",related:["chisel edge"]},
{term:"bibelot",related:["curio"]},
{term:"bicker",related:["argue"]},
{term:"bid",related:["proposition"]},
{term:"biddy",related:["hen"]},
{term:"bide",related:["weight ,remain"]},
{term:"bids ",related:["propositions"]},
{term:"bie",related:["coffin platform"]},
{term:"bien",related:["well- fr."]},
{term:"biff",related:["punch"]},
{term:"big apple",related:["NY"]},
{term:"big buy off",related:["bribe"]},
{term:"big cheese",related:["boss"]},
{term:"big clutz",related:["oaf"]},
{term:"big head",related:["ego"]},
{term:"big swig",related:["belt"]},
{term:"bigotry",related:["racist,hatred,stubborn,intolerence,"]},
{term:"bigwig",related:["VIP"]},
{term:"bijou",related:["jewel fr."]},
{term:"bile",related:["inclination to anger"]},
{term:"bilge",related:["nonsense"]},
{term:"bilk",related:["swindle"]},
{term:"bill",related:["paper money"]},
{term:"bill and coo",related:["Make Love"]},
{term:"billet",related:["troop lodge"]},
{term:"bind",related:["tight spot, jam"]},
{term:"bindle stiff",related:["hobos dos,z-spar,tramp,idle rover"]},
{term:"binge",related:["spree"]},
{term:"bingo !",related:["gotcha"]},
{term:"biome",related:["rain and desert forest, ecologic zone"]},
{term:"biota",related:["flora and fauna"]},
{term:"birds of feather",related:["similar souls"]},
{term:"birth a lamb",related:["yean"]},
{term:"bishopric",related:["see"]},
{term:"bistro",related:["small bar"]},
{term:"bistrow",related:["cafe ,small restaurant"]},
{term:"bit",related:["tad"]},
{term:"bite",related:["quick meal"]},
{term:"bite the dust",related:["die in combat"]},
{term:"bitte",related:["please (germen)"]},
{term:"bitumen",related:["coal"]},
{term:"bivouac",related:["tent, camp"]},
{term:"bizarre",related:["outlandish; eerie"]},
{term:"blab",related:["don't shut up"]},
{term:"black ball",related:["vote to exclude"]},
{term:"black count",related:["tease"]},
{term:"black guard",related:["cad"]},
{term:"black jack",related:["sap"]},
{term:"black sheep",related:["family outcast, roué"]},
{term:"black tie affair",related:["gala"]},
{term:"blah",related:["emotional doldrums, boring talk, dull ,so-so, not enthused"]},
{term:"blah !",related:["dull, so so, "]},
{term:"blasé",related:["worldly wise, too sophisticated"]},
{term:"blaspheme",related:["curse"]},
{term:"blast",related:["criticize severely, big party"]},
{term:"blat",related:["blurt, utter without thinking"]},
{term:"blat !",related:["utter without thinking"]},
{term:"blau",related:["blue-german"]},
{term:"blemish",related:["scar"]},
{term:"blip",related:["radar spot"]},
{term:"bliss",related:["ecstasy ,cloud nine"]},
{term:"blithe",related:["cheer"]},
{term:"blithering",related:["gaga"]},
{term:"blitz",related:["air raid, intense campaign"]},
{term:"bloc",related:["howl, voting group"]},
{term:"block head",related:["dolt,dope,boob,ninny,ninny hammer,gaga,galloot, hoodwink,peene,assinine,fool hardy,bonker,nimby-pamby,bone head,spineless,oaf"]},
{term:"bloke",related:["Britt , chap ,gent"]},
{term:"bloop",related:["err, goof, blow it, booboo ,bone head, blow, flub,fimble,oops,bone head play, drop the ball,howler,boner,devious"]},
{term:"blop",related:["lump"]},
{term:"blotto",related:["falling drunk"]},
{term:"blow a basket",related:["see red"]},
{term:"blow a gasket",related:["snap"]},
{term:"blow away",related:["impress heavily"]},
{term:"blow hot blow cold",related:["wishy washy,vacillate,to and fro, serious consequences"]},
{term:"blow ones stock",related:["see red"]},
{term:"blow own horn",related:["toot"]},
{term:"blown ",related:["mishandled"]},
{term:"blubber",related:["sob, fat"]},
{term:"blue",related:["sad, obscene"]},
{term:"blue blood",related:["royal"]},
{term:"blue chip",related:["safe stock"]},
{term:"blue collar",related:["of physical work"]},
{term:"blue eyed",related:["favored"]},
{term:"blue nose",related:["prude, prig"]},
{term:"blue pencil",related:["bleep, edit"]},
{term:"blue print",related:["scheme"]},
{term:"blue ribbon panel",related:["elite experts"]},
{term:"blue tooth",related:["advanced"]},
{term:"blurb",related:["jacket copy"]},
{term:"blurt",related:["utter without target"]},
{term:"bmoc",related:["college hot shot"]},
{term:"board gas",related:["grocery Spanish)"]},
{term:"bob",related:["move up & down"]},
{term:"bob up",related:["appear suddenly"]},
{term:"Bob’s your uncle",related:["explanation of how to do something to say that it will be easy or simple to do"]},
{term:"bodice",related:["waist"]},
{term:"boffo",related:["extremely sucessful"]},
{term:"bofo",related:["boffo,extremely successful old man"]},
{term:"bog",related:["marsh, mire"]},
{term:"bogey -van",related:["bete-noir"]},
{term:"bogie",related:["hobgoblin, elf"]},
{term:"boil over",related:["loose cool"]},
{term:"bois",related:["weed (fr.)"]},
{term:"Boise",related:["woaded"]},
{term:"bok chay",related:["Chinese cabbage"]},
{term:"bok-chay",related:["cabbage Chinese)"]},
{term:"bole",related:["stump"]},
{term:"bolero",related:["very short jacket"]},
{term:"bolt",related:["depart quickly, fly"]},
{term:"bolt from the blue",related:["sudden turn of events, from no where, out of thin air"]},
{term:"bomb",related:["fail utterly"]},
{term:"bomb shell",related:["blonde"]},
{term:"bon",related:["God, French.)"]},
{term:"bonafide",related:["valid"]},
{term:"bone",related:["study hard"]},
{term:"boner",related:["stupid mistake, foolish blunder"]},
{term:"bonjour",related:["good day"]},
{term:"bonker",related:["mad,banana,loco"]},
{term:"bonkers",related:["nuts"]},
{term:"bon-mot",related:["witticism"]},
{term:"bon-ton",related:["elite"]},
{term:"bonus",related:["extra"]},
{term:"boo",related:["thumbs down,hoot,ghost exclamation"]},
{term:"boo !",related:["ghost's exl., thumbs down, hoot at"]},
{term:"boo boo",related:["owie"]},
{term:"boob tube addict",related:["couch potato"]},
{term:"boo-boo",related:["bone, Childs injury, bone"]},
{term:"booed",related:["voiced disavow"]},
{term:"boohoo !",related:["noisy cry"]},
{term:"boom",related:["flourish vigourishly,high time, floating barrier"]},
{term:"boomies",related:["sticks"]},
{term:"boon",related:["benefit"]},
{term:"boorish",related:["crass"]},
{term:"boot",related:["trunk"]},
{term:"boot leg",related:[""]},
{term:"bootes",related:["herdsman"]},
{term:"booze",related:["excess drink, old dutch),bosen"]},
{term:"bop",related:["bean,strike head"]},
{term:"borax",related:["Na[B4 O5(OH)4]"]},
{term:"bork",related:["attack in media"]},
{term:"borsch",related:["beet soup"]},
{term:"bosh",related:["non-sense, rot"]},
{term:"bosh !",related:["nonsense"]},
{term:"boss",related:[""]},
{term:"botch",related:["muff ,mipso , ruin by clumsiness , muscle(v) , flub"]},
{term:"bother",related:["rub the wrong way, take the trouble, drive up the wall"]},
{term:"botrys",related:["grape"]},
{term:"bottom line",related:["ultimate cost"]},
{term:"bottom out",related:["hit low point"]},
{term:"boudoir",related:["ladies room"]},
{term:"bounder",related:["cad"]},
{term:"bounty",related:["bonus"]},
{term:"bouquet",related:["aroma"]},
{term:"Bourg",related:["market town"]},
{term:"bovine",related:["bovis =cow, ox"]},
{term:"bow",related:["acknowledge applause"]},
{term:"bower",related:["shady spot"]},
{term:"bowl over",related:["amaze"]},
{term:"boyo",related:["lad(fr.)"]},
{term:"bozo",related:["stupid, clown"]},
{term:"brad",related:["thin nail"]},
{term:"braid",related:["interwoven locks"]},
{term:"brain child",related:["brain storm, idea"]},
{term:"brains",related:["smarts"]},
{term:"brash",related:["lacking restraint"]},
{term:"brass",related:["VIP,blalant self-assurance, pushy attitude"]},
{term:"brass tack",related:["essential fact"]},
{term:"brass tacks",related:["essential facts"]},
{term:"brass talk",related:["gist"]},
{term:"brassy",related:["presumptuous, excessively self assured"]},
{term:"bravado",related:["swagger, display bold"]},
{term:"bravura",related:["virtuosity"]},
{term:"brawl",related:["melee"]},
{term:"brawn",related:["muscle power, brawny"]},
{term:"bread",related:["dough,moolah,buck. staff of life"]},
{term:"bread basket",related:["stomach"]},
{term:"break a leg",related:["good luck on stage"]},
{term:"break heart",related:["sad"]},
{term:"break in",related:["tame"]},
{term:"break the tape",related:["win"]},
{term:"breast",related:["confront boldly"]},
{term:"breather",related:["rest,relax,breathe easy"]},
{term:"breve",related:["short vowel symbol"]},
{term:"brevet",related:["promotion without raise"]},
{term:"bric a brac",related:["what not"]},
{term:"brier",related:["bush thorny patch"]},
{term:"bright eyed",related:["alert"]},
{term:"bring up to speed",related:["recap for late comer"]},
{term:"brings up rear",related:["tail"]},
{term:"Broadway figure",related:["actor"]},
{term:"broil",related:["dry cook, grill"]},
{term:"brooch",related:["pin"]},
{term:"brood",related:["stew, think deep,worry,dwell on, birds egg sitting"]},
{term:"brouhaha",related:["ado"]},
{term:"brow",related:["hill crest"]},
{term:"brow beat",related:["intimidate, bully"]},
{term:"brown bag it",related:["bring lunch to work"]},
{term:"brown nose",related:["oil"]},
{term:"brown study",related:["deep thought"]},
{term:"browse",related:["casual look"]},
{term:"bruin ",related:["bear"]},
{term:"bruise",related:["dust up memento,upset someone, skin color,"]},
{term:"bruit",related:["rumours,spread news"]},
{term:"brume",related:["haze"]},
{term:"brush away",related:["reject disdainfully"]},
{term:"brush fire",related:["minor crisis"]},
{term:"brush off",related:["ignore"]},
{term:"brush up",related:["refresh, learn"]},
{term:"brusque",related:["curt,turse"]},
{term:"brute",related:["insensitive"]},
{term:"BTW",related:["incidently,by the way"]},
{term:"bub",related:["fella,mac"]},
{term:"buccaneer",related:["pirate"]},
{term:"buck pass",related:["shin"]},
{term:"buckle down",related:["apply oneself with discrimination"]},
{term:"budge",related:["move with difficulty"]},
{term:"budget",related:["allocation plan"]},
{term:"buff",related:["whiz,shine,natural shade"]},
{term:"buffalo",related:["baffle"]},
{term:"bug",related:["harass"]},
{term:"bug a boo",related:["imagined threat"]},
{term:"bugle",related:["taps horn"]},
{term:"bulk up",related:["amass"]},
{term:"bull winkle",related:["moose"]},
{term:"bulrush",related:["tulle, reed"]},
{term:"bulwark",related:["rampant"]},
{term:"bum",related:["duff"]},
{term:"bum around",related:["roam"]},
{term:"bumber shoot",related:["umbrella"]},
{term:"bumbling",related:["inept"]},
{term:"bummer!",related:["bad drug reaction, flop, pest,too bad"]},
{term:"bump off",related:["kill"]},
{term:"bump the bet",related:["raise"]},
{term:"bumpkin",related:["oaf"]},
{term:"bumrap",related:["false charge"]},
{term:"bumsrush",related:["forced ejection"]},
{term:"bumsteer",related:["bad advice"]},
{term:"bundle of joy",related:["infant"]},
{term:"bungler",related:["klutz"]},
{term:"bungling",related:["inept"]},
{term:"bunk",related:["sailors bed"]},
{term:"bunkum",related:["nonsense"]},
{term:"bunt",related:["sacrifice play"]},
{term:"burg",related:["small town"]},
{term:"burn rubber",related:["have in hurry"]},
{term:"burr hamilton",related:["duel"]},
{term:"bushwa",related:["ball"]},
{term:"buskind",related:["of tragedy"]},
{term:"buss",related:["kiss"]},
{term:"bust",related:["bankrupt"]},
{term:"bustle",related:["move busily"]},
{term:"busy as beaver",related:["become disenchanted"]},
{term:"busy body",related:["noisy gossip"]},
{term:"butt in",related:["intrude,"]},
{term:"butt in sky's",related:["pests"]},
{term:"butte",related:["steep hill"]},
{term:"butter and thumbs",related:["whats up, wrap ice and teem, pay and sunny side, shoot emmend even"]},
{term:"butterfly",related:["nausea"]},
{term:"button hole",related:["accost and detain for asking"]},
{term:"buy bullet",related:["arm"]},
{term:"buy hot cakes",related:["snap up"]},
{term:"buy the farm",related:["die"]},
{term:"buzz off",related:["exited talk, go away, thrill, shoo"]},
{term:"by and large",related:["usually"]},
{term:"by far",related:["n-th,to ultimate degree"]},
{term:"by halves",related:["reluctancy"]},
{term:"by jove !",related:["egad"]},
{term:"by line",related:["writers credit, foot note"]},
{term:"by words",related:["proverbs"]},
{term:"byssinosis",related:["cotton fiber disease, Latin byssus= clothes"]},
{term:"C,est lavie",related:["it happens,thats life <fr>"]},
{term:"cabal",related:["secret plotter, conspiracy group"]},
{term:"cabala",related:["secret doctrine"]},
{term:"cabaret",related:["nuit club"]},
{term:"cabbage",related:["paper money"]},
{term:"cabinet",related:["presidents team"]},
{term:"caboodle",related:["crowd"]},
{term:"cache",related:["secret store, hiding place, lure,"]},
{term:"cachet",related:["seal of approval"]},
{term:"cachets",related:["marks of quality"]},
{term:"cad",related:["philander,heed,not gentle"]},
{term:"cadence",related:["rhythm"]},
{term:"cadge",related:["acquire by begging"]},
{term:"cadre",related:["core group, scheme officers, nucleus of personale"]},
{term:"cafe",related:["bistrow,"]},
{term:"caffe latte",related:["cafe au let"]},
{term:"caftan",related:["robe"]},
{term:"cagey",related:["gaurded,shrewed"]},
{term:"caginess",related:["cunning"]},
{term:"cairn",related:["heap stone landmark"]},
{term:"cajole",related:["wheedle,woo,sweet talk"]},
{term:"cake walk",related:["cinch, snap"]},
{term:"calamitous",related:["dire"]},
{term:"calcar",related:["spur, e.g. calcar femorale"]},
{term:"calico",related:["mottled cat"]},
{term:"Caligula",related:["little boot"]},
{term:"caliph",related:["imam"]},
{term:"call a chicken",related:["dare"]},
{term:"call it quis",related:["resign"]},
{term:"call it quits",related:["cease"]},
{term:"call the shoot",related:["lead"]},
{term:"calumnious",related:["defaming"]},
{term:"calvaria",related:["bald scalp, Latin calvus=bald"]},
{term:"calypso",related:["west music"]},
{term:"cam",related:["eccentric wheel"]},
{term:"cambric",related:["fine linen"]},
{term:"came to",related:["awake"]},
{term:"camelopardelis",related:["giraffe"]},
{term:"cameo",related:["brief appearance"]},
{term:"can",related:["give the ax to"]},
{term:"canard",related:["lie"]},
{term:"candid",related:["frank, open"]},
{term:"candy striper",related:["volunteer in hospital, young one"]},
{term:"canedon",related:["put ones trust in"]},
{term:"cannan",related:["promised land"]},
{term:"canny",related:["shrewd"]},
{term:"cant",related:["tilt"]},
{term:"cantankerous",related:["ornary,bad tempered"]},
{term:"cantina",related:["saloon <Mexican>"]},
{term:"cap",related:["price ceiling"]},
{term:"cap out",related:["evasive excuse"]},
{term:"cape",related:["promontory"]},
{term:"caper",related:["antioc,dido"]},
{term:"capitally",related:["admirably"]},
{term:"capitulate",related:["surrender"]},
{term:"capon",related:["male cock bread for meat"]},
{term:"capote",related:["hooded cloak"]},
{term:"capper",related:["last remark"]},
{term:"capri",related:["women’s tapered pants: close-fitting women’s pants that end just below the knee Named for the island of Capri ."]},
{term:"caprice",related:["whim"]},
{term:"carafe",related:["pouted pot"]},
{term:"carat",related:["200 mg"]},
{term:"card",related:["ask age proof, funny fellow, wag"]},
{term:"cardon bleu",related:["chief chef"]},
{term:"careen",related:["lurch and swerve"]},
{term:"cares n woes",related:["daily tribulations"]},
{term:"cares and woes",related:["daily tribulations"]},
{term:"cargo",related:["load"]},
{term:"caricature",related:["exaggerated portrait"]},
{term:"caries",related:["rottenness, decay, corruption"]},
{term:"carmine",related:["red color"]},
{term:"carnal",related:["sensual"]},
{term:"carob",related:["chocolate sub"]},
{term:"carol",related:["sing"]},
{term:"carouse",related:["revel"]},
{term:"carp",related:["complain fretfully, find fault"]},
{term:"carpie diem",related:["siege of the day"]},
{term:"carriage",related:["shay, posture"]},
{term:"carry the day",related:["win"]},
{term:"carta blanche",related:["blank cheque"]},
{term:"carte",related:["`"]},
{term:"carte de jour",related:["carte,menu"]},
{term:"Cartier",related:["jeweler"]},
{term:"casa",related:["house<sp>"]},
{term:"casa nova",related:["don Juan, ladies man"]},
{term:"casbah",related:["head land"]},
{term:"case",related:["pack of 6*4"]},
{term:"case the joint",related:["check out"]},
{term:"cassion",related:["ammo, wagon"]},
{term:"cast",related:["supporting player"]},
{term:"cast off ",related:["reject"]},
{term:"casual coinage",related:["slang"]},
{term:"casualty",related:["loss"]},
{term:"casus belli",related:["cause of war"]},
{term:"cat",related:["hip dude, cool dude, cool one"]},
{term:"cat bird seat",related:["position of advantage"]},
{term:"cat call",related:["derisive cry, hiss"]},
{term:"cat nap",related:["snooze, shut eye,rest"]},
{term:"catafraque",related:["bier"]},
{term:"catch",related:["hidden draw back"]},
{term:"catch 22",related:["escape due to mutiny, difficult situation"]},
{term:"catch 40 winks",related:["take 5,take 10,"]},
{term:"catch all category",related:["other"]},
{term:"cater the breath",related:["rest"]},
{term:"caterwell",related:["yell"]},
{term:"cats and cows",related:["bee's knees, out standing person"]},
{term:"cats paw",related:["dupe,tool,man for lower job"]},
{term:"cats wink",related:["nap"]},
{term:"catty",related:["spite ful,awry,peeve"]},
{term:"catty corner",related:["diagonal"]},
{term:"caul",related:["greater omentum"]},
{term:"cave canem",related:["beware-dogs"]},
{term:"cave in",related:["collapse"]},
{term:"caveat emptor",related:["doer beware"]},
{term:"cavil",related:["raise trivial objections"]},
{term:"cavort",related:["frolic"]},
{term:"cay",related:["ail"]},
{term:"cede",related:["yield, give up, hand over, surrender formally"]},
{term:"celeb",related:["celebrity star"]},
{term:"celerity",related:["haste"]},
{term:"cello",related:["viola, stringed instrument, yoyo mas"]},
{term:"Celt",related:["ancient Britt"]},
{term:"cena canis",related:["mess, dogs dinner,b f"]},