Datasets:

Modalities:
Text
Formats:
json
Languages:
English
Libraries:
Datasets
pandas
License:
File size: 99,791 Bytes
9c79625
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
{"id":0,"tokens":["RT","@yomonroe",":","i","want","sex_"],"ner_tags":["~","@","~","O","V","N"]}
{"id":1,"tokens":["My","Tummy","Feels","Funny","..","EMILY","!","What","Are","You","Doing","In","There","??",":-P"],"ner_tags":["D","N","V","A",",","^",",","O","V","O","V","P","R",",","E"]}
{"id":2,"tokens":["Down","in","the","basement","with","@1cierra22","@lola_symone","@simplyke613"],"ner_tags":["P","P","D","N","P","@","@","@"]}
{"id":3,"tokens":["RT","@mtnridge",":","We","are","selling","Christmas","trees",".","click","the","link","https:\/\/www.southwesternfg.com\/order\/","and","type","in","mountainridge","for","the","gro","..."],"ner_tags":["~","@","~","O","V","V","^","N",",","V","D","N","U","&","V","T","N","P","D","G","~"]}
{"id":4,"tokens":["I","think","when","I","am","done","with","my","MFA","I","should","tear","it","in","half","&","give","the","other","half","to","my","friend","Paul",".","He","deserves","it",".","Thanks","bro","."],"ner_tags":["O","V","R","O","V","V","P","D","N","O","V","V","O","P","N","&","V","D","A","N","P","D","N","^",",","O","V","O",",","N","N",","]}
{"id":5,"tokens":["@john_mason_","Is","there","a","Flex","for","CF","or","Dreamweaver","for","CF","book","there","?","#adobemax"],"ner_tags":["@","V","X","D","^","P","^","&","^","P","^","N","R",",","#"]}
{"id":6,"tokens":["I","just","became","the","mayor","of","Off","5th","Saks","Fifth","Avenue","Outlet","on","@foursquare","!","http:\/\/4sq.com\/cRd7gP"],"ner_tags":["O","R","V","D","N","P","^","^","^","^","^","N","P","@",",","U"]}
{"id":7,"tokens":["RT","@HuffPostCollege",":","The","Lowdown","On","Four","Loko",":","10","Reasons","Not","To","Drink","Liquid","Crack","(","as","if","you","need","them",")","http:\/\/huff.to\/aQ8vFr"],"ner_tags":["~","@","~","D","N","P","^","^",",","$","N","R","P","V","N","N",",","P","P","O","V","O",",","U"]}
{"id":8,"tokens":["Some","ppl","r","juz","unrealiable","."],"ner_tags":["D","N","V","R","A",","]}
{"id":9,"tokens":["@kristenmchugh22","@nerdsinbabeland","I'm","actually","a","HUGE","Harley","Quinn","fan",".","She's","my","fav","Gotham","gal"],"ner_tags":["@","@","L","R","D","A","^","^","N",",","L","D","A","^","N"]}
{"id":10,"tokens":["RT","@lilduval","A","waitress","in","the","strip","club","ain't","nothing","but","a","stripper","wit","a","apron","<-","Ha","!","@MayaKisseZ"],"ner_tags":["~","@","D","N","P","D","N","N","V","N","&","D","N","P","D","N","~","!",",","@"]}
{"id":11,"tokens":["#teamhorny"],"ner_tags":["#"]}
{"id":12,"tokens":["Yea",",","no","fun",".","I'm","making","the","bf","clean","it","up","when","he","gets","home","lol","RT","@GinnyKaroub",":","@TuSalsera","I","agree",",","Ewww",",","YUK","!",":)","http:\/\/myloc.me\/dxMh7"],"ner_tags":["!",",","D","N",",","L","V","D","N","V","O","T","R","O","V","N","!","~","@","~","@","O","V",",","!",",","!",",","E","U"]}
{"id":13,"tokens":["RT","@philpringle",":","Fear","not","for","I","am","with","you","says","the","Lord","http:\/\/twitpic.com\/31dlg9"],"ner_tags":["~","@","~","V","R","P","O","V","P","O","V","D","^","U"]}
{"id":14,"tokens":["Lets","go","Lakers"],"ner_tags":["L","V","^"]}
{"id":15,"tokens":["You're","welcome",".","THANK","ME","WHEN","YOU","WIPE","YOUR","ASSES","Washington","D.C.","ASSHOLES","SHIT","DRIVING","FUCKS","!","(@","Costco","Wholesale",")","http:\/\/4sq.com\/qPmNI"],"ner_tags":["L","A",",","V","O","R","O","V","D","N","^","^","N","N","V","N",",","P","^","^",",","U"]}
{"id":16,"tokens":["RT","@MichelleWidjya",":","have","a","nice","flight","my","beloved","sister","ce","@rindaferonika",":)"],"ner_tags":["~","@","~","V","D","A","N","D","A","N","G","@","E"]}
{"id":17,"tokens":["@leslie","Ah",",","it","looks","like","@jcyr","&","@sullivanbc","already","already","answered","the","query","..."],"ner_tags":["@","!",",","O","V","P","@","&","@","R","R","V","D","N",","]}
{"id":18,"tokens":["@_bobbydigital","ima","come","get","you","at","like","6:30","."],"ner_tags":["@","L","V","V","O","P","A","$",","]}
{"id":19,"tokens":["@MileyRAWRx","how","are","you","?"],"ner_tags":["@","R","V","O",","]}
{"id":20,"tokens":["RT","@LiveSquadEnDee",":","Nah","that","tyrone","biggems","RT","@PNUTDABOY",":","TIME","THE","FUCK","OUT","DID","I","JUST","SEE","TYRONE","LUE","ON","THE","BENCH","?"],"ner_tags":["~","@","~","!","O","^","^","~","@","~","N","D","N","N","V","O","R","V","^","^","P","D","N",","]}
{"id":21,"tokens":["@TeamKeri_NC","lmao","im","playin","w\/","ur","bro","!","i","was","gon","be","like","\"","did","ur","mom","really","talk","to","her","?\"","ROTF"],"ner_tags":["@","!","L","V","P","D","N",",","O","V","V","V","P",",","V","D","N","R","V","P","O",",","!"]}
{"id":22,"tokens":["RT","@mwbuckingham",":","The","most","impressive","quality","to","display","in","a","meeting","is","....","curiosity",".","#strengths"],"ner_tags":["~","@","~","D","R","A","N","P","V","P","D","N","V",",","N",",","#"]}
{"id":23,"tokens":["BANGTIMEEEEEEEEEEEEEEEEEEEE"],"ner_tags":["N"]}
{"id":24,"tokens":["Rejuvenation","101",".","Gas","yourself","up",".","#stringofpositivethoughts"],"ner_tags":["N","$",",","V","O","T",",","#"]}
{"id":25,"tokens":["RT","@HarryMueller",":","Pantone","is","pleased","to","announce","the","PLUS","Series","http:\/\/www.pantone.com\/plus","for","designers","and","printers","."],"ner_tags":["~","@","~","^","V","A","P","V","D","^","^","U","P","N","&","N",","]}
{"id":26,"tokens":["@Broslife","I","RODE","A","TRICYCLE","LAST","NIGHT","!","I'm","going","to","put","this","on","my","resume","."],"ner_tags":["@","O","V","D","N","A","N",",","L","V","P","V","O","P","D","N",","]}
{"id":27,"tokens":["WTF","happened","to","#LimeWire","????"],"ner_tags":["!","V","P","^",","]}
{"id":28,"tokens":["@VEVELADY","((((((((((((((((((((((((((((((((",":","http:\/\/tinychat.com\/keyscorner"],"ner_tags":["@","G",",","U"]}
{"id":29,"tokens":["U","look","like","u","got","d","opposite","of","a","perm","RT","@AlwaysMe_21",":","I","hatee","you","lol","RT","@misstrixsie","http:\/\/twitpic.com\/31daj3","-","Aw","look","at","jenny","sleepin"],"ner_tags":["O","V","P","O","V","D","N","P","D","N","~","@","~","O","V","O","!","~","@","U","~","!","V","P","^","V"]}
{"id":30,"tokens":["@Jazzyb601","WHO","is","this","CHICK","??"],"ner_tags":["@","O","V","D","N",","]}
{"id":31,"tokens":["RT","@DailySexTips",":","Ladies",",","if","he","ever","said","\"","I","love","you","\"","during","sex",".","9","times","out","of","10","he's","talking","to","your","p***y","...","NOT","YOU","#sextips"],"ner_tags":["~","@","~","N",",","P","O","R","V",",","O","V","O",",","R","N",",","$","N","P","P","$","L","V","P","D","N",",","R","O","#"]}
{"id":32,"tokens":["If","you","missed","it","-","Happy","Halloween","from","Banshee","&","the","Super","Siblings",":","http:\/\/bit.ly\/958Bfq","#webcomics"],"ner_tags":["P","O","V","O",",","A","^","P","^","&","D","^","^",",","U","#"]}
{"id":33,"tokens":["@yearoftherat","found","this","http:\/\/www.youtube.com\/user\/topcent#p\/a\/u\/2\/0qqU7OVFdsw","he","looks","like","Eric's","manager","@Phi_06"],"ner_tags":["@","V","O","U","O","V","P","Z","N","@"]}
{"id":34,"tokens":["Well","...","at","the","end","of","the","night",",","WORLD","CHAMPION","Lakers","1-0",",","Heat","0-1","."],"ner_tags":["!",",","P","D","N","P","D","N",",","N","N","^","$",",","^","$",","]}
{"id":35,"tokens":["There","should","be","a","show","about","former","celebs","...","in","a","race","...","to","design","clothes","...","on","an","island","...","and","the","loser","gets","fired","...","by","Chef","Ramsay"],"ner_tags":["X","V","V","D","N","P","A","N",",","P","D","N",",","P","V","N",",","P","D","N",",","&","D","N","V","V",",","P","^","^"]}
{"id":36,"tokens":["Demi","Lovato","got","a","voice","on","her",".","Miley","Cirus",",","eat","your","confused","heart","out","."],"ner_tags":["^","^","V","D","N","P","O",",","^","^",",","V","D","A","N","T",","]}
{"id":37,"tokens":["i","aint","worried","about","you","--","i","know","you're","strongg"],"ner_tags":["O","V","V","P","O",",","O","V","L","A"]}
{"id":38,"tokens":["Kanye","West's","\"","Runaway","\"","Movie","is","on","VH1","right","Now",",","its","good","!...","FACT","!"],"ner_tags":["^","Z",",","^",",","N","V","P","^","R","R",",","L","A",",","N",","]}
{"id":39,"tokens":["@Aqua_fina_68n1","I'm","tired","at","work","just","chillin"],"ner_tags":["@","L","A","P","N","R","V"]}
{"id":40,"tokens":["@JustCallMeRJ","yo","ass","bout","to","get","deleted","if","u","dont","follow","me","back","hoe"],"ner_tags":["@","D","N","P","P","V","V","P","O","V","V","O","T","N"]}
{"id":41,"tokens":["Dear","Wednesday","afternoon","nap","please","get","here","soon","I'm","in","much","need","of","you"],"ner_tags":["A","^","N","N","V","V","R","R","L","P","A","N","P","O"]}
{"id":42,"tokens":["This","nigga","walter","sad","yaw","..","ahahaa"],"ner_tags":["D","N","^","A","!",",","!"]}
{"id":43,"tokens":["Corner","of","the","Library",":","Trademark","http:\/\/t.co\/4EdrmMx"],"ner_tags":["N","P","D","N",",","N","U"]}
{"id":44,"tokens":["RT","@Naturalyfe","RT","@FabricLenny2010Live","iPad","Painting","NYC","http:\/\/tinyurl.com\/3yagowf","#mobileartcon","http:\/\/bit.ly\/9Z","...","http:\/\/bit.ly\/9tSFFI"],"ner_tags":["~","@","~","@","^","N","^","U","#","U",",","U"]}
{"id":45,"tokens":["Parenting","Tips","For","Raising","Healthy","Kids","http:\/\/bit.ly\/b3A6se"],"ner_tags":["A","N","P","V","A","N","U"]}
{"id":46,"tokens":["\ue00eRT","@serenawilliams",":","Do","u","guys","like","amy","new","profile","picture","?"],"ner_tags":["~","@","~","V","O","N","V","Z","A","N","N",","]}
{"id":47,"tokens":["@Bieber_BabesXP","follow","for","follow","!?"],"ner_tags":["@","V","P","V",","]}
{"id":48,"tokens":["whatz","myspace","super","star","doin","??"],"ner_tags":["L","^","N","N","V",","]}
{"id":49,"tokens":["O","#stfu","RT","@richkid129",":","Word","!","RT","@MONEYMURPH",":","RT","@richkid129",":","I","want","dat","old","thing","back","(","oh","you","too","bro",")"],"ner_tags":["!","!","~","@","~","!",",","~","@","~","~","@","~","O","V","D","A","N","R",",","!","O","R","N",","]}
{"id":50,"tokens":["Who","lied","and","died","and","told","diddy","he","can","sing","...."],"ner_tags":["O","V","&","V","&","V","^","O","V","V",","]}
{"id":51,"tokens":["@AYPATRICK","Yeah",",","girl","!","Aint","he","cute","?","Sigh","*","HAHAHA","."],"ner_tags":["@","!",",","N",",","V","O","A",",","V",",","!",","]}
{"id":52,"tokens":["RT","@robdelaney",":","SEATTLE",":","Saturday",",","November","6","I","bring","my","show","\"","Naked","&","Bloody","\"","to","you",".","http:\/\/j.mp\/cXjoCU","Come","?"],"ner_tags":["~","@","~","^",",","^",",","^","$","O","V","D","N",",","A","&","A",",","P","O",",","U","V",","]}
{"id":53,"tokens":["#NP","#NBA2K11"],"ner_tags":["#","#"]}
{"id":54,"tokens":["Everyone","keeps","telling","me","i","need","Jesus",",","i","dont","know","a","JESUS",",","who","the","fuck","is","he","-__-"],"ner_tags":["N","V","V","O","O","V","^",",","O","V","V","D","^",",","O","D","N","V","O","E"]}
{"id":55,"tokens":["scootandboo\u00ae","-->","set","priority","-->","very","high"],"ner_tags":["^","G","V","N","G","R","A"]}
{"id":56,"tokens":["Review","of","Lancaster","Painting",":","Steve",",","Toby",",","Jeff",",","Sergio","and","gang","are","awesome","to","work","with",".","They","were","professional",",","...","http:\/\/r8t.us\/9g3vrH"],"ner_tags":["N","P","^","^",",","^",",","^",",","^",",","^","&","N","V","A","P","V","P",",","O","V","A",",","~","U"]}
{"id":57,"tokens":["@agathagritte9","D3130"],"ner_tags":["@","$"]}
{"id":58,"tokens":["Even","we","go","for","a","reatreat","we're","still","going","to","have","fun",".","oh","yes","we","are",":)"],"ner_tags":["R","O","V","P","D","N","L","R","V","P","V","N",",","!","!","O","V","E"]}
{"id":59,"tokens":["@theonlydmdawson","would","be","so","proud","of","me","right","now",":)","!"],"ner_tags":["@","V","V","R","A","P","O","R","R","E",","]}
{"id":60,"tokens":["@JBieberzLuvies","LOL","i","ranther","go","see","payton","rae","and","MAYBE","caitlin","beadles","XDD"],"ner_tags":["@","!","O","R","V","V","^","^","&","R","^","^","E"]}
{"id":61,"tokens":["Andrew","McNulty","passes","to","Connor","Alberhasky","for","a","29","yard","gain",".","City","high","on","the","29","yard","line"],"ner_tags":["^","^","V","P","^","^","P","D","$","N","N",",","^","^","P","D","$","N","N"]}
{"id":62,"tokens":["@MacTalian","Good","Morning","Mikey","Baby",":D","lol","!","*","hugs","&","kisses","ya","cheek","*"],"ner_tags":["@","A","N","^","N","E","!",",",",","V","&","V","D","N",","]}
{"id":63,"tokens":["She","looks","great","!","RT","@iNewYorker",":","OMG","!","WHAT","THE","FUCK","IS","THAT","---",">","http:\/\/twitpic.com\/30vx7s"],"ner_tags":["O","V","A",",","~","@","~","!",",","O","D","N","V","O","G","G","U"]}
{"id":64,"tokens":["@Jay_Kartez","where","you","at","!"],"ner_tags":["@","R","O","P",","]}
{"id":65,"tokens":["@KJFrederick","K",",","so","ur","sarcastic","yes","?","Seguins","a","FA",".","lol","I","can","never","tell","tone","online","man","."],"ner_tags":["@","^",",","P","L","A","!",",","G","G","G",",","!","O","V","R","V","N","A","N",","]}
{"id":66,"tokens":["lmao","...","s\/o","to","the","cool","ass","asian","officer","4","#1","not","runnin","my","license","and","#2","not","takin","dru","boo","to","jail",".","Thank","u","God",".","#amen"],"ner_tags":["!",",","V","P","D","A","N","A","N","P","$","R","V","D","N","&","$","R","V","N","N","P","N",",","V","O","^",",","#"]}
{"id":67,"tokens":["RT","@Her_Weakness",":","#ialreadytoldyou","I","dont","like","being","seen","with","big","girls","in","public","unless","its","winter","time","&","I","got","the","hoody","on"],"ner_tags":["~","@","~","G","O","V","V","V","V","P","A","N","P","A","P","L","N","N","&","O","V","D","N","P"]}
{"id":68,"tokens":["Listening","to","Patti","Smith",".","Good","stuff","!"],"ner_tags":["V","P","^","^",",","A","N",","]}
{"id":69,"tokens":["Going","to","the","wedding","planners","at","The","Grand","Floridian","w\/","@jamesmmnelson","!","Eek","!"],"ner_tags":["V","P","D","N","N","P","D","^","^","P","@",",","!",","]}
{"id":70,"tokens":["#shoutout","to","@Baby_thug2011","!!!","#tfb","#teamfollowback"],"ner_tags":["V","P","@",",","#","#"]}
{"id":71,"tokens":["5","Course","Tasting","Menu","@","the","Culinary","Institute",",","evening","of","Donaudy","Songs",",","+","2","musical","options","2night","in","Jersey","City",".","http:\/\/bit.ly\/aoFyID"],"ner_tags":["$","N","N","N","P","D","^","^",",","N","P","^","N",",","&","$","A","N","R","P","^","^",",","U"]}
{"id":72,"tokens":["The","Halloween","theme","song","makes","me","giggle","."],"ner_tags":["D","^","N","N","V","O","V",","]}
{"id":73,"tokens":["@NYFarmer","In","fact","I","had","some","of","that","Persian","dugh","last","week",".","To","me",",","it's","the","mint","that","makes","it","great","."],"ner_tags":["@","P","N","O","V","D","P","D","^","N","A","N",",","P","O",",","L","D","N","P","V","O","A",","]}
{"id":74,"tokens":["@brittteague","You","can","beat","the","crap","out","of","me","anytime","you","break","something",".","=D","Love","you","and","get","well","soon","."],"ner_tags":["@","O","V","V","D","N","P","P","O","R","O","V","N",",","E","V","O","&","V","A","R",","]}
{"id":75,"tokens":["\u201cSuccess","is","not","the","key","to","happiness",".","Happiness","is","the","key","to","success",".","If","you","love","what","you","are","doing",",","you","will","...","http:\/\/fb.me\/LtIZ8S2N"],"ner_tags":["N","V","R","D","N","P","N",",","N","V","D","N","P","N",",","P","O","V","O","O","V","V",",","O","V","~","U"]}
{"id":76,"tokens":["@ohshititssam","*","wakes","up","to","u","ripping","my","clothes","off","and","prepares","myself","for","teh","rape","*"],"ner_tags":["@",",","V","T","P","O","V","D","N","P","&","V","O","P","D","N",","]}
{"id":77,"tokens":["For","Halloween","im","being","Charlie","Sheen",",","drunk","&","naked",".","Simple","costume",";","socks","&","a","bottle","of","scotch",",","maybe","a","hooker",".","And","I'll","yell","at","everyone","."],"ner_tags":["P","^","L","V","^","^",",","A","&","A",",","A","N",",","N","&","D","N","P","N",",","R","D","N",",","&","L","V","P","N",","]}
{"id":78,"tokens":["lmao",".","carolyn","haas","maagic","(:","she","better","use","it","(:"],"ner_tags":["!",",","^","V","N","E","O","R","V","O","E"]}
{"id":79,"tokens":["Google","maps","street","view",".","http:\/\/twitpic.com\/31f0rn","#intlib10","(","I","am","stealing","this","car","!",")"],"ner_tags":["^","N","N","N",",","U","#",",","O","V","V","D","N",",",","]}
{"id":80,"tokens":["Since","the","#US","is","going","down","the","tubes","in","the","worst","way",",","can","anyone","suggest","a","better","country","to","live","in","??","#CAsen","#CAgov","#CAgov","#Whitman","\/Brown"],"ner_tags":["P","D","^","V","V","P","D","N","P","D","A","N",",","V","N","V","D","A","N","P","V","P",",","#","#","#","#","#"]}
{"id":81,"tokens":["Claw","and","Antlers","!","Thunder","Up","!"],"ner_tags":["N","&","N",",","V","T",","]}
{"id":82,"tokens":["RT","@KFReilly",":","What","is","worse","than","cheating","?","Lying","about","cheating","...","http:\/\/bit.ly\/aHE9te"],"ner_tags":["~","@","~","O","V","A","P","V",",","V","P","V",",","U"]}
{"id":83,"tokens":["Interested","in","KP","Orthopedic","Medical","Assistant","position","!!!!","Please","call",":)","Crossing","my","fingers",":)"],"ner_tags":["A","P","^","^","A","N","N",",","V","V","E","V","D","N","E"]}
{"id":84,"tokens":["@corrrrina","carve","this","one",">",":)"],"ner_tags":["@","V","D","O","E","E"]}
{"id":85,"tokens":["how","u","say","broke","in","spanish","?","ME","NO","HABLO",".."],"ner_tags":["R","O","V","A","P","^",",","O","R","V",","]}
{"id":86,"tokens":["Sexy","Bandz",":","\"","Silly","Bands","are","the","term","given","to","shaped","rubber","bands","that","people","have","begun","wearing","...","http:\/\/tinyurl.com\/2bsnsoh","Check","it","--"],"ner_tags":["A","N",",",",","A","N","V","D","N","V","P","A","N","N","P","N","V","V","V","~","U","V","O",","]}
{"id":87,"tokens":["Tree","down","right","across","bridge",".","Must","turn","around","."],"ner_tags":["N","A","R","P","N",",","V","V","R",","]}
{"id":88,"tokens":["now","what","i","do","hate","is","for","a","man","to","think","its","ok","to","ask","me","for","money","@NITTIBEATZ","#niggaplz"],"ner_tags":["R","O","O","V","V","V","P","D","N","P","V","L","A","P","V","O","P","N","@","#"]}
{"id":89,"tokens":["\u2665","RT","@T_Kane",":","Welllllllll","...","obviouslllllllly","!!","(","Antoine","Dodson","voice",")"],"ner_tags":["E","~","@","~","!",",","R",",",",","^","^","N",","]}
{"id":90,"tokens":["Ace","of","Base","is","playing","all","over","my","house"],"ner_tags":["^","^","^","V","V","R","P","D","N"]}
{"id":91,"tokens":["Varsha","cooking","lunch","!!","Yayyy"],"ner_tags":["^","V","N",",","!"]}
{"id":92,"tokens":["@SheSoWet","your","body","still","ache","I'll","came","rub","them","titties","for","you","?!"],"ner_tags":["@","D","N","R","V","L","V","V","D","N","P","O",","]}
{"id":93,"tokens":["@RenziKyng","monsters","is","at","7:30","so","...."],"ner_tags":["@","^","V","P","$","P",","]}
{"id":94,"tokens":["I","have","lunch","then","one","more","class","then","i","go","home","lol"],"ner_tags":["O","V","N","R","$","A","N","R","O","V","N","!"]}
{"id":95,"tokens":["Ooh",",","That","Was","#champ","Of","Me","!"],"ner_tags":["!",",","O","V","N","P","O",","]}
{"id":96,"tokens":["RT","@RB_General",":","Just","cause","you","got","a","big","bootyyy","dnt","mean","you","look","good"],"ner_tags":["~","@","~","R","P","O","V","D","A","N","V","V","O","V","A"]}
{"id":97,"tokens":["\"","rollin","'","wit","da","homiessssssssss","\"","#clueless"],"ner_tags":[",","V",",","P","D","N",",","#"]}
{"id":98,"tokens":["@vicckiee","Yea","I","saw","that","on","my","dashboard","&","was","like","whoa","!","Yes","I","would","give","them","all","away","to","him","."],"ner_tags":["@","!","O","V","O","P","D","N","&","V","R","!",",","!","O","V","V","O","D","R","P","O",","]}
{"id":99,"tokens":["RT","@_LadyyQ","#FreeQue"],"ner_tags":["~","@","#"]}
{"id":100,"tokens":["@jcm089","http:\/\/bit.ly\/9Dv5sQ","OBTS","http:\/\/bit.ly\/d8RwDw","short","sequal","to","OBTS","http:\/\/bit.ly\/9jB60g","Hit","&","Run",",","it's","a","Bella\/Alistair",".","Very","good"],"ner_tags":["@","U","^","U","A","N","P","^","U","V","&","V",",","L","D","^",",","R","A"]}
{"id":101,"tokens":["@masdumas","Ping",".","Talk","to","me","."],"ner_tags":["@","!",",","V","P","O",","]}
{"id":102,"tokens":["rt","@QuitaBoo_","Since","I'm","out","the","loop","with","the","GEMS","*","hair","flips","all","around","*","lls","<<","what","do","u","mean","out","of","the","loop","?","wachu","talkin","bout","Willis","?"],"ner_tags":["~","@","P","L","P","D","N","P","D","^",",","N","V","R","R",",","G","~","O","V","O","V","P","P","D","N",",","L","V","P","^",","]}
{"id":103,"tokens":["@IHeartNicole","Smells","like","body","odor","!","And","the","second","floor","smells","like","pee","lol"],"ner_tags":["@","V","P","N","N",",","&","D","A","N","V","P","N","!"]}
{"id":104,"tokens":["Today",".","Please","be","over","soon",".","Thanks","."],"ner_tags":["N",",","V","V","P","R",",","N",","]}
{"id":105,"tokens":["@IamDjLEGiT","Omg","don't","start","with","me","."],"ner_tags":["@","!","V","V","P","O",","]}
{"id":106,"tokens":["#listen","#canada","#1",":","Speak","Now","(","Deluxe","CD+DVD","):","Speak","Now","(","Deluxe","CD+DVD",")","Taylor","Swift","(","Performer",")","|","Format",":","Audio","...","http:\/\/bit.ly\/dkWm38"],"ner_tags":["#","#","$",",","V","R",",","A","N",",","V","R",",","A","N",",","^","^",",","N",",","G","N",",","N","~","U"]}
{"id":107,"tokens":["RT","@BrilliantTips",":","Spooky","Things","to","Do","in","Salem",",","Massachusetts",":","http:\/\/su.pr\/18wcn2"],"ner_tags":["~","@","~","A","N","P","V","P","^",",","^","G","U"]}
{"id":108,"tokens":["What","is","Paradise","...","in","the","world","??"],"ner_tags":["O","V","N",",","P","D","N",","]}
{"id":109,"tokens":["@kemishamonae","lmao"],"ner_tags":["@","!"]}
{"id":110,"tokens":["RT","@56forfreedom",":","If","#JuanWilliams","had","said","that","white","Christians","in","hunting","camouflage","made","him","nervous",",","he'd","still","be","working","for","@NPR","..."],"ner_tags":["~","@","~","P","^","V","V","P","A","^","P","N","N","V","O","A",",","L","R","V","V","P","@",","]}
{"id":111,"tokens":["The","u.s.","commodity","futures","regulator","is","looking","into","claims","by","a","trader","in","london","that","jpmorgan","chase","was","involved","...","http:\/\/bit.ly\/d3vGzb"],"ner_tags":["D","^","N","N","N","V","V","P","N","P","D","N","P","^","P","^","^","V","V","~","U"]}
{"id":112,"tokens":["I","wouldn't","say","I'm","annoyed",".",".",".","but","I","do","feel","rather","inconvenienced","and","weird-ed","out","by","the","idea","."],"ner_tags":["O","V","V","L","A",",",",",",","&","O","V","V","R","V","&","V","T","P","D","N",","]}
{"id":113,"tokens":["@joehall","which","producer"],"ner_tags":["@","D","N"]}
{"id":114,"tokens":["@OhAshleyMarieee","ima","jump","in","this",":)","toooo","funny","!","haha"],"ner_tags":["@","L","V","P","O","E","R","A",",","!"]}
{"id":115,"tokens":["I","favorited","a","YouTube","video","--","Bailey","Brooks","and","Raylene","at","the","xPeeps","Smash","Pictures","p","...","http:\/\/youtu.be\/O5Yj3BzkgB4?a"],"ner_tags":["O","V","D","^","N",",","^","^","&","^","P","D","^","^","^","G","~","U"]}
{"id":116,"tokens":["#psd","Data","Entry","CAPTCHA","WORK","with","good","rates","by","bipashasharma29",":","We","back","with","some","captcha","servers","regular","images","...","http:\/\/bit.ly\/apTkEK"],"ner_tags":["#","N","N","^","N","P","A","N","P","^",",","O","R","P","D","^","N","A","N","~","U"]}
{"id":117,"tokens":["Let's","Go","\u264f","RT","@HovitoJr22",":","#TeamScorpio",".","Its","our","season",",","dope","!"],"ner_tags":["L","V","G","~","@","~","^",",","L","D","N",",","N",","]}
{"id":118,"tokens":["@KenjuTE","hehehee","thanksthanks","!!"],"ner_tags":["@","!","N",","]}
{"id":119,"tokens":["@LiteskinnBEAUTY","umm","chilled","den","skewl","now","im","doing","my","p.e","report","boutta","go","on","my","date","soon"],"ner_tags":["@","!","V","R","N","R","L","V","D","N","N","P","V","P","D","N","R"]}
{"id":120,"tokens":["DJs","Get","Your","Radio","Show\/Podcast","Hosted","On","@webuildhits","radio","contact","[email protected]"],"ner_tags":["N","V","D","N","N","V","P","@","N","V","U"]}
{"id":121,"tokens":["@m2jr","Try","Metro",".","LOL","."],"ner_tags":["@","V","^",",","!",","]}
{"id":122,"tokens":["@NickKaz","why","does","twitter","say","you're","in","texas","?","are","you","in","texas","?"],"ner_tags":["@","R","V","^","V","L","P","^",",","V","O","P","^",","]}
{"id":123,"tokens":["@DaveTheGame","what's","steampunk","about","them","?"],"ner_tags":["@","L","A","P","O",","]}
{"id":124,"tokens":["#ManLaw","BROS","OVA","HOES","<---","doesnt","include","wifey","....","we","want","to","b","still","alive"],"ner_tags":["#","N","P","N","G","V","V","N",",","O","V","P","V","R","A"]}
{"id":125,"tokens":["This","week","only",".","Order","staff","from","Open",".","ph","and","get","2","months","free",".","Offer","valid","until","November","5th","2010","http:\/\/nblo.gs\/9IO4o"],"ner_tags":["D","N","R",",","V","N","P","^","^","^","&","V","$","N","A",",","N","A","P","^","$","$","U"]}
{"id":126,"tokens":["@IamMiklovin","if","they","worse","then","those","then","yea","..","trash","!!","need","a","bag","?","lol",".."],"ner_tags":["@","P","O","A","P","O","R","!",",","N",",","V","D","N",",","!",","]}
{"id":127,"tokens":["You","are","my","sunshine"],"ner_tags":["O","V","D","N"]}
{"id":128,"tokens":["Lamar"],"ner_tags":["^"]}
{"id":129,"tokens":["Mark","Ritchie's","fairness","praised","by","5","MN","papers",".","#MNpolitics"],"ner_tags":["^","Z","N","V","P","$","^","N",",","#"]}
{"id":130,"tokens":["I","bet","Kobe","Bryant","and","Phil","Jackson","are","laughing","their","asses","off","@MiamiHEAT","right","about","now","!"],"ner_tags":["O","V","^","^","&","^","^","V","V","D","N","P","@","R","P","R",","]}
{"id":131,"tokens":["Prescription","glasses","starting","at","$","6.95","!","Virtually","try","before","you","buy","with","the","Zenni","Frame","Fit","!","http:\/\/bit.ly\/ce5Nvw","(","Ad",")"],"ner_tags":["N","N","V","P","G","$",",","R","V","P","O","V","P","D","^","N","N",",","U",",","N",","]}
{"id":132,"tokens":["Today","is","the","last","day","of","Mars","'","visit","to","your","sign","and","you","coul","...","More","for","Scorpio","http:\/\/twittascope.com\/?sign=8"],"ner_tags":["N","V","D","A","N","P","^","G","N","P","D","N","&","O","V","~","A","P","^","U"]}
{"id":133,"tokens":["#oneofmyfollowers","need","dis","ham","so","dey","can","stop","cryin","....","I","DONT","THINK","U","WILL","DO","DAT","BUT","AYYEE","I","SAID","DAT","B4","N","......"],"ner_tags":["G","V","D","N","P","O","V","V","V",",","O","V","V","O","V","V","O","&","!","O","V","O","P","&",","]}
{"id":134,"tokens":["I","wana","be","like","LL","Cool","J","in","deliver","us","from","Eva","..","nigga","changed","jobs","every","year","tho"],"ner_tags":["O","V","V","P","^","^","^","P","V","O","P","^",",","N","V","N","D","N","R"]}
{"id":135,"tokens":["5",".","The","Mayonnaise","on","a","Hot","n","SPicy"],"ner_tags":["$",",","D","N","P","D","A","&","A"]}
{"id":136,"tokens":["@sexxystarr1009","haha","u","need","sushi",":)"],"ner_tags":["@","!","O","V","N","E"]}
{"id":137,"tokens":["Then","Brooks","."],"ner_tags":["R","^",","]}
{"id":138,"tokens":["Change","in","direction",".","New","goal",":","Reach","Friday","Alive",".","Caffeine",":","Off",".","Sleep",":","On"],"ner_tags":["N","P","N",",","A","N",",","V","^","A",",","N",",","A",",","N",",","A"]}
{"id":139,"tokens":["@DamCam_","i","am","not","lol"],"ner_tags":["@","O","V","R","!"]}
{"id":140,"tokens":["It's","days","like","this","where","I","literally","have","no","fucking","clue","why","I","came","back","to","school","."],"ner_tags":["L","N","P","O","R","O","R","V","D","A","N","R","O","V","R","P","N",","]}
{"id":141,"tokens":["\"","@BeautifulWish",":","Not","into","basketball",".....","So","who","am","I","suppose","to","cheer","for","?????\"","<","The","knicks","and","celtics","lol"],"ner_tags":[",","@","~","R","P","N",",","R","O","V","O","A","P","V","P",",","~","D","^","&","^","!"]}
{"id":142,"tokens":["@Wateva_Trevor","are","you","going","to","pure","again","friday","for","@Iam_Mr_Brown"],"ner_tags":["@","V","O","V","P","^","R","^","P","@"]}
{"id":143,"tokens":["RT","@Game_2_Gamer",":","Who","wants","some","Fable","3","codes","?","RT","@Game_2_Gamer","and","go","comment","http:\/\/game2gamer.com\/node\/88","for","a","chance","http:\/\/plixi",".","..."],"ner_tags":["~","@","~","O","V","D","^","$","N",",","~","@","&","V","V","U","P","D","N","U","U","~"]}
{"id":144,"tokens":["@JonVonDutch","jus","find","a","kute","bitch","in","da","klass","nd","go","smack","...","duh"],"ner_tags":["@","R","V","D","A","N","P","D","N","&","V","N",",","!"]}
{"id":145,"tokens":["My","back","is","killin","me","\u2639","..","Its","been","hurting","all","day","smh","...","I","need","a","good","massage"],"ner_tags":["D","N","V","V","O","E",",","L","V","V","D","N","G",",","O","V","D","A","N"]}
{"id":146,"tokens":["RT","@NotSoNiceville",":","I","keep","breaking","my","personal","vow","to","stop","reading","New","York","Post\/Boston","Herald","comments","."],"ner_tags":["~","@","~","O","V","V","D","A","N","P","V","V","^","^","G","^","N",","]}
{"id":147,"tokens":["dam","this","guy","next","to","me","is","looking","up","some","nasty","ass","shit","o__O"],"ner_tags":["!","D","N","P","P","O","V","V","T","D","A","N","N","E"]}
{"id":148,"tokens":["RT","@jaketapper",":","Fact",":","Any","politician","who","tells","you","any","major","issue","can","be","fixed","JUST","by","stopping","waste","fraud","+","abuse","is","either","ignorant","..."],"ner_tags":["~","@","~","N",",","D","N","O","V","O","D","A","N","V","V","V","R","P","V","N","N","&","N","V","D","A","~"]}
{"id":149,"tokens":["soo","where","did","@NickiMinaj","find","homie","in","her","video","..","cuz","he","is","jus","too","much","for","my","life","..","yumm",":)","...","btw","love","the","video"],"ner_tags":["P","O","V","@","V","N","P","D","N",",","P","O","V","R","R","A","P","D","N",",","!","E",",","G","V","D","N"]}
{"id":150,"tokens":["i","wish","i","can","read","minds",",","but","it's","sometimes","not","good","to","hear","bad","opinions","about","you","in","one","person's","mind",",","it","might","cause","war","!"],"ner_tags":["O","V","O","V","V","N",",","&","L","R","R","A","P","V","A","N","P","O","P","$","S","N",",","O","V","V","N",","]}
{"id":151,"tokens":["NEW","VIDEO",":","NICKI","MINAJ","\u2013","\u2018RIGHT","THROUGH","ME\u201d","http:\/\/bit.ly\/bbWmDK","#NickiMinaj"],"ner_tags":["A","N",",","^","^",",","R","P","O","U","#"]}
{"id":152,"tokens":["WOW","this","storm","in","NOVA","is","crazyyyyy","-","the","students","are","loving","the","running","in","the","rain","to","my","class",",","but","I","am","definitely","not","."],"ner_tags":["!","D","N","P","^","V","A",",","D","N","V","V","D","V","P","D","N","P","D","N",",","&","O","V","R","R",","]}
{"id":153,"tokens":["@inglewoodtip","email","comin","yo","way","in","15","mins"],"ner_tags":["@","N","V","D","N","P","$","N"]}
{"id":154,"tokens":["@Lou_dour_","my","job","ended","last","month",";","I","need","a","new","one"],"ner_tags":["@","D","N","V","A","N",",","O","V","D","A","$"]}
{"id":155,"tokens":["@iphoneworld","cool","check","out","my","shsh","blobs"],"ner_tags":["@","!","V","T","D","N","N"]}
{"id":156,"tokens":["@LogicDriven","did","they","send","Brandon","in","a","3rd","time","?"],"ner_tags":["@","V","O","V","^","T","D","A","N",","]}
{"id":157,"tokens":["RT","@Justin_Boots",":","Want","a","Fool's","Gold","poster","signed","by","Matthew","McConaughey","&","new","Justin","Boots","?","Tweet","#justin50","to","enter","!","Rules","here",":","http","..."],"ner_tags":["~","@","~","V","D","^","^","N","V","P","^","^","&","A","^","^",",","V","#","P","V",",","N","R",",","U","~"]}
{"id":158,"tokens":["@AriannyCeleste","hi","arianny-","it's","my","bday","today",",","can","I","get","a","shout","out","?"],"ner_tags":["@","!","^","L","D","N","N",",","V","O","V","D","N","N",","]}
{"id":159,"tokens":["I","liked","a","YouTube","video","--","Mini","Aqwmv","-","Welcome","to","the","club","http:\/\/youtu.be\/p4gRKvtYu48?a"],"ner_tags":["O","V","D","^","N",",","^","^",",","V","P","D","N","U"]}
{"id":160,"tokens":["I","miss","my","BFF","@aljamisonxo","..","love","youuu","!"],"ner_tags":["O","V","D","N","@",",","V","O",","]}
{"id":161,"tokens":["Purple","n","gold","everything"],"ner_tags":["A","&","A","N"]}
{"id":162,"tokens":["Ju5t","woke","up","........","got","da","blunt","ready","2","b","#FiredUp","5o","u","kno","it'5","#WakeNBake","time","!!"],"ner_tags":["R","V","T",",","V","D","N","A","P","V","V","P","O","V","L","V","N",","]}
{"id":163,"tokens":["Paul","Pierce's","back","hurts",".","So","that","means",",","he's","gonna","throw","down","a","triple","pump","tomahawk","dunk","later","in","the","4th","."],"ner_tags":["^","Z","N","V",",","P","O","V",",","L","V","V","T","D","A","N","N","N","R","P","D","N",","]}
{"id":164,"tokens":["At","three","square","to","make","backpacks","for","kids","with","#astdlv","!","Woot","!"],"ner_tags":["P","^","^","P","V","N","P","N","P","^",",","!",","]}
{"id":165,"tokens":["@missriahdavis","rite","lol"],"ner_tags":["@","!","!"]}
{"id":166,"tokens":["I","love","starting","my","day","off","right"],"ner_tags":["O","V","V","D","N","P","R"]}
{"id":167,"tokens":["New","blog","post",":","Today",":)","http:\/\/www.camwithher.com\/blog\/2010\/10\/27\/today-10\/"],"ner_tags":["A","N","N",",","N","E","U"]}
{"id":168,"tokens":["\u201c","@joemo11",":","@SlapASmut","so","what","costume","is","your","sexy","ass","jumping","into","this","weekend","?","i","want","to","see","pics","=)","\u201d","<---","princess","jasmine","!","FB","duh","."],"ner_tags":[",","@","~","@","P","O","N","V","D","A","N","V","P","D","N",",","O","V","P","V","N","E",",","~","^","^",",","^","!",","]}
{"id":169,"tokens":["Gutted",":","Hillary","Duff","lost","a","tooth",".","On","her","wedding","day","!","-","http:\/\/newzfor.me\/?9er3"],"ner_tags":["V",",","^","^","V","D","N",",","P","D","N","N",",",",","U"]}
{"id":170,"tokens":["Oh","..","For","those","that","are","confused","..","The","rice","absorbs","the","water","from","ur","phone","..","like","drys","it","out","..","don't","ask","how","or","why","just","know","it","does","lol"],"ner_tags":["!",",","P","O","P","V","A",",","D","N","V","D","N","P","D","N",",","R","V","O","P",",","V","V","R","&","R","R","V","O","V","!"]}
{"id":171,"tokens":["Joe","Stanganelli","-","C-Suiters","Out","of","Touch","With","Social","Media","http:\/\/www.internetevolution.com\/author.asp?section_id=1087"],"ner_tags":["^","^",",","N","P","P","N","P","A","N","U"]}
{"id":172,"tokens":["\u201c","@StonieMONSTER",":","Now","following","@Dee_DeLaGhetto","\u201d","lmao","are","you","high","?"],"ner_tags":[",","@",",","R","V","@",",","!","V","O","A",","]}
{"id":173,"tokens":["@dwright1906","thanks"],"ner_tags":["@","N"]}
{"id":174,"tokens":["Bommm","Dia","!"],"ner_tags":["!","!",","]}
{"id":175,"tokens":["@contraddiction","did","it","really","snow","?","You","can't","blame","that","on","me","...","I","didn't","even","do","anything","while","I","was","in","Utah","."],"ner_tags":["@","V","O","R","V",",","O","V","V","O","P","O",",","O","V","R","V","N","P","O","V","P","^",","]}
{"id":176,"tokens":["13","hour","day",".","Fin","."],"ner_tags":["$","N","N",",","G",","]}
{"id":177,"tokens":["Arrests","Seen","as","Part","of","a","Wider","Plot","http:\/\/t.co\/Qcq7TxT","via","@AddThis","#teaparty","#tcot"],"ner_tags":["N","V","P","N","P","D","A","N","U","P","@","#","#"]}
{"id":178,"tokens":["Anything","You","Want","-","Mary","J",".","Blige","ft","Busta","Rhymes","&","Gyptian","{","New","Single","!!","}",":","http:\/\/ping.fm\/rFR1b","(","PLS","RT","!!",")","[","OYE","!!","]","@maryjblige","@bussabuss"],"ner_tags":["N","O","V",",","^","^",",","^","V","^","^","&","^",",","A","N",",",",",",","U",",","V","V",",",",",",","!",",",",","@","@"]}
{"id":179,"tokens":["RT","@CatholicNewsSvc",":","RT","@catholic_sf",":","Lawyer",":","Supreme","Court","should","hear","SF","Catholics\u2019","religious","freedom","case","http:\/\/bit.ly\/bDqaqR","#CNS","..."],"ner_tags":["~","@","~","~","@","~","N",",","^","^","V","V","^","Z","A","N","N","U","#","~"]}
{"id":180,"tokens":["@angiemonsterboo","you","don't","question","that",".","ever","."],"ner_tags":["@","O","V","V","O",",","R",","]}
{"id":181,"tokens":["ROCKY","HORROR","#GLEE","!!!"],"ner_tags":["^","^","^",","]}
{"id":182,"tokens":["I'm","at","Barnes","&","Noble","(","6501","N",".","Grape","Road",",","Suite","1200",",","Mishawaka)",".","http:\/\/4sq.com\/4O7ScT"],"ner_tags":["L","P","^","&","^",",","$","^",",","^","^",",","^","$",",","^",",","U"]}
{"id":183,"tokens":["RT","@torontoescorts","New","#sexy","comment","about",":","Rape","Fantasy","http:\/\/tinyurl.com\/296pwsv"],"ner_tags":["~","@","A","A","V","P",",","N","N","U"]}
{"id":184,"tokens":["Nike",",","horrible","ad","!","Very","smug","."],"ner_tags":["^",",","A","N",",","R","A",","]}
{"id":185,"tokens":["RT","@ganjaboy74",":","RT","@RedBikini4u",":","#Shoutout","#Follow",">>>","@CremedelamerES","@Janessabombtitz","@PaigeRyanHouses","@SoulPudding","(","cont",")","ht","..."],"ner_tags":["~","@","~","~","@","~","#","#","G","@","@","@","@",",","~",",","U","~"]}
{"id":186,"tokens":["Photo",":","http:\/\/tumblr.com\/xwjnd6nzd"],"ner_tags":["N",",","U"]}
{"id":187,"tokens":["RT","@JAEMILLZ100",":","@DreOnSum10","who","u","like","den","G"],"ner_tags":["~","@","~","@","O","O","V","R","^"]}
{"id":188,"tokens":["RT","@SeaShepherd",":","Massacre","at","the","Cove","-","http:\/\/bit.ly\/9kU2LT","#seashepherd","#thecove"],"ner_tags":["~","@","~","N","P","D","^",",","U","#","#"]}
{"id":189,"tokens":["i","think","its","wrong","people","judge","others","by","there","religion","...","it","gets","on","my","nerves",".."],"ner_tags":["O","V","L","A","N","V","N","P","D","N",",","O","V","P","D","N",","]}
{"id":190,"tokens":["Let's","play","Words","With","Friends",".","My","username","is","'","Spreyn0","'.","http:\/\/bit.ly\/2qbpQ"],"ner_tags":["L","V","N","P","N",",","D","N","V",",","^",",","U"]}
{"id":191,"tokens":["RT","@ShawolsSHINee",":","Minho","is","so","omg","<3","http:\/\/twitpic.com\/318jei"],"ner_tags":["~","@","~","^","V","R","!","E","U"]}
{"id":192,"tokens":["Spending","the","day","withhh","mommma","!"],"ner_tags":["V","D","N","P","N",","]}
{"id":193,"tokens":["#np","Min","Kyung","Hoon","-","IT","HURTS","BECAUSE","IT'S","LOVE","(","Y",")"],"ner_tags":["#","^","^","^",",","O","V","P","L","N","E","E","E"]}
{"id":194,"tokens":["@Gunservatively","obozo","will","go","nuts","when","PA","elects","a","Republican","Governor","next","Tue",".","Can","you","say","redistricting","?"],"ner_tags":["@","^","V","V","A","R","^","V","D","A","N","P","^",",","V","O","V","V",","]}
{"id":195,"tokens":["RT","@MarthaStewart",":","I","was","allowed","to","touch","a","live","pair","of","pig's","lungs","which","are","kept","for","a","day","at","room","temp-new","tech","http:\/\/yfrog.com\/8dvz0j"],"ner_tags":["~","@","~","O","V","V","P","V","D","A","N","P","S","N","D","V","V","P","D","N","P","N","G","N","U"]}
{"id":196,"tokens":["Hi","there","!","Do","you","have","time","challenges","?","Most","of","us","do","...","so","let","me","know","-","I'd","love","to","help","!","DM","me","or","send","an","@","reply","&","let's","get","started","!"],"ner_tags":["!","R",",","V","O","V","N","N",",","A","P","O","V",",","P","V","O","V",",","L","V","P","V",",","V","O","&","V","D","N","N","&","L","V","V",","]}
{"id":197,"tokens":["UN","Votes","Against","U.S.","Embargo","on","Cuba","for","19th","Year","http:\/\/r.einnews.com\/kdTqUB"],"ner_tags":["^","V","P","^","N","P","^","P","A","N","U"]}
{"id":198,"tokens":["Everytime","i","send","a","text","message","i","said","''","leggo","''"],"ner_tags":["R","O","V","D","N","N","O","V",",","V",","]}
{"id":199,"tokens":["@TakeMeDownCHRIS","LMFAO","!!!","u","a","foo","i","swear"],"ner_tags":["@","!",",","O","D","N","O","V"]}
{"id":200,"tokens":["@iGetReTaRdCheKz","I","vote","girl","!"],"ner_tags":["@","O","V","N",","]}
{"id":201,"tokens":["@LaBraziliana","LMAOOO","TYPO"],"ner_tags":["@","!","N"]}
{"id":202,"tokens":["Smh","\ue107RT","@ENewsNow","VIDEO",":","Kat","Von","D","Engaged","to","Jesse","James","?","http:\/\/eonli.ne\/b0b1Fe"],"ner_tags":["G","~","@","N","~","^","^","^","V","P","^","^",",","U"]}
{"id":203,"tokens":["@BennsWorld","awwwwwwwwwwwwwwwwwwwww","\ue413"],"ner_tags":["@","!","G"]}
{"id":204,"tokens":["@ShellannaJ","oo","iight","so","basically","its","worth","it","?","fuck","it","!","how","long","did","it","last"],"ner_tags":["@","!","!","P","R","L","A","T",",","V","O",",","R","A","V","O","A"]}
{"id":205,"tokens":["@fuelevandown","but","why","can't","I","be","one","I","want","?","Lol","instead","its","a","crap","load","of","douches"],"ner_tags":["@","&","R","V","O","V","$","O","V",",","!","R","L","D","N","N","P","N"]}
{"id":206,"tokens":["@_SoDamnGood_","why","thank","you","..",":D","you","bastard","."],"ner_tags":["@","!","V","O",",","E","O","N",","]}
{"id":207,"tokens":["@patronuska","it","was","nothing","new",".","It","was","funny","reading","about","the","guy","who","took","the","pic","though","lol",".","I","wonder","if","the","pic","made","it","online","."],"ner_tags":["@","O","V","N","A",",","O","V","A","V","P","D","N","O","V","D","N","P","!",",","O","V","P","D","N","V","O","A",","]}
{"id":208,"tokens":["Fmlllll"],"ner_tags":["!"]}
{"id":209,"tokens":["Sucks","for","miley","!!!","Her","parents","filed","a","divorce"],"ner_tags":["V","P","^",",","D","N","V","D","N"]}
{"id":210,"tokens":["Lamar","Gonna","get","some","tonite","huh",".","he","got","a","ring",",","and","the","win",".","So","he","might","as","well","!!"],"ner_tags":["^","V","V","O","N","!",",","O","V","D","N",",","&","D","N",",","P","O","V","R","R",","]}
{"id":211,"tokens":["Hey","there","pretty","version","of","me",".",".",".:","http:\/\/yearbook.com\/a\/pe81j"],"ner_tags":["!","!","A","N","P","O",",",",",",","U"]}
{"id":212,"tokens":["It's","good","to","be","responsible","but","I","hate","that","I'm","TOOO","responsible",".","I'm","on","math","tutorings","and","I","don't","even","have","a","matt","test","tomorrow"],"ner_tags":["L","A","P","V","A","&","O","V","P","L","R","A",",","L","P","N","N","&","O","V","R","V","D","N","N","N"]}
{"id":213,"tokens":["Never","realized","how","very","attractive","@jameyjasta","is",".","Probably","helped","that","he","finally","got","rid","of","all","that","facial","hair",";p"],"ner_tags":["R","V","R","R","A","@","V",",","R","V","P","O","R","V","A","P","X","D","A","N","E"]}
{"id":214,"tokens":["RT","@unjazmynlike",":","i","spend","more","time","at","this","table","than","in","my","own","apartment","."],"ner_tags":["~","@","~","O","V","A","N","P","D","N","P","P","D","A","N",","]}
{"id":215,"tokens":["@olfa_xoxo","Hi","hi","!!!","I'm","good","...","what","about","u","?"],"ner_tags":["@","!","!",",","L","A",",","O","P","O",","]}
{"id":216,"tokens":["ya","vengoo","!",":D"],"ner_tags":["!","^",",","E"]}
{"id":217,"tokens":["@iRetroBaby","http:\/\/studiolinked.com\/fuzzyslippers"],"ner_tags":["@","U"]}
{"id":218,"tokens":["@ddemby5","yea","they","cancel","out","and","durant","fuck","around","and","have","40",",","they","have","no","answer","for","him","nobody","does","..."],"ner_tags":["@","!","O","V","T","&","^","V","T","&","V","$",",","O","V","D","N","P","O","N","V",","]}
{"id":219,"tokens":["@tanyakeith","Few","weeks","ago","someone","told","me","that","La","Tapatia","has","'","em","but","I","don't","know","that","firsthand",".","http:\/\/ow.ly\/302YZ"],"ner_tags":["@","A","N","P","N","V","O","P","^","^","V",",","O","&","O","V","V","O","R",",","U"]}
{"id":220,"tokens":["@Anthony1626","lol","my","titties","was","all","out","!!"],"ner_tags":["@","!","D","N","V","R","A",","]}
{"id":221,"tokens":["@jenga5","@jadorejenell","I'm","pretty","sure","the","weather","is","like","this","b\/c","God","loves","me","and","I","asked","for","warmth","my","b-day","month",".","Gracias"],"ner_tags":["@","@","L","R","A","D","N","V","P","O","P","^","V","O","&","O","V","P","N","D","N","N",",","!"]}
{"id":222,"tokens":["Damn","this","shit","gets","old","."],"ner_tags":["!","D","N","V","A",","]}
{"id":223,"tokens":["@Raypman","YO","WHERE","THE","HEAT","AT","?","I","SEE","ICE","COLD","SHOOTING"],"ner_tags":["@","!","O","D","^","P",",","O","V","A","A","N"]}
{"id":224,"tokens":["Shout","Out","to","Everybody","falling","asleep","tryna","send","Freaky","Text","Messages","back","N","forth","."],"ner_tags":["V","P","P","N","V","A","V","V","A","N","N","R","&","R",","]}
{"id":225,"tokens":["@MarrDrew","Respect","to","be","respected",".","You","receive","only","as","much","as","u","give",".","Change","your","ways","&","theyll","change","their","views",".","#gospelaccordingtolaila"],"ner_tags":["@","V","P","V","V",",","O","V","R","R","A","P","O","V",",","V","D","N","&","L","V","D","N",",","#"]}
{"id":226,"tokens":["\"","Pick","up","the","phone","young","man","stop","textin","'\""],"ner_tags":[",","V","T","D","N","A","N","V","V",","]}
{"id":227,"tokens":["#Celtics","looking","pretty","beasty","this","yr","I'm","predicting","a","championship","run",".","Ps","my","nigga","@KingJames","still","tha","man","."],"ner_tags":["^","V","R","A","D","N","L","V","D","N","N",",","G","D","N","@","R","D","N",","]}
{"id":228,"tokens":["RT","@grasmeyer",":","\"","Because","our","software","is","worth","the","price","I","charge",".\"","Great","perspective","on","the","Mac","App","Store","by","@kevinhoctor","http:\/\/bit.ly\/","..."],"ner_tags":["~","@","~",",","P","D","N","V","A","D","N","O","V",",","A","N","P","D","^","N","N","P","@","U","~"]}
{"id":229,"tokens":["RT","@Reacey23",":","I","see","u","Bron","...","31","right","quick"],"ner_tags":["~","@","~","O","V","O","^",",","$","R","A"]}
{"id":230,"tokens":["I","don't","know","why","but","I","feel","crummy",".","Trying","to","lift","spirits","with","moonlit","walk","."],"ner_tags":["O","V","V","R","&","O","V","A",",","V","P","V","N","P","A","N",","]}
{"id":231,"tokens":["RT","@MrWiredUpOhBoy",":","@dj_hollygrove","dang","...","@trpmusicgroup","riding","with","you","...","Headed","to","the","Kappa","with","4","Swangas","and","Adaptors","....","lol"],"ner_tags":["~","@","~","@","!",",","@","V","P","O",",","V","P","D","^","P","$","N","&","N",",","!"]}
{"id":232,"tokens":["RT","@jonathanhsinger",":","Did","Barack","Obama","signal","that","he","will","change","his","stance","on","marriage","equality","?","http:\/\/j.mp\/bgSJZh","(","via","@adammc123",")"],"ner_tags":["~","@","~","V","^","^","V","P","O","V","V","D","N","P","N","N",",","U",",","P","@",","]}
{"id":233,"tokens":["Its","hard","for","me","when","I","have","too","ask",",","is","it","really","that","dull","!?"],"ner_tags":["L","A","P","O","R","O","V","P","V",",","V","O","R","R","A",","]}
{"id":234,"tokens":["#NBA",":)"],"ner_tags":["#","E"]}
{"id":235,"tokens":["As","bad","as","the","heat","played","!","&","as","well","as","the","celtics","played","...","Look","at","the","score","!","Scary","huh","?"],"ner_tags":["R","A","P","D","^","V",",","&","R","R","P","D","^","V",",","V","P","D","N",",","A","!",","]}
{"id":236,"tokens":["@NoraDiva1","he's","in","heaven","!"],"ner_tags":["@","L","P","^",","]}
{"id":237,"tokens":["RT","@joejonas",":","#prayforindonesia","so","sad"],"ner_tags":["~","@","~","#","R","A"]}
{"id":238,"tokens":["Years","of","pounding","...","RT","@iPEPPAH","@iMekele","you'll","be","ok",".","I","didn't","feel","a","thing"],"ner_tags":["N","P","V",",","~","@","@","L","V","A",",","O","V","V","D","N"]}
{"id":239,"tokens":["LOL","!","RT","@DOMiNiQUESSENCE","i","NEVER","pay","for","weed","#whodoesthat"],"ner_tags":["!",",","~","@","O","R","V","P","N","#"]}
{"id":240,"tokens":["1895","O","VF20","ANACS","SILVER","Morgan","Dollar","NEW","ORLEANS","COIN",":","US","$","465.00","(","0","Bid",")","End","Date",":","Tuesday\u2026","http:\/\/bit.ly\/kKth4"],"ner_tags":["$","^","^","^","A","^","N","^","^","N",",","^","G","$",",","$","N",",","N","N",",","^","U"]}
{"id":241,"tokens":["Gumdrop","Gingerbread","Man","Glitter","Gift","Tags","-","Set","of","12",":","$","4.25","Run",",","run","just","as","fast","as","you","can","!","You","can't","catch","me",",","...","http:\/\/bit.ly\/aoU1zg"],"ner_tags":["N","N","N","N","N","N",",","N","P","$",",","G","$","V",",","V","R","R","A","P","O","V",",","O","V","V","O",",","~","U"]}
{"id":242,"tokens":["Hi","Ajit",",","Following","is","sample","code","t","o","achive","the","same",".","Put","all","your","jquery","code","in","a","seprate","javascript","file","...","http:\/\/bit.ly\/97OWFn","#Answers"],"ner_tags":["!","^",",","N","V","N","N","P","P","V","D","A",",","V","D","D","^","N","P","D","A","^","N","~","U","#"]}
{"id":243,"tokens":["Odd","weather","today",".","One","minutes","it's","raining","another","I've","got","the","sun","in","my","eyes","."],"ner_tags":["A","N","N",",","$","N","L","V","D","L","V","D","N","P","D","N",","]}
{"id":244,"tokens":["Put","me","n","e","where","on","gods","green","earth","...","I'll","triple","my","worth"],"ner_tags":["V","O","R","R","R","P","Z","A","N",",","L","V","D","N"]}
{"id":245,"tokens":["business","-","Twitter","Search",":","\u00a0Senior","Technical","Business","Analyst","(","10093",")","Titusville",",","NJ","http:\/\/openings.cmi.com\/opening","...","http:\/\/ow.ly\/19EMz3"],"ner_tags":["N",",","^","N",",","A","N","N","N",",","$",",","^",",","^","U","~","U"]}
{"id":246,"tokens":["facetime","on","mac","...","yay"],"ner_tags":["^","P","^",",","!"]}
{"id":247,"tokens":["cnt","wait","to","sleep"],"ner_tags":["V","V","P","V"]}
{"id":248,"tokens":["@Kandi_CoatdKRI","yu","really","was"],"ner_tags":["@","O","R","V"]}
{"id":249,"tokens":["pkollar",":","@grumbine","Really","?","How","soon","?","I","didn't","realize","!","[","Phil","Kollar","@grumbine","Really","?","How","soon","?","I","didn't","realize","!","]","http:\/\/bit.ly\/9g4zlQ"],"ner_tags":["^",",","@","R",",","R","R",",","O","V","V",",",",","^","^","@","R",",","R","R",",","O","V","V",",",",","U"]}
{"id":250,"tokens":["|","<3","Him|","Lol","He","Puts","A","Smile","On","Muh","Face","Er","Day","!!","*","=]","Ihs","Amazing","How","Sum","Ppl","Juhz","Have","Dhat","Effect","On","Yhur","Life",".."],"ner_tags":[",","V","O","!","O","V","D","N","P","D","N","D","N",",",",","E","L","A","R","D","N","R","V","D","N","P","D","N",","]}
{"id":251,"tokens":["Have","I","really","given","Jesus","control","over","my","life","decisions","or","do","I","only","consult","Him","on","the","things","I","know","He","agrees","with","me","on","?"],"ner_tags":["V","O","R","V","^","N","P","D","N","N","&","V","O","R","V","O","P","D","N","O","V","O","V","P","O","P",","]}
{"id":252,"tokens":["@HuggableJuly","*","happy","tears","*","you're","one","incredible","son","I","hope","you","know"],"ner_tags":["@",",","A","N",",","L","$","A","N","O","V","O","V"]}
{"id":253,"tokens":["And","tall"],"ner_tags":["&","A"]}
{"id":254,"tokens":["HATER","ALERT","HATER","ALERT","------>","@abddigani","get","off","the","lakers","tip","#plznthanku","(^_^)"],"ner_tags":["N","N","N","N","G","@","V","T","D","Z","N","#","E"]}
{"id":255,"tokens":["@tamir103","I","don't","think","to","sign","up",".","How","crowded","does","Wed","spin","get","?"],"ner_tags":["@","O","V","V","P","V","T",",","R","A","V","^","N","V",","]}
{"id":256,"tokens":["@Luv_KayBee","happy","birthday","miss"],"ner_tags":["@","A","N","N"]}
{"id":257,"tokens":["@naddycat","Ahh",",","that's","right",".",".",".","You're","not","a","fan","of","the","soft","sciences",".","You","got","this",".","Don't","stress",".","Get","some","sleep","and","eat","before","your","exam","."],"ner_tags":["@","!",",","L","A",",",",",",","L","R","D","N","P","D","A","N",",","O","V","O",",","V","V",",","V","D","N","&","V","P","D","N",","]}
{"id":258,"tokens":["Obama","Drops","'","Creator","'","From","Declaration","Again","http:\/\/t.co\/wHyEWm1","via","@AddThis","#antichristian","#endtimes","#fb"],"ner_tags":["^","V",",","N",",","P","N","R","U","P","@","#","#","#"]}
{"id":259,"tokens":["@J_Cofield_TIC","nobody","lol",":","0",")"],"ner_tags":["@","N","!","E","E","E"]}
{"id":260,"tokens":["Getting","ready","for","Saturday","night",",","have","to","start","getting","into","character","now","!","http:\/\/www.wikihow.com\/Be-a-Flapper-Girl"],"ner_tags":["V","A","P","^","N",",","V","P","V","V","P","N","R",",","U"]}
{"id":261,"tokens":["@ShowOut_Havy",":","\u201c","@ShowOut_Malc",":","Southside","they","outside",".","On","they","knees","with","they","mouth","wide\u201d","(","\/","gzz","must","be","drunk","for","sayin","dat","shyt","realrap"],"ner_tags":["@","~",",","@",",","^","O","R",",","P","D","N","P","D","N","A",",",",","G","V","V","A","P","V","D","N","G"]}
{"id":262,"tokens":["Beat","Fable","3","with","flying","colors",".","Now","to","be","a","bit","more","extreme"],"ner_tags":["V","^","$","P","V","N",",","R","P","V","D","A","R","A"]}
{"id":263,"tokens":["@NICKIMINAJ","FOlloW","Me","Nicki","!!!!!!"],"ner_tags":["@","V","O","^",","]}
{"id":264,"tokens":["im","hott","as","hell","...","wooo"],"ner_tags":["L","A","P","N",",","!"]}
{"id":265,"tokens":["@jenjen_tx","lol","good","!","nothing","wrong","with","that",":)"],"ner_tags":["@","!","A",",","N","A","P","O","E"]}
{"id":266,"tokens":["Columbus","'","airport","has","gatekeeper-free","wifi","&","tons","of","electric","outlets",".","Cincinnati's","charges","for","both",".","Surprised","they","don't","have","pay","toilets","."],"ner_tags":["^","G","N","V","A","N","&","N","P","N","N",",","Z","V","P","O",",","V","O","V","V","N","N",","]}
{"id":267,"tokens":["Its","either","your","on","my","team","or","your","not","!"],"ner_tags":["L","&","L","P","D","N","&","L","R",","]}
{"id":268,"tokens":["@Mr_DaiN","who's","the","game","??"],"ner_tags":["@","L","D","N",","]}
{"id":269,"tokens":["#uzeeeit","RT","@EarllyMac","Why","would","i","want","to","put","a","location","on","my","tweets","?"],"ner_tags":["#","~","@","R","V","O","V","P","V","D","N","P","D","N",","]}
{"id":270,"tokens":["(","SAN","FRANCISCO",")","Departure","of","PERALTA","at","17:27"],"ner_tags":[",","^","^",",","N","P","^","P","$"]}
{"id":271,"tokens":["RT","@ChelseaxMaraj",":","When","I","die","hope","I","live","in","the","sky","."],"ner_tags":["~","@","~","R","O","V","V","O","V","P","D","N",","]}
{"id":272,"tokens":["@woogis","Move","down","here",".","It's","doing","absolutely","nothing",".","We","barely","got","rain","."],"ner_tags":["@","V","R","R",",","L","V","R","N",",","O","R","V","N",","]}
{"id":273,"tokens":["@MarciandreA","gud","loc","!"],"ner_tags":["@","A","N",","]}
{"id":274,"tokens":["RT","@BadASSQuin","This","fantasia","bowl","hair","cut","that","supposed","to","be","in","style","KILL","IT","!!","#fail","<<","PLZ","!!","lol"],"ner_tags":["~","@","D","^","N","N","N","P","A","P","V","P","N","V","O",",","#","~","V",",","!"]}
{"id":275,"tokens":["i'm","so","hungry"],"ner_tags":["L","R","A"]}
{"id":276,"tokens":["My","twitter","is","messed","up","!"],"ner_tags":["D","^","V","V","T",","]}
{"id":277,"tokens":["#LB","#news",":","Silverado","Park","Pool","Swim","Lessons","http:\/\/bit.ly\/bePWkJ"],"ner_tags":["#","#",",","^","^","N","N","N","U"]}
{"id":278,"tokens":["@WHOATLJONES","Soon","!","We","talk","about","this","every","other","day","!"],"ner_tags":["@","R",",","O","V","P","O","D","A","N",","]}
{"id":279,"tokens":["@SilverFear","Have","you","tried","installing","it","on","your","hard","drive","yet","?","^DJ"],"ner_tags":["@","V","O","V","V","O","P","D","N","N","R",",","G"]}
{"id":280,"tokens":["YOOOO","IF","YOU","A","KOBE","FAN","TWEET","ME",",","WHAT'S","#LAKERIN"],"ner_tags":["!","P","O","D","^","N","V","O",",","L","V"]}
{"id":281,"tokens":["@CapreeK","Actually","has","little","to","do","with","time",".","Most","are","happy","floating","orders","needing","to","be","done","that","day","and","spread","out","so","I","can","see",".",":)"],"ner_tags":["@","R","V","A","P","V","P","N",",","A","V","A","V","N","V","P","V","V","D","N","&","V","T","P","O","V","V",",","E"]}
{"id":282,"tokens":["\"","Hotel","Rwanda","\"","hero","implicated","with","Ingabire","-","prosecutor",":","Actress","Angelina","Jolie","poses","with","Paul","Rusesabagina","(","R)","...","http:\/\/bit.ly\/cL4WwH"],"ner_tags":[",","^","^",",","N","V","P","^",",","N",",","N","^","^","V","P","^","^",",","A","~","U"]}
{"id":283,"tokens":["damn","i","gotta","eat","somethin",".....","all","I","had","to","eat","is","SNICKERS","and","a","Lemonade","#smh","damn","ya","boi","on","that","#undergradBUDGET"],"ner_tags":["!","O","V","V","N",",","D","O","V","P","V","V","^","&","D","N","G","!","!","N","P","D","N"]}
{"id":284,"tokens":["Wow","!!!!!!!","Mathew","Morrison","shirtless","was","HOT","!"],"ner_tags":["!",",","^","^","A","V","A",","]}
{"id":285,"tokens":["o____O"],"ner_tags":["E"]}
{"id":286,"tokens":["Yo",",","it's","Thursday",",","28th","October",".","Morning",",","my","country","!","Morning",",","Life","!","Morning",",","great","peopLe","!",":D"],"ner_tags":["!",",","L","^",",","$","^",",","N",",","D","N",",","N",",","N",",","N",",","A","N",",","E"]}
{"id":287,"tokens":["Being","told","you","interview","well","is","one","of","the","best","compliments","."],"ner_tags":["V","V","O","V","R","V","$","P","D","A","N",","]}
{"id":288,"tokens":["Vintage","Venesha","80%","Angora","Sweater",",","Sage","Green",",","Size","Small","http:\/\/tinyurl.com\/262adme","at","Bonanza","."],"ner_tags":["A","^","$","A","N",",","R","A",",","N","A","U","P","^",","]}
{"id":289,"tokens":["Yooo","wtf","u","been","at","!!","Txt","me","!!","RT","@ULuvBrittLin",":","It's","show","off","Tuesday","cuz","no","work","Wednesday","for","me","...","Hehehehehe",";-)"],"ner_tags":["!","!","O","V","P",",","V","O",",","~","@","~","L","N","N","^","P","D","N","^","P","O",",","!","E"]}
{"id":290,"tokens":["I'm","no","meteorologist",",","but","I'm","pretty","sure","its","raining","bitches","!"],"ner_tags":["L","D","N",",","&","L","R","A","L","V","N",","]}
{"id":291,"tokens":["Gettin","it","in"],"ner_tags":["V","O","T"]}
{"id":292,"tokens":["Everytime","i","watch","da","Celtics","game","or","da","Lakers","game",",","it","reminds","me","back","at","da","Hoover","games",".","EVERYBODY",",","wud","Cheer","for","da","Cardinals","!",":D"],"ner_tags":["R","O","V","D","^","N","&","D","^","N",",","O","V","O","R","P","D","^","N",",","N",",","V","V","P","D","^",",","E"]}
{"id":293,"tokens":["@RaqVillaYFT","Raq","Stacks","lol","."],"ner_tags":["@","^","^","!",","]}
{"id":294,"tokens":["RT","@yelyahwilliams",":","Still","bumpin","'","@taylorswift13","#SpeakNow","in","my","car","!","Probably","won't","be","changing","records","anytime","soon","."],"ner_tags":["~","@","~","R","V",",","@","^","P","D","N",",","R","V","V","V","N","R","R",","]}
{"id":295,"tokens":["Shannon","better","start","claiming","chris","as","his","lil","bro"],"ner_tags":["^","R","V","V","^","P","D","A","N"]}
{"id":296,"tokens":["He","Neva","Tells","NO","....","i","HiT","it","&","theN","i","GO"],"ner_tags":["O","R","V","!",",","O","V","O","&","R","O","V"]}
{"id":297,"tokens":["Arabian's","timey",".","Whfft","I","wish","I","born","to","be","an","arabian",".","Like","@fardeyl","LOLOLOLOL",":","3"],"ner_tags":["Z","N",",","!","O","V","O","V","P","V","D","^",",","P","@","!","E","E"]}
{"id":298,"tokens":["It","Gets","Better","...","Chief","Chick","Chatter","http:\/\/t.co\/tl2HeqU"],"ner_tags":["O","V","R",",","^","^","^","U"]}
{"id":299,"tokens":["everyones","talking","bout","the","celtics","&","I'm","sitting","here","lost",".","luckily","I","don't","care","much","for","basketball","."],"ner_tags":["L","V","P","D","^","&","L","V","R","A",",","R","O","V","V","A","P","N",","]}
{"id":300,"tokens":["Goodmorning","@Princessnish","@Clotta22","@T2Tay75","@Tab_28","@Princezzcutz","@BeautyIsE","@MissCoxNorris","@SummerzGRT","@AtsLady","@SpaceTruckaR"],"ner_tags":["!","@","@","@","@","@","@","@","@","@","@"]}
{"id":301,"tokens":["@kriStenALesE09","she","uglyy","aha","."],"ner_tags":["@","O","A","!",","]}
{"id":302,"tokens":["every","things","cange",".."],"ner_tags":["D","N","V",","]}
{"id":303,"tokens":["thx","to","@ComediaaGoGo","check","out","http:\/\/www.youtube.com\/watch?v=IKqYXxl_0Rk","\"","Slumber","Sleepover","Lan","Party","Massacre","\"","trailer"],"ner_tags":["N","P","@","V","T","U",",","N","N","N","N","N",",","N"]}
{"id":304,"tokens":["a","girl","from","last","night","txted","me","2day","wonderin","where","her","keys","were",".","it","took","me","2","replies","on","my","part","til","i","realized","i","didn't","want","2","talk","2","her"],"ner_tags":["D","N","P","A","N","V","O","R","V","R","D","N","V",",","O","V","O","$","N","P","D","N","P","O","V","O","V","V","P","V","P","O"]}
{"id":305,"tokens":["It's","snowy","in","SLC",",","but","still","warm","+","sunny","down","south\u2014The","Inn","at","Entrada","offers","ceremonies","with","red","rock","views",":","http:\/\/bit.ly\/9IqEM8","#WiW","#WW"],"ner_tags":["L","A","P","^",",","&","R","A","&","A","P","G","^","P","^","V","N","P","A","N","N","G","U","#","#"]}
{"id":306,"tokens":["Anyone","want","to","video","chat","?","Join","my","chatroom","with","20","other","people","http:\/\/tinychat.com\/THEJOKers"],"ner_tags":["N","V","P","N","V",",","V","D","N","P","$","A","N","U"]}
{"id":307,"tokens":["Got","an","hour","sleep",".","Tired","as","hell",".","Stuck","in","the","only","McDs","drive","thru","for","30","miles","...","fml","."],"ner_tags":["V","D","N","N",",","V","P","N",",","V","P","D","A","^","N","N","P","$","N",",","!",","]}
{"id":308,"tokens":["Surely","our","Messiah","will","make","all","things","new","!"],"ner_tags":["R","D","^","V","V","D","N","A",","]}
{"id":309,"tokens":["@SmashHansen","I","don't","dislike","Frank's","Superman",".","I'm","just","tired","of","it","."],"ner_tags":["@","O","V","V","Z","^",",","L","R","A","P","O",","]}
{"id":310,"tokens":["RT","@DamnItsTrue",":","Sometimes","the","person","I","want","most","is","the","person","I'm","better","off","without",".","#DamnItsTrue"],"ner_tags":["~","@","~","R","D","N","O","V","R","V","D","N","L","A","R","P",",","#"]}
{"id":311,"tokens":["Brb",".","Gotta","takke","some","more","things","off","mii","phone","..."],"ner_tags":["!",",","V","V","D","A","N","P","D","N",","]}
{"id":312,"tokens":["@Yo2PrettySWEET","lol","i","guesssss"],"ner_tags":["@","!","O","V"]}
{"id":313,"tokens":["You're","inconsiderate",",","a","bitch",",","nosy",",","and","I","don't","have","time","for","you","."],"ner_tags":["L","A",",","D","N",",","A",",","&","O","V","V","N","P","O",","]}
{"id":314,"tokens":["@docevans23","lmao","!","I","couldn't","resist","!","Sorry","...","lol"],"ner_tags":["@","!",",","O","V","V",",","V",",","!"]}
{"id":315,"tokens":["RT","@MARLONLWAYANS",":","Somebody","tell","sasha","vulecic","to","finish","his","damn","rosetta","stone","english","cds"],"ner_tags":["~","@","~","N","V","^","^","P","V","D","A","^","^","^","N"]}
{"id":316,"tokens":["RT","@KelliMonster",":","Sear's","Christmas","commercial","?","What","?","Can","we","have","Halloween","and","Thanksgiving","first","please","?"],"ner_tags":["~","@","~","Z","^","N",",","O",",","V","O","V","^","&","^","A","V",","]}
{"id":317,"tokens":["My","mom","thinks","Ron","Artest","look","like","a","convict","lmao","this","lady"],"ner_tags":["D","N","V","^","^","V","P","D","N","!","D","N"]}
{"id":318,"tokens":["*","Silence*","...","\"","I","love","you","more","than","all","the","fishes","in","the","sea","...","as","there's","alot","of","fish","in","the","sea","!\"","ahaha",",","I","love","E",".","Jay","<3"],"ner_tags":[",","N",",",",","O","V","O","A","P","X","D","N","P","D","N",",","P","L","N","P","N","P","D","N",",","!",",","O","V","^",",","^","E"]}
{"id":319,"tokens":["RT","@ucsantabarbara",":","Tonight's","memorial","for","Lucas","Ransom","starts","at","8:00","p.m.","and","is","being","held","at","the","open","space","at","the","corner","of","Del","Pla","..."],"ner_tags":["~","@","~","S","N","P","^","^","V","P","$","N","&","V","V","V","P","D","A","N","P","D","N","P","^","^","~"]}
{"id":320,"tokens":["@stetted","Can","you","get","one","at","Starbucks","?","If","so",",","I'm","getting","one","on","my","way","home","!"],"ner_tags":["@","V","O","V","$","P","^",",","P","R",",","L","V","$","P","D","N","R",","]}
{"id":321,"tokens":["RT","@NiiNiiDOE_MANE",":","Did","the","Texas","Chainsaw","Massacre","really","happen","?","-","lol","yes","."],"ner_tags":["~","@","~","V","D","^","^","^","R","V",",","~","!","!",","]}
{"id":322,"tokens":["Justin","Bieber\u2019s","'","My","World","'","can","be","Your","World","Too","on","Black","Friday","http:\/\/bit.ly\/bAaiwf"],"ner_tags":["^","Z",",","D","N",",","V","V","D","N","R","P","^","^","U"]}
{"id":323,"tokens":["Lil","bulimic","ass"],"ner_tags":["A","A","N"]}
{"id":324,"tokens":["Can","Boston","&","Miami","BOTH","lose","tonight","?","I'd","like","that",".","RT","@Togishi",":","Miami","playing","zone","defense","?","Lebron","can't","do","something","man","to","man",",","eh","?"],"ner_tags":["V","^","&","^","D","V","N",",","L","V","O",",","~","@","~","^","V","N","N",",","^","V","V","N","N","P","N",",","!",","]}
{"id":325,"tokens":["Photo",":","love","it",".","http:\/\/tumblr.com\/xsgnbumjc"],"ner_tags":["N",",","V","O",",","U"]}
{"id":326,"tokens":["@iBeen_Had_it","KOBE",";-)"],"ner_tags":["@","^","E"]}
{"id":327,"tokens":["Macdonalds","are","#cheapasses","I","ask","for","a","lot","of","mcChicken","sauce","and","they","give","me","2","what","if","I","asked","for","little","ill","probably","get","a","1\/2","of","one","!!"],"ner_tags":["^","V","N","O","V","P","D","N","P","^","N","&","O","V","O","$","O","P","O","V","P","A","L","R","V","D","$","P","$",","]}
{"id":328,"tokens":["RT","@UWSportsNews","Men's","Soccer","Goal","Highlight","Video",":","Check","out","the","newest","video","of","some","of","the","m","...","http:\/\/bit.ly\/bABShU","http:\/\/bit.ly\/kOY0X"],"ner_tags":["~","@","S","N","N","N","N",",","V","T","D","A","N","P","D","P","D","G","~","U","U"]}
{"id":329,"tokens":["KY-Sen",":","Rand","Paul","followers","try","to","suppress","curbstomping","video","http:\/\/t.co\/Ft6P05z","[","Like","it","?","http:\/\/bit.ly\/aH0QX3","]"],"ner_tags":["^",",","^","^","N","V","P","V","V","N","U",",","V","O",",","U",","]}
{"id":330,"tokens":["There","are","so","many","douche","bags","at","the","Social","Distortion","show","tonight","that","I","feel","like","I'm","living","in","an","Axe","body","spray","commercial",".","Help","me","."],"ner_tags":["X","V","R","A","N","N","P","D","^","^","N","N","P","O","V","P","L","V","P","D","^","N","N","N",",","V","O",","]}
{"id":331,"tokens":["@PrettyLadyTre_","You","should","."],"ner_tags":["@","O","V",","]}
{"id":332,"tokens":["#thingsyouwishyoucansaybutcant","...","sorry","I","can't","say","..."],"ner_tags":["#",",","A","O","V","V",","]}
{"id":333,"tokens":["i","want","to","go","on","stage","with","selena","(","#SelenaGomez","live","at","http:\/\/ustre.am\/1c92",")"],"ner_tags":["O","V","P","V","P","N","P","^",",","^","A","P","U",","]}
{"id":334,"tokens":["Finally","!!!","The","media","actually","released","some","VALID","information","about","real","estate","!","http:\/\/fb.me\/LHVUc80W"],"ner_tags":["R",",","D","N","R","V","D","A","N","P","A","N",",","U"]}
{"id":335,"tokens":["What","makes","u","not","want","to","tell","me","the","truth","?","What's","the","fuckn","point",".","When","do","u","tell","the","truth","...","Lies","are","not","for","me","."],"ner_tags":["O","V","O","R","V","P","V","O","D","N",",","L","D","A","N",",","R","V","O","V","D","N",",","N","V","R","P","O",","]}
{"id":336,"tokens":["So","anxious",".","Can't","sleep",".","Fuck","me","."],"ner_tags":["R","A",",","V","V",",","V","O",","]}
{"id":337,"tokens":["@tommcfly","Let's","say","Darth","Vader","was","still","alive","and","all","the","Ewoks","were","prisoners","(","not","to","mention","all","McFly","fans)","...","How","would","you","save","them","??"],"ner_tags":["@","L","V","^","^","V","R","A","&","D","D","^","V","N",",","R","P","V","D","^","N",",","R","V","O","V","O",","]}
{"id":338,"tokens":["@blakemcgrath","Dude","your","\"","Relax","\"","video","kicked","Rihanna's","\"","Disturbia","\"","right","in","the","teeth","."],"ner_tags":["@","N","D",",","^",",","N","V","Z",",","^",",","R","P","D","N",","]}
{"id":339,"tokens":["Just","tracked","down","a","few","of","my","fav","junior","high","students","from","1995","-","*","sigh","*","-","they","are","adults","now",".","so","weird",".","they","are","beautiful","kids",",","tho","."],"ner_tags":["R","V","T","D","N","P","D","A","N","N","N","P","$",",",",","V",",",",","O","V","N","R",",","R","A",",","O","V","A","N",",","R",","]}
{"id":340,"tokens":["good","luck","on","that"],"ner_tags":["A","N","P","O"]}
{"id":341,"tokens":["@JessicaNorthey","I","got","a","perfect","message","on","youtube","today","from","your","friend","@cjayelerose","!","It","made","me","go","ahhhhhhhhh","!","Huge","Grin",";)"],"ner_tags":["@","O","V","D","A","N","P","^","N","P","D","N","@",",","O","V","O","V","!",",","A","N","E"]}
{"id":342,"tokens":["@supTAY","@KrySpiiCakeD","lmao","that","little","thang","!","yea","I","see","it","tho",".","here","today","gone","tommorow"],"ner_tags":["@","@","!","D","A","N",",","!","O","V","O","R",",","R","N","V","N"]}
{"id":343,"tokens":["@neeeshaboo","chrisdmuchris"],"ner_tags":["@","^"]}
{"id":344,"tokens":["RT","@EthiopianBella",":","iLove","it","when","ppl","tell","me","about","myself","when","i","do","something","wrong","or","offensive","i","would","like","it","when","ppl","tell","me","somet","..."],"ner_tags":["~","@","~","L","O","R","N","V","O","P","O","R","O","V","N","A","&","A","O","V","V","O","R","N","V","O","G","~"]}
{"id":345,"tokens":["I'm","at","Posados","in","Lufkin",",","TX","http:\/\/gowal.la\/c\/2LZTG?137"],"ner_tags":["L","P","^","P","^",",","^","U"]}
{"id":346,"tokens":["Most","of","these","article","submission","engines","have","these","stupid","stock","photos","for","\"","Author","Pics",",\"","but","this","one","is","a","\"","AMAZINE","\"","http:\/\/bit.ly\/dCzh3o"],"ner_tags":["A","P","D","N","N","N","V","D","A","N","N","P",",","N","N",",","&","D","$","V","D",",","A",",","U"]}
{"id":347,"tokens":["Half","of","small","companies","expect","staff","theft",":","survey","http:\/\/ow.ly\/2ZYns"],"ner_tags":["N","P","A","N","V","N","N",",","N","U"]}
{"id":348,"tokens":["@paulscheer","why","were","you","fired"],"ner_tags":["@","R","V","O","V"]}
{"id":349,"tokens":["@Caitlin_Hate_","Back","off","Caitlin","!!","~","What's","your","problem","?","you","don't","even","know","her","..."],"ner_tags":["@","V","T","^",",","~","L","D","N",",","O","V","R","V","O",","]}
{"id":350,"tokens":["#thingsyouwishyoucouldsaybutcant","*","in","class","*","BITCH","shut","your","illiterate","ass","up","..","just","sit","back","and","learn",".."],"ner_tags":["#",",","P","N",",","N","V","D","A","N","P",",","R","V","R","&","V",","]}
{"id":351,"tokens":["Yayyyy","Boston","!"],"ner_tags":["!","^",","]}
{"id":352,"tokens":["@Mr_Twit_That_Ho","Its","goin","DOWN","4","Halloween","@","REIGN","LOUNGE","!!","$1000","GIVEAWAY","4","the","best","costume","!!","Sections","are","goin","FAST","!!","Book","urs","NOW","!!","RT"],"ner_tags":["@","L","V","R","P","^","P","^","^",",","$","N","P","D","A","N",",","N","V","V","R",",","V","O","R",",","V"]}
{"id":353,"tokens":["@daisystreet","Thanks",",","Skye","!"],"ner_tags":["@","!",",","^",","]}
{"id":354,"tokens":["RT","@docblade",":","unimpressed","with","apple","hardware","quality","recently","."],"ner_tags":["~","@","~","A","P","^","N","N","R",","]}
{"id":355,"tokens":["ok","the","place","to","add","ur","pic","isnt","here","wth","?"],"ner_tags":["!","D","N","P","V","D","N","V","R","!",","]}
{"id":356,"tokens":["Sometimes","the","jokes","just","write","themselves","RT","@KimKardashian","Just","saw","Social","Network","Such","a","great","movie",".","Makes","me","want","to","go","start","a","company","!"],"ner_tags":["R","D","N","R","V","O","~","@","R","V","^","^","A","D","A","N",",","V","O","V","P","V","V","D","N",","]}
{"id":357,"tokens":["RT","@lightakari",":","#Sexstrology","Security","and","protection","are","more","important","to","a","Capricorn","woman","than","passion",",","lavish","gifts",",","or","words","of","fla","..."],"ner_tags":["~","@","~","#","N","&","N","V","R","A","P","D","^","N","P","N",",","A","N",",","&","N","P","G","~"]}
{"id":358,"tokens":["@top10seo","Savvis","Delivers","Year-over-Year","Revenue","Growth","of","13%","and","Adjusted","EBITDA","Growth","of","17%","for","Thir","...","http:\/\/bit.ly\/baupGs","#top10seo"],"ner_tags":["@","^","V","A","N","N","P","$","&","V","^","N","P","$","P","A","~","U","#"]}
{"id":359,"tokens":["RT","@Lovefranny","#teamgreen","!"],"ner_tags":["~","@","#",","]}
{"id":360,"tokens":["\"","That's","what","we","calll","ya","...\""],"ner_tags":[",","L","O","O","V","O",","]}
{"id":361,"tokens":["I'm","at","Flight","Centre","Toronto","Head","Office","(","1","dundas","street","west",",","Yonge","street",",","Toronto)",".","http:\/\/4sq.com\/b3s9KJ"],"ner_tags":["L","P","N","N","^","N","N",",","$","^","^","^",",","^","^",",","^",",","U"]}
{"id":362,"tokens":["Someone","really","needs","to","put","Mary","Kay","out","of","her","misery","."],"ner_tags":["N","R","V","P","V","^","^","P","P","D","N",","]}
{"id":363,"tokens":["RT","@StephenAtHome",":","George","Soros","wants","to","legalize","pot",".","I","guess","he's","so","rich","that","he's","completely","run","out","of","legal","things","to","buy","."],"ner_tags":["~","@","~","^","^","V","P","V","N",",","O","V","L","R","A","P","L","R","V","T","P","A","N","P","V",","]}
{"id":364,"tokens":["Happy","b-day","cuzzo","@icee_MONROE"],"ner_tags":["A","N","N","@"]}
{"id":365,"tokens":["This","21st","birthday","is","the","worst","birthday","I","have","EVER","had","!!!!!"],"ner_tags":["D","A","N","V","D","A","N","O","V","R","V",","]}
{"id":366,"tokens":["My","baby's","here",";","hopefully","he'll","take","care","of","me",";","#sicktweet"],"ner_tags":["D","L","R",",","R","L","V","N","P","O",",","#"]}
{"id":367,"tokens":["What's","the","difference","between","a","Northern","fairy","tale","and","a","Southern","fairy","tale","?"],"ner_tags":["L","D","N","P","D","A","N","N","&","D","A","N","N",","]}
{"id":368,"tokens":["@BlancoDiddy","hey","!","just","wanted","to","tell","you","that","the","video","was","SO","funny","!","good","job","!!"],"ner_tags":["@","!",",","R","V","P","V","O","P","D","N","V","R","A",",","A","N",","]}
{"id":369,"tokens":["What","do","you","think","of","the","New","MySpace","?","http:\/\/ht.ly\/30hL9"],"ner_tags":["O","V","O","V","P","D","A","^",",","U"]}
{"id":370,"tokens":["@jhurdles09","where","the","fuck","you","work","at","?"],"ner_tags":["@","R","D","N","O","V","P",","]}
{"id":371,"tokens":["Arranging","a","bunch","of","Animal","Crossing","music","for","clarinet","and","putting","them","on","another","part","of","the","site",".","You'll","have","to","search","to","find","them","."],"ner_tags":["V","D","N","P","^","^","N","P","N","&","V","O","P","D","N","P","D","N",",","L","V","P","V","P","V","O",","]}
{"id":372,"tokens":["@gchance","seriously","?","how","?"],"ner_tags":["@","R",",","R",","]}
{"id":373,"tokens":["FB","\"","philip","christovale"],"ner_tags":["G",",","^","^"]}
{"id":374,"tokens":["@_TheRealYJ","Fasho","main",".","Stay","up","."],"ner_tags":["@","!","N",",","V","T",","]}
{"id":375,"tokens":["#Offthysss","-","2tO","Daa","Morniinqqqq"],"ner_tags":["#",",","G","D","N"]}
{"id":376,"tokens":["Is","a","little","disappointed","about","fall",".","I've","waited","&","counted","down","for","my","favorite","season","&","one","day","it'll","feel","amazing",",","&","the","next","like","summer","."],"ner_tags":["V","D","R","A","P","N",",","L","V","&","V","T","P","D","A","N","&","$","N","L","V","A",",","&","D","A","P","N",","]}
{"id":377,"tokens":["@ChaChaRealSmoov","@iTS_TRiCiE","....","Mypooh","dont","be","messy","!","..","yu","jus","pissed","me","tha","fuck","off","!","gtfo","my","TL","!!"],"ner_tags":["@","@",",","G","V","V","A",",",",","O","R","V","O","D","N","T",",","!","O","N",","]}
{"id":378,"tokens":["Keep","trying","to","climb","but","its","too","steep","another","shot","of","whiskey","and","back","to","sleep"],"ner_tags":["R","V","P","V","&","L","R","A","D","N","P","N","&","R","P","V"]}
{"id":379,"tokens":["RT","@AdamsMom76",":","\"","Adam","Lambert","or","Lady","Gaga",";","who","has","the","best","fans","?\"","\u2013","POLL","~","Zoiks","!","Online","-","An","entertainingly","hum","..","http:\/\/bit.ly\/9kmLkS"],"ner_tags":["~","@","~",",","^","^","&","^","^",",","O","V","D","A","N",",","G","N","G","^","^","^",",","D","R","G","~","U"]}
{"id":380,"tokens":["Thanx","4","follow","@arkitektmedia","nd","@THEREALZSWAGG"],"ner_tags":["N","P","V","@","&","@"]}
{"id":381,"tokens":["Ha","i","got","to","watch","the","skank","that","took","my","parking","spot","not","only","trip","but","break","the","heel","of","her","stileto","muhaha","the","glory","is","mine"],"ner_tags":["!","O","V","P","V","D","N","P","V","D","N","N","R","R","V","&","V","D","N","P","D","N","!","D","N","V","O"]}
{"id":382,"tokens":["@_niquenique","oh","lol","if","I","had","a","girl","I","wouldn't","mind","tht"],"ner_tags":["@","!","!","P","O","V","D","N","O","V","V","O"]}
{"id":383,"tokens":["@monykassem","no","i","haven't","i'm","gonna","write","them","today","so","tell","em","ur","ideas","."],"ner_tags":["@","!","O","V","L","V","V","O","N","P","V","O","D","N",","]}
{"id":384,"tokens":["Are","You","Ready","to","Find","out","How","to","Tap","Into","Your","True","Potential",".","http:\/\/bit.ly\/aguPgx"],"ner_tags":["V","O","A","P","V","T","R","P","V","P","D","A","N",",","U"]}
{"id":385,"tokens":["Lamar","odom","knocked","that","ball","out"],"ner_tags":["^","^","V","D","N","P"]}
{"id":386,"tokens":["@FrankUwhore","V____V","so","I","am","Frank",",","so","I","am",".","#TeamLighterThanABlackGuyButStillMexicanLikeFrankButHeJustWontAdmitHeIsAMexican"],"ner_tags":["@","E","P","O","V","^",",","P","O","V",",","#"]}
{"id":387,"tokens":["RT","@TurntThaFuccUp","#TSU","+","@KevinHart4real","=","LIVE","AS","FUCC","<<","#agreed"],"ner_tags":["~","@","^","&","@",",","A","P","N","~","V"]}
{"id":388,"tokens":["HAHAHAHA","!","@SpankinD","http:\/\/moby.to\/op9mgt"],"ner_tags":["!",",","@","U"]}
{"id":389,"tokens":["man","for","petesakes","scratchh","that","sweepstakesss","!"],"ner_tags":["!","P","N","V","D","N",","]}
{"id":390,"tokens":["Boutta","Shake","Da","Croud","So","Yall","Culd","Start","Hateing","Now"],"ner_tags":["P","V","D","N","P","O","V","V","V","R"]}
{"id":391,"tokens":["Good","one",",","baby","bear",",","good","one","."],"ner_tags":["A","$",",","N","N",",","A","$",","]}
{"id":392,"tokens":["RT","@insanityreport",":","You","got","Chris","Bosh","(","the","Velociraptor",")","on","the","court","with","Beetlejuice's","big","brother","(","Paul","Pierce",")"],"ner_tags":["~","@","~","O","V","^","^",",","D","N",",","P","D","N","P","Z","A","N",",","^","^",","]}
{"id":393,"tokens":["@syllableSlayer","no","I","brought","office","2008","for","Mac","."],"ner_tags":["@","!","O","V","^","$","P","^",","]}
{"id":394,"tokens":["RT","@KevinKoolKev",":","I","still","open","doors","for","ladies","--","#TrueStory"],"ner_tags":["~","@","~","O","R","V","N","P","N",",","#"]}
{"id":395,"tokens":["Getting","insulation","put","in","attic","today",".","They","was","sposed","2","be","here","at","7:30","am",",","but","got","here","at","8:30","!","Where","they","do","dat","at","?"],"ner_tags":["V","N","V","P","N","N",",","O","V","A","P","V","R","P","$","N",",","&","V","R","P","$",",","R","O","V","O","P",","]}
{"id":396,"tokens":["I","didn't","really","like","Nicki's","song","Right","Thru","Me","at","1st",",","but","I","like","it","now","lol",".","I","love","the","video",":)"],"ner_tags":["O","V","R","V","Z","N","R","P","O","P","A",",","&","O","V","O","R","!",",","O","V","D","N","E"]}
{"id":397,"tokens":["@tennillemonique","Girl",",","I","can't","tell","you","about","my","obsession","on","Twitter",".","I'll","have","to","tell","you","later","."],"ner_tags":["@","N",",","O","V","V","O","P","D","N","P","^",",","L","V","P","V","O","R",","]}
{"id":398,"tokens":["@fiteraahR","hy","!",":)"],"ner_tags":["@","!",",","E"]}
{"id":399,"tokens":["@David_Ealy","lol","!","Yep","it's","cold","here"],"ner_tags":["@","!",",","!","L","A","R"]}
{"id":400,"tokens":["Subby","Dubby","Doo","is","too","cute","for","life","ommggggg","<3","love"],"ner_tags":["^","^","^","V","R","A","P","N","!","E","N"]}
{"id":401,"tokens":["RT","@biyl",":","God","Never","Sleep","!","always","#prayforindonesia"],"ner_tags":["~","@","~","^","R","V",",","R","G"]}
{"id":402,"tokens":["6","tips","to","save","gas","&","10","tips","to","keep","the","enviroment","and","your","vehicle","on","the","green","side",".","http:\/\/fb.me\/MVpc40mo"],"ner_tags":["$","N","P","V","N","&","$","N","P","V","D","N","&","D","N","P","D","A","N",",","U"]}
{"id":403,"tokens":["@SammyAmsterdam","I","can't","join","the","lobby","lol","it's","full","..","me","and","Domo","killing","room","1"],"ner_tags":["@","O","V","V","D","N","!","L","A",",","O","&","^","V","N","$"]}
{"id":404,"tokens":["@LightCurls","got","it","--","thanks","!"],"ner_tags":["@","V","O",",","N",","]}
{"id":405,"tokens":[":((("],"ner_tags":["E"]}
{"id":406,"tokens":["Benadryl","put","my","ass","put","like","goodnight","!"],"ner_tags":["^","V","D","N","R","P","N",","]}
{"id":407,"tokens":["@FRSHFRD","smfdreads","!"],"ner_tags":["@","!",","]}
{"id":408,"tokens":["In","the","shadow","of","the","Shard","|","David","Shariatmadari","-","http:\/\/newzfor.me\/?9ke3"],"ner_tags":["P","D","N","P","D","N","G","^","^","G","U"]}
{"id":409,"tokens":["#np","Misery","=)"],"ner_tags":["#","N","E"]}
{"id":410,"tokens":["RT","@vanessaangelcin",":","RIP","mbah","marijan"],"ner_tags":["~","@","~","G","^","^"]}
{"id":411,"tokens":["today","has","been","a","great","day",".","Did","I","tweet","about","it","once","?","nope","..."],"ner_tags":["N","V","V","D","A","N",",","V","O","V","P","O","R",",","!",","]}
{"id":412,"tokens":["Miami","is","only","down","by","6",".","Let's","see","how","this","4th","quarter","unfolds","..."],"ner_tags":["^","V","R","R","P","$",",","L","V","R","D","A","N","V",","]}
{"id":413,"tokens":["oh","well-","thank","god","for","Suz","right","^_^"],"ner_tags":["!","!","V","^","P","^","!","E"]}
{"id":414,"tokens":["S\/O","to","@","wildboyclothing","n","all","the","artists",",","musicians",",","friends",",","family","and","community","members","who","came","out","to","#dosomethingwildvote"],"ner_tags":["V","P","@","@","&","D","D","N",",","N",",","N",",","N","&","N","N","O","V","T","P","G"]}
{"id":415,"tokens":["#NP","Young","Jeezy","@YoungJeezy","Ft","Birdman","@BIRDMAN5STAR","&","Bun","B","@BunBTrillOG","-","My","Tool","http:\/\/t.co\/8yp42yR"],"ner_tags":["#","^","^","@","V","^","@","&","^","^","@","G","D","N","U"]}
{"id":416,"tokens":["@jojo_9030","I","was","legit","about","to","before","I","saw","the","release","date","of","Ss's","new","album",".","Hahaha"],"ner_tags":["@","O","V","R","P","P","R","O","V","D","N","N","P","Z","A","N",",","!"]}
{"id":417,"tokens":["@Hii_ImFruiity","nuin","much","at","all","juss","chillin","waddup","w","yu","?"],"ner_tags":["@","N","R","P","D","R","V","G","P","O",","]}
{"id":418,"tokens":["@LilLittel","oh","good","deal","!!","Shiiit"],"ner_tags":["@","!","A","N",",","!"]}
{"id":419,"tokens":["Sundays",";","I","hate","you",".","Mondays",";","I","wont","tolerate","you",".","Tuesdays",";","I'll","be","a","dick","to","you",".","Wednesday",";","I'll","look","at","you",".","(","cont",")","http:\/\/tl.gd\/6mcie2"],"ner_tags":["^",",","O","V","O",",","^",",","O","V","V","O",",","^",",","L","V","D","N","P","O",",","^",",","L","V","P","O",",",",","~",",","U"]}
{"id":420,"tokens":["I","Hope","My","Sis","@NaeGotEmGeekin","Gets","Better"],"ner_tags":["O","V","D","N","@","V","A"]}
{"id":421,"tokens":["SO","to","@MDoTMancini","@primosquad","@MobileCams","@GormondKing","@LilMasty91","@1datingtime","@tnice_0126","@Dolce01","@SoulRockKelly","@xNJNIGHTMAREx"],"ner_tags":["V","P","@","@","@","@","@","@","@","@","@","@"]}
{"id":422,"tokens":["the","chagall","windows","(","aka","ferris","&","sloane's","make-out","backdrop",")","are","being","reinstalled","@ArtInstituteChi","as","I","type",".","story","in","sunday's","tribune","."],"ner_tags":["D","^","N",",","G","^","&","Z","N","N",",","V","V","V","@","P","O","V",",","N","P","Z","^",","]}
{"id":423,"tokens":["I","can't","believe","@NickiMinaj","acted","like","a","normal","person","in","the","\"","Right","Thru","Me","\"","video",".","I'm","still","shooked","lol"],"ner_tags":["O","V","V","@","V","P","D","A","N","P","D",",","R","P","O",",","N",",","L","R","A","!"]}
{"id":424,"tokens":["RT","@dheaaw",":","#prayforindonesia","#prayforindonesia","#prayforindonesia",":)"],"ner_tags":["~","@","~","#","#","#","E"]}
{"id":425,"tokens":["My","roommate","doesn't","sleep",",","he","hibernates","12","plus","hours","a","day","....","SMH"],"ner_tags":["D","N","V","V",",","O","V","$","A","N","D","N",",","G"]}
{"id":426,"tokens":["Allllllllllll","these","tweets","were","from","math","..","Justsayin","'","(:"],"ner_tags":["X","D","N","V","P","N",",","G",",","E"]}
{"id":427,"tokens":["Just","entered","the","@ZAGGdaily","12","Weeks","of","Christmas",".","This","week's","prizes",":","10","Nintendo","Wiis","-","http:\/\/zagg.to\/santa"],"ner_tags":["R","V","D","@","$","N","P","^",",","D","S","N",",","$","^","^","G","U"]}
{"id":428,"tokens":["Girls","this","nigga","right","here","#twitterafterdark","http:\/\/bit.ly\/aWIPZk"],"ner_tags":["N","D","N","R","R","#","U"]}
{"id":429,"tokens":["Look",",","I","need","less","friends","more","bread",",","less","talk",",","more","head","\""],"ner_tags":["V",",","O","V","A","N","A","N",",","A","N",",","A","N",","]}
{"id":430,"tokens":["European","officials","criticize","U.S.","#airport","security","measures","-","http:\/\/newzfor.me\/?9424","[","Like","it","?","http:\/\/bit.ly\/aabJGK","]"],"ner_tags":["A","N","V","^","N","N","N",",","U",",","V","O",",","U",","]}
{"id":431,"tokens":["I","support","@fairtradeusa","to","help","#fairtrade","workers","and","farmers","fight","poverty","in","their","communities",".","Learn","more",":","http:\/\/t.co\/SQ7yPez"],"ner_tags":["O","V","@","P","V","A","N","&","N","V","N","P","D","N",",","V","R",",","U"]}
{"id":432,"tokens":["@kstar11","some","halloween","cookies","(:"],"ner_tags":["@","D","^","N","E"]}
{"id":433,"tokens":["@YRSNilla","For","fast","and","effective","weight","loss",",","try","this",".","http:\/\/bit.ly\/cAx1Ff"],"ner_tags":["@","P","A","&","A","N","N",",","V","O",",","U"]}
{"id":434,"tokens":["@ohitsKELLY","LMFAOOOOOO","now","I","get","it","!","LOLOL","I'm","dying","here",",","hahaha","love","you\u2665",";D"],"ner_tags":["@","!","R","O","V","O",",","!","L","V","R",",","!","V","O","E"]}
{"id":435,"tokens":["RT","@btmerr",":","Anyone","forced","to","use","MSFT","Exchange","should","get","hazard","pay","."],"ner_tags":["~","@","~","N","V","P","V","^","^","V","V","N","N",","]}
{"id":436,"tokens":["RT","@Love_JAsh",":","First","time","seeing","Ye's","film","on","VH1\u00ab-What","do","you","think","about","it","?"],"ner_tags":["~","@","~","A","N","V","Z","N","P","G","V","O","V","P","O",","]}
{"id":437,"tokens":["I","go","to","class","and","come","back","and","the","game","looks","like","this","...","#womp","..","im","ready","for","the","lakers","yo"],"ner_tags":["O","V","P","N","&","V","R","&","D","N","V","P","O",",","#",",","L","A","P","D","^","!"]}
{"id":438,"tokens":["Free","3pk","of","Lindt","Truffles","(","US",")","http:\/\/nblo.gs\/9Iuzw"],"ner_tags":["A","N","P","^","N",",","^",",","U"]}
{"id":439,"tokens":["@500Pearls","haha","!!","why","not","??!!"],"ner_tags":["@","!",",","R","R",","]}
{"id":440,"tokens":["European","Markets","Mixed","as","Traders","Ponder","the","Fed",":","Investors","have","begun","to","speculate","about","the","Federal","Reserve\u2019s","e","...","http:\/\/nyti.ms\/b9VNtB"],"ner_tags":["^","N","V","P","N","V","D","^",",","N","V","V","P","V","P","D","^","Z","G","~","U"]}
{"id":441,"tokens":["APPCRAFT","software",":","T-Mobile","Will","Deliver","The","BlackBerry\u00ae","Bold\u2122","9780","On","November","17th",":","T-Mobile","has","finall","...","http:\/\/bit.ly\/dexQk3"],"ner_tags":["^","^",",","^","V","V","D","^","^","$","P","^","$",",","^","V","R","~","U"]}
{"id":442,"tokens":["When","you","befriend","the","enemy",",","you","KNOW","you","lost","my","respect","!","#thatshowitis"],"ner_tags":["R","O","V","D","N",",","O","V","O","V","D","N",",","#"]}
{"id":443,"tokens":["Lmao","u","wild","RT","@KorinGreen",":","As","a","mixed","child","I","use","to","call","my","mom","a","nigga","just","cus","she","could","never","say","it","back","and","she","would","b","mad","too","lmao"],"ner_tags":["!","O","A","~","@","~","P","D","A","N","O","V","P","V","D","N","D","N","R","P","O","V","R","V","O","R","&","O","V","V","A","R","!"]}
{"id":444,"tokens":["RT","@SPINmagazine",":","Devo","postpone","tour",",","Weezer","covers","...","Toni","Braxton","?","+","more","news",":","http:\/\/su.pr\/8ztrNZ"],"ner_tags":["~","@","~","^","V","N",",","^","V",",","^","^",",","&","A","N",",","U"]}
{"id":445,"tokens":["Houllier","warns","young","stars","against","marriage","http:\/\/bit.ly\/cB79Vq"],"ner_tags":["^","V","A","N","P","N","U"]}
{"id":446,"tokens":["A","touch","of","sophistication","in","the","garnish",":","18\/8","Stainless","Steel","Chocolate","Shaver\/Truffle","Slicer",":","http:\/\/tinyurl.com\/2cdyk9o","#gadget","#baking"],"ner_tags":["D","N","P","N","P","D","N",",","$","A","N","N","G","N",",","U","#","#"]}
{"id":447,"tokens":["SECRET","ADMIRER","!",":D"],"ner_tags":["A","N",",","E"]}
{"id":448,"tokens":["Just","saying","\"","Stop","it","5","\"","to","@BrittanyDasani","off","#GP","#stopit5"],"ner_tags":["R","V",",","V","O","$",",","P","@","P","#","#"]}
{"id":449,"tokens":["@CSI_JBieber","hahaaha","!!","i","dont","care","if","she","realises","i","will","be","like","shut","up","teacher","and","go","do","your","work","!!","hehe","then","i","will","be","in","trouble","!!"],"ner_tags":["@","!",",","O","V","V","P","O","V","O","V","V","P","V","T","N","&","V","V","D","N",",","!","R","O","V","V","P","N",","]}
{"id":450,"tokens":["Q",":","In","your","opinion",",","what","constitutes","love","?","A",":","When","you","and","that","person","completely","trust","...:","http:\/\/lnk.ms\/DczKm"],"ner_tags":["N",",","P","D","N",",","O","V","N",",","N",",","R","O","&","D","N","R","V","~","U"]}
{"id":451,"tokens":["@thegirlEs","that's","true",".","I'm","really","gonna","make","an","effort","next","week","lol"],"ner_tags":["@","L","A",",","L","R","V","V","D","N","A","N","!"]}
{"id":452,"tokens":["Im","original","officially","the","most","original","If","i","wasn't","so","original","then","it'd","be","criminal"],"ner_tags":["L","A","R","D","R","A","P","O","V","R","A","R","L","V","A"]}
{"id":453,"tokens":["RT","@IAmSteveHarvey",":","My","2nd","book","Straight","Talk","No","Chaser",",","has","limited","autographed","copies","from","me",",","be","the","first","2","get","it",",","go","to","http:\/\/tin","..."],"ner_tags":["~","@","~","D","A","N","A","N","R","N",",","V","A","A","N","P","O",",","V","D","A","P","V","O",",","V","P","U","~"]}
{"id":454,"tokens":["@GreenEyezzzzz","@bjr70","well","that","sucks","!!!","now","idk","where","to","get","music","from","lol"],"ner_tags":["@","@","!","O","V",",","R","L","R","P","V","N","P","!"]}
{"id":455,"tokens":["Lol","@latenitedame","was","that","mean","?","It","warm't","sposed","to","be",".","But","text","the","ques","or","call","in","a","hour"],"ner_tags":["!","@","V","O","A",",","O","V","A","P","V",",","&","V","D","N","&","V","P","D","N"]}
{"id":456,"tokens":["This","wind","is","not","good","for","my","hair","#staticcling"],"ner_tags":["D","N","V","R","A","P","D","N","#"]}
{"id":457,"tokens":["Leave","it","to","obama","to","approve","dadt",".","Honestly",",","I","knew","that","he","wasn't","going","to","do","as","he","led","us","to","believe","."],"ner_tags":["V","O","P","^","P","V","^",",","R",",","O","V","P","O","V","V","V","V","P","O","V","O","P","V",","]}
{"id":458,"tokens":["Pissed"],"ner_tags":["V"]}
{"id":459,"tokens":["RT","@lilduval",":","Got","damn","Janet","Jackson","got","a","fat","ass",".","Is","it","real","?","Nevermind","I","don't","care","if","it","ain't"],"ner_tags":["~","@","~","!","!","^","^","V","D","A","N",",","V","O","A",",","!","O","V","V","P","O","V"]}
{"id":460,"tokens":["@t_ripley","good","afternoon","smokin","aces"],"ner_tags":["@","A","N","V","N"]}
{"id":461,"tokens":["Intel","Backs","Three","Startups","From","The","Middle","East",":","Nymgo",",","Jeeran",",","ShooFeeTV",":","Intel\u2019s","investment","arm",",","Intel","Capital",",...","http:\/\/bit.ly\/bMuuQi"],"ner_tags":["^","V","$","N","P","D","^","^",",","^",",","^",",","^",",","Z","N","N",",","^","^","~","U"]}
{"id":462,"tokens":["Ok","..","Let's","shut","this","down","!","#celtics",".","Enough","is","enough","."],"ner_tags":["!",",","L","V","O","T",",","^",",","N","V","A",","]}
{"id":463,"tokens":["Hey","guys","..","great","job","decorating","the","balconies","!","Keep","up","the","good","work",".","Remember","you","have","a","few","days","left","until","we","...","http:\/\/fb.me\/D7jpnZv5"],"ner_tags":["!","N",",","A","N","V","D","N",",","V","T","D","A","N",",","V","O","V","D","A","N","V","P","O","~","U"]}
{"id":464,"tokens":["@PRETTY_iN_TiNK","lol"],"ner_tags":["@","!"]}
{"id":465,"tokens":["RT","@boiypr",":","[","SDS]","!!","favorite","song","new","album","@Lylatheband","hehe","*"],"ner_tags":["~","@","~",",","G",",","A","N","A","N","@","!",","]}
{"id":466,"tokens":["Ha","this","fu","!!","Shit",".","."],"ner_tags":["!","D","N",",","N",",",","]}
{"id":467,"tokens":["T______________________________________________T"],"ner_tags":["E"]}
{"id":468,"tokens":["@deannammorris","Goodnight",",","Sweet","Dreams","&","god","bless","!","Have","a","safe","flight","in","the","morning","!","Take","Care","!"],"ner_tags":["@","!",",","A","N","&","^","V",",","V","D","A","N","P","D","N",",","V","N",","]}
{"id":469,"tokens":["Chicken","Kitchen","how","is","your","food","so","good","and","all","your","employees","so","apathetic","and","rude",".","I","will","never","get","this","."],"ner_tags":["^","^","R","V","D","N","R","A","&","D","D","N","R","A","&","A",",","O","V","R","V","O",","]}
{"id":470,"tokens":["BRICK","STRONG",".","RIP","EVAN",".","<3"],"ner_tags":["R","A",",","G","^",",","E"]}
{"id":471,"tokens":["RT","@SharminUltra",":","#howcome","the","prettiest","people","do","the","ugliest","things","?"],"ner_tags":["~","@","~","L","D","A","N","V","D","A","N",","]}
{"id":472,"tokens":["always","#PrayForIndonesia"],"ner_tags":["R","G"]}
{"id":473,"tokens":["@GreenEyezzzzz","TJ","thanks","now","I","have","that","song","in","my","head","and","visions","of","my","80s","younger","self","dancing","to","that"],"ner_tags":["@","^","N","R","O","V","D","N","P","D","N","&","N","P","D","$","A","N","V","P","O"]}
{"id":474,"tokens":["Fake","weak","music","makers","irritate","my","ear"],"ner_tags":["A","A","N","N","V","D","N"]}
{"id":475,"tokens":["Yup","about","35","deep","RT","@SpoodyQue","So","I","heard","#OP","will","be","deep","on","the","yard","!","That's","what","I","like","to","here","!","Make","sure","(","cont",")","http:\/\/tl.gd\/6mdj5q"],"ner_tags":["!","P","$","A","~","@","R","O","V","^","V","V","A","P","D","N",",","L","O","O","V","P","V",",","V","A",",","~",",","U"]}
{"id":476,"tokens":["@WhiteHouse","@PressSec","Keep","using","ur","illogical","car","in","ditch",".","It","shows","how","scared","u","r","to","talk","abt","ur","Marxist","policies"],"ner_tags":["@","@","V","V","D","A","N","P","N",",","O","V","R","A","O","V","P","V","P","D","A","N"]}
{"id":477,"tokens":["RT","@disneywords",":","Once","upon","a","time",",","not","your","time",",","not","yet","my","time",",","but","one","time",".","\u2013Uncle","Remus","(","Song","of","the","South",")","#disneywords"],"ner_tags":["~","@","~","R","P","D","N",",","R","D","N",",","R","R","D","N",",","&","$","N",",","^","^",",","N","P","D","^",",","#"]}
{"id":478,"tokens":["oh","drama","...","and","Corn","..."],"ner_tags":["!","N",",","&","N",","]}
{"id":479,"tokens":["@modeps","Tek","is","back",",","it","needs","to","be","unbanned"],"ner_tags":["@","^","V","A",",","O","V","P","V","A"]}
{"id":480,"tokens":["@ExQuisiteLook","are","u","on","skype","now"],"ner_tags":["@","V","O","P","^","R"]}
{"id":481,"tokens":["Bet","on","sports","with","this","sure-money","system",".","Win","over","90%","of","your","bets","!","http:\/\/cli.gs\/E4rms"],"ner_tags":["V","P","N","P","D","A","N",",","V","P","$","P","D","N",",","U"]}
{"id":482,"tokens":["@Soulcialite","Girl","I'm","scared","of","you","!","#gohead"],"ner_tags":["@","N","L","A","P","O",",","#"]}
{"id":483,"tokens":["@trent_wierd_azz","whats","good","bro"],"ner_tags":["@","L","A","N"]}
{"id":484,"tokens":["I","got","a","hole","in","my","head","..."],"ner_tags":["O","V","D","N","P","D","N",","]}
{"id":485,"tokens":["Bad","day"],"ner_tags":["A","N"]}
{"id":486,"tokens":["@deefizzy","just","made","my","life","haha","<3"],"ner_tags":["@","R","V","D","N","!","E"]}
{"id":487,"tokens":["Hopin","my","wristbands",",","biz","cards",",","and","stickers","come","in","#tomorrow","#BuzzNtheBurgh"],"ner_tags":["V","D","N",",","N","N",",","&","N","V","P","N","#"]}
{"id":488,"tokens":["RT","@notacrumb",":","@rsvpweddingdiva","see","you","there","!","Getting","ready","too","!"],"ner_tags":["~","@","~","@","V","O","R",",","V","A","R",","]}
{"id":489,"tokens":["lakers","about","to","play","very","soon","!!","letsgo","!!"],"ner_tags":["^","P","P","V","R","R",",","L",","]}
{"id":490,"tokens":["LMMFFO","#youreaninnovator","RT","@CupTheseCakes","@MisterSykhotic","how","to","keep","a","dummy","busy","...","#RTthis"],"ner_tags":["!","G","~","@","@","R","P","V","D","N","A",",","G"]}
{"id":491,"tokens":["etc","etc"],"ner_tags":["G","G"]}
{"id":492,"tokens":["@jeffbeamish","pauly","d","?","Vinny","?","The","situation","?"],"ner_tags":["@","^","^",",","^",",","D","N",","]}
{"id":493,"tokens":["@Gallis_","was","that","the","wrong","context","?","Tryin","to","say","it","wit","lingo","u","would","understand",".","You","know","how","y'all","jamaicans","are","when","u","don't","understand"],"ner_tags":["@","V","O","D","A","N",",","V","P","V","O","P","N","O","V","V",",","O","V","R","O","^","V","R","O","V","V"]}
{"id":494,"tokens":["Everybody","dick","ain't","meant","to","be","suck",",","u","have","issues","with","that","use","condom","RT","@Nicolie_Ravioli",":","@SoSoYellow","It","dont","save","u","from","shit","if","u","s"],"ner_tags":["O","N","V","V","T","V","V",",","O","V","N","P","O","V","N","~","@","~","@","O","V","V","O","P","N","P","O","G"]}
{"id":495,"tokens":["@Celebritney","female","smokers","are","yucky","!"],"ner_tags":["@","A","N","V","A",","]}
{"id":496,"tokens":["@jackpittgregor","Tomorrow","is","a","rerun",".","It's","before","their","time",".","I","don't","know","about","Nate","or","Ford",".","I","forgot","what","year","it's","from",".","I","am","thinking","..."],"ner_tags":["@","N","V","D","N",",","L","P","D","N",",","O","V","V","P","^","&","^",",","O","V","O","N","L","P",",","O","V","V",","]}
{"id":497,"tokens":["I","hate","the","Heat",".","(:"],"ner_tags":["O","V","D","^",",","E"]}
{"id":498,"tokens":["wisely","unsent","gmail","draft","from","just","now","had","subject","line",":","\"","[","person's","name","]","crush","affirmation","\"","and","body",":","link","to","a","tweet","#smittenontwitter"],"ner_tags":["R","A","^","N","P","R","R","V","N","N",",",",",",","S","N",",","N","N",",","&","N",",","N","P","D","N","#"]}
{"id":499,"tokens":["Who","got","a","scantron","and","ur","around","PAB","???"],"ner_tags":["O","V","D","^","&","L","P","^",","]}