enemy7 commited on
Commit
5c052bb
·
1 Parent(s): 56f3d02

Upload 12 files

Browse files
Untitled-2.py ADDED
@@ -0,0 +1,613 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # %%
2
+ import numpy as np
3
+ import pandas as pd
4
+
5
+
6
+ import tensorflow as tf
7
+ import tensorflow_hub as hub
8
+
9
+ import nltk
10
+ from nltk.corpus import stopwords
11
+
12
+ nltk.download('stopwords')
13
+ nltk.download('wordnet')
14
+
15
+ import emoji
16
+ import re
17
+ from sklearn.pipeline import Pipeline
18
+
19
+ from sklearn.model_selection import train_test_split
20
+
21
+ import datetime
22
+
23
+ # %%
24
+ MAX_LENGTH = 50
25
+ MAX_CURRENCY_FLAG = 2
26
+ MAX_SPAM_WORDS = 1
27
+ MAX_EMOJI = 2
28
+ MAX_CONATANS = 1
29
+ MAX_EMAIL= 1
30
+ MAX_PHONE = 1
31
+
32
+ # %%
33
+ df1 = pd.read_csv("./datasets/sms.csv",delimiter=',')
34
+ df2 = pd.read_csv("datasets/yt.csv",delimiter=',')
35
+ df3 = pd.read_csv("datasets/my-collection.csv",delimiter=',')
36
+ df4 = pd.read_csv("datasets/spam-word.csv",delimiter=',')
37
+ df5 = pd.read_csv("datasets/emoji.csv",delimiter=',')
38
+
39
+
40
+ df = pd.concat([df1,df2,df3,df4,df5],ignore_index=True)
41
+
42
+ # %%
43
+ class ConvertData:
44
+ def fit(self, x, y=None):
45
+ return self
46
+
47
+ def transform(self, df):
48
+ df = df.drop_duplicates()
49
+ df = df.dropna()
50
+ df["Spam"] = df["Spam"].astype(bool)
51
+ df["Comment"] = df["Comment"].astype(str)
52
+ return df
53
+
54
+
55
+ class RemoveStopWordsPunctuation:
56
+ def fit(self, x, y=None):
57
+ return self
58
+
59
+ def __remove_punctuation_stopwords(self, text):
60
+ pattern = re.compile("[{}]".format(re.escape("!\"#&'()*,-/:;<=>?[\\]^_`{|}~")))
61
+ text = " ".join(
62
+ [
63
+ word.strip()
64
+ for word in pattern.sub(" ", text.lower()).split()
65
+ if word not in set(stopwords.words("english"))
66
+ ]
67
+ )
68
+ return text
69
+
70
+ def transform(self, df):
71
+ df["Comment"] = df["Comment"].apply(self.__remove_punctuation_stopwords)
72
+ return df
73
+
74
+
75
+ class AddLengthFlag:
76
+ def fit(self, x, y=None):
77
+ return self
78
+
79
+ def transform(self, X):
80
+ X["length"] = X["Comment"].str.len().astype(np.float32) / MAX_LENGTH
81
+ return X
82
+
83
+
84
+ class AddCurrencyFlag:
85
+ def __init__(self) -> None:
86
+ self.currency_symbols = ["₤", "₨", "€", "₹", "₿", "$"]
87
+ self.pattern = "([\$₤₨€₹₿]+ *[0-9]* *[\.,]?[0-9]*)|([0-9]* *[\.,]?[0-9]* *[\$₤₨€₹₿]+)"
88
+
89
+ def fit(self, x, y=None):
90
+ return self
91
+
92
+ def __add_currency_count(self, text):
93
+ return len(re.findall(self.pattern, text)) / MAX_CURRENCY_FLAG
94
+
95
+ # def __add_currency_count(self,text):
96
+ # return sum(text.count(symbol) for symbol in self.currency_symbols )
97
+
98
+ def transform(self, df):
99
+ df["currency"] = df["Comment"].apply(self.__add_currency_count).astype(np.float32)
100
+ return df
101
+
102
+
103
+ class AddSpamWordsFlag:
104
+ def __init__(self) -> None:
105
+ self.spam_words = [
106
+ "urgent",
107
+ "exclusive",
108
+ "limited time",
109
+ "free",
110
+ "guaranteed",
111
+ "act now",
112
+ "discount",
113
+ "special offer",
114
+ "prize",
115
+ "instant",
116
+ "cash",
117
+ "save",
118
+ "win",
119
+ "best",
120
+ "secret",
121
+ "incredible",
122
+ "congratulations",
123
+ "approved",
124
+ "risk free",
125
+ "hidden",
126
+ "bonus",
127
+ "sale",
128
+ "amazing",
129
+ "extra cash",
130
+ "opportunity",
131
+ "easy",
132
+ "double your",
133
+ "best price",
134
+ "cash back",
135
+ "deal",
136
+ "earn",
137
+ "money",
138
+ "no obligation",
139
+ "profit",
140
+ "results",
141
+ "exciting",
142
+ "unbelievable",
143
+ "jackpot",
144
+ "fantastic",
145
+ "instant access",
146
+ "million dollars",
147
+ "discounted",
148
+ "last chance",
149
+ "exclusive offer",
150
+ "big savings",
151
+ "limited offer",
152
+ "free trial",
153
+ "special promotion",
154
+ "secret revealed",
155
+ "valuable",
156
+ "money-back guarantee",
157
+ "lowest price",
158
+ "save money",
159
+ "make money",
160
+ "no risk",
161
+ "exclusive deal",
162
+ "limited supply",
163
+ "huge",
164
+ "incredible offer",
165
+ "prize winner",
166
+ "earn extra income",
167
+ "limited spots",
168
+ "new offer",
169
+ "best deal",
170
+ "don't miss out",
171
+ "great savings",
172
+ "top offer",
173
+ "double your income",
174
+ "discount code",
175
+ "fast cash",
176
+ "top-rated",
177
+ "best value",
178
+ "no cost",
179
+ "elite",
180
+ "act fast",
181
+ "unbeatable",
182
+ "cash prize",
183
+ "limited availability",
184
+ "special discount",
185
+ "quick cash",
186
+ "no catch",
187
+ "instant approval",
188
+ "big discount",
189
+ "easy money",
190
+ "insider",
191
+ "invitation",
192
+ "free shipping",
193
+ "huge discount",
194
+ "extra income",
195
+ "secret formula",
196
+ "no strings attached",
197
+ "money-making",
198
+ "dream come true",
199
+ "massive",
200
+ "free gift",
201
+ "incredible opportunity",
202
+ "risk-free trial",
203
+ "instant money",
204
+ "special price",
205
+ "no purchase necessary",
206
+ "now",
207
+ ]
208
+
209
+ def fit(self, x, y=None):
210
+ return self
211
+
212
+ def __add_currency_count(self, text):
213
+ return float(sum(text.count(symbol) for symbol in self.spam_words) / MAX_SPAM_WORDS)
214
+
215
+ def transform(self, df):
216
+ df["spam_word"] = df["Comment"].apply(self.__add_currency_count).astype(np.float32)
217
+ return df
218
+
219
+
220
+ class AddEmojiFlag:
221
+ def __init__(self) -> None:
222
+ self.emoji_symbols = "[💭|🔝|🆗|🎉|🎊|📯|🙌|😂|💸|👉|📢|🚀|💲|💣|🔱|💼|🆙|⏳|✨|💌|💎|🆕|🔞|💡|💰|👑|⭐|🌟|🎤|⚡|📈|💵|🏆|💪|🔓|🆓|🎰|⌚|🚨|💢|📮|🔥|🎈|🎥|🔔|💯|🎶|🔗|🎁|📚|🔊|👍|👏|📱|📝|🤑|🏅|🔒|📣|💥]"
223
+
224
+ def fit(self, x, y=None):
225
+ return self
226
+
227
+ def __add_currency_count(self, text):
228
+ return float(len(re.findall(self.emoji_symbols, text)) / MAX_EMOJI)
229
+
230
+ def transform(self, df):
231
+ df["emoji"] = df["Comment"].apply(self.__add_currency_count).astype(np.float32)
232
+ return df
233
+
234
+
235
+ class AddContainFlag:
236
+ def fit(self, x, y=None):
237
+ return self
238
+
239
+ def __add_first_count(self, text):
240
+ pattern = "[0-9]*%|T&C"
241
+ return len(re.findall(pattern, text))
242
+
243
+ def __add_second_count(self, text):
244
+ pattern = "(https:\/\/www\.|http:\/\/www\.|https:\/\/|http:\/\/)?[a-zA-Z0-9]{2,}(\.[a-zA-Z0-9]{2,})(\.[a-zA-Z0-9]{2,})?"
245
+ return len(re.findall(pattern, text))
246
+
247
+ def transform(self, df):
248
+ df["contain"] = df["Comment"].apply(self.__add_first_count)
249
+ df["contain"] = df["contain"] + df["Comment"].apply(self.__add_second_count)
250
+ df['contain'] = df['contain'].astype(np.float32) / MAX_CONATANS
251
+ return df
252
+
253
+
254
+ class AddEmailFlag:
255
+ def fit(self, x, y=None):
256
+ return self
257
+
258
+ def __add_email_count(self, text):
259
+ pattern = "[\w]+@[\w]+\.\w+"
260
+ return float(len(re.findall(pattern, text)) /MAX_EMAIL)
261
+
262
+ def transform(self, df):
263
+ df["email"] = df["Comment"].apply(self.__add_email_count).astype(np.float32)
264
+ return df
265
+
266
+
267
+ class AddPhoneFlag:
268
+ def fit(self, x, y=None):
269
+ return self
270
+
271
+ def __add_phone_no_count(self, text):
272
+ pattern = "\+?[0-9]?[0-9]? ?0?[0-9]{10}"
273
+ return len(re.findall(pattern, text))
274
+
275
+ def __add_phone_no_count_1(self, text):
276
+ pattern = "\+?[0-9]?\d{3}[ -]?\d{3}[ -]?\d{4}"
277
+ return len(re.findall(pattern, text))
278
+
279
+ def transform(self, df):
280
+ df["phone"] = df["Comment"].apply(self.__add_phone_no_count)
281
+ df["phone"] = df["phone"] + df["Comment"].apply(self.__add_phone_no_count_1)
282
+ df["phone"] = df["phone"].astype(np.float32) / MAX_PHONE
283
+
284
+
285
+ return df
286
+
287
+
288
+ class RemovePhoneLinkEmail:
289
+ def fit(self, x, y=None):
290
+ return self
291
+
292
+ def __remove(self, text):
293
+ text = re.sub("\$[0-9]*([\.,][0-9]{2})*\$?", "", text)
294
+ text = re.sub("\+?[0-9]?[0-9]? ?0?[0-9]{10}", "", text)
295
+ text = re.sub("\+?[0-9]?\d{3}[ -]?\d{3}[ -]?\d{4}", "", text)
296
+ text = re.sub(
297
+ r"(https:\/\/www\.|http:\/\/www\.|https:\/\/|http:\/\/)?[a-zA-Z0-9]{2,}(\.[a-zA-Z0-9]{2,})(\.[a-zA-Z0-9]{2,})?",
298
+ "",
299
+ text,
300
+ )
301
+ text = re.sub(r"[\w]+@[\w]+\.\w+", "", text)
302
+ text = emoji.replace_emoji(text)
303
+ return text
304
+
305
+ def transform(self, df):
306
+ df["Comment"] = df["Comment"].apply(self.__remove)
307
+ return df
308
+
309
+
310
+ class LemmatizeText:
311
+ def __init__(self):
312
+ self.lemmatizer = nltk.WordNetLemmatizer()
313
+
314
+ def fit(self, X, y=None):
315
+ return self
316
+
317
+ def __lemmatize_text(self, text):
318
+ return " ".join(
319
+ [self.lemmatizer.lemmatize(word) for word in re.split("\W+", text)]
320
+ ).strip()
321
+
322
+ def transform(self, df):
323
+ df["Comment"] = df["Comment"].map(lambda text: self.__lemmatize_text(text))
324
+ return df
325
+
326
+ # %%
327
+
328
+
329
+ pipe = Pipeline([
330
+ ("ConvertData",ConvertData()),
331
+
332
+ ("AddCurrencyFlag",AddCurrencyFlag()),
333
+ ("AddSpamWordsFlag",AddSpamWordsFlag()),
334
+ ("AddEmojiFlag",AddEmojiFlag()),
335
+ ("AddContainFlag",AddContainFlag()),
336
+ ("AddEmailFlag",AddEmailFlag()),
337
+ ("AddPhoneFlag",AddPhoneFlag()),
338
+
339
+ ("RemovePhoneLinkEmail",RemovePhoneLinkEmail()),
340
+ ("RemoveStopWordsPunctuation",RemoveStopWordsPunctuation()),
341
+
342
+ ("LemmatizeText",LemmatizeText()),
343
+
344
+ ("AddLengthFlag",AddLengthFlag()),
345
+
346
+
347
+ ])
348
+
349
+
350
+ # %%
351
+ df = pipe.transform(df)
352
+ df.info()
353
+
354
+ # %%
355
+ # import seaborn as sns
356
+ # sns.countplot(x="currency",data=df)
357
+ # sns.countplot(x="spam_word",data=df)
358
+ # sns.countplot(x="emoji",data=df)
359
+ # sns.countplot(x="contain",data=df)
360
+ # sns.countplot(x="email",data=df)
361
+ # sns.countplot(x="phone",data=df)
362
+ # sns.countplot(x="length",data=df)
363
+
364
+
365
+ # %%
366
+ y = pd.DataFrame(df.Spam)
367
+ x = df.drop(["Spam"],axis=1)
368
+
369
+ # %%
370
+ x_train,x_test,y_train,y_test=train_test_split(x,y,train_size=0.8,test_size=0.2,random_state=0)
371
+
372
+ # X_train=[tf.convert_to_tensor( x_train["Comment"], dtype=tf.string ) ,tf.convert_to_tensor(x_train["length"],dtype=tf.float32),tf.convert_to_tensor(x_train["currency"],dtype=tf.float32) , tf.convert_to_tensor(x_train["spam_word"],dtype=tf.float32) ,tf.convert_to_tensor( x_train["emoji"],dtype=tf.float32 ),tf.convert_to_tensor( x_train["contain"],dtype=tf.float32),tf.convert_to_tensor( x_train["email"],dtype=tf.float32), tf.convert_to_tensor(x_train["phone"],dtype=tf.float32)]
373
+ # X_test=[tf.convert_to_tensor( x_test["Comment"],dtype=tf.string ) ,tf.convert_to_tensor(x_test["length"],dtype=tf.float32),tf.convert_to_tensor(x_test["currency"],dtype=tf.float32) , tf.convert_to_tensor(x_test["spam_word"],dtype=tf.float32) ,tf.convert_to_tensor( x_test["emoji"] ,dtype=tf.float32),tf.convert_to_tensor( x_test["contain"],dtype=tf.float32),tf.convert_to_tensor( x_test["email"],dtype=tf.float32), tf.convert_to_tensor(x_test["phone"],dtype=tf.float32)]
374
+ # X_train=[x_train["Comment"].to_list(),x_train["length"].to_list(),x_train["currency"].to_list() , x_train["spam_word"].to_list() , x_train["emoji"].to_list() , x_train["contain"].to_list(), x_train["email"].to_list(), x_train["phone"].to_list()]
375
+ # X_test= [x_test["Comment"].to_list(), x_test["length"].to_list(),x_test["currency"].to_list() , x_test["spam_word"].to_list() , x_test["emoji"].to_list() , x_test["contain"].to_list(), x_test["email"].to_list(), x_test["phone"].to_list()]
376
+
377
+ # X_train=[x_train["Comment"],x_train["length"],x_train["currency"] , x_train["spam_word"] , x_train["emoji"] , x_train["contain"], x_train["email"], x_train["phone"]]
378
+ # X_test=[ x_test["Comment"], x_test["length"],x_test["currency"] , x_test["spam_word"] , x_test["emoji"] , x_test["contain"], x_test["email"], x_test["phone"]]
379
+
380
+ # %%
381
+ X_train = {
382
+ "Comment": tf.convert_to_tensor(x_train["Comment"]),
383
+ "Length": tf.convert_to_tensor(x_train["length"], dtype=tf.float32),
384
+ "Currency": tf.convert_to_tensor(x_train["currency"], dtype=tf.float32),
385
+ "Spam Words": tf.convert_to_tensor(x_train["spam_word"], dtype=tf.float32),
386
+ "Emoji": tf.convert_to_tensor(x_train["emoji"], dtype=tf.float32),
387
+ "Contain": tf.convert_to_tensor(x_train["contain"], dtype=tf.float32),
388
+ "Email": tf.convert_to_tensor(x_train["email"], dtype=tf.float32),
389
+ "Phone": tf.convert_to_tensor(x_train["phone"], dtype=tf.float32)
390
+ }
391
+
392
+ X_test={
393
+ "Comment": tf.convert_to_tensor(x_test["Comment"]),
394
+ "Length": tf.convert_to_tensor(x_test["length"], dtype=tf.float32),
395
+ "Currency": tf.convert_to_tensor(x_test["currency"], dtype=tf.float32),
396
+ "Spam Words": tf.convert_to_tensor(x_test["spam_word"], dtype=tf.float32),
397
+ "Emoji": tf.convert_to_tensor(x_test["emoji"], dtype=tf.float32),
398
+ "Contain": tf.convert_to_tensor(x_test["contain"], dtype=tf.float32),
399
+ "Email": tf.convert_to_tensor(x_test["email"], dtype=tf.float32),
400
+ "Phone": tf.convert_to_tensor(x_test["phone"], dtype=tf.float32)
401
+ }
402
+
403
+ y_train = { "Spam" : tf.convert_to_tensor(y_train,dtype=tf.bool) }
404
+ y_test = { "Spam" : tf.convert_to_tensor(y_test,dtype=tf.bool) }
405
+
406
+
407
+ # %%
408
+
409
+
410
+
411
+
412
+ # %%
413
+
414
+ string_input = tf.keras.layers.Input(shape=[], dtype=tf.string , name="Comment")
415
+ length_input = tf.keras.layers.Input(shape=(1,),name="Length",dtype=tf.float32)
416
+ currency_input = tf.keras.layers.Input(shape=(1,),name="Currency",dtype=tf.float32)
417
+ spam_word_input = tf.keras.layers.Input(shape=(1,),name="Spam Words",dtype=tf.float32)
418
+ emoji_input = tf.keras.layers.Input(shape=(1,),name="Emoji",dtype=tf.float32)
419
+ contain_input = tf.keras.layers.Input(shape=(1,),name="Contain",dtype=tf.float32)
420
+ email_input = tf.keras.layers.Input(shape=(1,),name="Email",dtype=tf.float32)
421
+ phone_input = tf.keras.layers.Input(shape=(1,),name="Phone",dtype=tf.float32)
422
+
423
+ #Comment
424
+
425
+ string_input = tf.keras.layers.Input(shape=[], dtype=tf.string , name="Comment")
426
+ length_input = tf.keras.layers.Input(shape=(1,),name="Length",dtype=tf.float32)
427
+ currency_input = tf.keras.layers.Input(shape=(1,),name="Currency",dtype=tf.float32)
428
+ spam_word_input = tf.keras.layers.Input(shape=(1,),name="Spam Words",dtype=tf.float32)
429
+ emoji_input = tf.keras.layers.Input(shape=(1,),name="Emoji",dtype=tf.float32)
430
+ contain_input = tf.keras.layers.Input(shape=(1,),name="Contain",dtype=tf.float32)
431
+ email_input = tf.keras.layers.Input(shape=(1,),name="Email",dtype=tf.float32)
432
+ phone_input = tf.keras.layers.Input(shape=(1,),name="Phone",dtype=tf.float32)
433
+
434
+ #Comment
435
+ hub_layer = hub.KerasLayer("https://tfhub.dev/google/nnlm-en-dim50/2", dtype=tf.string, trainable=True,name="NNLM_Hub")
436
+ embedding_layer = hub_layer(string_input)
437
+
438
+ s1= tf.keras.layers.Dense(2500)(embedding_layer)
439
+ s1= tf.keras.layers.LeakyReLU()(s1)
440
+
441
+ s1 = tf.keras.layers.Dense(2000)(s1)
442
+ s1= tf.keras.layers.LeakyReLU()(s1)
443
+
444
+ s1 = tf.keras.layers.Dense(1500)(s1)
445
+ s1= tf.keras.layers.LeakyReLU()(s1)
446
+
447
+ s1 = tf.keras.layers.Dense(1000)(s1)
448
+ s1= tf.keras.layers.LeakyReLU()(s1)
449
+
450
+ s1 = tf.keras.layers.Dense(500)(s1)
451
+ s1= tf.keras.layers.LeakyReLU()(s1)
452
+
453
+
454
+
455
+ length_layer = tf.keras.layers.Dense(256,name="length_layer")(length_input)
456
+ length_layer = tf.keras.layers.LeakyReLU()(length_layer)
457
+
458
+ length_layer = tf.keras.layers.Dense(120,name="length_layer1")(length_layer)
459
+ length_layer = tf.keras.layers.LeakyReLU()(length_layer)
460
+
461
+
462
+
463
+ currency_layer = tf.keras.layers.Dense(256, name="currency_layer")(currency_input)
464
+ currency_layer = tf.keras.layers.LeakyReLU()(currency_layer)
465
+
466
+ # currency_layer = tf.keras.layers.Dropout(0.5)(currency_layer)
467
+ currency_layer = tf.keras.layers.Dense(66, name="currency_layer1")(currency_layer)
468
+ currency_layer = tf.keras.layers.LeakyReLU()(currency_layer)
469
+
470
+
471
+ # currency_layer = tf.keras.layers.Average(name="currency_avg")(currency_layer)
472
+
473
+ spam_word_layer = tf.keras.layers.Dense(256, name="spam_word_layer")(spam_word_input)
474
+ spam_word_layer = tf.keras.layers.LeakyReLU()(spam_word_layer)
475
+
476
+ # spam_word_layer = tf.keras.layers.Dropout(0.5)(spam_word_layer)
477
+ spam_word_layer = tf.keras.layers.Dense(101, name="spam_word_layer1")(spam_word_layer)
478
+ spam_word_layer = tf.keras.layers.LeakyReLU()(spam_word_layer)
479
+
480
+
481
+ emoji_layer = tf.keras.layers.Dense(256, name="emoji_layer")(emoji_input)
482
+ emoji_layer = tf.keras.layers.LeakyReLU()(emoji_layer)
483
+
484
+ # emoji_layer = tf.keras.layers.Dropout(0.5)(emoji_layer)
485
+ emoji_layer = tf.keras.layers.Dense(62, name="emoji_layer1")(emoji_layer)
486
+ emoji_layer = tf.keras.layers.LeakyReLU()(emoji_layer)
487
+
488
+ # emoji_layer = tf.keras.layers.Average(name="emoji_avg")(emoji_layer)
489
+
490
+ contain_layer = tf.keras.layers.Dense(256, name="conatian_layer")(contain_input)
491
+ contain_layer = tf.keras.layers.LeakyReLU()(contain_layer)
492
+
493
+ # contain_layer = tf.keras.layers.Dropout(0.5)(contain_layer)
494
+ contain_layer = tf.keras.layers.Dense(256, name="conatian_layer1")(contain_layer)
495
+ contain_layer = tf.keras.layers.LeakyReLU()(contain_layer)
496
+
497
+ # contain_layer = tf.keras.layers.Average(name="conatain_avg")(contain_layer)
498
+
499
+ email_layer = tf.keras.layers.Dense(256, name="email_layer")(email_input)
500
+ email_layer = tf.keras.layers.LeakyReLU()(email_layer)
501
+
502
+ # email_layer = tf.keras.layers.Dropout(0.5)(email_layer)
503
+ email_layer = tf.keras.layers.Dense(54, name="email_layer1")(email_layer)
504
+ email_layer = tf.keras.layers.LeakyReLU()(email_layer)
505
+
506
+ # email_layer = tf.keras.layers.Average(name="email_avg")(email_layer)
507
+
508
+ phone_layer = tf.keras.layers.Dense(256, name="phone_layer")(phone_input)
509
+ phone_layer = tf.keras.layers.LeakyReLU()(phone_layer)
510
+
511
+ # phone_layer = tf.keras.layers.Dropout(0.5)(phone_layer)
512
+ phone_layer = tf.keras.layers.Dense(112, name="phone_layer1")(phone_layer)
513
+ phone_layer = tf.keras.layers.LeakyReLU()(phone_layer)
514
+
515
+ # phone_layer = tf.keras.layers.Average(name="phone_avg")(phone_layer)
516
+
517
+
518
+ concat_layer_level1_1 = tf.keras.layers.concatenate([length_layer,currency_layer,spam_word_layer])
519
+ concat_layer_level1_1 = tf.keras.layers.Dense(300)(concat_layer_level1_1)
520
+ concat_layer_level1_1 = tf.keras.layers.LeakyReLU()(concat_layer_level1_1)
521
+
522
+
523
+
524
+ concat_layer_level1_2 = tf.keras.layers.concatenate([contain_layer,emoji_layer,email_layer,phone_layer])
525
+ concat_layer_level1_2 = tf.keras.layers.Dense(300)(concat_layer_level1_2)
526
+ concat_layer_level1_2 = tf.keras.layers.LeakyReLU()(concat_layer_level1_2)
527
+
528
+
529
+
530
+
531
+
532
+ concat_layer_level = tf.keras.layers.concatenate([concat_layer_level1_1,concat_layer_level1_2])
533
+ sub_layer = tf.keras.layers.Dense(300,name="sub_layer")(concat_layer_level)
534
+ sub_layer = tf.keras.layers.LeakyReLU()(sub_layer)
535
+
536
+ # con = tf.keras.layers.Dropout(rate=0.2)(sub_layer)
537
+
538
+
539
+ # Concatenate all input branches
540
+ concat_layer = tf.keras.layers.concatenate([s1,sub_layer ])
541
+
542
+ # Add dense and output layers
543
+ f1= tf.keras.layers.Dense(1000)(concat_layer)
544
+ f1 = tf.keras.layers.LeakyReLU()(f1)
545
+
546
+ f1 = tf.keras.layers.Dense(500)(f1)
547
+ f1 = tf.keras.layers.LeakyReLU()(f1)
548
+
549
+ f1 = tf.keras.layers.Dense(250)(f1)
550
+ f1 = tf.keras.layers.LeakyReLU()(f1)
551
+
552
+ f1 = tf.keras.layers.Dense(150)(f1)
553
+ f1 = tf.keras.layers.LeakyReLU()(f1)
554
+
555
+
556
+ output_layer = tf.keras.layers.Dense(1,activation='sigmoid',name="Spam")(f1)
557
+
558
+
559
+ # Create the model
560
+ model = tf.keras.Model(inputs=[string_input, length_input,currency_input,spam_word_input,emoji_input,contain_input,email_input,phone_input], outputs=output_layer)
561
+
562
+ model.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])
563
+ model.summary()
564
+
565
+ #67248
566
+
567
+
568
+
569
+
570
+ # %%
571
+ # model.save("base.model")
572
+
573
+ # %%
574
+ # import matplotlib.pyplot as plt
575
+ # from tensorflow.keras.utils import plot_model
576
+
577
+ # # Plot model
578
+ # plot_model(model, to_file='team_strength_model.png',show_shapes=1,expand_nested=1,show_layer_activations=1)
579
+
580
+ # # Display the image
581
+ # data = plt.imread('team_strength_model.png')
582
+ # plt.imshow(data)
583
+
584
+ # %%
585
+
586
+ log_dir = f"logs/fit_{datetime.datetime.now()}/" + datetime.datetime.now().strftime("%Y%m%d-%H%M%S")
587
+ tensorboard_callback = tf.keras.callbacks.TensorBoard(log_dir=log_dir, histogram_freq=1)
588
+
589
+
590
+ # %%
591
+
592
+ k = model.fit(X_train,
593
+ y_train,
594
+ epochs=10,
595
+ batch_size=32,
596
+ validation_data=(X_test, y_test),
597
+ callbacks=[tf.keras.callbacks.EarlyStopping(monitor='val_loss', mode='min', verbose=1, patience=10),tensorboard_callback],
598
+ verbose=1
599
+ )
600
+
601
+
602
+ model.save("spam-model.h5",include_optimizer=True)
603
+
604
+
605
+
606
+
607
+ # %%
608
+
609
+
610
+ # %%
611
+
612
+
613
+
datasets/csv.ipynb ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 11,
6
+ "metadata": {},
7
+ "outputs": [],
8
+ "source": [
9
+ "import pandas as pd\n",
10
+ "\n",
11
+ "# csv1 = pd.read_csv(\n",
12
+ "# \"yt.csv\",\n",
13
+ "# delimiter=\";\"\n",
14
+ "# )\n",
15
+ "# df1 = csv1[[\"Comment\", \"Spam\"]].copy()\n",
16
+ "\n",
17
+ "\n",
18
+ "\n",
19
+ "\n",
20
+ "# df1['Comment'] = df1['Comment'].replace('\\n', ' ', regex=True)\n",
21
+ "\n",
22
+ "# df1= df1.fillna(0)\n",
23
+ "# df1['Spam'] = df1['Spam'].astype(int)\n",
24
+ "# df1 = df1.dropna()\n",
25
+ "\n",
26
+ "# df1 =df1.drop_duplicates()\n",
27
+ "\n",
28
+ "\n",
29
+ "\n",
30
+ "csv2 = pd.read_csv(\n",
31
+ " \"../spam_or_not_spam.csv\",\n",
32
+ " delimiter=\",\"\n",
33
+ ")\n",
34
+ "df2 = csv2[[\"text\", \"label_num\"]].copy()\n",
35
+ "\n",
36
+ "# df2[\"v1\"] = df2['v1'].map( {'spam': 1, 'ham': 0} )\n",
37
+ "\n",
38
+ "\n",
39
+ "# df2['label_num'] = df2['label_num'].fillna(0).astype(int)\n",
40
+ "\n",
41
+ "df2 = df2.dropna()\n",
42
+ "df2 =df2.drop_duplicates()\n",
43
+ "\n",
44
+ "# df2 = df2.reindex(columns=['v2', 'v1'])\n",
45
+ "\n",
46
+ "df2['text'] = df2['text'].replace('\\n', ' ', regex=True).replace('^ ', '', regex=True).replace('$ ', '', regex=True).replace('Subject: ', '', regex=True)\n",
47
+ "\n",
48
+ "\n",
49
+ "df2\n",
50
+ "\n",
51
+ "\n",
52
+ "\n",
53
+ "df2.to_csv(\"./spam-dataset2.csv\",index=0)\n"
54
+ ]
55
+ },
56
+ {
57
+ "attachments": {},
58
+ "cell_type": "markdown",
59
+ "id": "23bd4cdf",
60
+ "metadata": {},
61
+ "source": [
62
+ "# 1->spam\n",
63
+ "# 0-> not spam"
64
+ ]
65
+ },
66
+ {
67
+ "cell_type": "code",
68
+ "execution_count": 15,
69
+ "id": "ad83ce85",
70
+ "metadata": {},
71
+ "outputs": [
72
+ {
73
+ "ename": "ParserError",
74
+ "evalue": "Error tokenizing data. C error: Expected 3 fields in line 6048, saw 4\n",
75
+ "output_type": "error",
76
+ "traceback": [
77
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
78
+ "\u001b[0;31mParserError\u001b[0m Traceback (most recent call last)",
79
+ "Cell \u001b[0;32mIn[15], line 2\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[39mimport\u001b[39;00m \u001b[39mpandas\u001b[39;00m \u001b[39mas\u001b[39;00m \u001b[39mpd\u001b[39;00m\n\u001b[0;32m----> 2\u001b[0m csv2 \u001b[39m=\u001b[39m pd\u001b[39m.\u001b[39;49mread_csv(\n\u001b[1;32m 3\u001b[0m \u001b[39m\"\u001b[39;49m\u001b[39mspam.csv\u001b[39;49m\u001b[39m\"\u001b[39;49m,\n\u001b[1;32m 4\u001b[0m delimiter\u001b[39m=\u001b[39;49m\u001b[39m\"\u001b[39;49m\u001b[39m,\u001b[39;49m\u001b[39m\"\u001b[39;49m\n\u001b[1;32m 5\u001b[0m )\n\u001b[1;32m 8\u001b[0m df2 \u001b[39m=\u001b[39m csv2[[\u001b[39m\"\u001b[39m\u001b[39mBody\u001b[39m\u001b[39m\"\u001b[39m, \u001b[39m\"\u001b[39m\u001b[39mLabel\u001b[39m\u001b[39m\"\u001b[39m]]\n\u001b[1;32m 9\u001b[0m df2\u001b[39m=\u001b[39m df2\u001b[39m.\u001b[39mcopy()\n",
80
+ "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/io/parsers/readers.py:912\u001b[0m, in \u001b[0;36mread_csv\u001b[0;34m(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, date_format, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, encoding_errors, dialect, on_bad_lines, delim_whitespace, low_memory, memory_map, float_precision, storage_options, dtype_backend)\u001b[0m\n\u001b[1;32m 899\u001b[0m kwds_defaults \u001b[39m=\u001b[39m _refine_defaults_read(\n\u001b[1;32m 900\u001b[0m dialect,\n\u001b[1;32m 901\u001b[0m delimiter,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 908\u001b[0m dtype_backend\u001b[39m=\u001b[39mdtype_backend,\n\u001b[1;32m 909\u001b[0m )\n\u001b[1;32m 910\u001b[0m kwds\u001b[39m.\u001b[39mupdate(kwds_defaults)\n\u001b[0;32m--> 912\u001b[0m \u001b[39mreturn\u001b[39;00m _read(filepath_or_buffer, kwds)\n",
81
+ "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/io/parsers/readers.py:583\u001b[0m, in \u001b[0;36m_read\u001b[0;34m(filepath_or_buffer, kwds)\u001b[0m\n\u001b[1;32m 580\u001b[0m \u001b[39mreturn\u001b[39;00m parser\n\u001b[1;32m 582\u001b[0m \u001b[39mwith\u001b[39;00m parser:\n\u001b[0;32m--> 583\u001b[0m \u001b[39mreturn\u001b[39;00m parser\u001b[39m.\u001b[39;49mread(nrows)\n",
82
+ "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/io/parsers/readers.py:1704\u001b[0m, in \u001b[0;36mTextFileReader.read\u001b[0;34m(self, nrows)\u001b[0m\n\u001b[1;32m 1697\u001b[0m nrows \u001b[39m=\u001b[39m validate_integer(\u001b[39m\"\u001b[39m\u001b[39mnrows\u001b[39m\u001b[39m\"\u001b[39m, nrows)\n\u001b[1;32m 1698\u001b[0m \u001b[39mtry\u001b[39;00m:\n\u001b[1;32m 1699\u001b[0m \u001b[39m# error: \"ParserBase\" has no attribute \"read\"\u001b[39;00m\n\u001b[1;32m 1700\u001b[0m (\n\u001b[1;32m 1701\u001b[0m index,\n\u001b[1;32m 1702\u001b[0m columns,\n\u001b[1;32m 1703\u001b[0m col_dict,\n\u001b[0;32m-> 1704\u001b[0m ) \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_engine\u001b[39m.\u001b[39;49mread( \u001b[39m# type: ignore[attr-defined]\u001b[39;49;00m\n\u001b[1;32m 1705\u001b[0m nrows\n\u001b[1;32m 1706\u001b[0m )\n\u001b[1;32m 1707\u001b[0m \u001b[39mexcept\u001b[39;00m \u001b[39mException\u001b[39;00m:\n\u001b[1;32m 1708\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mclose()\n",
83
+ "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/io/parsers/c_parser_wrapper.py:234\u001b[0m, in \u001b[0;36mCParserWrapper.read\u001b[0;34m(self, nrows)\u001b[0m\n\u001b[1;32m 232\u001b[0m \u001b[39mtry\u001b[39;00m:\n\u001b[1;32m 233\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mlow_memory:\n\u001b[0;32m--> 234\u001b[0m chunks \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_reader\u001b[39m.\u001b[39;49mread_low_memory(nrows)\n\u001b[1;32m 235\u001b[0m \u001b[39m# destructive to chunks\u001b[39;00m\n\u001b[1;32m 236\u001b[0m data \u001b[39m=\u001b[39m _concatenate_chunks(chunks)\n",
84
+ "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/_libs/parsers.pyx:812\u001b[0m, in \u001b[0;36mpandas._libs.parsers.TextReader.read_low_memory\u001b[0;34m()\u001b[0m\n",
85
+ "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/_libs/parsers.pyx:873\u001b[0m, in \u001b[0;36mpandas._libs.parsers.TextReader._read_rows\u001b[0;34m()\u001b[0m\n",
86
+ "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/_libs/parsers.pyx:848\u001b[0m, in \u001b[0;36mpandas._libs.parsers.TextReader._tokenize_rows\u001b[0;34m()\u001b[0m\n",
87
+ "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/_libs/parsers.pyx:859\u001b[0m, in \u001b[0;36mpandas._libs.parsers.TextReader._check_tokenize_status\u001b[0;34m()\u001b[0m\n",
88
+ "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/_libs/parsers.pyx:2025\u001b[0m, in \u001b[0;36mpandas._libs.parsers.raise_parser_error\u001b[0;34m()\u001b[0m\n",
89
+ "\u001b[0;31mParserError\u001b[0m: Error tokenizing data. C error: Expected 3 fields in line 6048, saw 4\n"
90
+ ]
91
+ }
92
+ ],
93
+ "source": [
94
+ "import pandas as pd\n",
95
+ "csv2 = pd.read_csv(\n",
96
+ " \"spam.csv\",\n",
97
+ " delimiter=\",\"\n",
98
+ ")\n",
99
+ "\n",
100
+ "\n",
101
+ "df2 = csv2[[\"Body\", \"Label\"]]\n",
102
+ "df2= df2.copy()\n",
103
+ "\n",
104
+ "df2['Label'] = df2['Label'].astype(int)\n",
105
+ "df2 = df2.dropna()\n",
106
+ "df2 =df2.drop_duplicates()\n",
107
+ "\n",
108
+ "df2['Body'] = df2['Body'].replace('\\n', ' ', regex=True)\n",
109
+ "df2['Body'] = df2['Body'].replace('empty', '', regex=True)\n",
110
+ "\n",
111
+ "df2"
112
+ ]
113
+ },
114
+ {
115
+ "cell_type": "code",
116
+ "execution_count": null,
117
+ "id": "423c6595",
118
+ "metadata": {},
119
+ "outputs": [],
120
+ "source": []
121
+ }
122
+ ],
123
+ "metadata": {
124
+ "kernelspec": {
125
+ "display_name": "Python 3",
126
+ "language": "python",
127
+ "name": "python3"
128
+ },
129
+ "language_info": {
130
+ "codemirror_mode": {
131
+ "name": "ipython",
132
+ "version": 3
133
+ },
134
+ "file_extension": ".py",
135
+ "mimetype": "text/x-python",
136
+ "name": "python",
137
+ "nbconvert_exporter": "python",
138
+ "pygments_lexer": "ipython3",
139
+ "version": "3.10.10"
140
+ }
141
+ },
142
+ "nbformat": 4,
143
+ "nbformat_minor": 5
144
+ }
datasets/demo.csv ADDED
@@ -0,0 +1,1125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Be your own boss",1
2
+ "Brand new pager",1
3
+ "Casino",1
4
+ "Compete for your business",1
5
+ "Congratulations",1
6
+ "Credit card offers",1
7
+ "Home employment",1
8
+ "Home-based business",1
9
+ "Legal",1
10
+ "Legal notice",1
11
+ "Marketing solutions",1
12
+ "Meet singles",1
13
+ "Meet women",1
14
+ "Miracle",1
15
+ "Month trial offer",1
16
+ "Mortgage",1
17
+ "New domain extensions",1
18
+ "Obligation",1
19
+ "Order shipped by",1
20
+ "Order status",1
21
+ "Orders shipped by the shopper",1
22
+ "Passwords",1
23
+ "Purchase",1
24
+ "Removal",1
25
+ "Removes wrinkles",1
26
+ "Reverses aging",1
27
+ "Rolex",1
28
+ "Round the world",1
29
+ "Score with babes",1
30
+ "Section 301",1
31
+ "Shopping spree",1
32
+ "Social security number",1
33
+ "Terms and conditions",1
34
+ "University diplomas",1
35
+ "Valium",1
36
+ "Viagra",1
37
+ "VIP",1
38
+ "What's keeping you?",1
39
+ "Accept credit cards",1
40
+ "Additional income",1
41
+ "Avoid bankruptcy",1
42
+ "Beneficiary",1
43
+ "Billing",1
44
+ "Billing address",1
45
+ "BONUS",1
46
+ "Bonus credited",1
47
+ "Buying judgments",1
48
+ "Cash bonus",1
49
+ "Cashcashcash",1
50
+ "Cashless",1
51
+ "Check credited",1
52
+ "Consolidate debt",1
53
+ "Consolidate debt and credit",1
54
+ "Cost",1
55
+ "Credit",1
56
+ "Eliminate bad credit",1
57
+ "Eliminate debt",1
58
+ "Income from home",1
59
+ "Investment decision",1
60
+ "Low insurance premium",1
61
+ "Low mortgage rates",1
62
+ "Lower interest rate",1
63
+ "Lower monthly payment",1
64
+ "Lower rates",1
65
+ "Lower your mortgage rate",1
66
+ "Lowest insurance rates",1
67
+ "Million dollars",1
68
+ "Outstanding amount",1
69
+ "Outstanding values",1
70
+ "Pennies a day",1
71
+ "Stock alert",1
72
+ "Stock disclaimer statement",1
73
+ "Stock pick",1
74
+ "Unsecured credit",1
75
+ "Unsecured debt",1
76
+ "Unsolicited",1
77
+ "XXX amount credited",1
78
+ "XXX$ credited",1
79
+ "Affordable",1
80
+ "Auto email removal",1
81
+ "Bargain",1
82
+ "Cheap",1
83
+ "Claims",1
84
+ "Claims not to be selling anything",1
85
+ "Claims to be in accordance with some spam law",1
86
+ "Claims to be legal",1
87
+ "Clearance",1
88
+ "Compare rates",1
89
+ "Confidential",1
90
+ "Confidentially on all orders",1
91
+ "Deal breaker",1
92
+ "Dig up dirt on friends",1
93
+ "Don't delete",1
94
+ "Don't hesitate",1
95
+ "Easy terms",1
96
+ "Explode your business",1
97
+ "Fast cash",1
98
+ "Free access",1
99
+ "Hidden assets",1
100
+ "Hidden charges",1
101
+ "Info you requested",1
102
+ "Information you requested",1
103
+ "Join millions",1
104
+ "Junk",1
105
+ "Loan approved",1
106
+ "Loans",1
107
+ "Mass email",1
108
+ "Never before",1
109
+ "New customers only",1
110
+ "No extra cost",1
111
+ "No hidden costs",1
112
+ "No interests",1
113
+ "No medical exams",1
114
+ "No middleman",1
115
+ "No risk",1
116
+ "No strings attached",1
117
+ "Not intended",1
118
+ "Not junk",1
119
+ "Not spam",1
120
+ "Open this email!",1
121
+ "Please read",1
122
+ "Priority mail",1
123
+ "Prize",1
124
+ "Profits",1
125
+ "Promise",1
126
+ "Pure profits",1
127
+ "Requires initial investment",1
128
+ "Risk-free",1
129
+ "Save big money",1
130
+ "Sent in compliance",1
131
+ "Special discount",1
132
+ "Special promotion",1
133
+ "Strong buy",1
134
+ "This isn't a scam",1
135
+ "This isn't junk",1
136
+ "This isn't spam",1
137
+ "This won't last",1
138
+ "Undisclosed",1
139
+ "Undisclosed recipient",1
140
+ "We hate spam",1
141
+ "We honor all",1
142
+ "100% money back",1
143
+ "Best bargain",1
144
+ "Best offer",1
145
+ "Best price",1
146
+ "Big bucks",1
147
+ "Double your leads",1
148
+ "Double your cash",1
149
+ "Double your income",1
150
+ "Double your wealth",1
151
+ "Earn extra profit",1
152
+ "Earn $",1
153
+ "Earn extra cash",1
154
+ "Earn money",1
155
+ "Earn per week",1
156
+ "Extra cash",1
157
+ "Extra income",1
158
+ "Extract email",1
159
+ "F r e e",1
160
+ "For just X$",1
161
+ "For only XXX amount",1
162
+ "Free bonus",1
163
+ "Free cell phone",1
164
+ "Free consultation",1
165
+ "Free DVD",1
166
+ "Free gift",1
167
+ "Free grant money",1
168
+ "Free hosting",1
169
+ "Free info",1
170
+ "Free information",1
171
+ "Free installation",1
172
+ "Free instant",1
173
+ "Free investment",1
174
+ "Free iPhone",1
175
+ "Free leads",1
176
+ "Free membership",1
177
+ "Free money",1
178
+ "Free preview",1
179
+ "Free quote",1
180
+ "Free sample",1
181
+ "Free trial",1
182
+ "Full REFUND",1
183
+ "Guaranteed deposit",1
184
+ "Guaranteed income",1
185
+ "Guaranteed payment",1
186
+ "Huge discount",1
187
+ "Incredible deal",1
188
+ "Instant earnings",1
189
+ "Instant income",1
190
+ "Instant offers",1
191
+ "JACKPOT",1
192
+ "Lose weight",1
193
+ "Lose weight instantly",1
194
+ "Lowest price",1
195
+ "Lowest price ever",1
196
+ "Money back",1
197
+ "Money making",1
198
+ "Money-back guarantee",1
199
+ "Potential earnings",1
200
+ "Recover your debt",1
201
+ "Recover your debt instantly",1
202
+ "Satisfaction guaranteed",1
203
+ "Save $",1
204
+ "Save Big Money",1
205
+ "Serious cash",1
206
+ "Subject to cash",1
207
+ "They keep your Money — no refund!",1
208
+ "Unlimited",1
209
+ "Work at home",1
210
+ "Work from home",1
211
+ "You are a winner!",1
212
+ "You have been chosen",1
213
+ "You have been selected",1
214
+ "You will not believe your eyes",1
215
+ "Zero chance",1
216
+ "Zero percent",1
217
+ "Zero risk",1
218
+ "Access for free",1
219
+ "Access now",1
220
+ "Access right away",1
221
+ "Act immediately",1
222
+ "Act now",1
223
+ "Action required",1
224
+ "Apply NOW",1
225
+ "Apply Online",1
226
+ "At no cost",1
227
+ "Buy Now",1
228
+ "Buy direct",1
229
+ "Cancel at any time",1
230
+ "Cancel now",1
231
+ "Cancellation required",1
232
+ "Claim your discount NOW!",1
233
+ "Claim your prize",1
234
+ "Click below",1
235
+ "Click here",1
236
+ "Exclusive deal",1
237
+ "Exclusive discount",1
238
+ "Exclusive offer",1
239
+ "Expiring soon",1
240
+ "For instant access",1
241
+ "Get it now",1
242
+ "Get out of debt",1
243
+ "Get out of debt NOW",1
244
+ "Get started now",1
245
+ "Hurry up",1
246
+ "Important information regarding",1
247
+ "Instant weight loss",1
248
+ "Limited time",1
249
+ "Limited time deal",1
250
+ "Make $",1
251
+ "Make Money",1
252
+ "Now only",1
253
+ "Offer expires in X days",1
254
+ "Once in a lifetime deal",1
255
+ "Once in a lifetime opportunity",1
256
+ "Once in lifetime",1
257
+ "Online biz opportunity",1
258
+ "Only for today",1
259
+ "Save up to",1
260
+ "Sign up free today",1
261
+ "Stuff on sale",1
262
+ "Supplies are limited",1
263
+ "Take action now",1
264
+ "Time-limited",1
265
+ "Urgent",1
266
+ "Vacation offers",1
267
+ "Weight loss",1
268
+ "While in stock",1
269
+ "While you sleep",1
270
+ "#1",1
271
+ "$$$",1
272
+ "0%",1
273
+ "0% risk",1
274
+ "777",1
275
+ "99%",1
276
+ "99.9%",1
277
+ "100%",1
278
+ "100% more",1
279
+ "100% free",1
280
+ "100% satisfied",1
281
+ "50% off",1
282
+ "#1",1
283
+ "100% more",1
284
+ "100% free",1
285
+ "100% satisfie",1
286
+ "Additional income",1
287
+ "Be your own boss",1
288
+ "Best price",1
289
+ "Big bucks",1
290
+ "Billion",1
291
+ "Cash bonus",1
292
+ "Cents on the dollar",1
293
+ "Consolidate debt",1
294
+ "Double your cash",1
295
+ "Double your income",1
296
+ "Earn extra cash",1
297
+ "Earn money",1
298
+ "Eliminate bad credit",1
299
+ "Extra cash",1
300
+ "Extra income",1
301
+ "Expect to earn",1
302
+ "Fast cash",1
303
+ "Financial freedom",1
304
+ "Free access",1
305
+ "Free consultation",1
306
+ "Free gift",1
307
+ "Free hosting",1
308
+ "Free info",1
309
+ "Free investment",1
310
+ "Free membership",1
311
+ "Free money",1
312
+ "Free preview",1
313
+ "Free quote",1
314
+ "Free trial",1
315
+ "Full refund",1
316
+ "Get out of debt",1
317
+ "Get paid",1
318
+ "Giveaway",1
319
+ "Guaranteed",1
320
+ "Increase sales",1
321
+ "Increase traffic",1
322
+ "Incredible deal",1
323
+ "Lower rates",1
324
+ "Lowest price",1
325
+ "Make money",1
326
+ "Million dollars",1
327
+ "Miracle",1
328
+ "Money back",1
329
+ "Once in a lifetime",1
330
+ "One time",1
331
+ "Pennies a day",1
332
+ "Potential earnings",1
333
+ "Prize",1
334
+ "Promise",1
335
+ "Pure profit",1
336
+ "Risk-free",1
337
+ "Satisfaction guaranteed",1
338
+ "Save big money",1
339
+ "Save up to",1
340
+ "Special promotion",1
341
+ "Act now",1
342
+ "Apply now",1
343
+ "Become a member",1
344
+ "Call now",1
345
+ "Click below",1
346
+ "Click here",1
347
+ "Get it now",1
348
+ "Do it today",1
349
+ "Don’t delete",1
350
+ "Exclusive deal",1
351
+ "Get started now",1
352
+ "Important information regarding",1
353
+ "Information you requested",1
354
+ "Instant",1
355
+ "Limited time",1
356
+ "New customers only",1
357
+ "Order now",1
358
+ "Please read",1
359
+ "See for yourself",1
360
+ "Sign up free",1
361
+ "Take action",1
362
+ "This won’t last",1
363
+ "Urgent",1
364
+ "What are you waiting for?",1
365
+ "While supplies last",1
366
+ "Will not believe your eyes",1
367
+ "Winner",1
368
+ "Winning",1
369
+ "You are a winner",1
370
+ "You have been selected",1
371
+ "Bulk email",1
372
+ "Buy direct",1
373
+ "Cancel at any time",1
374
+ "Check or money order",1
375
+ "Congratulations",1
376
+ "Confidentiality",1
377
+ "Cures",1
378
+ "Dear friend",1
379
+ "Direct email",1
380
+ "Direct marketing",1
381
+ "Hidden charges",1
382
+ "Human growth hormone",1
383
+ "Internet marketing",1
384
+ "Lose weight",1
385
+ "Mass email",1
386
+ "Meet singles",1
387
+ "Multi-level marketing",1
388
+ "No catch",1
389
+ "No cost",1
390
+ "No credit check",1
391
+ "No fees",1
392
+ "No gimmick",1
393
+ "No hidden costs",1
394
+ "No hidden fees",1
395
+ "No interest",1
396
+ "No investment",1
397
+ "No obligation",1
398
+ "No purchase necessary",1
399
+ "No questions asked",1
400
+ "No strings attached",1
401
+ "Not junk",1
402
+ "Notspam",1
403
+ "Obligation",1
404
+ "Passwords",1
405
+ "Requires initial investment",1
406
+ "Social security number",1
407
+ "This isn’t a scam",1
408
+ "This isn’t junk",1
409
+ "This isn’t spam",1
410
+ "Undisclosed",1
411
+ "Unsecured credit",1
412
+ "Unsecured debt",1
413
+ "Unsolicited",1
414
+ "Valium",1
415
+ "Viagra",1
416
+ "Vicodin",1
417
+ "We hate spam",1
418
+ "Weight loss",1
419
+ "Xanax",1
420
+ "Accept credit cards",1
421
+ "Ad",1
422
+ "All new",1
423
+ "As seen on",1
424
+ "Bargain",1
425
+ "Beneficiary",1
426
+ "Billing",1
427
+ "Bonus",1
428
+ "Cards accepted",1
429
+ "Cash",1
430
+ "Certified",1
431
+ "Cheap",1
432
+ "Claims",1
433
+ "Clearance",1
434
+ "Compare rates",1
435
+ "Credit card offers",1
436
+ "Deal",1
437
+ "Debt",1
438
+ "Discount",1
439
+ "Fantastic",1
440
+ "In accordance with laws",1
441
+ "Income",1
442
+ "Investment",1
443
+ "Join millions",1
444
+ "Lifetime",1
445
+ "Loans",1
446
+ "Luxury",1
447
+ "Marketing solution",1
448
+ "Message contains",1
449
+ "Mortgage rates",1
450
+ "Name brand",1
451
+ "Offer",1
452
+ "Online marketing",1
453
+ "Opt in",1
454
+ "Pre-approved",1
455
+ "Quote",1
456
+ "Rates",1
457
+ "Refinance",1
458
+ "Removal",1
459
+ "Reserves the right",1
460
+ "Score",1
461
+ "Search engine",1
462
+ "Sent in compliance",1
463
+ "Subject to…",1
464
+ "Terms and conditions",1
465
+ "Trial",1
466
+ "Unlimited",1
467
+ "Warranty",1
468
+ "Web traffic",1
469
+ "Work from home",1
470
+ "0%",1
471
+ "0% risk",1
472
+ "777",1
473
+ "99%",1
474
+ "99.9%",1
475
+ "100%",1
476
+ "100% more",1
477
+ "#1",1
478
+ "$$$",1
479
+ "100% free",1
480
+ "100% satisfied",1
481
+ "4U",1
482
+ "50% off",1
483
+ "Accept credit cards",1
484
+ "Acceptance",1
485
+ "Access",1
486
+ "Access now",1
487
+ "Access for free",1
488
+ "Accordingly",1
489
+ "Act Now",1
490
+ "Act immediately",1
491
+ "Action",1
492
+ "Action required",1
493
+ "Ad",1
494
+ "Additional income",1
495
+ "Addresses on CD",1
496
+ "Affordable",1
497
+ "Affordable deal",1
498
+ "All natural",1
499
+ "All new",1
500
+ "Amazed",1
501
+ "Amazing",1
502
+ "Amazing offer",1
503
+ "Amazing stuff",1
504
+ "Apply here",1
505
+ "Apply now",1
506
+ "Apply Online",1
507
+ "As seen on",1
508
+ "At no cost",1
509
+ "Auto email removal",1
510
+ "Avoid",1
511
+ "Avoid bankruptcy",1
512
+ "Bargain",1
513
+ "Be amazed",1
514
+ "Be surprised",1
515
+ "Be your own boss",1
516
+ "Believe me",1
517
+ "Being a member",1
518
+ "Beneficiary",1
519
+ "Best bargain",1
520
+ "Best deal",1
521
+ "Best price",1
522
+ "Best offer",1
523
+ "Beverage",1
524
+ "Big bucks",1
525
+ "Bill 1618",1
526
+ "Billing",1
527
+ "Billing address",1
528
+ "Billionaire",1
529
+ "Billion",1
530
+ "Billion dollars",1
531
+ "Bonus",1
532
+ "Boss",1
533
+ "Brand new pager",1
534
+ "Bulk email",1
535
+ "Buy",1
536
+ "Buy now",1
537
+ "Buy direct",1
538
+ "Buying judgments",1
539
+ "Cable converter",1
540
+ "Call",1
541
+ "Call free",1
542
+ "Call me",1
543
+ "Call now",1
544
+ "Calling creditors",1
545
+ "Can’t live without",1
546
+ "Cancel",1
547
+ "Cancel at any time",1
548
+ "Cancel now",1
549
+ "Cancellation required",1
550
+ "Cannot be combined with any other offer",1
551
+ "Cards accepted",1
552
+ "Cash",1
553
+ "Cash out",1
554
+ "Cash bonus",1
555
+ "Cashcashcash",1
556
+ "Casino",1
557
+ "Celebrity",1
558
+ "Cell phone cancer scam",1
559
+ "Cents on the dollar",1
560
+ "Certified",1
561
+ "Chance",1
562
+ "Cheap",1
563
+ "Check",1
564
+ "Check or money order",1
565
+ "Claims",1
566
+ "Claim now",1
567
+ "Claim your discount",1
568
+ "Claims not to be selling anything",1
569
+ "Claims to be in accordance with some spam law",1
570
+ "Claims to be legal",1
571
+ "Clearance",1
572
+ "Click",1
573
+ "Click below",1
574
+ "Click here",1
575
+ "Click now",1
576
+ "Click to get",1
577
+ "Click to remove",1
578
+ "Collect",1
579
+ "Collect child support",1
580
+ "Compare",1
581
+ "Compare now",1
582
+ "Compare online",1
583
+ "Compare rates",1
584
+ "Compete for your business",1
585
+ "Confidentially on all orders",1
586
+ "Congratulations",1
587
+ "Consolidate debt and credit",1
588
+ "Consolidate your debt",1
589
+ "Copy accurately",1
590
+ "Copy DVDs",1
591
+ "Costs",1
592
+ "Credit",1
593
+ "Credit bureaus",1
594
+ "Credit card offers",1
595
+ "Cures",1
596
+ "Cures baldness",1
597
+ "Deal",1
598
+ "Dear",1
599
+ "Debt",1
600
+ "Diagnostics",1
601
+ "Dig up dirt on friends",1
602
+ "Direct email",1
603
+ "Direct marketing",1
604
+ "Discount",1
605
+ "Do it now",1
606
+ "Do it today",1
607
+ "Don’t delete",1
608
+ "Don’t hesitate",1
609
+ "Dormant",1
610
+ "Double your",1
611
+ "Double your cash",1
612
+ "Double your income",1
613
+ "Double your wealth",1
614
+ "Drastically reduced",1
615
+ "Earn",1
616
+ "Earn $",1
617
+ "Earn extra cash",1
618
+ "Earn money",1
619
+ "Earn monthly",1
620
+ "Earn from home",1
621
+ "Earn per month",1
622
+ "Earn per week",1
623
+ "Easy terms",1
624
+ "Eliminate bad credit",1
625
+ "Eliminate debt",1
626
+ "Email extractor",1
627
+ "Email harvest",1
628
+ "Email marketing",1
629
+ "Exclusive deal",1
630
+ "Expect to earn",1
631
+ "Expire",1
632
+ "Explode your business",1
633
+ "Extra",1
634
+ "Extra cash",1
635
+ "Extra income",1
636
+ "Extract email ",1
637
+ "Free",1
638
+ "Fantastic",1
639
+ "Fantastic deal",1
640
+ "Fantastic offer",1
641
+ "Fast cash",1
642
+ "Fast Viagra delivery",1
643
+ "Financial freedom",1
644
+ "Financially independent",1
645
+ "For free",1
646
+ "For instant access",1
647
+ "For just $",1
648
+ "For Only",1
649
+ "For you",1
650
+ "Form",1
651
+ "Free",1
652
+ "Free access",1
653
+ "Free bonus",1
654
+ "Free cell phone",1
655
+ "Free consultation",1
656
+ "Free DVD",1
657
+ "Free gift",1
658
+ "Free grant money",1
659
+ "Free hosting",1
660
+ "Free info",1
661
+ "Free information",1
662
+ "Free installation",1
663
+ "Free instant",1
664
+ "Free investment",1
665
+ "Free iPhone",1
666
+ "Free leads",1
667
+ "Free Macbook",1
668
+ "Free membership",1
669
+ "Free money",1
670
+ "Free offer",1
671
+ "Free preview",1
672
+ "Free priority mail",1
673
+ "Free quote",1
674
+ "Free sample",1
675
+ "Free trial",1
676
+ "Free website",1
677
+ "Freedom",1
678
+ "Friend",1
679
+ "Full refund",1
680
+ "Get",1
681
+ "Get it now",1
682
+ "Get out of debt",1
683
+ "Get paid",1
684
+ "Get started now",1
685
+ "Gift certificate",1
686
+ "Give it away",1
687
+ "Giving away",1
688
+ "Great",1
689
+ "Great deal",1
690
+ "Great offer",1
691
+ "Guarantee",1
692
+ "Guaranteed",1
693
+ "Guaranteed deposit",1
694
+ "Guaranteed income",1
695
+ "Guaranteed payment",1
696
+ "Have you been turned down?",1
697
+ "Hello",1
698
+ "Here",1
699
+ "Hidden",1
700
+ "Hidden assets",1
701
+ "Hidden charges",1
702
+ "Hidden fees",1
703
+ "High score",1
704
+ "Home",1
705
+ "Home based",1
706
+ "Home employment",1
707
+ "Home based business",1
708
+ "Human growth hormone",1
709
+ "Huge discount",1
710
+ "Hurry up",1
711
+ "If only it were that easy",1
712
+ "Important information regarding",1
713
+ "Important notification",1
714
+ "In accordance with laws",1
715
+ "Income",1
716
+ "Income from home",1
717
+ "Increase sales",1
718
+ "Increase traffic",1
719
+ "Increase your chances",1
720
+ "Increase your sales",1
721
+ "Incredible deal",1
722
+ "Info you requested",1
723
+ "Information you requested",1
724
+ "Instant",1
725
+ "Instant earnings",1
726
+ "Instant income",1
727
+ "Insurance",1
728
+ "Internet market",1
729
+ "Internet marketing",1
730
+ "Investment",1
731
+ "Investment decision",1
732
+ "It’s effective",1
733
+ "Join millions",1
734
+ "Join millions of Americans",1
735
+ "Junk",1
736
+ "Laser printer",1
737
+ "Leave",1
738
+ "Legal",1
739
+ "Legal notice",1
740
+ "Life",1
741
+ "Life Insurance",1
742
+ "Lifetime",1
743
+ "Lifetime access",1
744
+ "Lifetime deal",1
745
+ "Limited amount",1
746
+ "Limited number",1
747
+ "Limited offer",1
748
+ "Limited supply",1
749
+ "Limited time",1
750
+ "Limited time offer",1
751
+ "Limited time only",1
752
+ "Loan",1
753
+ "Long distance phone offer",1
754
+ "Lose",1
755
+ "Lose weight",1
756
+ "Lose weight spam",1
757
+ "Lower interest rates",1
758
+ "Lower monthly payment",1
759
+ "Lower your mortgage rate",1
760
+ "Lowest insurance rates",1
761
+ "Lowest price",1
762
+ "Lowest rate",1
763
+ "Luxury",1
764
+ "Luxury car",1
765
+ "Mail in order form",1
766
+ "Maintained",1
767
+ "Make $",1
768
+ "Make money",1
769
+ "Marketing",1
770
+ "Marketing solutions",1
771
+ "Mass email",1
772
+ "Medicine",1
773
+ "Medium",1
774
+ "Meet girls",1
775
+ "Meet me",1
776
+ "Meet singles",1
777
+ "Meet women",1
778
+ "Member",1
779
+ "Member stuff",1
780
+ "Message contains",1
781
+ "Message contains disclaimer",1
782
+ "Million",1
783
+ "Millionaire",1
784
+ "Million dollars",1
785
+ "Miracle",1
786
+ "MLM",1
787
+ "Money",1
788
+ "Money back",1
789
+ "Money making",1
790
+ "Month trial offer",1
791
+ "More Internet Traffic",1
792
+ "Mortgage",1
793
+ "Mortgage rates",1
794
+ "Multi-level marketing",1
795
+ "Name brand",1
796
+ "Never",1
797
+ "Never before",1
798
+ "New customers only",1
799
+ "New domain extensions",1
800
+ "Nigerian",1
801
+ "No age restrictions",1
802
+ "No catch",1
803
+ "No claim forms",1
804
+ "No cost",1
805
+ "No credit check",1
806
+ "No deposit required",1
807
+ "No disappointment",1
808
+ "No experience",1
809
+ "No fees",1
810
+ "No gimmick",1
811
+ "No hidden",1
812
+ "No hidden сosts",1
813
+ "No hidden fees",1
814
+ "No interests",1
815
+ "No inventory",1
816
+ "No investment",1
817
+ "No investment required",1
818
+ "No medical exams",1
819
+ "No middleman",1
820
+ "No obligation",1
821
+ "No payment required",1
822
+ "No purchase necessary",1
823
+ "No questions asked",1
824
+ "No selling",1
825
+ "No strings attached",1
826
+ "No-obligation",1
827
+ "Not intended",1
828
+ "Not junk",1
829
+ "Not scam",1
830
+ "Not spam",1
831
+ "Now",1
832
+ "Now only",1
833
+ "Number 1",1
834
+ "Number one",1
835
+ "Obligation",1
836
+ "Offshore",1
837
+ "Offer",1
838
+ "Offer expires",1
839
+ "Once in lifetime",1
840
+ "Once in a lifetime",1
841
+ "One hundred percent free",1
842
+ "One hundred percent guaranteed",1
843
+ "One time",1
844
+ "One time mailing",1
845
+ "Online biz opportunity",1
846
+ "Online degree",1
847
+ "Online job",1
848
+ "Online income",1
849
+ "Online marketing",1
850
+ "Online pharmacy",1
851
+ "Only",1
852
+ "Only $",1
853
+ "Open Opportunity",1
854
+ "Opt in",1
855
+ "Order",1
856
+ "Order now",1
857
+ "Order shipped by",1
858
+ "Order status",1
859
+ "Order today",1
860
+ "Outstanding values",1
861
+ "Passwords",1
862
+ "Pennies a day",1
863
+ "Per day",1
864
+ "Per month",1
865
+ "Per week",1
866
+ "Performance",1
867
+ "Phone",1
868
+ "Please read",1
869
+ "Potential earnings",1
870
+ "Pre-approved",1
871
+ "Presently",1
872
+ "Price",1
873
+ "Price protection",1
874
+ "Print form signature",1
875
+ "Print out and fax",1
876
+ "Priority mail",1
877
+ "Prize",1
878
+ "Problem",1
879
+ "Produced and sent out",1
880
+ "Profits",1
881
+ "Promise",1
882
+ "Promise you",1
883
+ "Purchase",1
884
+ "Pure profits",1
885
+ "Quote",1
886
+ "Rates",1
887
+ "Real thing",1
888
+ "Refinance",1
889
+ "Refinance home",1
890
+ "Refund",1
891
+ "Removal",1
892
+ "Removal instructions",1
893
+ "Remove",1
894
+ "Removes wrinkles",1
895
+ "Request",1
896
+ "Request now",1
897
+ "Request today",1
898
+ "Requires initial investment",1
899
+ "Reserves the right",1
900
+ "Reverses",1
901
+ "Reverses aging",1
902
+ "Risk free",1
903
+ "Risk-free",1
904
+ "Rolex",1
905
+ "Round the world",1
906
+ "Safeguard notice",1
907
+ "Sale",1
908
+ "Sample",1
909
+ "Satisfaction",1
910
+ "Satisfaction guaranteed",1
911
+ "Save $",1
912
+ "Save money",1
913
+ "Save now",1
914
+ "Save big money",1
915
+ "Save up to",1
916
+ "Score",1
917
+ "Score with babes",1
918
+ "Search engine listings",1
919
+ "Search engines",1
920
+ "Section 301",1
921
+ "See for yourself",1
922
+ "Sent in compliance",1
923
+ "Serious",1
924
+ "Serious cash",1
925
+ "Serious only",1
926
+ "Serious offer",1
927
+ "Shopper",1
928
+ "Shopping spree",1
929
+ "Sign up free today",1
930
+ "Social security number",1
931
+ "Solution",1
932
+ "Spam",1
933
+ "Special deal",1
934
+ "Special discount",1
935
+ "Special for you",1
936
+ "Special offer",1
937
+ "Special promotion",1
938
+ "Stainless steel",1
939
+ "Stock alert",1
940
+ "Stock disclaimer statement",1
941
+ "Stock pick",1
942
+ "Stop",1
943
+ "Stop calling me",1
944
+ "Stop emailing me",1
945
+ "Stop snoring",1
946
+ "Strong buy",1
947
+ "Stuff on sale",1
948
+ "Subject to cash",1
949
+ "Subject to credit",1
950
+ "Subscribe",1
951
+ "Subscribe now",1
952
+ "Subscribe for free",1
953
+ "Success",1
954
+ "Supplies",1
955
+ "Supplies are limited",1
956
+ "Take action",1
957
+ "Take action now",1
958
+ "Talks about hidden charges",1
959
+ "Talks about prizes",1
960
+ "Teen",1
961
+ "Tells you it’s an ad",1
962
+ "Terms",1
963
+ "Terms and conditions",1
964
+ "The best rates",1
965
+ "The following form",1
966
+ "They keep your money — no refund!",1
967
+ "They’re just giving it away",1
968
+ "This isn’t a scam",1
969
+ "This isn’t junk",1
970
+ "This isn’t spam",1
971
+ "This won’t last",1
972
+ "Thousands",1
973
+ "Time limited",1
974
+ "Traffic",1
975
+ "Trial",1
976
+ "Undisclosed recipient",1
977
+ "University diplomas",1
978
+ "Unlimited",1
979
+ "Unsecured credit",1
980
+ "Unsecured debt",1
981
+ "Unsolicited",1
982
+ "Unsubscribe",1
983
+ "Urgent",1
984
+ "US dollars",1
985
+ "Vacation",1
986
+ "Vacation offers",1
987
+ "Valium",1
988
+ "Viagra",1
989
+ "Vicodin",1
990
+ "VIP",1
991
+ "Visit our website",1
992
+ "Wants credit card",1
993
+ "Warranty",1
994
+ "Warranty expired",1
995
+ "We hate spam",1
996
+ "We honor all",1
997
+ "Web traffic",1
998
+ "Website visitors",1
999
+ "Weekend getaway",1
1000
+ "Weight",1
1001
+ "Weight loss",1
1002
+ "What are you waiting for?",1
1003
+ "What’s keeping you?",1
1004
+ "While available",1
1005
+ "While in stock",1
1006
+ "While supplies last",1
1007
+ "While you sleep",1
1008
+ "Who really wins?",1
1009
+ "Why pay more?",1
1010
+ "Wife",1
1011
+ "Will not believe your eyes",1
1012
+ "Win",1
1013
+ "Winner",1
1014
+ "Winning",1
1015
+ "Won",1
1016
+ "Work from home",1
1017
+ "Xanax",1
1018
+ "You are a winner!",1
1019
+ "You have been chosen",1
1020
+ "You have been selected",1
1021
+ "Your chance",1
1022
+ "Your income",1
1023
+ "Your status",1
1024
+ "Zero chance",1
1025
+ "Zero percent",1
1026
+ "Zero risk",1
1027
+ "Act now!",1
1028
+ "Apply now!",1
1029
+ "Call now!",1
1030
+ "Don’t hesitate!",1
1031
+ "For only",1
1032
+ "Get started now",1
1033
+ "Limited time",1
1034
+ "Great offer",1
1035
+ "Instant",1
1036
+ "Now only",1
1037
+ "Offer expires",1
1038
+ "Once in a lifetime",1
1039
+ "Order now",1
1040
+ "Order today",1
1041
+ "Special promotion",1
1042
+ "Urgent",1
1043
+ "While supplies last",1
1044
+ "Bonus",1
1045
+ "All new",1
1046
+ "Amazing",1
1047
+ "Certified",1
1048
+ "Congratulations",1
1049
+ "Fantastic deal",1
1050
+ "For free",1
1051
+ "Guaranteed",1
1052
+ "Outstanding value",1
1053
+ "Risk free",1
1054
+ "Satisfaction guaranteed",1
1055
+ "Free",1
1056
+ "Free!",1
1057
+ "Free trial",1
1058
+ "Free consultation",1
1059
+ "Free gift",1
1060
+ "Free membership",1
1061
+ "Free offer",1
1062
+ "Free preview",1
1063
+ "Free sample",1
1064
+ "Free quote",1
1065
+ "Sign up free today",1
1066
+ "Deal",1
1067
+ "Giving away",1
1068
+ "No obligation",1
1069
+ "No strings attached",1
1070
+ "Offer",1
1071
+ "Prize",1
1072
+ "Trial",1
1073
+ "Unlimited",1
1074
+ "What are you waiting for?",1
1075
+ "Win",1
1076
+ "Winner",1
1077
+ "You’re a winner! Won",1
1078
+ "You have been selected",1
1079
+ "#1",1
1080
+ "100% free",1
1081
+ "100% satisfied",1
1082
+ "50% off",1
1083
+ "One hundred percent guaranteed",1
1084
+ "Click below",1
1085
+ "Click here",1
1086
+ "Increase sales",1
1087
+ "Increase your sales",1
1088
+ "Opt in",1
1089
+ "Open",1
1090
+ "Sale",1
1091
+ "Sales",1
1092
+ "Subscribe",1
1093
+ "Chance",1
1094
+ "Sample",1
1095
+ "Satisfaction",1
1096
+ "Solution",1
1097
+ "Success",1
1098
+ "Cards accepted",1
1099
+ "Full refund",1
1100
+ "Affordable",1
1101
+ "Bargain",1
1102
+ "Best price",1
1103
+ "Cash",1
1104
+ "Cash bonus",1
1105
+ "Cheap",1
1106
+ "Credit",1
1107
+ "Discount",1
1108
+ "For just $",1
1109
+ "Lowest price",1
1110
+ "Save big money",1
1111
+ "Why pay more?",1
1112
+ "Buy",1
1113
+ "As seen on",1
1114
+ "Buy direct",1
1115
+ "Clearance",1
1116
+ "Order",1
1117
+ "$$$",1
1118
+ "Marketing solutions",1
1119
+ "Join millions",1
1120
+ "Name brand",1
1121
+ "No questions asked",1
1122
+ "Giving it away",1
1123
+ "Best rates",1
1124
+ "Compare",1
1125
+ "Drastically reduced",1
datasets/diabetes.csv ADDED
@@ -0,0 +1,769 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Pregnancies,Glucose,BloodPressure,SkinThickness,Insulin,BMI,DiabetesPedigreeFunction,Age,Outcome
2
+ 6,148,72,35,0,33.6,0.627,50,1
3
+ 1,85,66,29,0,26.6,0.351,31,0
4
+ 8,183,64,0,0,23.3,0.672,32,1
5
+ 1,89,66,23,94,28.1,0.167,21,0
6
+ 0,137,40,35,168,43.1,2.288,33,1
7
+ 5,116,74,0,0,25.6,0.201,30,0
8
+ 3,78,50,32,88,31,0.248,26,1
9
+ 10,115,0,0,0,35.3,0.134,29,0
10
+ 2,197,70,45,543,30.5,0.158,53,1
11
+ 8,125,96,0,0,0,0.232,54,1
12
+ 4,110,92,0,0,37.6,0.191,30,0
13
+ 10,168,74,0,0,38,0.537,34,1
14
+ 10,139,80,0,0,27.1,1.441,57,0
15
+ 1,189,60,23,846,30.1,0.398,59,1
16
+ 5,166,72,19,175,25.8,0.587,51,1
17
+ 7,100,0,0,0,30,0.484,32,1
18
+ 0,118,84,47,230,45.8,0.551,31,1
19
+ 7,107,74,0,0,29.6,0.254,31,1
20
+ 1,103,30,38,83,43.3,0.183,33,0
21
+ 1,115,70,30,96,34.6,0.529,32,1
22
+ 3,126,88,41,235,39.3,0.704,27,0
23
+ 8,99,84,0,0,35.4,0.388,50,0
24
+ 7,196,90,0,0,39.8,0.451,41,1
25
+ 9,119,80,35,0,29,0.263,29,1
26
+ 11,143,94,33,146,36.6,0.254,51,1
27
+ 10,125,70,26,115,31.1,0.205,41,1
28
+ 7,147,76,0,0,39.4,0.257,43,1
29
+ 1,97,66,15,140,23.2,0.487,22,0
30
+ 13,145,82,19,110,22.2,0.245,57,0
31
+ 5,117,92,0,0,34.1,0.337,38,0
32
+ 5,109,75,26,0,36,0.546,60,0
33
+ 3,158,76,36,245,31.6,0.851,28,1
34
+ 3,88,58,11,54,24.8,0.267,22,0
35
+ 6,92,92,0,0,19.9,0.188,28,0
36
+ 10,122,78,31,0,27.6,0.512,45,0
37
+ 4,103,60,33,192,24,0.966,33,0
38
+ 11,138,76,0,0,33.2,0.42,35,0
39
+ 9,102,76,37,0,32.9,0.665,46,1
40
+ 2,90,68,42,0,38.2,0.503,27,1
41
+ 4,111,72,47,207,37.1,1.39,56,1
42
+ 3,180,64,25,70,34,0.271,26,0
43
+ 7,133,84,0,0,40.2,0.696,37,0
44
+ 7,106,92,18,0,22.7,0.235,48,0
45
+ 9,171,110,24,240,45.4,0.721,54,1
46
+ 7,159,64,0,0,27.4,0.294,40,0
47
+ 0,180,66,39,0,42,1.893,25,1
48
+ 1,146,56,0,0,29.7,0.564,29,0
49
+ 2,71,70,27,0,28,0.586,22,0
50
+ 7,103,66,32,0,39.1,0.344,31,1
51
+ 7,105,0,0,0,0,0.305,24,0
52
+ 1,103,80,11,82,19.4,0.491,22,0
53
+ 1,101,50,15,36,24.2,0.526,26,0
54
+ 5,88,66,21,23,24.4,0.342,30,0
55
+ 8,176,90,34,300,33.7,0.467,58,1
56
+ 7,150,66,42,342,34.7,0.718,42,0
57
+ 1,73,50,10,0,23,0.248,21,0
58
+ 7,187,68,39,304,37.7,0.254,41,1
59
+ 0,100,88,60,110,46.8,0.962,31,0
60
+ 0,146,82,0,0,40.5,1.781,44,0
61
+ 0,105,64,41,142,41.5,0.173,22,0
62
+ 2,84,0,0,0,0,0.304,21,0
63
+ 8,133,72,0,0,32.9,0.27,39,1
64
+ 5,44,62,0,0,25,0.587,36,0
65
+ 2,141,58,34,128,25.4,0.699,24,0
66
+ 7,114,66,0,0,32.8,0.258,42,1
67
+ 5,99,74,27,0,29,0.203,32,0
68
+ 0,109,88,30,0,32.5,0.855,38,1
69
+ 2,109,92,0,0,42.7,0.845,54,0
70
+ 1,95,66,13,38,19.6,0.334,25,0
71
+ 4,146,85,27,100,28.9,0.189,27,0
72
+ 2,100,66,20,90,32.9,0.867,28,1
73
+ 5,139,64,35,140,28.6,0.411,26,0
74
+ 13,126,90,0,0,43.4,0.583,42,1
75
+ 4,129,86,20,270,35.1,0.231,23,0
76
+ 1,79,75,30,0,32,0.396,22,0
77
+ 1,0,48,20,0,24.7,0.14,22,0
78
+ 7,62,78,0,0,32.6,0.391,41,0
79
+ 5,95,72,33,0,37.7,0.37,27,0
80
+ 0,131,0,0,0,43.2,0.27,26,1
81
+ 2,112,66,22,0,25,0.307,24,0
82
+ 3,113,44,13,0,22.4,0.14,22,0
83
+ 2,74,0,0,0,0,0.102,22,0
84
+ 7,83,78,26,71,29.3,0.767,36,0
85
+ 0,101,65,28,0,24.6,0.237,22,0
86
+ 5,137,108,0,0,48.8,0.227,37,1
87
+ 2,110,74,29,125,32.4,0.698,27,0
88
+ 13,106,72,54,0,36.6,0.178,45,0
89
+ 2,100,68,25,71,38.5,0.324,26,0
90
+ 15,136,70,32,110,37.1,0.153,43,1
91
+ 1,107,68,19,0,26.5,0.165,24,0
92
+ 1,80,55,0,0,19.1,0.258,21,0
93
+ 4,123,80,15,176,32,0.443,34,0
94
+ 7,81,78,40,48,46.7,0.261,42,0
95
+ 4,134,72,0,0,23.8,0.277,60,1
96
+ 2,142,82,18,64,24.7,0.761,21,0
97
+ 6,144,72,27,228,33.9,0.255,40,0
98
+ 2,92,62,28,0,31.6,0.13,24,0
99
+ 1,71,48,18,76,20.4,0.323,22,0
100
+ 6,93,50,30,64,28.7,0.356,23,0
101
+ 1,122,90,51,220,49.7,0.325,31,1
102
+ 1,163,72,0,0,39,1.222,33,1
103
+ 1,151,60,0,0,26.1,0.179,22,0
104
+ 0,125,96,0,0,22.5,0.262,21,0
105
+ 1,81,72,18,40,26.6,0.283,24,0
106
+ 2,85,65,0,0,39.6,0.93,27,0
107
+ 1,126,56,29,152,28.7,0.801,21,0
108
+ 1,96,122,0,0,22.4,0.207,27,0
109
+ 4,144,58,28,140,29.5,0.287,37,0
110
+ 3,83,58,31,18,34.3,0.336,25,0
111
+ 0,95,85,25,36,37.4,0.247,24,1
112
+ 3,171,72,33,135,33.3,0.199,24,1
113
+ 8,155,62,26,495,34,0.543,46,1
114
+ 1,89,76,34,37,31.2,0.192,23,0
115
+ 4,76,62,0,0,34,0.391,25,0
116
+ 7,160,54,32,175,30.5,0.588,39,1
117
+ 4,146,92,0,0,31.2,0.539,61,1
118
+ 5,124,74,0,0,34,0.22,38,1
119
+ 5,78,48,0,0,33.7,0.654,25,0
120
+ 4,97,60,23,0,28.2,0.443,22,0
121
+ 4,99,76,15,51,23.2,0.223,21,0
122
+ 0,162,76,56,100,53.2,0.759,25,1
123
+ 6,111,64,39,0,34.2,0.26,24,0
124
+ 2,107,74,30,100,33.6,0.404,23,0
125
+ 5,132,80,0,0,26.8,0.186,69,0
126
+ 0,113,76,0,0,33.3,0.278,23,1
127
+ 1,88,30,42,99,55,0.496,26,1
128
+ 3,120,70,30,135,42.9,0.452,30,0
129
+ 1,118,58,36,94,33.3,0.261,23,0
130
+ 1,117,88,24,145,34.5,0.403,40,1
131
+ 0,105,84,0,0,27.9,0.741,62,1
132
+ 4,173,70,14,168,29.7,0.361,33,1
133
+ 9,122,56,0,0,33.3,1.114,33,1
134
+ 3,170,64,37,225,34.5,0.356,30,1
135
+ 8,84,74,31,0,38.3,0.457,39,0
136
+ 2,96,68,13,49,21.1,0.647,26,0
137
+ 2,125,60,20,140,33.8,0.088,31,0
138
+ 0,100,70,26,50,30.8,0.597,21,0
139
+ 0,93,60,25,92,28.7,0.532,22,0
140
+ 0,129,80,0,0,31.2,0.703,29,0
141
+ 5,105,72,29,325,36.9,0.159,28,0
142
+ 3,128,78,0,0,21.1,0.268,55,0
143
+ 5,106,82,30,0,39.5,0.286,38,0
144
+ 2,108,52,26,63,32.5,0.318,22,0
145
+ 10,108,66,0,0,32.4,0.272,42,1
146
+ 4,154,62,31,284,32.8,0.237,23,0
147
+ 0,102,75,23,0,0,0.572,21,0
148
+ 9,57,80,37,0,32.8,0.096,41,0
149
+ 2,106,64,35,119,30.5,1.4,34,0
150
+ 5,147,78,0,0,33.7,0.218,65,0
151
+ 2,90,70,17,0,27.3,0.085,22,0
152
+ 1,136,74,50,204,37.4,0.399,24,0
153
+ 4,114,65,0,0,21.9,0.432,37,0
154
+ 9,156,86,28,155,34.3,1.189,42,1
155
+ 1,153,82,42,485,40.6,0.687,23,0
156
+ 8,188,78,0,0,47.9,0.137,43,1
157
+ 7,152,88,44,0,50,0.337,36,1
158
+ 2,99,52,15,94,24.6,0.637,21,0
159
+ 1,109,56,21,135,25.2,0.833,23,0
160
+ 2,88,74,19,53,29,0.229,22,0
161
+ 17,163,72,41,114,40.9,0.817,47,1
162
+ 4,151,90,38,0,29.7,0.294,36,0
163
+ 7,102,74,40,105,37.2,0.204,45,0
164
+ 0,114,80,34,285,44.2,0.167,27,0
165
+ 2,100,64,23,0,29.7,0.368,21,0
166
+ 0,131,88,0,0,31.6,0.743,32,1
167
+ 6,104,74,18,156,29.9,0.722,41,1
168
+ 3,148,66,25,0,32.5,0.256,22,0
169
+ 4,120,68,0,0,29.6,0.709,34,0
170
+ 4,110,66,0,0,31.9,0.471,29,0
171
+ 3,111,90,12,78,28.4,0.495,29,0
172
+ 6,102,82,0,0,30.8,0.18,36,1
173
+ 6,134,70,23,130,35.4,0.542,29,1
174
+ 2,87,0,23,0,28.9,0.773,25,0
175
+ 1,79,60,42,48,43.5,0.678,23,0
176
+ 2,75,64,24,55,29.7,0.37,33,0
177
+ 8,179,72,42,130,32.7,0.719,36,1
178
+ 6,85,78,0,0,31.2,0.382,42,0
179
+ 0,129,110,46,130,67.1,0.319,26,1
180
+ 5,143,78,0,0,45,0.19,47,0
181
+ 5,130,82,0,0,39.1,0.956,37,1
182
+ 6,87,80,0,0,23.2,0.084,32,0
183
+ 0,119,64,18,92,34.9,0.725,23,0
184
+ 1,0,74,20,23,27.7,0.299,21,0
185
+ 5,73,60,0,0,26.8,0.268,27,0
186
+ 4,141,74,0,0,27.6,0.244,40,0
187
+ 7,194,68,28,0,35.9,0.745,41,1
188
+ 8,181,68,36,495,30.1,0.615,60,1
189
+ 1,128,98,41,58,32,1.321,33,1
190
+ 8,109,76,39,114,27.9,0.64,31,1
191
+ 5,139,80,35,160,31.6,0.361,25,1
192
+ 3,111,62,0,0,22.6,0.142,21,0
193
+ 9,123,70,44,94,33.1,0.374,40,0
194
+ 7,159,66,0,0,30.4,0.383,36,1
195
+ 11,135,0,0,0,52.3,0.578,40,1
196
+ 8,85,55,20,0,24.4,0.136,42,0
197
+ 5,158,84,41,210,39.4,0.395,29,1
198
+ 1,105,58,0,0,24.3,0.187,21,0
199
+ 3,107,62,13,48,22.9,0.678,23,1
200
+ 4,109,64,44,99,34.8,0.905,26,1
201
+ 4,148,60,27,318,30.9,0.15,29,1
202
+ 0,113,80,16,0,31,0.874,21,0
203
+ 1,138,82,0,0,40.1,0.236,28,0
204
+ 0,108,68,20,0,27.3,0.787,32,0
205
+ 2,99,70,16,44,20.4,0.235,27,0
206
+ 6,103,72,32,190,37.7,0.324,55,0
207
+ 5,111,72,28,0,23.9,0.407,27,0
208
+ 8,196,76,29,280,37.5,0.605,57,1
209
+ 5,162,104,0,0,37.7,0.151,52,1
210
+ 1,96,64,27,87,33.2,0.289,21,0
211
+ 7,184,84,33,0,35.5,0.355,41,1
212
+ 2,81,60,22,0,27.7,0.29,25,0
213
+ 0,147,85,54,0,42.8,0.375,24,0
214
+ 7,179,95,31,0,34.2,0.164,60,0
215
+ 0,140,65,26,130,42.6,0.431,24,1
216
+ 9,112,82,32,175,34.2,0.26,36,1
217
+ 12,151,70,40,271,41.8,0.742,38,1
218
+ 5,109,62,41,129,35.8,0.514,25,1
219
+ 6,125,68,30,120,30,0.464,32,0
220
+ 5,85,74,22,0,29,1.224,32,1
221
+ 5,112,66,0,0,37.8,0.261,41,1
222
+ 0,177,60,29,478,34.6,1.072,21,1
223
+ 2,158,90,0,0,31.6,0.805,66,1
224
+ 7,119,0,0,0,25.2,0.209,37,0
225
+ 7,142,60,33,190,28.8,0.687,61,0
226
+ 1,100,66,15,56,23.6,0.666,26,0
227
+ 1,87,78,27,32,34.6,0.101,22,0
228
+ 0,101,76,0,0,35.7,0.198,26,0
229
+ 3,162,52,38,0,37.2,0.652,24,1
230
+ 4,197,70,39,744,36.7,2.329,31,0
231
+ 0,117,80,31,53,45.2,0.089,24,0
232
+ 4,142,86,0,0,44,0.645,22,1
233
+ 6,134,80,37,370,46.2,0.238,46,1
234
+ 1,79,80,25,37,25.4,0.583,22,0
235
+ 4,122,68,0,0,35,0.394,29,0
236
+ 3,74,68,28,45,29.7,0.293,23,0
237
+ 4,171,72,0,0,43.6,0.479,26,1
238
+ 7,181,84,21,192,35.9,0.586,51,1
239
+ 0,179,90,27,0,44.1,0.686,23,1
240
+ 9,164,84,21,0,30.8,0.831,32,1
241
+ 0,104,76,0,0,18.4,0.582,27,0
242
+ 1,91,64,24,0,29.2,0.192,21,0
243
+ 4,91,70,32,88,33.1,0.446,22,0
244
+ 3,139,54,0,0,25.6,0.402,22,1
245
+ 6,119,50,22,176,27.1,1.318,33,1
246
+ 2,146,76,35,194,38.2,0.329,29,0
247
+ 9,184,85,15,0,30,1.213,49,1
248
+ 10,122,68,0,0,31.2,0.258,41,0
249
+ 0,165,90,33,680,52.3,0.427,23,0
250
+ 9,124,70,33,402,35.4,0.282,34,0
251
+ 1,111,86,19,0,30.1,0.143,23,0
252
+ 9,106,52,0,0,31.2,0.38,42,0
253
+ 2,129,84,0,0,28,0.284,27,0
254
+ 2,90,80,14,55,24.4,0.249,24,0
255
+ 0,86,68,32,0,35.8,0.238,25,0
256
+ 12,92,62,7,258,27.6,0.926,44,1
257
+ 1,113,64,35,0,33.6,0.543,21,1
258
+ 3,111,56,39,0,30.1,0.557,30,0
259
+ 2,114,68,22,0,28.7,0.092,25,0
260
+ 1,193,50,16,375,25.9,0.655,24,0
261
+ 11,155,76,28,150,33.3,1.353,51,1
262
+ 3,191,68,15,130,30.9,0.299,34,0
263
+ 3,141,0,0,0,30,0.761,27,1
264
+ 4,95,70,32,0,32.1,0.612,24,0
265
+ 3,142,80,15,0,32.4,0.2,63,0
266
+ 4,123,62,0,0,32,0.226,35,1
267
+ 5,96,74,18,67,33.6,0.997,43,0
268
+ 0,138,0,0,0,36.3,0.933,25,1
269
+ 2,128,64,42,0,40,1.101,24,0
270
+ 0,102,52,0,0,25.1,0.078,21,0
271
+ 2,146,0,0,0,27.5,0.24,28,1
272
+ 10,101,86,37,0,45.6,1.136,38,1
273
+ 2,108,62,32,56,25.2,0.128,21,0
274
+ 3,122,78,0,0,23,0.254,40,0
275
+ 1,71,78,50,45,33.2,0.422,21,0
276
+ 13,106,70,0,0,34.2,0.251,52,0
277
+ 2,100,70,52,57,40.5,0.677,25,0
278
+ 7,106,60,24,0,26.5,0.296,29,1
279
+ 0,104,64,23,116,27.8,0.454,23,0
280
+ 5,114,74,0,0,24.9,0.744,57,0
281
+ 2,108,62,10,278,25.3,0.881,22,0
282
+ 0,146,70,0,0,37.9,0.334,28,1
283
+ 10,129,76,28,122,35.9,0.28,39,0
284
+ 7,133,88,15,155,32.4,0.262,37,0
285
+ 7,161,86,0,0,30.4,0.165,47,1
286
+ 2,108,80,0,0,27,0.259,52,1
287
+ 7,136,74,26,135,26,0.647,51,0
288
+ 5,155,84,44,545,38.7,0.619,34,0
289
+ 1,119,86,39,220,45.6,0.808,29,1
290
+ 4,96,56,17,49,20.8,0.34,26,0
291
+ 5,108,72,43,75,36.1,0.263,33,0
292
+ 0,78,88,29,40,36.9,0.434,21,0
293
+ 0,107,62,30,74,36.6,0.757,25,1
294
+ 2,128,78,37,182,43.3,1.224,31,1
295
+ 1,128,48,45,194,40.5,0.613,24,1
296
+ 0,161,50,0,0,21.9,0.254,65,0
297
+ 6,151,62,31,120,35.5,0.692,28,0
298
+ 2,146,70,38,360,28,0.337,29,1
299
+ 0,126,84,29,215,30.7,0.52,24,0
300
+ 14,100,78,25,184,36.6,0.412,46,1
301
+ 8,112,72,0,0,23.6,0.84,58,0
302
+ 0,167,0,0,0,32.3,0.839,30,1
303
+ 2,144,58,33,135,31.6,0.422,25,1
304
+ 5,77,82,41,42,35.8,0.156,35,0
305
+ 5,115,98,0,0,52.9,0.209,28,1
306
+ 3,150,76,0,0,21,0.207,37,0
307
+ 2,120,76,37,105,39.7,0.215,29,0
308
+ 10,161,68,23,132,25.5,0.326,47,1
309
+ 0,137,68,14,148,24.8,0.143,21,0
310
+ 0,128,68,19,180,30.5,1.391,25,1
311
+ 2,124,68,28,205,32.9,0.875,30,1
312
+ 6,80,66,30,0,26.2,0.313,41,0
313
+ 0,106,70,37,148,39.4,0.605,22,0
314
+ 2,155,74,17,96,26.6,0.433,27,1
315
+ 3,113,50,10,85,29.5,0.626,25,0
316
+ 7,109,80,31,0,35.9,1.127,43,1
317
+ 2,112,68,22,94,34.1,0.315,26,0
318
+ 3,99,80,11,64,19.3,0.284,30,0
319
+ 3,182,74,0,0,30.5,0.345,29,1
320
+ 3,115,66,39,140,38.1,0.15,28,0
321
+ 6,194,78,0,0,23.5,0.129,59,1
322
+ 4,129,60,12,231,27.5,0.527,31,0
323
+ 3,112,74,30,0,31.6,0.197,25,1
324
+ 0,124,70,20,0,27.4,0.254,36,1
325
+ 13,152,90,33,29,26.8,0.731,43,1
326
+ 2,112,75,32,0,35.7,0.148,21,0
327
+ 1,157,72,21,168,25.6,0.123,24,0
328
+ 1,122,64,32,156,35.1,0.692,30,1
329
+ 10,179,70,0,0,35.1,0.2,37,0
330
+ 2,102,86,36,120,45.5,0.127,23,1
331
+ 6,105,70,32,68,30.8,0.122,37,0
332
+ 8,118,72,19,0,23.1,1.476,46,0
333
+ 2,87,58,16,52,32.7,0.166,25,0
334
+ 1,180,0,0,0,43.3,0.282,41,1
335
+ 12,106,80,0,0,23.6,0.137,44,0
336
+ 1,95,60,18,58,23.9,0.26,22,0
337
+ 0,165,76,43,255,47.9,0.259,26,0
338
+ 0,117,0,0,0,33.8,0.932,44,0
339
+ 5,115,76,0,0,31.2,0.343,44,1
340
+ 9,152,78,34,171,34.2,0.893,33,1
341
+ 7,178,84,0,0,39.9,0.331,41,1
342
+ 1,130,70,13,105,25.9,0.472,22,0
343
+ 1,95,74,21,73,25.9,0.673,36,0
344
+ 1,0,68,35,0,32,0.389,22,0
345
+ 5,122,86,0,0,34.7,0.29,33,0
346
+ 8,95,72,0,0,36.8,0.485,57,0
347
+ 8,126,88,36,108,38.5,0.349,49,0
348
+ 1,139,46,19,83,28.7,0.654,22,0
349
+ 3,116,0,0,0,23.5,0.187,23,0
350
+ 3,99,62,19,74,21.8,0.279,26,0
351
+ 5,0,80,32,0,41,0.346,37,1
352
+ 4,92,80,0,0,42.2,0.237,29,0
353
+ 4,137,84,0,0,31.2,0.252,30,0
354
+ 3,61,82,28,0,34.4,0.243,46,0
355
+ 1,90,62,12,43,27.2,0.58,24,0
356
+ 3,90,78,0,0,42.7,0.559,21,0
357
+ 9,165,88,0,0,30.4,0.302,49,1
358
+ 1,125,50,40,167,33.3,0.962,28,1
359
+ 13,129,0,30,0,39.9,0.569,44,1
360
+ 12,88,74,40,54,35.3,0.378,48,0
361
+ 1,196,76,36,249,36.5,0.875,29,1
362
+ 5,189,64,33,325,31.2,0.583,29,1
363
+ 5,158,70,0,0,29.8,0.207,63,0
364
+ 5,103,108,37,0,39.2,0.305,65,0
365
+ 4,146,78,0,0,38.5,0.52,67,1
366
+ 4,147,74,25,293,34.9,0.385,30,0
367
+ 5,99,54,28,83,34,0.499,30,0
368
+ 6,124,72,0,0,27.6,0.368,29,1
369
+ 0,101,64,17,0,21,0.252,21,0
370
+ 3,81,86,16,66,27.5,0.306,22,0
371
+ 1,133,102,28,140,32.8,0.234,45,1
372
+ 3,173,82,48,465,38.4,2.137,25,1
373
+ 0,118,64,23,89,0,1.731,21,0
374
+ 0,84,64,22,66,35.8,0.545,21,0
375
+ 2,105,58,40,94,34.9,0.225,25,0
376
+ 2,122,52,43,158,36.2,0.816,28,0
377
+ 12,140,82,43,325,39.2,0.528,58,1
378
+ 0,98,82,15,84,25.2,0.299,22,0
379
+ 1,87,60,37,75,37.2,0.509,22,0
380
+ 4,156,75,0,0,48.3,0.238,32,1
381
+ 0,93,100,39,72,43.4,1.021,35,0
382
+ 1,107,72,30,82,30.8,0.821,24,0
383
+ 0,105,68,22,0,20,0.236,22,0
384
+ 1,109,60,8,182,25.4,0.947,21,0
385
+ 1,90,62,18,59,25.1,1.268,25,0
386
+ 1,125,70,24,110,24.3,0.221,25,0
387
+ 1,119,54,13,50,22.3,0.205,24,0
388
+ 5,116,74,29,0,32.3,0.66,35,1
389
+ 8,105,100,36,0,43.3,0.239,45,1
390
+ 5,144,82,26,285,32,0.452,58,1
391
+ 3,100,68,23,81,31.6,0.949,28,0
392
+ 1,100,66,29,196,32,0.444,42,0
393
+ 5,166,76,0,0,45.7,0.34,27,1
394
+ 1,131,64,14,415,23.7,0.389,21,0
395
+ 4,116,72,12,87,22.1,0.463,37,0
396
+ 4,158,78,0,0,32.9,0.803,31,1
397
+ 2,127,58,24,275,27.7,1.6,25,0
398
+ 3,96,56,34,115,24.7,0.944,39,0
399
+ 0,131,66,40,0,34.3,0.196,22,1
400
+ 3,82,70,0,0,21.1,0.389,25,0
401
+ 3,193,70,31,0,34.9,0.241,25,1
402
+ 4,95,64,0,0,32,0.161,31,1
403
+ 6,137,61,0,0,24.2,0.151,55,0
404
+ 5,136,84,41,88,35,0.286,35,1
405
+ 9,72,78,25,0,31.6,0.28,38,0
406
+ 5,168,64,0,0,32.9,0.135,41,1
407
+ 2,123,48,32,165,42.1,0.52,26,0
408
+ 4,115,72,0,0,28.9,0.376,46,1
409
+ 0,101,62,0,0,21.9,0.336,25,0
410
+ 8,197,74,0,0,25.9,1.191,39,1
411
+ 1,172,68,49,579,42.4,0.702,28,1
412
+ 6,102,90,39,0,35.7,0.674,28,0
413
+ 1,112,72,30,176,34.4,0.528,25,0
414
+ 1,143,84,23,310,42.4,1.076,22,0
415
+ 1,143,74,22,61,26.2,0.256,21,0
416
+ 0,138,60,35,167,34.6,0.534,21,1
417
+ 3,173,84,33,474,35.7,0.258,22,1
418
+ 1,97,68,21,0,27.2,1.095,22,0
419
+ 4,144,82,32,0,38.5,0.554,37,1
420
+ 1,83,68,0,0,18.2,0.624,27,0
421
+ 3,129,64,29,115,26.4,0.219,28,1
422
+ 1,119,88,41,170,45.3,0.507,26,0
423
+ 2,94,68,18,76,26,0.561,21,0
424
+ 0,102,64,46,78,40.6,0.496,21,0
425
+ 2,115,64,22,0,30.8,0.421,21,0
426
+ 8,151,78,32,210,42.9,0.516,36,1
427
+ 4,184,78,39,277,37,0.264,31,1
428
+ 0,94,0,0,0,0,0.256,25,0
429
+ 1,181,64,30,180,34.1,0.328,38,1
430
+ 0,135,94,46,145,40.6,0.284,26,0
431
+ 1,95,82,25,180,35,0.233,43,1
432
+ 2,99,0,0,0,22.2,0.108,23,0
433
+ 3,89,74,16,85,30.4,0.551,38,0
434
+ 1,80,74,11,60,30,0.527,22,0
435
+ 2,139,75,0,0,25.6,0.167,29,0
436
+ 1,90,68,8,0,24.5,1.138,36,0
437
+ 0,141,0,0,0,42.4,0.205,29,1
438
+ 12,140,85,33,0,37.4,0.244,41,0
439
+ 5,147,75,0,0,29.9,0.434,28,0
440
+ 1,97,70,15,0,18.2,0.147,21,0
441
+ 6,107,88,0,0,36.8,0.727,31,0
442
+ 0,189,104,25,0,34.3,0.435,41,1
443
+ 2,83,66,23,50,32.2,0.497,22,0
444
+ 4,117,64,27,120,33.2,0.23,24,0
445
+ 8,108,70,0,0,30.5,0.955,33,1
446
+ 4,117,62,12,0,29.7,0.38,30,1
447
+ 0,180,78,63,14,59.4,2.42,25,1
448
+ 1,100,72,12,70,25.3,0.658,28,0
449
+ 0,95,80,45,92,36.5,0.33,26,0
450
+ 0,104,64,37,64,33.6,0.51,22,1
451
+ 0,120,74,18,63,30.5,0.285,26,0
452
+ 1,82,64,13,95,21.2,0.415,23,0
453
+ 2,134,70,0,0,28.9,0.542,23,1
454
+ 0,91,68,32,210,39.9,0.381,25,0
455
+ 2,119,0,0,0,19.6,0.832,72,0
456
+ 2,100,54,28,105,37.8,0.498,24,0
457
+ 14,175,62,30,0,33.6,0.212,38,1
458
+ 1,135,54,0,0,26.7,0.687,62,0
459
+ 5,86,68,28,71,30.2,0.364,24,0
460
+ 10,148,84,48,237,37.6,1.001,51,1
461
+ 9,134,74,33,60,25.9,0.46,81,0
462
+ 9,120,72,22,56,20.8,0.733,48,0
463
+ 1,71,62,0,0,21.8,0.416,26,0
464
+ 8,74,70,40,49,35.3,0.705,39,0
465
+ 5,88,78,30,0,27.6,0.258,37,0
466
+ 10,115,98,0,0,24,1.022,34,0
467
+ 0,124,56,13,105,21.8,0.452,21,0
468
+ 0,74,52,10,36,27.8,0.269,22,0
469
+ 0,97,64,36,100,36.8,0.6,25,0
470
+ 8,120,0,0,0,30,0.183,38,1
471
+ 6,154,78,41,140,46.1,0.571,27,0
472
+ 1,144,82,40,0,41.3,0.607,28,0
473
+ 0,137,70,38,0,33.2,0.17,22,0
474
+ 0,119,66,27,0,38.8,0.259,22,0
475
+ 7,136,90,0,0,29.9,0.21,50,0
476
+ 4,114,64,0,0,28.9,0.126,24,0
477
+ 0,137,84,27,0,27.3,0.231,59,0
478
+ 2,105,80,45,191,33.7,0.711,29,1
479
+ 7,114,76,17,110,23.8,0.466,31,0
480
+ 8,126,74,38,75,25.9,0.162,39,0
481
+ 4,132,86,31,0,28,0.419,63,0
482
+ 3,158,70,30,328,35.5,0.344,35,1
483
+ 0,123,88,37,0,35.2,0.197,29,0
484
+ 4,85,58,22,49,27.8,0.306,28,0
485
+ 0,84,82,31,125,38.2,0.233,23,0
486
+ 0,145,0,0,0,44.2,0.63,31,1
487
+ 0,135,68,42,250,42.3,0.365,24,1
488
+ 1,139,62,41,480,40.7,0.536,21,0
489
+ 0,173,78,32,265,46.5,1.159,58,0
490
+ 4,99,72,17,0,25.6,0.294,28,0
491
+ 8,194,80,0,0,26.1,0.551,67,0
492
+ 2,83,65,28,66,36.8,0.629,24,0
493
+ 2,89,90,30,0,33.5,0.292,42,0
494
+ 4,99,68,38,0,32.8,0.145,33,0
495
+ 4,125,70,18,122,28.9,1.144,45,1
496
+ 3,80,0,0,0,0,0.174,22,0
497
+ 6,166,74,0,0,26.6,0.304,66,0
498
+ 5,110,68,0,0,26,0.292,30,0
499
+ 2,81,72,15,76,30.1,0.547,25,0
500
+ 7,195,70,33,145,25.1,0.163,55,1
501
+ 6,154,74,32,193,29.3,0.839,39,0
502
+ 2,117,90,19,71,25.2,0.313,21,0
503
+ 3,84,72,32,0,37.2,0.267,28,0
504
+ 6,0,68,41,0,39,0.727,41,1
505
+ 7,94,64,25,79,33.3,0.738,41,0
506
+ 3,96,78,39,0,37.3,0.238,40,0
507
+ 10,75,82,0,0,33.3,0.263,38,0
508
+ 0,180,90,26,90,36.5,0.314,35,1
509
+ 1,130,60,23,170,28.6,0.692,21,0
510
+ 2,84,50,23,76,30.4,0.968,21,0
511
+ 8,120,78,0,0,25,0.409,64,0
512
+ 12,84,72,31,0,29.7,0.297,46,1
513
+ 0,139,62,17,210,22.1,0.207,21,0
514
+ 9,91,68,0,0,24.2,0.2,58,0
515
+ 2,91,62,0,0,27.3,0.525,22,0
516
+ 3,99,54,19,86,25.6,0.154,24,0
517
+ 3,163,70,18,105,31.6,0.268,28,1
518
+ 9,145,88,34,165,30.3,0.771,53,1
519
+ 7,125,86,0,0,37.6,0.304,51,0
520
+ 13,76,60,0,0,32.8,0.18,41,0
521
+ 6,129,90,7,326,19.6,0.582,60,0
522
+ 2,68,70,32,66,25,0.187,25,0
523
+ 3,124,80,33,130,33.2,0.305,26,0
524
+ 6,114,0,0,0,0,0.189,26,0
525
+ 9,130,70,0,0,34.2,0.652,45,1
526
+ 3,125,58,0,0,31.6,0.151,24,0
527
+ 3,87,60,18,0,21.8,0.444,21,0
528
+ 1,97,64,19,82,18.2,0.299,21,0
529
+ 3,116,74,15,105,26.3,0.107,24,0
530
+ 0,117,66,31,188,30.8,0.493,22,0
531
+ 0,111,65,0,0,24.6,0.66,31,0
532
+ 2,122,60,18,106,29.8,0.717,22,0
533
+ 0,107,76,0,0,45.3,0.686,24,0
534
+ 1,86,66,52,65,41.3,0.917,29,0
535
+ 6,91,0,0,0,29.8,0.501,31,0
536
+ 1,77,56,30,56,33.3,1.251,24,0
537
+ 4,132,0,0,0,32.9,0.302,23,1
538
+ 0,105,90,0,0,29.6,0.197,46,0
539
+ 0,57,60,0,0,21.7,0.735,67,0
540
+ 0,127,80,37,210,36.3,0.804,23,0
541
+ 3,129,92,49,155,36.4,0.968,32,1
542
+ 8,100,74,40,215,39.4,0.661,43,1
543
+ 3,128,72,25,190,32.4,0.549,27,1
544
+ 10,90,85,32,0,34.9,0.825,56,1
545
+ 4,84,90,23,56,39.5,0.159,25,0
546
+ 1,88,78,29,76,32,0.365,29,0
547
+ 8,186,90,35,225,34.5,0.423,37,1
548
+ 5,187,76,27,207,43.6,1.034,53,1
549
+ 4,131,68,21,166,33.1,0.16,28,0
550
+ 1,164,82,43,67,32.8,0.341,50,0
551
+ 4,189,110,31,0,28.5,0.68,37,0
552
+ 1,116,70,28,0,27.4,0.204,21,0
553
+ 3,84,68,30,106,31.9,0.591,25,0
554
+ 6,114,88,0,0,27.8,0.247,66,0
555
+ 1,88,62,24,44,29.9,0.422,23,0
556
+ 1,84,64,23,115,36.9,0.471,28,0
557
+ 7,124,70,33,215,25.5,0.161,37,0
558
+ 1,97,70,40,0,38.1,0.218,30,0
559
+ 8,110,76,0,0,27.8,0.237,58,0
560
+ 11,103,68,40,0,46.2,0.126,42,0
561
+ 11,85,74,0,0,30.1,0.3,35,0
562
+ 6,125,76,0,0,33.8,0.121,54,1
563
+ 0,198,66,32,274,41.3,0.502,28,1
564
+ 1,87,68,34,77,37.6,0.401,24,0
565
+ 6,99,60,19,54,26.9,0.497,32,0
566
+ 0,91,80,0,0,32.4,0.601,27,0
567
+ 2,95,54,14,88,26.1,0.748,22,0
568
+ 1,99,72,30,18,38.6,0.412,21,0
569
+ 6,92,62,32,126,32,0.085,46,0
570
+ 4,154,72,29,126,31.3,0.338,37,0
571
+ 0,121,66,30,165,34.3,0.203,33,1
572
+ 3,78,70,0,0,32.5,0.27,39,0
573
+ 2,130,96,0,0,22.6,0.268,21,0
574
+ 3,111,58,31,44,29.5,0.43,22,0
575
+ 2,98,60,17,120,34.7,0.198,22,0
576
+ 1,143,86,30,330,30.1,0.892,23,0
577
+ 1,119,44,47,63,35.5,0.28,25,0
578
+ 6,108,44,20,130,24,0.813,35,0
579
+ 2,118,80,0,0,42.9,0.693,21,1
580
+ 10,133,68,0,0,27,0.245,36,0
581
+ 2,197,70,99,0,34.7,0.575,62,1
582
+ 0,151,90,46,0,42.1,0.371,21,1
583
+ 6,109,60,27,0,25,0.206,27,0
584
+ 12,121,78,17,0,26.5,0.259,62,0
585
+ 8,100,76,0,0,38.7,0.19,42,0
586
+ 8,124,76,24,600,28.7,0.687,52,1
587
+ 1,93,56,11,0,22.5,0.417,22,0
588
+ 8,143,66,0,0,34.9,0.129,41,1
589
+ 6,103,66,0,0,24.3,0.249,29,0
590
+ 3,176,86,27,156,33.3,1.154,52,1
591
+ 0,73,0,0,0,21.1,0.342,25,0
592
+ 11,111,84,40,0,46.8,0.925,45,1
593
+ 2,112,78,50,140,39.4,0.175,24,0
594
+ 3,132,80,0,0,34.4,0.402,44,1
595
+ 2,82,52,22,115,28.5,1.699,25,0
596
+ 6,123,72,45,230,33.6,0.733,34,0
597
+ 0,188,82,14,185,32,0.682,22,1
598
+ 0,67,76,0,0,45.3,0.194,46,0
599
+ 1,89,24,19,25,27.8,0.559,21,0
600
+ 1,173,74,0,0,36.8,0.088,38,1
601
+ 1,109,38,18,120,23.1,0.407,26,0
602
+ 1,108,88,19,0,27.1,0.4,24,0
603
+ 6,96,0,0,0,23.7,0.19,28,0
604
+ 1,124,74,36,0,27.8,0.1,30,0
605
+ 7,150,78,29,126,35.2,0.692,54,1
606
+ 4,183,0,0,0,28.4,0.212,36,1
607
+ 1,124,60,32,0,35.8,0.514,21,0
608
+ 1,181,78,42,293,40,1.258,22,1
609
+ 1,92,62,25,41,19.5,0.482,25,0
610
+ 0,152,82,39,272,41.5,0.27,27,0
611
+ 1,111,62,13,182,24,0.138,23,0
612
+ 3,106,54,21,158,30.9,0.292,24,0
613
+ 3,174,58,22,194,32.9,0.593,36,1
614
+ 7,168,88,42,321,38.2,0.787,40,1
615
+ 6,105,80,28,0,32.5,0.878,26,0
616
+ 11,138,74,26,144,36.1,0.557,50,1
617
+ 3,106,72,0,0,25.8,0.207,27,0
618
+ 6,117,96,0,0,28.7,0.157,30,0
619
+ 2,68,62,13,15,20.1,0.257,23,0
620
+ 9,112,82,24,0,28.2,1.282,50,1
621
+ 0,119,0,0,0,32.4,0.141,24,1
622
+ 2,112,86,42,160,38.4,0.246,28,0
623
+ 2,92,76,20,0,24.2,1.698,28,0
624
+ 6,183,94,0,0,40.8,1.461,45,0
625
+ 0,94,70,27,115,43.5,0.347,21,0
626
+ 2,108,64,0,0,30.8,0.158,21,0
627
+ 4,90,88,47,54,37.7,0.362,29,0
628
+ 0,125,68,0,0,24.7,0.206,21,0
629
+ 0,132,78,0,0,32.4,0.393,21,0
630
+ 5,128,80,0,0,34.6,0.144,45,0
631
+ 4,94,65,22,0,24.7,0.148,21,0
632
+ 7,114,64,0,0,27.4,0.732,34,1
633
+ 0,102,78,40,90,34.5,0.238,24,0
634
+ 2,111,60,0,0,26.2,0.343,23,0
635
+ 1,128,82,17,183,27.5,0.115,22,0
636
+ 10,92,62,0,0,25.9,0.167,31,0
637
+ 13,104,72,0,0,31.2,0.465,38,1
638
+ 5,104,74,0,0,28.8,0.153,48,0
639
+ 2,94,76,18,66,31.6,0.649,23,0
640
+ 7,97,76,32,91,40.9,0.871,32,1
641
+ 1,100,74,12,46,19.5,0.149,28,0
642
+ 0,102,86,17,105,29.3,0.695,27,0
643
+ 4,128,70,0,0,34.3,0.303,24,0
644
+ 6,147,80,0,0,29.5,0.178,50,1
645
+ 4,90,0,0,0,28,0.61,31,0
646
+ 3,103,72,30,152,27.6,0.73,27,0
647
+ 2,157,74,35,440,39.4,0.134,30,0
648
+ 1,167,74,17,144,23.4,0.447,33,1
649
+ 0,179,50,36,159,37.8,0.455,22,1
650
+ 11,136,84,35,130,28.3,0.26,42,1
651
+ 0,107,60,25,0,26.4,0.133,23,0
652
+ 1,91,54,25,100,25.2,0.234,23,0
653
+ 1,117,60,23,106,33.8,0.466,27,0
654
+ 5,123,74,40,77,34.1,0.269,28,0
655
+ 2,120,54,0,0,26.8,0.455,27,0
656
+ 1,106,70,28,135,34.2,0.142,22,0
657
+ 2,155,52,27,540,38.7,0.24,25,1
658
+ 2,101,58,35,90,21.8,0.155,22,0
659
+ 1,120,80,48,200,38.9,1.162,41,0
660
+ 11,127,106,0,0,39,0.19,51,0
661
+ 3,80,82,31,70,34.2,1.292,27,1
662
+ 10,162,84,0,0,27.7,0.182,54,0
663
+ 1,199,76,43,0,42.9,1.394,22,1
664
+ 8,167,106,46,231,37.6,0.165,43,1
665
+ 9,145,80,46,130,37.9,0.637,40,1
666
+ 6,115,60,39,0,33.7,0.245,40,1
667
+ 1,112,80,45,132,34.8,0.217,24,0
668
+ 4,145,82,18,0,32.5,0.235,70,1
669
+ 10,111,70,27,0,27.5,0.141,40,1
670
+ 6,98,58,33,190,34,0.43,43,0
671
+ 9,154,78,30,100,30.9,0.164,45,0
672
+ 6,165,68,26,168,33.6,0.631,49,0
673
+ 1,99,58,10,0,25.4,0.551,21,0
674
+ 10,68,106,23,49,35.5,0.285,47,0
675
+ 3,123,100,35,240,57.3,0.88,22,0
676
+ 8,91,82,0,0,35.6,0.587,68,0
677
+ 6,195,70,0,0,30.9,0.328,31,1
678
+ 9,156,86,0,0,24.8,0.23,53,1
679
+ 0,93,60,0,0,35.3,0.263,25,0
680
+ 3,121,52,0,0,36,0.127,25,1
681
+ 2,101,58,17,265,24.2,0.614,23,0
682
+ 2,56,56,28,45,24.2,0.332,22,0
683
+ 0,162,76,36,0,49.6,0.364,26,1
684
+ 0,95,64,39,105,44.6,0.366,22,0
685
+ 4,125,80,0,0,32.3,0.536,27,1
686
+ 5,136,82,0,0,0,0.64,69,0
687
+ 2,129,74,26,205,33.2,0.591,25,0
688
+ 3,130,64,0,0,23.1,0.314,22,0
689
+ 1,107,50,19,0,28.3,0.181,29,0
690
+ 1,140,74,26,180,24.1,0.828,23,0
691
+ 1,144,82,46,180,46.1,0.335,46,1
692
+ 8,107,80,0,0,24.6,0.856,34,0
693
+ 13,158,114,0,0,42.3,0.257,44,1
694
+ 2,121,70,32,95,39.1,0.886,23,0
695
+ 7,129,68,49,125,38.5,0.439,43,1
696
+ 2,90,60,0,0,23.5,0.191,25,0
697
+ 7,142,90,24,480,30.4,0.128,43,1
698
+ 3,169,74,19,125,29.9,0.268,31,1
699
+ 0,99,0,0,0,25,0.253,22,0
700
+ 4,127,88,11,155,34.5,0.598,28,0
701
+ 4,118,70,0,0,44.5,0.904,26,0
702
+ 2,122,76,27,200,35.9,0.483,26,0
703
+ 6,125,78,31,0,27.6,0.565,49,1
704
+ 1,168,88,29,0,35,0.905,52,1
705
+ 2,129,0,0,0,38.5,0.304,41,0
706
+ 4,110,76,20,100,28.4,0.118,27,0
707
+ 6,80,80,36,0,39.8,0.177,28,0
708
+ 10,115,0,0,0,0,0.261,30,1
709
+ 2,127,46,21,335,34.4,0.176,22,0
710
+ 9,164,78,0,0,32.8,0.148,45,1
711
+ 2,93,64,32,160,38,0.674,23,1
712
+ 3,158,64,13,387,31.2,0.295,24,0
713
+ 5,126,78,27,22,29.6,0.439,40,0
714
+ 10,129,62,36,0,41.2,0.441,38,1
715
+ 0,134,58,20,291,26.4,0.352,21,0
716
+ 3,102,74,0,0,29.5,0.121,32,0
717
+ 7,187,50,33,392,33.9,0.826,34,1
718
+ 3,173,78,39,185,33.8,0.97,31,1
719
+ 10,94,72,18,0,23.1,0.595,56,0
720
+ 1,108,60,46,178,35.5,0.415,24,0
721
+ 5,97,76,27,0,35.6,0.378,52,1
722
+ 4,83,86,19,0,29.3,0.317,34,0
723
+ 1,114,66,36,200,38.1,0.289,21,0
724
+ 1,149,68,29,127,29.3,0.349,42,1
725
+ 5,117,86,30,105,39.1,0.251,42,0
726
+ 1,111,94,0,0,32.8,0.265,45,0
727
+ 4,112,78,40,0,39.4,0.236,38,0
728
+ 1,116,78,29,180,36.1,0.496,25,0
729
+ 0,141,84,26,0,32.4,0.433,22,0
730
+ 2,175,88,0,0,22.9,0.326,22,0
731
+ 2,92,52,0,0,30.1,0.141,22,0
732
+ 3,130,78,23,79,28.4,0.323,34,1
733
+ 8,120,86,0,0,28.4,0.259,22,1
734
+ 2,174,88,37,120,44.5,0.646,24,1
735
+ 2,106,56,27,165,29,0.426,22,0
736
+ 2,105,75,0,0,23.3,0.56,53,0
737
+ 4,95,60,32,0,35.4,0.284,28,0
738
+ 0,126,86,27,120,27.4,0.515,21,0
739
+ 8,65,72,23,0,32,0.6,42,0
740
+ 2,99,60,17,160,36.6,0.453,21,0
741
+ 1,102,74,0,0,39.5,0.293,42,1
742
+ 11,120,80,37,150,42.3,0.785,48,1
743
+ 3,102,44,20,94,30.8,0.4,26,0
744
+ 1,109,58,18,116,28.5,0.219,22,0
745
+ 9,140,94,0,0,32.7,0.734,45,1
746
+ 13,153,88,37,140,40.6,1.174,39,0
747
+ 12,100,84,33,105,30,0.488,46,0
748
+ 1,147,94,41,0,49.3,0.358,27,1
749
+ 1,81,74,41,57,46.3,1.096,32,0
750
+ 3,187,70,22,200,36.4,0.408,36,1
751
+ 6,162,62,0,0,24.3,0.178,50,1
752
+ 4,136,70,0,0,31.2,1.182,22,1
753
+ 1,121,78,39,74,39,0.261,28,0
754
+ 3,108,62,24,0,26,0.223,25,0
755
+ 0,181,88,44,510,43.3,0.222,26,1
756
+ 8,154,78,32,0,32.4,0.443,45,1
757
+ 1,128,88,39,110,36.5,1.057,37,1
758
+ 7,137,90,41,0,32,0.391,39,0
759
+ 0,123,72,0,0,36.3,0.258,52,1
760
+ 1,106,76,0,0,37.5,0.197,26,0
761
+ 6,190,92,0,0,35.5,0.278,66,1
762
+ 2,88,58,26,16,28.4,0.766,22,0
763
+ 9,170,74,31,0,44,0.403,43,1
764
+ 9,89,62,0,0,22.5,0.142,33,0
765
+ 10,101,76,48,180,32.9,0.171,63,0
766
+ 2,122,70,27,0,36.8,0.34,27,0
767
+ 5,121,72,23,112,26.2,0.245,30,0
768
+ 1,126,60,0,0,30.1,0.349,47,1
769
+ 1,93,70,31,0,30.4,0.315,23,0
datasets/emoji.csv ADDED
@@ -0,0 +1,628 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Comment,Spam
2
+ "💭",1
3
+ "🔝",1
4
+ "🆗",1
5
+ "🎉",1
6
+ "🎊",1
7
+ "📯",1
8
+ "🙌",1
9
+ "😂",1
10
+ "💸",1
11
+ "👉",1
12
+ "📢",1
13
+ "🚀",1
14
+ "💲",1
15
+ "💣",1
16
+ "🔱",1
17
+ "💼",1
18
+ "🆙",1
19
+ "⏳",1
20
+ "✨",1
21
+ "💌",1
22
+ "💎",1
23
+ "🆕",1
24
+ "🔞",1
25
+ "💡",1
26
+ "💰",1
27
+ "👑",1
28
+ "⭐",1
29
+ "🌟",1
30
+ "🎤",1
31
+ "⚡",1
32
+ "📈",1
33
+ "💵",1
34
+ "🏆",1
35
+ "💪",1
36
+ "🔓",1
37
+ "🆓",1
38
+ "🎰",1
39
+ "⌚",1
40
+ "🚨",1
41
+ "💢",1
42
+ "📮",1
43
+ "🔥",1
44
+ "🎈",1
45
+ "🎥",1
46
+ "🔔",1
47
+ "💯",1
48
+ "🎶",1
49
+ "🔗",1
50
+ "🎁",1
51
+ "📚",1
52
+ "🔊",1
53
+ "👍",1
54
+ "👏",1
55
+ "📱",1
56
+ "📝",1
57
+ "🤑",1
58
+ "🏅",1
59
+ "🔒",1
60
+ "📣",1
61
+ "💥",1
62
+ "🚨URGENT🚨 Don't miss out on this 🆓FREE🆓 exclusive offer! Act now to get a 💰cash prize💰 and 👉double your👈 income! Limited spots available! 🌟✨",1
63
+ "🔥🔥HOT DEAL🔥🔥 Limited time only! Get an amazing discount on our top-rated products! 💯👌 Don't wait, 🏃‍♂️act fast🏃‍♀️ and save 💰💰 today! 💥💥",1
64
+ "🎉🎁 Congratulations! You're a 💥prize winner💥! Claim your incredible opportunity and win 🏆big! Don't miss this chance to 🤑make easy money!💰💵",1
65
+ "🔔🔔 SPECIAL OFFER! Get instant access to our secret formula for 💰💰easy money-making💰💰. No risk, no strings attached! Start earning 💸💸 now! 💥💥",1
66
+ "🌟EXCLUSIVE🌟 invitation! Join our elite club and get access to 👉limited-time👈 offers and huge discounts! 🎁🎉 Don't wait, sign up now! ✅🔒",1
67
+ "🚀🚀 Incredible opportunity! Earn extra income from home! 💻💵 No purchase necessary, it's 💯🆓FREE🆓 to get started! Start your money-making journey today! 💪💰",1
68
+ "⏰⏰ Last chance! Don't miss out on our 🔥limited offer🔥! Get a massive discount and save 💲💲! Act now before it's too late! ⌛⌛",1
69
+ "🎊🎊 Big savings alert! Get the best deal on our top products! 💥💥 Don't wait, order now and enjoy great savings! 💰💰 Shop today! 🛒🛍",1
70
+ "💥💥 Exciting news! You've won a jackpot prize! 🎉🎉 Claim your winnings and get instant access to a world of incredible offers! 💰💰💰",1
71
+ "🔒🔒 Limited supply available! Don't miss this special promotion! Get a secret revealed and unlock valuable discounts! 💎💰 Order now! 🛍🔓",1
72
+ "🔥 Hot 🔥 deal alert! Limited time offer! Get an exclusive discount on our top-rated products! 💯🎁 Don't wait, grab the savings now! 💰💥",1
73
+ "🚨 Act now! Limited spots available! Don't miss this amazing opportunity to earn 💲💲 extra income from home! 💻💵 Join today and start making money! 🌟💪",1
74
+ "📣 Attention! You've been selected as a 🏆 prize winner! Claim your jackpot and enjoy incredible rewards! 🎉💰 Hurry, this offer won't last! ⏳💥",1
75
+ "🆓 Free 🆓 trial offer! Try our exclusive product for a limited time and experience amazing results! 💪😍 Don't miss out, sign up today! 🎁✨",1
76
+ "💰💰 Double your 💰💰 income with our proven system! Unlock the secret to financial success and start earning big! 💥💵 Join now and thrive! 🌟🚀",1
77
+ "🎊🎉 Congratulations! You're a lucky winner! Claim your prize and get access to incredible deals and discounts! 💸💎 Don't wait, celebrate today! 🎈🎁",1
78
+ "🔒🔓 Unlock the hidden treasure! Discover the secret formula to unlimited wealth and success! 💰💼 Start your journey to financial freedom now! 🚀💪",1
79
+ "🌟 Exclusive 🌟 offer for our valued customers! Get a special discount and enjoy the best products on the market! 💯💥 Shop now and save big! 💰🛍",1
80
+ "🔥 Limited supply alert! Get your hands on the hottest 🔥 products before they're gone! Don't miss this chance to be ahead of the trend! 💪🔥",1
81
+ "💲💲 Make easy money from the comfort of your home! Our money-making system guarantees instant cash 💰💵 with minimal effort! Start earning today! 💪💸",1
82
+ "🎁🎁 Special promotion! Claim your free gift 🎁🎁 and enjoy the ultimate shopping experience with exclusive discounts and offers! 🎉💰 Shop now! 🛒✨",1
83
+ "🔔 Attention all shoppers! Don't miss out on our mega sale event! Enjoy massive discounts and save 💲💲 on your favorite products! Shop now! 🛍💥",1
84
+ "🌟✨ Discover the secret to success! Our exclusive program will guide you to achieve your dreams and live an extraordinary life! 💪🌟 Start today! 🚀💼",1
85
+ "💥💰 Instant cash 💥💰 opportunity! Join our proven system and start earning money instantly! No experience required, just a desire to succeed! 💪💸",1
86
+ "🔥🔥 Hurry! Limited-time offer! Get a 🔥 hot 🔥 discount on our best-selling products! Don't miss this chance to save big! 💰💥 Shop now and enjoy! 🛒🎉",1
87
+ "🏆🎉 Congratulations! You've won a prestigious award! Claim your prize and be recognized for your achievements! 🌟💎 Celebrate your success now! 🎊🏅",1
88
+ "🎉 Happy birthday to you! 🎂 Sending you warm wishes, love, and joy on your special day. May this year be filled with incredible moments and amazing adventures! 🌟���",0
89
+ "🌞 Good morning! ☕️ Rise and shine, it's a beautiful day ahead. Take a moment to appreciate the little joys in life and make the most of this day! 😊✨",0
90
+ "🌸 Sending you virtual hugs! 🤗 Remember, you are loved and appreciated just the way you are. Embrace your uniqueness and let your light shine! ✨💕",0
91
+ "🌈 Believe in yourself and your dreams! 🌟 You have the power to achieve greatness and make a positive impact in the world. Keep going, you've got this! 💪💫",0
92
+ "🌻 Good vibes only! 😊 Surround yourself with positivity and let go of anything that brings you down. Choose happiness and spread joy wherever you go! 🌟🌈",0
93
+ "📚 Knowledge is power! 💡 Never stop learning and expanding your horizons. With every book you read, you open doors to new possibilities and growth! 🌟📖",0
94
+ "🌞 Rise and shine! ☀️ Start your day with a grateful heart and a positive mindset. Embrace the opportunities ahead and make today count! 💪✨",0
95
+ "🌿 Take a moment to breathe and appreciate the beauty of nature around you. Let the tranquility of the outdoors bring peace and serenity to your soul. 🍃🌸",0
96
+ "🎵 Music has the power to uplift and inspire! 🎶 Tune in to your favorite tunes and let the melodies transport you to a place of joy and harmony. 🎧💫",0
97
+ "🌟 You are a shining star! ✨ Believe in your abilities and let your brilliance illuminate the world. Embrace your unique gifts and make a difference! 🌟💪",0
98
+ "🍃 Embrace self-care and nourish your mind, body, and soul. Prioritize your well-being and make time for activities that bring you peace and rejuvenation. 🌸✨",0
99
+ "💛 Kindness is contagious! 😊 Spread love, compassion, and positivity wherever you go. A small act of kindness can make a big difference in someone's day! 🌟💕",0
100
+ "🌺 Find joy in the simple things! 🌼 Take a moment to appreciate the beauty of a blooming flower, a warm cup of tea, or a heartfelt conversation. 🌸✨",0
101
+ "🌟 Dream big and chase your passions! 💫 The world is full of opportunities waiting for you to explore. Believe in yourself and go after what sets your soul on fire! 🔥💪",0
102
+ "🌍 Let's protect our planet! 🌿 Small eco-friendly choices can make a big impact. Reduce, reuse, recycle, and together, we can create a sustainable future! 🌱🌎",0
103
+ "🌟 Embrace gratitude and cultivate a positive mindset. Appreciate the blessings in your life, both big and small. Gratitude unlocks a world of abundance! 🙏✨",0
104
+ "🌈 Embrace diversity and celebrate our differences! 🌍 Together, we can create a world where everyone feels seen, heard, and valued. Spread love and acceptance! 💕✨",0
105
+ "🎓 Education is the key to unlocking your potential! 📚 Embrace the power of knowledge and never stop seeking opportunities to learn and grow. 🌟💡",0
106
+ "💪 Believe in your strength and resilience! 💫 You have overcome challenges before, and you have the power to overcome any obstacle that comes your way. 🌟🔥",0
107
+ "🌸 Embrace the beauty of each new day! 🌞 Allow yourself to be present in the moment and find joy in the simple pleasures that surround you. 💫🌼",0
108
+ "🌟 Life is a journey, not a destination. Enjoy the ride, savor the experiences, and cherish the memories along the way. 🚀🌈",0
109
+ "🌿 Connect with nature and recharge your soul. Take a walk in the woods, feel the earth beneath your feet, and let the fresh air invigorate your spirit. 🌳🍃",0
110
+ "💫 Follow your dreams and let your passion guide you. Trust in your abilities, take risks, and watch as the universe conspires to help you succeed. ✨🌟",0
111
+ "🌞 Start each day with a grateful heart. Express appreciation for the blessings in your life, big and small, and watch as abundance unfolds before you. 🙏💛",0
112
+ "🌈 Be the reason someone smiles today. Spread kindness, lend a helping hand, and create a ripple of positivity that brightens the lives of others. 😊💕",0
113
+ "📚 Open a book and open your mind. Dive into captivating stories, explore new worlds, and let the power of words ignite your imagination. 📖✨",0
114
+ "🌸 Embrace self-love and practice self-care. Nurture your mind, body, and soul, for when you prioritize your well-being, you radiate with inner beauty. 🌟💕",0
115
+ "🌟 Your uniqueness is your superpower. Embrace your quirks, celebrate your individuality, and shine brightly as the one-of-a-kind person you are. ✨🌟",0
116
+ "🌿 Take a deep breath and release anything that no longer serves you. Let go of worries, doubts, and fears, and invite peace and clarity into your life. 🌸🍃",0
117
+ "💪 You are stronger than you think. When faced with challenges, tap into your inner resilience and rise above, for you are capable of overcoming anything. 💫🔥",0
118
+ "🌞 Seize the day and make it extraordinary. Embrace opportunities, step outside your comfort zone, and create a life that fills your heart with joy. 🌟✨",0
119
+ "🌺 Cultivate an attitude of gratitude. Pause to appreciate the beauty that surrounds you, and let gratitude transform your life into a masterpiece of abundance. 🙏🌟",0
120
+ "🌍 Every action counts. Let's come together and make a positive impact on our planet. From recycling to conserving energy, let's create a sustainable future. 🌱🌎",0
121
+ "💛 Fill your days with laughter and joy. Surround yourself with loved ones, engage in activities that make your heart sing, and embrace the magic of simple pleasures. 😊✨",0
122
+ "🌟 Believe in the power of possibilities. Trust in your dreams, take inspired action, and watch as the universe aligns to bring your visions to life. 💫✨",0
123
+ "🌈 Embrace the colors of diversity. Celebrate the richness of different cultures, perspectives, and backgrounds, for it is in our differences that we find strength and unity. 🌟💕",0
124
+ "🔥 Hurry, limited time offer! Act now and get a 💰 FREE cash prize! Don't miss out on this incredible opportunity! 🎁",1
125
+ "🚀 Ready for an exclusive deal? Get a special discount and double your 💸 income! Limited spots available, so act fast! ⏳",1
126
+ "🎉 Congratulations! You've won a 🎁 FREE gift! Claim it now and enjoy the surprise! Don't wait, it's a limited offer! 💥",1
127
+ "💰 Start earning extra 💵 income now! Discover the secret formula to make easy money from home! No strings attached! 💪",1
128
+ "🔥 Unbelievable offer alert! Get the best deal and save BIG with our exclusive discount code! 💸💥 Limited time, act now! ⌛",1
129
+ "💼 Join our elite group of insiders and start earning quick 💸 cash! Make money fast with our proven system! 💵🚀",1
130
+ "🎉 Congratulations! You're a prize winner! Claim your 💰 jackpot and enjoy the incredible opportunity! 🌟🏆",1
131
+ "⌛ Last chance! Don't miss out on the huge discount! Get the best value and save money today! 💸🔥 Limited availability! 🏃‍♀️",1
132
+ "🌟 Exciting news! Get instant access to our top-rated program for 💸 FREE! Start earning extra income now! ⚡",1
133
+ "🛍️ Unbeatable deal alert! Enjoy a massive discount on our top offer! No catch, just incredible savings! 💰💥 Limited time only! ⏳",1
134
+ "🔥 Act now and grab this amazing 💰 offer! Limited time only! Don't miss out on the 🔒 exclusive deal! 💥🎁",1
135
+ "🎉 Get ready for a special surprise! 🆓 Claim your FREE gift today and start earning 💸 extra income instantly! 💵🎁",1
136
+ "💥 Limited spots available! Join now and unlock the secret to 💰 making easy money from home! 🚀💪",1
137
+ "⏰ Time is running out! Don't wait! Get the best 💸 discount and save big on our top-rated product! 🔖💰",1
138
+ "🌟 Congratulations! You're a winner! 🎊 Claim your prize and enjoy the incredible opportunity! 💃💰",1
139
+ "⌛ Hurry! Last chance to grab the exclusive 💥 offer! Limited availability, so act fast and 💸 save money now! 🏃‍♂️🔥",1
140
+ "💰 Start earning cash today! Join our elite group of insiders and 💼 become a money-making pro! 💸🌟",1
141
+ "🔒🆓 Unlock the secret to instant 💸 money! Get a risk-free trial and enjoy the incredible results! 💥💯",1
142
+ "🎁 Special promotion alert! Claim your free trial and enjoy the 💰 benefits of our top offer! 🌟🎉",1
143
+ "💥 Don't miss out on this incredible opportunity! Join now and 💸 double your income in no time! 💵💪",1
144
+ "🔥🎉 Grab the hottest deal of the season! Get an exclusive 💸 discount and save big on your purchase! 🛍️💰",1
145
+ "⚡️🆓 Limited time offer! Claim your FREE gift now and start earning 💸 extra income from the comfort of your home! 🎁💵",1
146
+ "🚀💥 Unlock the secret to financial success! Join our elite group and learn how to make 💰 easy money in no time! 💼💪",1
147
+ "💸🔒 Act fast and secure your spot! Only a few seats left for our life-changing 💥 workshop! Don't miss out! 🎟️🌟",1
148
+ "🎊💰 Congratulations! You're a winner! Claim your cash prize and celebrate your 🌟 amazing success! 🎉💸",1
149
+ "⌛️🔥 Limited availability! Get in on the action now and enjoy the exclusive benefits of our 💥 premium membership! 🚀🏆",1
150
+ "💼💸 Ready to become a money-making guru? Join our elite program and start 💰 earning massive profits today! 🌟💪",1
151
+ "🔓💥 Unlock your financial potential! Get a risk-free trial and experience the 💸 incredible results for yourself! 🚀💯",1
152
+ "🎁🌟 Special promotion just for you! Claim your free trial and access the 💰 exclusive perks of our premium service! ⚡️💼",1
153
+ "💥💵 Don't miss this once-in-a-lifetime opportunity! Join now and watch your 💸 income soar to new heights! 🚀🌟",1
154
+ "🔥🎊 Get ready for an explosive offer! Claim your exclusive 💸 discount and unlock unlimited savings! 💥🛍️",1
155
+ "⚡️🆓 Limited time only! Grab your FREE gift now and start earning 💰 extra income effortlessly! 🎁💵",1
156
+ "🚀💡 Supercharge your earnings! Join our elite group and discover the secret to 💸 financial success! 💼💪",1
157
+ "💥📢 Attention! Secure your spot today for the life-changing seminar! Witness 💰 incredible transformations! 🎟️🌟",1
158
+ "🎉🏆 Congratulations, champion! Claim your cash prize and revel in your 🌟 triumphant victory! 💸💪",1
159
+ "⌛️🔒 Limited slots available! Act now to enjoy exclusive benefits of our 💥 premium membership! 🚀🔐",1
160
+ "💼💰 Ready to be a money-making pro? Join our renowned program and 💸 skyrocket your income! 🌟💪",1
161
+ "🔓⚡️ Unlock your financial potential with our risk-free trial! Experience 💰 incredible results today! 🚀💯",1
162
+ "🎁🌟 Don't miss out on our special promotion! Claim your free trial and access 💸 exclusive perks! ⚡️💼",1
163
+ "💥🏃 Hurry, seize this golden opportunity now! Join and witness your 💸 income soar to new heights! 🚀🌟",1
164
+ "🔥💰 Ignite your earning potential! Take advantage of our sizzling offer and 💸 cash in on massive profits! 🚀💥",1
165
+ "⚡️🆓 Lightning-fast opportunity! Claim your FREE bonus and start making 💰 money effortlessly! 🎁💵",1
166
+ "🌟💡 Shine like a star in the financial world! Join our exclusive group and 💸 unlock limitless success! 💼✨",1
167
+ "💥📣 Attention! Limited spots left for our groundbreaking seminar! Secure your seat and 💰 transform your life! 🎟️🌟",1
168
+ "🎉🥇 Celebrate your victory! You've won a grand cash prize! Claim it now and 💸 bask in your glory! 💰🎊",1
169
+ "⌛️🔒 Time is running out! Don't miss the chance to access premium benefits with our 💥 exclusive membership! 🚀🔐",1
170
+ "💼💸 Unlock the secrets of wealth! Join our renowned program and 💰 master the art of money-making! 🌟💪",1
171
+ "🔓⚡️ Open the door to financial success! Try our risk-free trial and witness 💸 mind-blowing results! 🚀💯",1
172
+ "🎁🌟 Special promotion alert! Claim your free trial now and enjoy 💰 exclusive perks and rewards! ⚡️💼",1
173
+ "💥🚀 Seize the opportunity of a lifetime! Join now and watch your 💸 income skyrocket to new heights! 🌟✨",1
174
+ "🔥💸 Fuel your financial success! Grab our blazing offer and ignite your 💰 income potential! 🚀🔥",1
175
+ "⚡️🆓 Lightning deal alert! Claim your FREE gift and start earning 💸 without spending a dime! 🎁💵",1
176
+ "🌟💡 Shine like a star in the money game! Join our exclusive circle and 💸 unlock boundless prosperity! 💼✨",1
177
+ "💥📣 Attention! Limited seats available for our groundbreaking summit! Secure your spot and 💰 elevate your life! 🎟️🌟",1
178
+ "🎉🥇 Congratulations, champion! You've won a prestigious cash prize! Claim it now and 💸 revel in your victory! 💰🎊",1
179
+ "⌛️🔒 Time is ticking! Don't miss out on the exclusive benefits of our 💥 premium membership! Act now! 🚀🔐",1
180
+ "💼💸 Unleash your money-making prowess! Join our acclaimed program and 💰 dominate the wealth game! 🌟💪",1
181
+ "🔓⚡️ Unlock your financial potential today! Experience mind-blowing results with our 💸 risk-free trial! 🚀💯",1
182
+ "🎁🌟 Special promotion for a select few! Claim your free trial and enjoy 💰 exclusive perks and bonuses! ⚡️💼",1
183
+ "💥🚀 Seize the moment and skyrocket your income to new heights! Join now and 💸 witness the magic unfold! 🌟✨",1
184
+ "🌞 Good morning! Rise and shine, it's a beautiful day! ☕️🌻",0
185
+ "📚 Studying hard for exams today! Wish me luck! 🤞📖",0
186
+ "🍕 Pizza night with friends! Can't wait to enjoy delicious slices together! 🍕🎉",0
187
+ "💻 Working on a new project and feeling inspired! Excited to see it come to life! ✨💪",0
188
+ "🎶 Going to a concert tonight! So pumped to see my favorite band perform live! 🎸🎤",0
189
+ "🌈 Embracing positivity and spreading love to everyone! Remember, you are amazing! ❤️✨",0
190
+ "🚴‍♀️ Going for a bike ride in the park to enjoy the fresh air and exercise! 🌳🚴‍♂️",0
191
+ "🎉 Celebrating my friend's birthday tonight! It's going to be a fantastic party! 🎂🥳",0
192
+ "🌊 Heading to the beach for a relaxing day of sun, sand, and waves! 🏖️☀️",0
193
+ "🎮 Ready for a gaming marathon with friends! Let the fun and competition begin! 🕹️🎮",0
194
+ "I'm so excited for our trip next week! ✈️ Can't wait to see you 🤗",0
195
+ "Thanks for the help with the project! 👍 I couldn't have done it without you.",0
196
+ "I'm so sorry to hear about your dog. 😭 I know how much you loved him.",0
197
+ "Congratulations on your new job! 🎉 I'm so happy for you.",0
198
+ "I'm having a really tough day. 😔 Can you please call me?",0
199
+ "Hey! 👋 I hope you're having a great day! ☀️ I just wanted to let you know that I'm thinking of you. 😊 I'm sending you this 🤗 emoji hug to brighten your day. 😊",0
200
+ "Talk to you soon!🫂",0
201
+ "I'm so glad we're friends! 🤝",0
202
+ "I'm so proud of you! 🏆",0
203
+ "I'm sending you good vibes! ✨",0
204
+ "I'm thinking of you! 💭",0
205
+ "I'm here for you! 🫂",0
206
+ "I'm so sorry to hear that! 😔",0
207
+ "I'm sending you hugs! 🤗",0
208
+ "I'm sending you love! ❤️",0
209
+ "I'm sending you positive energy! ☀️",0
210
+ "I'm so excited for the weekend! 🥳",0
211
+ "I'm so tired! 😴",0
212
+ "I'm so hungry! 😋",0
213
+ "I'm so happy! 😄",0
214
+ "I'm so sad! 😢",0
215
+ "I'm so angry! 😡",0
216
+ "I'm so confused! 🤨",0
217
+ "I'm so excited for our vacation! 🏖️",0
218
+ "I'm so excited for our new baby! 👶",0
219
+ "I'm so excited for our wedding! 👰‍♀️🤵‍♂️",0
220
+ "I'm so excited for our new job! 💼",0
221
+ "I'm so excited for our new house! 🏡",0
222
+ "I'm so excited for our new car! 🚗",0
223
+ "I'm so excited for our new pet! 🐶🐱",0
224
+ "I'm so excited for our new project! 📄",0
225
+ "I'm so excited for our new relationship! 💑",0
226
+ "I'm so excited for our new adventure! 🗺️",0
227
+ "I'm so excited for our new beginning! 🎊",0
228
+ "I'm so excited for our future! 🔮",0
229
+ "I'm so excited for everything! 🤩",0
230
+ "I'm so excited for life! 😊",0
231
+ "🚨URGENT🚨 Don't miss out on this EXCLUSIVE offer! 🎁 Get a FREE gift and LIMITED TIME discount! 💯 Act now to claim your prize! 🎉 Call 555-123-4567 to take advantage of this AMAZING opportunity! 📞 Don't wait, this deal won't last! ⏰",1
232
+ "🔥 ATTENTION! 🔥 LIMITED OFFER alert! 🎉 Get ready for the BIGGEST SALE of the year! 💰 Don't miss this incredible opportunity to DOUBLE your savings! 💸 Text 'SALE' to 555-987-6543 to unlock EXCLUSIVE DISCOUNT CODES! 📲 Act fast and be one of the lucky winners! 🏆 Limited spots available, so HURRY! ⏰",1
233
+ "💲 EARN MONEY FAST! 💲 Discover the SECRET to INSTANT CASH! 💰 No risk, guaranteed PROFITS! Join our ELITE program and unlock your FINANCIAL FREEDOM today! 📈 Text 'MONEY' to 555-123-4567 for more details!",1
234
+ "🔥 HOT DEAL ALERT! 🔥 Save BIG with our EXCLUSIVE DISCOUNT CODE! 💸 LIMITED SUPPLY, so ACT FAST! Don't let this incredible opportunity slip away! Call 555-789-1234 now and DOUBLE YOUR SAVINGS! 💥",1
235
+ "Urgent! Exclusive limited time offer! Get a free vacation package worth $10,000! Call now at 555-123-4567 to claim your prize.",1
236
+ "Act now to double your income! Earn instant cash with our guaranteed money-making system. Call 555-987-6543 for more information.",1
237
+ "Don't miss out on the best deal of the year! Limited supply available. Call 555-567-8901 to save big on our top-rated products.",1
238
+ "Congratulations! You've been selected as a winner of our incredible jackpot prize. Claim your cash prize by calling 555-234-5678 today.",1
239
+ "Limited time offer! Get a free trial of our exclusive product. Call 555-876-5432 now to take advantage of this special promotion.",1
240
+ "Earn extra income from home! Discover the secret formula to financial success. Call 555-345-6789 for a risk-free trial of our money-making program.",1
241
+ "Amazing discount alert! Save 50% on all purchases. Call 555-789-0123 and mention the discount code SAVE50 to avail of this incredible offer.",1
242
+ "Don't miss the opportunity to win a free gift worth $500! Call 555-890-1234 and enter our prize draw now.",1
243
+ ""Limited offer! Get a special discount of 30% on our top-rated products. Call 555-123-4567 now to grab this exclusive deal before it's gone.",1
244
+ "Act fast to claim your instant cash prize of $10,000! Dial 555-987-6543 and enter the code WINNER to receive your winnings today.",1
245
+ "Exciting opportunity! Earn easy money from the comfort of your home. Call 555-567-8901 to learn how you can make quick cash with our proven system.",1
246
+ "Attention: Last chance to save big! Don't miss out on our incredible sale with discounts up to 70%. Call 555-234-5678 to take advantage of this limited-time offer.",1
247
+ "Exclusive invitation! You've been selected as one of our VIP customers. Call 555-876-5432 to unlock special perks and access our elite deals.",1
248
+ "Limited spots available! Join our money-making program and start earning extra income today. Call 555-345-6789 to secure your spot now.",1
249
+ "Massive discount alert! Save 80% on all purchases for a limited period. Call 555-789-0123 and mention the code "BIGSALE" to enjoy these incredible savings.",1
250
+ "Incredible opportunity awaits! Double your income with our proven strategies. Call 555-890-1234 to get started on your path to financial success.",1
251
+ "Attention: Exclusive offer for a limited time only! Call 555-123-4567 now to receive a free gift with your purchase. Don't miss out!",1
252
+ "Act now and save! Get a special discount of 50% on all orders. Call 555-987-6543 to take advantage of this amazing deal today.",1
253
+ "Earn extra income from home! Our money-making system guarantees instant cash. Call 555-567-8901 to learn how you can start earning today.",1
254
+ "Congratulations! You've won a luxury vacation package worth $5,000. Call 555-234-5678 to claim your prize and book your dream getaway.",1
255
+ "Limited spots available! Join our exclusive club and enjoy VIP benefits. Call 555-876-5432 to become a member and unlock exciting privileges.",1
256
+ "Hurry, time is running out! Don't miss the chance to save up to 60% on our top-rated products. Call 555-345-6789 now to shop our limited-time sale.",1
257
+ "Incredible opportunity: Start your own online business and make money from anywhere. Call 555-789-0123 to get started with our proven success system.",1
258
+ "Special discount for our valued customers! Call 555-890-1234 and mention SPECIALOFFER to receive an extra 20% off on your next purchase.",1
259
+ "Urgent announcement! Limited supply available for our exclusive product. Call 555-123-4567 now to secure your order before it's too late.",1
260
+ "Act fast and save big! Get a guaranteed discount of 40% on all purchases. Call 555-987-6543 and mention "SAVINGS40" to claim this special offer.",1
261
+ "Make easy money from home! Our risk-free money-making program ensures instant cash in your pocket. Call 555-567-8901 to learn more.",1
262
+ "Congratulations, you're a winner! Dial 555-234-5678 to claim your cash prize of $1,000. Hurry, this offer is only valid for the next 24 hours.",1
263
+ "Limited-time promotion! Call 555-876-5432 to unlock a secret deal and receive an additional 50% off on our already discounted prices.",1
264
+ "Exciting opportunity awaits! Earn extra income by joining our elite affiliate program. Call 555-345-6789 to start making money today.",1
265
+ "Big sale alert! Enjoy massive discounts on our top-rated products. Dial 555-789-0123 and ask for the "BIGSALE" to grab these incredible savings.",1
266
+ "Start your journey to financial freedom! Call 555-890-1234 to discover the secrets of wealth creation and achieve your dreams.",1
267
+ "Congratulations! You've won a special prize. Click here to claim your reward: www.example.com",1
268
+ "Limited time offer! Get exclusive discounts at www.spammydeals.com. Don't miss out!",1
269
+ "Act now and double your income with our incredible opportunity. Visit www.getrichquickly.com for more details.",1
270
+ "Unlock the secret formula for instant money! Visit www.secretformulaguide.com to learn more.",1
271
+ "Huge discount alert! Get 50% off on all products at www.bestsaleever.com. Limited availability, shop now!",1
272
+ "Make easy money from home. Start earning today at www.earnmoneyathome.com. No risk, guaranteed profits!",1
273
+ "Don't miss out on the top-rated product of the year. Order now at www.productoftheyear.com and save 20%.",1
274
+ "Get a free gift with every purchase at www.freeshippingstore.com. Shop now and enjoy free shipping!",1
275
+ "Limited spots available for our exclusive offer. Sign up now at www.exclusiveoffer.com and claim your spot.",1
276
+ "Earn extra income with our money-making system. Visit www.earnmoremoney.com for a life-changing opportunity.",1
277
+ "Attention! Limited time offer. Visit www.discountmania.com and save up to 70% on all products. Don't miss out!",1
278
+ "Unlock the secret to quick cash. Click here: www.instantcashsecrets.com and start making money instantly.",1
279
+ "Congratulations! You're a lucky winner of a cash prize. Claim your winnings at www.prizewinner.com.",1
280
+ "Exclusive deal for you! Get the best value at www.exclusiveofferzone.com. Limited supply, act fast!",1
281
+ "Looking for an incredible opportunity to earn extra income? Visit www.incredibleopportunity.com and change your life.",1
282
+ "Limited spots available for our new offer. Sign up now at www.newofferlaunch.com and be the first to benefit.",1
283
+ "Don't miss out on the best deal of the year. Shop now at www.bestdealsonline.com and enjoy massive savings.",1
284
+ "Get a huge discount on your next purchase. Use the discount code 'SAVEBIG' at www.discountcodecentral.com.",1
285
+ "Fast cash guaranteed! Visit www.fastcashnow.com to learn how you can make quick money in no time.",1
286
+ "Discover the secret to success and financial freedom. Click here: www.successsecretsrevealed.com.",1
287
+ "Act now and claim your free trial at www.freetrialoffer.com. Don't miss out on this special promotion!",1
288
+ "Attention: Limited offer! Visit www.specialdiscountzone.com to get an exclusive discount on our top-rated products.",1
289
+ "Make easy money with our proven system. Join now at www.moneymakingpros.com and start earning instantly.",1
290
+ "Attention winners! You have been selected for a special prize. Redeem it at www.specialprizewinners.com.",1
291
+ "Limited time opportunity to double your income. Learn the secrets at www.incomeboostersuccess.com.",1
292
+ "Get the best prices on all products at www.superdealscentral.com. Shop now and save big!",1
293
+ "Unlock your financial potential. Visit www.financialfreedomguide.com and start your journey to wealth.",1
294
+ "Congratulations, you've won a jackpot prize! Claim it now at www.jackpotwinnerzone.com.",1
295
+ "Exclusive invitation! Join our elite club at www.eliteclubmembership.com for exclusive benefits and rewards.",1
296
+ "Discover the secret formula to success. Click here: www.secretformulasuccess.com and change your life.",1
297
+ "Don't miss out on our massive sale! Visit www.biggestsaleever.com for incredible discounts on all products.",1
298
+ "Earn extra income from home. Join our money-making program at www.homebasedincome.com and start earning today.",1
299
+ "Attention: Limited spots available! Sign up now at www.exclusiveopportunity.com for a chance to change your life.",1
300
+ "Get the best deals and savings at www.savemorenow.com. Shop smart and save big on your purchases.",1
301
+ "Unlock the secrets of financial success. Visit www.successmindsetacademy.com and transform your life.",1
302
+ "Congratulations! You've been selected as a special prize winner. Claim your reward at www.specialprizesite.com.",1
303
+ "Act fast to grab our exclusive discount. Click here: www.exclusivediscountlink.com and save on your next purchase.",1
304
+ "Discover the easiest way to make money online. Visit www.onlinemoneymakers.com for a proven money-making system.",1
305
+ "Limited time offer: Get a free gift with every order at www.freegiftsforall.com. Shop now and enjoy the bonus.",1
306
+ "Attention entrepreneurs! Start your own business with our proven blueprint. Learn more at www.businesssuccessguide.com.",1
307
+ "Don't miss the incredible opportunity to earn extra income. Visit www.incomegeneratorpro.com and start making money today!",1
308
+ "Limited supply available! Get the best prices at www.discountemporium.com. Shop now before it's too late!",1
309
+ "Unlock the secrets of success with our exclusive training program. Join now at www.successaccelerator.com and achieve your goals.",1
310
+ "Congratulations, you're a lucky winner! Claim your prize at www.luckywinnerzone.com and enjoy your rewards.",1
311
+ "Act now and take advantage of our special promotion. Visit www.specialoffersgalore.com for amazing deals and discounts.",1
312
+ "Discover the secret to financial freedom. Click here: www.financialfreedompath.com and start your journey to wealth.",1
313
+ "Limited time offer: Get a free trial at www.freetrialbonanza.com. Experience our premium services at no cost!",1
314
+ "Attention bargain hunters! Visit www.bargainhunterparadise.com for unbeatable deals and savings on all your favorite products.",1
315
+ "Make quick cash from the comfort of your home. Join our money-making community at www.cashflowmastermind.com.",1
316
+ "Don't miss out on our exclusive discount code. Use 'SAVEBIG' at www.discountcodeheaven.com and enjoy huge savings on your purchases.",1
317
+ "Attention: Limited spots available for our exclusive offer. Sign up now at www.exclusiveofferhub.com and claim your special discount.",1
318
+ "Unlock the secret to instant success. Visit www.successsecretsunleashed.com and transform your life today.",1
319
+ "Congratulations! You've won a dream vacation. Claim your prize at www.dreamgetaways.com and start packing your bags.",1
320
+ "Act fast and get the best deal of the season. Visit www.seasonalspecials.com for incredible discounts on all products.",1
321
+ "Looking for easy money? Join our money-making community at www.easycashflow.com and start earning effortlessly.",1
322
+ "Don't miss out on our limited-time promotion. Click here: www.promoalertzone.com to access exclusive offers and savings.",1
323
+ "Limited supply available! Shop now at www.savingscentral.com and enjoy the lowest prices on top-quality products.",1
324
+ "Attention entrepreneurs! Discover the secrets to building a successful business at www.entrepreneurinsider.com.",1
325
+ "Get a free gift with every purchase. Visit www.freestuffparadise.com to claim your freebies today.",1
326
+ "Act now and double your income with our proven system. Join at www.incomeboosterpro.com and unlock your earning potential.",1
327
+ "www.specialdiscountzone.com - Get up to 50% off on selected items.",1
328
+ "www.prizewinnercentral.com - Claim your cash prize instantly.",1
329
+ "www.moneydoublerscheme.com - Double your income in just one month.",1
330
+ "www.freesamplesgalore.com - Get free samples of top-notch products.",1
331
+ "www.limitedtimedeals.com - Don't miss out on limited-time deals and discounts.",1
332
+ "www.fastcashnow.com - Make quick cash with our proven method.",1
333
+ "www.exclusivevipclub.com - Join our VIP club for exclusive benefits and rewards.",1
334
+ "www.dreamvacationgetaways.com - Win a dream vacation for you and your loved ones.",1
335
+ "www.elitemembershipprogram.com - Unlock elite privileges and premium services.",1
336
+ "www.successfulentrepreneurguide.com - Learn the secrets of successful entrepreneurship.",1
337
+ "www.megadiscountzone.com - Save up to 70% on top brands and products.",1
338
+ "www.instantcashgenerator.com - Get instant cash deposited directly into your account.",1
339
+ "www.exclusiveprizehub.com - Claim your exclusive prize and enjoy the rewards.",1
340
+ "www.freeproductsamples.com - Get free samples of the hottest new products in the market.",1
341
+ "www.flashsalemadness.com - Don't miss our flash sale with jaw-dropping discounts.",1
342
+ "www.moneymakingpros.com - Join our community of successful money makers and start earning today.",1
343
+ "www.luxurygetaways.com - Win a luxurious vacation and indulge in pure relaxation.",1
344
+ "www.premiummembershipperks.com - Unlock premium membership perks and exclusive benefits.",1
345
+ "www.businesssuccessblueprint.com - Learn the blueprint for achieving business success.",1
346
+ "www.opportunityknocksnow.com - Grab the opportunity of a lifetime and change your future.",1
347
+ "www.discountparadise.com - Get incredible discounts on a wide range of products.",1
348
+ "www.cashbonanza.com - Earn extra cash with our proven system.",1
349
+ "www.prizewinnersclub.com - Join the club of lucky prize winners and claim your rewards.",1
350
+ "www.freesamplesgalore.com - Explore a variety of free samples from top brands.",1
351
+ "www.flashsalebonanza.com - Don't miss our limited-time flash sale with unbeatable prices.",1
352
+ "www.moneymakingopportunity.com - Discover a life-changing money-making opportunity.",1
353
+ "www.luxuryvacationgetaways.com - Win a luxurious vacation and indulge in ultimate relaxation.",1
354
+ "www.eliteclubmembership.com - Unlock elite membership benefits and exclusive perks.",1
355
+ "www.businesssuccesssecrets.com - Learn the secrets to achieving business success.",1
356
+ "www.opportunityofalifetime.com - Seize the opportunity of a lifetime and transform your future.",1
357
+ "Urgnt offer! Lmited tme only. Cllect yur fre gif now!",1
358
+ "Congratulatons! Yu've wn a cash priz of $1,000,000! Act nwo to clai it!",1
359
+ "Exclussive del! Get the bst prce on our amazinig producst. Limted stcoks avilable!",1
360
+ "Hury! Don't miss out n this specia offr. Gt an incrdbile discont on all itemes!",1
361
+ "Increse your incoem with our ezsy mony-maing soluton. Nw avilable for a lmitd tim!",1
362
+ "Hurryyy!!! Get your limmited tyme offer nowww! Don't missss outttt!",1
363
+ "Exclusivve dealll!!! Grab the besst deal evverrrr! Limitted quantitiees!",1
364
+ "Congrrats!!! You've won a guaaranteed prrize! Clam itt innstantlyyy!",1
365
+ "Amazzzing opporrtunityy! Doubblee yourr cashh with our seecrett formmulaa!",1
366
+ "Acttt fasstt!!! Don't misss the masssive discouuntttt! Shop nowwww!",1
367
+ "Urggnt!! Gett yourr excluusivee offer noww!! Limmitedd suppply!",1
368
+ "Congratzz! You've wwon a frrreee trialll! Actt quicckk to redeemd!",1
369
+ "Limiteedd timme deall!! Enjjoyy a massiive discounntt onn all productss!",1
370
+ "Hurry upp!! Don't misss ourr speecial promotiionn! Grabb itt nowww!",1
371
+ "Amazzinggg chanccee!! Doubblee your monneyy withh ourr innovativve systtemm!",1
372
+ "Exxclusivvee!! Beest prricess onn top-rratedd iteemss! Shoopp noww!",1
373
+ "Biggg prizzee awaiitts!! Claiimm yourr cashh rewarrdd todaayy!",1
374
+ "Limittedd edittionn offerr!! Don't misss thhiss chancceee!",1
375
+ "Actt immeeediatellyy!! Unbeaatablee discouuntss onn all prooducttss!",1
376
+ "Greaat opporrtunityy!! Earrrn extrraa inccommeee witthoutt hassslleee!",1
377
+ "Exxcitingg offerr!! Gett the beestt pricess onn ouurrr exccluusivee rangge!",1
378
+ "Sppeccial discouuntt!! Savvee bigg onn yourr nextt purcchhasee!",1
379
+ "Limitted tyyyme!! Claiimm yourr freee giiftt noww!!",1
380
+ "Easyy monneeyy!! Makke quiickk cahhshh witthh ourr simmplee systtemm!",1
381
+ "Senssationall offerr!! Limittedd stoockkss! Orderr noww!",1
382
+ "Increddiblee opporrtunityy!! Win biigg witthh ourr secrrrett methhodd!",1
383
+ "Aammaziingg deall!! Nooww orr nevverr!! Don'tt misss ouutt!",1
384
+ "Lowwesst pricess evveerr!! Saaavee monneyy onn all youurr purrchaseess!",1
385
+ "Limittedd tyyyme!! Don't misss thhis chaanccceee!! Orderr noww!",1
386
+ "Exccluussivvee prromotionn!! Gett speciaal diissccouunnttss todaiyy!",1
387
+ "Insidderr seecreets!! Unnloockk tthhee keyy to financiaal succcesss!",1
388
+ "Amazzzinggg savinngss!! Graab ouur limittedd offeerrr nnowww!",1
389
+ "Jaccckkpoott awaiitts!! Claiimm yourr moneeyy priizzee tooodayy!",1
390
+ "Loww costtt!! Gett qualittyy prodductss att affoorrdablee priccess!",1
391
+ "Hurryyy!! Speeecial disccouunnttss avaiillabbllee foorr youu!",1
392
+ "Earrnn exttrraa incomee!! Simmplifyy yourr liiffee withh ourr systtemm!",1
393
+ "Urggntt!! Exclusivvee limmitedd offeer!! Gett itt nowww!",1
394
+ "Congrratulationnss!! You've wwon a masssive prizzee!! Clam itt todaayy!",1
395
+ "Ammaazziinngg deallss!! Don't misss outt onn thhe besstt savinngss!",1
396
+ "Hurrlyy!! Actt faasstt too claiim yourr fre eegifftt!",1
397
+ "Unbeaattablle offeer!! Savee bigg onn all youur purrchhaases!",1
398
+ "Limmittedd stoockss!! Graab ourr exccluussivee proooductss noww!",1
399
+ "Eaasyy moneeyy!! Earrrn passsiivee inncomee withh ourr methhodd!",1
400
+ "Secreett revvealedd!! Unloocckk thhe keeyy to suuccesss!",1
401
+ "Speccial prromotionn!! Gett the beestt deaallss righht nooww!",1
402
+ "Huggge savinngss!! Don'tt miss thhee chaanccceee too saavee!",1
403
+ "Limmittedd timmee onnlyy!! Hurryy upp andd shoop noww!",1
404
+ "Increddibllee opporrtunityy!! Graabb itt beffooree itt'ss goonnee!",1
405
+ "Don'tt waiitt!! Claiim yourr rewarrdd nooww!!",1
406
+ "Ammaazzingg chanccee!! Doubblee yourr inncomee withh ouur syssttemm!",1
407
+ "Exxcittinngg deall!! Gett thhee beestt pricess onn ouur prodcttss!",1
408
+ "Speeccial offerr!! Limittedd suppply! Don'tt miss itt!",1
409
+ "Actt quicckk!! Enjooyy a hugggee disccouuntt todaiyy!",1
410
+ "Prizzee wwinneerr!! Claiim yourr cashh prrizee innstantllyy!",1
411
+ "Greaat ssavinnngss!! Shoopp noww andd ssavvee bigg!",1
412
+ "Amazzzingg innvvesstmeentt!! Earrrn hugge returrrnss withh uss!",1
413
+ "Unbeaatablle offeer!! Limittedd stoockk!! Buyy noww!",1
414
+ "Frreee trialll!! Tryy ourr prooductt forr fre eee noww!",1
415
+ "Loww cosstt!! Gett prremiiumm quaalityy iteemss forr lesss!",1
416
+ "Exclusivvee disccouunntt!! Graab itt whillee itt lastss!",1
417
+ "Hurryyy!! Don'tt misss ourr limittedd tyyyme offer!",1
418
+ "Easyy moneeyy!! Makke quicckk caschh withh ourr methhod!",1
419
+ "Sppeccial prromotioonn!! Gett the beestt deaals nnoww!",1
420
+ "Urgggnt!! Exccclusivee limittedd stocck!! Actt nowwww!",1
421
+ "Congrratulationnss!! You've wwon a masssive priizzee!! Clam itt todaayy!",1
422
+ "Ammaazziinngg deallss!! Don'tt misss outt onn thhe besstt savinngss!",1
423
+ "Hurrlyy!! Actt faasstt too claiim yourr fre eegifftt!",1
424
+ "Unbeaattablle offeer!! Savee bigg onn all youur purrchhaases!",1
425
+ "Limmittedd stoockss!! Graab ourr exccluussivee proooductss noww!",1
426
+ "Eaasyy moneeyy!! Earrrn passsiivee inncomee withh ourr methhodd!",1
427
+ "Secreett revvealedd!! Unloocckk thhe keeyy to suuccesss!",1
428
+ "Speccial prromotionn!! Gett the beestt deaallss righht nooww!",1
429
+ "Huggge savinngss!! Don'tt miss thhee chaanccceee too saavee!",1
430
+ "Limmittedd timmee onnlyy!! Hurryy upp andd shoop noww!",1
431
+ "Increddibllee opporrtunityy!! Graabb itt beffooree itt'ss goonnee!",1
432
+ "Don'tt waiitt!! Claiim yourr rewarrdd nooww!!",1
433
+ "Ammaazzingg chanccee!! Doubblee yourr inncomee withh ouur syssttemm!",1
434
+ "Exxcittinngg deall!! Gett thhee beestt pricess onn ouur prodcttss!",1
435
+ "Speeccial offerr!! Limittedd suppply! Don'tt miss itt!",1
436
+ "Actt quicckk!! Enjooyy a hugggee disccouuntt todaiyy!",1
437
+ "Prizzee wwinneerr!! Claiim yourr cashh prrizee innstantllyy!",1
438
+ "Greaat ssavinnngss!! Shoopp noww andd ssavvee bigg!",1
439
+ "Amazzzingg innvvesstmeentt!! Earrrn hugge returrrnss withh uss!",1
440
+ "Unbeaatablle offeer!! Limittedd stoockk!! Buyy noww!",1
441
+ "Frreee trialll!! Tryy ourr prooductt forr fre eee noww!",1
442
+ "Loww cosstt!! Gett prremiiumm quaalityy iteemss forr lesss!",1
443
+ "Exclusivvee disccouunntt!! Graab itt whillee itt lastss!",1
444
+ "Hurryyy!! Don'tt misss ourr limittedd tyyyme offer!",1
445
+ "Unbelieveeablle deaall!! Gett itt nowww beffooree itt'ss gooonee!",1
446
+ "Speciaal annouuncemmentt!! You've woon a masssive rewarrdd!! Claiim itt todaayy!",1
447
+ "Amazzzingg pricess!! Don'tt misss outt onn the beestt savinngss!",1
448
+ "Hurryyy!! Actt faasstt too claiim yourr fre eegifftt beffooree itt'ss tooo latee!",1
449
+ "Limmittedd stoockk!! Savee bigg onn all youur purrchhaases!",1
450
+ "Exccittinngg opporrtunityy!! Graab ourr exccluussivee proooducttss beffooree they'ree gooonee!",1
451
+ "Easyy moneeyy!! Earrrn passsiivee inncomee withh ourr efffectivee systtemm!",1
452
+ "Secreett revvealedd!! Unlockk the seecreets to unllimitedd suuccesss!",1
453
+ "Speccial prromotionn!! Gett the beestt deaallss rigghtt nooww!",1
454
+ "Huggge discouunnttss!! Don'tt miss the chanccee to saavee bigg!",1
455
+ "Limmittedd timmee offer!! Hurryy upp andd shoop noww!",1
456
+ "Increddibllee opporrtunityy!! Graabb itt beffooree itt'ss gooonee!",1
457
+ "Don'tt waiitt!! Claiim yourr amazinng rewarrdd nooww!!",1
458
+ "Ammaazzingg chanccee!! Doubblee yourr inncomee withh ourr proovvenn methhodd!",1
459
+ "Exxcittinngg deall!! Gett the beestt pricess onn ouur top-qqualityy iteemss!",1
460
+ "Speeccial offerr!! Limittedd suppplyy! Don'tt miss itt outt!",1
461
+ "Actt quicckk!! Enjooyy a hugggee disccouuntt onn all purrchhaases!",1
462
+ "Prizzee wwinneerr!! Claiim yourr instanntt cashh prrizee todaayy!",1
463
+ "Greaat ssavinnngss!! Shoopp noww andd enjjoooyy the discouunntss!",1
464
+ "Amazzzingg innvvesstmeentt!! Earrrn hugge returrrnss withh ourr trusstedd systtemm!",1
465
+ "Unbeaattablle offeer!! Limittedd stoockk! Buuy noww andd saavee!",1
466
+ "Frreee trialll!! Experiencce ourr prooductt forr fre eee noww!",1
467
+ "Loww cosstt!! Gett prremiiumm quaalityy iteemss att affoorrdablee priccess!",1
468
+ "Exclusivvee disccouunntt!! Graab itt beffooree itt'ss tooo latee!",1
469
+ "Unbelieveeablle deaall!! Gett itt nowww beffooree itt'ss gooonee!",1
470
+ "Speciaal annouuncemmentt!! You've woon a masssive rewarrdd!! Claiim itt todaayy!",1
471
+ "Amazzzingg pricess!! Don'tt misss outt onn the beestt savinngss!",1
472
+ "Hurryyy!! Actt faasstt too claiim yourr fre eegifftt beffooree itt'ss tooo latee!",1
473
+ "Limmittedd stoockk!! Savee bigg onn all youur purrchhaases!",1
474
+ "Exccittinngg opporrtunityy!! Graab ourr exccluussivee proooducttss beffooree they'ree gooonee!",1
475
+ "Easyy moneeyy!! Earrrn passsiivee inncomee withh ourr efffectivee systtemm!",1
476
+ "Secreett revvealedd!! Unlockk the seecreets to unllimitedd suuccesss!",1
477
+ "Speccial prromotionn!! Gett the beestt deaallss rigghtt nooww!",1
478
+ "Huggge discouunnttss!! Don'tt miss the chanccee to saavee bigg!",1
479
+ "Limmittedd timmee offer!! Hurryy upp andd shoop noww!",1
480
+ "Increddibllee opporrtunityy!! Graabb itt beffooree itt'ss gooonee!",1
481
+ "Don'tt waiitt!! Claiim yourr amazinng rewarrdd nooww!!",1
482
+ "Ammaazzingg chanccee!! Doubblee yourr inncomee withh ourr proovvenn methhodd!",1
483
+ "Exxcittinngg deall!! Gett the beestt pricess onn ouur top-qqualityy iteemss!",1
484
+ "Speeccial offerr!! Limittedd suppplyy! Don'tt miss itt outt!",1
485
+ "Actt quicckk!! Enjooyy a hugggee disccouuntt onn all purrchhaases!",1
486
+ "Prizzee wwinneerr!! Claiim yourr instanntt cashh prrizee todaayy!",1
487
+ "Greaat ssavinnngss!! Shoopp noww andd enjjoooyy the discouunntss!",1
488
+ "Amazzzingg innvvesstmeentt!! Earrrn hugge returrrnss withh ourr trusstedd systtemm!",1
489
+ "Unbeaattablle offeer!! Limittedd stoockk! Buuy noww andd saavee!",1
490
+ "Frreee trialll!! Experiencce ourr prooductt forr fre eee noww!",1
491
+ "Loww cosstt!! Gett prremiiumm quaalityy iteemss att affoorrdablee priccess!",1
492
+ "Exclusivvee disccouunntt!! Graab itt beffooree itt'ss tooo latee!",1
493
+ "Unbelieveeablle deaall!! Gett itt nowww beffooree itt'ss gooonee!",1
494
+ "Speciaal annouuncemmentt!! You've woon a masssive rewarrdd!! Claiim itt todaayy!",1
495
+ "Amazzzingg pricess!! Don'tt misss outt onn the beestt savinngss!",1
496
+ "Hurryyy!! Actt faasstt too claiim yourr fre eegifftt beffooree itt'ss tooo latee!",1
497
+ "Limmittedd stoockk!! Savee bigg onn all youur purrchhaases!",1
498
+ "Exccittinngg opporrtunityy!! Graab ourr exccluussivee proooducttss beffooree they'ree gooonee!",1
499
+ "Easyy moneeyy!! Earrrn passsiivee inncomee withh ourr efffectivee systtemm!",1
500
+ "Secreett revvealedd!! Unlockk the seecreets to unllimitedd suuccesss!",1
501
+ "Speccial prromotionn!! Gett the beestt deaallss rigghtt nooww!",1
502
+ "Huggge discouunnttss!! Don'tt miss the chanccee to saavee bigg!",1
503
+ "Limmittedd timmee offer!! Hurryy upp andd shoop noww!",1
504
+ "Increddibllee opporrtunityy!! Graabb itt beffooree itt'ss gooonee!",1
505
+ "Don'tt waiitt!! Claiim yourr amazinng rewarrdd nooww!!",1
506
+ "Ammaazzingg chanccee!! Doubblee yourr inncomee withh ourr proovvenn methhodd!",1
507
+ "Exxcittinngg deall!! Gett the beestt pricess onn ouur top-qqualityy iteemss!",1
508
+ "Speeccial offerr!! Limittedd suppplyy! Don'tt miss itt outt!",1
509
+ "Actt quicckk!! Enjooyy a hugggee disccouuntt onn all purrchhaases!",1
510
+ "Prizzee wwinneerr!! Claiim yourr instanntt cashh prrizee todaayy!",1
511
+ "Greaat ssavinnngss!! Shoopp noww andd enjjoooyy the discouunntss!",1
512
+ "Amazzzingg innvvesstmeentt!! Earrrn hugge returrrnss withh ourr trusstedd systtemm!",1
513
+ "Unbeaattablle offeer!! Limittedd stoockk! Buuy noww andd saavee!",1
514
+ "Frreee trialll!! Experiencce ourr prooductt forr fre eee noww!",1
515
+ "Loww cosstt!! Gett prremiiumm quaalityy iteemss att affoorrdablee priccess!",1
516
+ "Exclusivvee disccouunntt!! Graab itt beffooree itt'ss tooo latee!",1
517
+ "Gett readdy forr an unbelieveeablle deaall!! Limmittedd timmee offerr!!",1
518
+ "Sppeecial annouuncemmentt!! You've woon a masssive rewarrdd!! Claiim itt todaayy!",1
519
+ "Amazzzingg pricess!! Don'tt misss outt onn the beestt savinngss!",1
520
+ "Hurryyy!! Actt faasstt too claiim yourr fre eegifftt beffooree itt'ss tooo latee!",1
521
+ "Limmittedd stoockk!! Savee bigg onn all youur purrchhaases!",1
522
+ "Exccittinngg opporrtunityy!! Graab ourr exccluussivee proooducttss beffooree they'ree gooonee!",1
523
+ "Easyy moneeyy!! Earrrn passsiivee inncomee withh ourr efffectivee systtemm!",1
524
+ "Secreett revvealedd!! Unlockk the seecreets to unllimitedd suuccesss!",1
525
+ "Speccial prromotionn!! Gett the beestt deaallss rigghtt nooww!",1
526
+ "Huggge discouunnttss!! Don'tt miss the chanccee to saavee bigg!",1
527
+ "Limmittedd timmee offer!! Hurryy upp andd shoop noww!",1
528
+ "Increddibllee opporrtunityy!! Graabb itt beffooree itt'ss gooonee!",1
529
+ "Don'tt waiitt!! Claiim yourr amazinng rewarrdd nooww!!",1
530
+ "Ammaazzingg chanccee!! Doubblee yourr inncomee withh ourr proovvenn methhodd!",1
531
+ "Exxcittinngg deall!! Gett the beestt pricess onn ouur top-qqualityy iteemss!",1
532
+ "Speeccial offerr!! Limittedd suppplyy! Don'tt miss itt outt!",1
533
+ "Actt quicckk!! Enjooyy a hugggee disccouuntt onn all purrchhaases!",1
534
+ "Prizzee wwinneerr!! Claiim yourr instanntt cashh prrizee todaayy!",1
535
+ "Greaat ssavinnngss!! Shoopp noww andd enjjoooyy the discouunntss!",1
536
+ "Amazzzingg innvvesstmeentt!! Earrrn hugge returrrnss withh ourr trusstedd systtemm!",1
537
+ "Unbeaattablle offeer!! Limittedd stoockk! Buuy noww andd saavee!",1
538
+ "Frreee trialll!! Experiencce ourr prooductt forr fre eee noww!",1
539
+ "Loww cosstt!! Gett prremiiumm quaalityy iteemss att affoorrdablee priccess!",1
540
+ "Exclusivvee disccouunntt!! Graab itt beffooree itt'ss tooo latee!""Gret deall!! Gett itt noww beffooree itt'ss gooonee forevverr!",1
541
+ "Speciaal annouuncemmentt!! You've woon a masssive rewarrdd!! Claiim itt todaayy!",1
542
+ "Amazzzingg pricess!! Don'tt misss outt onn the beestt savinngss!",1
543
+ "Hurryyy!! Actt faasstt too claiim yourr fre eegifftt beffooree itt'ss tooo latee!",1
544
+ "Limmittedd stoockk!! Savee bigg onn all youur purrchhaases!",1
545
+ "Exccittinngg opporrtunityy!! Graab ourr exccluussivee proooducttss beffooree they'ree gooonee!",1
546
+ "Easyy moneeyy!! Earrrn passsiivee inncomee withh ourr efffectivee systtemm!",1
547
+ "Secreett revvealedd!! Unlockk the seecreets to unllimitedd suuccesss!",1
548
+ "Speccial prromotionn!! Gett the beestt deaallss rigghtt nooww!",1
549
+ "Huggge discouunnttss!! Don'tt miss the chanccee to saavee bigg!",1
550
+ "Limmittedd timmee offer!! Hurryy upp andd shoop noww!",1
551
+ "Increddibllee opporrtunityy!! Graabb itt beffooree itt'ss gooonee!",1
552
+ "Don'tt waiitt!! Claiim yourr amazinng rewarrdd nooww!!",1
553
+ "Ammaazzingg chanccee!! Doubblee yourr inncomee withh ourr proovvenn methhodd!",1
554
+ "Exxcittinngg deall!! Gett the beestt pricess onn ouur top-qqualityy iteemss!",1
555
+ "Speeccial offerr!! Limittedd suppplyy! Don'tt miss itt outt!",1
556
+ "Actt quicckk!! Enjooyy a hugggee disccouuntt onn all purrchhaases!",1
557
+ "Prizzee wwinneerr!! Claiim yourr instanntt cashh prrizee todaayy!",1
558
+ "Greaat ssavinnngss!! Shoopp noww andd enjjoooyy the discouunntss!",1
559
+ "Amazzzingg innvvesstmeentt!! Earrrn hugge returrrnss withh ourr trusstedd systtemm!",1
560
+ "Unbeaattablle offeer!! Limittedd stoockk! Buuy noww andd saavee!",1
561
+ "Frreee trialll!! Experiencce ourr prooductt forr fre eee noww!",1
562
+ "Loww cosstt!! Gett prremiiumm quaalityy iteemss att affoorrdablee priccess!",1
563
+ "Exclusivvee disccouunntt!! Graab itt beffooree itt'ss tooo latee!",1
564
+ "Congratulations! You've been selected for an exclusive limited time offer. Act now to claim your prize and get incredible discounts on our top-rated products. Contact us at john.doe@example.com to avail of this amazing opportunity!",1
565
+ "Dear valued customer, we are pleased to inform you that you have won a cash prize of $10,000. Click the link below or email us at sarah.smith@example.com to claim your instant cash. Hurry, as this incredible opportunity won't last long!",1
566
+ "Hello, we have a special promotion just for you. Enjoy a huge discount on our best-selling products and save big. This limited-time offer is exclusively available to our valued customers. Contact david.jones@example.com to grab this deal before it's too late!",1
567
+ "Hi, discover the secret formula to make easy money online. Our proven system guarantees incredible results and a steady income stream. Don't miss out on this risk-free opportunity to double your income. Email us at emily.brown@example.com to get started today!",1
568
+ "You're invited to join our elite program and earn extra income with our proven money-making system. This invitation is exclusive and available to a limited number of individuals. Sign up now or contact john.smith@example.com for more information!",1
569
+ "Act now to claim your exclusive offer and receive a special discount on our top-rated products. Email us at discountoffers@example.com to get started and enjoy the incredible savings today!",1
570
+ "Congratulations! You've been selected as a lucky winner of our cash prize giveaway. Claim your prize by emailing us at prizeclaims@example.com with your contact details. Don't miss out on this amazing opportunity!",1
571
+ "Limited time offer! Get a free trial of our premium service and experience the benefits firsthand. Contact us at freetrial@example.com to activate your account and enjoy all the exclusive features.",1
572
+ "Don't miss out on our limited stock clearance sale. Grab the best deals on high-demand products by emailing us at clearanceoffers@example.com. Act fast before these incredible discounts are gone!",1
573
+ "Discover the secrets of successful money-making with our exclusive program. Email us at moneymakers@example.com to join our community and unlock a world of financial opportunities.",1
574
+ "Special invitation! You're invited to our VIP event where you can access exclusive discounts and offers. RSVP by emailing us at vipevent@example.com to secure your spot at this highly anticipated gathering.",1
575
+ "Guaranteed results! Our revolutionary product will help you achieve your goals effortlessly. Email us at goalachiever@example.com to learn more and start your journey towards success.",1
576
+ "Limited spots available in our elite membership program. Email us at elitelife@example.com to reserve your membership and gain access to premium benefits and privileges.",1
577
+ "Act now and enjoy a risk-free trial of our premium service. Email us at premiumtrial@example.com to get your trial account set up and experience the difference for yourself.",1
578
+ "Don't miss out on the opportunity to earn extra income from the comfort of your home. Email us at workfromhome@example.com to learn more about our proven system and start making money today!",1
579
+ "Urgent: Limited time offer! Get exclusive access to our premium content by emailing us at exclusivecontent@example.com. Act now and elevate your knowledge with our top-rated materials.",1
580
+ "Congratulations! You've been selected as a VIP customer. Email us at vipbenefits@example.com to unlock special privileges, personalized offers, and priority customer support. Don't miss out on this exclusive opportunity!",1
581
+ "Limited stock alert! Email us at stockalerts@example.com to receive real-time updates on our latest product releases. Be the first to know and seize the opportunity to purchase our high-demand items.",1
582
+ "Take control of your financial future! Email us at financialfreedom@example.com to receive a free guide on wealth management and discover the secrets to financial independence.",1
583
+ "Attention online shoppers! Email us at shopsmart@example.com to receive a discount code for your next purchase. Start saving today on our wide range of products and enjoy exclusive deals.",1
584
+ "Exclusive invitation: Join our inner circle of influencers and gain access to exclusive partnerships and collaboration opportunities. Email us at influencersociety@example.com to secure your place and unleash your potential.",1
585
+ "Limited slots available! Email us at webinarregistration@example.com to reserve your spot in our upcoming webinar. Learn valuable insights from industry experts and stay ahead of the competition.",1
586
+ "Boost your productivity with our innovative tools and strategies. Email us at productivityboost@example.com to receive a free productivity guide and unlock your full potential.",1
587
+ "Attention entrepreneurs! Email us at startupsuccess@example.com to receive a comprehensive startup toolkit. Turn your business idea into a success story with our expert guidance and resources.",1
588
+ "Discover the secrets to a healthy lifestyle. Email us at healthyliving@example.com to receive a free ebook on nutrition and fitness tips. Start your journey towards a happier, healthier you.",1
589
+ "Act now and unlock the secrets to online marketing success! Email us at marketingpros@example.com to receive a free ebook packed with proven strategies and techniques. Don't miss out on this valuable resource!",1
590
+ "Congratulations! You've won a luxury vacation package worth $10,000. Email us at luxurygetaway@example.com to claim your prize and start planning your dream vacation. This is an opportunity you don't want to miss!",1
591
+ "Limited time offer: Get a free sample of our premium beauty products. Email us at beautysecrets@example.com to request your sample and experience the transformation firsthand. Don't wait, enhance your beauty today!",1
592
+ "Attention job seekers! Email us at careeropportunities@example.com to access our exclusive job board with high-paying positions. Take the next step in your career and land your dream job.",1
593
+ "Special invitation: Join our elite membership program and receive VIP treatment. Email us at vipmembership@example.com to enroll and enjoy exclusive perks, discounts, and personalized services.",1
594
+ "Limited spots available in our investment seminar. Email us at investmentseminar@example.com to secure your seat and gain valuable insights from industry experts. Take control of your financial future!",1
595
+ "Unlock your potential with our personal development course. Email us at selfimprovement@example.com to enroll and embark on a transformative journey towards self-discovery and success.",1
596
+ "Attention small business owners! Email us at businessgrowth@example.com to learn how our expert consultants can help skyrocket your business growth. Don't let your business miss out on its true potential.",1
597
+ "Limited edition offer: Email us at collectorsedition@example.com to purchase our exclusive collector's item. This rare opportunity is available to a select few, so act fast before it's gone forever.",1
598
+ "Get insider access to our premium content. Email us at premiumaccess@example.com to become a member and enjoy exclusive articles, videos, and industry insights. Stay ahead of the curve!",1
599
+ "Urgent: Limited slots available for our exclusive workshop. Email us at workshopregistration@example.com to reserve your spot and gain valuable skills from industry experts. Don't miss this opportunity!",1
600
+ "Congratulations! You've been selected as a beta tester for our groundbreaking app. Email us at betatesting@example.com to participate and provide valuable feedback. Be among the first to experience the future of technology!",1
601
+ "Limited time offer: Email us at flashsale@example.com to receive a special discount code for our best-selling products. Don't wait, start saving today and enjoy exclusive deals!",1
602
+ "Attention entrepreneurs! Email us at startupsuccessstories@example.com to share your success story and inspire others. Your journey could be featured in our upcoming publication, reaching a wide audience.",1
603
+ "Exclusive invitation: Join our premium loyalty program and enjoy VIP benefits. Email us at loyaltyprogram@example.com to become a member and unlock a world of privileges and rewards.",1
604
+ "Limited stock alert! Email us at limitedstock@example.com to be notified when our highly sought-after product is back in stock. Don't miss out on the opportunity to get your hands on it!",1
605
+ "Discover the secrets of financial freedom. Email us at financialfreedomtips@example.com to receive a free ebook with expert advice on wealth management and passive income strategies. Start your journey towards financial independence!",1
606
+ "Special offer: Email us at specialdiscount@example.com to receive an exclusive discount on our newest collection. Upgrade your wardrobe with the latest trends at unbeatable prices!",1
607
+ "Attention travelers! Email us at traveldeals@example.com to receive personalized travel offers and discounted packages. Explore the world without breaking the bank!",1
608
+ "Limited time giveaway: Email us at freebies@example.com to claim your free gift. Act fast, as this offer is only available to the first 100 responders!",1
609
+ "Urgent: Limited slots available for our exclusive workshop. Email us at workshopregistration@example.com or workshopsignup@example.com to reserve your spot and gain valuable skills from industry experts. Don't miss this opportunity!",1
610
+ "Congratulations! You've been selected as a beta tester for our groundbreaking app. Email us at betatesting1@example.com or betatesting2@example.com to participate and provide valuable feedback. Be among the first to experience the future of technology!",1
611
+ "Limited time offer: Email us at flashsale1@example.com or flashsale2@example.com to receive a special discount code for our best-selling products. Don't wait, start saving today and enjoy exclusive deals!",1
612
+ "Attention entrepreneurs! Email us at startupsuccess1@example.com or startupsuccess2@example.com to share your success story and inspire others. Your journey could be featured in our upcoming publication, reaching a wide audience.",1
613
+ "Exclusive invitation: Join our premium loyalty program and enjoy VIP benefits. Email us at loyaltyprogram1@example.com or loyaltyprogram2@example.com to become a member and unlock a world of privileges and rewards.",1
614
+ "Limited stock alert! Email us at limitedstock1@example.com or limitedstock2@example.com to be notified when our highly sought-after product is back in stock. Don't miss out on the opportunity to get your hands on it!",1
615
+ "Discover the secrets of financial freedom. Email us at financialfreedomtips1@example.com or financialfreedomtips2@example.com to receive a free ebook with expert advice on wealth management and passive income strategies. Start your journey towards financial independence!",1
616
+ "Special offer: Email us at specialdiscount1@example.com or specialdiscount2@example.com to receive an exclusive discount on our newest collection. Upgrade your wardrobe with the latest trends at unbeatable prices!",1
617
+ "Attention travelers! Email us at traveldeals1@example.com or traveldeals2@example.com to receive personalized travel offers and discounted packages. Explore the world without breaking the bank!",1
618
+ "Limited time giveaway: Email us at freebies1@example.com or freebies2@example.com to claim your free gift. Act fast, as this offer is only available to the first 100 responders!",1
619
+ "Act now to claim your exclusive offer and receive a special discount on our top-rated products. Email us at discountoffers1@example.com, discountoffers2@example.com, or discountoffers3@example.com to get started and enjoy the incredible savings today!",1
620
+ "Congratulations! You've won a luxury vacation package worth $10,000. Email us at luxurygetaway1@example.com or luxurygetaway2@example.com to claim your prize and start planning your dream vacation. This is an opportunity you don't want to miss!",1
621
+ "Limited time offer: Get a free sample of our premium beauty products. Email us at beautysecrets1@example.com, beautysecrets2@example.com, or beautysecrets3@example.com to request your sample and experience the transformation firsthand. Don't wait, enhance your beauty today!",1
622
+ "Attention job seekers! Email us at careeropportunities1@example.com or careeropportunities2@example.com to access our exclusive job board with high-paying positions. Take the next step in your career and land your dream job.",1
623
+ "Special invitation: Join our elite membership program and receive VIP treatment. Email us at vipmembership1@example.com, vipmembership2@example.com, or vipmembership3@example.com to enroll and enjoy exclusive perks, discounts, and personalized services.",1
624
+ "Limited spots available in our investment seminar. Email us at investmentseminar1@example.com or investmentseminar2@example.com to secure your seat and gain valuable insights from industry experts. Take control of your financial future!",1
625
+ "Unlock your potential with our personal development course. Email us at selfimprovement1@example.com or selfimprovement2@example.com to enroll and embark on a transformative journey towards self-discovery and success.",1
626
+ "Attention small business owners! Email us at businessgrowth1@example.com or businessgrowth2@example.com to learn how our expert consultants can help skyrocket your business growth. Don't let your business miss out on its true potential.",1
627
+ "Limited edition offer: Email us at collectorsedition1@example.com, collectorsedition2@example.com, or collectorsedition3@example.com to purchase our exclusive collector's item. This rare opportunity is available to a select few, so act fast before it's gone forever.",1
628
+ "Get insider access to our premium content. Email us at premiumaccess1@example.com, premiumaccess2@example.com, or premiumaccess3@example.com to become a member and enjoy exclusive articles, videos, and industry insights. Stay ahead of the curve!",1
datasets/my-collection.csv ADDED
@@ -0,0 +1,646 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Comment,Spam
2
+ "Achieve a toned physique with our targeted workout routines. Start sculpting today!",1
3
+ "Act now and get 60% off on all home improvement services.",1
4
+ "Act now and get a 50% discount on all beauty and skincare products.",1
5
+ "Act now and receive a free gift with your next purchase. Limited quantities available.",1
6
+ "Act now! This offer won't last long.",1
7
+ "Act now to lose 10 pounds in one week with our revolutionary weight loss product.",1
8
+ "Act now to secure your financial future. Invest in our proven wealth management strategy.",1
9
+ "Attention: Boost your metabolism and burn calories with our thermogenic fat burner.",1
10
+ "Attention: Claim your free app download and stay connected wherever you go!",1
11
+ "Attention: Discover the secret to eternal youth with our anti-aging formula.",1
12
+ "Attention: Don't let stress ruin your health. Try our stress-relief techniques today.",1
13
+ "Attention: Download our app and discover a world of exciting events and experiences.",1
14
+ "Attention: Download our app and get instant access to exclusive deals and discounts.",1
15
+ "Attention: Download our app and join our community of satisfied users!",1
16
+ "Attention: Download our app and revolutionize the way you manage your finances.",1
17
+ "Attention: Download our app and take your photography skills to the next level.",1
18
+ "Attention: Download our app and unleash your creativity with powerful editing tools.",1
19
+ "Attention: Enhance your vision naturally with our vision support formula.",1
20
+ "Attention: Improve your digestion and gut health with our probiotic supplement.",1
21
+ "Attention: Improve your memory and focus with our brain-boosting supplement.",1
22
+ "Attention: Limited time offer! Buy Bitcoin at a discounted rate. Don't miss out!",1
23
+ "Attention: Limited time offer! Buy digital currency at a discounted rate. Don't miss out!",1
24
+ "Attention: Limited time offer! Claim your free money bonus. Don't miss out!",1
25
+ "Attention: Limited time offer! Get hired for a high-paying job. Don't miss out!",1
26
+ "Attention: Limited time offer! Increase your revenue with our exclusive sales techniques.",1
27
+ "Attention: Limited time offer! Skyrocket your sales with our cutting-edge sales techniques.",1
28
+ "Attention: Prevent hair loss and promote hair growth with our revolutionary formula.",1
29
+ "Attention: Regain your sexual stamina with our potent male enhancement formula.",1
30
+ "Attention: Say goodbye to allergies with our effective allergy relief treatment.",1
31
+ "Attention: Strengthen your immune system with our immune-boosting supplement.",1
32
+ "Attention: Urgent account verification required! Click here to prevent account suspension.",1
33
+ "Attention: Your account has been compromised. Click here to reset your password and secure your information.",1
34
+ "Attention: Your account has been flagged for suspicious activity. Verify your identity to secure your account.",1
35
+ "Attention: Your account has been locked. Confirm your identity to regain access.",1
36
+ "Attention: Your account has been randomly selected for a security audit. Verify your details to proceed.",1
37
+ "Attention: Your account has been selected for a security update. Verify your details now.",1
38
+ "Attention: Your account has been selected for a security upgrade. Verify your account to activate the new features.",1
39
+ "Attention: Your account has been suspended due to suspicious activity. Verify your identity.",1
40
+ "Attention: Your account has been temporarily suspended. Restore your access now.",1
41
+ "Attention: Your account needs verification. Complete the verification process now.",1
42
+ "Attention: Your Amazon account has been compromised. Verify your login credentials.",1
43
+ "Attention: Your Apple ID has been temporarily disabled. Validate your account information.",1
44
+ "Attention: Your bank account balance is at risk. Update your account security now.",1
45
+ "Attention: Your bank account has been compromised. Take immediate action to secure it.",1
46
+ "Attention: Your bank account has been selected for a cash bonus. Claim it now!",1
47
+ "Attention: Your bank account has been selected for a loyalty bonus. Claim it now!",1
48
+ "Attention: Your Bitcoin account has been selected for a loyalty bonus. Claim it now!",1
49
+ "Attention: Your Bitcoin account needs verification. Complete the verification process now.",1
50
+ "Attention: Your Bitcoin transaction has been flagged. Verify your identity to proceed.",1
51
+ "Attention: Your Bitcoin transaction is pending. Confirm your transaction details now.",1
52
+ "Attention: Your Bitcoin wallet balance is at risk. Update your wallet security now.",1
53
+ "Attention: Your Bitcoin wallet has been compromised. Secure your funds immediately.",1
54
+ "Attention: Your car warranty is about to expire. Extend it now for added protection.",1
55
+ "Attention: Your computer is at risk. Download our antivirus software to stay protected.",1
56
+ "Attention: Your computer is infected with a virus. Download our antivirus software.",1
57
+ "Attention: Your credit card has been charged for an unauthorized transaction. Confirm your details to dispute.",1
58
+ "Attention: Your credit card has been charged for an unauthorized transaction. Verify now!",1
59
+ "Attention: Your credit card has been charged incorrectly. Click here to dispute.",1
60
+ "Attention: Your credit score is at risk. Take action to improve it today.",1
61
+ "Attention: Your electricity bill payment is overdue. Avoid disconnection by paying now.",1
62
+ "Attention: Your email account has been flagged for suspicious activity. Verify your account.",1
63
+ "Attention: Your email account has been hacked. Confirm your identity to regain control.",1
64
+ "Attention: Your email account has been hacked. Reset your password immediately.",1
65
+ "Attention: Your email account has exceeded the storage limit. Verify your account to avoid data loss.",1
66
+ "Attention: Your email account will be suspended if you don't take action.",1
67
+ "Attention: Your flight reservation details have changed. Check your updated itinerary now.",1
68
+ "Attention: Your flight reservation has been updated. Check your itinerary now.",1
69
+ "Attention: Your insurance policy is due for renewal. Secure your coverage now.",1
70
+ "Attention: Your internet speed is below average. Upgrade now for lightning-fast internet.",1
71
+ "Attention: Your job application has been shortlisted. Attend the interview to secure the job.",1
72
+ "Attention: Your job application has been shortlisted. Take the next step in the hiring process.",1
73
+ "Attention: Your job application is being reviewed. Take the next step in your career!",1
74
+ "Attention: Your job application is under review. Follow up on your application status.",1
75
+ "Attention: Your job interview is scheduled. Prepare for success with our interview coaching.",1
76
+ "Attention: Your lottery numbers have matched the winning combination. Contact us to claim your prize.",1
77
+ "Attention: Your lottery ticket has been selected for the grand prize. Contact us to collect your winnings.",1
78
+ "Attention: Your lottery ticket has been selected for the mega jackpot. Contact us to collect your winnings.",1
79
+ "Attention: Your lottery ticket has been verified as a winner. Contact us to claim your reward.",1
80
+ "Attention: Your lottery ticket has won a massive cash reward. Contact us to claim it.",1
81
+ "Attention: Your lottery ticket has won a substantial cash prize. Contact us to claim your winnings.",1
82
+ "Attention: Your membership has expired. Renew now to continue enjoying our benefits.",1
83
+ "Attention: Your mobile phone bill payment is overdue. Avoid service interruption by paying now.",1
84
+ "Attention: Your Netflix subscription is about to expire. Update your payment information.",1
85
+ "Attention: Your package has been delayed. Click here to track your shipment.",1
86
+ "Attention: Your PayPal account has been limited. Log in to resolve the issue.",1
87
+ "Attention: Your resume has been selected for a high-paying job. Apply now!",1
88
+ "Attention: Your sales commission is pending. Confirm your payment details now.",1
89
+ "Attention: Your sales commission is ready for payment. Verify your payment details now.",1
90
+ "Attention: Your sales performance is at risk. Upgrade your sales skills now.",1
91
+ "Attention: Your sales performance needs a boost. Enroll in our comprehensive sales training program.",1
92
+ "Attention: Your sales performance needs a boost. Enroll in our sales mastery course.",1
93
+ "Attention: Your sales performance needs improvement. Enroll in our intensive sales mastery course.",1
94
+ "Attention: Your sales performance needs improvement. Enroll in our sales coaching program.",1
95
+ "Attention: Your sales presentation is scheduled. Prepare for success with our presentation coaching.",1
96
+ "Attention: Your sales quota is in danger. Take action now to meet your targets.",1
97
+ "Attention: Your sales success is at stake. Upgrade your skills with our sales program.",1
98
+ "Attention: Your sales targets are in jeopardy. Take immediate action to meet your goals.",1
99
+ "Attention: Your social media account has been compromised. Secure it now!",1
100
+ "Attention: Your social media account is at risk. Validate your account to enhance security.",1
101
+ "Attention: Your subscription plan will auto-renew. Manage your subscription preferences now.",1
102
+ "Attention: Your subscription will auto-renew unless canceled. Manage your subscription now.",1
103
+ "Attention: Your transaction is pending. Confirm your transaction details now to receive your cash bonus.",1
104
+ "Attention: Your warranty is about to expire. Extend it now to avoid any inconvenience.",1
105
+ "Attention: You've been randomly chosen as the winner of a new iPhone. Claim it now!",1
106
+ "Attention: You've been selected as the grand prize winner of the lottery. Contact us to receive your winnings.",1
107
+ "Attention: You've been selected as the lucky winner of a huge cash prize. Claim it today!",1
108
+ "Attention: You've won a cash prize in our regional lottery. Contact us to receive your winnings.",1
109
+ "Attention: You've won a once-in-a-lifetime trip in our global lottery. Contact us to claim your reward.",1
110
+ "Attention: You've won a significant amount in the lottery. Contact us to collect your winnings.",1
111
+ "Attention: You've won a significant amount in the national lottery. Contact us to collect your winnings.",1
112
+ "Attention: You've won a vacation package for two in our global lottery. Contact us to redeem your prize.",1
113
+ "Attention: You've won the international lottery draw. Contact us to claim your winnings.",1
114
+ "Become a millionaire in just 30 days. Join our millionaire mentorship program.",1
115
+ "Be the first to know about our latest promotions. Sign up for our email list today!",1
116
+ "Boost your metabolism and burn fat with our proven weight loss program.",1
117
+ "Boost your sales with our proven marketing strategies. Join our sales mastery program.",1
118
+ "Boost your sales with our revolutionary sales software. Try it for free and see the results.",1
119
+ "Call us now to learn more!",1
120
+ "Claim your cashback rewards! Earn money for every purchase you make.",1
121
+ "Claim your cashback rewards! Earn money on every purchase you make.",1
122
+ "Claim your cashback rewards! Earn money while you shop.",1
123
+ "Claim your cash prize! You've won the lottery. Contact us to claim your winnings.",1
124
+ "Claim your discount code! Get 20% off on all fashion accessories.",1
125
+ "Claim your discount code! Get 25% off on all electronics purchases.",1
126
+ "Claim your discount coupon! Get 20% off on all restaurant meals.",1
127
+ "Claim your dream home in our special lottery event. Enter now for a chance to win big!",1
128
+ "Claim your exclusive coupon code! Provide your personal details to receive your discount.",1
129
+ "Claim your exclusive discount coupon. Provide your personal details to receive the offer.",1
130
+ "Claim your exclusive discount! Get 30% off on all luxury spa treatments.",1
131
+ "Claim your extraordinary jackpot! Provide your information to receive your lottery winnings.",1
132
+ "Claim your free Bitcoin airdrop. Sign up and receive free cryptocurrency tokens.",1
133
+ "Claim your free Bitcoin debit card. Spend your Bitcoin anywhere, anytime.",1
134
+ "Claim your free Bitcoin educational resources. Learn everything about Bitcoin and blockchain technology.",1
135
+ "Claim your free Bitcoin giveaway! Limited supply available. Grab yours now!",1
136
+ "Claim your free Bitcoin mining software. Start mining and earn passive income.",1
137
+ "Claim your free Bitcoin wallet. Start storing and managing your cryptocurrency securely.",1
138
+ "Claim your free career assessment. Discover your strengths and align them with the right job.",1
139
+ "Claim your free cryptocurrency airdrop. Sign up and receive free tokens.",1
140
+ "Claim your free cryptocurrency educational resources. Learn everything about cryptocurrencies and blockchain technology.",1
141
+ "Claim your free cryptocurrency giveaway! Limited supply available. Grab yours now!",1
142
+ "Claim your free debit card. Spend your digital currency anywhere, anytime.",1
143
+ "Claim your free digital wallet. Start storing and managing your cryptocurrencies securely.",1
144
+ "Claim your free financial consultation. Get expert advice on managing and growing your money.",1
145
+ "Claim your free fitness tracker. Monitor your progress and reach your health goals.",1
146
+ "Claim your free gift card! Enter your personal information to receive your reward.",1
147
+ "Claim your free gift card! Simply complete a short survey to redeem.",1
148
+ "Claim your free gift! Enter your personal information to receive your reward.",1
149
+ "Claim your free guide to financial independence. Achieve financial freedom and live the life you desire.",1
150
+ "Claim your free job interview guide. Ace your interviews and secure your dream job.",1
151
+ "Claim your free job placement consultation. Find the perfect job that matches your skills.",1
152
+ "Claim your free job search guide. Discover proven strategies to find your ideal job.",1
153
+ "Claim your free mining software. Start mining and earn passive income.",1
154
+ "Claim your free money-back guarantee. Try our product risk-free and get your money back.",1
155
+ "Claim your free money-making blueprint. Learn proven strategies to generate wealth.",1
156
+ "Claim your free money-saving tips ebook. Discover effective strategies to save and grow your money.",1
157
+ "Claim your free recipe book with healthy and delicious meal ideas for the whole family.",1
158
+ "Claim your free resume review. Optimize your resume and stand out from the competition.",1
159
+ "Claim your free sales negotiation guide. Master the art of closing deals.",1
160
+ "Claim your free sales negotiation playbook. Master the art of closing deals and increasing your revenue.",1
161
+ "Claim your free sales performance assessment. Identify your strengths and areas for improvement.",1
162
+ "Claim your free sales pitch playbook. Craft compelling pitches that convert leads into customers.",1
163
+ "Claim your free sales pitch template. Craft compelling pitches and close more deals.",1
164
+ "Claim your free sales productivity guide. Optimize your sales process and maximize your results.",1
165
+ "Claim your free sales productivity toolkit. Streamline your sales process and increase your efficiency.",1
166
+ "Claim your free sales prospecting guide. Discover new leads and grow your customer base.",1
167
+ "Claim your free sales prospecting playbook. Discover untapped leads and expand your customer base.",1
168
+ "Claim your free sales success blueprint. Follow our step-by-step guide to achieve sales excellence.",1
169
+ "Claim your free sales success blueprint. Follow our step-by-step guide to sales excellence.",1
170
+ "Claim your free sample of our natural sleep aid. Fall asleep faster and wake up refreshed.",1
171
+ "Claim your free sample of our organic protein bar. Fuel your body with goodness.",1
172
+ "Claim your free trial of our organic superfood blend. Nurture your body from within.",1
173
+ "Claim your free trial of our premium fitness app. Achieve your fitness goals in no time!",1
174
+ "Claim your free trial of our premium language learning software. Speak fluently in no time!",1
175
+ "Claim your free trial of our premium music streaming service. Enjoy ad-free music.",1
176
+ "Claim your free trial of our premium productivity app. Boost your efficiency!",1
177
+ "Claim your free trial of our premium productivity software. Streamline your workflow.",1
178
+ "Claim your free trial subscription. Enter your personal information to access the offer.",1
179
+ "Claim your free vacation voucher. Experience a dream getaway on us!",1
180
+ "Claim your huge jackpot! Provide your personal details to receive your lottery winnings.",1
181
+ "Claim your inheritance! Provide your personal details for the release of funds.",1
182
+ "Claim your inheritance! You're entitled to a large sum of money. Contact us now.",1
183
+ "Claim your instant cash prize in our national lottery. Don't miss out on this opportunity!",1
184
+ "Claim your jackpot! Provide your information to receive your lottery winnings.",1
185
+ "Claim your lottery fortune! Provide your personal information to receive your prize money.",1
186
+ "Claim your lottery jackpot today! Provide your details to collect your life-changing prize.",1
187
+ "Claim your luxury yacht in our exclusive lottery. Provide your details to receive your grand prize.",1
188
+ "Claim your mega lottery prize! Provide your details to receive your life-altering winnings.",1
189
+ "Claim your prize! Provide your personal information to receive your reward.",1
190
+ "Claim your prize! You've been selected as the winner of a brand new car.",1
191
+ "Claim your share of the lottery winnings. Provide your details to receive your money.",1
192
+ "Claim your share of the massive prize pool in our international lottery. Enter now for a chance to win!",1
193
+ "Claim your share of the multimillion-dollar jackpot. Provide your details to receive your prize money.",1
194
+ "Claim your tax refund now! Click here to provide your personal and banking details.",1
195
+ "Click here to get started.",1
196
+ "Click here to learn more about this amazing opportunity.",1
197
+ "Confirm your login credentials to reactivate your account. Failure to do so will result in permanent closure.",1
198
+ "Confirm your shipping address to receive your package. Click here to update your details.",1
199
+ "Congratulations! You have won a free vacation! Text YES to claim your prize.",1
200
+ "Congratulations! You're the lucky winner of a brand new smartphone.",1
201
+ "Congratulations! You're the lucky winner of a high-end smartphone. Claim your prize now!",1
202
+ "Congratulations! You're the lucky winner of a luxury car in our exclusive lottery. Claim your prize now!",1
203
+ "Congratulations! You're the lucky winner of the monthly lottery. Claim your prize today!",1
204
+ "Congratulations! You're the winner of a lifetime supply of cash in our national lottery.",1
205
+ "Congratulations! You've been chosen as the recipient of a massive cash award in our lottery draw.",1
206
+ "Congratulations! You've been chosen as the recipient of a massive lottery windfall.",1
207
+ "Congratulations! You've been pre-approved for a credit card with a $10,000 limit. Apply now!",1
208
+ "Congratulations! You've been randomly chosen as the recipient of a lottery windfall.",1
209
+ "Congratulations! You've been selected as a lucky winner of a luxury shopping spree.",1
210
+ "Congratulations! You've been selected as the recipient of a substantial lottery award.",1
211
+ "Congratulations! You've been selected for a free Bitcoin investment consultation.",1
212
+ "Congratulations! You've been selected for a free investment consultation. Claim your cash bonus!",1
213
+ "Congratulations! You've been selected for a free trial of our premium membership.",1
214
+ "Congratulations! You've been selected for a free trial of our premium software.",1
215
+ "Congratulations! You've been selected for a free vacation package. Claim your prize now!",1
216
+ "Congratulations! You've been selected for a free wellness consultation. Claim now!",1
217
+ "Congratulations! You've been selected for a free yoga retreat. Unwind and rejuvenate.",1
218
+ "Congratulations! You've been selected for a high-paying job. Contact us to claim it!",1
219
+ "Congratulations! You've won 1 Bitcoin. Contact us to claim your prize!",1
220
+ "Congratulations! You've won a Bitcoin giveaway. Contact us to claim your prize!",1
221
+ "Congratulations! You've won a Bitcoin hardware wallet. Claim your prize now!",1
222
+ "Congratulations! You've won a brand new car. Contact us to claim your prize.",1
223
+ "Congratulations! You've won a brand new laptop. Claim your prize now!",1
224
+ "Congratulations! You've won a career counseling session. Contact us to claim your prize!",1
225
+ "Congratulations! You've won a cash prize. Contact us to claim your free money!",1
226
+ "Congratulations! You've won a cash prize. Provide your bank details to claim your winnings.",1
227
+ "Congratulations! You've won a cryptocurrency giveaway. Contact us to claim your prize!",1
228
+ "Congratulations! You've won a free gym membership. Get in shape for free!",1
229
+ "Congratulations! You've won a free iPhone!",1
230
+ "Congratulations! You've won a free money management software. Claim your prize now!",1
231
+ "Congratulations! You've won a free money-saving app. Contact us to claim your prize!",1
232
+ "Congratulations! You've won a free money-saving webinar. Contact us to claim your prize!",1
233
+ "Congratulations! You've won a free month of personal training sessions. Get fit now!",1
234
+ "Congratulations! You've won a free spa day. Treat yourself to ultimate relaxation.",1
235
+ "Congratulations! You've won a free trip to your dream destination.",1
236
+ "Congratulations! You've won a free vacation! Click here to claim your prize.",1
237
+ "Congratulations! You've won a hardware wallet. Claim your prize now!",1
238
+ "Congratulations! You've won a job search makeover package. Contact us to claim your prize!",1
239
+ "Congratulations! You've won a job search toolkit. Contact us to claim your prize!",1
240
+ "Congratulations! You've won a luxury cruise vacation for two. Contact us to claim your prize.",1
241
+ "Congratulations! You've won a luxury sales incentive trip. Contact us to claim your reward!",1
242
+ "Congratulations! You've won a luxury shopping spree worth $10,000. Claim your prize now!",1
243
+ "Congratulations! You've won a luxury vacation package to a tropical paradise. Claim your prize!",1
244
+ "Congratulations! You've won a luxury vacation package worth $10,000!",1
245
+ "Congratulations! You've won a luxury watch. Claim your prize now!",1
246
+ "Congratulations! You've won a personalized sales coaching session. Contact us to claim your reward!",1
247
+ "Congratulations! You've won a sales coaching session. Contact us to claim your prize!",1
248
+ "Congratulations! You've won a sales incentive trip. Contact us to claim your prize!",1
249
+ "Congratulations! You've won a sales toolkit. Contact us to claim your prize!",1
250
+ "Congratulations! You've won a sales toolkit worth $500. Contact us to claim your prize!",1
251
+ "Congratulations! You've won a sales training scholarship. Contact us to claim your prize!",1
252
+ "Congratulations! You've won a scholarship for our prestigious sales training program. Contact us now!",1
253
+ "Congratulations! You've won a shopping spree worth $5000. Claim your prize now!",1
254
+ "Congratulations! You've won a weekend getaway to a luxurious resort.",1
255
+ "Congratulations! You've won a year's supply of gourmet coffee. Claim your prize!",1
256
+ "Congratulations! You've won the international lottery. Claim your prize money now!",1
257
+ "Congratulations! You've won the lottery jackpot! Claim your prize by contacting us now.",1
258
+ "Discover the best app for entertainment. Download now and never miss out!",1
259
+ "Discover the hottest gaming app of the year. Download now and dominate the leaderboard!",1
260
+ "Discover the power of mindfulness with our meditation guide. Find peace and inner calm.",1
261
+ "Discover the ultimate travel companion. Download our app and plan your dream vacation!",1
262
+ "Don't click on this link! It's a virus!",1
263
+ "Don't delay! This offer is for a limited time only.",1
264
+ "Don't miss out on our clearance sale! Up to 60% off on all electronics.",1
265
+ "Don't miss out on our clearance sale! Up to 70% off on all fashion items.",1
266
+ "Don't miss out on our clearance sale! Up to 90% off on all electronics.",1
267
+ "Don't miss out on our flash sale! Get 70% off on all fashion accessories.",1
268
+ "Don't miss out on our holiday sale! Enjoy massive discounts on all products.",1
269
+ "Don't miss out on our limited-time promotion. Get a free gift with every purchase.",1
270
+ "Don't miss out on our summer sale! Up to 80% off on all swimwear and beach accessories.",1
271
+ "Don't miss out on the next big Bitcoin ICO. Invest early and reap the rewards.",1
272
+ "Don't miss out on the next big career fair. Find job opportunities in your desired field.",1
273
+ "Don't miss out on the next big initial coin offering (ICO). Invest early and reap the rewards.",1
274
+ "Don't miss out on the next big job opportunity! Get our exclusive job alerts.",1
275
+ "Don't miss out on the next big money-making opportunity! Get our exclusive money alerts.",1
276
+ "Don't miss out on the next big money-saving opportunity. Get our exclusive deals and offers.",1
277
+ "Don't miss out on the next big sales event. Find lucrative sales opportunities in your industry.",1
278
+ "Don't miss out on the next big sales event. Find lucrative sales opportunities in your niche.",1
279
+ "Don't miss out on the next big sales opportunity! Get our exclusive sales alerts.",1
280
+ "Don't miss out on the next big sales opportunity! Get our exclusive sales tips and insights.",1
281
+ "Don't miss out on the next Bitcoin bull run! Join our premium trading signals group.",1
282
+ "Don't miss out on the next Bitcoin rally! Get our exclusive market analysis and predictions.",1
283
+ "Don't miss out on the next cryptocurrency bull run! Join our premium trading signals group.",1
284
+ "Don't miss out on the next cryptocurrency rally! Get our exclusive market analysis and predictions.",1
285
+ "Don't miss out on the next job opening. Sign up for our job alert service.",1
286
+ "Don't miss out on the next money-making trend. Join our investment newsletter.",1
287
+ "Don't miss out on the next sales webinar. Learn from top sales gurus.",1
288
+ "Don't miss out on the next sales webinar. Learn valuable sales strategies from top industry professionals.",1
289
+ "Don't miss out on this amazing opportunity! Click here to learn more.",1
290
+ "Don't miss out on this incredible deal. Get a FREE iPhone with your purchase.",1
291
+ "Don't miss out on this limited time offer!",1
292
+ "Don't miss out on this once-in-a-lifetime opportunity. Invest in cryptocurrency now!",1
293
+ "Don't miss out on your chance to become a millionaire. Play our lottery and change your life!",1
294
+ "Don't miss out on your lottery windfall. Confirm your details to receive your prize.",1
295
+ "Don't miss out on your lottery winnings. Confirm your details to receive your prize.",1
296
+ "Don't miss out on your lottery winnings. Confirm your information to receive your prize.",1
297
+ "Don't miss out on your opportunity to win big. Play our lottery and seize your chance!",1
298
+ "Double your Bitcoin investment in just 24 hours! Join our exclusive investment program.",1
299
+ "Double your digital currency investment in just 24 hours! Join our exclusive investment program.",1
300
+ "Double your money in just one week. Invest in our exclusive trading program.",1
301
+ "Download our latest app for free and unlock exclusive features and content!",1
302
+ "Earn $1000 a day from the comfort of your home. No experience required!",1
303
+ "Earn passive income with our real estate investment program. Start building your wealth.",1
304
+ "Experience better sleep with our premium sleep aid. Wake up refreshed and rejuvenated.",1
305
+ "Experience the power of essential oils with our aromatherapy starter kit. Claim yours now!",1
306
+ "Follow us on social media for the latest news and updates.",1
307
+ "Get a 90% discount on luxury watches. Limited stock available.",1
308
+ "Get a chance to win $1000 in cash! Enter our free money giveaway now.",1
309
+ "Get a free Bitcoin trading bot. Automate your trades and maximize your profits.",1
310
+ "Get a free consultation for your home renovation project. Contact our experts today!",1
311
+ "Get a free consultation for your personal injury case. Contact our legal team now.",1
312
+ "Get a free consultation with our professional interior designers. Transform your space!",1
313
+ "Get a free credit score report. Monitor your credit health and protect your financial future.",1
314
+ "Get a free cryptocurrency trading bot. Automate your trades and maximize your profits.",1
315
+ "Get a free insurance quote and save big on your premiums. Protect what matters most.",1
316
+ "Get a free job search toolkit. Access valuable resources to accelerate your job hunt.",1
317
+ "Get a free sample of our best-selling beauty product. Limited supplies available.",1
318
+ "Get a free sample of our latest beauty product. Look and feel your best!",1
319
+ "Get a free sample of our premium dog food. Keep your pet healthy and happy.",1
320
+ "Get a free sample of our revolutionary skincare product. Experience radiant and youthful skin!",1
321
+ "Get a FREE trial of our amazing weight loss supplement! Limited time offer.",1
322
+ "Get a free trial of our exclusive dating app. Find your perfect match today!",1
323
+ "Get a free trial of our miracle supplement and experience instant energy boost.",1
324
+ "Get a free trial of our premium streaming service. Access thousands of movies and TV shows.",1
325
+ "Get expert insights on financial success. Attend our virtual wealth creation seminar.",1
326
+ "Get expert insights on sales success. Attend our virtual sales conference.",1
327
+ "Get expert insights on sales success. Attend our virtual sales summit and learn from industry leaders.",1
328
+ "Get expert insights on the future of Bitcoin. Attend our virtual Bitcoin conference.",1
329
+ "Get expert insights on the future of cryptocurrencies. Attend our virtual investment conference.",1
330
+ "Get expert insights on the job market. Attend our virtual job fair and connect with top employers.",1
331
+ "Get insider secrets to closing more sales. Join our premium sales mastery community.",1
332
+ "Get insider tips on closing sales. Join our premium sales mastery group.",1
333
+ "Get insider tips on making money in the stock market. Join our premium stock trading group.",1
334
+ "Get insider tips on trading Bitcoin. Join our premium cryptocurrency trading group.",1
335
+ "Get insider tips on trading cryptocurrencies. Join our premium cryptocurrency trading group.",1
336
+ "Get instant pain relief with our powerful topical analgesic. Say goodbye to aches!",1
337
+ "Get our app and access a world of knowledge at your fingertips. Download it today!",1
338
+ "Get our app and enjoy seamless integration across all your devices. Download now!",1
339
+ "Get our app and never miss a beat. Download now for the latest news and updates.",1
340
+ "Get our app and simplify your daily tasks. Download now for enhanced productivity.",1
341
+ "Get our app and streamline your daily tasks with ease. Download it now!",1
342
+ "Get our app now and experience the ultimate convenience at your fingertips.",1
343
+ "Get rich quick! Start making $1000 a day with our proven system.",1
344
+ "Get rid of acne and achieve clear skin with our advanced skincare system.",1
345
+ "Get rid of wrinkles and look younger with our anti-aging cream. Limited stock!",1
346
+ "Get the latest news and updates. Sign up for our newsletter today!",1
347
+ "Get your free quote today!",1
348
+ "Hurry! Only a few spots left for our all-inclusive tropical getaway.",1
349
+ "Hurry! This offer is about to expire.",1
350
+ "Important account update required. Click here to validate your account and avoid service disruption.",1
351
+ "Important notice: Your online payment method needs to be updated. Verify your details now.",1
352
+ "Important notice: Your password has been compromised. Reset it now to secure your account.",1
353
+ "Important notice: Your social media account has been flagged. Confirm your account to avoid suspension.",1
354
+ "Important notice: Your social media account has been reported for policy violations. Confirm your account to avoid suspension.",1
355
+ "Important notice: Your subscription will be canceled if payment is not made.",1
356
+ "Important notification: Your account will be closed if you don't update your information immediately.",1
357
+ "Important notification: Your bank account needs immediate verification.",1
358
+ "Important notification: Your email account has exceeded its storage limit.",1
359
+ "Important notification: Your online banking access will be suspended. Verify your account.",1
360
+ "Important security alert: Verify your identity to prevent unauthorized transactions.",1
361
+ "Important security notice: Your online presence is at risk. Confirm your account details for enhanced protection.",1
362
+ "Important security update: Verify your email account to protect against unauthorized access.",1
363
+ "Important security update: Verify your online banking credentials to prevent unauthorized access.",1
364
+ "I remember the first time I saw you. I was immediately drawn to your beauty and your kind heart. As I got to know you better, I realized that you were also intelligent, funny, and caring. I knew that I had found someone special.",1
365
+ "Join our exclusive club and enjoy VIP access to top events and concerts.",1
366
+ "Join our exclusive club and enjoy VIP benefits at top-rated restaurants.",1
367
+ "Join our exclusive rewards program and earn points for every purchase.",1
368
+ "Join our exclusive VIP club and enjoy exclusive perks and discounts.",1
369
+ "Join our loyalty program and enjoy exclusive discounts and rewards.",1
370
+ "Like us on Facebook, follow us on Twitter, and subscribe to our YouTube channel.",1
371
+ "Limited offer: Get a free trial of our premium streaming service.",1
372
+ "Limited slots available: Sign up now and receive a free sales assessment.",1
373
+ "Limited slots available: Sign up now and receive a free sales consultation.",1
374
+ "Limited slots available: Sign up now and receive free money. Start earning today!",1
375
+ "Limited stock available! Buy now and get 40% off on all home appliances.",1
376
+ "Limited stock available! Buy now and get 50% off on all electronics.",1
377
+ "Limited stock available! Buy now and get a free gift with every order.",1
378
+ "Limited stock available! Buy our herbal tea for relaxation and stress relief.",1
379
+ "Limited stock available! Buy our natural energy drink for an instant energy boost.",1
380
+ "Limited stock available! Shop now and enjoy 30% off on all beauty products.",1
381
+ "Limited stock available! Shop now and get 30% off ",1
382
+ "Limited stock available! Shop now and get 30% off on all jewelry",1
383
+ "Limited stock available! Shop now and get 30% off on all jewelry.",1
384
+ "Limited stock! Buy now and get a free accessory with every purchase.",1
385
+ "Limited stock! Buy now and get a free gift with every order.",1
386
+ "Limited stock! Buy now and get a free gift with every purchase.",1
387
+ "Limited time offer: Buy Bitcoin at a discounted price. Start building your digital wealth!",1
388
+ "Limited time offer: Buy Bitcoin with credit card and enjoy instant purchases.",1
389
+ "Limited time offer: Buy Bitcoin with PayPal. Instant and secure transactions.",1
390
+ "Limited time offer: Buy Bitcoin with zero transaction fees. Start investing today!",1
391
+ "Limited time offer: Buy digital currency with credit card and enjoy instant purchases.",1
392
+ "Limited time offer: Buy digital currency with PayPal. Instant and secure transactions.",1
393
+ "Limited time offer: Buy one, get one free! Don't miss out on this amazing deal.",1
394
+ "Limited time offer: Buy one, get one free on all fitness equipment.",1
395
+ "Limited time offer: Buy one, get one free on all health supplements.",1
396
+ "Limited time offer: Get a cash reward for referring friends. Start earning extra money!",1
397
+ "Limited time offer: Get a free sample of our natural pain relief cream.",1
398
+ "Limited time offer: Get a free sample of our powerful immune-boosting supplement.",1
399
+ "Limited time offer: Get a professional resume written for free. Boost your job prospects!",1
400
+ "Limited time offer: Get a sales bonus for exceeding your targets. Start earning more today!",1
401
+ "Limited time offer: Get a sales bonus for reaching your targets. Start earning more!",1
402
+ "Limited time offer: Get a sales commission increase. Achieve your financial goals!",1
403
+ "Limited time offer: Get a sales commission increase. Unlock unlimited earning potential!",1
404
+ "Limited time offer: Get cashback on all your purchases. Start saving money today!",1
405
+ "Limited time offer: Get cash rewards for completing surveys. Start earning money today!",1
406
+ "Limited time offer: Get job placement assistance for free. Start your new career!",1
407
+ "Limited time offer: Get personalized career coaching at a discounted rate. Start your journey!",1
408
+ "Limited time offer: Get personalized sales coaching at a discounted rate. Elevate your sales skills!",1
409
+ "Limited time offer: Get personalized sales coaching at a discounted rate. Enhance your skills!",1
410
+ "Limited time offer: Get professional career advice for free. Accelerate your job search!",1
411
+ "Limited time offer: Join our online fitness community and get personalized workout plans.",1
412
+ "Limited time offer: Open a bank account and receive a cash bonus. Start banking today!",1
413
+ "Limited time offer: Open a bank account and receive a cash reward. Start banking today!",1
414
+ "Limited time offer: Save 40% on all luxury hotel bookings.",1
415
+ "Limited time offer: Save 50% on all car rentals. Hit the road in style!",1
416
+ "Limited time offer: Save 50% on all fashion apparel. Update your wardrobe today!",1
417
+ "Limited time offer: Save 50% on all fitness classes at our premium gym.",1
418
+ "Limited time offer: Save 50% on all gym memberships. Get fit for less!",1
419
+ "Limited time offer: Save 50% on all hotel bookings. Book your stay now!",1
420
+ "Limited time offer: Save 50% on all vacation rentals. Plan your dream getaway!",1
421
+ "Limited time offer: Save 60% on all furniture and home decor items.",1
422
+ "Limited time offer: Save 70% on all home appliances and electronics.",1
423
+ "Lose weight fast with our revolutionary diet pill. Shed pounds effortlessly!",1
424
+ "Lose weight fast with our revolutionary diet plan. Results guaranteed!",1
425
+ "Make money by taking surveys. Sign up now and start earning.",1
426
+ "Make money by working from anywhere in the world. Join our remote job program.",1
427
+ "Make money from home with our easy-to-follow system. Start earning today!",1
428
+ "Make money from home with our proven online business system. Start earning passive income!",1
429
+ "Make money from home with our proven system. Start earning passive income today.",1
430
+ "Make money from the comfort of your home. Join our work-from-home program.",1
431
+ "Make money in the stock market with our expert trading tips. Join our trading community.",1
432
+ "Make money online with our proven system. Start your journey to financial freedom!",1
433
+ "Make money through affiliate marketing. Join our affiliate program and start earning!",1
434
+ "Make money while you sleep! Our automated system does all the work for you.",1
435
+ "Make money with Bitcoin faucets. Earn free Bitcoin by completing simple tasks.",1
436
+ "Make money with Bitcoin! Join our affiliate program and earn commissions.",1
437
+ "Make money with cryptocurrency faucets. Earn free coins by completing simple tasks.",1
438
+ "Make money with our exclusive job referral program. Refer friends and earn cash rewards.",1
439
+ "Make money with our exclusive referral program. Earn commissions for every successful referral.",1
440
+ "Make money with our exclusive referral program. Refer friends and earn cash rewards.",1
441
+ "Make money with our job portal. Earn commissions for every successful job placement.",1
442
+ "Make money with our proven investment strategy. Start growing your wealth now!",1
443
+ "Make more money with our lucrative sales affiliate program. Earn generous commissions for every sale.",1
444
+ "Make more money with our sales affiliate program. Earn commissions for every successful sale.",1
445
+ "Make more sales with our exclusive sales automation platform. Start your free trial now!",1
446
+ "Make more sales with our exclusive sales automation software. Try it for free!",1
447
+ "Say goodbye to joint pain! Try our all-natural remedy for arthritis relief.",1
448
+ "Sign up today and start saving!",1
449
+ "Special offer: Detoxify your body with our cleanse program. Feel revitalized!",1
450
+ "Special offer for beginners: Learn the basics of Bitcoin investing with our beginner's guide.",1
451
+ "Special offer for beginners: Learn the basics of cryptocurrency investing with our beginner's guide.",1
452
+ "Special offer for Bitcoin enthusiasts: Join our exclusive Bitcoin community. Network with like-minded individuals.",1
453
+ "Special offer for job seekers: Get personalized career coaching. Land your dream job faster.",1
454
+ "Special offer for job seekers: Join our resume writing workshop. Craft a winning resume.",1
455
+ "Special offer for money-conscious individuals: Join our frugal living community. Save more, spend less!",1
456
+ "Special offer for money-savvy individuals: Join our investment club. Discover lucrative investment opportunities.",1
457
+ "Special offer for new customers: Get 20% off on your first purchase.",1
458
+ "Special offer for new subscribers: Get 50% off on your first month of our premium service.",1
459
+ "Special offer for sales enthusiasts: Join our sales mastery academy. Gain expertise from industry experts.",1
460
+ "Special offer for sales enthusiasts: Join our sales mastery community. Learn from industry experts.",1
461
+ "Special offer for sales professionals: Join our elite sales training program. Take your career to new heights.",1
462
+ "Special offer for sales professionals: Join our sales leadership program. Take your career to the next level.",1
463
+ "Special offer for seniors: Get 30% off on all health and wellness products.",1
464
+ "Special offer for students: Get 50% off on all software subscriptions.",1
465
+ "Special offer for students: Get 50% off on all textbooks and educational resources.",1
466
+ "Special offer for traders: Join our Bitcoin margin trading platform. Multiply your profits!",1
467
+ "Special offer for traders: Join our margin trading platform. Multiply your profits!",1
468
+ "Special offer for you: Save 80% on designer clothing and accessories.",1
469
+ "Special offer: Get a free money management course. Learn how to make your money work for you.",1
470
+ "Special offer: Get a free sales ebook. Learn the art of effective selling.",1
471
+ "Special offer: Get a free sales training video series. Learn from top sales experts.",1
472
+ "Special offer: Get our exclusive fitness guide and achieve your dream body.",1
473
+ "Special offer: Get our premium Bitcoin investment report. Discover the best investment opportunities.",1
474
+ "Special offer: Get our premium financial advice. Discover the secrets to financial success.",1
475
+ "Special offer: Get our premium gym equipment at discounted prices. Limited time only!",1
476
+ "Special offer: Get our premium investment report. Discover the best investment opportunities.",1
477
+ "Special offer: Get our premium protein powder for muscle growth and recovery.",1
478
+ "Special offer: Get our premium sales training materials. Unleash your sales potential and achieve remarkable results.",1
479
+ "Special offer: Get our premium sales training materials. Unlock your sales potential.",1
480
+ "Special offer: Get our premium yoga mat for a comfortable and supportive practice.",1
481
+ "Special offer: Join our career development program. Gain the skills for a successful career.",1
482
+ "Special offer: Join our exclusive Bitcoin investment club. Gain access to premium investment opportunities.",1
483
+ "Special offer: Join our exclusive investment club. Gain access to premium investment opportunities.",1
484
+ "Special offer: Join our exclusive job portal. Access premium job listings and career resources.",1
485
+ "Special offer: Join our exclusive money-saving club. Access discounts, coupons, and cashback offers.",1
486
+ "Special offer: Join our exclusive sales networking community. Connect with top sales professionals worldwide.",1
487
+ "Special offer: Join our exclusive sales networking group. Connect with top sales professionals.",1
488
+ "Special offer: Learn how to mine Bitcoin and earn passive income. Enroll in our mining course.",1
489
+ "Special offer: Learn how to mine cryptocurrencies and earn passive income. Enroll in our mining course.",1
490
+ "Special offer: Learn in-demand skills for free and increase your job prospects.",1
491
+ "Start your dream career today! Join our job placement service and land your dream job.",1
492
+ "Start your online business with our step-by-step guide. No technical skills required.",1
493
+ "Start your own online business with our all-in-one e-commerce solution.",1
494
+ "Start your own online store with our comprehensive e-commerce platform.",1
495
+ "Thank you for your continued support. We appreciate it!",1
496
+ "This is a limited time offer! Click here to take advantage of it.",1
497
+ "This is a special offer just for you!",1
498
+ "Unlock access to premium content. Confirm your subscription by providing your login credentials.",1
499
+ "Unlock a world of possibilities with our innovative app. Download and explore today!",1
500
+ "Unlock exclusive discounts and promotions. Update your credit card information to proceed.",1
501
+ "Unlock premium features by completing a quick survey. Enter your personal information to participate.",1
502
+ "Unlock the secrets of a happy relationship. Enroll in our couples therapy program.",1
503
+ "Unlock the secrets of a healthy lifestyle. Try our organic meal delivery service.",1
504
+ "Unlock the secrets of a successful online business. Enroll in our e-commerce course.",1
505
+ "Unlock the secrets of a younger-looking skin. Try our skincare regimen now.",1
506
+ "Unlock the secrets of Bitcoin trading. Join our advanced trading workshop.",1
507
+ "Unlock the secrets of cryptocurrency trading. Join our advanced trading workshop.",1
508
+ "Unlock the secrets of effective sales presentations. Enroll in our dynamic sales presentation course.",1
509
+ "Unlock the secrets of effective sales presentations. Enroll in our sales presentation skills course.",1
510
+ "Unlock the secrets of financial abundance. Join our wealth creation masterclass.",1
511
+ "Unlock the secrets of financial freedom. Join our exclusive seminar now!",1
512
+ "Unlock the secrets of financial independence. Enroll in our wealth-building course.",1
513
+ "Unlock the secrets of financial prosperity. Enroll in our comprehensive money management course.",1
514
+ "Unlock the secrets of healthy living. Try our organic meal delivery service today!",1
515
+ "Unlock the secrets of making money online. Join our exclusive money-making program.",1
516
+ "Unlock the secrets of online marketing success. Enroll in our digital marketing course.",1
517
+ "Unlock the secrets of passive income. Enroll in our passive income generation course.",1
518
+ "Unlock the secrets of persuasive selling. Enroll in our advanced sales psychology course.",1
519
+ "Unlock the secrets of persuasive selling. Join our sales psychology seminar.",1
520
+ "Unlock the secrets of profitable Bitcoin arbitrage. Join our arbitrage trading group.",1
521
+ "Unlock the secrets of profitable cryptocurrency arbitrage. Join our arbitrage trading group.",1
522
+ "Unlock the secrets of successful Bitcoin mining. Join our mining pool.",1
523
+ "Unlock the secrets of successful Bitcoin trading. Enroll in our comprehensive trading course.",1
524
+ "Unlock the secrets of successful cryptocurrency mining. Join our mining pool.",1
525
+ "Unlock the secrets of successful cryptocurrency trading. Enroll in our comprehensive trading course.",1
526
+ "Unlock the secrets of successful entrepreneurship. Attend our business conference.",1
527
+ "Unlock the secrets of successful entrepreneurship. Attend our business workshop.",1
528
+ "Unlock the secrets of successful entrepreneurship. Join our business mentorship program.",1
529
+ "Unlock the secrets of successful investing. Join our investment masterclass now!",1
530
+ "Unlock the secrets of successful job hunting. Enroll in our comprehensive job search course.",1
531
+ "Unlock the secrets of successful job hunting. Join our career development workshop.",1
532
+ "Unlock the secrets of successful job interviews. Enroll in our interview preparation course.",1
533
+ "Unlock the secrets of successful money management. Enroll in our comprehensive finance course.",1
534
+ "Unlock the secrets of successful networking. Join our professional networking group.",1
535
+ "Unlock the secrets of successful sales closing. Enroll in our closing techniques workshop.",1
536
+ "Unlock the secrets of successful sales closing. Join our workshop and master closing techniques.",1
537
+ "Unlock the secrets of successful sales prospecting. Enroll in our advanced prospecting mastery course.",1
538
+ "Unlock the secrets of successful sales prospecting. Enroll in our prospecting mastery course.",1
539
+ "Unlock the secrets of successful sales strategies. Join our sales masterclass.",1
540
+ "Unlock the secrets of successful selling. Join our sales training workshop.",1
541
+ "Unlock the secrets of weight loss with our personalized fitness program.",1
542
+ "Unlock the secrets to a flatter stomach with our easy-to-follow fitness program.",1
543
+ "Unlock the secrets to unlimited wealth and success. Join our exclusive program today.",1
544
+ "Unlock your true potential with our self-help guide. Start living your dream life.",1
545
+ "Update your account information to avoid service disruption. Click here to verify your details.",1
546
+ "Update your login details to prevent account closure. Click here to secure your account.",1
547
+ "Update your payment details to prevent service interruption. Click here to update your billing information.",1
548
+ "Update your security settings to protect against account breaches. Verify your information now.",1
549
+ "Update your shipping information to track your package. Click here to provide the correct details.",1
550
+ "Upgrade your account to enjoy additional features. Verify your account information to proceed.",1
551
+ "Upgrade your account to enjoy enhanced features and benefits. Confirm your details now.",1
552
+ "Upgrade your email account to enjoy additional storage and enhanced security. Confirm your details to proceed.",1
553
+ "Upgrade your email storage limit. Verify your account to enjoy unlimited storage.",1
554
+ "Upgrade your fitness routine with our app. Download now and achieve your health goals!",1
555
+ "Upgrade your mobile experience with our powerful app. Download it today!",1
556
+ "URGENT: Your account has been compromised. Verify your information immediately.",1
557
+ "URGENT: Your bank account has been compromised. Please provide your details to secure your account.",1
558
+ "Verify your banking information to unlock access to exclusive offers and rewards.",1
559
+ "Visit our website to learn more.",1
560
+ "We're always looking for ways to improve. Please let us know what you think.",1
561
+ "We're committed to providing you with the best possible service. Let us know if you have any questions or concerns.",1
562
+ "We're here to help! Contact us today.",1
563
+ "We're here to help you succeed. Let us know how we can help.",1
564
+ "Work from home and earn $5000 per week! Join our exclusive remote job program.",1
565
+ "You have a new voicemail. Click here to listen.",1
566
+ "You have been exposed to a virus! Text CLEAN to remove the malware.",1
567
+ "You have been invited to a free trial of a new product! Text TRY to get started.",1
568
+ "You have been invited to a special event! Text RSVP to confirm your attendance.",1
569
+ "You have been pre-approved for a low-interest loan! Text APPLY to get started.",1
570
+ "You have been pre-approved for a new credit card! Text APPLY to get started.",1
571
+ "You have been selected to receive a free cruise! Text BOOK to reserve your spot.",1
572
+ "You have been selected to receive a free gift card! Text CLAIM to redeem your prize.",1
573
+ "You have been selected to receive a free upgrade to our premium service. Click here to claim your offer.",1
574
+ "You have been targeted for a government investigation! Text STOP to avoid further action.",1
575
+ "You have been the victim of identity theft! Text REPORT to file a police report.",1
576
+ "You have won a free vacation! Click here to claim your prize.",1
577
+ "You have won a million dollars! Text CLAIM to collect your prize.",1
578
+ "Your account has been hacked. Click here to reset your password.",1
579
+ "Your account has been suspended! Click here to reactivate it.",1
580
+ "Your account has been suspended due to suspicious activity. Text STOP to cancel.",1
581
+ "Your account has been suspended for suspicious activity. Click here to contact us.",1
582
+ "Your account has been suspended. Please click here to verify your identity.",1
583
+ "Your account is about to be closed! Click here to prevent it.",1
584
+ "Your account is about to be closed. Click here to reactivate your account.",1
585
+ "Your account is about to be deactivated. Click here to reactivate your account.",1
586
+ "Your bank account has been frozen. Please contact us immediately.",1
587
+ "Your bank account has been frozen! Text UNFREEZE to unlock your account.",1
588
+ "Your car's extended warranty is about to expire. Click here to renew your coverage.",1
589
+ "Your car's registration is about to expire. Click here to renew your registration.",1
590
+ "Your car's registration is expired! Text RENEW to renew your registration.",1
591
+ "Your car's warranty is about to expire. Click here to renew your coverage.",1
592
+ "Your car's warranty is about to expire! Text RENEW to extend your coverage.",1
593
+ "Your computer has been hacked! Text RESET to restore your system.",1
594
+ "Your computer has been infected with a virus! Click here to download our antivirus software.",1
595
+ "Your computer is infected with malware! Click here to scan it.",1
596
+ "Your credit card has been declined! Click here to update your information.",1
597
+ "Your credit card has been declined. Please call us to update your billing information.",1
598
+ "Your device is infected with a virus. Click here to scan your device.",1
599
+ "Your doctor's office needs to schedule an appointment! Text SCHEDULE to confirm.",1
600
+ "Your driver's license is about to expire! Text RENEW to renew your license.",1
601
+ "You're about to win a million dollars! Click here to claim your prize.",1
602
+ "You're a lucky winner! Click here to claim your lottery prize and fulfill your dreams.",1
603
+ "You're a lucky winner! Click here to claim your lottery reward and change your life forever.",1
604
+ "You're a lucky winner! Click here to claim your lottery reward and fulfill your dreams.",1
605
+ "You're a lucky winner! Click here to claim your lottery reward and start living your dream life.",1
606
+ "You're a winner! Click here to claim your lottery prize and embark on a life of luxury.",1
607
+ "You're a winner! Click here to claim your lottery prize and experience financial freedom.",1
608
+ "You're a winner! Click here to claim your lottery prize and fulfill your dreams.",1
609
+ "You're a winner! Click here to claim your lottery reward and experience financial abundance.",1
610
+ "You're a winner! Click here to collect your lottery prize and change your life forever.",1
611
+ "You're invited to an exclusive event. RSVP now and get a special gift.",1
612
+ "You're the only one who can save us! Click here to find out more.",1
613
+ "Your feedback is important to us. Please take a moment to complete our survey.",1
614
+ "Your package has been delayed! Click here to track its status.",1
615
+ "Your package has been delivered. Click here to track your shipment.",1
616
+ "Your package has been held at customs. Click here to pay the duty.",1
617
+ "Your passport is about to expire! Text RENEW to renew your passport.",1
618
+ "Your phone bill is past due. Text PAY to make a payment.",1
619
+ "You've been approved for a government grant! Click here to learn more.",1
620
+ "You've been approved for a loan! Click here to learn more.",1
621
+ "You've been awarded a free cruise! Click here to book your trip.",1
622
+ "You've been awarded a free vacation! Click here to claim your prize.",1
623
+ "You've been awarded a government grant! Click here to claim your money.",1
624
+ "You've been awarded a prize! Click here to claim it.",1
625
+ "You've been charged for a service you didn't authorize. Click here to dispute the charge.",1
626
+ "You've been exposed to a virus. Click here to download our antivirus software.",1
627
+ "You've been exposed to a virus! Click here to protect yourself.",1
628
+ "You've been hacked! Click here to secure your account.",1
629
+ "You've been pre-approved for a credit card! Click here to apply.",1
630
+ "You've been pre-approved for a loan! Click here to learn more.",1
631
+ "You've been pre-approved for a student loan! Click here to apply.",1
632
+ "You've been selected as a beta tester for our groundbreaking software. Sign up now!",1
633
+ "You've been selected for a free trial of our premium video streaming service. Sign up now!",1
634
+ "You've been selected for a luxurious spa getaway. Book your retreat today.",1
635
+ "You've been selected for a special discount on luxury watches. Shop now and save!",1
636
+ "You've been selected for a survey! Click here to participate.",1
637
+ "You've been selected to participate in a clinical trial! Click here to learn more.",1
638
+ "You've been selected to participate in a survey. Click here to take the survey.",1
639
+ "You've been selected to receive a free gift! Click here to claim your prize.",1
640
+ "You've been selected to receive a free upgrade! Click here to claim your prize.",1
641
+ "You've been targeted by a phishing scam! Click here to report it.",1
642
+ "You've been targeted by a scam! Click here to report it.",1
643
+ "You've been the victim of identity theft! Click here to learn more.",1
644
+ "You've struck the lottery jackpot! Click here to collect your massive cash prize.",1
645
+ "You've won a free gift card! Click here to claim your prize.",1
646
+ "You've won a free pair of tickets to the game! Click here to claim your prize.",1
datasets/sms.csv ADDED
The diff for this file is too large to render. See raw diff
 
datasets/spam-model.csv ADDED
The diff for this file is too large to render. See raw diff
 
datasets/spam-or-not.csv ADDED
The diff for this file is too large to render. See raw diff
 
datasets/spam-word.csv ADDED
@@ -0,0 +1,1084 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Comment,Spam
2
+ "$$$",1
3
+ "0%",1
4
+ "0% risk",1
5
+ "100%",1
6
+ "100% free",1
7
+ "100% guaranteed",1
8
+ "100% money back",1
9
+ "100% more",1
10
+ "100% satisfaction",1
11
+ "100% satisfie",1
12
+ "100% satisfied",1
13
+ "#1",1
14
+ "4U",1
15
+ "50% off",1
16
+ "777",1
17
+ "99%",1
18
+ "99.9%",1
19
+ "About",1
20
+ "Accelerate your income",1
21
+ "Acceptance",1
22
+ "Accept credit cards",1
23
+ "Access",1
24
+ "Access for free",1
25
+ "Access now",1
26
+ "Access right away",1
27
+ "Accordingly",1
28
+ "Act",1
29
+ "Act fast",1
30
+ "Act fast, limited offer",1
31
+ "Act immediately",1
32
+ "Action",1
33
+ "Action required",1
34
+ "Act now!",1
35
+ "Act now",1
36
+ "Act Now",1
37
+ "Act now, don't delay",1
38
+ "Act now! Don’t hesitate!",1
39
+ "Act now, don't miss out",1
40
+ "Act now, don't wait",1
41
+ "Act now, limited quantities",1
42
+ "Act now, limited-time offer",1
43
+ "Ad",1
44
+ "Additional income",1
45
+ "Addresses on CD",1
46
+ "Affordable",1
47
+ "Affordable deal",1
48
+ "All natural",1
49
+ "All new",1
50
+ "Amazed",1
51
+ "Amazing",1
52
+ "Amazing offer",1
53
+ "Amazing opportunity",1
54
+ "Amazing stuff",1
55
+ "Apply here",1
56
+ "Apply now!",1
57
+ "Apply now",1
58
+ "Apply NOW",1
59
+ "Apply online",1
60
+ "Apply Online",1
61
+ "As seen on",1
62
+ "At no cost",1
63
+ "Auto email removal",1
64
+ "Avoid",1
65
+ "Avoid bankruptcy",1
66
+ "Bargain",1
67
+ "Be amazed",1
68
+ "Become a member",1
69
+ "Being a member",1
70
+ "Believe me",1
71
+ "Beneficiary",1
72
+ "Best",1
73
+ "Best bargain",1
74
+ "Best deal",1
75
+ "Best deal ever",1
76
+ "Best investment",1
77
+ "Best offer",1
78
+ "Best price",1
79
+ "Best rates",1
80
+ "Best-selling",1
81
+ "Best value",1
82
+ "Best value for money",1
83
+ "Be surprised",1
84
+ "Beverage",1
85
+ "Be your own boss",1
86
+ "Big bucks",1
87
+ "Bill 1618",1
88
+ "Billing",1
89
+ "Billing address",1
90
+ "Billion",1
91
+ "Billionaire",1
92
+ "Billion dollars",1
93
+ "Bitcoin",1
94
+ "Bonus",1
95
+ "BONUS",1
96
+ "Bonus credited",1
97
+ "Boost your business",1
98
+ "Boost your credit",1
99
+ "Boost your credit score",1
100
+ "Boost your income",1
101
+ "Boost your savings",1
102
+ "Boss",1
103
+ "Brand new pager",1
104
+ "Break free",1
105
+ "Break free from debt",1
106
+ "Breakthrough",1
107
+ "Breakthrough innovation",1
108
+ "Breakthrough technology",1
109
+ "BTC",1
110
+ "Bulk email",1
111
+ "Buy",1
112
+ "Buy direct",1
113
+ "Buying judgments",1
114
+ "Buy now",1
115
+ "Buy Now",1
116
+ "Cable converter",1
117
+ "Call",1
118
+ "Call free",1
119
+ "Calling creditors",1
120
+ "Call me",1
121
+ "Call now!",1
122
+ "Call now",1
123
+ "Cancel",1
124
+ "Cancel at any time",1
125
+ "Cancellation required",1
126
+ "Cancel now",1
127
+ "Cannot be combined with any other offer",1
128
+ "Can’t live without",1
129
+ "Cards accepted",1
130
+ "Cash",1
131
+ "Cashback",1
132
+ "Cash bonus",1
133
+ "Cashcashcash",1
134
+ "Cash explosion",1
135
+ "Cashless",1
136
+ "Cash out",1
137
+ "Cash prizes",1
138
+ "Cash windfall",1
139
+ "Casino",1
140
+ "Celebrity",1
141
+ "Cell phone cancer scam",1
142
+ "Cellphone cancer scam",1
143
+ "Cents on the dollar",1
144
+ "Certified",1
145
+ "Chance",1
146
+ "Cheap",1
147
+ "Check",1
148
+ "Check credited",1
149
+ "Check or money order",1
150
+ "Claim",1
151
+ "Claim now",1
152
+ "Claims",1
153
+ "Claims not to be selling anything",1
154
+ "Claims to be in accordance with some spam law",1
155
+ "Claims to be legal",1
156
+ "Claims you are a winner",1
157
+ "Claim your discount",1
158
+ "Claim your discount NOW!",1
159
+ "Claim your prize",1
160
+ "Clearance",1
161
+ "Clearance sale",1
162
+ "Click",1
163
+ "Click below",1
164
+ "Click here",1
165
+ "Click here link",1
166
+ "Click here to find out more",1
167
+ "Click now",1
168
+ "Click to get",1
169
+ "Click to remove",1
170
+ "Click to remove mailto",1
171
+ "Collect",1
172
+ "Collect child support",1
173
+ "Compare",1
174
+ "Compare now",1
175
+ "Compare online",1
176
+ "Compare rates",1
177
+ "Compete for your business",1
178
+ "Confidential",1
179
+ "Confidentiality",1
180
+ "Confidentially on all orders",1
181
+ "Congratulations",1
182
+ "Consolidate debt",1
183
+ "Consolidate debt and credit",1
184
+ "Consolidate your debt",1
185
+ "Copy accurately",1
186
+ "Copy DVDs",1
187
+ "Cost",1
188
+ "Costs",1
189
+ "Credit",1
190
+ "Credit bureaus",1
191
+ "Credit card debt",1
192
+ "Credit card offers",1
193
+ "Cures",1
194
+ "Cures baldness",1
195
+ "Cutting-edge technology",1
196
+ "Deal",1
197
+ "Deal breaker",1
198
+ "Dear",1
199
+ "Dear email",1
200
+ "Dear friend",1
201
+ "Dear somebody",1
202
+ "Debt",1
203
+ "Diagnostics",1
204
+ "Different reply to",1
205
+ "Dig up dirt on friends",1
206
+ "Direct email",1
207
+ "Direct marketing",1
208
+ "Discount",1
209
+ "Discounted",1
210
+ "Discover the secret",1
211
+ "Discover the truth",1
212
+ "Discusses search engine listings",1
213
+ "Do it now",1
214
+ "Do it today",1
215
+ "Don't",1
216
+ "Don't delay, start earning today",1
217
+ "Don't delete",1
218
+ "Don’t delete",1
219
+ "Don't hesitate",1
220
+ "Don’t hesitate!",1
221
+ "Don’t hesitate",1
222
+ "Don't hesitate, act now",1
223
+ "Don't miss",1
224
+ "Don't miss out",1
225
+ "Don't miss this chance",1
226
+ "Don't miss this opportunity",1
227
+ "Don't wait",1
228
+ "Dormant",1
229
+ "Double your",1
230
+ "Double your cash",1
231
+ "Double your chances",1
232
+ "Double your earnings",1
233
+ "Double your income",1
234
+ "Double your investment",1
235
+ "Double your leads",1
236
+ "Double your money",1
237
+ "Double your profits",1
238
+ "Double your savings",1
239
+ "Double your wealth",1
240
+ "Drastically reduced",1
241
+ "Dream come true",1
242
+ "Dream job",1
243
+ "Earn $",1
244
+ "Earn",1
245
+ "Earn extra cash",1
246
+ "Earn extra profit",1
247
+ "Earn from home",1
248
+ "Earn money",1
249
+ "Earn monthly",1
250
+ "Earn per month",1
251
+ "Earn per week",1
252
+ "Easy",1
253
+ "Easy terms",1
254
+ "Eliminate bad credit",1
255
+ "Eliminate debt",1
256
+ "Elite",1
257
+ "Elite circle",1
258
+ "Elite membership",1
259
+ "Elite opportunity",1
260
+ "Elite status",1
261
+ "Email extractor",1
262
+ "Email harvest",1
263
+ "Email marketing",1
264
+ "Exciting news",1
265
+ "Exciting opportunity",1
266
+ "Exciting opportunity awaits",1
267
+ "Exclusive",1
268
+ "Exclusive access",1
269
+ "Exclusive access granted",1
270
+ "Exclusive behind-the-scenes access",1
271
+ "Exclusive benefits",1
272
+ "Exclusive bonus",1
273
+ "Exclusive club membership",1
274
+ "Exclusive content",1
275
+ "Exclusive content for members only",1
276
+ "Exclusive customer rewards",1
277
+ "Exclusive deal",1
278
+ "Exclusive discount",1
279
+ "Exclusive early access",1
280
+ "Exclusive early access to new products",1
281
+ "Exclusive early bird",1
282
+ "Exclusive early bird pricing",1
283
+ "Exclusive event",1
284
+ "Exclusive event invitation",1
285
+ "Exclusive insider",1
286
+ "Exclusive insider information",1
287
+ "Exclusive insider knowledge",1
288
+ "Exclusive insider tips",1
289
+ "Exclusive insider tips and tricks",1
290
+ "Exclusive invitation",1
291
+ "Exclusive invitation only",1
292
+ "Exclusive loyalty program",1
293
+ "Exclusive member benefits",1
294
+ "Exclusive membership",1
295
+ "Exclusive offer",1
296
+ "Exclusive offer for you",1
297
+ "Exclusive one-time offer",1
298
+ "Exclusive opportunity",1
299
+ "Exclusive partner",1
300
+ "Exclusive partner program",1
301
+ "Exclusive partnership",1
302
+ "Exclusive partnership opportunity",1
303
+ "Exclusive pricing",1
304
+ "Exclusive private invitation",1
305
+ "Exclusive product",1
306
+ "Exclusive product bundle",1
307
+ "Exclusive product launch",1
308
+ "Exclusive rewards",1
309
+ "Exclusive rewards and discounts",1
310
+ "Exclusive rewards program",1
311
+ "Exclusive sneak peek",1
312
+ "Exclusive travel deals",1
313
+ "Exclusive VIP access",1
314
+ "Exclusive VIP benefits",1
315
+ "Expect to earn",1
316
+ "Expire",1
317
+ "Expires",1
318
+ "Expiring soon",1
319
+ "Explode your business",1
320
+ "Explosive growth",1
321
+ "Exponential growth",1
322
+ "Extra",1
323
+ "Extra bonuses",1
324
+ "Extra bonuses included",1
325
+ "Extra cash",1
326
+ "Extra cash flow",1
327
+ "Extra cash in your pocket",1
328
+ "Extract email ",1
329
+ "Extract email",1
330
+ "Extra income",1
331
+ "Extra income opportunity",1
332
+ "Extra income stream",1
333
+ "Extraordinary",1
334
+ "Extraordinary offer",1
335
+ "Extraordinary opportunity",1
336
+ "Extraordinary results",1
337
+ "Extraordinary returns on investment",1
338
+ "Fantastic",1
339
+ "Fantastic deal",1
340
+ "Fantastic offer",1
341
+ "Fast",1
342
+ "Fast and easy",1
343
+ "Fast and easy money",1
344
+ "Fast and easy money-making",1
345
+ "Fast and effective results",1
346
+ "Fast and efficient process",1
347
+ "Fast and efficient service",1
348
+ "Fast and free",1
349
+ "Fast and furious",1
350
+ "Fast and guaranteed",1
351
+ "Fast and reliable customer service",1
352
+ "Fast and reliable service",1
353
+ "Fast approval",1
354
+ "Fast approval process",1
355
+ "Fast cash",1
356
+ "Fast cash payout",1
357
+ "Fast cash transfer",1
358
+ "Fast delivery",1
359
+ "Fast results",1
360
+ "Fast track to success",1
361
+ "Fast-track your wealth",1
362
+ "Fast Viagra delivery",1
363
+ "Financial freedom",1
364
+ "Financially independent",1
365
+ "Find out anything",1
366
+ "For free",1
367
+ "For instant access",1
368
+ "For just $",1
369
+ "For just $ [some amount]",1
370
+ "For just X$",1
371
+ "Form",1
372
+ "For only",1
373
+ "For Only",1
374
+ "For only XXX amount",1
375
+ "For you",1
376
+ "F r e e",1
377
+ "Free!",1
378
+ "Free",1
379
+ "Free access",1
380
+ "Free bonus",1
381
+ "Free cell phone",1
382
+ "Free consultation",1
383
+ "Freedom",1
384
+ "Free DVD",1
385
+ "Free gift",1
386
+ "Free grant money",1
387
+ "Free hosting",1
388
+ "Free info",1
389
+ "Free information",1
390
+ "Free installation",1
391
+ "Free instant",1
392
+ "Free investment",1
393
+ "Free iPhone",1
394
+ "Free leads",1
395
+ "Free Macbook",1
396
+ "Free membership",1
397
+ "Free money",1
398
+ "Free offer",1
399
+ "Free preview",1
400
+ "Free priority mail",1
401
+ "Free quote",1
402
+ "Free sample",1
403
+ "Free shipping",1
404
+ "Free trial",1
405
+ "Free website",1
406
+ "Friend",1
407
+ "Full refund",1
408
+ "Full REFUND",1
409
+ "Get",1
410
+ "Get it now",1
411
+ "Get out of debt",1
412
+ "Get out of debt NOW",1
413
+ "Get paid",1
414
+ "Get paid instantly",1
415
+ "Get rich",1
416
+ "Get rich quick",1
417
+ "Get started now",1
418
+ "Gift certificate",1
419
+ "Giveaway",1
420
+ "Give it away",1
421
+ "Giving away",1
422
+ "Giving it away",1
423
+ "Government grant",1
424
+ "Great",1
425
+ "Great deal",1
426
+ "Great offer",1
427
+ "Guarantee",1
428
+ "Guaranteed",1
429
+ "Guaranteed delivery",1
430
+ "Guaranteed deposit",1
431
+ "Guaranteed income",1
432
+ "Guaranteed jackpot",1
433
+ "Guaranteed payment",1
434
+ "Guaranteed profits",1
435
+ "Guaranteed results",1
436
+ "Guaranteed returns",1
437
+ "Guaranteed satisfaction",1
438
+ "Guaranteed success",1
439
+ "Guaranteed success formula",1
440
+ "Guaranteed to work",1
441
+ "Have you been turned down?",1
442
+ "Hello",1
443
+ "Here",1
444
+ "Hidden",1
445
+ "Hidden assets",1
446
+ "Hidden charges",1
447
+ "Hidden fees",1
448
+ "High-paying",1
449
+ "High-powered",1
450
+ "High-profit",1
451
+ "High-profit margins",1
452
+ "High-profit margins guaranteed",1
453
+ "High-profit potential",1
454
+ "High returns",1
455
+ "High score",1
456
+ "High success rate",1
457
+ "High-yield investment",1
458
+ "High-yield investment opportunity",1
459
+ "Home",1
460
+ "Home based",1
461
+ "Home based business",1
462
+ "Home-based business",1
463
+ "Home employment",1
464
+ "Hot",1
465
+ "Huge discount",1
466
+ "Huge earnings",1
467
+ "Huge savings",1
468
+ "Human growth hormone",1
469
+ "Hurry",1
470
+ "Hurry up",1
471
+ "If only it were that easy",1
472
+ "Important information regarding",1
473
+ "Important notification",1
474
+ "In accordance with laws",1
475
+ "Income",1
476
+ "Income from home",1
477
+ "Increase sales",1
478
+ "Increase traffic",1
479
+ "Increase your chances",1
480
+ "Increase your sales",1
481
+ "Increase your wealth",1
482
+ "Incredible",1
483
+ "Incredible deal",1
484
+ "Incredible earnings",1
485
+ "Incredible opportunity",1
486
+ "Incredible value",1
487
+ "Information you requested",1
488
+ "Info you requested",1
489
+ "Insider",1
490
+ "Insider information",1
491
+ "Insider secrets",1
492
+ "Insider secrets revealed",1
493
+ "Instant",1
494
+ "Instant access",1
495
+ "Instant access granted",1
496
+ "Instant access to premium content",1
497
+ "Instant approval",1
498
+ "Instant cash",1
499
+ "Instant cash flow",1
500
+ "Instant cash transfer",1
501
+ "Instant cash transfer to your account",1
502
+ "Instant customer support",1
503
+ "Instant earnings",1
504
+ "Instant fortune",1
505
+ "Instant gratification",1
506
+ "Instant income",1
507
+ "Instantly",1
508
+ "Instant millionaire",1
509
+ "Instant millionaire status",1
510
+ "Instant offers",1
511
+ "Instant results",1
512
+ "Instant results, guaranteed",1
513
+ "Instant success",1
514
+ "Instant weight loss",1
515
+ "Insurance",1
516
+ "Internet market",1
517
+ "Internet marketing",1
518
+ "Investment",1
519
+ "Investment decision",1
520
+ "Irresistible",1
521
+ "It’s effective",1
522
+ "Jackpot",1
523
+ "JACKPOT",1
524
+ "Join millions",1
525
+ "Join millions of Americans",1
526
+ "Junk",1
527
+ "Laser printer",1
528
+ "Last chance",1
529
+ "Last chance to save",1
530
+ "Learn",1
531
+ "Leave",1
532
+ "Legal",1
533
+ "Legal notice",1
534
+ "Life",1
535
+ "Life-changing breakthrough",1
536
+ "Life-changing opportunity",1
537
+ "Life-changing results",1
538
+ "Life Insurance",1
539
+ "Lifetime",1
540
+ "Lifetime access",1
541
+ "Lifetime deal",1
542
+ "Limited",1
543
+ "Limited amount",1
544
+ "Limited availability",1
545
+ "Limited availability, act fast",1
546
+ "Limited availability, book now",1
547
+ "Limited edition",1
548
+ "Limited edition collector's item",1
549
+ "Limited edition offer",1
550
+ "Limited enrollment",1
551
+ "Limited enrollment period",1
552
+ "Limited inventory",1
553
+ "Limited inventory remaining",1
554
+ "Limited number",1
555
+ "Limited offer",1
556
+ "Limited quantities available",1
557
+ "Limited quantity",1
558
+ "Limited quantity available",1
559
+ "Limited slots",1
560
+ "Limited slots, register now",1
561
+ "Limited slots remaining",1
562
+ "Limited slots, reserve yours now",1
563
+ "Limited spots",1
564
+ "Limited spots available",1
565
+ "Limited spots available, sign up now",1
566
+ "Limited spots, register today",1
567
+ "Limited spots remaining",1
568
+ "Limited stock",1
569
+ "Limited stock, buy it now",1
570
+ "Limited stock, buy now",1
571
+ "Limited supply",1
572
+ "Limited supply, order now",1
573
+ "Limited time",1
574
+ "Limited-time",1
575
+ "Limited-time access",1
576
+ "Limited time bonus",1
577
+ "Limited-time bonus",1
578
+ "Limited-time bonus, act now",1
579
+ "Limited-time bonus package",1
580
+ "Limited time deal",1
581
+ "Limited-time deal",1
582
+ "Limited time discount",1
583
+ "Limited-time discount",1
584
+ "Limited-time free trial",1
585
+ "Limited time offer",1
586
+ "Limited-time offer",1
587
+ "Limited-time offer, act now",1
588
+ "Limited-time offer, don't miss out",1
589
+ "Limited time only",1
590
+ "Limited-time only",1
591
+ "Limited-time opportunity",1
592
+ "Limited-time opportunity, act now",1
593
+ "Limited-time pricing",1
594
+ "Limited-time promotion",1
595
+ "Limited-time sale",1
596
+ "Limited-time savings",1
597
+ "Limited-time savings opportunity",1
598
+ "Loan",1
599
+ "Loan approved",1
600
+ "Loans",1
601
+ "Long distance phone offer",1
602
+ "Lose",1
603
+ "Lose weight",1
604
+ "Lose weight instantly",1
605
+ "Lose weight spam",1
606
+ "Lottery",1
607
+ "Lottery winner",1
608
+ "Lower interest rate",1
609
+ "Lower interest rates",1
610
+ "Lower monthly payment",1
611
+ "Lower rates",1
612
+ "Lower your mortgage rate",1
613
+ "Lowest insurance rates",1
614
+ "Lowest price",1
615
+ "Lowest price ever",1
616
+ "Lowest rate",1
617
+ "Low insurance premium",1
618
+ "Low mortgage rates",1
619
+ "Luxury",1
620
+ "Luxury car",1
621
+ "Mail in order form",1
622
+ "Maintained",1
623
+ "Make $",1
624
+ "Make",1
625
+ "Make money",1
626
+ "Make Money",1
627
+ "Marketing",1
628
+ "Marketing solution",1
629
+ "Marketing solutions",1
630
+ "Mass email",1
631
+ "Massive",1
632
+ "Massive cash prizes",1
633
+ "Massive discount",1
634
+ "Massive discounts",1
635
+ "Massive growth",1
636
+ "Massive income potential",1
637
+ "Massive profits",1
638
+ "Massive savings",1
639
+ "Maximum profit",1
640
+ "Maximum returns",1
641
+ "Medical condition",1
642
+ "Medicine",1
643
+ "Medium",1
644
+ "Meet girls",1
645
+ "Meet me",1
646
+ "Meet singles",1
647
+ "Meet women",1
648
+ "Member",1
649
+ "Membership",1
650
+ "Member stuff",1
651
+ "Message contains",1
652
+ "Message contains disclaimer",1
653
+ "Million",1
654
+ "Millionaire",1
655
+ "Millionaire lifestyle",1
656
+ "Million-dollar",1
657
+ "Million-dollar idea",1
658
+ "Million dollars",1
659
+ "Miracle",1
660
+ "Miss",1
661
+ "MLM",1
662
+ "Money",1
663
+ "Money back",1
664
+ "Money back guarantee",1
665
+ "Money-back guarantee",1
666
+ "Money making",1
667
+ "Money-making",1
668
+ "Money-making machine",1
669
+ "Money-making secrets",1
670
+ "Month trial offer",1
671
+ "More",1
672
+ "More internet traffic",1
673
+ "More Internet Traffic",1
674
+ "Mortgage",1
675
+ "Mortgage rates",1
676
+ "Multi-level",1
677
+ "Multi level marketing",1
678
+ "Multi-level marketing",1
679
+ "Name brand",1
680
+ "Never",1
681
+ "Never before",1
682
+ "Never before seen",1
683
+ "New",1
684
+ "New breakthrough",1
685
+ "New customers only",1
686
+ "New domain extensions",1
687
+ "Nigerian",1
688
+ "Nigerian prince",1
689
+ "No age restrictions",1
690
+ "No catch",1
691
+ "No claim forms",1
692
+ "No cost",1
693
+ "No credit card required",1
694
+ "No credit check",1
695
+ "No deposit required",1
696
+ "No disappointment",1
697
+ "No experience",1
698
+ "No extra cost",1
699
+ "No fees",1
700
+ "No gimmick",1
701
+ "No hidden",1
702
+ "No hidden costs",1
703
+ "No hidden fees",1
704
+ "No hidden сosts",1
705
+ "No interest",1
706
+ "No interests",1
707
+ "No inventory",1
708
+ "No investment",1
709
+ "No investment required",1
710
+ "No medical exams",1
711
+ "No middleman",1
712
+ "No obligation",1
713
+ "No-obligation",1
714
+ "No payment required",1
715
+ "No purchase necessary",1
716
+ "No questions asked",1
717
+ "No risk",1
718
+ "No selling",1
719
+ "No strings attached",1
720
+ "Not intended",1
721
+ "Not junk",1
722
+ "Not scam",1
723
+ "Not spam",1
724
+ "Notspam",1
725
+ "Now",1
726
+ "Now only",1
727
+ "Number 1",1
728
+ "Number one",1
729
+ "Obligation",1
730
+ "Offer",1
731
+ "Offer expires",1
732
+ "Offer expires in X days",1
733
+ "Offers coupon",1
734
+ "Offers extra cash",1
735
+ "Offers free (often stolen) passwords",1
736
+ "Off shore",1
737
+ "Offshore",1
738
+ "Once in a lifetime",1
739
+ "Once-in-a-lifetime",1
740
+ "Once in a lifetime deal",1
741
+ "Once in a lifetime opportunity",1
742
+ "Once in lifetime",1
743
+ "One hundred percent free",1
744
+ "One hundred percent guaranteed",1
745
+ "One-of-a-kind",1
746
+ "One time",1
747
+ "One time mailing",1
748
+ "One-time offer",1
749
+ "Online biz opportunity ",1
750
+ "Online biz opportunity",1
751
+ "Online degree",1
752
+ "Online income",1
753
+ "Online job",1
754
+ "Online marketing",1
755
+ "Online pharmacy",1
756
+ "Only $",1
757
+ "Only",1
758
+ "Only for today",1
759
+ "Open",1
760
+ "Open Opportunity",1
761
+ "Open this email!",1
762
+ "Opportunity",1
763
+ "Opt in",1
764
+ "Order",1
765
+ "Order now",1
766
+ "Order shipped by",1
767
+ "Orders shipped by priority mail",1
768
+ "Orders shipped by the shopper",1
769
+ "Order status",1
770
+ "Order today",1
771
+ "Out",1
772
+ "Outstanding amount",1
773
+ "Outstanding value",1
774
+ "Outstanding values",1
775
+ "Overnight",1
776
+ "Passwords",1
777
+ "Pennies a day",1
778
+ "People just leave money laying around",1
779
+ "Per day",1
780
+ "Performance",1
781
+ "Per month",1
782
+ "Per week",1
783
+ "Phone",1
784
+ "Please read",1
785
+ "Potential earnings",1
786
+ "Powerhouse method",1
787
+ "Power-packed",1
788
+ "Pre-approved",1
789
+ "Premium access",1
790
+ "Premium offer",1
791
+ "Premium package",1
792
+ "Presently",1
793
+ "Price",1
794
+ "Price protection",1
795
+ "Print form signature",1
796
+ "Print out and fax",1
797
+ "Priority mail",1
798
+ "Prize",1
799
+ "Prizes",1
800
+ "Problem",1
801
+ "Produced and sent out",1
802
+ "Profitable opportunity",1
803
+ "Profitable venture",1
804
+ "Profit explosion",1
805
+ "Profits",1
806
+ "Promise",1
807
+ "Promise you …!",1
808
+ "Promise you",1
809
+ "Proven",1
810
+ "Proven strategies",1
811
+ "Proven success",1
812
+ "Proven system",1
813
+ "Purchase",1
814
+ "Pure profit",1
815
+ "Pure profits",1
816
+ "Quick",1
817
+ "Quick and easy",1
818
+ "Quick and easy money transfer",1
819
+ "Quick and easy setup",1
820
+ "Quick and hassle-free",1
821
+ "Quick and hassle-free process",1
822
+ "Quick and painless application process",1
823
+ "Quick and reliable shipping",1
824
+ "Quick and secure online payment",1
825
+ "Quick and secure transactions",1
826
+ "Quick and simple",1
827
+ "Quick and simple setup",1
828
+ "Quick cash",1
829
+ "Quote",1
830
+ "Rare chance",1
831
+ "Rates",1
832
+ "Real thing",1
833
+ "Recover your debt",1
834
+ "Recover your debt instantly",1
835
+ "Refinance",1
836
+ "Refinance home",1
837
+ "Refund",1
838
+ "Removal",1
839
+ "Removal instructions",1
840
+ "Remove",1
841
+ "Remove in quotes",1
842
+ "Remove subject",1
843
+ "Removes wrinkles",1
844
+ "Reply remove subject",1
845
+ "Request",1
846
+ "Request now",1
847
+ "Request today",1
848
+ "Requires initial investment",1
849
+ "Reserves the right",1
850
+ "Results",1
851
+ "Revealed",1
852
+ "Reverses",1
853
+ "Reverses aging",1
854
+ "Revolutionary",1
855
+ "Risk free",1
856
+ "Risk-free",1
857
+ "Risk-free investment",1
858
+ "Risk-free opportunity",1
859
+ "Risk-free trial",1
860
+ "Risk-free trial period",1
861
+ "Rolex",1
862
+ "Round the world",1
863
+ "S 1618",1
864
+ "Safeguard notice",1
865
+ "Sale",1
866
+ "Sales",1
867
+ "Sample",1
868
+ "Satisfaction",1
869
+ "Satisfaction guaranteed",1
870
+ "Save $",1
871
+ "Save",1
872
+ "Save big",1
873
+ "Save big money",1
874
+ "Save Big Money",1
875
+ "Save money",1
876
+ "Save now",1
877
+ "Save up to",1
878
+ "Score",1
879
+ "Score with babes",1
880
+ "Search engine",1
881
+ "Search engine listings",1
882
+ "Search engines",1
883
+ "Secret",1
884
+ "Secret discount",1
885
+ "Secret formula",1
886
+ "Secret investment strategy",1
887
+ "Secret loophole",1
888
+ "Secret revealed",1
889
+ "Secret stash",1
890
+ "Secret strategy",1
891
+ "Section 301",1
892
+ "See for yourself",1
893
+ "Sent in compliance",1
894
+ "Serious",1
895
+ "Serious cash",1
896
+ "Serious offer",1
897
+ "Serious only",1
898
+ "Shopper",1
899
+ "Shopping spree",1
900
+ "Sign up free",1
901
+ "Sign up free today",1
902
+ "Skyrocket your career",1
903
+ "Skyrocket your earnings",1
904
+ "Skyrocket your success",1
905
+ "Social security number",1
906
+ "Solution",1
907
+ "Spam",1
908
+ "Special",1
909
+ "Special deal",1
910
+ "Special discount",1
911
+ "Special for you",1
912
+ "Special invitation",1
913
+ "Special offer",1
914
+ "Special promotion",1
915
+ "Stainless steel",1
916
+ "Start earning",1
917
+ "Stock alert",1
918
+ "Stock disclaimer statement",1
919
+ "Stock pick",1
920
+ "Stop",1
921
+ "Stop calling me",1
922
+ "Stop emailing me",1
923
+ "Stop snoring",1
924
+ "Strong buy",1
925
+ "Stuff on sale",1
926
+ "Subject to…",1
927
+ "Subject to cash",1
928
+ "Subject to credit",1
929
+ "Subscribe",1
930
+ "Subscribe for free",1
931
+ "Subscribe now",1
932
+ "Success",1
933
+ "Success blueprint",1
934
+ "Supercharge your business",1
935
+ "Supercharge your finances",1
936
+ "Supercharge your savings",1
937
+ "Supplies",1
938
+ "Supplies are limited",1
939
+ "Supreme offer",1
940
+ "Surprise",1
941
+ "Take action",1
942
+ "Take action now",1
943
+ "Talks about hidden charges",1
944
+ "Talks about prizes",1
945
+ "Teen",1
946
+ "Tells you it’s an ad",1
947
+ "Terms",1
948
+ "Terms and conditions",1
949
+ "The best rates",1
950
+ "The following form",1
951
+ "They keep your money — no refund!",1
952
+ "They keep your Money — no refund!",1
953
+ "They’re just giving it away",1
954
+ "This",1
955
+ "This isn't a scam",1
956
+ "This isn’t a scam",1
957
+ "This isn't junk",1
958
+ "This isn’t junk",1
959
+ "This isn't spam",1
960
+ "This isn’t spam",1
961
+ "This won't last",1
962
+ "This won’t last",1
963
+ "Thousands",1
964
+ "Time is running out",1
965
+ "Time limited",1
966
+ "Time-limited",1
967
+ "Time-limited offer",1
968
+ "Time-sensitive",1
969
+ "Today",1
970
+ "Top earner",1
971
+ "Top performer",1
972
+ "Top-rated",1
973
+ "Top-rated product",1
974
+ "Top secret",1
975
+ "Top secret formula",1
976
+ "Top secret method",1
977
+ "Top secret techniques",1
978
+ "Traffic",1
979
+ "Transform your life",1
980
+ "Trial",1
981
+ "Turn your dreams into reality",1
982
+ "Ultimate breakthrough",1
983
+ "Ultimate solution",1
984
+ "Ultimate success",1
985
+ "Unbeatable offer",1
986
+ "Unbelievable",1
987
+ "Uncover hidden treasures",1
988
+ "Uncover the secret",1
989
+ "Undisclosed",1
990
+ "Undisclosed recipient",1
991
+ "University diplomas",1
992
+ "Unleash your potential",1
993
+ "Unlimited",1
994
+ "Unlimited profits",1
995
+ "Unlock",1
996
+ "Unlock financial freedom",1
997
+ "Unlock hidden profits",1
998
+ "Unlock hidden riches",1
999
+ "Unlock hidden treasures",1
1000
+ "Unlock hidden wealth",1
1001
+ "Unlock the code",1
1002
+ "Unlock the secret to success",1
1003
+ "Unlock the secret to wealth",1
1004
+ "Unlock your dreams",1
1005
+ "Unlock your financial potential",1
1006
+ "Unlock your potential",1
1007
+ "Unlock your success",1
1008
+ "Unsecured credit",1
1009
+ "Unsecured credit/debt",1
1010
+ "Unsecured debt",1
1011
+ "Unsolicited",1
1012
+ "Unsubscribe",1
1013
+ "Urgency",1
1014
+ "Urgent",1
1015
+ "Urgent action required",1
1016
+ "Urgent and important",1
1017
+ "US dollars",1
1018
+ "Vacation",1
1019
+ "Vacation offers",1
1020
+ "Valium",1
1021
+ "Valuable",1
1022
+ "Valuable information",1
1023
+ "Viagra",1
1024
+ "Viagra and other drugs",1
1025
+ "Vicodin",1
1026
+ "VIP",1
1027
+ "VIP access",1
1028
+ "VIP treatment",1
1029
+ "Visit",1
1030
+ "Visit our website",1
1031
+ "Wants credit card",1
1032
+ "Warranty",1
1033
+ "Warranty expired",1
1034
+ "Wealth creation",1
1035
+ "Website",1
1036
+ "Website visitors",1
1037
+ "Web traffic",1
1038
+ "Weekend getaway",1
1039
+ "We hate spam",1
1040
+ "We honor all",1
1041
+ "Weight",1
1042
+ "Weight loss",1
1043
+ "What are you waiting for?",1
1044
+ "What's keeping you?",1
1045
+ "What’s keeping you?",1
1046
+ "While available",1
1047
+ "While in stock",1
1048
+ "While supplies last",1
1049
+ "While you sleep",1
1050
+ "Who really wins?",1
1051
+ "Why pay more?",1
1052
+ "Wife",1
1053
+ "Will not believe your eyes",1
1054
+ "Win",1
1055
+ "Win a cash prize",1
1056
+ "Win a fortune",1
1057
+ "Win a luxury car",1
1058
+ "Win a luxury vacation",1
1059
+ "Win a trip",1
1060
+ "Win big",1
1061
+ "Win big money",1
1062
+ "Win big prizes",1
1063
+ "Winner",1
1064
+ "Winning",1
1065
+ "Won",1
1066
+ "Work at home",1
1067
+ "Work from home",1
1068
+ "Xanax",1
1069
+ "XXX$ credited",1
1070
+ "XXX amount credited",1
1071
+ "You are a winner!",1
1072
+ "You are a winner",1
1073
+ "You have been chosen",1
1074
+ "You have been selected",1
1075
+ "Your chance",1
1076
+ "You’re a winner! Won",1
1077
+ "Your income",1
1078
+ "Your income",1
1079
+ "Yours",1
1080
+ "Your status",1
1081
+ "You will not believe your eyes",1
1082
+ "Zero chance",1
1083
+ "Zero percent",1
1084
+ "Zero risk",1
datasets/topwords.csv ADDED
@@ -0,0 +1,777 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Keyword,Category
2
+ Access,Urgency 🚨
3
+ Access now,Urgency 🚨
4
+ Act,Urgency 🚨
5
+ Act immediately,Urgency 🚨
6
+ Act now,Urgency 🚨
7
+ Act now!,Urgency 🚨
8
+ Action,Urgency 🚨
9
+ Action required,Urgency 🚨
10
+ Apply here,Urgency 🚨
11
+ Apply now,Urgency 🚨
12
+ Apply now!,Urgency 🚨
13
+ Apply online,Urgency 🚨
14
+ Become a member,Urgency 🚨
15
+ Before it's too late,Urgency 🚨
16
+ Being a member,Urgency 🚨
17
+ Buy,Urgency 🚨
18
+ Buy direct,Urgency 🚨
19
+ Buy now,Urgency 🚨
20
+ Buy today,Urgency 🚨
21
+ Call,Urgency 🚨
22
+ Call free,Urgency 🚨
23
+ Call free/now,Urgency 🚨
24
+ Call me,Urgency 🚨
25
+ Call now,Urgency 🚨
26
+ Call now!,Urgency 🚨
27
+ Can we have a minute of your time?,Urgency 🚨
28
+ Cancel now,Urgency 🚨
29
+ Cancellation required,Urgency 🚨
30
+ Claim now,Urgency 🚨
31
+ Click,Urgency 🚨
32
+ Click below,Urgency 🚨
33
+ Click here,Urgency 🚨
34
+ Click me to download,Urgency 🚨
35
+ Click now,Urgency 🚨
36
+ Click this link,Urgency 🚨
37
+ Click to get,Urgency 🚨
38
+ Click to remove,Urgency 🚨
39
+ Contact us immediately,Urgency 🚨
40
+ Deal ending soon,Urgency 🚨
41
+ Do it now,Urgency 🚨
42
+ Do it today,Urgency 🚨
43
+ Don't delete,Urgency 🚨
44
+ Don't hesitate,Urgency 🚨
45
+ Don't waste time,Urgency 🚨
46
+ Don’t delete,Urgency 🚨
47
+ Exclusive deal,Urgency 🚨
48
+ Expire,Urgency 🚨
49
+ Expires today,Urgency 🚨
50
+ Final call,Urgency 🚨
51
+ For instant access,Urgency 🚨
52
+ For Only,Urgency 🚨
53
+ For you,Urgency 🚨
54
+ Friday before [holiday],Urgency 🚨
55
+ Get it away,Urgency 🚨
56
+ Get it now,Urgency 🚨
57
+ Get now,Urgency 🚨
58
+ Get paid,Urgency 🚨
59
+ Get started,Urgency 🚨
60
+ Get started now,Urgency 🚨
61
+ Great offer,Urgency 🚨
62
+ Hurry up,Urgency 🚨
63
+ Immediately,Urgency 🚨
64
+ Info you requested,Urgency 🚨
65
+ Information you requested,Urgency 🚨
66
+ Instant,Urgency 🚨
67
+ Limited time,Urgency 🚨
68
+ New customers only,Urgency 🚨
69
+ Now,Urgency 🚨
70
+ Now only,Urgency 🚨
71
+ Offer expires,Urgency 🚨
72
+ Once in lifetime,Urgency 🚨
73
+ Only,Urgency 🚨
74
+ Order now,Urgency 🚨
75
+ Order today,Urgency 🚨
76
+ Please read,Urgency 🚨
77
+ Purchase now,Urgency 🚨
78
+ Sign up free,Urgency 🚨
79
+ Sign up free today,Urgency 🚨
80
+ Supplies are limited,Urgency 🚨
81
+ Take action,Urgency 🚨
82
+ Take action now,Urgency 🚨
83
+ This won’t last,Urgency 🚨
84
+ Time limited,Urgency 🚨
85
+ Today,Urgency 🚨
86
+ Top urgent,Urgency 🚨
87
+ Trial,Urgency 🚨
88
+ Urgent,Urgency 🚨
89
+ What are you waiting for?,Urgency 🚨
90
+ While supplies last,Urgency 🚨
91
+ You are a winner,Urgency 🚨
92
+
93
+
94
+
95
+ 0 down,Shady 🔞
96
+ All,Shady 🔞
97
+ All natural,Shady 🔞
98
+ All natural/new,Shady 🔞
99
+ All new,Shady 🔞
100
+ All-natural,Shady 🔞
101
+ All-new,Shady 🔞
102
+ Allowance,Shady 🔞
103
+ As seen on,Shady 🔞
104
+ As seen on Oprah,Shady 🔞
105
+ At no cost,Shady 🔞
106
+ Auto email removal,Shady 🔞
107
+ Avoice bankruptcy,Shady 🔞
108
+ Avoid,Shady 🔞
109
+ Beneficial offer,Shady 🔞
110
+ Beneficiary,Shady 🔞
111
+ Bill Shady 🔞
112
+ Brand new pager,Shady 🔞
113
+ Bulk email,Shady 🔞
114
+ Buying judgements,Shady 🔞
115
+ Buying judgments,Shady 🔞
116
+ Cable converter,Shady 🔞
117
+ Calling creditors,Shady 🔞
118
+ Can you help us?,Shady 🔞
119
+ Cancel at any time,Shady 🔞
120
+ Cannot be combined,Shady 🔞
121
+ Celebrity,Shady 🔞
122
+ Cell phone cancer scam,Shady 🔞
123
+ Certified,Shady 🔞
124
+ Chance,Shady 🔞
125
+ Cheap,Shady 🔞
126
+ Cheap meds,Shady 🔞
127
+ Cialis,Shady 🔞
128
+ Claims,Shady 🔞
129
+ Claims not to be selling anything,Shady 🔞
130
+ Claims to be in accordance with some spam law,Shady 🔞
131
+ Claims to be legal,Shady 🔞
132
+ Clearance,Shady 🔞
133
+ Collect,Shady 🔞
134
+ Collect child support,Shady 🔞
135
+ Compare,Shady 🔞
136
+ Compare now,Shady 🔞
137
+ Compare online,Shady 🔞
138
+ Compare rates,Shady 🔞
139
+ Compete for your business,Shady 🔞
140
+ Confidentiality,Shady 🔞
141
+ Congratulations,Shady 🔞
142
+ Consolidate debt and credit,Shady 🔞
143
+ Consolidate your debt,Shady 🔞
144
+ Copy accurately,Shady 🔞
145
+ Copy DVDs,Shady 🔞
146
+ COVID,Shady 🔞
147
+ Cures,Shady 🔞
148
+ Cures baldness,Shady 🔞
149
+ Diagnostic,Shady 🔞
150
+ DIAGNOSTICS,Shady 🔞
151
+ Diet,Shady 🔞
152
+ Dig up dirt on friends,Shady 🔞
153
+ Direct email,Shady 🔞
154
+ Direct marketing,Shady 🔞
155
+ Eliminate debt,Shady 🔞
156
+ Explode your business,Shady 🔞
157
+ Fast viagra delivery,Shady 🔞
158
+ Finance,Shady 🔞
159
+ Financial,Shady 🔞
160
+ Financial advice,Shady 🔞
161
+ Financial independence,Shady 🔞
162
+ Financially independent,Shady 🔞
163
+ For new customers only,Shady 🔞
164
+ Foreclosure,Shady 🔞
165
+ Free,Shady 🔞
166
+ Free access/money/gift,Shady 🔞
167
+ Free bonus,Shady 🔞
168
+ Free cell phone,Shady 🔞
169
+ Free DVD,Shady 🔞
170
+ Free grant money,Shady 🔞
171
+ Free information,Shady 🔞
172
+ Free installation,Shady 🔞
173
+ Free Instant,Shady 🔞
174
+ Free iPhone,Shady 🔞
175
+ Free laptop,Shady 🔞
176
+ Free leads,Shady 🔞
177
+ Free Macbook,Shady 🔞
178
+ Free offer,Shady 🔞
179
+ Free priority mail,Shady 🔞
180
+ Free sample,Shady 🔞
181
+ Free website,Shady 🔞
182
+ Free!,Shady 🔞
183
+ Get,Shady 🔞
184
+ Gift card,Shady 🔞
185
+ Gift certificate,Shady 🔞
186
+ Gift included,Shady 🔞
187
+ Give it away,Shady 🔞
188
+ Giving away,Shady 🔞
189
+ Giving it away,Shady 🔞
190
+ Gold,Shady 🔞
191
+ Great,Shady 🔞
192
+ Great deal,Shady 🔞
193
+ Greetings of the day,Shady 🔞
194
+ Growth hormone,Shady 🔞
195
+ Guarantee,Shady 🔞
196
+ Guaranteed deposit,Shady 🔞
197
+ Guaranteed income,Shady 🔞
198
+ Guaranteed payment,Shady 🔞
199
+ Have you been turned down?,Shady 🔞
200
+ Hello (with no name included),Shady 🔞
201
+ Hidden charges,Shady 🔞
202
+ Hidden costs,Shady 🔞
203
+ Hidden fees,Shady 🔞
204
+ High score,Shady 🔞
205
+ Home based business,Shady 🔞
206
+ Home mortgage,Shady 🔞
207
+ Human,Shady 🔞
208
+ Human growth hormone,Shady 🔞
209
+ If only it were that easy,Shady 🔞
210
+ Important information,Shady 🔞
211
+ Important notification,Shady 🔞
212
+ Instant weight loss,Shady 🔞
213
+ Insurance Lose weight,Shady 🔞
214
+ Internet marketing,Shady 🔞
215
+ Investment decision,Shady 🔞
216
+ Invoice,Shady 🔞
217
+ It’s effective,Shady 🔞
218
+ Job alert,Shady 🔞
219
+ Junk,Shady 🔞
220
+ Lambo,Shady 🔞
221
+ Laser printer,Shady 🔞
222
+ Last Day,Shady 🔞
223
+ Legal,Shady 🔞
224
+ Legal notice,Shady 🔞
225
+ Life,Shady 🔞
226
+ Life insurance,Shady 🔞
227
+ Lifetime access,Shady 🔞
228
+ Lifetime deal,Shady 🔞
229
+ Limited,Shady 🔞
230
+ Limited amount,Shady 🔞
231
+ Limited number,Shady 🔞
232
+ Limited offer,Shady 🔞
233
+ Limited supply,Shady 🔞
234
+ Limited time offer,Shady 🔞
235
+ Limited time only,Shady 🔞
236
+ Loan,Shady 🔞
237
+ Long distance phone number,Shady 🔞
238
+ Long distance phone offer,Shady 🔞
239
+ Lose weight,Shady 🔞
240
+ Lose weight fast,Shady 🔞
241
+ Lose weight spam,Shady 🔞
242
+ Lottery,Shady 🔞
243
+ Lower interest rate,Shady 🔞
244
+ Lower interest rates,Shady 🔞
245
+ Lower monthly payment,Shady 🔞
246
+ Lower your mortgage rate,Shady 🔞
247
+ Lowest insurance rates,Shady 🔞
248
+ Lowest interest rate,Shady 🔞
249
+ Lowest rate,Shady 🔞
250
+ Lowest rates,Shady 🔞
251
+ Luxury,Shady 🔞
252
+ Luxury car,Shady 🔞
253
+ Mail in order form,Shady 🔞
254
+ Main in order form,Shady 🔞
255
+ Mark this as not junk,Shady 🔞
256
+ Mass email,Shady 🔞
257
+ Medical,Shady 🔞
258
+ Medicine,Shady 🔞
259
+ Meet girls,Shady 🔞
260
+ Meet me,Shady 🔞
261
+ Meet singles,Shady 🔞
262
+ Meet women,Shady 🔞
263
+ Member,Shady 🔞
264
+ Member stuff,Shady 🔞
265
+ Message contains disclaimer,Shady 🔞
266
+ Message from,Shady 🔞
267
+ Millionaire,Shady 🔞
268
+ Millions,Shady 🔞
269
+ MLM,Shady 🔞
270
+ Multi-level marketing,Shady 🔞
271
+ Name,Shady 🔞
272
+ Near you,Shady 🔞
273
+ Never before,Shady 🔞
274
+ New,Shady 🔞
275
+ New domain extensions,Shady 🔞
276
+ Nigerian,Shady 🔞
277
+ No age restrictions,Shady 🔞
278
+ No catch,Shady 🔞
279
+ No claim forms,Shady 🔞
280
+ No cost,Shady 🔞
281
+ No credit check,Shady 🔞
282
+ No credit experience,Shady 🔞
283
+ No deposit required,Shady 🔞
284
+ No disappointment,Shady 🔞
285
+ No experience,Shady 🔞
286
+ No fees,Shady 🔞
287
+ No gimmick,Shady 🔞
288
+ No hidden,Shady 🔞
289
+ No hidden costs,Shady 🔞
290
+ No hidden fees,Shady 🔞
291
+ No hidden сosts,Shady 🔞
292
+ No interest,Shady 🔞
293
+ No interests,Shady 🔞
294
+ No inventory,Shady 🔞
295
+ No investment,Shady 🔞
296
+ No investment required,Shady 🔞
297
+ No medical exams,Shady 🔞
298
+ No middleman,Shady 🔞
299
+ No obligation,Shady 🔞
300
+ No payment required,Shady 🔞
301
+ No purchase necessary,Shady 🔞
302
+ No questions asked,Shady 🔞
303
+ No selling,Shady 🔞
304
+ No strings attached,Shady 🔞
305
+ No-obligation,Shady 🔞
306
+ Nominated bank account,Shady 🔞
307
+ Not intended,Shady 🔞
308
+ Not junk,Shady 🔞
309
+ Not scam,Shady 🔞
310
+ Not spam,Shady 🔞
311
+ Notspam,Shady 🔞
312
+ Number ,Shady 🔞
313
+ Obligation,Shady 🔞
314
+ Off,Shady 🔞
315
+ Off everything,Shady 🔞
316
+ Off shore,Shady 🔞
317
+ Offer extended,Shady 🔞
318
+ Offers,Shady 🔞
319
+ Offshore,Shady 🔞
320
+ One hundred percent,Shady 🔞
321
+ One-time,Shady 🔞
322
+ Online biz opportunity,Shady 🔞
323
+ Online degree,Shady 🔞
324
+ Online income,Shady 🔞
325
+ Online job,Shady 🔞
326
+ Open,Shady 🔞
327
+ Opportunity,Shady 🔞
328
+ Opt-in,Shady 🔞
329
+ Order,Shady 🔞
330
+ Order shipped by,Shady 🔞
331
+ Order status,Shady 🔞
332
+ Orders shipped by,Shady 🔞
333
+ Orders shipped by shopper,Shady 🔞
334
+ Outstanding value,Shady 🔞
335
+ Outstanding values,Shady 🔞
336
+ Password,Shady 🔞
337
+ Passwords,Shady 🔞
338
+ Pay your bills,Shady 🔞
339
+ Per day/per week/per year,Shady 🔞
340
+ Per month,Shady 🔞
341
+ Perfect,Shady 🔞
342
+ Performance,Shady 🔞
343
+ Phone,Shady 🔞
344
+ Please,Shady 🔞
345
+ Please open,Shady 🔞
346
+ Presently,Shady 🔞
347
+ Print form signature,Shady 🔞
348
+ Print from signature,Shady 🔞
349
+ Print out and fax,Shady 🔞
350
+ Priority mail,Shady 🔞
351
+ Privately owned funds,Shady 🔞
352
+ Prizes,Shady 🔞
353
+ Problem with shipping,Shady 🔞
354
+ Problem with your order,Shady 🔞
355
+ Produced and sent out,Shady 🔞
356
+ Profit,Shady 🔞
357
+ Promise you,Shady 🔞
358
+ Purchase,Shady 🔞
359
+ Pure Profits,Shady 🔞
360
+ Quotes,Shady 🔞
361
+ Rate,Shady 🔞
362
+ Real thing,Shady 🔞
363
+ Rebate,Shady 🔞
364
+ Reduce debt,Shady 🔞
365
+ Refinance home,Shady 🔞
366
+ Refinanced home,Shady 🔞
367
+ Refund,Shady 🔞
368
+ Regarding,Shady 🔞
369
+ Removal instructions,Shady 🔞
370
+ Removes,Shady 🔞
371
+ Removes wrinkles,Shady 🔞
372
+ Replica watches,Shady 🔞
373
+ Request,Shady 🔞
374
+ Request now,Shady 🔞
375
+ Request today,Shady 🔞
376
+ Requires initial investment,Shady 🔞
377
+ Requires investment,Shady 🔞
378
+ Reverses aging,Shady 🔞
379
+ Risk free,Shady 🔞
380
+ Rolex,Shady 🔞
381
+ Round the world,Shady 🔞
382
+ S ,Shady 🔞
383
+ Safeguard notice,Shady 🔞
384
+ Sale,Shady 🔞
385
+ Sales,Shady 🔞
386
+ Save,Shady 🔞
387
+ "Save $, Save €",Shady 🔞
388
+ Save big,Shady 🔞
389
+ Save big month,Shady 🔞
390
+ Save money,Shady 🔞
391
+ Save now,Shady 🔞
392
+ Score with babes,Shady 🔞
393
+ Search engine optimisation,Shady 🔞
394
+ Section ,Shady 🔞
395
+ See for yourself,Shady 🔞
396
+ Seen on,Shady 🔞
397
+ Serious,Shady 🔞
398
+ Serious case,Shady 🔞
399
+ Serious offer,Shady 🔞
400
+ Serious only,Shady 🔞
401
+ Sex,Shady 🔞
402
+ Shop now,Shady 🔞
403
+ Shopper,Shady 🔞
404
+ Shopping spree,Shady 🔞
405
+ Snoring,Shady 🔞
406
+ Social security number,Shady 🔞
407
+ Soon,Shady 🔞
408
+ Spam,Shady 🔞
409
+ Spam free,Shady 🔞
410
+ Special deal,Shady 🔞
411
+ Special discount,Shady 🔞
412
+ Special for you,Shady 🔞
413
+ Special offer,Shady 🔞
414
+ Stainless steel,Shady 🔞
415
+ Stock alert,Shady 🔞
416
+ Stock disclaimer statement,Shady 🔞
417
+ Stock pick,Shady 🔞
418
+ Stocks/stock pick/stock alert,Shady 🔞
419
+ Stop calling me,Shady 🔞
420
+ Stop emailing me,Shady 🔞
421
+ Stop further distribution,Shady 🔞
422
+ Stop snoring,Shady 🔞
423
+ Strong buy,Shady 🔞
424
+ Stuff on sale,Shady 🔞
425
+ Subject to,Shady 🔞
426
+ Subject to cash,Shady 🔞
427
+ Subscribe,Shady 🔞
428
+ Subscribe for free,Shady 🔞
429
+ Subscribe now,Shady 🔞
430
+ Super promo,Shady 🔞
431
+ Supplies,Shady 🔞
432
+ Tack action now,Shady 🔞
433
+ Talks about hidden charges,Shady 🔞
434
+ Talks about prizes,Shady 🔞
435
+ Tells you it’s an ad,Shady 🔞
436
+ Terms,Shady 🔞
437
+ The best rates,Shady 🔞
438
+ The email asks for a credit card,Shady 🔞
439
+ The following form,Shady 🔞
440
+ They make a claim or claims that they're in accordance with spam law,Shady 🔞
441
+ They try to keep your money no refund,Shady 🔞
442
+ They’re just giving it away,Shady 🔞
443
+ This isn't junk,Shady 🔞
444
+ This isn't spam,Shady 🔞
445
+ This isn’t a scam,Shady 🔞
446
+ This isn’t junk,Shady 🔞
447
+ This isn’t spam,Shady 🔞
448
+ Timeshare,Shady 🔞
449
+ Timeshare offers,Shady 🔞
450
+ Traffic,Shady 🔞
451
+ Trial unlimited,Shady 🔞
452
+ U.S. dollars,Shady 🔞
453
+ Undisclosed,Shady 🔞
454
+ Undisclosed recipient,Shady 🔞
455
+ University diplomas,Shady 🔞
456
+ Unsecured credit,Shady 🔞
457
+ Unsecured debt,Shady 🔞
458
+ Unsolicited,Shady 🔞
459
+ Unsubscribe,Shady 🔞
460
+ Urgent response,Shady 🔞
461
+ US dollars / Euros,Shady 🔞
462
+ Vacation,Shady 🔞
463
+ Vacation offers,Shady 🔞
464
+ Valium,Shady 🔞
465
+ Viagra,Shady 🔞
466
+ Vicodin,Shady 🔞
467
+ VIP,Shady 🔞
468
+ Visit our website,Shady 🔞
469
+ Wants credit card,Shady 🔞
470
+ Warranty expired,Shady 🔞
471
+ We hate spam,Shady 🔞
472
+ We honor all,Shady 🔞
473
+ Website visitors,Shady 🔞
474
+ Weekend getaway,Shady 🔞
475
+ Weight loss,Shady 🔞
476
+ What’s keeping you?,Shady 🔞
477
+ While available,Shady 🔞
478
+ While in stock,Shady 🔞
479
+ While stocks last,Shady 🔞
480
+ While you sleep,Shady 🔞
481
+ Who really wins?,Shady 🔞
482
+ Win,Shady 🔞
483
+ Winner,Shady 🔞
484
+ Winning,Shady 🔞
485
+ Won,Shady 🔞
486
+ Xanax,Shady 🔞
487
+ XXX,Shady 🔞
488
+ You have been chosen,Shady 🔞
489
+ You have been selected,Shady 🔞
490
+ Your chance,Shady 🔞
491
+ Your status,Shady 🔞
492
+ Zero chance,Shady 🔞
493
+ Zero percent,Shady 🔞
494
+ Zero risk,Shady 🔞
495
+
496
+
497
+ #,Overpromise 🤩
498
+ %,Overpromise 🤩
499
+ % free,Overpromise 🤩
500
+ % Satisfied,Overpromise 🤩
501
+ 0%,Overpromise 🤩
502
+ 0% risk,Overpromise 🤩
503
+ 100%,Overpromise 🤩
504
+ 100% free,Overpromise 🤩
505
+ 100% more,Overpromise 🤩
506
+ 100% off,Overpromise 🤩
507
+ 100% satisfied,Overpromise 🤩
508
+ 99.90%,Overpromise 🤩
509
+ 99%,Overpromise 🤩
510
+ Access for free,Overpromise 🤩
511
+ Additional income,Overpromise 🤩
512
+ Amazed,Overpromise 🤩
513
+ Amazing,Overpromise 🤩
514
+ Amazing offer,Overpromise 🤩
515
+ Amazing stuff,Overpromise 🤩
516
+ Be amazed,Overpromise 🤩
517
+ Be surprised,Overpromise 🤩
518
+ Be your own boss,Overpromise 🤩
519
+ Believe me,Overpromise 🤩
520
+ Best bargain,Overpromise 🤩
521
+ Best deal,Overpromise 🤩
522
+ Best offer,Overpromise 🤩
523
+ Best price,Overpromise 🤩
524
+ Best rates,Overpromise 🤩
525
+ Big bucks,Overpromise 🤩
526
+ Bonus,Overpromise 🤩
527
+ Boss,Overpromise 🤩
528
+ Can’t live without,Overpromise 🤩
529
+ Cancel,Overpromise 🤩
530
+ Consolidate debt,Overpromise 🤩
531
+ Double your cash,Overpromise 🤩
532
+ Double your income,Overpromise 🤩
533
+ Drastically reduced,Overpromise 🤩
534
+ Earn extra cash,Overpromise 🤩
535
+ Earn money,Overpromise 🤩
536
+ Eliminate bad credit,Overpromise 🤩
537
+ Expect to earn,Overpromise 🤩
538
+ Extra,Overpromise 🤩
539
+ Extra cash,Overpromise 🤩
540
+ Extra income,Overpromise 🤩
541
+ Fantastic,Overpromise 🤩
542
+ Fantastic deal,Overpromise 🤩
543
+ Fantastic offer,Overpromise 🤩
544
+ FAST,Overpromise 🤩
545
+ Fast cash,Overpromise 🤩
546
+ Financial freedom,Overpromise 🤩
547
+ Free access,Overpromise 🤩
548
+ Free consultation,Overpromise 🤩
549
+ Free gift,Overpromise 🤩
550
+ Free hosting,Overpromise 🤩
551
+ Free info,Overpromise 🤩
552
+ Free investment,Overpromise 🤩
553
+ Free membership,Overpromise 🤩
554
+ Free money,Overpromise 🤩
555
+ Free preview,Overpromise 🤩
556
+ Free quote,Overpromise 🤩
557
+ Free trial,Overpromise 🤩
558
+ Full refund,Overpromise 🤩
559
+ Get out of debt,Overpromise 🤩
560
+ Giveaway,Overpromise 🤩
561
+ Guaranteed,Overpromise 🤩
562
+ Increase sales,Overpromise 🤩
563
+ Increase traffic,Overpromise 🤩
564
+ Incredible deal,Overpromise 🤩
565
+ Join billions,Overpromise 🤩
566
+ Join millions,Overpromise 🤩
567
+ Join millions of Americans,Overpromise 🤩
568
+ Join thousands,Overpromise 🤩
569
+ Lower rates,Overpromise 🤩
570
+ Lowest price,Overpromise 🤩
571
+ Make money,Overpromise 🤩
572
+ Million,Overpromise 🤩
573
+ Million dollars,Overpromise 🤩
574
+ Miracle,Overpromise 🤩
575
+ Money back,Overpromise 🤩
576
+ Month trial offer,Overpromise 🤩
577
+ More Internet Traffic,Overpromise 🤩
578
+ Number one,Overpromise 🤩
579
+ Once in a lifetime,Overpromise 🤩
580
+ One hundred percent guaranteed,Overpromise 🤩
581
+ One time,Overpromise 🤩
582
+ Pennies a day,Overpromise 🤩
583
+ Potential earnings,Overpromise 🤩
584
+ Prize,Overpromise 🤩
585
+ Promise,Overpromise 🤩
586
+ Pure profit,Overpromise 🤩
587
+ Risk-free,Overpromise 🤩
588
+ Satisfaction guaranteed,Overpromise 🤩
589
+ Save big money,Overpromise 🤩
590
+ Save up to,Overpromise 🤩
591
+ Special promotion,Overpromise 🤩
592
+ The best,Overpromise 🤩
593
+ Thousands,Overpromise 🤩
594
+ Unbeatable offer,Overpromise 🤩
595
+ Unbelievable,Overpromise 🤩
596
+ Unlimited,Overpromise 🤩
597
+ Unlimited trial,Overpromise 🤩
598
+ Wonderful,Overpromise 🤩
599
+ You will not believe your eyes,Overpromise 🤩
600
+
601
+ $$$,Money 💰
602
+ €€€,Money 💰
603
+ £££,Money 💰
604
+ 50% off,Money 💰
605
+ A few bob,Money 💰
606
+ Accept cash cards,Money 💰
607
+ Accept credit cards,Money 💰
608
+ Affordable,Money 💰
609
+ Affordable deal,Money 💰
610
+ Avoid bankruptcy,Money 💰
611
+ Bad credit,Money 💰
612
+ Bank,Money 💰
613
+ Bankruptcy,Money 💰
614
+ Bargain,Money 💰
615
+ Billing,Money 💰
616
+ Billing address,Money 💰
617
+ Billion,Money 💰
618
+ Billion dollars,Money 💰
619
+ Billionaire,Money 💰
620
+ Card accepted,Money 💰
621
+ Cards accepted,Money 💰
622
+ Cash,Money 💰
623
+ Cash bonus,Money 💰
624
+ Cash out,Money 💰
625
+ Cash-out,Money 💰
626
+ Cashcashcash,Money 💰
627
+ Casino,Money 💰
628
+ Cents on the dollar,Money 💰
629
+ Check,Money 💰
630
+ Check or money order,Money 💰
631
+ Claim your discount,Money 💰
632
+ Cost,Money 💰
633
+ Costs,Money 💰
634
+ Credit,Money 💰
635
+ Credit bureaus,Money 💰
636
+ Credit card,Money 💰
637
+ Credit card offers,Money 💰
638
+ Credit or Debit,Money 💰
639
+ Deal,Money 💰
640
+ Debt,Money 💰
641
+ Discount,Money 💰
642
+ Dollars,Money 💰
643
+ Double your,Money 💰
644
+ Double your wealth,Money 💰
645
+ Earn,Money 💰
646
+ Earn $,Money 💰
647
+ Earn cash,Money 💰
648
+ Earn extra income,Money 💰
649
+ Earn from home,Money 💰
650
+ Earn monthly,Money 💰
651
+ Earn per month,Money 💰
652
+ Earn per week,Money 💰
653
+ Earn your degree,Money 💰
654
+ Easy income,Money 💰
655
+ Easy terms,Money 💰
656
+ F r e e,Money 💰
657
+ For free,Money 💰
658
+ For just $,Money 💰
659
+ For just $ (amount),Money 💰
660
+ For just $xxx,Money 💰
661
+ Get Money,Money 💰
662
+ Get your money,Money 💰
663
+ Hidden assets,Money 💰
664
+ Huge discount,Money 💰
665
+ Income,Money 💰
666
+ Income from home,Money 💰
667
+ Increase revenue,Money 💰
668
+ Increase sales/traffic,Money 💰
669
+ Increase your chances,Money 💰
670
+ Initial investment,Money 💰
671
+ Instant earnings,Money 💰
672
+ Instant income,Money 💰
673
+ Insurance,Money 💰
674
+ Investment,Money 💰
675
+ Investment advice,Money 💰
676
+ Lifetime,Money 💰
677
+ Loans,Money 💰
678
+ Make $,Money 💰
679
+ Money,Money 💰
680
+ Money making,Money 💰
681
+ Money-back guarantee,Money 💰
682
+ Money-making,Money 💰
683
+ Monthly payment,Money 💰
684
+ Mortgage,Money 💰
685
+ Mortgage rates,Money 💰
686
+ Offer,Money 💰
687
+ One hundred percent free,Money 💰
688
+ Only $,Money 💰
689
+ Price,Money 💰
690
+ Price protection,Money 💰
691
+ Prices,Money 💰
692
+ Profits,Money 💰
693
+ Quote,Money 💰
694
+ Rates,Money 💰
695
+ Refinance,Money 💰
696
+ Save $,Money 💰
697
+ Serious cash,Money 💰
698
+ Subject to credit,Money 💰
699
+ US dollars,Money 💰
700
+ Why pay more?,Money 💰
701
+ Your income,Money 💰
702
+
703
+ Acceptance,Unnatural 💬
704
+ Accordingly,Unnatural 💬
705
+ Account-based marketing (ABM),Unnatural 💬
706
+ Accounts,Unnatural 💬
707
+ Addresses,Unnatural 💬
708
+ Addresses on CD,Unnatural 💬
709
+ Beverage,Unnatural 💬
710
+ Confidentiality on all orders,Unnatural 💬
711
+ Confidentially on all orders,Unnatural 💬
712
+ Content marketing,Unnatural 💬
713
+ Dear [email address],Unnatural 💬
714
+ Dear [email/friend/somebody],Unnatural 💬
715
+ Dear [first name],Unnatural 💬
716
+ Dear [wrong name],Unnatural 💬
717
+ Digital marketing,Unnatural 💬
718
+ Dormant,Unnatural 💬
719
+ Email extractor,Unnatural 💬
720
+ Email harvest,Unnatural 💬
721
+ Email marketing,Unnatural 💬
722
+ Extract email,Unnatural 💬
723
+ Form,Unnatural 💬
724
+ Freedom,Unnatural 💬
725
+ Friend,Unnatural 💬
726
+ Here,Unnatural 💬
727
+ Hidden,Unnatural 💬
728
+ Home,Unnatural 💬
729
+ Home based,Unnatural 💬
730
+ Home employment,Unnatural 💬
731
+ Home-based,Unnatural 💬
732
+ Home-based business,Unnatural 💬
733
+ Homebased business,Unnatural 💬
734
+ If you no longer wish to receive,Unnatural 💬
735
+ Important information regarding,Unnatural 💬
736
+ In accordance with laws,Unnatural 💬
737
+ Increase your sales,Unnatural 💬
738
+ Internet market,Unnatural 💬
739
+ Leave,Unnatural 💬
740
+ Lose,Unnatural 💬
741
+ Maintained,Unnatural 💬
742
+ Marketing,Unnatural 💬
743
+ Marketing solution,Unnatural 💬
744
+ Marketing solutions,Unnatural 💬
745
+ Medium,Unnatural 💬
746
+ Message contains,Unnatural 💬
747
+ Multi level marketing,Unnatural 💬
748
+ Never,Unnatural 💬
749
+ One time mailing,Unnatural 💬
750
+ Online marketing,Unnatural 💬
751
+ Online pharmacy,Unnatural 💬
752
+ Opt in,Unnatural 💬
753
+ Per day,Unnatural 💬
754
+ Per week,Unnatural 💬
755
+ Pre-approved,Unnatural 💬
756
+ Problem,Unnatural 💬
757
+ Removal,Unnatural 💬
758
+ Remove,Unnatural 💬
759
+ Reserves the right,Unnatural 💬
760
+ Reverses,Unnatural 💬
761
+ Sample,Unnatural 💬
762
+ Satisfaction,Unnatural 💬
763
+ Score,Unnatural 💬
764
+ Search engine,Unnatural 💬
765
+ Search engine listings,Unnatural 💬
766
+ Search engines,Unnatural 💬
767
+ Sent in compliance,Unnatural 💬
768
+ Solution,Unnatural 💬
769
+ Stop,Unnatural 💬
770
+ Success,Unnatural 💬
771
+ Teen,Unnatural 💬
772
+ Terms and conditions,Unnatural 💬
773
+ Warranty,Unnatural 💬
774
+ Web traffic,Unnatural 💬
775
+ Wife,Unnatural 💬
776
+ Work at home,Unnatural 💬
777
+ Work from home,Unnatural 💬
datasets/yt.csv ADDED
The diff for this file is too large to render. See raw diff