-
Notifications
You must be signed in to change notification settings - Fork 0
/
Data_Set_S1.txt
10226 lines (10225 loc) · 396 KB
/
Data_Set_S1.txt
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
labMIT-1.0.txt
language assessment by Mechanical Turk 1.0
word happiness_rank happiness_average happiness_standard_deviation twitter_rank google_rank nyt_rank lyrics_rank
laughter 1 8.50 0.9313 3600 -- -- 1728
happiness 2 8.44 0.9723 1853 2458 -- 1230
love 3 8.42 1.1082 25 317 328 23
happy 4 8.30 0.9949 65 1372 1313 375
laughed 5 8.26 1.1572 3334 3542 -- 2332
laugh 6 8.22 1.3746 1002 3998 4488 647
laughing 7 8.20 1.1066 1579 -- -- 1122
excellent 8 8.18 1.1008 1496 1756 3155 --
laughs 9 8.18 1.1551 3554 -- -- 2856
joy 10 8.16 1.0568 988 2336 2723 809
successful 11 8.16 1.0759 2176 1198 1565 --
win 12 8.12 1.0812 154 3031 776 694
rainbow 13 8.10 0.9949 2726 -- -- 1723
smile 14 8.10 1.0152 925 2666 2898 349
won 15 8.10 1.2164 810 1167 439 1493
pleasure 16 8.08 0.9655 1497 1526 4253 1398
smiled 17 8.08 1.0660 -- 3537 -- 2248
rainbows 18 8.06 1.3603 -- -- -- 4216
winning 19 8.04 1.0490 1876 -- 1426 3646
celebration 20 8.02 1.5318 3306 -- 2762 4070
enjoyed 21 8.02 1.5318 1530 2908 3502 --
healthy 22 8.02 1.0593 1393 3200 3292 4619
music 23 8.02 1.1156 132 875 167 374
celebrating 24 8.00 1.1429 2550 -- -- --
congratulations 25 8.00 1.6288 2246 -- -- --
weekend 26 8.00 1.2936 317 -- 833 2256
celebrate 27 7.98 1.1516 1606 -- 3574 2108
comedy 28 7.98 1.1516 1444 -- 2566 --
jokes 29 7.98 0.9792 2812 -- -- 3808
rich 30 7.98 1.3169 1625 1221 1469 890
victory 31 7.98 1.0784 1809 2341 687 2845
christmas 32 7.96 1.2930 138 3846 2097 599
free 33 7.96 1.2610 85 342 393 219
friendship 34 7.96 1.1241 4273 3098 3669 3980
fun 35 7.96 1.3087 110 4135 2189 463
holidays 36 7.96 1.2610 1204 -- -- --
loved 37 7.96 1.1599 465 2178 890 517
loves 38 7.96 1.3696 780 -- -- 653
loving 39 7.96 1.0093 947 4396 230 527
beach 40 7.94 1.0577 573 3596 551 1475
hahaha 41 7.94 1.5572 428 -- -- --
kissing 42 7.94 1.1323 -- -- -- 2052
sunshine 43 7.94 1.1678 2080 -- -- 950
beautiful 44 7.92 1.1753 266 1159 1754 467
delicious 45 7.92 1.2591 1565 -- -- --
friends 46 7.92 1.1925 258 658 347 321
funny 47 7.92 1.0467 358 -- 3194 755
outstanding 48 7.92 1.1400 4468 4721 1797 --
paradise 49 7.92 1.3974 3096 -- -- 1146
sweetest 50 7.92 1.2911 -- -- -- 2232
vacation 51 7.92 1.9042 952 -- 3251 3780
butterflies 52 7.92 1.0770 -- -- -- 4175
freedom 53 7.90 1.4178 1465 933 1844 879
flower 54 7.88 1.1718 2769 3675 -- 1929
great 55 7.88 1.2061 94 110 219 579
sunlight 56 7.88 1.4934 -- -- -- 2316
sweetheart 57 7.88 1.2720 3055 -- -- 2919
sweetness 58 7.88 1.1891 -- -- -- 4465
award 59 7.86 1.5651 1715 -- 1429 --
chocolate 60 7.86 1.0304 436 -- -- 2695
hahahaha 61 7.86 1.7025 1341 -- -- --
heaven 62 7.86 1.5780 1294 1615 3939 392
peace 63 7.86 1.3403 675 702 775 559
splendid 64 7.86 1.4570 -- 4763 -- --
success 65 7.86 1.6414 657 847 1338 3316
enjoying 66 7.84 1.5032 875 -- -- --
kissed 67 7.84 1.5048 -- -- -- 1322
attraction 68 7.82 1.0240 -- -- -- 4179
celebrated 69 7.80 1.1780 -- 3720 3432 --
hero 70 7.80 1.3997 1867 3362 3816 1648
hugs 71 7.80 1.4428 1868 -- -- --
positive 72 7.80 1.2454 1728 958 2139 3575
sun 73 7.80 1.3553 439 978 2010 214
birthday 74 7.78 1.9091 190 -- 2241 2529
blessed 75 7.78 1.2824 1733 3876 -- 1618
fantastic 76 7.78 1.0934 1354 -- -- --
winner 77 7.78 1.6938 1793 -- 1916 3199
delight 78 7.78 1.4181 -- 3954 -- 2987
beauty 79 7.76 1.6107 1032 1611 2519 1013
butterfly 80 7.76 1.3334 4332 -- -- 2836
entertainment 81 7.76 1.2216 2247 -- 1712 --
funniest 82 7.76 1.5592 3451 -- -- --
honesty 83 7.76 1.2707 -- -- -- 3653
sky 84 7.76 1.0797 842 2374 4221 274
smiles 85 7.76 1.7907 2971 -- -- 1782
succeed 86 7.76 1.6971 -- 4088 3212 4270
wonderful 87 7.76 1.7907 749 2841 1571 1188
glorious 88 7.74 1.3969 -- 4792 -- 3926
kisses 89 7.74 1.1920 2942 -- -- 1340
promotion 90 7.74 1.3822 3037 4108 4849 --
family 91 7.72 1.3099 203 235 109 738
gift 92 7.72 1.3407 443 2734 2672 1710
humor 93 7.72 1.0887 1516 -- 1826 --
romantic 94 7.72 1.1959 2535 3812 4200 4201
cupcakes 95 7.70 1.2330 3799 -- -- --
festival 96 7.70 1.0738 2024 -- 1020 --
hahahahaha 97 7.70 1.3590 3436 -- -- --
honour 98 7.70 1.2495 -- 2713 -- --
relax 99 7.70 1.0738 1986 -- -- 1752
weekends 100 7.70 1.7871 4100 -- -- --
angel 101 7.68 1.2362 1299 4854 -- 578
b-day 102 7.68 1.5312 -- -- -- --
bonus 103 7.68 1.4630 3131 -- -- --
brilliant 104 7.68 1.6218 1843 3670 3679 --
diamonds 105 7.68 1.4769 -- -- -- 1457
holiday 106 7.68 1.3005 434 -- 1895 2241
lucky 107 7.68 1.2688 537 -- 4327 975
mother 108 7.68 1.6714 626 437 170 549
super 109 7.68 1.5964 408 -- 2673 1726
amazing 110 7.66 1.4930 316 -- -- 2297
angels 111 7.66 1.4654 3233 4944 -- 815
enjoy 112 7.66 1.4654 518 2605 3091 1878
friend 113 7.66 1.5066 186 768 394 308
friendly 114 7.66 1.5467 1841 3095 4290 3042
mother's 115 7.66 1.2875 -- 3434 -- --
profit 116 7.66 1.2390 1890 2140 2107 --
finest 117 7.66 1.3875 -- -- -- 3225
bday 118 7.64 1.6753 825 -- -- --
champion 119 7.64 1.2249 3165 -- 1772 --
grandmother 120 7.64 1.3516 -- -- 505 --
haha 121 7.64 1.3815 135 -- -- 3211
kiss 122 7.64 1.7585 711 -- -- 314
kitten 123 7.64 1.2898 3864 -- -- --
miracle 124 7.64 1.8926 2510 -- -- 1924
mom 125 7.64 1.8709 426 -- 4015 1269
sweet 126 7.64 1.0645 431 2347 2708 243
blessings 127 7.62 1.6274 3957 -- -- 4242
bright 128 7.62 1.1409 1344 2152 3001 649
cutest 129 7.62 1.0859 4009 -- -- --
entertaining 130 7.62 1.0859 3616 -- -- --
excited 131 7.62 1.3981 508 3790 -- 3077
excitement 132 7.62 1.6523 2972 4058 -- --
joke 133 7.62 1.3981 821 -- -- 1685
millionaire 134 7.62 2.1275 3035 -- -- --
prize 135 7.62 1.2103 2519 4742 2464 2874
succeeded 136 7.62 1.1409 -- 2391 4525 --
successfully 137 7.62 1.2599 -- 3281 4960 --
winners 138 7.62 1.5372 3381 -- 3518 --
shines 139 7.60 1.5944 -- -- -- 1435
awesome 140 7.60 1.5908 251 -- -- --
genius 141 7.60 1.2454 2306 3097 -- 4716
achievement 142 7.58 1.4299 2737 3160 4591 --
cake 143 7.58 1.1082 696 -- -- 2200
cheers 144 7.58 1.4721 2675 -- -- --
exciting 145 7.58 1.3415 1485 -- 4431 --
goodness 146 7.58 1.3716 2274 -- -- 4047
hug 147 7.58 1.4721 1392 -- -- 2497
income 148 7.58 1.6047 2795 798 298 --
party 149 7.58 1.4581 165 367 384 446
puppy 150 7.58 1.4581 1517 -- -- --
smiling 151 7.58 1.7034 3530 -- -- 1518
song 152 7.58 1.3415 147 2121 1898 248
succeeding 153 7.58 1.3415 -- -- 4446 --
tasty 154 7.58 1.1265 3345 -- -- --
victories 155 7.58 1.7623 -- -- 4210 --
achieved 156 7.56 1.3726 -- 2001 4401 --
billion 157 7.56 1.6679 2689 3797 297 --
cakes 158 7.56 1.4591 4497 -- -- --
easier 159 7.56 1.1457 1716 3114 2585 2152
flowers 160 7.56 1.4309 2820 2250 637 1154
gifts 161 7.56 1.9395 1668 3942 3358 3754
gold 162 7.56 1.1095 605 1030 1343 607
merry 163 7.56 1.1457 510 -- -- 1753
families 164 7.54 1.2811 3378 1153 923 --
handsome 165 7.54 1.2488 3289 4635 -- 3695
lovers 166 7.54 1.2811 3593 -- -- 1065
affection 167 7.53 1.5289 -- 3564 -- 2796
candy 168 7.52 1.4879 1126 -- -- 1337
cute 169 7.52 1.1993 295 -- -- 2354
diamond 170 7.52 1.7171 1992 -- 2827 1372
earnings 171 7.52 1.4177 -- 4361 582 --
interesting 172 7.52 1.1822 602 1165 2391 --
peacefully 173 7.52 1.0544 -- -- 1718 --
praise 174 7.52 1.4741 3300 3301 -- 1465
relaxing 175 7.52 1.2162 1904 -- -- --
roses 176 7.52 1.2493 3748 -- -- 1643
saturdays 177 7.52 1.7290 -- -- 2051 --
faithful 178 7.51 1.3248 -- 3479 -- 2637
heavens 179 7.51 1.7335 -- -- -- 2321
cherish 180 7.50 1.4743 -- -- -- 3823
comfort 181 7.50 1.1473 2483 3142 3810 1532
congrats 182 7.50 1.5419 969 -- -- --
cupcake 183 7.50 1.7642 -- -- -- --
earn 184 7.50 1.3439 2014 -- 3662 3810
extraordinary 185 7.50 1.3740 -- 2904 818 --
glory 186 7.50 1.6067 2487 2558 -- 969
hilarious 187 7.50 1.9821 1386 -- -- --
moonlight 188 7.50 1.3590 -- -- -- 1326
optimistic 189 7.50 1.3132 -- -- 4110 --
peaceful 190 7.50 1.0926 4916 4769 -- 3251
romance 191 7.50 1.4321 3144 -- -- 1396
feast 192 7.49 1.6473 -- -- -- 4050
attractive 193 7.48 0.9739 4966 3658 3980 --
glad 194 7.48 1.5151 451 2828 4831 833
grandma 195 7.48 1.5016 2802 -- -- 4599
internet 196 7.48 1.3130 533 3835 1330 --
pleasant 197 7.48 1.2162 -- 3049 4478 --
profits 198 7.48 1.3285 -- 3109 2141 --
smart 199 7.48 1.3738 1302 -- 3745 1952
x-mas 200 7.48 1.8210 -- -- -- --
babies 201 7.46 1.5012 2129 -- -- 2077
cheer 202 7.46 1.6807 1756 -- -- 3198
courage 203 7.46 1.1817 4578 3003 3238 2789
enthusiasm 204 7.46 1.1287 -- 3780 4375 --
honest 205 7.46 1.1287 1518 3348 4328 2375
loyal 206 7.46 1.2488 -- -- 3925 --
opportunities 207 7.46 1.0919 4313 2239 3283 --
triumph 208 7.46 1.8318 -- 4335 4913 --
wow 209 7.46 1.4458 281 -- -- 1814
jewels 210 7.46 1.6153 -- -- -- 2854
forests 211 7.45 1.3320 -- 4405 -- --
apple 212 7.44 1.2316 633 -- 2983 2320
dreams 213 7.44 1.4165 928 3322 4127 258
fantasy 214 7.44 1.6183 1483 -- -- 1320
food 215 7.44 1.2149 198 557 445 1335
honey 216 7.44 1.5928 1078 -- -- 496
miracles 217 7.44 1.9395 -- -- -- 3821
sex 218 7.44 1.6801 375 1356 1959 787
sing 219 7.44 1.3426 1040 3950 3943 297
starlight 220 7.44 1.4165 -- -- -- 4347
thankful 221 7.44 1.5005 1374 -- -- 3569
wins 222 7.44 1.2643 1236 -- 3064 4546
achieve 223 7.42 1.2304 -- 2223 3456 --
adored 224 7.42 1.4441 -- -- 1326 --
cash 225 7.42 1.6671 755 2494 1310 909
dances 226 7.42 1.2950 -- -- -- 4757
gorgeous 227 7.42 1.9597 1645 -- -- --
grandchildren 228 7.42 1.5131 -- -- 293 --
incredible 229 7.42 1.3415 2208 -- -- 3783
lunch 230 7.42 1.0897 470 4895 2640 3286
mommy 231 7.42 1.7623 2482 -- -- 2584
parties 232 7.42 1.4441 2595 1058 1612 3809
perfect 233 7.42 1.7154 642 1411 2277 625
saturday 234 7.42 1.7154 620 4379 224 1548
surprise 235 7.42 1.5398 1901 2902 2992 1314
truth 236 7.42 1.4010 713 595 2238 393
blessing 237 7.40 1.7379 4347 -- -- 3875
creative 238 7.40 1.1952 1834 3012 2020 --
dinner 239 7.40 1.1429 245 2292 1328 2344
kindness 240 7.40 1.0880 4849 -- 4445 4104
pleased 241 7.40 1.1606 4079 2903 4069 4770
sexy 242 7.40 1.2289 459 -- -- 1111
strength 243 7.40 1.1606 2951 852 1876 967
thank 244 7.40 1.1249 259 2659 3584 736
thanks 245 7.40 1.5119 150 2893 3755 1773
thanksgiving 246 7.40 1.4142 784 -- -- --
treasure 247 7.40 1.7143 3879 -- -- 2595
valentine 248 7.40 1.7023 1430 -- -- --
riches 249 7.39 1.6685 -- -- -- 3090
awarded 250 7.38 1.1586 -- -- 2556 --
fabulous 251 7.38 1.5372 2419 -- -- --
grandfather 252 7.38 1.4270 -- -- 573 --
heavenly 253 7.38 1.8282 -- -- -- 2469
hope 254 7.38 1.3076 92 705 591 291
kids 255 7.38 1.6022 223 4296 1465 612
magical 256 7.38 1.2919 3346 -- -- 3927
million 257 7.38 1.4270 1027 1032 70 711
nice 258 7.38 1.5104 102 3154 2058 587
sundays 259 7.38 1.4553 4740 -- 2117 --
wealth 260 7.38 1.2271 4292 1746 4969 3178
fantasies 261 7.36 1.3898 -- -- -- 3592
cares 262 7.36 1.3962 2909 -- -- 1245
dance 263 7.36 1.4394 694 2619 587 262
daughters 264 7.36 1.2249 -- 3959 750 4031
favorable 265 7.36 1.5086 -- 4193 -- --
friend's 266 7.36 1.6383 -- -- -- --
generosity 267 7.36 1.2739 -- -- 3473 --
grateful 268 7.36 1.4675 2254 -- 4615 4685
inspired 269 7.36 1.1021 1638 3648 2706 --
mothers 270 7.36 1.4675 -- 3280 4594 3118
parents 271 7.36 1.5086 903 846 773 2518
valentine's 272 7.36 1.3211 -- -- -- --
intelligent 273 7.35 1.5504 -- 3750 -- --
liberation 274 7.35 1.3039 -- 4497 -- --
melody 275 7.35 1.7742 -- -- -- 1821
wonderland 276 7.35 1.6400 -- -- -- 4126
beloved 277 7.34 1.2715 -- 4900 149 --
caring 278 7.34 1.4086 -- -- 2485 --
homemade 279 7.34 1.2390 3204 -- -- --
inspiring 280 7.34 1.1886 4265 -- -- --
movies 281 7.34 1.4514 739 -- 1904 2701
precious 282 7.34 1.5201 2990 4136 -- 1329
respect 283 7.34 1.6113 1108 681 2009 1001
satisfaction 284 7.34 1.1178 -- 2450 -- 2878
satisfy 285 7.34 1.4373 -- 3902 -- 2507
wedding 286 7.34 1.5201 700 -- 3095 2454
accomplished 287 7.32 1.3005 -- 2767 3951 --
adorable 288 7.32 1.6956 1524 -- -- --
championship 289 7.32 1.3619 3707 -- 1966 --
comfortable 290 7.32 1.0962 3887 3733 3311 4898
cuddle 291 7.32 1.7313 3764 -- -- --
games 292 7.32 1.2196 671 3441 559 1057
grandson 293 7.32 1.4769 -- -- 2496 --
life 294 7.32 1.6956 84 103 157 70
lovely 295 7.32 1.5444 782 4534 -- 1136
pretty 296 7.32 1.6956 152 1983 1684 448
proud 297 7.32 1.4348 695 3463 1808 1034
rose 298 7.32 1.4630 1938 1384 531 1145
united 299 7.32 1.2027 1662 244 98 3021
fruits 300 7.31 1.5303 -- 4170 -- --
adventure 301 7.30 1.4321 2046 -- -- --
couple 302 7.30 1.2657 453 2357 1432 1309
dollars 303 7.30 1.4604 2503 2056 863 1915
eating 304 7.30 1.7757 532 3218 2595 2376
fortune 305 7.30 1.3887 4327 2985 4600 2013
generous 306 7.30 1.4743 -- 4377 2523 --
golden 307 7.30 1.3439 1835 2631 2419 1025
hahah 308 7.30 1.5419 1542 -- -- --
hooray 309 7.30 2.0727 4511 -- -- --
intelligence 310 7.30 1.1995 -- 1753 1257 --
lover 311 7.30 1.9299 3444 4730 4901 630
luxury 312 7.30 1.6812 2845 -- 4254 --
money 313 7.30 1.8434 163 414 236 225
passion 314 7.30 1.4743 1955 2811 2908 1216
prosperity 315 7.30 1.5286 -- 4090 -- --
remarkable 316 7.30 1.3286 -- 2134 3525 --
sweetie 317 7.30 1.1294 3167 -- -- --
valentines 318 7.30 1.7757 1443 -- -- --
educated 319 7.29 1.3070 -- 3270 -- --
gently 320 7.29 1.2748 -- 4602 -- 2690
baby 321 7.28 1.8521 157 2388 2147 53
books 322 7.28 1.3254 911 599 401 2166
bride 323 7.28 1.5391 3811 -- 3353 3521
cherished 324 7.28 1.5784 -- -- 647 --
cookies 325 7.28 1.7028 1391 -- -- --
dessert 326 7.28 1.7733 4525 -- -- --
employed 327 7.28 1.3559 -- 1119 4869 --
glow 328 7.28 1.2943 -- -- -- 1696
god 329 7.28 1.9277 136 181 1790 210
great-grandchildren 330 7.28 1.7028 -- -- -- --
helped 331 7.28 1.2943 2226 2063 975 3315
independence 332 7.28 1.5913 -- 1745 2634 --
likes 333 7.28 1.5391 1541 -- 4118 1440
luckily 334 7.28 1.6542 4888 -- -- --
moon 335 7.28 1.3708 818 2618 4687 454
perfectly 336 7.28 1.5913 3921 2339 -- 4196
satisfied 337 7.28 1.5258 4295 2603 -- 1520
sunday 338 7.28 1.9171 517 2537 114 1183
juicy 339 7.27 1.2037 -- -- -- 4900
championships 340 7.26 1.3524 -- -- 3124 --
divine 341 7.26 1.4115 -- 1325 -- 1855
dreaming 342 7.26 1.2586 3537 -- -- 805
foods 343 7.26 1.4820 2923 4383 3500 --
fresh 344 7.26 1.3219 1025 1698 1557 1118
gladly 345 7.26 1.1214 -- -- -- 4807
greatest 346 7.26 1.5228 1454 1214 2468 1721
hearts 347 7.26 1.6759 2326 3148 1563 597
luck 348 7.26 1.8824 397 -- -- 996
millions 349 7.26 1.5361 3717 3072 1982 2863
musicians 350 7.26 1.0461 -- -- 2870 --
play 351 7.26 1.2257 287 600 339 204
progress 352 7.26 1.1572 1627 1014 1927 4474
savings 353 7.26 1.2747 4129 4356 1586 --
appreciation 354 7.24 1.4653 -- 4619 -- --
bliss 355 7.24 1.7562 3596 -- -- 2684
bloom 356 7.24 1.5980 -- -- -- 3127
book 357 7.24 1.2048 229 278 255 1063
child 358 7.24 1.5592 685 369 846 491
companion 359 7.24 1.3786 -- 4269 2767 --
computer 360 7.24 1.3933 384 1450 762 4633
gardens 361 7.24 1.3486 -- 4541 2554 --
gentle 362 7.24 0.9806 -- 3862 3811 2156
hahahah 363 7.24 2.0360 3594 -- -- --
helpful 364 7.24 1.2382 4334 3538 -- --
impressed 365 7.24 1.0412 1679 4667 -- 4879
kind 366 7.24 1.3933 319 383 571 373
knowledge 367 7.24 1.4647 1758 374 2359 2168
liberty 368 7.24 1.2707 3427 1880 3517 3605
mama 369 7.24 1.7562 1525 -- -- 535
nature 370 7.24 1.8020 1646 243 1464 1661
pal 371 7.24 1.2707 -- -- -- 4745
passionate 372 7.24 1.0797 -- -- -- --
promoted 373 7.24 1.4923 -- -- 4047 --
reward 374 7.24 1.8905 3952 3896 -- 4930
warmth 375 7.24 1.6483 -- -- 3873 3065
xmas 376 7.24 2.1050 769 -- -- --
danced 377 7.22 1.2122 -- -- -- 2523
amazed 378 7.22 1.8658 3914 -- -- 4272
appreciate 379 7.22 1.1830 1657 4834 4755 3449
brother 380 7.22 1.2337 482 1055 289 640
confidence 381 7.22 1.2824 4570 1802 2284 3254
darling 382 7.22 1.3138 4107 -- -- 742
encouraging 383 7.22 1.5556 -- -- 4780 --
energy 384 7.22 1.2982 1005 549 877 2115
films 385 7.22 1.2824 3211 3300 1444 --
garden 386 7.22 1.1830 1064 1821 875 1557
graduated 387 7.22 1.2664 -- -- 492 --
guitar 388 7.22 1.4748 1324 -- 4072 1071
health 389 7.22 1.2501 400 441 287 3144
heart 390 7.22 1.4327 274 435 719 86
honor 391 7.22 1.2002 1630 2559 1863 3003
like 392 7.22 1.2171 32 89 76 26
musical 393 7.22 1.5556 2642 3246 1275 4045
pets 394 7.22 1.5292 4059 -- -- --
relaxed 395 7.22 1.0554 4698 -- -- --
salary 396 7.22 1.3445 -- 4883 3110 --
star 397 7.22 1.5817 392 2460 1290 497
sweeter 398 7.22 1.1119 -- -- -- 2858
trust 399 7.22 1.2337 705 1399 1358 563
yummy 400 7.22 1.7876 1608 -- -- --
ecstasy 401 7.20 1.7318 -- -- -- 2805
eternal 402 7.20 1.5272 -- 2958 -- 1699
approved 403 7.20 1.4983 -- 3132 1417 --
benefits 404 7.20 1.0498 3234 1814 1124 --
cartoon 405 7.20 1.4428 4463 -- -- --
comforted 406 7.20 1.4428 -- -- 4362 --
cool 407 7.20 1.3401 276 3437 3533 472
discount 408 7.20 1.2936 2776 -- 3885 --
good 409 7.20 1.4569 19 121 164 114
google 410 7.20 1.3093 456 -- -- --
ladies 411 7.20 1.4708 1047 3188 -- 814
libraries 412 7.20 1.2454 -- 4520 -- --
luv 413 7.20 1.8406 1044 -- -- 3606
perfection 414 7.20 1.6288 -- 4505 -- 3509
presents 415 7.20 1.4569 1940 2555 4154 4863
prizes 416 7.20 2.0304 4281 -- -- --
special 417 7.20 1.1952 649 448 480 866
wishes 418 7.20 1.2122 1650 3179 -- 2773
alive 419 7.18 1.2887 872 2707 2977 445
awards 420 7.18 1.2070 1633 -- 2230 --
bed 421 7.18 1.2887 124 1100 3503 459
best 422 7.18 1.6866 126 282 295 270
coffee 423 7.18 1.4803 474 2997 2806 1799
comfy 424 7.18 1.2237 4650 -- -- --
fiesta 425 7.18 1.7692 -- -- -- 4352
genuine 426 7.18 1.3805 -- 3492 -- --
helping 427 7.18 1.6374 1479 3756 2215 3277
imagine 428 7.18 1.1008 888 2512 3062 1282
leisure 429 7.18 1.6986 -- -- 3100 --
meal 430 7.18 1.4665 2018 3858 -- 3549
promise 431 7.18 1.1899 1881 2230 2838 642
respected 432 7.18 1.0240 -- -- 3229 --
rest 433 7.18 1.2567 562 630 891 490
travel 434 7.18 1.4241 632 2204 623 1910
abundant 435 7.16 1.6458 -- 4672 -- --
attracted 436 7.16 1.1669 -- 4251 -- --
devoted 437 7.16 1.3607 -- 2487 310 --
favourite 438 7.16 1.3607 2197 -- -- 3939
granddaughter 439 7.16 1.6946 -- -- 3763 --
heroes 440 7.16 1.5696 2759 -- -- 2486
ideas 441 7.16 1.2835 1003 815 1482 3540
liked 442 7.16 0.9116 1287 3339 4273 2410
oceans 443 7.16 1.6208 -- -- -- 3577
pizza 444 7.16 1.3303 500 -- -- 4655
skies 445 7.16 1.3456 -- -- -- 953
sleep 446 7.16 1.7066 109 1593 3382 354
spring 447 7.16 1.4337 625 1279 920 1356
sunset 448 7.16 2.1127 2597 -- -- 2330
welcome 449 7.16 1.3149 653 3503 2507 961
1st 450 7.14 1.7025 -- 3809 -- --
adoring 451 7.14 1.6904 -- -- 2424 --
brighter 452 7.14 1.3250 -- -- -- 2428
children's 453 7.14 1.5120 -- 3315 -- --
cure 454 7.14 1.5120 2823 4323 -- 1957
fireworks 455 7.14 1.4848 3589 -- -- --
home 456 7.14 1.8296 60 255 108 135
honored 457 7.14 1.2779 -- -- 3501 --
journey 458 7.14 1.5120 2644 2179 3957 1946
lovin 459 7.14 1.9693 4096 -- -- 2199
opportunity 460 7.14 1.7144 1975 1176 1397 4127
paid 461 7.14 1.7144 1286 894 804 991
parks 462 7.14 1.5651 -- -- 2515 --
playing 463 7.14 1.4709 311 2312 815 730
shine 464 7.14 1.7144 2921 -- -- 456
strawberry 465 7.14 1.4144 4584 -- -- --
summertime 466 7.14 2.2224 -- -- -- 2650
wealthy 467 7.14 1.7498 -- -- 4764 --
appreciated 468 7.12 1.5070 4995 -- 2738 --
artistic 469 7.12 1.2395 -- 4079 2415 --
birth 470 7.12 1.6117 2916 1398 2885 2039
children 471 7.12 1.3498 1035 203 173 614
fruit 472 7.12 1.5205 2529 2367 4456 3087
inspire 473 7.12 1.4797 3787 -- -- --
juice 474 7.12 1.0812 2185 -- -- 2429
laptop 475 7.12 1.3498 1075 -- -- --
partners 476 7.12 1.4377 -- 4156 1660 --
son 477 7.12 1.8142 624 497 201 450
stronger 478 7.12 1.0812 4576 3410 3673 1171
superman 479 7.12 1.7219 -- -- -- 3794
tree 480 7.12 1.3192 702 1246 2933 824
valuable 481 7.12 1.1183 -- 2015 3652 --
woman's 482 7.12 1.3498 -- 4352 -- --
women 483 7.12 1.4658 651 229 376 881
glowing 484 7.10 1.4324 -- -- -- 3796
admiration 485 7.10 1.4604 -- 4990 -- --
carnival 486 7.10 1.7642 -- -- -- 4356
computers 487 7.10 1.2817 3587 -- 1956 --
confident 488 7.10 1.1824 3827 -- 3399 --
cookie 489 7.10 1.2976 2560 -- -- 3900
cutie 490 7.10 1.3132 4744 -- -- --
dearest 491 7.10 1.2817 -- -- 4358 --
dream 492 7.10 1.9614 409 2076 2500 215
freely 493 7.10 1.3740 -- 3493 -- --
fridays 494 7.10 1.4604 4899 -- 2747 --
plants 495 7.10 1.2976 4973 1392 1847 --
quality 496 7.10 1.4178 866 764 1409 --
rabbit 497 7.10 1.2164 3115 -- -- 4413
resort 498 7.10 1.4463 4049 -- 3854 --
shopping 499 7.10 1.5419 604 -- 2551 3672
sincere 500 7.10 1.0351 -- -- 3579 4635
snack 501 7.10 1.5682 4083 -- -- --
stars 502 7.10 1.5419 1190 2781 1883 455
toys 503 7.10 1.6568 2579 -- -- 2583
useful 504 7.10 1.1995 1445 1028 4019 --
wise 505 7.10 1.2657 1869 2254 3257 1515
yum 506 7.10 1.4880 1603 -- -- --
desirable 507 7.08 1.6563 -- 2901 -- --
sparkle 508 7.08 1.6181 -- -- -- 4859
bless 509 7.08 1.9675 967 -- -- 1545
comic 510 7.08 1.5628 2518 -- 4204 --
cooking 511 7.08 1.2911 1447 -- 4167 --
dancing 512 7.08 1.6142 1331 4652 2865 744
earned 513 7.08 1.1753 3855 -- 1758 --
equality 514 7.08 1.8277 -- 3316 -- --
faith 515 7.08 1.4405 1873 838 2399 654
graduate 516 7.08 1.2428 3304 4184 710 --
improvements 517 7.08 1.4119 -- 4076 -- --
memories 518 7.08 1.1925 1591 4354 2481 762
park 519 7.08 1.3529 802 1909 262 1264
pet 520 7.08 1.7004 1132 -- -- 4364
powerful 521 7.08 1.5365 1641 1391 1789 4452
princess 522 7.08 1.5758 2507 4690 -- 3282
qualities 523 7.08 1.1578 -- 2420 -- --
thrill 524 7.08 1.5628 -- -- -- 1530
true 525 7.08 1.1036 415 315 1069 202
wonder 526 7.08 1.3068 344 2309 2665 409
everlasting 527 7.06 1.3906 -- -- -- 2924
mamma 528 7.06 1.7006 -- -- -- 2973
caress 529 7.06 1.7192 -- -- -- 3091
charm 530 7.06 1.4201 3763 -- 4977 2765
clever 531 7.06 1.3463 4316 -- -- 3151
father 532 7.06 1.7427 1203 375 139 747
grand 533 7.06 1.3614 1685 1709 944 1575
hehehe 534 7.06 1.6587 2791 -- -- --
idea 535 7.06 1.2843 269 499 915 2144
pearl 536 7.06 1.4201 4078 -- 3995 3892
pictures 537 7.06 1.3157 1065 2328 1770 1540
restaurant 538 7.06 1.2521 1041 -- 1044 --
sandwich 539 7.06 1.3763 2463 -- -- --
sharing 540 7.06 1.2843 1885 4124 4554 3518
strong 541 7.06 1.5174 740 529 722 401
talent 542 7.06 0.9775 1306 4877 3034 --
talented 543 7.06 1.5308 3256 -- 4996 --
tenderness 544 7.06 1.2683 -- -- -- 3698
weddings 545 7.06 1.6587 -- -- 504 --
dove 546 7.04 1.4428 -- -- -- 2276
awsome 547 7.04 1.7952 4880 -- -- --
cherry 548 7.04 1.4563 3311 -- -- 2587
daughter 549 7.04 1.8066 1258 1265 272 1698
eat 550 7.04 1.4563 228 2093 2972 639
favorite 551 7.04 1.6532 501 4519 2048 1495
girlfriend 552 7.04 1.6283 2260 -- -- 1695
hoping 553 7.04 1.1421 906 -- 2905 1203
impressive 554 7.04 1.0294 4271 -- 4363 --
loyalty 555 7.04 1.7723 -- 4526 -- --
parent 556 7.04 1.2930 4646 2581 2209 --
relationship 557 7.04 1.2930 1990 691 1430 4256
safe 558 7.04 1.6157 579 2024 2119 873
scholarship 559 7.04 1.6532 -- -- 2975 --
shining 560 7.04 1.7608 3585 -- -- 837
sunrise 561 7.04 1.7952 3659 -- -- 2605
yoga 562 7.04 1.5903 2695 -- -- --
respects 563 7.02 1.6176 -- 3820 -- --
fairy 564 7.02 1.4789 -- -- -- 3337
humanity 565 7.02 1.6265 -- 3146 -- 4154
productivity 566 7.02 1.3148 -- 3778 -- --
brave 567 7.02 1.2856 2714 4617 -- 1741
colours 568 7.02 1.3775 -- -- -- 2974
correct 569 7.02 1.4913 2937 1486 3134 4564
dad 570 7.02 2.1236 672 -- 4297 1429
daddy 571 7.02 1.7201 1767 -- -- 573
dollar 572 7.02 1.5185 1162 4001 1281 1229
easily 573 7.02 1.6349 2438 948 2270 2155
fans 574 7.02 1.2534 709 -- 1794 2906
goal 575 7.02 1.2204 1726 1964 1139 3122
hawaii 576 7.02 1.6841 2994 -- -- --
honestly 577 7.02 1.5713 2091 -- -- 4321
inspiration 578 7.02 1.4497 2692 4622 3379 3205
olympics 579 7.02 1.3476 2500 -- 2083 --
saints 580 7.02 1.7201 1700 4749 -- 3778
sleeping 581 7.02 1.6720 958 4686 -- 1023
wisdom 582 7.02 1.5583 3025 2168 2824 2050
believed 583 7.00 1.2778 -- 1256 1462 1884
better 584 7.00 1.2778 142 306 359 147
color 585 7.00 1.3702 789 1315 2204 1347
colors 586 7.00 1.7496 3047 4062 4050 1744
dad's 587 7.00 1.3851 -- -- -- --
determination 588 7.00 1.4142 -- 2086 -- --
discovered 589 7.00 1.2454 2262 1604 2593 --
gentlemen 590 7.00 1.4289 -- 3472 -- 3049
girl 591 7.00 1.1606 127 1130 1923 101
harmony 592 7.00 1.4434 -- 3714 -- 2685
hello 593 7.00 1.5119 681 -- -- 798
hopes 594 7.00 1.5518 2723 3248 1829 1909
noble 595 7.00 1.6036 -- 2375 -- --
praised 596 7.00 1.3851 -- -- 4285 --
reliable 597 7.00 1.4846 -- 4231 -- --
trip 598 7.00 1.5518 677 3013 1596 1043
agreed 599 6.98 1.3013 2440 1512 735 --
approval 600 6.98 1.2036 -- 3524 1835 --
brothers 601 6.98 1.4497 1493 2410 716 1115
concerts 602 6.98 1.5451 -- -- 3270 --
cooperation 603 6.98 1.3775 -- 2824 3280 --
encouraged 604 6.98 1.2370 -- 3073 4055 --
giving 605 6.98 1.1516 640 973 1214 761
goals 606 6.98 1.2036 3003 2284 1866 --
ideal 607 6.98 1.7082 -- 1761 4874 --
intellectual 608 6.98 1.2856 -- 1652 4126 --
invitation 609 6.98 1.3323 -- -- -- 4781
marry 610 6.98 1.8680 2964 3751 -- 2527
musician 611 6.98 1.2370 -- -- 4916 --
outdoors 612 6.98 1.6962 -- -- 4411 --
photography 613 6.98 1.4913 2754 -- 1677 --
plenty 614 6.98 1.2204 2473 4041 3305 1836
rome 615 6.98 1.4213 -- 1612 3750 4446
trees 616 6.98 1.5971 2580 1296 2743 937
trips 617 6.98 1.3169 -- -- 3985 4319
unique 618 6.98 1.4356 2825 2278 3782 --
wildlife 619 6.98 1.6841 -- -- 4215 --
lullaby 620 6.98 1.9310 -- -- -- 3215
thrills 621 6.98 1.3306 -- -- -- 4535
abroad 622 6.96 1.2282 -- 2864 2404 --
bath 623 6.96 1.2610 1219 4096 -- 3628
benefit 624 6.96 1.3087 3195 1541 1039 --
birds 625 6.96 1.4280 2872 2277 4442 1268
dads 626 6.96 1.4702 4402 -- -- --
elegant 627 6.96 1.9268 -- -- 4481 --
eternally 628 6.96 1.7138 -- -- -- 3459
fair 629 6.96 1.2610 1229 1348 1274 1165
fancy 630 6.96 1.3696 2643 4192 -- 2349
great-grandfather 631 6.96 1.7257 -- -- -- --
imagination 632 6.96 1.3547 -- 2389 4945 2388
improving 633 6.96 0.8797 -- 4723 4506 --
mountains 634 6.96 1.1945 4720 1960 -- 1563
ocean 635 6.96 1.7138 1989 2566 2765 905
pancakes 636 6.96 1.2115 1973 -- -- --
photograph 637 6.96 1.5644 -- -- 3626 3718
praying 638 6.96 1.7492 2135 -- -- 2023
present 639 6.96 1.2771 955 191 1099 2700
reunion 640 6.96 1.6283 2556 -- -- --
safely 641 6.96 1.4563 4647 -- -- --
saving 642 6.96 1.2610 2376 3825 4611 2619
singing 643 6.96 1.7019 1042 3689 3079 731
songs 644 6.96 1.8731 751 3261 1519 863
sunny 645 6.96 2.0894 1596 -- -- 1851
terrific 646 6.96 2.0796 -- -- -- --
theater 647 6.96 1.5513 2581 4729 246 --
vanilla 648 6.96 1.3395 3969 -- -- --
adore 649 6.96 1.8592 -- -- -- 1846
gentleman 650 6.96 1.7254 -- 2801 -- --
autumn 651 6.94 1.5039 4537 4471 -- 2850
cinema 652 6.94 1.5960 3728 -- -- --
college 653 6.94 1.4201 853 684 158 3431
concert 654 6.94 1.2022 1118 -- 1271 --
correctly 655 6.94 1.3311 -- 4820 -- --
cozy 656 6.94 1.4626 4734 -- -- --
dear 657 6.94 1.5440 596 1454 579 651
earning 658 6.94 1.5308 -- -- 4951 --
earns 659 6.94 1.0956 -- -- 1905 --
gardening 660 6.94 1.2683 -- -- 3624 --
girls 661 6.94 1.4626 419 1472 2378 389
massage 662 6.94 1.6587 3123 -- -- --
outdoor 663 6.94 1.2357 -- -- 4278 --
photos 664 6.94 1.1678 954 -- -- --
piano 665 6.94 1.2683 2941 -- 2197 3141
sea 666 6.94 1.2843 1653 588 1777 502
trusted 667 6.94 1.5331 -- -- -- 4093
albums 668 6.92 1.3223 4149 -- -- --
dignity 669 6.92 1.1753 -- 3521 4347 4779
favored 670 6.92 1.3529 -- -- 4467 --
fitness 671 6.92 1.7478 2647 -- -- --
game 672 6.92 1.6015 115 1514 306 292
healing 673 6.92 1.3974 4556 4569 -- 2739
learned 674 6.92 1.5232 1655 1146 1643 897
learning 675 6.92 1.3529 1377 799 2445 2185
prayers 676 6.92 1.8499 2358 4624 -- 2465
promote 677 6.92 1.0660 3366 3231 3390 --
secure 678 6.92 1.2911 3497 2019 4137 --
spa 679 6.92 1.4824 4286 -- -- --
unity 680 6.92 1.7478 -- 2042 -- 4957
wish 681 6.92 1.4961 141 1092 1880 293
youtube 682 6.92 1.5097 522 -- -- --
favour 683 6.92 1.5253 -- 2681 -- --
clean 684 6.90 1.8979 805 2441 2184 845
dynamic 685 6.90 1.3132 -- 2947 -- --
encourage 686 6.90 1.6812 -- 3447 3025 --
infant 687 6.90 1.7642 -- 3222 -- --
jewelry 688 6.90 1.5017 3454 -- 4747 --
necklace 689 6.90 1.1650 4445 -- -- --
paintings 690 6.90 1.5940 -- -- 2068 --
stability 691 6.90 1.4880 -- 2772 -- --
voyage 692 6.90 1.3286 -- 4256 -- --
worthy 693 6.90 1.6812 -- 2857 -- 3664
fulfill 694 6.90 1.3423 -- -- -- 4721
eternity 695 6.90 1.9596 -- -- -- 1755
accuracy 696 6.88 1.1718 -- 3405 -- --
bookstores 697 6.88 1.4518 -- -- 2180 --
breeze 698 6.88 1.3346 4464 -- -- 1360
bunny 699 6.88 1.7916 2416 -- -- --
cheese 700 6.88 1.4377 1088 -- 4972 2119
comics 701 6.88 1.3498 4821 -- -- --
donated 702 6.88 1.2395 4633 -- -- --
easter 703 6.88 1.6980 1683 -- -- --
education 704 6.88 1.6117 1210 337 466 4501
email 705 6.88 1.3192 714 -- -- --
farmer 706 6.88 1.6243 -- 4030 -- --
female 707 6.88 1.2720 1839 1250 2781 3266
flavor 708 6.88 1.2229 -- -- -- 3203
friday 709 6.88 1.6860 371 -- 190 1719
moms 710 6.88 1.7687 2055 -- -- 3111
photo 711 6.88 1.3944 840 -- 4597 --
pillow 712 6.88 1.2229 2716 -- -- 2252
pure 713 6.88 1.3498 2275 1475 4895 1279
saved 714 6.88 1.5070 2291 3041 4157 1418
shakespeare 715 6.88 1.7802 -- 4262 -- --
survived 716 6.88 1.4797 4911 -- 143 4680
taste 717 6.88 1.2720 861 2256 2916 667
valued 718 6.88 1.1183 -- -- 4287 --
vitamin 719 6.88 1.3797 -- 4891 -- --
infants 720 6.88 1.6283 -- 4162 -- --
silk 721 6.88 1.4525 -- 4432 -- 4317
dreamed 722 6.87 1.3922 -- -- -- 1620
#music 723 6.86 1.8953 -- -- -- --
acceptance 724 6.86 1.2779 -- 2923 -- --
banana 725 6.86 1.2938 3130 -- -- 4566
breakfast 726 6.86 1.1430 733 4293 4367 3142
cooperative 727 6.86 1.3999 -- 4780 -- --
dancer 728 6.86 1.5388 4387 -- 4444 3004
grace 729 6.86 1.5254 2936 1919 1851 1074
greatly 730 6.86 1.3403 -- 1686 2066 --
guarantee 731 6.86 1.3095 -- 4700 3940 3412
improved 732 6.86 1.3554 -- 2318 2878 --
improvement 733 6.86 1.2618 -- 2027 3541 --
independent 734 6.86 1.8071 4258 980 1166 4531
liking 735 6.86 0.8809 3424 -- -- --
paris 736 6.86 1.6661 1997 956 1363 2895
pasta 737 6.86 1.4144 2052 -- -- --
photographs 738 6.86 1.4984 -- -- 2105 --
recipes 739 6.86 1.3095 3829 -- -- --
relationships 740 6.86 1.1250 3725 1502 4448 --
relief 741 6.86 1.6037 2319 1868 2091 3699
sailing 742 6.86 1.4848 -- -- -- 2582
science 743 6.86 1.5780 1561 522 685 3530
seas 744 6.86 1.6289 -- -- -- 2081
toast 745 6.86 1.4144 2957 -- -- 2473
truly 746 6.86 0.9691 1491 2145 2289 1649
platinum 747 6.86 1.8484 -- -- -- 2218
superstar 748 6.86 1.9685 -- -- -- 3214
understands 749 6.86 1.2076 -- -- -- 3366
accurately 750 6.84 1.4619 -- 4841 -- --
advantage 751 6.84 1.2835 2377 1295 2190 4780
belonging 752 6.84 1.2993 -- 3321 -- --
buddy 753 6.84 1.0568 1962 -- -- 2552
childhood 754 6.84 1.8556 4236 2817 3976 3773
daylight 755 6.84 1.4049 4943 -- -- 2255
discover 756 6.84 1.4049 3053 3090 -- 2848
forgiveness 757 6.84 1.9832 -- -- -- 3041
great-grandmother 758 6.84 1.8223 -- -- -- --
hopefully 759 6.84 1.5167 804 -- -- --
horses 760 6.84 1.4758 -- 2103 4975 2658
interested 761 6.84 1.0947 1440 1645 1840 --
kid 762 6.84 1.4758 732 -- 4164 693
live 763 6.84 1.5167 187 653 533 155
lol 764 6.84 1.7884 42 -- -- --
movie 765 6.84 1.9832 158 -- 1082 1452
popularity 766 6.84 1.5696 -- -- 4766 --
solution 767 6.84 1.3756 3088 722 2492 3291
swim 768 6.84 1.2993 3319 -- -- 1791
toy 769 6.84 2.0340 1318 -- -- 2483
understanding 770 6.84 1.1669 3988 786 2599 2679
universe 771 6.84 1.2835 2870 2597 -- 2080
woman 772 6.84 1.6458 454 473 575 359
woohoo 773 6.84 2.0440 2788 -- -- --
rivers 774 6.84 1.5322 -- 3306 -- 2537
sail 775 6.84 1.5592 -- -- -- 1368
cared 776 6.83 1.2738 -- -- -- 2229
active 777 6.82 1.7692 3815 941 1504 --
artists 778 6.82 1.4241 2763 3507 1356 --
babe 779 6.82 1.2728 1582 -- -- 561
believes 780 6.82 1.1899 -- 4318 2859 3615
born 781 6.82 1.6499 1613 785 656 474
champagne 782 6.82 1.7460 4435 -- -- 2724
compassion 783 6.82 1.9026 -- -- 4599 --
completed 784 6.82 1.3656 3342 1978 1375 --
create 785 6.82 1.1008 1332 1286 1196 2644
dedicated 786 6.82 1.3200 4526 4531 2178 3955
experienced 787 6.82 1.1726 -- 2057 3829 --
fathers 788 6.82 1.8260 -- 3332 -- 4230
first 789 6.82 1.4803 133 73 74 256
gains 790 6.82 1.4803 -- 4440 1244 --
heal 791 6.82 1.4525 3950 -- -- 1480
new 792 6.82 1.1373 41 66 25 168
significant 793 6.82 1.0821 -- 789 1606 --
singer 794 6.82 1.4525 2728 -- 1627 3172
surprisingly 795 6.82 1.3200 4564 -- -- --
young 796 6.82 1.2403 464 280 371 350
mansion 797 6.82 1.6288 -- -- -- 4390
prevail 798 6.82 1.7281 -- -- -- 4979
qualified 799 6.81 1.5664 -- 4372 -- --
air 800 6.80 1.6537 378 395 555 458
amazon 801 6.80 1.5386 1934 -- -- --
animal 802 6.80 1.8516 1982 1281 3132 2133
bedroom 803 6.80 1.4428 2680 -- -- 2231
camera 804 6.80 1.2936 1313 4455 3355 3158
cream 805 6.80 1.2936 1076 -- 4085 1576
dreamer 806 6.80 1.4983 -- -- -- 3319
forgiven 807 6.80 1.5253 -- -- -- 4402
highest 808 6.80 1.7613 4503 1482 2072 3033
horse 809 6.80 1.5119 1544 1473 1225 1735
magic 810 6.80 1.7613 1560 3857 3117 777
manners 811 6.80 1.2454 -- 4339 -- --
naturally 812 6.80 1.6036 -- 1888 -- 4758
novels 813 6.80 1.6903 -- 4411 3894 --
performers 814 6.80 1.2617 -- -- 3596 --
pies 815 6.80 1.3702 -- -- -- 4188
protect 816 6.80 1.4142 3269 2253 1650 2079
santa 817 6.80 1.7728 1124 4094 1806 1454
shared 818 6.80 1.3401 4034 2237 2516 1980
smooth 819 6.80 1.1780 2357 3084 -- 1731
together 820 6.80 1.5908 609 349 723 264
uncle 821 6.80 1.5649 2742 3058 1670 2295
efficient 822 6.80 1.5135 -- 2690 -- --
elevated 823 6.80 1.1899 -- 4439 -- --
cafe 824 6.78 1.4469 1920 -- 3449 4289
coke 825 6.78 1.6199 2930 -- -- 1885
completion 826 6.78 1.3445 -- 4666 -- --
coolest 827 6.78 1.8103 3786 -- -- --
creation 828 6.78 1.4039 -- 1706 3644 2786
dogs 829 6.78 1.8215 1230 3480 3684 1363
effectiveness 830 6.78 1.2664 -- 3757 -- --
esteemed 831 6.78 1.4039 -- -- 2251 --
finished 832 6.78 1.4184 536 2127 1325 2940
glee 833 6.78 1.8658 2903 -- -- --
green 834 6.78 1.6938 376 1013 932 670
heartbeat 835 6.78 1.7058 -- -- -- 2396
island 836 6.78 1.5425 1527 1063 320 1808
jukebox 837 6.78 1.5817 -- -- -- 4447
medal 838 6.78 1.4327 4209 -- 3505 --
mom's 839 6.78 1.6199 -- -- -- --
museums 840 6.78 1.7177 -- -- 4234 --
painting 841 6.78 1.1657 2611 2830 2403 4705
pie 842 6.78 1.7177 1031 -- -- 1943
pool 843 6.78 1.4609 1961 4091 2757 2244
reading 844 6.78 1.4609 473 772 1529 3495
real 845 6.78 1.2002 234 410 357 177
ruby 846 6.78 1.2664 -- -- -- 3478
share 847 6.78 1.4039 850 1093 141 724
sons 848 6.78 1.6199 -- 1943 636 2600
traveling 849 6.78 1.6695 4012 -- 3692 4131
variety 850 6.78 1.3138 -- 1154 2245 --
wonders 851 6.78 1.8876 3128 -- -- 3462
worth 852 6.78 1.3445 662 1352 862 656
guaranteed 853 6.78 1.1773 -- -- -- 3688
raindrops 854 6.78 1.4181 -- -- -- 4708
visions 855 6.78 1.3733 -- -- -- 2224
pearls 856 6.77 1.7041 -- -- -- 3681
america 857 6.76 1.5194 1090 576 471 1571
easy 858 6.76 1.5980 381 1040 1424 395
effective 859 6.76 1.2867 3575 882 1425 --
future 860 6.76 1.4223 811 494 572 719
humans 861 6.76 1.4507 4693 4109 -- --
intimate 862 6.76 1.3024 -- 4212 -- --
married 863 6.76 1.8468 1698 1178 1002 1945
muffin 864 6.76 1.2382 4199 -- -- --
papa 865 6.76 1.9332 4155 -- -- 2127
plus 866 6.76 1.4923 835 2392 1603 901
popcorn 867 6.76 1.8245 3771 -- -- --
savior 868 6.76 1.6233 -- -- -- 2900
seasons 869 6.76 1.2216 4390 -- 2698 2447
shop 870 6.76 1.0412 858 2905 2146 1965
sister 871 6.76 1.6483 894 1775 302 1003
style 872 6.76 1.6233 1194 1068 1148 679
supporter 873 6.76 1.2216 -- -- 3485 --
switzerland 874 6.76 1.5059 -- -- 3822 --
tenderly 875 6.76 1.6233 -- -- -- 4748
top 876 6.76 1.5194 379 805 606 475
oxygen 877 6.76 1.4220 -- 2378 -- --
rhyme 878 6.76 1.1995 -- -- -- 858
allright 879 6.74 1.5624 -- -- -- 4282
american 880 6.74 1.5228 564 188 83 1607
artist 881 6.74 1.4401 1480 2972 1369 4613
capable 882 6.74 1.6759 -- 1782 4359 --
complete 883 6.74 1.2423 1242 638 1615 1657
convenient 884 6.74 1.2257 -- 3640 -- --
courtesy 885 6.74 1.0844 4634 4164 -- --
donate 886 6.74 1.3372 2199 -- -- --
drinks 887 6.74 1.4259 1614 -- -- 2508
father's 888 6.74 1.3822 -- 2762 -- --
fine 889 6.74 1.3674 735 851 1093 406
focused 890 6.74 1.1395 4448 3800 3106 --
guitars 891 6.74 1.3969 -- -- -- 4588
hi 892 6.74 1.0654 534 3701 -- 1842
integrity 893 6.74 1.5093 -- 4299 3176 --
justice 894 6.74 1.9568 1884 895 609 2643
lake 895 6.74 1.6759 1240 1564 1407 2261
mankind 896 6.74 1.6011 -- 3265 -- 3295
mentor 897 6.74 1.1214 -- -- 4576 --
merit 898 6.74 1.2090 -- 3989 -- --
performance 899 6.74 1.3372 1635 820 700 --
plant 900 6.74 1.3524 2023 1131 1149 3245
prepared 901 6.74 1.0654 3698 1123 1897 2599
raise 902 6.74 1.2090 2121 2293 1229 1048
romeo 903 6.74 1.7120 -- -- -- 3005
shiny 904 6.74 1.2257 4723 -- -- 2970
sugar 905 6.74 1.9358 1152 2246 3564 1055
surprising 906 6.74 1.2906 -- 3762 4537 --
technology 907 6.74 1.4957 1773 1228 553 --
treat 908 6.74 1.7120 1326 2925 3487 841
university 909 6.74 1.3822 2245 247 92 --
wishing 910 6.74 1.0461 1471 -- -- 1497
yes 911 6.74 1.4542 207 896 1909 235
desires 912 6.73 1.4688 -- 3690 -- 3329
wished 913 6.73 1.4109 -- 2673 -- 3243
4-bedroom 914 6.72 1.4988 -- -- -- --
attract 915 6.72 1.1436 -- -- 4042 --
bike 916 6.72 1.3856 1478 -- -- 4354
car 917 6.72 2.1000 208 1336 764 481
civilization 918 6.72 1.3099 -- 3004 -- --
classy 919 6.72 1.0309 -- -- -- --
confirmed 920 6.72 1.2296 4011 3152 3058 --
costumes 921 6.72 1.1256 -- -- 3372 --
creating 922 6.72 1.1613 2701 2629 2441 --
culture 923 6.72 1.8075 2985 642 1284 3784
finish 924 6.72 1.4148 830 4337 2355 2324
gallery 925 6.72 1.2784 3250 4979 1342 --
knowing 926 6.72 1.3559 1966 2123 3552 985
lifelong 927 6.72 1.4434 -- -- 4413 --
momma 928 6.72 1.7384 3735 -- -- 1197
neat 929 6.72 1.4434 3979 -- -- --
niece 930 6.72 1.3559 4434 -- 4070 --
online 931 6.72 1.2784 321 -- 1812 --
orchestra 932 6.72 1.3708 3590 -- 1653 --
plays 933 6.72 1.5784 2157 2202 1478 1796
revenue 934 6.72 1.5258 -- 2641 911 --
shower 935 6.72 1.5124 809 -- -- 2740
spiritual 936 6.72 1.9487 -- 1347 4679 3968
surprised 937 6.72 1.3559 1169 3356 3097 2677
tremendous 938 6.72 1.5913 -- -- 4219 --
values 939 6.72 1.5654 -- 583 2534 --
villages 940 6.72 1.3708 -- 3089 -- --
warm 941 6.72 1.7961 815 2095 2553 702
doggy 942 6.71 2.1794 -- -- -- 3981
hallelujah 943 6.71 1.9896 -- -- -- 2347
candle 944 6.71 1.5704 -- -- -- 2033
secured 945 6.71 1.1478 -- 3422 -- --
valid 946 6.71 1.4434 -- 3404 -- --
agree 947 6.70 1.1824 799 2070 1854 2384
anniversary 948 6.70 1.8434 2174 -- 2682 --
antiques 949 6.70 1.3740 -- -- 3928 --
believe 950 6.70 1.5940 420 539 638 156
bucks 951 6.70 1.6812 2975 -- -- 3472
cruise 952 6.70 1.9614 3290 -- 4514 2798
dancers 953 6.70 1.6067 -- -- 3068 --
dine 954 6.70 1.4033 -- -- -- 4951
dog 955 6.70 1.8434 343 2305 2578 596
florida 956 6.70 1.6568 1658 4308 859 --
grandsons 957 6.70 1.9086 -- -- 4595 --
grants 958 6.70 1.2495 -- 4733 3912 --
hired 959 6.70 1.4880 -- -- 2663 --
learn 960 6.70 1.4178 385 1175 1651 551
marriage 961 6.70 2.2700 2444 1050 1246 --
mum 962 6.70 1.7525 1833 -- -- --
partner 963 6.70 1.2495 3006 3485 889 3371
productive 964 6.70 1.1294 2150 3737 -- --
rockin 965 6.70 1.7525 4502 -- -- 2602
teaches 966 6.70 1.0926 -- -- 2248 --
treats 967 6.70 1.5682 4886 -- -- 4892
tv 968 6.70 1.5017 355 4174 1160 856
water 969 6.70 1.2164 407 177 713 487
grin 970 6.69 1.7465 -- -- -- 2938
invention 971 6.69 1.3103 -- 4708 -- --
virtues 972 6.69 1.4318 -- 4675 -- --
brains 973 6.69 1.4754 -- -- -- 1989
sensation 974 6.68 1.4004 -- 4614 -- 3107
ability 975 6.68 0.9988 3332 1023 1620 --
ace 976 6.68 1.6835 2475 -- 4915 4136
animals 977 6.68 2.0247 2654 1097 2677 3445
bake 978 6.68 1.4061 2789 -- -- --
bridegroom 979 6.68 1.4205 -- -- 1239 --
desire 980 6.68 1.3619 2452 976 3053 921
famous 981 6.68 2.0045 1059 1733 2625 2382
forest 982 6.68 1.5706 3909 1739 1468 2546
fountain 983 6.68 1.2848 -- -- -- 4295
goodmorning 984 6.68 1.9213 4471 -- -- --
greater 985 6.68 1.3161 3772 456 1414 3439
grow 986 6.68 1.2196 1451 1949 2191 621
heritage 987 6.68 1.3468 -- -- 3959 --
landscape 988 6.68 1.1683 -- 3645 3658 --
liberties 989 6.68 1.7076 -- -- 4434 --
living 990 6.68 1.2196 720 514 755 336
lyrics 991 6.68 1.5576 2156 -- 4534 1291
mercy 992 6.68 1.7664 -- 3765 -- 1162
museum 993 6.68 1.4630 1844 2295 418 --
novel 994 6.68 1.4630 3639 1837 827 --
palace 995 6.68 1.6468 4320 2851 4744 4831
pianist 996 6.68 1.4061 -- -- 2612 --