File: 0001-Import-test-from-upstream.patch

package info (click to toggle)
ruby-classifier-reborn 2.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,424 kB
  • sloc: ruby: 2,021; makefile: 7
file content (7249 lines) | stat: -rw-r--r-- 539,092 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
7173
7174
7175
7176
7177
7178
7179
7180
7181
7182
7183
7184
7185
7186
7187
7188
7189
7190
7191
7192
7193
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
7210
7211
7212
7213
7214
7215
7216
7217
7218
7219
7220
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
7231
7232
7233
7234
7235
7236
7237
7238
7239
7240
7241
7242
7243
7244
7245
7246
7247
7248
7249
From: Youhei SASAKI <uwabami@gfd-dennou.org>
Date: Thu, 31 Aug 2017 10:26:59 +0900
Subject: Import test from upstream

Forwarded: not-needed
Signed-off-by: Youhei SASAKI <uwabami@gfd-dennou.org>
---
 test/bayes/bayesian_test.rb                |  125 +
 test/data/stopwords/en                     |    4 +
 test/extensions/hasher_test.rb             |   67 +
 test/lsi/lsi_test.rb                       |  203 +
 test/lsi/word_list_test.rb                 |   33 +
 test/n/backends/backend_common_tests.rb    |   70 +
 test/n/backends/backend_memory_test.rb     |   31 +
 test/n/backends/backend_redis_test.rb      |   21 +
 test/n/bayes/bayesian_common_benchmarks.rb |   72 +
 test/n/bayes/bayesian_common_tests.rb      |  231 ++
 test/n/bayes/bayesian_integration_test.rb  |   63 +
 test/n/bayes/bayesian_memory_benchmark.rb  |   25 +
 test/n/bayes/bayesian_memory_test.rb       |   18 +
 test/n/bayes/bayesian_redis_benchmark.rb   |   39 +
 test/n/bayes/bayesian_redis_test.rb        |   28 +
 test/n/data/corpus/README.md               |    5 +
 test/n/data/corpus/SMSSpamCollection.tsv   | 5574 ++++++++++++++++++++++++++++
 test/n/data/stopwords/en                   |    4 +
 test/n/data/test_data_loader.rb            |   16 +
 test/n/extensions/hasher_test.rb           |   67 +
 test/n/lsi/lsi_test.rb                     |  214 ++
 test/n/lsi/word_list_test.rb               |   33 +
 test/n/test_helper.rb                      |   10 +
 test/n/validators/classifier_validation.rb |   78 +
 test/test_helper.rb                        |    8 +
 25 files changed, 7039 insertions(+)
 create mode 100644 test/bayes/bayesian_test.rb
 create mode 100644 test/data/stopwords/en
 create mode 100644 test/extensions/hasher_test.rb
 create mode 100644 test/lsi/lsi_test.rb
 create mode 100644 test/lsi/word_list_test.rb
 create mode 100644 test/n/backends/backend_common_tests.rb
 create mode 100644 test/n/backends/backend_memory_test.rb
 create mode 100644 test/n/backends/backend_redis_test.rb
 create mode 100644 test/n/bayes/bayesian_common_benchmarks.rb
 create mode 100644 test/n/bayes/bayesian_common_tests.rb
 create mode 100644 test/n/bayes/bayesian_integration_test.rb
 create mode 100755 test/n/bayes/bayesian_memory_benchmark.rb
 create mode 100755 test/n/bayes/bayesian_memory_test.rb
 create mode 100644 test/n/bayes/bayesian_redis_benchmark.rb
 create mode 100644 test/n/bayes/bayesian_redis_test.rb
 create mode 100644 test/n/data/corpus/README.md
 create mode 100644 test/n/data/corpus/SMSSpamCollection.tsv
 create mode 100644 test/n/data/stopwords/en
 create mode 100644 test/n/data/test_data_loader.rb
 create mode 100644 test/n/extensions/hasher_test.rb
 create mode 100644 test/n/lsi/lsi_test.rb
 create mode 100644 test/n/lsi/word_list_test.rb
 create mode 100644 test/n/test_helper.rb
 create mode 100644 test/n/validators/classifier_validation.rb
 create mode 100644 test/test_helper.rb

diff --git a/test/bayes/bayesian_test.rb b/test/bayes/bayesian_test.rb
new file mode 100644
index 0000000..f2f355b
--- /dev/null
+++ b/test/bayes/bayesian_test.rb
@@ -0,0 +1,125 @@
+# encoding: utf-8
+
+require File.dirname(__FILE__) + '/../test_helper'
+class BayesianTest < Minitest::Test
+  def setup
+    @classifier = ClassifierReborn::Bayes.new 'Interesting', 'Uninteresting'
+  end
+
+  def test_good_training
+     assert_equal ['love'], @classifier.train_interesting('love')
+  end
+
+  def test_training_with_utf8
+    assert_equal ['Água'], @classifier.train_interesting('Água')
+  end
+
+  def test_stemming_enabled_by_default
+    assert @classifier.stemmer_enabled?
+  end
+
+  def test_bad_training
+    assert_raises(StandardError) { @classifier.train_no_category 'words' }
+  end
+
+  def test_bad_method
+    assert_raises(NoMethodError) { @classifier.forget_everything_you_know '' }
+  end
+
+  def test_categories
+    assert_equal %w(Interesting Uninteresting).sort, @classifier.categories.sort
+  end
+
+  def test_categories_from_array
+    another_classifier = ClassifierReborn::Bayes.new %w(Interesting Uninteresting)
+    assert_equal another_classifier.categories.sort, @classifier.categories.sort
+  end
+
+  def test_add_category
+    @classifier.add_category 'Test'
+    assert_equal %w(Test Interesting Uninteresting).sort, @classifier.categories.sort
+  end
+
+  def test_dynamic_category_succeeds_with_auto_categorize
+    classifier = ClassifierReborn::Bayes.new 'Interesting', 'Uninteresting', auto_categorize: true
+    classifier.train('Ruby', 'I really sweet language')
+    assert classifier.categories.include?('Ruby')
+  end
+
+  def test_dynamic_category_fails_without_auto_categorize
+    assert_raises(ClassifierReborn::Bayes::CategoryNotFoundError) do
+      @classifier.train('Ruby', 'A really sweet language')
+    end
+    refute @classifier.categories.include?('Ruby')
+  end
+
+  def test_classification
+    @classifier.train_interesting 'here are some good words. I hope you love them'
+    @classifier.train_uninteresting 'here are some bad words, I hate you'
+    assert_equal 'Uninteresting', @classifier.classify('I hate bad words and you')
+  end
+
+  def test_classification_with_threshold
+    b = ClassifierReborn::Bayes.new 'Digit'
+    assert_equal 1, b.categories.size
+
+    refute b.threshold_enabled?
+    b.enable_threshold
+    assert b.threshold_enabled?
+    assert_equal 0.0, b.threshold # default
+
+    b.threshold = -7.0
+
+    10.times do |a_number|
+      b.train_digit(a_number.to_s)
+      b.train_digit(a_number.to_s)
+    end
+
+    10.times do |a_number|
+      assert_equal 'Digit', b.classify(a_number.to_s)
+    end
+
+    refute b.classify('xyzzy')
+  end
+
+  def test_classification_with_threshold_again
+    b = ClassifierReborn::Bayes.new 'Normal'
+    assert_equal 1, b.categories.size
+
+    refute b.threshold_enabled?
+    b.enable_threshold
+    assert b.threshold_enabled?
+    assert_equal 0.0, b.threshold # default
+
+    %w(
+      http://example.com/about
+      http://example.com/contact
+      http://example.com/download
+      http://example.com/login
+      http://example.com/logout
+      http://example.com/blog/2015-04-01
+    ).each do |url|
+      b.train_normal(url)
+    end
+
+    assert 'Normal', b.classify('http://example.com')
+    refute b.classify("http://example.com/login/?user='select * from users;'")
+  end
+
+  def test_classification_with_score
+    @classifier.train_interesting 'here are some good words. I hope you love them'
+    @classifier.train_uninteresting 'here are some bad words, I hate you'
+    assert_in_delta(-4.85, @classifier.classify_with_score('I hate bad words and you')[1], 0.1)
+  end
+
+  def test_untrain
+    @classifier.train_interesting 'here are some good words. I hope you love them'
+    @classifier.train_uninteresting 'here are some bad words, I hate you'
+    @classifier.add_category 'colors'
+    @classifier.train_colors 'red orange green blue seven'
+    classification_of_bad_data = @classifier.classify 'seven'
+    @classifier.untrain_colors 'seven'
+    classification_after_untrain = @classifier.classify 'seven'
+    refute_equal classification_of_bad_data, classification_after_untrain
+  end
+end
diff --git a/test/data/stopwords/en b/test/data/stopwords/en
new file mode 100644
index 0000000..271c6a6
--- /dev/null
+++ b/test/data/stopwords/en
@@ -0,0 +1,4 @@
+These
+are
+custom
+stopwords
\ No newline at end of file
diff --git a/test/extensions/hasher_test.rb b/test/extensions/hasher_test.rb
new file mode 100644
index 0000000..336a8b7
--- /dev/null
+++ b/test/extensions/hasher_test.rb
@@ -0,0 +1,67 @@
+require_relative '../test_helper'
+require 'tempfile'
+
+class HasherTest < Minitest::Test
+  def setup
+    @original_stopwords_path = Hasher::STOPWORDS_PATH.dup
+  end
+
+  def test_word_hash
+    hash = { good: 1, :'!' => 1, hope: 1, :"'" => 1, :'.' => 1, love: 1, word: 1, them: 1, test: 1 }
+    assert_equal hash, Hasher.word_hash("here are some good words of test's. I hope you love them!")
+  end
+
+  def test_clean_word_hash
+    hash = { good: 1, word: 1, hope: 1, love: 1, them: 1, test: 1 }
+    assert_equal hash, Hasher.clean_word_hash("here are some good words of test's. I hope you love them!")
+  end
+
+  def test_clean_word_hash_without_stemming
+    hash = { good: 1, words: 1, hope: 1, love: 1, them: 1, tests: 1 }
+    assert_equal hash, Hasher.clean_word_hash("here are some good words of test's. I hope you love them!", 'en', false)
+  end
+
+  def test_default_stopwords
+    refute_empty Hasher::STOPWORDS['en']
+    refute_empty Hasher::STOPWORDS['fr']
+    assert_empty Hasher::STOPWORDS['gibberish']
+  end
+
+  def test_loads_custom_stopwords
+    default_english_stopwords = Hasher::STOPWORDS['en']
+
+    # Remove the english stopwords
+    Hasher::STOPWORDS.delete('en')
+
+    # Add a custom stopwords path
+    Hasher::STOPWORDS_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../data/stopwords')
+
+    custom_english_stopwords = Hasher::STOPWORDS['en']
+
+    refute_equal default_english_stopwords, custom_english_stopwords
+  end
+
+  def test_add_custom_stopword_path
+    # Create stopword tempfile in current directory
+    temp_stopwords = Tempfile.new('xy', "#{File.dirname(__FILE__) + "/"}")
+
+    # Add some stopwords to tempfile
+    temp_stopwords << "this words fun"
+    temp_stopwords.close
+
+    # Get path of tempfile
+    temp_stopwords_path = File.dirname(temp_stopwords)
+
+    # Get tempfile name.
+    temp_stopwords_name = File.basename(temp_stopwords.path)
+
+    Hasher.add_custom_stopword_path(temp_stopwords_path)
+    hash = { list: 1, cool: 1 }
+    assert_equal hash, Hasher.clean_word_hash("this is a list of cool words!", temp_stopwords_name)
+  end
+
+  def teardown
+    Hasher::STOPWORDS.clear
+    Hasher::STOPWORDS_PATH.clear.concat @original_stopwords_path
+  end
+end
diff --git a/test/lsi/lsi_test.rb b/test/lsi/lsi_test.rb
new file mode 100644
index 0000000..d20caf2
--- /dev/null
+++ b/test/lsi/lsi_test.rb
@@ -0,0 +1,203 @@
+require File.dirname(__FILE__) + '/../test_helper'
+
+class LSITest < Minitest::Test
+  def setup
+    # we repeat principle words to help weight them.
+    # This test is rather delicate, since this system is mostly noise.
+    @str1 = 'This text deals with dogs. Dogs.'
+    @str2 = 'This text involves dogs too. Dogs! '
+    @str3 = 'This text revolves around cats. Cats.'
+    @str4 = 'This text also involves cats. Cats!'
+    @str5 = 'This text involves birds. Birds.'
+  end
+
+  def test_basic_indexing
+    lsi = ClassifierReborn::LSI.new
+    [@str1, @str2, @str3, @str4, @str5].each { |x| lsi << x }
+    assert !lsi.needs_rebuild?
+
+    # note that the closest match to str1 is str2, even though it is not
+    # the closest text match.
+    assert_equal [@str2, @str5, @str3], lsi.find_related(@str1, 3)
+  end
+
+  def test_not_auto_rebuild
+    lsi = ClassifierReborn::LSI.new auto_rebuild: false
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    assert lsi.needs_rebuild?
+    lsi.build_index
+    assert !lsi.needs_rebuild?
+  end
+
+  def test_basic_categorizing
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    assert_equal 'Dog', lsi.classify(@str1)
+    assert_equal 'Cat', lsi.classify(@str3)
+    assert_equal 'Bird', lsi.classify(@str5)
+  end
+
+  def test_basic_categorizing_with_score
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    assert_in_delta 2.49, lsi.classify_with_score(@str1)[1], 0.1
+    assert_in_delta 1.41, lsi.classify_with_score(@str3)[1], 0.1
+    assert_in_delta 1.99, lsi.classify_with_score(@str5)[1], 0.1
+  end
+
+  def test_scored_categories
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    scored_categories = lsi.scored_categories('dog bird cat')
+    assert_equal 2, scored_categories.size
+    assert_equal %w(Bird Dog), scored_categories.map(&:first)
+  end
+
+  def test_external_classifying
+    lsi = ClassifierReborn::LSI.new
+    bayes = ClassifierReborn::Bayes.new 'Dog', 'Cat', 'Bird'
+    lsi.add_item @str1, 'Dog'
+    bayes.train_dog @str1
+    lsi.add_item @str2, 'Dog'
+    bayes.train_dog @str2
+    lsi.add_item @str3, 'Cat'
+    bayes.train_cat @str3
+    lsi.add_item @str4, 'Cat'
+    bayes.train_cat @str4
+    lsi.add_item @str5, 'Bird'
+    bayes.train_bird @str5
+
+    # We're talking about dogs. Even though the text matches the corpus on
+    # cats better.  Dogs have more semantic weight than cats. So bayes
+    # will fail here, but the LSI recognizes content.
+    tricky_case = 'This text revolves around dogs.'
+    assert_equal 'Dog', lsi.classify(tricky_case)
+    refute_equal 'Dog', bayes.classify(tricky_case)
+  end
+
+  def test_recategorize_interface
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    tricky_case = 'This text revolves around dogs.'
+    assert_equal 'Dog', lsi.classify(tricky_case)
+
+    # Recategorize as needed.
+    lsi.categories_for(@str1).clear.push 'Cow'
+    lsi.categories_for(@str2).clear.push 'Cow'
+
+    assert !lsi.needs_rebuild?
+    assert_equal 'Cow', lsi.classify(tricky_case)
+  end
+
+  def test_search
+    lsi = ClassifierReborn::LSI.new
+    [@str1, @str2, @str3, @str4, @str5].each { |x| lsi << x }
+
+    # Searching by content and text, note that @str2 comes up first, because
+    # both "dog" and "involve" are present. But, the next match is @str1 instead
+    # of @str4, because "dog" carries more weight than involves.
+    assert_equal([@str2, @str1, @str4, @str5, @str3],
+                 lsi.search('dog involves', 100))
+
+    # Keyword search shows how the space is mapped out in relation to
+    # dog when magnitude is remove. Note the relations. We move from dog
+    # through involve and then finally to other words.
+    assert_equal([@str1, @str2, @str4, @str5, @str3],
+                 lsi.search('dog', 5))
+  end
+
+  def test_serialize_safe
+    lsi = ClassifierReborn::LSI.new
+    [@str1, @str2, @str3, @str4, @str5].each { |x| lsi << x }
+
+    lsi_md = Marshal.dump lsi
+    lsi_m = Marshal.load lsi_md
+
+    assert_equal lsi_m.search('cat', 3), lsi.search('cat', 3)
+    assert_equal lsi_m.find_related(@str1, 3), lsi.find_related(@str1, 3)
+  end
+
+  def test_uncached_content_node_option
+    lsi = ClassifierReborn::LSI.new
+    [@str1, @str2, @str3, @str4, @str5].each { |x| lsi << x }
+    lsi.instance_variable_get(:@items).values.each do |node|
+      assert node.instance_of?(ContentNode)
+    end
+  end
+
+  def test_cached_content_node_option
+    lsi = ClassifierReborn::LSI.new(cache_node_vectors: true)
+    [@str1, @str2, @str3, @str4, @str5].each { |x| lsi << x }
+    lsi.instance_variable_get(:@items).values.each do |node|
+      assert node.instance_of?(CachedContentNode)
+    end
+  end
+
+  def test_clears_cached_content_node_cache
+    return unless $GSL
+
+    lsi = ClassifierReborn::LSI.new(cache_node_vectors: true)
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    assert_equal 'Dog', lsi.classify('something about dogs, but not an exact dog string')
+
+    first_content_node = lsi.instance_variable_get(:@items).values.first
+    refute_nil first_content_node.instance_variable_get(:@transposed_search_vector)
+    lsi.clear_cache!
+    assert_nil first_content_node.instance_variable_get(:@transposed_search_vector)
+  end
+
+  def test_keyword_search
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    assert_equal [:dog, :text, :deal], lsi.highest_ranked_stems(@str1)
+  end
+
+  def test_invalid_searching_when_using_gsl
+    return unless $GSL
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+    assert_output(/There are no documents that are similar to penguin/) { lsi.search('penguin') }
+  end
+
+  def test_warn_when_adding_bad_document
+    lsi = ClassifierReborn::LSI.new
+    assert_output(/Input: 'i can' is entirely stopwords or words with 2 or fewer characters. Classifier-Reborn cannot handle this document properly./) { lsi.add_item("i can") }
+  end
+
+  def test_summary
+    assert_equal 'This text involves dogs too [...] This text also involves cats', Summarizer.summary([@str1, @str2, @str3, @str4, @str5].join, 2)
+  end
+end
diff --git a/test/lsi/word_list_test.rb b/test/lsi/word_list_test.rb
new file mode 100644
index 0000000..deffc41
--- /dev/null
+++ b/test/lsi/word_list_test.rb
@@ -0,0 +1,33 @@
+require_relative '../test_helper'
+
+class WordListTest < Minitest::Test
+  def test_size_does_not_count_words_twice
+    list = ClassifierReborn::WordList.new
+    assert list.size == 0
+
+    list.add_word('hello')
+    assert list.size == 1
+
+    list.add_word('hello')
+    assert list.size == 1
+
+    list.add_word('world')
+    assert list.size == 2
+  end
+
+  def test_brackets_return_correct_position_based_on_add_order
+    list = ClassifierReborn::WordList.new
+    list.add_word('hello')
+    list.add_word('world')
+    assert list['hello'] == 0
+    assert list['world'] == 1
+  end
+
+  def test_word_for_index_returns_correct_word_based_on_add_order
+    list = ClassifierReborn::WordList.new
+    list.add_word('hello')
+    list.add_word('world')
+    assert list.word_for_index(0) == 'hello'
+    assert list.word_for_index(1) == 'world'
+  end
+end
diff --git a/test/n/backends/backend_common_tests.rb b/test/n/backends/backend_common_tests.rb
new file mode 100644
index 0000000..0cc4be3
--- /dev/null
+++ b/test/n/backends/backend_common_tests.rb
@@ -0,0 +1,70 @@
+# encoding: utf-8
+
+module BackendCommonTests
+  def test_initial_values
+    assert @backend.total_words.zero?
+    assert @backend.total_trainings.zero?
+    assert @backend.category_keys.empty?
+  end
+
+  def test_total_words
+    @backend.update_total_words(10)
+    assert_equal 10, @backend.total_words
+    @backend.update_total_words(-7)
+    assert_equal 3, @backend.total_words
+  end
+
+  def test_total_trainings
+    @backend.update_total_trainings(10)
+    assert_equal 10, @backend.total_trainings
+    @backend.update_total_trainings(-7)
+    assert_equal 3, @backend.total_trainings
+  end
+
+  def test_category_training
+    refute @backend.category_has_trainings?(:Interesting)
+    @backend.update_category_training_count(:Interesting, 10)
+    assert @backend.category_has_trainings?(:Interesting)
+    assert_equal 10, @backend.category_training_count(:Interesting)
+    @backend.update_category_training_count(:Interesting, -7)
+    assert_equal 3, @backend.category_training_count(:Interesting)
+  end
+
+  def test_category_word
+    @backend.update_category_word_count(:Interesting, 10)
+    assert_equal 10, @backend.category_word_count(:Interesting)
+    @backend.update_category_word_count(:Interesting, -7)
+    assert_equal 3, @backend.category_word_count(:Interesting)
+  end
+
+  def test_category
+    @backend.add_category(:Interesting)
+    @backend.add_category(:"Not so interesting")
+    assert_equal [:Interesting, :"Not so interesting"].sort, @backend.category_keys.sort
+  end
+
+  def test_category_word_frequency
+    @backend.add_category(:Interesting)
+    refute @backend.word_in_category?(:Interesting, "foo")
+    assert_equal 0, @backend.category_word_frequency(:Interesting, "foo")
+    @backend.update_category_word_frequency(:Interesting, "foo", 10)
+    assert @backend.word_in_category?(:Interesting, "foo")
+    assert_equal 10, @backend.category_word_frequency(:Interesting, "foo")
+    @backend.update_category_word_frequency(:Interesting, "foo", -7)
+    assert_equal 3, @backend.category_word_frequency(:Interesting, "foo")
+    @backend.delete_category_word(:Interesting, "foo")
+    refute @backend.word_in_category?(:Interesting, "foo")
+  end
+
+  def test_reset
+    @backend.update_total_words(10)
+    @backend.update_total_trainings(10)
+    @backend.add_category(:Interesting)
+    @backend.update_category_training_count(:Interesting, 10)
+    @backend.update_category_word_count(:Interesting, 10)
+    @backend.reset
+    assert @backend.total_words.zero?
+    assert @backend.total_trainings.zero?
+    assert @backend.category_keys.empty?
+  end
+end
diff --git a/test/n/backends/backend_memory_test.rb b/test/n/backends/backend_memory_test.rb
new file mode 100644
index 0000000..5a8a676
--- /dev/null
+++ b/test/n/backends/backend_memory_test.rb
@@ -0,0 +1,31 @@
+# encoding: utf-8
+
+require File.dirname(__FILE__) + '/../test_helper'
+require_relative './backend_common_tests'
+
+class BackendMemoryTest < Minitest::Test
+  include BackendCommonTests
+
+  def setup
+    @backend = ClassifierReborn::BayesMemoryBackend.new
+  end
+
+  def test_persistence
+    @backend.update_total_words(10)
+    @backend.update_total_trainings(10)
+    @backend.add_category(:Interesting)
+    @backend.update_category_training_count(:Interesting, 10)
+    @backend.update_category_word_count(:Interesting, 10)
+    @backend.update_category_word_frequency(:Interesting, 'foo', 10)
+
+    binary = Marshal.dump(@backend)
+    loaded_backend = Marshal.load(binary)
+
+    assert_equal @backend.total_words, loaded_backend.total_words
+    assert_equal @backend.total_trainings, loaded_backend.total_trainings
+    assert_equal @backend.category_training_count(:Interesting), loaded_backend.category_training_count(:Interesting)
+    assert_equal @backend.category_word_count(:Interesting), loaded_backend.category_word_count(:Interesting)
+    assert_equal @backend.category_word_frequency(:Interesting, 'foo'),
+                 loaded_backend.category_word_frequency(:Interesting, 'foo')
+  end
+end
diff --git a/test/n/backends/backend_redis_test.rb b/test/n/backends/backend_redis_test.rb
new file mode 100644
index 0000000..50616a8
--- /dev/null
+++ b/test/n/backends/backend_redis_test.rb
@@ -0,0 +1,21 @@
+# encoding: utf-8
+
+require File.dirname(__FILE__) + '/../test_helper'
+require_relative './backend_common_tests'
+
+class BackendRedisTest < Minitest::Test
+  include BackendCommonTests
+
+  def setup
+    begin
+      @backend = ClassifierReborn::BayesRedisBackend.new
+      @backend.instance_variable_get(:@redis).config(:set, "save", "")
+    rescue Redis::CannotConnectError => e
+      skip(e)
+    end
+  end
+
+  def teardown
+    @backend.reset if defined? @backend
+  end
+end
diff --git a/test/n/bayes/bayesian_common_benchmarks.rb b/test/n/bayes/bayesian_common_benchmarks.rb
new file mode 100644
index 0000000..2c4cc5c
--- /dev/null
+++ b/test/n/bayes/bayesian_common_benchmarks.rb
@@ -0,0 +1,72 @@
+# encoding: utf-8
+
+module BayesianCommonBenchmarks
+  MAX_RECORDS = 5000
+
+  class BenchmarkReporter < Minitest::Reporters::BaseReporter
+    include ANSI::Code
+
+    def before_suite(suite)
+      puts
+      puts ([suite] + BayesianCommonBenchmarks.bench_range).join("\t")
+    end
+
+    def after_suite(suite)
+    end
+
+    def report
+      super
+      puts
+      puts('Finished in %.5fs' % total_time)
+      print('%d tests, %d assertions, ' % [count, assertions])
+      color = failures.zero? && errors.zero? ? :green : :red
+      print(send(color) { '%d failures, %d errors, ' } % [failures, errors])
+      print(yellow { '%d skips' } % skips)
+      puts
+    end
+  end
+  Minitest::Reporters.use! BenchmarkReporter.new
+
+  def self.bench_range
+    (Minitest::Benchmark.bench_exp(1, MAX_RECORDS) << MAX_RECORDS).uniq
+  end
+
+  def insufficient_data?
+    @data.length < MAX_RECORDS
+  end
+
+  def bench_train
+    assert_performance_linear do |n|
+      n.times do |i|
+        parts = @data[i].strip.split("\t")
+        @classifiers[n].train(parts.first, parts.last)
+      end
+    end
+  end
+
+  def bench_train_untrain
+    assert_performance_linear do |n|
+      n.times do |i|
+        parts = @data[i].strip.split("\t")
+        @classifiers[n].train(parts.first, parts.last)
+      end
+      n.times do |i|
+        parts = @data[i].strip.split("\t")
+        @classifiers[n].untrain(parts.first, parts.last)
+      end
+    end
+  end
+
+  def bench_train_classify
+    assert_performance_linear do |n|
+      n.times do |i|
+        parts = @data[i].strip.split("\t")
+        @classifiers[n].train(parts.first, parts.last)
+      end
+      n.times do |i|
+        parts = @data[i].strip.split("\t")
+        @classifiers[n].classify(parts.last)
+      end
+    end
+  end
+end
diff --git a/test/n/bayes/bayesian_common_tests.rb b/test/n/bayes/bayesian_common_tests.rb
new file mode 100644
index 0000000..902ba92
--- /dev/null
+++ b/test/n/bayes/bayesian_common_tests.rb
@@ -0,0 +1,231 @@
+# encoding: utf-8
+
+module BayesianCommonTests
+  def test_good_training
+    assert_equal ['love'], @classifier.train_interesting('love')
+  end
+
+  def test_training_with_utf8
+    assert_equal ['Água'], @classifier.train_interesting('Água')
+  end
+
+  def test_stemming_enabled_by_default
+    assert @classifier.stemmer_enabled?
+  end
+
+  def test_bad_training
+    assert_raises(StandardError) { @classifier.train_no_category 'words' }
+  end
+
+  def test_bad_method
+    assert_raises(NoMethodError) { @classifier.forget_everything_you_know '' }
+  end
+
+  def test_categories
+    assert_equal %w(Interesting Uninteresting).sort, @classifier.categories.sort
+  end
+
+  def test_categories_from_array
+    assert_equal another_classifier.categories.sort, @classifier.categories.sort
+  end
+
+  def test_add_category
+    @classifier.add_category 'Test'
+    assert_equal %w(Test Interesting Uninteresting).sort, @classifier.categories.sort
+  end
+
+  def test_dynamic_category_succeeds_with_auto_categorize
+    classifier = auto_categorize_classifier
+    classifier.train('Ruby', 'A really sweet language')
+    assert classifier.categories.include?('Ruby')
+  end
+
+  def test_dynamic_category_succeeds_with_empty_categories
+    classifier = empty_classifier
+    assert classifier.categories.empty?
+    classifier.train('Ruby', 'A really sweet language')
+    assert classifier.categories.include?('Ruby')
+    assert_equal 1, classifier.categories.size
+  end
+
+  def test_dynamic_category_fails_without_auto_categorize
+    assert_raises(ClassifierReborn::Bayes::CategoryNotFoundError) do
+      @classifier.train('Ruby', 'A really sweet language')
+    end
+    refute @classifier.categories.include?('Ruby')
+  end
+
+  def test_dynamic_category_fails_with_useless_classifier
+    classifier = useless_classifier
+    assert classifier.categories.empty?
+    assert_raises(ClassifierReborn::Bayes::CategoryNotFoundError) do
+      classifier.train('Ruby', 'A really sweet language')
+    end
+    refute classifier.categories.include?('Ruby')
+  end
+
+  def test_classification
+    @classifier.train_interesting 'here are some good words. I hope you love them'
+    @classifier.train_uninteresting 'here are some bad words, I hate you'
+    assert_equal 'Uninteresting', @classifier.classify('I hate bad words and you')
+  end
+
+  def test_classification_with_threshold
+    b = threshold_classifier('Number')
+    assert_equal 1, b.categories.size
+
+    refute b.threshold_enabled?
+    b.enable_threshold
+    assert b.threshold_enabled?
+    assert_equal 0.0, b.threshold # default
+
+    b.threshold = -4.0
+
+    ['one', 'two', 'three', 'four', 'five'].each do |a_number|
+      b.train_number(a_number)
+      b.train_number(a_number)
+    end
+
+    ['one', 'two', 'three', 'four', 'five'].each do |a_number|
+      assert_equal 'Number', b.classify(a_number)
+    end
+
+    refute b.classify('xyzzy')
+  end
+
+  def test_classification_with_threshold_again
+    b = threshold_classifier('Normal')
+    assert_equal 1, b.categories.size
+
+    refute b.threshold_enabled?
+    b.enable_threshold
+    assert b.threshold_enabled?
+    assert_equal 0.0, b.threshold # default
+
+    %w(
+      http://example.com/about
+      http://example.com/contact
+      http://example.com/download
+      http://example.com/login
+      http://example.com/logout
+      http://example.com/blog/2015-04-01
+    ).each do |url|
+      b.train_normal(url)
+    end
+
+    assert 'Normal', b.classify('http://example.com')
+    refute b.classify("http://example.com/login/?user='select * from users;'")
+  end
+
+  def test_classification_with_score
+    @classifier.train_interesting 'here are some good words. I hope you love them'
+    @classifier.train_uninteresting 'here are some bad words, I hate you'
+    assert_in_delta(-4.85, @classifier.classify_with_score('I hate bad words and you')[1], 0.1)
+  end
+
+  def test_untrain
+    @classifier.train_interesting 'here are some good words. I hope you love them'
+    @classifier.train_uninteresting 'here are some bad words, I hate you'
+    @classifier.add_category 'colors'
+    @classifier.train_colors 'red orange green blue seven'
+    classification_of_bad_data = @classifier.classify 'seven'
+    @classifier.untrain_colors 'seven'
+    classification_after_untrain = @classifier.classify 'seven'
+    refute_equal classification_of_bad_data, classification_after_untrain
+  end
+
+  def test_skip_empty_training_and_classification
+    classifier = empty_classifier
+    classifier.train('Ruby', '')
+    assert classifier.categories.empty?
+    classifier.train('Ruby', 'To be or not to be')
+    assert classifier.categories.empty?
+    classifier.train('Ruby', 'A really sweet language')
+    refute classifier.categories.empty?
+    assert_equal Float::INFINITY, classifier.classify_with_score('To be or not to be')[1]
+  end
+
+  def test_empty_string_stopwords
+    classifier = empty_string_stopwords_classifier
+    classifier.train('Stopwords', 'To be or not to be')
+    refute classifier.categories.empty?
+    refute_equal Float::INFINITY, classifier.classify_with_score('To be or not to be')[1]
+  end
+
+  def test_empty_array_stopwords
+    classifier = empty_array_stopwords_classifier
+    classifier.train('Stopwords', 'To be or not to be')
+    refute classifier.categories.empty?
+    refute_equal Float::INFINITY, classifier.classify_with_score('To be or not to be')[1]
+  end
+
+  def test_custom_array_stopwords
+    classifier = array_stopwords_classifier
+    classifier.train('Stopwords', 'Custom stopwords')
+    assert classifier.categories.empty?
+    classifier.train('Stopwords', 'To be or not to be')
+    refute classifier.categories.empty?
+    assert_equal Float::INFINITY, classifier.classify_with_score('These stopwords')[1]
+    refute_equal Float::INFINITY, classifier.classify_with_score('To be or not to be')[1]
+  end
+
+  def test_custom_file_stopwords
+    classifier = file_stopwords_classifier
+    classifier.train('Stopwords', 'Custom stopwords')
+    assert classifier.categories.empty?
+    classifier.train('Stopwords', 'To be or not to be')
+    refute classifier.categories.empty?
+    assert_equal Float::INFINITY, classifier.classify_with_score('These stopwords')[1]
+    refute_equal Float::INFINITY, classifier.classify_with_score('To be or not to be')[1]
+  end
+
+  def test_reset
+    @classifier.add_category 'Test'
+    assert_equal %w(Test Interesting Uninteresting).sort, @classifier.categories.sort
+    @classifier.reset
+    assert_equal %w(Interesting Uninteresting).sort, @classifier.categories.sort
+    classifier = empty_classifier
+    classifier.train('Ruby', 'A really sweet language')
+    assert classifier.categories.include?('Ruby')
+    classifier.reset
+    assert classifier.categories.empty?
+  end
+
+  private
+
+  def another_classifier
+    ClassifierReborn::Bayes.new %w(Interesting Uninteresting), backend: @alternate_backend
+  end
+
+  def auto_categorize_classifier
+    ClassifierReborn::Bayes.new 'Interesting', 'Uninteresting', auto_categorize: true, backend: @alternate_backend
+  end
+
+  def threshold_classifier(category)
+    ClassifierReborn::Bayes.new category, backend: @alternate_backend
+  end
+
+  def empty_classifier
+    ClassifierReborn::Bayes.new backend: @alternate_backend
+  end
+
+  def useless_classifier
+    ClassifierReborn::Bayes.new auto_categorize: false, backend: @alternate_backend
+  end
+
+  def empty_string_stopwords_classifier
+    ClassifierReborn::Bayes.new stopwords: "", backend: @alternate_backend
+  end
+
+  def empty_array_stopwords_classifier
+    ClassifierReborn::Bayes.new stopwords: [], backend: @alternate_backend
+  end
+
+  def array_stopwords_classifier
+    ClassifierReborn::Bayes.new stopwords: ["these", "are", "custom", "stopwords"], backend: @alternate_backend
+  end
+
+  def file_stopwords_classifier
+    ClassifierReborn::Bayes.new stopwords: File.dirname(__FILE__) + '/../data/stopwords/en', backend: @alternate_backend
+  end
+end
diff --git a/test/n/bayes/bayesian_integration_test.rb b/test/n/bayes/bayesian_integration_test.rb
new file mode 100644
index 0000000..83fcb97
--- /dev/null
+++ b/test/n/bayes/bayesian_integration_test.rb
@@ -0,0 +1,63 @@
+# encoding: utf-8
+
+require File.dirname(__FILE__) + '/../test_helper'
+require_relative '../data/test_data_loader'
+
+class BayesianIntegrationTest < Minitest::Test
+  TRAINING_SIZE = 4000
+  TESTING_SIZE = 1000
+
+  def setup
+    begin
+      @memory_classifier = ClassifierReborn::Bayes.new 'Ham', 'Spam'
+      @redis_backend = ClassifierReborn::BayesRedisBackend.new
+      @redis_backend.instance_variable_get(:@redis).config(:set, "save", "")
+      @redis_classifier = ClassifierReborn::Bayes.new 'Ham', 'Spam', backend: @redis_backend
+    rescue Redis::CannotConnectError => e
+      skip(e)
+    end
+    data = TestDataLoader.sms_data
+    if data.length < TRAINING_SIZE + TESTING_SIZE
+      TestDataLoader.report_insufficient_data(data.length, TRAINING_SIZE + TESTING_SIZE)
+      skip(e)
+    end
+    @training_set = data[0, TRAINING_SIZE]
+    @testing_set = data[TRAINING_SIZE, TESTING_SIZE]
+  end
+
+  def teardown
+    @redis_backend.reset unless @redis_backend.nil?
+  end
+
+  def test_equality_of_backends
+    train_model @memory_classifier
+    train_model @redis_classifier
+    assert_equal classification_scores(@memory_classifier).hash, classification_scores(@redis_classifier).hash
+    untrain_model @memory_classifier, TRAINING_SIZE/2
+    untrain_model @redis_classifier, TRAINING_SIZE/2
+    assert_equal classification_scores(@memory_classifier).hash, classification_scores(@redis_classifier).hash
+  end
+
+  def train_model(classifier)
+    @training_set.each do |line|
+      parts = line.strip.split("\t")
+      classifier.train(parts.first, parts.last)
+    end
+  end
+
+  def untrain_model(classifier, limit=Float::INFINITY)
+    @training_set.each_with_index do |line, i|
+      break if i >= limit
+      parts = line.strip.split("\t")
+      classifier.untrain(parts.first, parts.last)
+    end
+  end
+
+  def classification_scores(classifier)
+    @testing_set.collect do |line|
+      parts = line.strip.split("\t")
+      result, score = classifier.classify_with_score(parts.last)
+      score.infinite? ? "irrelevant" : "#{result}:#{score}"
+    end
+  end
+end
diff --git a/test/n/bayes/bayesian_memory_benchmark.rb b/test/n/bayes/bayesian_memory_benchmark.rb
new file mode 100755
index 0000000..1a0db31
--- /dev/null
+++ b/test/n/bayes/bayesian_memory_benchmark.rb
@@ -0,0 +1,25 @@
+# encoding: utf-8
+
+require File.dirname(__FILE__) + '/../test_helper'
+require_relative './bayesian_common_benchmarks'
+require_relative '../data/test_data_loader'
+
+class BayesianMemoryBenchmark < Minitest::Benchmark
+  include BayesianCommonBenchmarks
+
+  def self.bench_range
+    BayesianCommonBenchmarks.bench_range
+  end
+
+  def setup
+    @data = TestDataLoader.sms_data
+    if insufficient_data?
+      TestDataLoader.report_insufficient_data(@data.length, MAX_RECORDS)
+      skip
+    end
+    @classifiers = {}
+    self.class.bench_range.each do |n|
+      @classifiers[n] = ClassifierReborn::Bayes.new 'Ham', 'Spam'
+    end
+  end
+end
diff --git a/test/n/bayes/bayesian_memory_test.rb b/test/n/bayes/bayesian_memory_test.rb
new file mode 100755
index 0000000..ff1c599
--- /dev/null
+++ b/test/n/bayes/bayesian_memory_test.rb
@@ -0,0 +1,18 @@
+# encoding: utf-8
+
+require File.dirname(__FILE__) + '/../test_helper'
+require_relative './bayesian_common_tests'
+
+class BayesianMemoryTest < Minitest::Test
+  include BayesianCommonTests
+
+  def setup
+    @alternate_backend = ClassifierReborn::BayesMemoryBackend.new
+    @classifier = ClassifierReborn::Bayes.new 'Interesting', 'Uninteresting'
+    @old_stopwords = Hasher::STOPWORDS['en']
+  end
+
+  def teardown
+    Hasher::STOPWORDS['en'] = @old_stopwords
+  end
+end
diff --git a/test/n/bayes/bayesian_redis_benchmark.rb b/test/n/bayes/bayesian_redis_benchmark.rb
new file mode 100644
index 0000000..c079bf7
--- /dev/null
+++ b/test/n/bayes/bayesian_redis_benchmark.rb
@@ -0,0 +1,39 @@
+# encoding: utf-8
+
+require File.dirname(__FILE__) + '/../test_helper'
+require_relative './bayesian_common_benchmarks'
+require_relative '../data/test_data_loader'
+
+class BayesianRedisBenchmark < Minitest::Benchmark
+  include BayesianCommonBenchmarks
+
+  def self.bench_range
+    BayesianCommonBenchmarks.bench_range
+  end
+
+  def setup
+    @data = TestDataLoader.sms_data
+    if insufficient_data?
+      TestDataLoader.report_insufficient_data(@data.length, MAX_RECORDS)
+      skip
+    end
+    @classifiers = {}
+    self.class.bench_range.each_with_index do |n, i|
+      begin
+        redis_backend = ClassifierReborn::BayesRedisBackend.new(db: i)
+        redis_backend.instance_variable_get(:@redis).config(:set, "save", "")
+        @classifiers[n] = ClassifierReborn::Bayes.new 'Ham', 'Spam', backend: redis_backend
+      rescue Redis::CannotConnectError => e
+        skip(e)
+      end
+    end
+  end
+
+  def teardown
+    if defined? @classifiers
+      self.class.bench_range.each do |n|
+        @classifiers[n].reset
+      end
+    end
+  end
+end
diff --git a/test/n/bayes/bayesian_redis_test.rb b/test/n/bayes/bayesian_redis_test.rb
new file mode 100644
index 0000000..2b16930
--- /dev/null
+++ b/test/n/bayes/bayesian_redis_test.rb
@@ -0,0 +1,28 @@
+# encoding: utf-8
+
+require File.dirname(__FILE__) + '/../test_helper'
+require_relative './bayesian_common_tests'
+
+class BayesianRedisTest < Minitest::Test
+  include BayesianCommonTests
+
+  def setup
+    begin
+      @old_stopwords = Hasher::STOPWORDS['en']
+      @backend = ClassifierReborn::BayesRedisBackend.new
+      @backend.instance_variable_get(:@redis).config(:set, "save", "")
+      @alternate_backend = ClassifierReborn::BayesRedisBackend.new(db: 1)
+      @classifier = ClassifierReborn::Bayes.new 'Interesting', 'Uninteresting', backend: @backend
+    rescue Redis::CannotConnectError => e
+      skip(e)
+    end
+  end
+
+  def teardown
+    Hasher::STOPWORDS['en'] = @old_stopwords
+    if defined? @backend
+      @backend.reset
+      @alternate_backend.reset
+    end
+  end
+end
diff --git a/test/n/data/corpus/README.md b/test/n/data/corpus/README.md
new file mode 100644
index 0000000..6795ea6
--- /dev/null
+++ b/test/n/data/corpus/README.md
@@ -0,0 +1,5 @@
+# Sample dtasets for training and testing
+
+## SMSSpamCollection.tsv
+
+The [SMS Spam Collection v.1](http://dcomp.sor.ufscar.br/talmeida/smsspamcollection/) is a public set of SMS labeled messages that have been collected for mobile phone spam research. It has one collection composed by 5,574 English, real and non-enconded messages, tagged according being `ham` (legitimate) or `spam`.
diff --git a/test/n/data/corpus/SMSSpamCollection.tsv b/test/n/data/corpus/SMSSpamCollection.tsv
new file mode 100644
index 0000000..02462fc
--- /dev/null
+++ b/test/n/data/corpus/SMSSpamCollection.tsv
@@ -0,0 +1,5574 @@
+ham	Go until jurong point, crazy.. Available only in bugis n great world la e buffet... Cine there got amore wat...
+ham	Ok lar... Joking wif u oni...
+spam	Free entry in 2 a wkly comp to win FA Cup final tkts 21st May 2005. Text FA to 87121 to receive entry question(std txt rate)T&C's apply 08452810075over18's
+ham	U dun say so early hor... U c already then say...
+ham	Nah I don't think he goes to usf, he lives around here though
+spam	FreeMsg Hey there darling it's been 3 week's now and no word back! I'd like some fun you up for it still? Tb ok! XxX std chgs to send, £1.50 to rcv
+ham	Even my brother is not like to speak with me. They treat me like aids patent.
+ham	As per your request 'Melle Melle (Oru Minnaminunginte Nurungu Vettam)' has been set as your callertune for all Callers. Press *9 to copy your friends Callertune
+spam	WINNER!! As a valued network customer you have been selected to receivea £900 prize reward! To claim call 09061701461. Claim code KL341. Valid 12 hours only.
+spam	Had your mobile 11 months or more? U R entitled to Update to the latest colour mobiles with camera for Free! Call The Mobile Update Co FREE on 08002986030
+ham	I'm gonna be home soon and i don't want to talk about this stuff anymore tonight, k? I've cried enough today.
+spam	SIX chances to win CASH! From 100 to 20,000 pounds txt> CSH11 and send to 87575. Cost 150p/day, 6days, 16+ TsandCs apply Reply HL 4 info
+spam	URGENT! You have won a 1 week FREE membership in our £100,000 Prize Jackpot! Txt the word: CLAIM to No: 81010 T&C www.dbuk.net LCCLTD POBOX 4403LDNW1A7RW18
+ham	I've been searching for the right words to thank you for this breather. I promise i wont take your help for granted and will fulfil my promise. You have been wonderful and a blessing at all times.
+ham	I HAVE A DATE ON SUNDAY WITH WILL!!
+spam	XXXMobileMovieClub: To use your credit, click the WAP link in the next txt message or click here>> http://wap. xxxmobilemovieclub.com?n=QJKGIGHJJGCBL
+ham	Oh k...i'm watching here:)
+ham	Eh u remember how 2 spell his name... Yes i did. He v naughty make until i v wet.
+ham	Fine if that’s the way u feel. That’s the way its gota b
+spam	England v Macedonia - dont miss the goals/team news. Txt ur national team to 87077 eg ENGLAND to 87077 Try:WALES, SCOTLAND 4txt/ú1.20 POBOXox36504W45WQ 16+
+ham	Is that seriously how you spell his name?
+ham	I‘m going to try for 2 months ha ha only joking
+ham	So ü pay first lar... Then when is da stock comin...
+ham	Aft i finish my lunch then i go str down lor. Ard 3 smth lor. U finish ur lunch already?
+ham	Ffffffffff. Alright no way I can meet up with you sooner?
+ham	Just forced myself to eat a slice. I'm really not hungry tho. This sucks. Mark is getting worried. He knows I'm sick when I turn down pizza. Lol
+ham	Lol your always so convincing.
+ham	Did you catch the bus ? Are you frying an egg ? Did you make a tea? Are you eating your mom's left over dinner ? Do you feel my Love ?
+ham	I'm back &amp; we're packing the car now, I'll let you know if there's room
+ham	Ahhh. Work. I vaguely remember that! What does it feel like? Lol
+ham	Wait that's still not all that clear, were you not sure about me being sarcastic or that that's why x doesn't want to live with us
+ham	Yeah he got in at 2 and was v apologetic. n had fallen out and she was actin like spoilt child and he got caught up in that. Till 2! But we won't go there! Not doing too badly cheers. You? 
+ham	K tell me anything about you.
+ham	For fear of fainting with the of all that housework you just did? Quick have a cuppa
+spam	Thanks for your subscription to Ringtone UK your mobile will be charged £5/month Please confirm by replying YES or NO. If you reply NO you will not be charged
+ham	Yup... Ok i go home look at the timings then i msg ü again... Xuhui going to learn on 2nd may too but her lesson is at 8am
+ham	Oops, I'll let you know when my roommate's done
+ham	I see the letter B on my car
+ham	Anything lor... U decide...
+ham	Hello! How's you and how did saturday go? I was just texting to see if you'd decided to do anything tomo. Not that i'm trying to invite myself or anything!
+ham	Pls go ahead with watts. I just wanted to be sure. Do have a great weekend. Abiola
+ham	Did I forget to tell you ? I want you , I need you, I crave you ... But most of all ... I love you my sweet Arabian steed ... Mmmmmm ... Yummy
+spam	07732584351 - Rodger Burns - MSG = We tried to call you re your reply to our sms for a free nokia mobile + free camcorder. Please call now 08000930705 for delivery tomorrow
+ham	WHO ARE YOU SEEING?
+ham	Great! I hope you like your man well endowed. I am  &lt;#&gt;  inches...
+ham	No calls..messages..missed calls
+ham	Didn't you get hep b immunisation in nigeria.
+ham	Fair enough, anything going on?
+ham	Yeah hopefully, if tyler can't do it I could maybe ask around a bit
+ham	U don't know how stubborn I am. I didn't even want to go to the hospital. I kept telling Mark I'm not a weak sucker. Hospitals are for weak suckers.
+ham	What you thinked about me. First time you saw me in class.
+ham	A gram usually runs like  &lt;#&gt; , a half eighth is smarter though and gets you almost a whole second gram for  &lt;#&gt;
+ham	K fyi x has a ride early tomorrow morning but he's crashing at our place tonight
+ham	Wow. I never realized that you were so embarassed by your accomodations. I thought you liked it, since i was doing the best i could and you always seemed so happy about "the cave". I'm sorry I didn't and don't have more to give. I'm sorry i offered. I'm sorry your room was so embarassing.
+spam	SMS. ac Sptv: The New Jersey Devils and the Detroit Red Wings play Ice Hockey. Correct or Incorrect? End? Reply END SPTV
+ham	Do you know what Mallika Sherawat did yesterday? Find out now @  &lt;URL&gt;
+spam	Congrats! 1 year special cinema pass for 2 is yours. call 09061209465 now! C Suprman V, Matrix3, StarWars3, etc all 4 FREE! bx420-ip4-5we. 150pm. Dont miss out! 
+ham	Sorry, I'll call later in meeting.
+ham	Tell where you reached
+ham	Yes..gauti and sehwag out of odi series.
+ham	Your gonna have to pick up a $1 burger for yourself on your way home. I can't even move. Pain is killing me.
+ham	Ha ha ha good joke. Girls are situation seekers.
+ham	Its a part of checking IQ
+ham	Sorry my roommates took forever, it ok if I come by now?
+ham	Ok lar i double check wif da hair dresser already he said wun cut v short. He said will cut until i look nice.
+spam	As a valued customer, I am pleased to advise you that following recent review of your Mob No. you are awarded with a £1500 Bonus Prize, call 09066364589
+ham	Today is "song dedicated day.." Which song will u dedicate for me? Send this to all ur valuable frnds but first rply me...
+spam	Urgent UR awarded a complimentary trip to EuroDisinc Trav, Aco&Entry41 Or £1000. To claim txt DIS to 87121 18+6*£1.50(moreFrmMob. ShrAcomOrSglSuplt)10, LS1 3AJ
+spam	Did you hear about the new "Divorce Barbie"? It comes with all of Ken's stuff!
+ham	I plane to give on this month end.
+ham	Wah lucky man... Then can save money... Hee...
+ham	Finished class where are you.
+ham	HI BABE IM AT HOME NOW WANNA DO SOMETHING? XX
+ham	K..k:)where are you?how did you performed?
+ham	U can call me now...
+ham	I am waiting machan. Call me once you free.
+ham	Thats cool. i am a gentleman and will treat you with dignity and respect.
+ham	I like you peoples very much:) but am very shy pa.
+ham	Does not operate after  &lt;#&gt;  or what
+ham	Its not the same here. Still looking for a job. How much do Ta's earn there.
+ham	Sorry, I'll call later
+ham	K. Did you call me just now ah? 
+ham	Ok i am on the way to home hi hi
+ham	You will be in the place of that man
+ham	Yup next stop.
+ham	I call you later, don't have network. If urgnt, sms me.
+ham	For real when u getting on yo? I only need 2 more tickets and one more jacket and I'm done. I already used all my multis.
+ham	Yes I started to send requests to make it but pain came back so I'm back in bed. Double coins at the factory too. I gotta cash in all my nitros.
+ham	I'm really not up to it still tonight babe
+ham	Ela kano.,il download, come wen ur free..
+ham	Yeah do! Don‘t stand to close tho- you‘ll catch something!
+ham	Sorry to be a pain. Is it ok if we meet another night? I spent late afternoon in casualty and that means i haven't done any of y stuff42moro and that includes all my time sheets and that. Sorry. 
+ham	Smile in Pleasure Smile in Pain Smile when trouble pours like Rain Smile when sum1 Hurts U Smile becoz SOMEONE still Loves to see u Smiling!!
+spam	Please call our customer service representative on 0800 169 6031 between 10am-9pm as you have WON a guaranteed £1000 cash or £5000 prize!
+ham	Havent planning to buy later. I check already lido only got 530 show in e afternoon. U finish work already?
+spam	Your free ringtone is waiting to be collected. Simply text the password "MIX" to 85069 to verify. Get Usher and Britney. FML, PO Box 5249, MK17 92H. 450Ppw 16
+ham	Watching telugu movie..wat abt u?
+ham	i see. When we finish we have loads of loans to pay
+ham	Hi. Wk been ok - on hols now! Yes on for a bit of a run. Forgot that i have hairdressers appointment at four so need to get home n shower beforehand. Does that cause prob for u?"
+ham	I see a cup of coffee animation
+ham	Please don't text me anymore. I have nothing else to say.
+ham	Okay name ur price as long as its legal! Wen can I pick them up? Y u ave x ams xx
+ham	I'm still looking for a car to buy. And have not gone 4the driving test yet.
+ham	As per your request 'Melle Melle (Oru Minnaminunginte Nurungu Vettam)' has been set as your callertune for all Callers. Press *9 to copy your friends Callertune
+ham	wow. You're right! I didn't mean to do that. I guess once i gave up on boston men and changed my search location to nyc, something changed. Cuz on my signin page it still says boston.
+ham	Umma my life and vava umma love you lot dear
+ham	Thanks a lot for your wishes on my birthday. Thanks you for making my birthday truly memorable.
+ham	Aight, I'll hit you up when I get some cash
+ham	How would my ip address test that considering my computer isn't a minecraft server
+ham	I know! Grumpy old people. My mom was like you better not be lying. Then again I am always the one to play jokes...
+ham	Dont worry. I guess he's busy.
+ham	What is the plural of the noun research?
+ham	Going for dinner.msg you after.
+ham	I'm ok wif it cos i like 2 try new things. But i scared u dun like mah. Cos u said not too loud.
+spam	GENT! We are trying to contact you. Last weekends draw shows that you won a £1000 prize GUARANTEED. Call 09064012160. Claim Code K52. Valid 12hrs only. 150ppm
+ham	Wa, ur openin sentence very formal... Anyway, i'm fine too, juz tt i'm eatin too much n puttin on weight...Haha... So anythin special happened?
+ham	As I entered my cabin my PA said, '' Happy B'day Boss !!''. I felt special. She askd me 4 lunch. After lunch she invited me to her apartment. We went there.
+spam	You are a winner U have been specially selected 2 receive £1000 or a 4* holiday (flights inc) speak to a live operator 2 claim 0871277810910p/min (18+) 
+ham	Goodo! Yes we must speak friday - egg-potato ratio for tortilla needed! 
+ham	Hmm...my uncle just informed me that he's paying the school directly. So pls buy food.
+spam	PRIVATE! Your 2004 Account Statement for 07742676969 shows 786 unredeemed Bonus Points. To claim call 08719180248 Identifier Code: 45239 Expires
+spam	URGENT! Your Mobile No. was awarded £2000 Bonus Caller Prize on 5/9/03 This is our final try to contact U! Call from Landline 09064019788 BOX42WR29C, 150PPM
+ham	here is my new address -apples&pairs&all that malarky
+spam	Todays Voda numbers ending 7548 are selected to receive a $350 award. If you have a match please call 08712300220 quoting claim code 4041 standard rates app
+ham	I am going to sao mu today. Will be done only at 12 
+ham	Ü predict wat time ü'll finish buying?
+ham	Good stuff, will do.
+ham	Just so that you know,yetunde hasn't sent money yet. I just sent her a text not to bother sending. So its over, you dont have to involve yourself in anything. I shouldn't have imposed anything on you in the first place so for that, i apologise.
+ham	Are you there in room.
+ham	HEY GIRL. HOW R U? HOPE U R WELL ME AN DEL R BAK! AGAIN LONG TIME NO C! GIVE ME A CALL SUM TIME FROM LUCYxx
+ham	K..k:)how much does it cost?
+ham	I'm home.
+ham	Dear, will call Tmorrow.pls accomodate.
+ham	First answer my question.
+spam	Sunshine Quiz Wkly Q! Win a top Sony DVD player if u know which country the Algarve is in? Txt ansr to 82277. £1.50 SP:Tyrone
+spam	Want 2 get laid tonight? Want real Dogging locations sent direct 2 ur mob? Join the UK's largest Dogging Network bt Txting GRAVEL to 69888! Nt. ec2a. 31p.msg@150p
+ham	I only haf msn. It's yijue@hotmail.com
+ham	He is there. You call and meet him
+ham	No no. I will check all rooms befor activities
+spam	You'll not rcv any more msgs from the chat svc. For FREE Hardcore services text GO to: 69988 If u get nothing u must Age Verify with yr network & try again
+ham	Got c... I lazy to type... I forgot ü in lect... I saw a pouch but like not v nice...
+ham	K, text me when you're on the way
+ham	Sir, Waiting for your mail.
+ham	A swt thought: "Nver get tired of doing little things 4 lovable persons.." Coz..somtimes those little things occupy d biggest part in their Hearts.. Gud ni8
+ham	I know you are. Can you pls open the back?
+ham	Yes see ya not on the dot
+ham	Whats the staff name who is taking class for us?
+spam	FreeMsg Why haven't you replied to my text? I'm Randy, sexy, female and live local. Luv to hear from u. Netcollex Ltd 08700621170150p per msg reply Stop to end
+ham	Ummma.will call after check in.our life will begin from qatar so pls pray very hard.
+ham	K..i deleted my contact that why?
+ham	Sindu got job in birla soft ..
+ham	The wine is flowing and i'm i have nevering..
+ham	Yup i thk cine is better cos no need 2 go down 2 plaza mah.
+ham	Ok... Ur typical reply...
+ham	As per your request 'Melle Melle (Oru Minnaminunginte Nurungu Vettam)' has been set as your callertune for all Callers. Press *9 to copy your friends Callertune
+ham	You are everywhere dirt, on the floor, the windows, even on my shirt. And sometimes when i open my mouth, you are all that comes flowing out. I dream of my world without you, then half my chores are out too. A time of joy for me, lots of tv shows i.ll see. But i guess like all things you just must exist, like rain, hail and mist, and when my time here is done, you and i become one.
+ham	Aaooooright are you at work?
+ham	I'm leaving my house now...
+ham	Hello, my love. What are you doing? Did you get to that interview today? Are you you happy? Are you being a good boy? Do you think of me?Are you missing me ?
+spam	Customer service annoncement. You have a New Years delivery waiting for you. Please call 07046744435 now to arrange delivery
+spam	You are a winner U have been specially selected 2 receive £1000 cash or a 4* holiday (flights inc) speak to a live operator 2 claim 0871277810810
+ham	Keep yourself safe for me because I need you and I miss you already and I envy everyone that see's you in real life
+ham	New car and house for my parents.:)i have only new job in hand:)
+ham	I'm so in love with you. I'm excited each day i spend with you. You make me so happy.
+spam	-PLS STOP bootydelious (32/F) is inviting you to be her friend. Reply YES-434 or NO-434 See her: www.SMS.ac/u/bootydelious STOP? Send STOP FRND to 62468
+spam	BangBabes Ur order is on the way. U SHOULD receive a Service Msg 2 download UR content. If U do not, GoTo wap. bangb. tv on UR mobile internet/service menu
+ham	I place all ur points on e cultures module already.
+spam	URGENT! We are trying to contact you. Last weekends draw shows that you have won a £900 prize GUARANTEED. Call 09061701939. Claim code S89. Valid 12hrs only
+ham	Hi frnd, which is best way to avoid missunderstding wit our beloved one's?
+ham	Great escape. I fancy the bridge but needs her lager. See you tomo 
+ham	Yes :)it completely in out of form:)clark also utter waste.
+ham	Sir, I need AXIS BANK account no and bank address.
+ham	Hmmm.. Thk sure got time to hop ard... Ya, can go 4 free abt... Muz call u to discuss liao... 
+ham	What time you coming down later? 
+ham	Bloody hell, cant believe you forgot my surname Mr . Ill give u a clue, its spanish and begins with m... 
+ham	Well, i'm gonna finish my bath now. Have a good...fine night.
+ham	Let me know when you've got the money so carlos can make the call
+ham	U still going to the mall?
+ham	Turns out my friends are staying for the whole show and won't be back til ~ &lt;#&gt; , so feel free to go ahead and smoke that $ &lt;#&gt;  worth
+ham	Text her. If she doesnt reply let me know so i can have her log in
+ham	Hi! You just spoke to MANEESHA V. We'd like to know if you were satisfied with the experience. Reply Toll Free with Yes or No.
+ham	You lifted my hopes with the offer of money. I am in need. Especially when the end of the month approaches and it hurts my studying. Anyways have a gr8 weekend
+ham	Lol no. U can trust me.
+ham	ok. I am a gentleman and will treat you with dignity and respect.
+ham	He will, you guys close?
+ham	Going on nothing great.bye
+ham	Hello handsome ! Are you finding that job ? Not being lazy ? Working towards getting back that net for mummy ? Where's my boytoy now ? Does he miss me ?
+ham	Haha awesome, be there in a minute
+spam	Please call our customer service representative on FREEPHONE 0808 145 4742 between 9am-11pm as you have WON a guaranteed £1000 cash or £5000 prize!
+ham	Have you got Xmas radio times. If not i will get it now
+ham	I jus reached home. I go bathe first. But my sis using net tell u when she finishes k...
+spam	Are you unique enough? Find out from 30th August. www.areyouunique.co.uk
+ham	I'm sorry. I've joined the league of people that dont keep in touch. You mean a great deal to me. You have been a friend at all times even at great personal cost. Do have a great week.|
+ham	Hi :)finally i completed the course:)
+ham	It will stop on itself. I however suggest she stays with someone that will be able to give ors for every stool.
+ham	How are you doing? Hope you've settled in for the new school year. Just wishin you a gr8 day
+ham	Gud mrng dear hav a nice day
+ham	Did u got that persons story
+ham	is your hamster dead? Hey so tmr i meet you at 1pm orchard mrt? 
+ham	Hi its Kate how is your evening? I hope i can see you tomorrow for a bit but i have to bloody babyjontet! Txt back if u can. :) xxx
+ham	Found it, ENC  &lt;#&gt; , where you at?
+ham	I sent you  &lt;#&gt;  bucks
+ham	Hello darlin ive finished college now so txt me when u finish if u can love Kate xxx
+ham	Your account has been refilled successfully by INR  &lt;DECIMAL&gt; . Your KeralaCircle prepaid account balance is Rs  &lt;DECIMAL&gt; . Your Transaction ID is KR &lt;#&gt; .
+ham	Goodmorning sleeping ga.
+ham	U call me alter at 11 ok.
+ham	Ü say until like dat i dun buy ericsson oso cannot oredi lar...
+ham	As I entered my cabin my PA said, '' Happy B'day Boss !!''. I felt special. She askd me 4 lunch. After lunch she invited me to her apartment. We went there.
+ham	Aight yo, dats straight dogg
+ham	You please give us connection today itself before  &lt;DECIMAL&gt;  or refund the bill
+ham	Both :) i shoot big loads so get ready!
+ham	What's up bruv, hope you had a great break. Do have a rewarding semester.
+ham	Home so we can always chat
+ham	K:)k:)good:)study well.
+ham	Yup... How ü noe leh...
+ham	Sounds great! Are you home now?
+ham	Finally the match heading towards draw as your prediction.
+ham	Tired. I haven't slept well the past few nights.
+ham	Easy ah?sen got selected means its good..
+ham	I have to take exam with march 3
+ham	Yeah you should. I think you can use your gt atm now to register. Not sure but if there's anyway i can help let me know. But when you do be sure you are ready.
+ham	Ok no prob. Take ur time.
+ham	There is os called ubandu which will run without installing in hard disk...you can use that os to copy the important files in system and give it to repair shop..
+ham	Sorry, I'll call later
+ham	U say leh... Of course nothing happen lar. Not say v romantic jus a bit only lor. I thk e nite scenery not so nice leh.
+spam	500 New Mobiles from 2004, MUST GO! Txt: NOKIA to No: 89545 & collect yours today!From ONLY £1 www.4-tc.biz 2optout 087187262701.50gbp/mtmsg18
+ham	Would really appreciate if you call me. Just need someone to talk to.
+spam	Will u meet ur dream partner soon? Is ur career off 2 a flyng start? 2 find out free, txt HORO followed by ur star sign, e. g. HORO ARIES
+ham	Hey company elama po mudyadhu.
+ham	Life is more strict than teacher... Bcoz Teacher teaches lesson &amp; then conducts exam, But Life first conducts Exam &amp; then teaches Lessons. Happy morning. . .
+ham	Dear good morning now only i am up
+ham	Get down in gandhipuram and walk to cross cut road. Right side &lt;#&gt; street road and turn at first right.
+ham	Dear we are going to our rubber place
+ham	Sorry battery died, yeah I'm here
+ham	Yes:)here tv is always available in work place..
+spam	Text & meet someone sexy today. U can find a date or even flirt its up to U. Join 4 just 10p. REPLY with NAME & AGE eg Sam 25. 18 -msg recd@thirtyeight pence
+ham	I have printed it oh. So  &lt;#&gt;  come upstairs
+ham	Or ill be a little closer like at the bus stop on the same street
+ham	Where are you?when wil you reach here?
+ham	New Theory: Argument wins d SITUATION, but loses the PERSON. So dont argue with ur friends just.. . . . kick them &amp; say, I'm always correct.!
+spam	U 447801259231 have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094597
+ham	Tomarrow final hearing on my laptop case so i cant.
+ham	PLEASSSSSSSEEEEEE TEL ME V AVENT DONE SPORTSx
+ham	Okay. No no, just shining on. That was meant to be signing, but that sounds better.
+ham	Although i told u dat i'm into baig face watches now but i really like e watch u gave cos it's fr u. Thanx 4 everything dat u've done today, i'm touched...
+ham	U don't remember that old commercial?
+ham	Too late. I said i have the website. I didn't i have or dont have the slippers
+ham	I asked you to call him now ok
+ham	Kallis wont bat in 2nd innings.
+ham	It didnt work again oh. Ok goodnight then. I.ll fix and have it ready by the time you wake up. You are very dearly missed have a good night sleep.
+spam	Congratulations ur awarded 500 of CD vouchers or 125gift guaranteed & Free entry 2 100 wkly draw txt MUSIC to 87066 TnCs www.Ldew.com1win150ppmx3age16
+ham	Ranjith cal drpd Deeraj and deepak 5min hold
+ham	Wen ur lovable bcums angry wid u, dnt take it seriously.. Coz being angry is d most childish n true way of showing deep affection, care n luv!.. kettoda manda... Have nice day da.
+ham	What you doing?how are you?
+ham	Ups which is 3days also, and the shipping company that takes 2wks. The other way is usps which takes a week but when it gets to lag you may have to bribe nipost to get your stuff.
+ham	I'm back, lemme know when you're ready
+ham	Don't necessarily expect it to be done before you get back though because I'm just now headin out
+ham	Mmm so yummy babe ... Nice jolt to the suzy
+ham	Where are you lover ? I need you ...
+spam	We tried to contact you re your reply to our offer of a Video Handset? 750 anytime networks mins? UNLIMITED TEXT? Camcorder? Reply or call 08000930705 NOW
+ham	I‘m parked next to a MINI!!!! When are you coming in today do you think?
+ham	Yup
+ham	Anyway i'm going shopping on my own now. Cos my sis not done yet. Dun disturb u liao.
+ham	MY NO. IN LUTON 0125698789 RING ME IF UR AROUND! H*
+spam	Hey I am really horny want to chat or see me naked text hot to 69698 text charged at 150pm to unsubscribe text stop 69698
+ham	Why you Dint come with us.
+ham	Same. Wana plan a trip sometme then
+ham	Not sure yet, still trying to get a hold of him
+spam	Ur ringtone service has changed! 25 Free credits! Go to club4mobiles.com to choose content now! Stop? txt CLUB STOP to 87070. 150p/wk Club4 PO Box1146 MK45 2WT
+ham	The evo. I just had to download flash. Jealous?
+spam	Ringtone Club: Get the UK singles chart on your mobile each week and choose any top quality ringtone! This message is free of charge.
+ham	Come to mu, we're sorting out our narcotics situation
+ham	Night has ended for another day, morning has come in a special way. May you smile like the sunny rays and leaves your worries at the blue blue bay.
+spam	HMV BONUS SPECIAL 500 pounds of genuine HMV vouchers to be won. Just answer 4 easy questions. Play Now! Send HMV to 86688 More info:www.100percent-real.com
+ham	Usf I guess, might as well take 1 car
+ham	No objection. My bf not coming.
+ham	Thanx...
+ham	Tell rob to mack his gf in the theater
+ham	Awesome, I'll see you in a bit
+ham	Just sent it. So what type of food do you like?
+ham	All done? All handed in? Celebrations in full swing yet?
+ham	You got called a tool?
+ham	"Wen u miss someone, the person is definitely special for u..... But if the person is so special, why to miss them, just Keep-in-touch" gdeve..
+ham	Ok. I asked for money how far
+ham	Okie...
+ham	Yeah I think my usual guy's still passed out from last night, if you get ahold of anybody let me know and I'll throw down
+ham	K, I might come by tonight then if my class lets out early
+ham	Ok..
+ham	hi baby im cruisin with my girl friend what r u up 2? give me a call in and hour at home if thats alright or fone me on this fone now love jenny xxx
+ham	My life Means a lot to me, Not because I love my life, But because I love the people in my life, The world calls them friends, I call them my World:-).. Ge:-)..
+ham	Dear,shall mail tonite.busy in the street,shall update you tonite.things are looking ok.varunnathu edukkukayee raksha ollu.but a good one in real sense.
+ham	Hey you told your name to gautham ah?
+ham	Haf u found him? I feel so stupid da v cam was working.
+ham	Oops. 4 got that bit.
+ham	Are you this much buzy
+ham	I accidentally deleted the message. Resend please.
+spam	T-Mobile customer you may now claim your FREE CAMERA PHONE upgrade & a pay & go sim card for your loyalty. Call on 0845 021 3680.Offer ends 28thFeb.T&C's apply
+ham	Unless it's a situation where YOU GO GURL would be more appropriate
+ham	Hurt me... Tease me... Make me cry... But in the end of my life when i die plz keep one rose on my grave and say STUPID I MISS U.. HAVE A NICE DAY BSLVYL
+ham	I cant pick the phone right now. Pls send a message
+ham	Need a coffee run tomo?Can't believe it's that time of week already
+ham	Awesome, I remember the last time we got somebody high for the first time with diesel :V
+ham	Shit that is really shocking and scary, cant imagine for a second. Def up for night out. Do u think there is somewhere i could crash for night, save on taxi?
+ham	Oh and by the way you do have more food in your fridge! Want to go out for a meal tonight? 
+ham	He is a womdarfull actor
+spam	SMS. ac Blind Date 4U!: Rodds1 is 21/m from Aberdeen, United Kingdom. Check Him out http://img. sms. ac/W/icmb3cktz8r7!-4 no Blind Dates send HIDE
+ham	Yup... From what i remb... I think should be can book... 
+ham	Jos ask if u wana meet up?
+ham	Lol yes. Our friendship is hanging on a thread cause u won't buy stuff.
+spam	TheMob> Check out our newest selection of content, Games, Tones, Gossip, babes and sport, Keep your mobile fit and funky text WAP to 82468
+ham	Where are the garage keys? They aren't on the bookshelf
+ham	Today is ACCEPT DAY..U Accept me as? Brother Sister Lover Dear1 Best1 Clos1 Lvblefrnd Jstfrnd Cutefrnd Lifpartnr Belovd Swtheart Bstfrnd No rply means enemy
+spam	Think ur smart ? Win £200 this week in our weekly quiz, text PLAY to 85222 now!T&Cs WinnersClub PO BOX 84, M26 3UZ. 16+. GBP1.50/week
+ham	He says he'll give me a call when his friend's got the money but that he's definitely buying before the end of the week
+ham	Hi the way I was with u 2day, is the normal way&this is the real me. UR unique&I hope I know u 4 the rest of mylife. Hope u find wot was lost.
+ham	You made my day. Do have a great day too.
+ham	K.k:)advance happy pongal.
+ham	Hmmm... Guess we can go 4 kb n power yoga... Haha, dunno we can tahan power yoga anot... Thk got lo oso, forgot liao...
+ham	Not really dude, have no friends i'm afraid :(
+spam	December only! Had your mobile 11mths+? You are entitled to update to the latest colour camera mobile for Free! Call The Mobile Update Co FREE on 08002986906
+ham	Coffee cake, i guess...
+ham	Merry Christmas to you too babe, i love ya *kisses*
+ham	Hey... Why dont we just go watch x men and have lunch... Haha 
+ham	cud u tell ppl im gona b a bit l8 cos 2 buses hav gon past cos they were full & im still waitin 4 1. Pete x
+ham	That would be great. We'll be at the Guild. Could meet on Bristol road or somewhere - will get in touch over weekend. Our plans take flight! Have a good week
+ham	No problem. How are you doing?
+ham	No calls..messages..missed calls
+ham	Hi da:)how is the todays class?
+ham	I'd say that's a good sign but, well, you know my track record at reading women
+ham	Cool, text me when you're parked
+ham	I'm reading the text i just sent you. Its meant to be a joke. So read it in that light
+ham	K.k:)apo k.good movie.
+ham	Maybe i could get book out tomo then return it immediately ..? Or something.
+spam	Call Germany for only 1 pence per minute! Call from a fixed line via access number 0844 861 85 85. No prepayment. Direct access!
+ham	Any chance you might have had with me evaporated as soon as you violated my privacy by stealing my phone number from your employer's paperwork. Not cool at all. Please do not contact me again or I will report you to your supervisor.
+spam	Valentines Day Special! Win over £1000 in our quiz and take your partner on the trip of a lifetime! Send GO to 83600 now. 150p/msg rcvd. CustCare:08718720201.
+ham	Ta-Daaaaa! I am home babe, are you still up ?
+ham	Cool. So how come you havent been wined and dined before?
+ham	Just sleeping..and surfing
+ham	Sorry, I'll call later
+ham	U calling me right? Call my hand phone...
+ham	Ok that's great thanx a lot.
+ham	I take it the post has come then! You must have 1000s of texts now! Happy reading. My one from wiv hello caroline at the end is my favourite. Bless him
+ham	Where u been hiding stranger?
+ham	Am not interested to do like that.
+ham	My sister cleared two round in birla soft yesterday.
+ham	Gudnite....tc...practice going on
+ham	Dis is yijue. I jus saw ur mail. In case huiming havent sent u my num. Dis is my num.
+ham	One small prestige problem now.
+spam	Fancy a shag? I do.Interested? sextextuk.com txt XXUK SUZY to 69876. Txts cost 1.50 per msg. TnCs on website. X
+ham	Just checking in on you. Really do miss seeing Jeremiah. Do have a great month
+ham	Nah can't help you there, I've never had an iphone
+ham	If you're not in my car in an hour and a half I'm going apeshit
+ham	TODAY is Sorry day.! If ever i was angry with you, if ever i misbehaved or hurt you? plz plz JUST SLAP URSELF Bcoz, Its ur fault, I'm basically GOOD
+ham	Yo you guys ever figure out how much we need for alcohol? Jay and I are trying to figure out how much we can safely spend on weed
+ham	&lt;#&gt; ISH MINUTES WAS 5 MINUTES AGO. WTF.
+ham	Thank You for calling.Forgot to say Happy Onam to you Sirji.I am fine here and remembered you when i met an insurance person.Meet You in Qatar Insha Allah.Rakhesh, ex Tata AIG who joined TISSCO,Tayseer.
+spam	Congratulations ur awarded 500 of CD vouchers or 125gift guaranteed & Free entry 2 100 wkly draw txt MUSIC to 87066 TnCs www.Ldew.com1win150ppmx3age16
+spam	Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send CASH to 86688 only 150p/msg. CC: 08708800282 HG/Suite342/2Lands Row/W1J6HL
+ham	I'm an actor. When i work, i work in the evening and sleep late. Since i'm unemployed at the moment, i ALWAYS sleep late. When you're unemployed, every day is saturday.
+ham	Hello! Just got here, st andrews-boy its a long way! Its cold. I will keep you posted
+ham	Ha ha cool cool chikku chikku:-):-DB-)
+ham	Oh ok no prob..
+ham	Check audrey's status right now
+ham	Busy here. Trying to finish for new year. I am looking forward to finally meeting you...
+ham	Good afternoon sunshine! How dawns that day ? Are we refreshed and happy to be alive? Do we breathe in the air and smile ? I think of you, my love ... As always
+ham	Well i know Z will take care of me. So no worries.
+spam	Update_Now - Xmas Offer! Latest Motorola, SonyEricsson & Nokia & FREE Bluetooth! Double Mins & 1000 Txt on Orange. Call MobileUpd8 on 08000839402 or call2optout/F4Q=
+spam	Here is your discount code RP176781. To stop further messages reply stop. www.regalportfolio.co.uk. Customer Services 08717205546
+ham	Wat uniform? In where get?
+ham	Cool, text me when you're ready
+ham	Hello my boytoy ... Geeee I miss you already and I just woke up. I wish you were here in bed with me, cuddling me. I love you ...
+ham	I will spoil you in bed as well :)
+ham	I'm going for bath will msg you next  &lt;#&gt;  min..
+ham	I cant keep talking to people if am not sure i can pay them if they agree to price. So pls tell me what you want to really buy and how much you are willing to pay
+spam	Thanks for your Ringtone Order, Reference T91. You will be charged GBP 4 per week. You can unsubscribe at anytime by calling customer services on 09057039994
+ham	Can you say what happen
+ham	You could have seen me..i did't recognise you Face.:)
+ham	Well there's not a lot of things happening in Lindsay on New years *sighs* Some bars in Ptbo and the blue heron has something going
+ham	Keep my payasam there if rinu brings
+ham	I taught that Ranjith sir called me. So only i sms like that. Becaus hes verifying about project. Prabu told today so only pa dont mistake me..
+ham	I guess that's why you re worried. You must know that there's a way the body repairs itself. And i'm quite sure you shouldn't worry. We'll take it slow. First the tests, they will guide when your ovulation is then just relax. Nothing you've said is a reason to worry but i.ll keep on followin you up.
+ham	Yeah sure, give me a couple minutes to track down my wallet
+ham	Hey leave it. not a big deal:-) take care.
+ham	Hey i will be late ah... Meet you at 945+
+spam	Double mins and txts 4 6months FREE Bluetooth on Orange. Available on Sony, Nokia Motorola phones. Call MobileUpd8 on 08000839402 or call2optout/N9DX
+ham	It took Mr owl 3 licks
+ham	Customer place i will call you.
+ham	Mm that time you dont like fun
+spam	4mths half price Orange line rental & latest camera phones 4 FREE. Had your phone 11mths ? Call MobilesDirect free on 08000938767 to update now! or2stoptxt
+ham	Yup having my lunch buffet now.. U eat already?
+ham	Huh so late... Fr dinner?
+ham	Hey so this sat are we going for the intro pilates only? Or the kickboxing too? 
+ham	Morning only i can ok.
+ham	Yes i think so. I am in office but my lap is in room i think thats on for the last few days. I didnt shut that down
+ham	Pick you up bout 7.30ish? What time are  and that going?
+ham	From here after The performance award is calculated every two month.not for current one month period..
+ham	Was actually sleeping and still might when u call back. So a text is gr8. You rock sis. Will send u a text wen i wake.
+ham	You are always putting your business out there. You put pictures of your ass on facebook. You are one of the most open people i've ever met. Why would i think a picture of your room would hurt you, make you feel violated.
+ham	Good evening Sir, Al Salam Wahleykkum.sharing a happy news.By the grace of God, i got an offer from Tayseer,TISSCO and i joined.Hope you are fine.Inshah Allah,meet you sometime.Rakhesh,visitor from India.
+ham	Hmmm...k...but i want to change the field quickly da:-)i wanna get system administrator or network administrator..
+spam	FREE RINGTONE text FIRST to 87131 for a poly or text GET to 87131 for a true tone! Help? 0845 2814032 16 after 1st free, tones are 3x£150pw to e£nd txt stop
+ham	Dear how is chechi. Did you talk to her
+ham	The hair cream has not been shipped.
+ham	None of that's happening til you get here though
+ham	Yep, the great loxahatchee xmas tree burning of  &lt;#&gt;  starts in an hour
+ham	Haha get used to driving to usf man, I know a lot of stoners
+ham	All was well until slightly disastrous class this pm with my fav darlings! Hope day off ok. Coffee wld be good as can't stay late tomorrow. Same time + place as always?
+ham	Hello! Good week? Fancy a drink or something later?
+ham	Headin towards busetop
+ham	Message:some text missing* Sender:Name Missing* *Number Missing *Sent:Date missing *Missing U a lot thats y everything is missing sent via fullonsms.com
+ham	Come by our room at some point so we can iron out the plan for this weekend
+ham	Cos i want it to be your thing
+ham	Okies... I'll go yan jiu too... We can skip ard oso, go cine den go mrt one, blah blah blah... 
+ham	Bring home some Wendy =D
+spam	100 dating service cal;l 09064012103 box334sk38ch
+ham	Whatsup there. Dont u want to sleep
+ham	Alright i have a new goal now
+spam	FREE entry into our £250 weekly competition just text the word WIN to 80086 NOW. 18 T&C www.txttowin.co.uk
+ham	Alright, I'll head out in a few minutes, text me where to meet you
+spam	Send a logo 2 ur lover - 2 names joined by a heart. Txt LOVE NAME1 NAME2 MOBNO eg LOVE ADAM EVE 07123456789 to 87077 Yahoo! POBox36504W45WQ TxtNO 4 no ads 150p
+ham	Yes:)from last week itself i'm taking live call.
+spam	Someone has contacted our dating service and entered your phone because they fancy you! To find out who it is call from a landline 09111032124 . PoBox12n146tf150p
+ham	Siva is in hostel aha:-.
+spam	URGENT! Your Mobile number has been awarded with a £2000 prize GUARANTEED. Call 09058094455 from land line. Claim 3030. Valid 12hrs only
+ham	Send this to ur friends and receive something about ur voice..... How is my speaking expression? 1.childish 2.naughty 3.Sentiment 4.rowdy 5.ful of attitude 6.romantic 7.shy 8.Attractive 9.funny  &lt;#&gt; .irritating  &lt;#&gt; .lovable. reply me..
+ham	Ok. She'll be ok. I guess
+ham	aathi..where are you dear..
+ham	Any pain on urination any thing else?
+ham	7 at esplanade.. Do ü mind giving me a lift cos i got no car today..
+ham	I wnt to buy a BMW car urgently..its vry urgent.but hv a shortage of  &lt;#&gt; Lacs.there is no source to arng dis amt. &lt;#&gt; lacs..thats my prob
+ham	At home watching tv lor.
+ham	Does she usually take fifteen fucking minutes to respond to a yes or no question
+spam	Congrats! Nokia 3650 video camera phone is your Call 09066382422 Calls cost 150ppm Ave call 3mins vary from mobiles 16+ Close 300603 post BCM4284 Ldn WC1N3XX
+ham	Booked ticket for pongal?
+ham	You available now? I'm like right around hillsborough &amp;  &lt;#&gt; th
+ham	The message sent is askin for  &lt;#&gt; dollars. Shoul i pay  &lt;#&gt;  or  &lt;#&gt; ?
+ham	Ask g or iouri, I've told the story like ten times already
+ham	How long does applebees fucking take
+ham	Hi hope u get this txt~journey hasnt been gd,now about 50 mins late I think.
+ham	But i have to. I like to have love and arrange.
+ham	Yes..he is really great..bhaji told kallis best cricketer after sachin in world:).very tough to get out.
+ham	You were supposed to wake ME up &gt;:(
+ham	Oic... I saw him too but i tot he din c me... I found a group liao...
+ham	Sorry, I'll call later
+ham	"HEY HEY WERETHE MONKEESPEOPLE SAY WE MONKEYAROUND! HOWDY GORGEOUS, HOWU DOIN? FOUNDURSELF A JOBYET SAUSAGE?LOVE JEN XXX"
+ham	Sorry, my battery died, I can come by but I'm only getting a gram for now, where's your place?
+ham	Well done, blimey, exercise, yeah, i kinda remember wot that is, hmm. 
+ham	I wont get concentration dear you know you are my mind and everything :-)
+ham	LOL ... Have you made plans for new years?
+ham	10 min later k...
+ham	hanks lotsly!
+ham	Thanks for this hope you had a good day today
+ham	K:)k:)what are detail you want to transfer?acc no enough?
+ham	Ok i will tell her to stay out. Yeah its been tough but we are optimistic things will improve this month.
+spam	Loan for any purpose £500 - £75,000. Homeowners + Tenants welcome. Have you been previously refused? We can still help. Call Free 0800 1956669 or text back 'help'
+ham	Si si. I think ill go make those oreo truffles.
+ham	LOOK AT AMY URE A BEAUTIFUL, INTELLIGENT WOMAN AND I LIKE U A LOT. I KNOW U DON’T LIKE ME LIKE THAT SO DON’T WORRY.
+ham	I hope you that's the result of being consistently intelligent and kind. Start asking him about practicum links and keep your ears open and all the best. ttyl
+ham	1.20 that call cost. Which i guess isnt bad. Miss ya, need ya, want ya, love ya
+ham	Going thru a very different feeling.wavering decisions and coping up with the same is the same individual.time will heal everything i believe.
+ham	Where did u go? My phone is gonna die you have to stay in here
+ham	Great. Never been better. Each day gives even more reasons to thank God
+spam	UpgrdCentre Orange customer, you may now claim your FREE CAMERA PHONE upgrade for your loyalty. Call now on 0207 153 9153. Offer ends 26th July. T&C's apply. Opt-out available
+ham	Sorry, I'll call later ok bye
+ham	Ok i am on the way to railway
+ham	great princess! I love giving and receiving oral. Doggy style is my fave position. How about you? I enjoy making love  &lt;#&gt;  times per night :)
+ham	They don't put that stuff on the roads to keep it from getting slippery over there?
+ham	When are you going to ride your bike?
+ham	Yup, no need. I'll jus wait 4 e rain 2 stop.
+ham	There are many company. Tell me the language.
+spam	okmail: Dear Dave this is your final notice to collect your 4* Tenerife Holiday or #5000 CASH award! Call 09061743806 from landline. TCs SAE Box326 CW25WX 150ppm
+ham	How long has it been since you screamed, princess?
+ham	Nothing. I meant that once the money enters your account here, the bank will remove its flat rate. Someone transfered  &lt;#&gt;  to my account and  &lt;#&gt; dollars got removed. So the banks differ and charges also differ.be sure you trust the 9ja person you are sending account details to cos...
+spam	Want 2 get laid tonight? Want real Dogging locations sent direct 2 ur Mob? Join the UK's largest Dogging Network by txting MOAN to 69888Nyt. ec2a. 31p.msg@150p
+ham	Nice line said by a broken heart- Plz don't cum 1 more times infront of me... Other wise once again I ll trust U... Good 9t:)
+ham	Ok I'm gonna head up to usf in like fifteen minutes
+ham	Love you aathi..love u lot..
+ham	Tension ah?what machi?any problem?
+ham	K, can I pick up another 8th when you're done?
+ham	When're you guys getting back? G said you were thinking about not staying for mcr
+ham	Almost there, see u in a sec
+ham	Yo carlos, a few friends are already asking me about you, you working at all this weekend?
+ham	Watching tv lor...
+ham	Thank you baby! I cant wait to taste the real thing...
+ham	You should change your fb to jaykwon thuglyfe falconerf
+ham	If we win its really no 1 side for long time.
+spam	FREE MESSAGE Activate your 500 FREE Text Messages by replying to this message with the word FREE For terms & conditions, visit www.07781482378.com
+ham	Dear reached railway. What happen to you
+ham	Depends on quality. If you want the type i sent boye, faded glory, then about 6. If you want ralphs maybe 2
+ham	I think i've fixed it can you send a test message?
+ham	Sorry man my account's dry or I would, if you want we could trade back half or I could buy some shit with my credit card
+spam	Congrats! 1 year special cinema pass for 2 is yours. call 09061209465 now! C Suprman V, Matrix3, StarWars3, etc all 4 FREE! bx420-ip4-5we. 150pm. Dont miss out!
+ham	Sorry,in meeting I'll call later
+ham	What class of  &lt;#&gt;  reunion?
+ham	Are you free now?can i call now?
+ham	Got meh... When?
+ham	Nope... Think i will go for it on monday... Sorry i replied so late
+ham	Some of them told accenture is not confirm. Is it true.
+ham	Kate jackson rec center before 7ish, right?
+ham	Dear i have reache room
+ham	Fighting with the world is easy, u either win or lose bt fightng with some1 who is close to u is dificult if u lose - u lose if u win - u still lose.
+ham	When can ü come out?
+ham	Check with nuerologist.
+ham	Lolnice. I went from a fish to ..water.?
+spam	+123 Congratulations - in this week's competition draw u have won the £1450 prize to claim just call 09050002311 b4280703. T&Cs/stop SMS 08718727868. Over 18 only 150ppm
+ham	No it's waiting in e car dat's bored wat. Cos wait outside got nothing 2 do. At home can do my stuff or watch tv wat.
+ham	Maybe westshore or hyde park village, the place near my house?
+ham	You should know now. So how's anthony. Are you bringing money. I've school fees to pay and rent and stuff like that. Thats why i need your help. A friend in need....|
+ham	What's the significance?
+ham	Your opinion about me? 1. Over 2. Jada 3. Kusruthi 4. Lovable 5. Silent 6. Spl character 7. Not matured 8. Stylish 9. Simple Pls reply..
+ham	8 at the latest, g's still there if you can scrounge up some ammo and want to give the new ak a try
+ham	Prabha..i'm soryda..realy..frm heart i'm sory
+ham	Lol ok your forgiven :)
+ham	No..jst change tat only..
+spam	You are guaranteed the latest Nokia Phone, a 40GB iPod MP3 player or a £500 prize! Txt word: COLLECT to No: 83355! IBHltd LdnW15H 150p/Mtmsgrcvd18+
+ham	S:)no competition for him.
+spam	Boltblue tones for 150p Reply POLY# or MONO# eg POLY3 1. Cha Cha Slide 2. Yeah 3. Slow Jamz 6. Toxic 8. Come With Me or STOP 4 more tones txt MORE
+spam	Your credits have been topped up for http://www.bubbletext.com Your renewal Pin is tgxxrz
+ham	That way transport is less problematic than on sat night. By the way, if u want to ask  n  to join my bday, feel free. But need to know definite nos as booking on fri. 
+ham	Usually the person is unconscious that's in children but in adults they may just behave abnormally. I.ll call you now
+ham	But that's on ebay it might be less elsewhere.
+ham	Shall i come to get pickle
+ham	Were gonna go get some tacos
+ham	That's very rude, you on campus?
+spam	URGENT!: Your Mobile No. was awarded a £2,000 Bonus Caller Prize on 02/09/03! This is our 2nd attempt to contact YOU! Call 0871-872-9755 BOX95QU
+ham	Hi i won't b ard 4 christmas. But do enjoy n merry x'mas.
+spam	Today's Offer! Claim ur £150 worth of discount vouchers! Text YES to 85023 now! SavaMob, member offers mobile! T Cs 08717898035. £3.00 Sub. 16 . Unsub reply X
+ham	Yes! How is a pretty lady like you single?
+spam	You will recieve your tone within the next 24hrs. For Terms and conditions please see Channel U Teletext Pg 750
+ham	Jay says that you're a double-faggot
+spam	PRIVATE! Your 2003 Account Statement for 07815296484 shows 800 un-redeemed S.I.M. points. Call 08718738001 Identifier Code 41782 Expires 18/11/04 
+ham	What Today-sunday..sunday is holiday..so no work..
+ham	Gudnite....tc...practice going on
+ham	I'll be late...
+ham	I've not called you in a while. This is hoping it was l8r malaria and that you know that we miss you guys. I miss Bani big, so pls give her my love especially. Have a great day.
+ham	Good afternoon, my love! How goes that day ? I hope maybe you got some leads on a job. I think of you, boytoy and send you a passionate kiss from across the sea
+ham	Probably gonna be here for a while, see you later tonight &lt;)
+ham	Or maybe my fat fingers just press all these buttons and it doesn't know what to do.
+ham	Ummmmmaah Many many happy returns of d day my dear sweet heart.. HAPPY BIRTHDAY dear
+ham	I am in tirupur da, once you started from office call me.
+spam	from www.Applausestore.com MonthlySubscription@50p/msg max6/month T&CsC web age16 2stop txt stop
+ham	A famous quote : when you develop the ability to listen to 'anything' unconditionally without losing your temper or self confidence, it means you are ......... 'MARRIED'
+ham	But am going to college pa. What to do. are else ill come there it self. Pa.
+ham	4 oclock at mine. Just to bash out a flat plan.
+ham	This girl does not stay in bed. This girl doesn't need recovery time. Id rather pass out while having fun then be cooped up in bed
+ham	Then any special there?
+ham	I know but you need to get hotel now. I just got my invitation but i had to apologise. Cali is to sweet for me to come to some english bloke's weddin
+ham	Sorry that took so long, omw now
+ham	Wait  &lt;#&gt;  min..
+ham	Ok give me 5 minutes I think I see her. BTW you're my alibi. You were cutting my hair the whole time.
+ham	Imagine you finally get to sink into that bath after I have put you through your paces, maybe even having you eat me for a while before I left ... But also imagine the feel of that cage on your cock surrounded by the bath water, reminding you always who owns you ... Enjoy, my cuck
+ham	Hurry up, I've been weed-deficient for like three days
+ham	Sure, if I get an acknowledgement from you that it's astoundingly tactless and generally faggy to demand a blood oath fo
+ham	Ok. Every night take a warm bath drink a cup of milk and you'll see a work of magic. You still need to loose weight. Just so that you know
+ham	I‘ll have a look at the frying pan in case it‘s cheap or a book perhaps. No that‘s silly a frying pan isn‘t likely to be a book
+ham	O. Well uv causes mutations. Sunscreen is like essential thesedays
+ham	Having lunch:)you are not in online?why?
+ham	I know that my friend already told that.
+ham	Hi Princess! Thank you for the pics. You are very pretty. How are you?
+ham	Aiyo... U always c our ex one... I dunno abt mei, she haven reply... First time u reply so fast... Y so lucky not workin huh, got bao by ur sugardad ah...gee.. 
+ham	Hi msg me:)i'm in office..
+ham	Thanx 4 e brownie it's v nice...
+ham	Geeeee ... I love you so much I can barely stand it
+spam	GENT! We are trying to contact you. Last weekends draw shows that you won a £1000 prize GUARANTEED. Call 09064012160. Claim Code K52. Valid 12hrs only. 150ppm 
+ham	Fuck babe ... I miss you already, you know ? Can't you let me send you some money towards your net ? I need you ... I want you ... I crave you ...
+ham	Ill call u 2mrw at ninish, with my address that icky American freek wont stop callin me 2 bad Jen k eh?
+ham	Oooh bed ridden ey? What are YOU thinking of?
+ham	So anyways, you can just go to your gym or whatever, my love *smiles* I hope your ok and having a good day babe ... I miss you so much already
+ham	Love it! Daddy will make you scream with pleasure! I am going to slap your ass with my dick!
+ham	WOT U WANNA DO THEN MISSY?
+ham	Yar lor wait 4 my mum 2 finish sch then have lunch lor... I whole morning stay at home clean my room now my room quite clean... Hee...
+ham	Do you know where my lab goggles went
+ham	Can you open the door?
+ham	Waiting for your call.
+ham	Nope i waiting in sch 4 daddy... 
+spam	You have won ?1,000 cash or a ?2,000 prize! To claim, call09050000327
+ham	I'm tired of arguing with you about this week after week. Do what you want and from now on, i'll do the same.
+ham	Ü wait 4 me in sch i finish ard 5..
+spam	our mobile number has won £5000, to claim calls us back or ring the claims hot line on 09050005321.
+ham	Arngd marriage is while u r walkin unfortuntly a snake bites u. bt love marriage is dancing in frnt of d snake &amp; sayin Bite me, bite me.
+ham	Huh so early.. Then ü having dinner outside izzit?
+ham	Ok anyway no need to change with what you said
+spam	We tried to contact you re your reply to our offer of 750 mins 150 textand a new video phone call 08002988890 now or reply for free delivery tomorrow
+ham	my ex-wife was not able to have kids. Do you want kids one day?
+ham	So how's scotland. Hope you are not over showing your JJC tendencies. Take care. Live the dream
+ham	Tell them u have a headache and just want to use 1 hour of sick time.
+ham	I dun thk i'll quit yet... Hmmm, can go jazz ? Yogasana oso can... We can go meet em after our lessons den... 
+ham	"Pete can you please ring meive hardly gotany credit"
+ham	Ya srsly better than yi tho
+ham	I'm in a meeting, call me later at
+spam	For ur chance to win a £250 wkly shopping spree TXT: SHOP to 80878. T's&C's www.txt-2-shop.com custcare 08715705022, 1x150p/wk
+spam	You have been specially selected to receive a 2000 pound award! Call 08712402050 BEFORE the lines close. Cost 10ppm. 16+. T&Cs apply. AG Promo
+spam	PRIVATE! Your 2003 Account Statement for 07753741225 shows 800 un-redeemed S. I. M. points. Call 08715203677 Identifier Code: 42478 Expires 24/10/04
+ham	You still at grand prix?
+ham	I met you as a stranger and choose you as my friend. As long as the world stands, our friendship never ends. Lets be Friends forever!!! Gud nitz...
+ham	I am great! How are you?
+ham	Gud mrng dear have a nice day
+spam	You have an important customer service announcement. Call FREEPHONE 0800 542 0825 now!
+ham	Will do. Was exhausted on train this morning. Too much wine and pie. You sleep well too
+ham	I'm going out to buy mum's present ar.
+ham	Mind blastin.. No more Tsunamis will occur from now on.. Rajnikant stopped swimming in Indian Ocean..:-D
+ham	If u sending her home first it's ok lor. I'm not ready yet.
+ham	Speaking of does he have any cash yet?
+ham	Be happy there. I will come after noon
+ham	Meet after lunch la...
+ham	TaKe CaRE n gET WeLL sOOn
+spam	XCLUSIVE@CLUBSAISAI 2MOROW 28/5 SOIREE SPECIALE ZOUK WITH NICHOLS FROM PARIS.FREE ROSES 2 ALL LADIES !!! info: 07946746291/07880867867 
+ham	what I meant to say is cant wait to see u again getting bored of this bridgwater banter
+ham	Neva mind it's ok..
+ham	It's fine, imma get a drink or somethin. Want me to come find you?
+spam	22 days to kick off! For Euro2004 U will be kept up to date with the latest news and results daily. To be removed send GET TXT STOP to 83222
+ham	Its a valentine game. . . Send dis msg to all ur friends. .. If 5 answers r d same then someone really loves u. Ques- which colour suits me the best?rply me
+ham	I have many dependents
+ham	THANX4 TODAY CER IT WAS NICE 2 CATCH UP BUT WE AVE 2 FIND MORE TIME MORE OFTEN OH WELL TAKE CARE C U SOON.C
+ham	I called and said all to him:)then he have to choose this future.
+ham	"Happy valentines day" I know its early but i have hundreds of handsomes and beauties to wish. So i thought to finish off aunties and uncles 1st...
+ham	He like not v shock leh. Cos telling shuhui is like telling leona also. Like dat almost all know liao. He got ask me abt ur reaction lor.
+ham	For my family happiness..
+ham	I come n pick ü up... Come out immediately aft ur lesson...
+ham	Let there be snow. Let there be snow. This kind of weather brings ppl together so friendships can grow.
+ham	Dear we got  &lt;#&gt;  dollars hi hi
+ham	Good words.... But words may leave u in dismay many times.
+ham	MAKE SURE ALEX KNOWS HIS BIRTHDAY IS OVER IN FIFTEEN MINUTES AS FAR AS YOU'RE CONCERNED
+ham	sorry, no, have got few things to do. may be in pub later.
+ham	Nah it's straight, if you can just bring bud or drinks or something that's actually a little more useful than straight cash
+ham	Haha good to hear, I'm officially paid and on the market for an 8th
+ham	How many licks does it take to get to the center of a tootsie pop?
+ham	Yup i thk they r e teacher said that will make my face look longer. Darren ask me not 2 cut too short.
+spam	New TEXTBUDDY Chat 2 horny guys in ur area 4 just 25p Free 2 receive Search postcode or at gaytextbuddy.com. TXT ONE name to 89693
+spam	Todays Vodafone numbers ending with 4882 are selected to a receive a £350 award. If your number matches call 09064019014 to receive your £350 award.
+ham	Please dont say like that. Hi hi hi
+ham	Thank u!
+ham	Oh that was a forwarded message. I thought you send that to me
+ham	Got it. Seventeen pounds for seven hundred ml – hope ok.
+spam	Dear Voucher Holder, 2 claim this weeks offer, at your PC go to http://www.e-tlp.co.uk/expressoffer Ts&Cs apply.2 stop texts txt STOP to 80062.
+ham	Me n him so funny...
+ham	Sweetheart, hope you are not having that kind of day! Have one with loads of reasons to smile. Biola
+ham	When ü login dat time... Dad fetching ü home now?
+ham	What will we do in the shower, baby?
+ham	I had askd u a question some hours before. Its answer
+ham	Well imma definitely need to restock before thanksgiving, I'll let you know when I'm out
+ham	 said kiss, kiss, i can't do the sound effects! He is a gorgeous man isn't he! Kind of person who needs a smile to brighten his day! 
+ham	Probably gonna swing by in a wee bit
+ham	Ya very nice. . .be ready on thursday
+ham	Allo! We have braved the buses and taken on the trains and triumphed. I mean we‘re in b‘ham. Have a jolly good rest of week
+ham	Watching cartoon, listening music &amp; at eve had to go temple &amp; church.. What about u?
+ham	Do you mind if I ask what happened? You dont have to say if it is uncomfortable.
+spam	PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S. I. M. points. Call 08715203694 Identifier Code: 40533 Expires 31/10/04
+ham	No prob. I will send to your email.
+spam	You have won ?1,000 cash or a ?2,000 prize! To claim, call09050000327. T&C: RSTM, SW7 3SS. 150ppm
+ham	Thats cool! Sometimes slow and gentle. Sonetimes rough and hard :)
+ham	I'm gonna say no. Sorry. I would but as normal am starting to panic about time. Sorry again! Are you seeing on Tuesday?
+ham	Wait, do you know if wesleys in town? I bet she does hella drugs!
+ham	Fine i miss you very much.
+ham	Did u got that persons story
+ham	Tell them the drug dealer's getting impatient
+ham	Sun cant come to earth but send luv as rays. cloud cant come to river but send luv as rain. I cant come to meet U, but can send my care as msg to U. Gud evng
+ham	You will be in the place of that man
+ham	It doesnt make sense to take it there unless its free. If you need to know more, wikipedia.com
+spam	88800 and 89034 are premium phone services call 08718711108
+ham	Under the sea, there lays a rock. In the rock, there is an envelope. In the envelope, there is a paper. On the paper, there are 3 words... '
+ham	Then mum's repent how?
+ham	Sorry me going home first... Daddy come fetch ü later...
+ham	Leave it de:-). Start Prepare for next:-)..
+ham	Yes baby! We can study all the positions of the kama sutra ;)
+ham	En chikku nange bakra msg kalstiya..then had tea/coffee?
+ham	Carlos'll be here in a minute if you still need to buy
+ham	This pay is  &lt;DECIMAL&gt;  lakhs:)
+ham	Have a good evening! Ttyl
+ham	Did u receive my msg?
+ham	Ho ho - big belly laugh! See ya tomo
+spam	SMS. ac sun0819 posts HELLO:"You seem cool, wanted to say hi. HI!!!" Stop? Send STOP to 62468
+spam	Get ur 1st RINGTONE FREE NOW! Reply to this msg with TONE. Gr8 TOP 20 tones to your phone every week just £1.50 per wk 2 opt out send STOP 08452810071 16
+ham	Ditto. And you won't have to worry about me saying ANYTHING to you anymore. Like i said last night, you do whatever you want and i'll do the same. Peace.
+ham	I've got  &lt;#&gt; , any way I could pick up?
+ham	I dont knw pa, i just drink milk..
+ham	Maybe?! Say hi to  and find out if  got his card. Great escape or wetherspoons? 
+ham	Piggy, r u awake? I bet u're still sleeping. I'm going 4 lunch now...
+ham	Cause I'm not freaky lol
+ham	Missed your call cause I was yelling at scrappy. Miss u. Can't wait for u to come home. I'm so lonely today.
+ham	What is this 'hex' place you talk of? Explain!
+ham	Ü log off 4 wat. It's sdryb8i
+ham	Is xy going 4 e lunch?
+spam	Hi I'm sue. I am 20 years old and work as a lapdancer. I love sex. Text me live - I'm i my bedroom now. text SUE to 89555. By TextOperator G2 1DA 150ppmsg 18+
+ham	I wanted to ask ü to wait 4 me to finish lect. Cos my lect finishes in an hour anyway.
+ham	Have you finished work yet? :)
+ham	Every King Was Once A Crying Baby And Every Great Building Was Once A Map.. Not Imprtant Where U r TODAY, BUT Where U Wil Reach TOMORW. Gud ni8
+ham	Dear,Me at cherthala.in case u r coming cochin pls call bfore u start.i shall also reach accordingly.or tell me which day u r coming.tmorow i am engaged ans its holiday.
+ham	Thanks love. But am i doing torch or bold.
+spam	<Forwarded from 448712404000>Please CALL 08712404000 immediately as there is an urgent message waiting for you.
+ham	Was the farm open?
+ham	Sorry to trouble u again. Can buy 4d for my dad again? 1405, 1680, 1843. All 2 big 1 small, sat n sun. Thanx.
+ham	My sister in law, hope you are having a great month. Just saying hey. Abiola
+ham	Will purchase d stuff today and mail to you. Do you have a po box number?
+ham	Ah poop. Looks like ill prob have to send in my laptop to get fixed cuz it has a gpu problem
+ham	Good. Good job. I like entrepreneurs
+ham	Aight, you close by or still down around alex's place?
+ham	meet you in corporation st outside gap … you can see how my mind is working!
+ham	Mum ask ü to buy food home...
+ham	K..u also dont msg or reply to his msg..
+ham	How much r ü willing to pay?
+ham	Sorry, I'll call later
+ham	What is important is that you prevent dehydration by giving her enough fluids
+ham	Thats a bit weird, even ?- where is the do supposed to be happening? But good idea, sure they will be in pub!
+ham	True dear..i sat to pray evening and felt so.so i sms'd you in some time...
+ham	I don't think I can get away for a trek that long with family in town, sorry
+ham	So when do you wanna gym harri
+ham	Quite late lar... Ard 12 anyway i wun b drivin...
+spam	To review and KEEP the fantastic Nokia N-Gage game deck with Club Nokia, go 2 www.cnupdates.com/newsletter. unsubscribe from alerts reply with the word OUT
+spam	4mths half price Orange line rental & latest camera phones 4 FREE. Had your phone 11mths+? Call MobilesDirect free on 08000938767 to update now! or2stoptxt T&Cs
+ham	Height of Confidence: All the Aeronautics professors wer calld &amp; they wer askd 2 sit in an aeroplane. Aftr they sat they wer told dat the plane ws made by their students. Dey all hurried out of d plane.. Bt only 1 didnt move... He said:"if it is made by my students,this wont even start........ Datz confidence..
+ham	It just seems like weird timing that the night that all you and g want is for me to come smoke is the same day as when a shitstorm is attributed to me always coming over and making everyone smoke
+spam	08714712388 between 10am-7pm Cost 10p
+ham	Save yourself the stress. If the person has a dorm account, just send your account details and the money will be sent to you.
+ham	He also knows about lunch menu only da. . I know
+ham	When i have stuff to sell i.ll tell you
+spam	+449071512431 URGENT! This is the 2nd attempt to contact U!U have WON £1250 CALL 09071512433 b4 050703 T&CsBCM4235WC1N3XX. callcost 150ppm mobilesvary. max£7. 50
+ham	Book which lesson? then you msg me... I will call up after work or sth... I'm going to get specs. My membership is PX3748
+spam	You have WON a guaranteed £1000 cash or a £2000 prize. To claim yr prize call our customer service representative on 08714712394 between 10am-7pm
+ham	Macha dont feel upset.i can assume your mindset.believe me one evening with me and i have some wonderful plans for both of us.LET LIFE BEGIN AGAIN.call me anytime
+ham	Oh is it? Send me the address
+ham	S'fine. Anytime. All the best with it.
+ham	That is wondar full flim.
+ham	Ya even those cookies have jelly on them
+ham	The world is running and i am still.maybe all are feeling the same,so be it.or i have to admit,i am mad.then where is the correction?or let me call this is life.and keep running with the world,may be u r also running.lets run.
+ham	Got it! It looks scrumptious... daddy wants to eat you all night long!
+ham	Of cos can lar i'm not so ba dao ok... 1 pm lor... Y u never ask where we go ah... I said u would ask on fri but he said u will ask today...
+ham	Alright omw, gotta change my order to a half8th
+ham	Exactly. Anyways how far. Is jide her to study or just visiting
+ham	Dunno y u ask me.
+spam	Email AlertFrom: Jeri StewartSize: 2KBSubject: Low-cost prescripiton drvgsTo listen to email call 123
+ham	No he didn't. Spring is coming early yay!
+ham	Lol you won't feel bad when I use her money to take you out to a steak dinner =D
+ham	Even u dont get in trouble while convincing..just tel him once or twice and just tel neglect his msgs dont c and read it..just dont reply
+ham	Leaving to qatar tonite in search of an opportunity.all went fast.pls add me in ur prayers dear.Rakhesh
+ham	Then why no one talking to me
+ham	Thanks for looking out for me. I really appreciate.
+spam	Hi. Customer Loyalty Offer:The NEW Nokia6650 Mobile from ONLY £10 at TXTAUCTION! Txt word: START to No: 81151 & get yours Now! 4T&Ctxt TC 150p/MTmsg
+ham	Wish i were with you now!
+ham	Haha mayb u're rite... U know me well. Da feeling of being liked by someone is gd lor. U faster go find one then all gals in our group attached liao.
+ham	Yes i will be there. Glad you made it.
+ham	Do well :)all will for little time. Thing of good times ahead:
+ham	Just got up. have to be out of the room very soon. …. i hadn't put the clocks back til at 8 i shouted at everyone to get up and then realised it was 7. wahay. another hour in bed.
+ham	Ok. There may be a free gym about.
+ham	Men like shorter ladies. Gaze up into his eyes.
+ham	Dunno he jus say go lido. Same time 930.
+ham	I promise to take good care of you, princess. I have to run now. Please send pics when you get a chance. Ttyl!
+spam	U are subscribed to the best Mobile Content Service in the UK for £3 per 10 days until you send STOP to 82324. Helpline 08706091795
+ham	Is there a reason we've not spoken this year? Anyways have a great week and all the best in your exam
+ham	By monday next week. Give me the full gist
+spam	Do you realize that in about 40 years, we'll have thousands of old ladies running around with tattoos?
+spam	You have an important customer service announcement from PREMIER.
+ham	Dont gimme that lip caveboy
+ham	When did you get to the library
+ham	Realy sorry-i don't recognise this number and am now confused :) who r u please?! 
+ham	So why didnt you holla?
+ham	Cant think of anyone with * spare room off * top of my head
+ham	Faith makes things possible,Hope makes things work,Love makes things beautiful,May you have all three this Christmas!Merry Christmas!
+ham	U should have made an appointment
+ham	Call me when you/carlos is/are here, my phone's vibrate is acting up and I might not hear texts
+spam	Romantic Paris. 2 nights, 2 flights from £79 Book now 4 next year. Call 08704439680Ts&Cs apply.
+ham	We are at grandmas. Oh dear, u still ill? I felt Shit this morning but i think i am just hungover! Another night then. We leave on sat.
+spam	Urgent Ur £500 guaranteed award is still unclaimed! Call 09066368327 NOW closingdate04/09/02 claimcode M39M51 £1.50pmmorefrommobile2Bremoved-MobyPOBox734LS27YF
+ham	Nothing but we jus tot u would ask cos u ba gua... But we went mt faber yest... Yest jus went out already mah so today not going out... Jus call lor...
+ham	Wishing you and your family Merry "X" mas and HAPPY NEW Year in advance..
+spam	UR awarded a City Break and could WIN a £200 Summer Shopping spree every WK. Txt STORE to 88039 . SkilGme. TsCs087147403231Winawk!Age16 £1.50perWKsub
+ham	I'm nt goin, got somethin on, unless they meetin 4 dinner lor... Haha, i wonder who will go tis time...
+ham	Sorry, I'll call later
+ham	I cant pick the phone right now. Pls send a message
+ham	Lol I know! They're so dramatic. Schools already closed for tomorrow. Apparently we can't drive in the inch of snow were supposed to get.
+ham	Not getting anywhere with this damn job hunting over here!
+ham	Lol! U drunkard! Just doing my hair at d moment. Yeah still up 4 tonight. Wats the plan? 
+ham	idc get over here, you are not weaseling your way out of this shit twice in a row
+ham	I wil be there with in  &lt;#&gt;  minutes. Got any space
+ham	Just sleeping..and surfing
+ham	Thanks for picking up the trash.
+ham	Why don't you go tell your friend you're not sure you want to live with him because he smokes too much then spend hours begging him to come smoke
+ham	"Hi its Kate it was lovely to see you tonight and ill phone you tomorrow. I got to sing and a guy gave me his card! xxx"
+ham	Happy New year my dear brother. I really do miss you. Just got your number and decided to send you this text wishing you only happiness. Abiola
+ham	That means get the door
+ham	Your opinion about me? 1. Over 2. Jada 3. Kusruthi 4. Lovable 5. Silent 6. Spl character 7. Not matured 8. Stylish 9. Simple Pls reply..
+ham	Hmmm ... I thought we said 2 hours slave, not 3 ... You are late ... How should I punish you ?
+ham	Beerage?
+spam	You have an important customer service announcement from PREMIER. Call FREEPHONE 0800 542 0578 now!
+ham	Dont think so. It turns off like randomlly within 5min of opening
+ham	She was supposed to be but couldn't make it, she's still in town though
+ham	It does it on its own. Most of the time it fixes my spelling. But sometimes it gets a completely diff word. Go figure
+spam	Ever thought about living a good life with a perfect partner? Just txt back NAME and AGE to join the mobile community. (100p/SMS)
+spam	5 Free Top Polyphonic Tones call 087018728737, National Rate. Get a toppoly tune sent every week, just text SUBPOLY to 81618, £3 per pole. UnSub 08718727870.
+ham	Gud mrng dear hav a nice day
+ham	This is hoping you enjoyed your game yesterday. Sorry i've not been in touch but pls know that you are fondly bein thot off. Have a great week. Abiola
+ham	All e best 4 ur driving tmr :-)
+ham	Y?WHERE U AT DOGBREATH? ITS JUST SOUNDING LIKE JAN C THAT’S AL!!!!!!!!!
+ham	Omg I want to scream. I weighed myself and I lost more weight! Woohoo!
+ham	There generally isn't one. It's an uncountable noun - u in the dictionary. pieces of research?
+ham	it's really getting me down just hanging around.
+spam	Orange customer, you may now claim your FREE CAMERA PHONE upgrade for your loyalty. Call now on 0207 153 9996. Offer ends 14thMarch. T&C's apply. Opt-out availa
+ham	"Petey boy whereare you me and all your friendsare in theKingshead come down if you canlove Nic"
+ham	Ok i msg u b4 i leave my house.
+ham	"Gimme a few" was  &lt;#&gt;  minutes ago
+spam	Last Chance! Claim ur £150 worth of discount vouchers today! Text SHOP to 85023 now! SavaMob, offers mobile! T Cs SavaMob POBOX84, M263UZ. £3.00 Sub. 16
+ham	Appt is at &lt;TIME&gt; am. Not my fault u don't listen. I told u twice
+spam	FREE for 1st week! No1 Nokia tone 4 ur mobile every week just txt NOKIA to 8077 Get txting and tell ur mates. www.getzed.co.uk POBox 36504 W45WQ 16+ norm150p/tone
+spam	You have won a guaranteed £200 award or even £1000 cashto claim UR award call free on 08000407165 (18+) 2 stop getstop on 88222 PHP. RG21 4JX
+ham	K I'll be there before 4.
+ham	I dled 3d its very imp
+ham	sure, but make sure he knows we ain't smokin yet
+ham	Boooo you always work. Just quit.
+ham	I am taking half day leave bec i am not well
+ham	Ugh I don't wanna get out of bed. It's so warm.
+ham	S:)s.nervous  &lt;#&gt; :)
+ham	So there's a ring that comes with the guys costumes. It's there so they can gift their future yowifes. Hint hint
+spam	Congratulations ur awarded either £500 of CD gift vouchers & Free entry 2 our £100 weekly draw txt MUSIC to 87066 TnCs www.Ldew.com1win150ppmx3age16
+ham	I borrow ur bag ok.
+spam	U were outbid by simonwatson5120 on the Shinco DVD Plyr. 2 bid again, visit sms. ac/smsrewards 2 end bid notifications, reply END OUT
+ham	Where's my boytoy? I miss you ... What happened?
+ham	He has lots of used ones babe, but the model doesn't help. Youi have to bring it over and he'll match it up
+ham	Also are you bringing galileo or dobby
+ham	Then why you not responding
+ham	"BOO BABE! U ENJOYIN YOURJOB? U SEEMED 2 B GETTIN ON WELL HUNNY!HOPE URE OK?TAKE CARE & I’LLSPEAK 2U SOONLOTS OF LOVEME XXXX."
+ham	Good afternoon starshine! How's my boytoy? Does he crave me yet? Ache to fuck me ? *sips cappuccino* I miss you babe *teasing kiss*
+ham	On the road so cant txt
+spam	SMSSERVICES. for yourinclusive text credits, pls goto www.comuk.net login= 3qxj9 unsubscribe with STOP, no extra charge. help 08702840625.COMUK. 220-CM2 9AE
+spam	25p 4 alfie Moon's Children in need song on ur mob. Tell ur m8s. Txt Tone charity to 8007 for Nokias or Poly charity for polys: zed 08701417012 profit 2 charity.
+ham	Have a good evening! Ttyl
+ham	Hmm .. Bits and pieces lol ... *sighs* ...
+ham	Hahaha..use your brain dear
+ham	Hey. You got any mail?
+ham	Sorry light turned green, I meant another friend wanted  &lt;#&gt;  worth but he may not be around
+ham	Thanks for yesterday sir. You have been wonderful. Hope you enjoyed the burial. MojiBiola
+spam	U have a secret admirer. REVEAL who thinks U R So special. Call 09065174042. To opt out Reply REVEAL STOP. 1.50 per msg recd. Cust care 07821230901
+ham	Hi mate its RV did u hav a nice hol just a message 3 say hello coz haven’t sent u 1 in ages started driving so stay off roads!RVx
+spam	Dear Voucher Holder, To claim this weeks offer, at you PC please go to http://www.e-tlp.co.uk/expressoffer Ts&Cs apply. To stop texts, txt STOP to 80062
+ham	Thank you so much. When we skyped wit kz and sura, we didnt get the pleasure of your company. Hope you are good. We've given you ultimatum oh! We are countin down to aburo. Enjoy! This is the message i sent days ago
+ham	Surely result will offer:)
+ham	Good Morning my Dear........... Have a great &amp; successful day.
+spam	Do you want 750 anytime any network mins 150 text and a NEW VIDEO phone for only five pounds per week call 08002888812 or reply for delivery tomorrow
+ham	Sir, I have been late in paying rent for the past few months and had to pay a $ &lt;#&gt;  charge. I felt it would be inconsiderate of me to nag about something you give at great cost to yourself and that's why i didnt speak up. I however am in a recession and wont be able to pay the charge this month hence my askin well ahead of month's end. Can you please help. Thanks
+spam	We tried to contact you re our offer of New Video Phone 750 anytime any network mins HALF PRICE Rental camcorder call 08000930705 or reply for delivery Wed
+spam	Last chance 2 claim ur £150 worth of discount vouchers-Text YES to 85023 now!SavaMob-member offers mobile T Cs 08717898035. £3.00 Sub. 16 . Remove txt X or STOP
+ham	I luv u soo much u don’t understand how special u r 2 me ring u 2morrow luv u xxx
+ham	Pls send me a comprehensive mail about who i'm paying, when and how much.
+ham	Our Prashanthettan's mother passed away last night. pray for her and family.
+spam	Urgent! call 09066350750 from your landline. Your complimentary 4* Ibiza Holiday or 10,000 cash await collection SAE T&Cs PO BOX 434 SK3 8WP 150 ppm 18+ 
+ham	K.k:)when are you going?
+ham	Meanwhile in the shit suite: xavier decided to give us  &lt;#&gt;  seconds of warning that samantha was coming over and is playing jay's guitar to impress her or some shit. Also I don't think doug realizes I don't live here anymore
+ham	My stomach has been thru so much trauma I swear I just can't eat. I better lose weight.
+ham	I am in office:)whats the matter..msg me now.i will call you at break:).
+ham	Yeah there's barely enough room for the two of us, x has too many fucking shoes. Sorry man, see you later
+spam	Today's Offer! Claim ur £150 worth of discount vouchers! Text YES to 85023 now! SavaMob, member offers mobile! T Cs 08717898035. £3.00 Sub. 16 . Unsub reply X
+ham	U reach orchard already? U wan 2 go buy tickets first?
+ham	I am real, baby! I want to bring out your inner tigress...
+ham	No da if you run that it activate the full version da.
+ham	"AH POOR BABY!HOPE URFEELING BETTERSN LUV! PROBTHAT OVERDOSE OF WORK HEY GO CAREFUL SPK 2 U SN LOTS OF LOVEJEN XXX."
+ham	Stop the story. I've told him i've returned it and he's saying i should not re order it.
+spam	Talk sexy!! Make new friends or fall in love in the worlds most discreet text dating service. Just text VIP to 83110 and see who you could meet.
+ham	Going to take your babe out ?
+ham	Hai ana tomarrow am coming on morning.  &lt;DECIMAL&gt;  ill be there in sathy then we ll go to RTO office. Reply me after came to home.
+ham	Spoons it is then okay?
+ham	Did he just say somebody is named tampa
+ham	In work now. Going have in few min.
+ham	Your brother is a genius
+ham	Sorry, I guess whenever I can get a hold of my connections, maybe an hour or two? I'll text you
+ham	Did u find out what time the bus is at coz i need to sort some stuff out.
+ham	Dude ive been seeing a lotta corvettes lately
+spam	Congratulations ur awarded either a yrs supply of CDs from Virgin Records or a Mystery Gift GUARANTEED Call 09061104283 Ts&Cs www.smsco.net £1.50pm approx 3mins
+ham	Same here, but I consider walls and bunkers and shit important just because I never play on peaceful but I guess your place is high enough that it don't matter
+spam	PRIVATE! Your 2003 Account Statement for 07808 XXXXXX shows 800 un-redeemed S. I. M. points. Call 08719899217 Identifier Code: 41685 Expires 07/11/04
+spam	Hello. We need some posh birds and chaps to user trial prods for champneys. Can i put you down? I need your address and dob asap. Ta r
+spam	What do U want for Xmas? How about 100 free text messages & a new video phone with half price line rental? Call free now on 0800 0721072 to find out more!
+ham	Well am officially in a philosophical hole, so if u wanna call am at home ready to be saved!
+ham	Its going good...no problem..but still need little experience to understand american customer voice...
+ham	I'll text you when I drop x off
+ham	Ugh its been a long day. I'm exhausted. Just want to cuddle up and take a nap
+ham	Talk With Yourself Atleast Once In A Day...!!! Otherwise You Will Miss Your Best FRIEND In This WORLD...!!! -Shakespeare- SHESIL  &lt;#&gt;
+spam	Shop till u Drop, IS IT YOU, either 10K, 5K, £500 Cash or £100 Travel voucher, Call now, 09064011000. NTT PO Box CR01327BT fixedline Cost 150ppm mobile vary
+ham	Are you in castor? You need to see something
+spam	Sunshine Quiz Wkly Q! Win a top Sony DVD player if u know which country Liverpool played in mid week? Txt ansr to 82277. £1.50 SP:Tyrone
+spam	U have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094565
+spam	U have a Secret Admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09065171142-stopsms-08
+spam	Reminder: You have not downloaded the content you have already paid for. Goto http://doit. mymoby. tv/ to collect your content.
+ham	see, i knew giving you a break a few times woul lead to you always wanting to miss curfew. I was gonna gibe you 'til one, but a MIDNIGHT movie is not gonna get out til after 2. You need to come home. You need to getsleep and, if anything, you need to b studdying ear training.
+ham	I love to give massages. I use lots of baby oil... What is your fave position?
+ham	Dude we should go sup again
+ham	Yoyyooo u know how to change permissions for a drive in mac. My usb flash drive
+ham	Gibbs unsold.mike hussey
+ham	I like to talk pa but am not able to. I dont know y.
+ham	Y dun cut too short leh. U dun like ah? She failed. She's quite sad.
+ham	You unbelievable faglord
+ham	Wife.how she knew the time of murder exactly
+ham	Why do you ask princess?
+ham	I am great princess! What are you thinking about me? :)
+ham	Nutter. Cutter. Ctter. Cttergg. Cttargg. Ctargg. Ctagg. ie you
+ham	It's ok i noe u're busy but i'm really too bored so i msg u. I oso dunno wat colour she choose 4 me one.
+ham	Doesn't g have class early tomorrow and thus shouldn't be trying to smoke at  &lt;#&gt;
+ham	Superb Thought- "Be grateful that u dont have everything u want. That means u still have an opportunity to be happier tomorrow than u are today.":-)
+ham	Hope you are having a good week. Just checking in
+ham	I'm used to it. I just hope my agents don't drop me since i've only booked a few things this year. This whole me in boston, them in nyc was an experiment.
+ham	Thursday night? Yeah, sure thing, we'll work it out then
+spam	Your free ringtone is waiting to be collected. Simply text the password "MIX" to 85069 to verify. Get Usher and Britney. FML, PO Box 5249, MK17 92H. 450Ppw 16
+ham	Probably money worries. Things are coming due and i have several outstanding invoices for work i did two and three months ago.
+ham	How is it possible to teach you. And where.
+ham	I wonder if your phone battery went dead ? I had to tell you, I love you babe
+ham	Lovely smell on this bus and it ain't tobacco... 
+ham	We're all getting worried over here, derek and taylor have already assumed the worst
+ham	Hey what's up charles sorry about the late reply.
+spam	all the lastest from Stereophonics, Marley, Dizzee Racal, Libertines and The Strokes! Win Nookii games with Flirt!! Click TheMob WAP Bookmark or text WAP to 82468
+ham	I.ll give her once i have it. Plus she said grinule greet you whenever we speak
+ham	WHITE FUDGE OREOS ARE IN STORES
+spam	January Male Sale! Hot Gay chat now cheaper, call 08709222922. National rate from 1.5p/min cheap to 7.8p/min peak! To stop texts call 08712460324 (10p/min)
+ham	My love ! How come it took you so long to leave for Zaher's? I got your words on ym and was happy to see them but was sad you had left. I miss you
+ham	I am sorry it hurt you.
+ham	Can't. I feel nauseous. I'm so pissed. I didn't eat any sweets all week cause today I was planning to pig out. I was dieting all week. And now I'm not hungry :/
+ham	Ok lor but not too early. Me still having project meeting now.
+ham	Call me da, i am waiting for your call.
+ham	I could ask carlos if we could get more if anybody else can chip in
+ham	Was actually about to send you a reminder today. Have a wonderful weekend
+ham	When people see my msgs, They think Iam addicted to msging... They are wrong, Bcoz They don\'t know that Iam addicted to my sweet Friends..!! BSLVYL
+ham	Hey you gave them your photo when you registered for driving ah? Tmr wanna meet at yck? 
+ham	Dont talk to him ever ok its my word.
+ham	When u wana see it then
+ham	On ma way to school. Can you pls send me ashley's number
+ham	It shall be fine. I have avalarr now. Will hollalater
+ham	She went to attend another two rounds today..but still did't reach home..
+ham	Actually i deleted my old website..now i m blogging at magicalsongs.blogspot.com
+ham	K, wait chikku..il send aftr  &lt;#&gt; mins
+ham	But I'm on a diet. And I ate 1 too many slices of pizza yesterday. Ugh I'm ALWAYS on a diet.
+ham	K:)i will give my kvb acc details:)
+ham	Oh all have to come ah?
+spam	money!!! you r a lucky winner ! 2 claim your prize text money 2 88600 over £1million to give away ! ppt150x3+normal text rate box403 w1t1jy
+ham	I'm really sorry i won't b able 2 do this friday.hope u can find an alternative.hope yr term's going ok:-)
+ham	Congratulations ore mo owo re wa. Enjoy it and i wish you many happy moments to and fro wherever you go
+ham	So do you have samus shoulders yet
+ham	What time you think you'll have it? Need to know when I should be near campus
+spam	Dear Matthew please call 09063440451 from a landline, your complimentary 4*Lux Tenerife holiday or £1000 CASH await collection. ppm150 SAE T&Cs Box334 SK38XH.
+ham	Then dun wear jeans lor...
+ham	Since when, which side, any fever, any vomitin.
+ham	K:)k.are you in college?
+spam	Urgent! call 09061749602 from Landline. Your complimentary 4* Tenerife Holiday or £10,000 cash await collection SAE T&Cs BOX 528 HP20 1YF 150ppm 18+
+ham	Better. Made up for Friday and stuffed myself like a pig yesterday. Now I feel bleh. But at least its not writhing pain kind of bleh.
+ham	No we sell it all so we'll have tons if coins. Then sell our coins to someone thru paypal. Voila! Money back in life pockets:)
+ham	Theyre doing it to lots of places. Only hospitals and medical places are safe.
+spam	How about getting in touch with folks waiting for company? Just txt back your NAME and AGE to opt in! Enjoy the community (150p/SMS)
+ham	And also I've sorta blown him off a couple times recently so id rather not text him out of the blue looking for weed
+ham	I sent my scores to sophas and i had to do secondary application for a few schools. I think if you are thinking of applying, do a research on cost also. Contact joke ogunrinde, her school is one me the less expensive ones
+ham	I cant wait to see you! How were the photos were useful? :)
+spam	Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send GO to 86688 only 150p/msg. CC: 08718720201 PO BOX 114/14 TCR/W1
+ham	Hey i booked the kb on sat already... what other lessons are we going for ah? Keep your sat night free we need to meet and confirm our lodging 
+ham	Chk in ur belovd ms dict
+ham	Is that what time you want me to come?
+ham	Awesome, lemme know whenever you're around
+ham	Shb b ok lor... Thanx...
+ham	Beautiful Truth against Gravity.. Read carefully: "Our heart feels light when someone is in it.. But it feels very heavy when someone leaves it.." GOOD NIGHT
+ham	Also remember to get dobby's bowl from your car
+spam	Filthy stories and GIRLS waiting for your
+ham	Sorry i now then c ur msg... Yar lor so poor thing... But only 4 one night... Tmr u'll have a brand new room 2 sleep in...
+ham	Love isn't a decision, it's a feeling. If we could decide who to love, then, life would be much simpler, but then less magical
+ham	Welp apparently he retired
+ham	My sort code is  and acc no is . The bank is natwest. Can you reply to confirm i've sent this to the right person!
+ham	Where @
+ham	U sure u can't take any sick time?
+spam	URGENT! We are trying to contact U. Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050001808 from land line. Claim M95. Valid12hrs only
+ham	Watching cartoon, listening music &amp; at eve had to go temple &amp; church.. What about u?
+ham	Yo chad which gymnastics class do you wanna take? The site says Christians class is full..
+ham	Are you this much buzy
+ham	Or better still can you catch her and let ask her if she can sell  &lt;#&gt;  for me.
+ham	I am not sure about night menu. . . I know only about noon menu
+ham	What do u want when i come back?.a beautiful necklace as a token of my heart for you.thats what i will give but ONLY to MY WIFE OF MY LIKING.BE THAT AND SEE..NO ONE can give you that.dont call me.i will wait till i come.
+ham	Are you willing to go for aptitude class.
+ham	It wont b until 2.15 as trying 2 sort house out, is that ok?
+ham	Yar lor he wan 2 go c horse racing today mah, so eat earlier lor. I ate chicken rice. U?
+ham	Haha awesome, omw back now then
+ham	Yup i thk so until e shop closes lor.
+ham	what is your account number?
+ham	Eh u send wrongly lar...
+ham	Hey no I ad a crap nite was borin without ya 2 boggy with me u boring biatch! Thanx but u wait til nxt time il ave ya 
+ham	Ok i shall talk to him
+ham	Dont hesitate. You know this is the second time she has had weakness like that. So keep i notebook of what she eat and did the day before or if anything changed the day before so that we can be sure its nothing
+ham	Hey you can pay. With salary de. Only  &lt;#&gt; .
+ham	Another month. I need chocolate weed and alcohol.
+ham	If he started searching he will get job in few days.he have great potential and talent.
+ham	Reckon need to be in town by eightish to walk from * carpark.
+spam	Congrats! 2 mobile 3G Videophones R yours. call 09063458130 now! videochat wid your mates, play java games, Dload polyPH music, noline rentl.
+ham	LOOK AT THE FUCKIN TIME. WHAT THE FUCK YOU THINK IS UP
+ham	Yo guess what I just dropped
+ham	Carlos says he'll be at mu in  &lt;#&gt;  minutes
+ham	I'm in office now . I will call you  &lt;#&gt;  min:)
+ham	Geeee ... I miss you already, you know ? Your all I can think about. Fuck, I can't wait till next year when we will be together ... *loving kiss*
+ham	Yun ah.the ubi one say if ü wan call by tomorrow.call 67441233 look for irene.ere only got bus8,22,65,61,66,382. Ubi cres,ubi tech park.6ph for 1st 5wkg days.èn
+ham	Ugh. Gotta drive back to sd from la. My butt is sore.
+ham	26th OF JULY
+ham	Hi im having the most relaxing time ever! we have to get up at 7am every day! was the party good the other night? I get home tomorrow at 5ish.
+ham	Up to ü... Ü wan come then come lor... But i din c any stripes skirt...
+ham	The Xmas story is peace.. The Xmas msg is love.. The Xmas miracle is jesus.. Hav a blessed month ahead &amp; wish U Merry Xmas...
+ham	I can't, I don't have her number!
+ham	Change again... It's e one next to escalator...
+ham	Yetunde i'm in class can you not run water on it to make it ok. Pls now.
+ham	Not a lot has happened here. Feels very quiet. Beth is at her aunts and charlie is working lots. Just me and helen in at the mo. How have you been? 
+ham	Then ü wait 4 me at bus stop aft ur lect lar. If i dun c ü then i go get my car then come back n pick ü.
+ham	Aight will do, thanks again for comin out
+ham	No..but heard abt tat..
+spam	Please call our customer service representative on FREEPHONE 0808 145 4742 between 9am-11pm as you have WON a guaranteed £1000 cash or £5000 prize!
+ham	Yes..he is really great..bhaji told kallis best cricketer after sachin in world:).very tough to get out.
+ham	&lt;#&gt;  am I think? Should say on syllabus
+ham	Umma. Did she say anything
+ham	Give me a sec to think think about it
+spam	Panasonic & BluetoothHdset FREE. Nokia FREE. Motorola FREE & DoubleMins & DoubleTxt on Orange contract. Call MobileUpd8 on 08000839402 or call 2optout
+ham	I don't quite know what to do. I still can't get hold of anyone. I cud pick you up bout 7.30pm and we can see if they're in the pub?
+ham	Poyyarikatur,kolathupalayam,unjalur post,erode dis, &lt;#&gt; .
+ham	Dear Hero,i am leaving to qatar tonite for an apt opportunity.pls do keep in touch at  &lt;EMAIL&gt; ,kerala
+ham	Lol I would but my mom would have a fit and tell the whole family how crazy and terrible I am
+ham	I just got home babe, are you still awake ?
+ham	I dunno they close oredi not... Ü v ma fan...
+ham	Just buy a pizza. Meat lovers or supreme. U get to pick.
+ham	Ya, told..she was asking wats matter?
+ham	Dear,regret i cudnt pick call.drove down frm ctla now at cochin home.left mobile in car..ente style ishtamayoo?happy bakrid!
+spam	FREE for 1st week! No1 Nokia tone 4 ur mob every week just txt NOKIA to 8007 Get txting and tell ur mates www.getzed.co.uk POBox 36504 W45WQ norm150p/tone 16+
+ham	Shall i send that exe to your mail id.
+ham	Nope watching tv at home... Not going out. V bored...
+ham	Don know..wait i will check it.
+ham	Good afternoon on this glorious anniversary day, my sweet J !! I hope this finds you happy and content, my Prey. I think of you and send a teasing kiss from across the sea coaxing images of fond souveniers ... You Cougar-Pen
+spam	Guess what! Somebody you know secretly fancies you! Wanna find out who it is? Give us a call on 09065394514 From Landline DATEBox1282EssexCM61XN 150p/min 18
+ham	We still on for tonight?
+ham	May i call You later Pls
+ham	Hasn't that been the pattern recently crap weekends?
+ham	I have a sore throat. It's scratches when I talk
+ham	Yes da. Any plm at ur office
+ham	Are you not around or just still asleep? :V
+ham	Lol you forgot it eh ? Yes, I'll bring it in babe
+ham	Its good, we'll find a way
+ham	Can not use foreign stamps in this country. Good lecture .
+ham	Yup bathe liao...
+ham	HAPPY NEW YEAR MY NO.1 MAN
+ham	OH MR SHEFFIELD! You wanna play THAT game, okay. You're the boss and I'm the nanny. You give me a raise and I'll give YOU one!!
+ham	ZOE IT JUST HIT ME 2 IM FUCKING SHITIN MYSELF IL DEFO TRY MY HARDEST 2 CUM 2MOROW LUV U MILLIONS LEKDOG
+ham	Hello baby, did you get back to your mom's ? Are you setting up the computer now ? Filling your belly ? How goes it loverboy ? I miss you already ... *sighs*
+ham	No my blankets are sufficient, thx
+ham	naughty little thought: 'its better to flirt, flirt n flirt, rather than loving someone n gettin hurt, hurt n hurt...:-) Gud nyt
+ham	Edison has rightly said, "A fool can ask more questions than a wise man can answer" Now you know why all of us are speechless during ViVa.. GM,GN,GE,GNT:-)
+ham	They just talking thats it de. They wont any other.
+ham	Today am going to college so am not able to atten the class.
+ham	I'm in class. Will holla later
+ham	Easy ah?sen got selected means its good..
+ham	Mmm thats better now i got a roast down me! i’d b better if i had a few drinks down me 2! Good indian?
+spam	We know someone who you know that fancies you. Call 09058097218 to find out who. POBox 6, LS15HB 150p
+ham	Come round, it's . 
+ham	Do 1 thing! Change that sentence into: "Because i want 2 concentrate in my educational career im leaving here.."
+spam	1000's flirting NOW! Txt GIRL or BLOKE & ur NAME & AGE, eg GIRL ZOE 18 to 8007 to join and get chatting!
+ham	I walked an hour 2 c u! doesn’t that show I care y wont u believe im serious?
+spam	18 days to Euro2004 kickoff! U will be kept informed of all the latest news and results daily. Unsubscribe send GET EURO STOP to 83222.
+ham	Are you available for soiree on June 3rd?
+ham	Do u noe wat time e place dat sells 4d closes?
+ham	I got another job! The one at the hospital doing data analysis or something, starts on monday! Not sure when my thesis will got finished
+ham	Jay's getting really impatient and belligerent
+ham	HIYA COMIN 2 BRISTOL 1 ST WEEK IN APRIL. LES GOT OFF + RUDI ON NEW YRS EVE BUT I WAS SNORING.THEY WERE DRUNK! U BAK AT COLLEGE YET? MY WORK SENDS INK 2 BATH.
+ham	I'm at work. Please call
+ham	Then u drive lor.
+ham	Ard 515 like dat. Y?
+ham	Tell me they're female :V how're you throwing in? We're deciding what all to get now
+spam	EASTENDERS TV Quiz. What FLOWER does DOT compare herself to? D= VIOLET E= TULIP F= LILY txt D E or F to 84025 NOW 4 chance 2 WIN £100 Cash WKENT/150P16+
+ham	I'm working technical support :)voice process.networking field.
+ham	I might come to kerala for 2 days.so you can be prepared to take a leave once i finalise .dont plan any travel during my visit.need to finish urgent works.
+ham	Ok. Not sure what time tho as not sure if can get to library before class. Will try. See you at some point! Have good eve.
+spam	We have new local dates in your area - Lots of new people registered in YOUR AREA. Reply DATE to start now! 18 only www.flirtparty.us REPLYS150
+ham	That's fine, I'll bitch at you about it later then
+ham	No my mum went 2 dentist.
+ham	Once free call me sir. I am waiting for you.
+ham	Meeting u is my work. . . Tel me when shall i do my work tomorrow
+spam	Someone U know has asked our dating service 2 contact you! Cant Guess who? CALL 09058091854 NOW all will be revealed. PO BOX385 M6 6WU
+ham	Jus finish bathing...
+ham	alright, I'll make sure the car is back tonight
+spam	URGENT! We are trying to contact U. Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050003091 from land line. Claim C52. Valid12hrs only
+spam	Dear U've been invited to XCHAT. This is our final attempt to contact u! Txt CHAT to 86688
+ham	Lul im gettin some juicy gossip at the hospital. Two nurses are talking about how fat they are gettin. And one thinks shes obese. Oyea.
+ham	Aight ill get on fb in a couple minutes
+ham	Oi. Ami parchi na re. Kicchu kaaj korte iccha korche na. Phone ta tul na. Plz. Plz.
+ham	Where can download clear movies. Dvd copies.
+ham	Yep, by the pretty sculpture
+ham	Convey my regards to him
+ham	Me too watching surya movie only. . .after 6 pm vijay movie POKKIRI
+ham	You tell what happen dont behave like this to me. Ok no need to say
+ham	Can u get pic msgs to your phone?
+ham	Send to someone else :-)
+ham	Wat makes some people dearer is not just de happiness dat u feel when u meet them but de pain u feel when u miss dem!!!
+ham	For me the love should start with attraction.i should feel that I need her every time around me.she should be the first thing which comes in my thoughts.I would start the day and end it with her.she should be there every time I dream.love will be then when my every breath has her name.my life should happen around her.my life will be named to her.I would cry for her.will give all my happiness and take all her sorrows.I will be ready to fight with anyone for her.I will be in love when I will be doing the craziest things for her.love will be when I don't have to proove anyone that my girl is the most beautiful lady on the whole planet.I will always be singing praises for her.love will be when I start up making chicken curry and end up makiing sambar.life will be the most beautiful then.will get every morning and thank god for the day because she is with me.I would like to say a lot..will tell later..
+ham	FR'NDSHIP is like a needle of a clock. Though V r in d same clock, V r nt able 2 met. Evn if V meet,itz only 4few seconds. Bt V alwys stay conected. Gud 9t;-)
+ham	I don't think he has spatula hands!
+ham	You can never do NOTHING
+spam	You are awarded a SiPix Digital Camera! call 09061221061 from landline. Delivery within 28days. T Cs Box177. M221BP. 2yr warranty. 150ppm. 16 . p p£3.99
+ham	Goodmorning today i am late for  &lt;DECIMAL&gt; min.
+spam	WIN URGENT! Your mobile number has been awarded with a £2000 prize GUARANTEED call 09061790121 from land line. claim 3030 valid 12hrs only 150ppm 
+ham	Please da call me any mistake from my side sorry da. Pls da goto doctor.
+ham	Where r we meeting?
+ham	Well the weather in cali's great. But its complexities are great. You need a car to move freely, its taxes are outrageous. But all in all its a great place. The sad part is i missing home.
+ham	Now only i reached home. . . I am very tired now. . I will come tomorro
+ham	Ryder unsold.now gibbs.
+spam	Dear Subscriber ur draw 4 £100 gift voucher will b entered on receipt of a correct ans. When was Elvis Presleys Birthday? TXT answer to 80062
+ham	Don't fret. I'll buy the ovulation test strips and send them to you. You wont get them til like march. Can you send me your postal address.u'll be alright.Okay.
+ham	NO GIFTS!! You trying to get me to throw myself off a cliff or something?
+ham	Been up to ne thing interesting. Did you have a good birthday? When are u wrking nxt? I started uni today.
+ham	You busy or can I come by at some point and figure out what we're doing tomorrow
+ham	Yeah go on then, bored and depressed sittin waitin for phone to ring... Hope the wind drops though, scary
+ham	Black shirt n blue jeans... I thk i c ü...
+ham	Aiyah sorry lor... I watch tv watch until i forgot 2 check my phone.
+spam	Message Important information for O2 user. Today is your lucky day! 2 find out why log onto http://www.urawinner.com there is a fantastic surprise awaiting you
+ham	on hen night. Going with a swing
+ham	Good afternoon, my love. How goes your day ? What are you up to ? I woke early and am online waiting for you ... Hmmm ... Italian boy is online I see . *grins*
+ham	From someone not to smoke when every time I've smoked in the last two weeks is because of you calling or texting me that you wanted to smoke
+ham	No you'll just get a headache trying to figure it out. U can trust me to do the math. I promise. O:-)
+ham	S s..first time..dhoni rocks...
+ham	Ok ill tell the company
+ham	Awesome, think we can get an 8th at usf some time tonight?
+ham	So that means you still think of teju
+ham	No I'm good for the movie, is it ok if I leave in an hourish?
+ham	No no:)this is kallis home ground.amla home town is durban:)
+ham	So lets make it saturday or monday as per convenience.
+ham	Hey... What time is your driving on fri? We go for evaluation on fri?
+spam	449050000301 You have won a £2,000 price! To claim, call 09050000301.
+ham	I'm going 4 lunch now wif my family then aft dat i go str 2 orchard lor.
+spam	Bored of speed dating? Try SPEEDCHAT, txt SPEEDCHAT to 80155, if you don't like em txt SWAP and get a new chatter! Chat80155 POBox36504W45WQ 150p/msg rcd 16
+ham	Cancel cheyyamo?and get some money back?
+spam	Do you want 750 anytime any network mins 150 text and a NEW video phone for only five pounds per week call 08000776320 now or reply for delivery Tomorrow
+ham	Ok.ok ok..then..whats ur todays plan
+ham	Good morning princess! How are you?
+ham	Aiyar sorry lor forgot 2 tell u...
+spam	For taking part in our mobile survey yesterday! You can now have 500 texts 2 use however you wish. 2 get txts just send TXT to 80160 T&C www.txt43.com 1.50p
+ham	Not tonight mate. Catching up on some sleep. This is my new number by the way. 
+ham	Height of "Oh shit....!!" situation: A guy throws a luv letter on a gal but falls on her brothers head whos a gay,.;-):-D
+spam	Ur HMV Quiz cash-balance is currently £500 - to maximize ur cash-in now send HMV1 to 86688 only 150p/msg
+ham	So check your errors and if you had difficulties, do correction.
+ham	Howz pain?hope u r fine..
+ham	Sorry, I'll call later
+ham	Good morning princess! How are you?
+ham	As I entered my cabin my PA said, '' Happy B'day Boss !!''. I felt special. She askd me 4 lunch. After lunch she invited me to her apartment. We went there.
+ham	U wake up already? Thanx 4 e tau sar piah it's quite nice.
+ham	K do I need a login or anything
+spam	Dont forget you can place as many FREE Requests with 1stchoice.co.uk as you wish. For more Information call 08707808226.
+ham	LOL ... No just was busy
+ham	What * u wearing?
+ham	Message:some text missing* Sender:Name Missing* *Number Missing *Sent:Date missing *Missing U a lot thats y everything is missing sent via fullonsms.com
+ham	Oh:)as usual vijay film or its different?
+spam	I don't know u and u don't know me. Send CHAT to 86688 now and let's find each other! Only 150p/Msg rcvd. HG/Suite342/2Lands/Row/W1J6HL LDN. 18 years or over.
+ham	Have you had a good day? Mine was really busy are you up to much tomorrow night?
+ham	And is there a way you can send shade's stuff to her. And she has been wonderful too.
+ham	Really... I tot ur paper ended long ago... But wat u copied jus now got use? U happy lar... I still haf 2 study :-(
+spam	Thank you, winner notified by sms. Good Luck! No future marketing reply STOP to 84122 customer services 08450542832
+ham	Babe ? I lost you ... :-(
+ham	Ok... Help me ask if she's working tmr a not?
+ham	I'm not driving... Raining! Then i'll get caught at e mrt station lor.
+ham	Not a drop in the tank
+ham	(That said can you text him one more time?)
+ham	Sorry, I'll call later
+ham	Ok i go change also...
+spam	1000's of girls many local 2 u who r virgins 2 this & r ready 2 4fil ur every sexual need. Can u 4fil theirs? text CUTE to 69911(£1.50p. m)
+ham	Did u find a sitter for kaitlyn? I was sick and slept all day yesterday.
+ham	Sorry man, accidentally left my phone on silent last night and didn't check it til I got up
+ham	Hey.. Something came up last min.. Think i wun be signing up tmr.. Hee
+ham	He's an adult and would learn from the experience. There's no real danger. I just dont like peeps using drugs they dont need. But no comment
+ham	Hey! There's veggie pizza... :/
+ham	Yun buying... But school got offer 2000 plus only...
+ham	You sure your neighbors didnt pick it up
+ham	K. I will sent it again
+spam	Free entry in 2 a wkly comp to win FA Cup final tkts 21st May 2005. Text FA to 87121 to receive entry question(std txt rate)T&C's apply 08452810075over18's
+ham	New Theory: Argument wins d SITUATION, but loses the PERSON. So dont argue with ur friends just.. . . . kick them &amp; say, I'm always correct.!
+ham	Well. Im computerless. Time to make some oreo truffles
+ham	Haha yeah I see that now, be there in a sec
+ham	I am not having her number sir
+ham	Lol now I'm after that hot air balloon!
+ham	Ok . . now i am in bus. . If i come soon i will come otherwise tomorrow
+ham	Msgs r not time pass.They silently say that I am thinking of U right now and also making U think of me at least 4 a moment. Gd nt.swt drms @Shesil
+ham	Yeah, we can probably swing by once my roommate finishes up with his girl
+spam	Got what it takes 2 take part in the WRC Rally in Oz? U can with Lucozade Energy! Text RALLY LE to 61200 (25p), see packs or lucozade.co.uk/wrc & itcould be u!
+ham	Happy new years melody!
+ham	Ü dun need to pick ur gf?
+ham	Yay! You better not have told that to 5 other girls either.
+ham	Horrible u eat macs eat until u forgot abt me already rite... U take so long 2 reply. I thk it's more toot than b4 so b prepared. Now wat shall i eat?
+ham	Did he say how fantastic I am by any chance, or anything need a bigger life lift as losing the will 2 live, do you think I would be the first person 2 die from N V Q? 
+ham	Just nw i came to hme da..
+ham	I'm outside islands, head towards hard rock and you'll run into me
+ham	To day class is there are no class.
+ham	I'm in chennai velachery:)
+ham	You flippin your shit yet?
+ham	K give me a sec, breaking a  &lt;#&gt;  at cstore
+ham	Am i that much bad to avoid like this?
+ham	Yo, you around? Just got my car back
+ham	Annoying isn't it.
+ham	Goodmorning, Today i am late for  &lt;#&gt; min.
+ham	There's no point hangin on to mr not right if he's not makin u happy
+ham	All will come alive.better correct any good looking figure there itself..
+ham	In that case I guess I'll see you at campus lodge
+ham	We're done...
+ham	Come to my home for one last time i wont do anything. Trust me.
+ham	I was up all night too worrying about this appt. It's a shame we missed a girls night out with quizzes popcorn and you doing my hair.
+spam	Sex up ur mobile with a FREE sexy pic of Jordan! Just text BABE to 88600. Then every wk get a sexy celeb! PocketBabe.co.uk 4 more pics. 16 £3/wk 087016248
+ham	Ok... C ya...
+spam	You have 1 new voicemail. Please call 08719181503
+ham	What he said is not the matter. My mind saying some other matter is there.
+ham	He also knows about lunch menu only da. . I know
+ham	Al he does is moan at me if n e thin goes wrong its my fault&al de arguments r my fault&fed up of him of himso y bother? Hav 2go, thanx.xx
+ham	NEFT Transaction with reference number  &lt;#&gt;  for Rs. &lt;DECIMAL&gt;  has been credited to the beneficiary account on  &lt;#&gt;  at  &lt;TIME&gt; : &lt;#&gt;
+ham	Otherwise had part time job na-tuition..
+ham	I know she called me
+ham	Me also da, i feel yesterday night  wait til 2day night dear.
+ham	Thanks for understanding. I've been trying to tell sura that.
+spam	WIN a year supply of CDs 4 a store of ur choice worth £500 & enter our £100 Weekly draw txt MUSIC to 87066 Ts&Cs www.Ldew.com.subs16+1win150ppmx3
+ham	The whole car appreciated the last two! Dad and are having a map reading semi argument but apart from that things are going ok. P.
+spam	As a SIM subscriber, you are selected to receive a Bonus! Get it delivered to your door, Txt the word OK to No: 88600 to claim. 150p/msg, EXP. 30Apr
+ham	I need you to be in my strong arms...
+ham	Also maaaan are you missing out
+ham	His bday real is in april .
+ham	Guessin you ain't gonna be here before 9?
+ham	Ok then i will come to ur home after half an hour
+ham	Yo, the game almost over? Want to go to walmart soon
+ham	Yeah, probably but not sure. Ilol let u know, but personally I wuldnt bother, then again if ur goin to then I mite as well!!
+ham	I'll text now! All creepy like so he won't think that we forgot
+ham	that would be good … I'll phone you tomo lunchtime, shall I, to organise something?
+spam	You have 1 new voicemail. Please call 08719181513.
+ham	Damn, can you make it tonight or do you want to just wait til tomorrow
+ham	K..k..i'm also fine:)when will you complete the course?
+ham	True. It is passable. And if you get a high score and apply for phd, you get 5years of salary. So it makes life easier.
+spam	No. 1 Nokia Tone 4 ur mob every week! Just txt NOK to 87021. 1st Tone FREE ! so get txtin now and tell ur friends. 150p/tone. 16 reply HL 4info
+ham	Prakesh is there know.
+ham	Teach me apps da. When you come to college.
+ham	Rofl betta invest in some  anti aging products
+spam	You are a winner U have been specially selected 2 receive £1000 cash or a 4* holiday (flights inc) speak to a live operator 2 claim 0871277810810
+ham	sir, you will receive the account no another 1hr time. Sorry for the delay.
+spam	Reply with your name and address and YOU WILL RECEIVE BY POST a weeks completely free accommodation at various global locations www.phb1.com ph:08700435505150p
+ham	So ü'll be submitting da project tmr rite?
+spam	FREE entry into our £250 weekly comp just send the word ENTER to 84128 NOW. 18 T&C www.textcomp.com cust care 08712405020.
+ham	Jus ans me lar. U'll noe later.
+ham	I want to send something that can sell fast.  &lt;#&gt; k is not easy money.
+ham	have got * few things to do. may be in * pub later.
+ham	1's finish meeting call me.
+ham	Lol ok. I'll snatch her purse too.
+ham	"Hello-/@drivby-:0quit edrunk sorry iff pthis makes no senrd-dnot no how ^ dancce 2 drum n basq!ihave fun 2nhite x ros xxxxxxx"
+ham	Your opinion about me? 1. Over 2. Jada 3. Kusruthi 4. Lovable 5. Silent 6. Spl character 7. Not matured 8. Stylish 9. Simple Pls reply..
+ham	How much are we getting?
+ham	Is ur paper in e morn or aft tmr?
+ham	Dear relieved of westonzoyland, all going to plan this end too!
+ham	Hope you are having a great new semester. Do wish you the very best. You are made for greatness.
+ham	Oh yes I can speak txt 2 u no! Hmm. Did u get  email?
+ham	I want to show you the world, princess :) how about europe?
+ham	Nobody can decide where to eat and dad wants Chinese
+ham	No shoot me. I'm in the docs waiting room. :/
+ham	Now? I'm going out 4 dinner soon..
+ham	Hello which the site to download songs its urgent pls
+ham	I do know what u mean,  is the king of not havin credit! I'm goin2bed now. Night night sweet! Only1more sleep! 
+ham	Horrible gal. Me in sch doing some stuff. How come u got mc?
+ham	HI HUN! IM NOT COMIN 2NITE-TELL EVERY1 IM SORRY 4 ME, HOPE U AVA GOODTIME!OLI RANG MELNITE IFINK IT MITE B SORTED,BUT IL EXPLAIN EVERYTHIN ON MON.L8RS.x
+ham	I call you later, don't have network. If urgnt, sms me.
+ham	Ummmmmaah Many many happy returns of d day my dear sweet heart.. HAPPY BIRTHDAY dear
+spam	Please CALL 08712402779 immediately as there is an urgent message waiting for you
+ham	Yeah like if it goes like it did with my friends imma flip my shit in like half an hour
+ham	Mum say we wan to go then go... Then she can shun bian watch da glass exhibition... 
+ham	What your plan for pongal?
+ham	Just wait till end of march when el nino gets himself. Oh.
+ham	Not yet chikku..going to room nw, i'm in bus..
+ham	Am also doing in cbe only. But have to pay.
+ham	Honey boo I'm missing u.
+ham	We have sent JD for Customer Service cum Accounts Executive to ur mail id, For details contact us
+ham	Yo, I'm at my parents' gettin cash. Good news: we picked up a downstem
+ham	Thank you so much. When we skyped wit kz and sura, we didnt get the pleasure of your company. Hope you are good. We've given you ultimatum oh! We are countin down to aburo. Enjoy!
+spam	Hungry gay guys feeling hungry and up 4 it, now. Call 08718730555 just 10p/min. To stop texts call 08712460324 (10p/min)
+ham	Ok. No wahala. Just remember that a friend in need ...
+ham	I will see in half an hour
+ham	Im in inperialmusic listening2the weirdest track ever by”leafcutter john”-sounds like insects being molested&someone plumbing,remixed by evil men on acid!
+ham	"Hey sorry I didntgive ya a a bellearlier hunny,just been in bedbut mite go 2 thepub l8tr if uwana mt up?loads a luv Jenxxx."
+ham	SERIOUSLY. TELL HER THOSE EXACT WORDS RIGHT NOW.
+spam	Can U get 2 phone NOW? I wanna chat 2 set up meet Call me NOW on 09096102316 U can cum here 2moro Luv JANE xx Calls£1/minmoremobsEMSPOBox45PO139WA
+ham	Tee hee. Off to lecture, cheery bye bye.
+ham	Sorry chikku, my cell got some problem thts y i was nt able to reply u or msg u..
+ham	If you still havent collected the dough pls let me know so i can go to the place i sent it to get the control number
+ham	Ok...
+spam	network operator. The service is free. For T & C's visit 80488.biz
+ham	Let me know how to contact you. I've you settled in a room. Lets know you are ok.
+ham	Wot u up 2 u weirdo?
+ham	Can do lor...
+ham	Dont put your phone on silent mode ok
+ham	Can i meet ü at 5.. As 4 where depends on where ü wan 2 in lor..
+ham	Waiting 4 my tv show 2 start lor... U leh still busy doing ur report?
+ham	Oh ho. Is this the first time u use these type of words
+ham	Am I the only one who doesn't stalk profiles?
+ham	Ever green quote ever told by Jerry in cartoon "A Person Who Irritates u Always Is the one Who Loves u Vry Much But Fails to Express It...!..!! :-) :-) gud nyt
+ham	Yes i thought so. Thanks.
+ham	But if she.s drinkin i'm ok.
+ham	Just wondering, the others just took off
+ham	Night has ended for another day, morning has come in a special way. May you smile like the sunny rays and leaves your worries at the blue blue bay. Gud mrng
+ham	What do you do, my dog ? Must I always wait till the end of your day to have word from you ? Did you run out of time on your cell already?
+ham	Happy new year to u too!
+ham	Hey...Great deal...Farm tour 9am to 5pm $95/pax, $50 deposit by 16 May
+ham	Eat jap done oso aft ur lect wat... Ü got lect at 12 rite... 
+ham	Hey babe! I saw you came online for a second and then you disappeared, what happened ?
+ham	Da my birthdate in certificate is in april but real date is today. But dont publish it. I shall give you a special treat if you keep the secret. Any way thanks for the wishes
+ham	Happy birthday... May all ur dreams come true...
+ham	Aiyah u did ok already lar. E nydc at wheellock?
+ham	TELL HER I SAID EAT SHIT.
+ham	Sure! I am driving but will reach my destination soon.
+ham	K so am I, how much for an 8th? Fifty?
+ham	Your daily text from me – a favour this time
+ham	Great to hear you are settling well. So what's happenin wit ola?
+ham	Those cocksuckers. If it makes you feel better ipads are worthless garbage novelty items and you should feel bad for even wanting one
+ham	I tot u reach liao. He said t-shirt.
+ham	FRAN I DECIDED 2 GO N E WAY IM COMPLETELY BROKE AN KNACKERED I GOT UP BOUT 3 C U 2MRW LOVE JANX P.S THIS IS MY DADS FONE, -NO CREDIT
+ham	I cant pick the phone right now. Pls send a message
+ham	Your right! I'll make the appointment right now.
+ham	Designation is software developer and may be she get chennai:)
+spam	Enjoy the jamster videosound gold club with your credits for 2 new videosounds+2 logos+musicnews! get more fun from jamster.co.uk! 16+only Help? call: 09701213186 
+spam	Get 3 Lions England tone, reply lionm 4 mono or lionp 4 poly. 4 more go 2 www.ringtones.co.uk, the original n best. Tones 3GBP network operator rates apply
+ham	I jokin oni lar.. Ü busy then i wun disturb ü.
+ham	Ok, be careful ! Don't text and drive !
+ham	I.ll always be there, even if its just in spirit. I.ll get a bb soon. Just trying to be sure i need it.
+ham	U r too much close to my heart. If u go away i will be shattered. Plz stay with me.
+ham	I love u 2 babe! R u sure everything is alrite. Is he being an idiot? Txt bak girlie
+ham	How abt making some of the pics bigger?
+ham	Got but got 2 colours lor. One colour is quite light n e other is darker lor. Actually i'm done she's styling my hair now.
+ham	Whenevr ur sad, Whenevr ur gray, Remembr im here 2 listn 2 watevr u wanna say, Jus walk wid me a little while,&amp; I promise I'll bring back ur smile.:-)
+ham	Why nothing. Ok anyway give me treat
+spam	Win the newest “Harry Potter and the Order of the Phoenix (Book 5) reply HARRY, answer 5 questions - chance to be the first among readers!
+ham	Ok...
+ham	Correct. So how was work today
+ham	Just sent again. Do you scream and moan in bed, princess?
+ham	I wake up long ago already... Dunno, what other thing?
+ham	Oh just getting even with u.... u?
+ham	I thk 50 shd be ok he said plus minus 10.. Did ü leave a line in between paragraphs?
+ham	Can you call me plz. Your number shows out of coveragd area. I have urgnt call in vasai &amp; have to reach before 4'o clock so call me plz
+ham	Yeah jay's sort of a fucking retard
+ham	Sorry, was in the bathroom, sup
+spam	Ur balance is now £500. Ur next question is: Who sang 'Uptown Girl' in the 80's ? 2 answer txt ur ANSWER to 83600. Good luck!
+ham	My exam is for february 4. Wish you a great day.
+ham	I dont know what to do to come out of this so only am ask questions like this dont mistake me.
+ham	Aight no rush, I'll ask jay
+ham	Good Morning plz call me sir
+ham	It's ok lar. U sleep early too... Nite...
+ham	Oh... Icic... K lor, den meet other day...
+ham	Oh ! A half hour is much longer in Syria than Canada, eh ? Wow you must get SO much more work done in a day than us with all that extra time ! *grins*
+ham	Sometimes we put walls around our hearts,not just to be safe from getting hurt.. But to find out who cares enough to break the walls &amp; get closer.. GOODNOON:)
+ham	Sweet, we may or may not go to 4U to meet carlos so gauge patty's interest in that
+ham	Then she buying today? Ü no need to c meh...
+ham	Aight sorry I take ten years to shower. What's the plan?
+ham	Every monday..nxt week vl be completing..
+ham	Might ax well im there.
+ham	Just chill for another 6hrs. If you could sleep the pain is not a surgical emergency so see how it unfolds. Okay
+ham	Yeah I'll try to scrounge something up
+ham	Crazy ar he's married. Ü like gd looking guys not me. My frens like say he's korean leona's fave but i dun thk he is. Aft some thinking mayb most prob i'll go.
+ham	Were somewhere on Fredericksburg
+ham	Que pases un buen tiempo or something like that
+ham	Is it ok if I stay the night here? Xavier has a sleeping bag and I'm getting tired
+ham	She doesnt need any test.
+ham	Nothing much, chillin at home. Any super bowl plan?
+spam	FREE2DAY sexy St George's Day pic of Jordan!Txt PIC to 89080 dont miss out, then every wk a saucy celeb!4 more pics c PocketBabe.co.uk 0870241182716 £3/wk
+ham	Bugis oso near wat... 
+ham	Yo theres no class tmrw right?
+ham	Let Ur Heart Be Ur Compass Ur Mind Ur Map Ur Soul Ur Guide And U Will Never loose in world....gnun - Sent via WAY2SMS.COM
+ham	Goodnight, sleep well da please take care pa. Please.
+ham	Baaaaabe! I misss youuuuu ! Where are you ? I have to go and teach my class at 5 ...
+ham	Convey my regards to him
+ham	U ned to convince him tht its not possible witot hurting his feeling its the main
+ham	Good afternoon loverboy ! How goes you day ? Any luck come your way? I think of you, sweetie and send my love across the sea to make you smile and happy
+ham	If i start sending blackberry torch to nigeria will you find buyer for me?like 4a month. And tell dad not to buy bb from anyone oh.
+ham	&lt;#&gt; %of pple marry with their lovers... becz they hav gud undrstndng dat avoids problems. i sent dis 2 u, u wil get gud news on friday by d person you like. And tomorrow will be the best day of your life. Dont break this chain. If you break you will suffer. send this to  &lt;#&gt;  frnds in &lt;#&gt;  mins whn u read...
+ham	Yo dude guess who just got arrested the other day
+ham	Shuhui say change 2 suntec steamboat? U noe where? Where r u now?
+ham	What does the dance river do?
+ham	Yetunde, i'm sorry but moji and i seem too busy to be able to go shopping. Can you just please find some other way to get what you wanted us to get. Please forgive me. You can reply free via yahoo messenger.
+ham	Hey i will be really pretty late... You want to go for the lesson first? I will join you. I'm only reaching tp mrt
+spam	HOT LIVE FANTASIES call now 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870..k
+ham	Bbq this sat at mine from 6ish. Ur welcome 2 come
+ham	I don't know, same thing that's wrong everyso often, he panicks starts goin on bout not bein good enough …
+ham	Alright. I'm out--have a good night!
+ham	Did you try making another butt.
+ham	Hope you are feeling great. Pls fill me in. Abiola
+ham	I though we shd go out n have some fun so bar in town or something – sound ok?
+ham	1) Go to write msg 2) Put on Dictionary mode 3)Cover the screen with hand, 4)Press  &lt;#&gt; . 5)Gently remove Ur hand.. Its interesting..:)
+spam	Bears Pic Nick, and Tom, Pete and ... Dick. In fact, all types try gay chat with photo upload call 08718730666 (10p/min). 2 stop texts call 08712460324
+spam	500 New Mobiles from 2004, MUST GO! Txt: NOKIA to No: 89545 & collect yours today!From ONLY £1 www.4-tc.biz 2optout 087187262701.50gbp/mtmsg18 TXTAUCTION
+ham	We're finally ready fyi
+ham	Auntie huai juan never pick up her phone
+spam	Double Mins & Double Txt & 1/2 price Linerental on Latest Orange Bluetooth mobiles. Call MobileUpd8 for the very latest offers. 08000839402 or call2optout/LF56
+ham	Ya tel, wats ur problem..
+spam	No. 1 Nokia Tone 4 ur mob every week! Just txt NOK to 87021. 1st Tone FREE ! so get txtin now and tell ur friends. 150p/tone. 16 reply HL 4info
+ham	i dnt wnt to tlk wid u
+ham	We spend our days waiting for the ideal path to appear in front of us.. But what we forget is.. "paths are made by walking.. not by waiting.." Goodnight!
+ham	Its ok my arm is feeling weak cuz i got a shot so we can go another time
+ham	Please reserve ticket on saturday eve from chennai to thirunelvali and again from tirunelvali to chennai on sunday eve...i already see in net..no ticket available..i want to book ticket through tackle ..
+ham	Storming msg: Wen u lift d phne, u say "HELLO" Do u knw wt is d real meaning of HELLO?? . . . It's d name of a girl..! . . . Yes.. And u knw who is dat girl?? "Margaret Hello" She is d girlfrnd f Grahmbell who invnted telphone... . . . . Moral:One can 4get d name of a person, bt not his girlfrnd... G o o d n i g h t . . .@
+ham	That's ok. I popped in to ask bout something and she said you'd been in. Are you around tonght wen this girl comes?
+ham	All e best 4 ur exam later.
+ham	Hope ur head doesn't hurt 2 much ! Am ploughing my way through a pile of ironing ! Staying in with a chinky tonight come round if you like.
+ham	Oh k.i think most of wi and nz players unsold.
+ham	Haha... Where got so fast lose weight, thk muz go 4 a month den got effect... Gee,later we go aust put bk e weight.
+ham	I wonder how you got online, my love ? Had you gone to the net cafe ? Did you get your phone recharged ? Were you on a friends net ? I think of you, boytoy
+ham	Haha just kidding, papa needs drugs
+ham	Thk shld b can... Ya, i wana go 4 lessons... Haha, can go for one whole stretch...
+ham	Oh ok..
+ham	R we still meeting 4 dinner tonight?
+ham	Thats cool! I am a gentleman and will treat you with dignity and respect.
+ham	Shall i start from hear.
+ham	Then we wait 4 u lor... No need 2 feel bad lar...
+ham	No did you check? I got his detailed message now
+ham	You have registered Sinco as Payee. Log in at icicibank.com and enter URN  &lt;#&gt;  to confirm. Beware of frauds. Do NOT share or disclose URN to anyone.
+ham	No, I decided that only people who care about stuff vote and caring about stuff is for losers
+ham	Kaiez... Enjoy ur tuition... Gee... Thk e second option sounds beta... I'll go yan jiu den msg u...
+ham	You have registered Sinco as Payee. Log in at icicibank.com and enter URN  &lt;#&gt;  to confirm. Beware of frauds. Do NOT share or disclose URN to anyone.
+ham	cool. We will have fun practicing making babies!
+ham	Actually getting ready to leave the house.
+ham	K..k..any special today?
+spam	URGENT, IMPORTANT INFORMATION FOR O2 USER. TODAY IS YOUR LUCKY DAY! 2 FIND OUT WHY LOG ONTO HTTP://WWW.URAWINNER.COM THERE IS A FANTASTIC SURPRISE AWAITING FOR YOU
+ham	Then we gotta do it after that
+ham	I've got ten bucks, jay is being noncomittal
+ham	Where at were hungry too
+ham	Pls speak to that customer machan.
+ham	somewhere out there beneath the pale moon light someone think in of u some where out there where dreams come true... goodnite &amp; sweet dreams
+ham	Wen ur lovable bcums angry wid u, dnt take it seriously.. Coz being angry is d most childish n true way of showing deep affection, care n luv!.. kettoda manda... Have nice day da.
+spam	Dear U've been invited to XCHAT. This is our final attempt to contact u! Txt CHAT to 86688 150p/MsgrcvdHG/Suite342/2Lands/Row/W1J6HL LDN 18 yrs
+ham	So wats ur opinion abt him and how abt is character?
+ham	Jay is snickering and tells me that x is totally fucking up the chords as we speak
+ham	No..few hours before.went to hair cut .
+ham	No wonder... Cos i dun rem seeing a silver car... But i thk i saw a black one...
+ham	Lmao. Take a pic and send it to me.
+ham	"Speak only when you feel your words are better than the silence..." Gud mrng:-)
+ham	No. She's currently in scotland for that.
+ham	Do you work all this week ?
+spam	Congratulations ur awarded either £500 of CD gift vouchers & Free entry 2 our £100 weekly draw txt MUSIC to 87066 TnCs www.Ldew.com 1 win150ppmx3age16
+ham	Lol great now im getting hungry.
+ham	Yes.. now only saw your message..
+ham	I'll be at mu in like  &lt;#&gt;  seconds
+ham	Ok...
+ham	THING R GOOD THANX GOT EXAMS IN MARCH IVE DONE NO REVISION? IS FRAN STILL WITH BOYF? IVE GOTTA INTERVIW 4 EXETER BIT WORRIED!x
+ham	Tell you what, if you make a little spreadsheet and track whose idea it was to smoke to determine who "smokes too much" for the entire month of february, I'll come up
+spam	For sale - arsenal dartboard. Good condition but no doubles or trebles!
+ham	Don't look back at the building because you have no coat and i don't want you to get more sick. Just hurry home and wear a coat to the gym!!!
+ham	My painful personal thought- "I always try to keep everybody happy all the time. But nobody recognises me when i am alone"
+ham	Thanks for ve lovely wisheds. You rock
+ham	You intrepid duo you! Have a great time and see you both soon. 
+ham	I asked sen to come chennai and search for job.
+ham	Dad went out oredi... 
+ham	I jus hope its true that  missin me cos i'm really missin him! You haven't done anything to feel guilty about, yet.
+ham	Wat so late still early mah. Or we juz go 4 dinner lor. Aiya i dunno...
+ham	Arms fine, how's Cardiff and uni? 
+ham	In fact when do you leave? I think addie goes back to school tues or wed
+ham	Cool breeze... Bright sun... Fresh flower... Twittering birds... All these waiting to wish u: "GOODMORNING &amp; HAVE A NICE DAY" :)
+ham	Ya:)going for restaurant..
+ham	Its ok., i just askd did u knw tht no?
+spam	Free 1st week entry 2 TEXTPOD 4 a chance 2 win 40GB iPod or £250 cash every wk. Txt POD to 84128 Ts&Cs www.textpod.net custcare 08712405020.
+ham	Those ducking chinchillas
+ham	I am in a marriage function
+ham	Looks like u wil b getting a headstart im leaving here bout 2.30ish but if u r desperate for my company I could head in earlier-we were goin to meet in rummer.
+ham	Don‘t give a flying monkeys wot they think and I certainly don‘t mind. Any friend of mine and all that!
+spam	As a registered optin subscriber ur draw 4 £100 gift voucher will be entered on receipt of a correct ans to 80062 Whats No1 in the BBC charts
+ham	say thanks2. 
+ham	Msg me when rajini comes.
+ham	Ya! when are ü taking ure practical lessons? I start in june..  
+ham	That's good, because I need drugs
+ham	Stupid.its not possible
+ham	Can ü all decide faster cos my sis going home liao..
+spam	Summers finally here! Fancy a chat or flirt with sexy singles in yr area? To get MATCHED up just reply SUMMER now. Free 2 Join. OptOut txt STOP Help08714742804
+ham	U sleeping now.. Or you going to take? Haha.. I got spys wat.. Me online checking n replying mails lor..
+spam	CLAIRE here am havin borin time & am now alone U wanna cum over 2nite? Chat now 09099725823 hope 2 C U Luv CLAIRE xx Calls£1/minmoremobsEMSPOBox45PO139WA
+ham	Fighting with the world is easy, u either win or lose bt fightng with some1 who is close to u is dificult if u lose - u lose if u win - u still lose.
+spam	Bought one ringtone and now getting texts costing 3 pound offering more tones etc
+ham	Yalru lyfu astne chikku.. Bt innu mundhe lyf ali halla ke bilo (marriage)program edhae, so lyf is nt yet ovr chikku..ali vargu lyfu meow meow:-D
+ham	Kinda. First one gets in at twelve! Aah. Speak tomo
+spam	09066362231 URGENT! Your mobile No 07xxxxxxxxx won a £2,000 bonus caller prize on 02/06/03! this is the 2nd attempt to reach YOU! call 09066362231 ASAP!
+ham	Ok good then i later come find ü... C lucky i told ü to go earlier... Later pple take finish ü no more again...
+ham	Wat makes u thk i'll fall down. But actually i thk i'm quite prone 2 falls. Lucky my dad at home i ask him come n fetch me already.
+spam	YOU 07801543489 are guaranteed the latests Nokia Phone, a 40GB iPod MP3 player or a £500 prize! Txt word:COLLECT to No:83355! TC-LLC NY-USA 150p/Mt msgrcvd18+
+ham	Your account has been refilled successfully by INR  &lt;DECIMAL&gt; . Your KeralaCircle prepaid account balance is Rs  &lt;DECIMAL&gt; . Your Transaction ID is KR &lt;#&gt; .
+ham	I wont touch you with out your permission.
+spam	Hi its LUCY Hubby at meetins all day Fri & I will B alone at hotel U fancy cumin over? Pls leave msg 2day 09099726395 Lucy x Calls£1/minMobsmoreLKPOBOX177HP51FL
+ham	7 wonders in My WORLD 7th You 6th Ur style 5th Ur smile 4th Ur Personality 3rd Ur Nature 2nd Ur SMS and 1st "Ur Lovely Friendship"... good morning dear
+ham	Take some small dose tablet for fever
+ham	Oh. U must have taken your REAL Valentine out shopping first.
+ham	Just sent you an email – to an address with incomm in it, is that right?
+ham	Will do, you gonna be at blake's all night? I might be able to get out of here a little early
+ham	Friendship is not a game to play, It is not a word to say, It doesn\'t start on March and ends on May, It is tomorrow, yesterday, today and e
+ham	Nice. Wait...should you be texting right now? I'm not gonna pay your ticket, ya know!
+ham	I'm watching lotr w my sis dis aft. So u wan 2 meet me 4 dinner at nite a not?
+ham	Why you keeping me away like this
+ham	I think its far more than that but find out. Check google maps for a place from your dorm.
+ham	My trip was ok but quite tiring lor. Uni starts today but it's ok 4 me cos i'm not taking any modules but jus concentrating on my final yr project.
+ham	Have you always been saying welp?
+ham	I'm a guy, browsin is compulsory
+ham	Ok...
+ham	Purity of friendship between two is not about smiling after reading the forwarded message..Its about smiling just by seeing the name. Gud evng musthu
+ham	Sorry, I'll call later
+ham	(I should add that I don't really care and if you can't I can at least get this dude to fuck off but hey, your money if you want it)
+ham	Hello lover! How goes that new job? Are you there now? Are you happy? Do you think of me? I wake, my slave and send you a teasing kiss from across the sea
+ham	I told your number to gautham..
+ham	Tell them no need to investigate about me anywhere.
+ham	Ok i juz receive..
+ham	Cant believe i said so many things to you this morning when all i really wanted to say was good morning, i love you! Have a beautiful morning. See you in the library later.
+spam	Your account has been credited with 500 FREE Text Messages. To activate, just txt the word: CREDIT to No: 80488 T&Cs www.80488.biz
+ham	In the end she might still vomit but its okay. Not everything will come out.
+ham	How are you with moneY...as in to you...money aint a thing....how are you sha!
+ham	It has everything to do with the weather. Keep extra warm. Its a cold but nothing serious. Pls lots of vitamin c
+ham	Hey gals.. Anyone of u going down to e driving centre tmr?
+ham	I'm always on yahoo messenger now. Just send the message to me and i.ll get it you may have to send it in the mobile mode sha but i.ll get it. And will reply.
+ham	I'm putting it on now. It should be ready for  &lt;TIME&gt; 
+ham	Time n Smile r the two crucial things in our life. Sometimes time makes us to forget smile, and sometimes someone's smile makes us to forget time gud noon
+spam	SMS. ac JSco: Energy is high, but u may not know where 2channel it. 2day ur leadership skills r strong. Psychic? Reply ANS w/question. End? Reply END JSCO
+ham	Host-based IDPS for linux systems.
+spam	HOT LIVE FANTASIES call now 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870 is a national rate call
+ham	Don no da:)whats you plan?
+ham	Ill be there on  &lt;#&gt;  ok.
+ham	Oh my God. I'm almost home
+ham	Total video converter free download type this in google search:)
+spam	Thanks for the Vote. Now sing along with the stars with Karaoke on your mobile. For a FREE link just reply with SING now.
+ham	Wen ur lovable bcums angry wid u, dnt take it seriously.. Coz being angry is d most childish n true way of showing deep affection, care n luv!.. kettoda manda... Have nice day da.
+ham	Sounds like something that someone testing me would sayy
+ham	When u love someone Dont make them to love u as much as u do. But Love them so much that they dont want to be loved by anyone except you... Gud nit.
+ham	Pete,is this your phone still? Its Jenny from college and Leanne.what are you up to now?:)
+ham	Oops sorry. Just to check that you don't mind picking me up tomo at half eight from station. Would that be ok?
+ham	Hey sweet, I was wondering when you had a moment if you might come to me ? I want to send a file to someone but it won't go over yahoo for them because their connection sucks, remember when you set up that page for me to go to and download the format disc ? Could you tell me how to do that ? Or do you know some other way to download big files ? Because they can download stuff directly from the internet. Any help would be great, my prey ... *teasing kiss*
+ham	Hows the champ just leaving glasgow!
+ham	K:)all the best:)congrats...
+ham	I wonder if you'll get this text?
+ham	I need to come home and give you some good lovin...
+spam	Our brand new mobile music service is now live. The free music player will arrive shortly. Just install on your phone to browse content from the top artists.
+ham	Shall i ask one thing if you dont mistake me.
+ham	Check wid corect speling i.e. Sarcasm
+spam	URGENT! Your Mobile No was awarded a £2,000 Bonus Caller Prize on 1/08/03! This is our 2nd attempt to contact YOU! Call 0871-4719-523 BOX95QU BT National Rate
+ham	Are you angry with me. What happen dear
+ham	I thk u dun haf 2 hint in e forum already lor... Cos i told ron n darren is going 2 tell shuhui.
+ham	Yup ok thanx...
+ham	Hi:)cts employee how are you?
+ham	Pls pls find out from aunt nike.
+ham	Wow ... I love you sooo much, you know ? I can barely stand it ! I wonder how your day goes and if you are well, my love ... I think of you and miss you
+ham	No screaming means shouting..
+ham	Hey what happen de. Are you alright.
+ham	Should I have picked up a receipt or something earlier
+ham	I think chennai well settled?
+ham	Oh dang! I didn't mean o send that to you! Lol!
+ham	Unfortunately i've just found out that we have to pick my sister up from the airport that evening so don't think i'll be going out at all. We should try to go out one of th
+ham	Horrible bf... I now v hungry...
+ham	Remember on that day..
+spam	You have won a Nokia 7250i. This is what you get when you win our FREE auction. To take part send Nokia to 86021 now. HG/Suite342/2Lands Row/W1JHL 16+
+ham	How's it feel? Mr. Your not my real Valentine just my yo Valentine even tho u hardly play!!
+ham	All sounds good. Fingers . Makes it difficult to type
+ham	Midnight at the earliest
+ham	You're not sure that I'm not trying to make xavier smoke because I don't want to smoke after being told I smoke too much?
+ham	K come to nordstrom when you're done
+ham	Do u konw waht is rael FRIENDSHIP Im gving yuo an exmpel: Jsut ese tihs msg.. Evrey splleing of tihs msg is wrnog.. Bt sitll yuo can raed it wihtuot ayn mitsake.. GOODNIGHT &amp; HAVE A NICE SLEEP..SWEET DREAMS..
+ham	Now press conference da:)
+spam	Hello from Orange. For 1 month's free access to games, news and sport, plus 10 free texts and 20 photo messages, reply YES. Terms apply: www.orange.co.uk/ow
+ham	After completed degree. There is no use in joining finance.
+ham	Good afternoon, my love ! Any job prospects ? Are you missing me ? What do you do ? Are you being lazy and bleak, hmmm ? Or happy and filled with my love ?
+ham	Shant disturb u anymore... Jia you...
+ham	Bishan lar nearer... No need buy so early cos if buy now i gotta park my car...
+ham	Me, i dont know again oh
+ham	Dude sux for snake. He got old and raiden got buff
+ham	He says hi and to get your ass back to south tampa (preferably at a kegger)
+ham	In e msg jus now. U said thanks for gift.
+ham	U too...
+ham	Ok how you dear. Did you call chechi
+ham	Yeah we do totes. When u wanna?
+ham	Ok i found dis pierre cardin one which looks normal costs 20 its on sale.
+ham	Good sleep is about rhythm. The person has to establish a rhythm that the body will learn and use. If you want to know more :-)
+ham	Wat r u doing?
+ham	Message from . I am at Truro Hospital on ext. You can phone me here. as I have a phone by my side
+ham	Single line with a big meaning::::: "Miss anything 4 ur "Best Life" but, don't miss ur best life for anything... Gud nyt...
+ham	Just got some gas money, any chance you and the gang want to go on a grand nature adventure?
+ham	Dnt worry...use ice pieces in a cloth pack.also take 2 tablets.
+ham	Dude just saw a parked car with its sunroof popped up. Sux
+ham	Get ready to put on your excellent sub face :)
+ham	Tmrw. Im finishing 9 doors
+ham	The  &lt;#&gt; g that i saw a few days ago, the guy wants sell wifi only for  &lt;#&gt;  and with 3g for  &lt;#&gt; . That's why i blanked him.
+ham	I am late. I will be there at
+ham	whatever, im pretty pissed off.
+ham	Today is ACCEPT DAY..U Accept me as? Brother Sister Lover Dear1 Best1 Clos1 Lvblefrnd Jstfrnd Cutefrnd Lifpartnr Belovd Swtheart Bstfrnd No rply means enemy
+ham	I dont have that much image in class.
+ham	No:-)i got rumour that you going to buy apartment in chennai:-)
+ham	Near kalainar tv office.thenampet
+spam	Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send GO to 86688 only 150p/msg. CC 08718720201 HG/Suite342/2Lands Row/W1J6HL
+spam	SMS AUCTION - A BRAND NEW Nokia 7250 is up 4 auction today! Auction is FREE 2 join & take part! Txt NOKIA to 86021 now! HG/Suite342/2Lands Row/W1J6HL
+ham	My sis is catching e show in e afternoon so i'm not watching w her. So c u wan 2 watch today or tmr lor.
+ham	Sounds gd... Haha... Can... Wah, u yan jiu so fast liao...
+ham	No. To be nosy I guess. Idk am I over reacting if I'm freaked?
+ham	Remember all those whom i hurt during days of satanic imposter in me.need to pay a price,so be it.may destiny keep me going and as u said pray that i get the mind to get over the same.
+ham	How to Make a girl Happy? It's not at all difficult to make girls happy. U only need to be... 1. A friend 2. Companion 3. Lover 4. Chef . . .  &lt;#&gt; . Good listener  &lt;#&gt; . Organizer  &lt;#&gt; . Good boyfriend  &lt;#&gt; . Very clean  &lt;#&gt; . Sympathetic  &lt;#&gt; . Athletic  &lt;#&gt; . Warm . . .  &lt;#&gt; . Courageous  &lt;#&gt; . Determined  &lt;#&gt; . True  &lt;#&gt; . Dependable  &lt;#&gt; . Intelligent . . .  &lt;#&gt; . Psychologist  &lt;#&gt; . Pest exterminator  &lt;#&gt; . Psychiatrist  &lt;#&gt; . Healer . .  &lt;#&gt; . Stylist  &lt;#&gt; . Driver . . Aaniye pudunga venaam..
+ham	Why is that, princess? I bet the brothas are all chasing you!
+ham	I shall book chez jules for half eight, if that's ok with you?
+ham	Hhahhaahahah rofl wtf nig was leonardo in your room or something
+ham	Yep, at derek's house now, see you Sunday &lt;3
+ham	It's cool, let me know before it kicks off around  &lt;#&gt; , I'll be out and about all day
+ham	Sorry, I'll call later
+ham	I was wondering if it would be okay for you to call uncle john and let him know that things are not the same in nigeria as they r here. That  &lt;#&gt;  dollars is 2years sent and that you know its a strain but i plan to pay back every dime he gives. Every dime so for me to expect anything from you is not practical. Something like that.
+ham	There are no other charges after transfer charges and you can withdraw anyhow you like
+ham	Dont search love, let love find U. Thats why its called falling in love, bcoz U dont force yourself, U just fall and U know there is smeone to hold U... BSLVYL
+ham	At 4. Let's go to bill millers
+ham	I love you. You set my soul on fire. It is not just a spark. But it is a flame. A big rawring flame. XoXo
+ham	Somewhr someone is surely made 4 u. And God has decided a perfect time to make u meet dat person. . . . till den, . . . . . Enjoy ur crushes..!!!;-)
+ham	That's my honeymoon outfit. :)
+ham	Will it help if we propose going back again tomorrow
+spam	PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S. I. M. points. Call 08719899230 Identifier Code: 41685 Expires 07/11/04
+ham	Never blame a day in ur life. Good days give u happiness. Bad days give u experience. Both are essential in life! All are Gods blessings! good morning.:
+ham	Pls confirm the time to collect the cheque.
+spam	As a Registered Subscriber yr draw 4 a £100 gift voucher will b entered on receipt of a correct ans. When are the next olympics. Txt ans to 80062
+spam	URGENT! Your Mobile number has been awarded with a £2000 prize GUARANTEED. Call 09061790121 from land line. Claim 3030. Valid 12hrs only 150ppm
+ham	Daddy will take good care of you :)
+ham	Yeah probably, I still gotta check out with leo
+ham	K.then any other special?
+ham	Carlos is taking his sweet time as usual so let me know when you and patty are done/want to smoke and I'll tell him to haul ass
+ham	Ok pa. Nothing problem:-)
+ham	Have you heard about that job? I'm going to that wildlife talk again tonight if u want2come. Its that2worzels and a wizzle or whatever it is?! 
+ham	God picked up a flower and dippeditinaDEW, lovingly touched itwhichturnedinto u, and the he gifted tomeandsaid,THIS FRIEND IS 4U
+ham	When you came to hostel.
+ham	Ok no prob... I'll come after lunch then...
+ham	Jus telling u dat i'll b leaving 4 shanghai on 21st instead so we'll haf more time 2 meet up cya...
+ham	Are your freezing ? Are you home yet ? Will you remember to kiss your mom in the morning? Do you love me ? Do you think of me ? Are you missing me yet ?
+ham	You all ready for * big day tomorrow?
+ham	I'll probably be around mu a lot
+ham	645
+spam	RT-KIng Pro Video Club>> Need help? info@ringtoneking.co.uk or call 08701237397 You must be 16+ Club credits redeemable at www.ringtoneking.co.uk! Enjoy!
+ham	Thnx dude. u guys out 2nite?
+ham	Me sef dey laugh you. Meanwhile how's my darling anjie!
+ham	Mm i had my food da from out
+ham	K, makes sense, btw carlos is being difficult so you guys are gonna smoke while I go pick up the second batch and get gas
+ham	Did u download the fring app?
+ham	The 2 oz guy is being kinda flaky but one friend is interested in picking up $ &lt;#&gt;  worth tonight if possible
+ham	Friends that u can stay on fb chat with
+ham	Fuck babe, I miss you sooooo much !! I wish you were here to sleep with me ... My bed is so lonely ... I go now, to sleep ... To dream of you, my love ...
+ham	Living is very simple.. Loving is also simple.. Laughing is too simple.. Winning is tooo simple.. But, being 'SIMPLE' is very difficult.. Gud nte.:-
+spam	U have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094599
+ham	Ah, well that confuses things, doesn‘t it?
+spam	500 free text msgs. Just text ok to 80488 and we'll credit your account
+ham	Hi Dear Call me its urgnt. I don't know whats your problem. You don't want to work or if you have any other problem at least tell me. Wating for your reply.
+ham	Dear how you. Are you ok?
+spam	You have been selected to stay in 1 of 250 top British hotels - FOR NOTHING! Holiday Worth £350! To Claim, Call London 02072069400. Bx 526, SW73SS
+ham	Yes princess! I want to make you happy...
+ham	Sounds like you have many talents! would you like to go on a dinner date next week?
+ham	I am going to film 2day da. At 6pm. Sorry da.
+ham	We not watching movie already. Xy wants 2 shop so i'm shopping w her now.
+ham	Hello my little party animal! I just thought I'd buzz you as you were with your friends ...*grins*... Reminding you were loved and send a naughty adoring kiss
+ham	Yesterday its with me only . Now am going home.
+spam	Eerie Nokia tones 4u, rply TONE TITLE to 8007 eg TONE DRACULA to 8007 Titles: GHOST, ADDAMSFA, MUNSTERS, EXORCIST, TWILIGHT www.getzed.co.uk POBox36504W45WQ 150p
+ham	You have come into my life and brought the sun ..Shiny down on me, warming my heart. Putting a constant smile on my face ... Making me feel loved and cared for
+ham	No shit, but I wasn't that surprised, so I went and spent the evening with that french guy I met in town here and we fooled around a bit but I didn't let him fuck me
+spam	0A$NETWORKS allow companies to bill for SMS, so they are responsible for their "suppliers", just as a shop has to give a guarantee on what they sell. B. G.
+ham	Great comedy..cant stop laughing da:)
+spam	FreeMsg:Feelin kinda lnly hope u like 2 keep me company! Jst got a cam moby wanna c my pic?Txt or reply DATE to 82242 Msg150p 2rcv Hlp 08712317606 stop to 82242
+ham	Alright, we're all set here, text the man
+ham	Hi , where are you? We're at  and they're not keen to go out i kind of am but feel i shouldn't so can we go out tomo, don't mind do you?
+ham	Sleeping nt feeling well
+ham	U WILL SWITCH YOUR FONE ON DAMMIT!!
+ham	India have to take lead:)
+ham	I.ll post her out l8r. In class
+ham	Thts wat Wright Brother did to fly..
+ham	Evening * v good if somewhat event laden. Will fill you in, don't you worry … Head * ok but throat * wrecked. See you at six then!
+ham	If u laugh really loud.. If u talk spontaneously.. If u dont care what others feel.. U are probably with your dear &amp; best friends.. GOODEVENING Dear..:)
+ham	ITS A LAPTOP TAKE IT WITH YOU.
+ham	I dont have any of your file in my bag..i was in work when you called me.i 'll tell you if i find anything in my room.
+ham	I wan but too early lei... Me outside now wun b home so early... Neva mind then...
+spam	For ur chance to win a £250 cash every wk TXT: ACTION to 80608. T's&C's www.movietrivia.tv custcare 08712405022, 1x150p/wk
+ham	I was at bugis juz now wat... But now i'm walking home oredi... Ü so late then reply... I oso saw a top dat i like but din buy... Where r ü now? 
+ham	Wishing you and your family Merry "X" mas and HAPPY NEW Year in advance..
+ham	At 7 we will go ok na.
+ham	Yes I posted a couple of pics on fb. There's still snow outside too. I'm just waking up :)
+ham	S:-)if we have one good partnership going we will take lead:)
+spam	RGENT! This is the 2nd attempt to contact U!U have WON £1250 CALL 09071512433 b4 050703 T&CsBCM4235WC1N3XX. callcost 150ppm mobilesvary. max£7. 50
+ham	Yeah, where's your class at?
+ham	No just send to you. Bec you in temple na.
+ham	You aren't coming home between class, right? I need to work out and shower!
+spam	Hi if ur lookin 4 saucy daytime fun wiv busty married woman Am free all next week Chat now 2 sort time 09099726429 JANINExx Calls£1/minMobsmoreLKPOBOX177HP51FL
+ham	S but mostly not like that.
+ham	Ü v ma fan...
+ham	Dunno cos i was v late n when i reach they inside already... But we ate spageddies lor... It's e gals who r laughing at me lor...
+ham	Guess who spent all last night phasing in and out of the fourth dimension
+ham	So now my dad is gonna call after he gets out of work and ask all these crazy questions.
+ham	Yes..but they said its IT.,
+ham	Very hurting n meaningful lines ever: "I compromised everything for my love, But at d end my love compromised me for everything:-(".. Gud mornin:-)
+ham	Lmao!nice 1
+ham	Glad to see your reply.
+spam	URGENT! We are trying to contact U. Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050001295 from land line. Claim A21. Valid 12hrs only
+spam	Monthly password for wap. mobsi.com is 391784. Use your wap phone not PC.
+ham	Nah dub but je still buff
+ham	Painful words- "I thought being Happy was the most toughest thing on Earth... But, the toughest is acting Happy with all unspoken pain inside.."
+ham	Yeah, that's fine! It's £6 to get in, is that ok? 
+ham	Lol where do u come up with these ideas?
+ham	So many people seems to be special at first sight, But only very few will remain special to you till your last sight.. Maintain them till life ends.. Sh!jas
+ham	Today is "song dedicated day.." Which song will u dedicate for me? Send this to all ur valuable frnds but first rply me...
+ham	Okay... We wait ah
+ham	Y lei?
+ham	HI BABE U R MOST LIKELY TO BE IN BED BUT IM SO SORRY ABOUT TONIGHT! I REALLY WANNA SEE U TOMORROW SO CALL ME AT 9. LOVE ME XXX
+ham	Already am squatting is the new way of walking
+ham	Do you want bold 2 or bb torch
+ham	Cramps stopped. Going back to sleep
+spam	todays vodafone numbers ending with 0089(my last four digits) are selected to received a £350 award. If your number matches please call 09063442151 to claim your £350 award
+spam	Free Top ringtone -sub to weekly ringtone-get 1st week free-send SUBPOLY to 81618-?3 per week-stop sms-08718727870
+ham	Nan sonathaya soladha. Why boss?
+ham	Bring tat cd don forget
+spam	Sunshine Quiz Wkly Q! Win a top Sony DVD player if u know which country the Algarve is in? Txt ansr to 82277. £1.50 SP:Tyrone
+ham	I don't know but I'm raping dudes at poker
+ham	Weightloss! No more girl friends. Make loads of money on ebay or something. And give thanks to God.
+ham	Was gr8 to see that message. So when r u leaving? Congrats dear. What school and wat r ur plans.
+ham	Ü eatin later but i'm eatin wif my frens now lei... Ü going home first? 
+ham	Finish already... Yar they keep saying i mushy... I so embarrassed ok...
+ham	Sorry man, my stash ran dry last night and I can't pick up more until sunday
+ham	Hai priya are you right. What doctor said pa. Where are you.
+spam	Free msg. Sorry, a service you ordered from 81303 could not be delivered as you do not have sufficient credit. Please top up to receive the service.
+ham	Ok...
+ham	Please ask mummy to call father
+ham	Can come my room but cannot come my house cos my house still messy... Haha...
+ham	I have lost 10 kilos as of today!
+ham	Just taste fish curry :-P
+ham	What can i do? Might accidant tookplace between somewhere ghodbandar rd. Traffic moves slovely. So plz slip &amp; don't worry.
+ham	Yun ah.now ü wkg where?btw if ü go nus sc. Ü wana specialise in wad?
+ham	Yes! I am a one woman man! Please tell me your likes and dislikes in bed...
+ham	Was doing my test earlier. I appreciate you. Will call you tomorrow.
+ham	How's my loverboy doing ? What does he do that keeps him from coming to his Queen, hmmm ? Doesn't he ache to speak to me ? Miss me desparately ?
+ham	U meet other fren dun wan meet me ah... Muz b a guy rite...
+ham	(No promises on when though, haven't even gotten dinner yet)
+ham	I got your back! Do you have any dislikes in bed?
+ham	o turns out i had stereo love on mi phone under the unknown album.
+spam	Hard LIVE 121 chat just 60p/min. Choose your girl and connect LIVE. Call 09094646899 now! Cheap Chat UK's biggest live service. VU BCM1896WC1N3XX
+ham	Yeah I don't see why not
+ham	Asking do u knw them or nt? May be ur frnds or classmates?
+ham	Sorry about earlier. Putting out fires.Are you around to talk after 9? Or do you actually have a life, lol!
+spam	WOW! The Boys R Back. TAKE THAT 2007 UK Tour. Win VIP Tickets & pre-book with VIP Club. Txt CLUB to 81303. Trackmarque Ltd info@vipclub4u.
+ham	As in missionary hook up, doggy hook up, standing...|
+ham	Then u better go sleep.. Dun disturb u liao.. U wake up then msg me lor..
+ham	Fighting with the world is easy, u either win or lose bt fightng with some1 who is close to u is dificult if u lose - u lose if u win - u still lose.
+ham	Am watching house – very entertaining – am getting the whole hugh laurie thing – even with the stick – indeed especially with the stick.
+ham	Thought praps you meant another one. Goodo! I'll look tomorrow 
+ham	Hi Jon, Pete here, Ive bin 2 Spain recently & hav sum dinero left, Bill said u or ur ‘rents mayb interested in it, I hav 12,000pes, so around £48, tb, James.
+ham	There bold 2  &lt;#&gt; . Is that yours
+ham	You know there is. I shall speak to you in  &lt;#&gt;  minutes then
+ham	"ALRITE HUNNY!WOT U UP 2 2NITE? DIDNT END UP GOIN DOWN TOWN JUS DA PUB INSTEAD! JUS CHILLIN AT DA MO IN ME BEDROOM!LOVE JEN XXX."
+ham	I went to project centre
+ham	As per your request 'Maangalyam (Alaipayuthe)' has been set as your callertune for all Callers. Press *9 to copy your friends Callertune
+ham	Lol yeah at this point I guess not
+ham	Doing project w frens lor. 
+ham	Lol. Well quality aint bad at all so i aint complaining
+ham	K, can that happen tonight?
+spam	Hi, this is Mandy Sullivan calling from HOTMIX FM...you are chosen to receive £5000.00 in our Easter Prize draw.....Please telephone 09041940223 to claim before 29/03/05 or your prize will be transferred to someone else....
+ham	I think we're going to finn's now, come
+ham	Why tired what special there you had
+ham	I will come tomorrow di
+ham	I cant pick the phone right now. Pls send a message
+ham	K go and sleep well. Take rest:-).
+ham	U guys never invite me anywhere :(
+spam	UR GOING 2 BAHAMAS! CallFREEFONE 08081560665 and speak to a live operator to claim either Bahamas cruise of£2000 CASH 18+only. To opt out txt X to 07786200117
+ham	I can do that! I want to please you both inside and outside the bedroom...
+ham	"EY! CALM DOWNON THEACUSATIONS.. ITXT U COS IWANA KNOW WOTU R DOIN AT THEW/END... HAVENTCN U IN AGES..RING ME IF UR UP4 NETHING SAT.LOVE J XXX."
+ham	I love to wine and dine my lady!
+spam	Someone has conacted our dating service and entered your phone because they fancy you!To find out who it is call from landline 09111030116. PoBox12n146tf15
+ham	I’m cool ta luv but v.tired 2 cause i have been doin loads of planning all wk, we have got our social services inspection at the nursery! Take care & spk sn x.
+ham	I don know account details..i will ask my mom and send you.my mom is out of reach now.
+ham	I think u have the wrong number.
+ham	Feel Yourself That You Are Always Happy.. Slowly It Becomes Your Habit &amp; Finally It Becomes Part Of Your Life.. Follow It.. Happy Morning &amp; Have A Happy Day:)
+ham	DO NOT B LATE LOVE MUM
+ham	Got it..mail panren paru..
+ham	* Was thinking about chuckin ur red green n black trainners 2 save carryin them bac on train
+ham	Give one miss from that number please
+ham	Jus came back fr lunch wif my sis only. U leh?
+ham	How is your schedule next week? I am out of town this weekend.
+ham	Really good:)dhanush rocks once again:)
+ham	Lmao ok I wont be needing u to do my hair anymore.
+ham	Miss ya, need ya, want ya, love ya.
+ham	Sorry i'm not free...
+ham	Do u ever get a song stuck in your head for no reason and it won't go away til u listen to it like 5 times?
+ham	Nt yet chikku..simple habba..hw abt u?
+ham	Got ur mail Dileep.thank you so muchand look forward to lots of support...very less contacts here,remember one venugopal you mentioned.tomorrow if not late,i shall try to come up till there.goodnight dear.
+ham	Sometimes Heart Remembrs someone Very much... Forgets someone soon... Bcoz Heart will not like everyone. But liked ones will be Remembered Everytime... BSLVYL
+ham	Joy's father is John. Then John is the NAME of Joy's father. Mandan
+spam	Hi 07734396839 IBH Customer Loyalty Offer: The NEW NOKIA6600 Mobile from ONLY £10 at TXTAUCTION!Txt word:START to No:81151 & get Yours Now!4T&
+ham	Hi this is yijue... It's regarding the 3230 textbook it's intro to algorithms second edition... I'm selling it for $50...
+spam	SMS AUCTION You have won a Nokia 7250i. This is what you get when you win our FREE auction. To take part send Nokia to 86021 now. HG/Suite342/2Lands Row/W1JHL 16+
+ham	K, want us to come by now?
+ham	How. Its a little difficult but its a simple way to enter this place
+ham	Ha... Both of us doing e same thing. But i got tv 2 watch. U can thk of where 2 go tonight or u already haf smth in mind...
+ham	Dont show yourself. How far. Put new pictures up on facebook.
+ham	Watching tv now. I got new job :)
+ham	Good afternoon sexy buns! How goes the job search ? I wake and you are my first thought as always, my love. I wish your fine and happy and know I adore you!
+ham	I'm not coming over, do whatever you want
+ham	Its ok chikku, and its my 1 of favourite song..:-)
+ham	Did u see what I posted on your Facebook?
+spam	Call FREEPHONE 0800 542 0578 now!
+spam	Buy Space Invaders 4 a chance 2 win orig Arcade Game console. Press 0 for Games Arcade (std WAP charge) See o2.co.uk/games 4 Terms + settings. No purchase
+ham	7 wonders in My WORLD 7th You 6th Ur style 5th Ur smile 4th Ur Personality 3rd Ur Nature 2nd Ur SMS and 1st "Ur Lovely Friendship"... good morning dear
+spam	Loan for any purpose £500 - £75,000. Homeowners + Tenants welcome. Have you been previously refused? We can still help. Call Free 0800 1956669 or text back 'help'
+spam	BIG BROTHER ALERT! The computer has selected u for 10k cash or #150 voucher. Call 09064018838. NTT PO Box CRO1327 18+ BT Landline Cost 150ppm mobiles vary
+ham	;-( oh well, c u later
+ham	My uncles in Atlanta. Wish you guys a great semester.
+ham	No dear i do have free messages without any recharge. Hi hi hi
+ham	Dont search love, let love find U. Thats why its called falling in love, bcoz U dont force yourself, U just fall and U know there is smeone to hold U... BSLVYL
+ham	I dun believe u. I thk u told him.
+ham	Do you know why god created gap between your fingers..? So that, One who is made for you comes &amp; fills those gaps by holding your hand with LOVE..!
+ham	Yes:)sura in sun tv.:)lol.
+ham	Arun can u transfr me d amt
+ham	Takin a shower now but yeah I'll leave when I'm done
+ham	Am not working but am up to eyes in philosophy so will text u later when a bit more free for chat...
+ham	U haven’t lost me ill always b here 4u.i didn’t intend 2 hurt u but I never knew how u felt about me when Iwas+marine&that’s what itried2tell urmom.i careabout u
+spam	WIN: We have a winner! Mr. T. Foley won an iPod! More exciting prizes soon, so keep an eye on ur mobile or visit www.win-82050.co.uk
+ham	You bad girl. I can still remember them
+ham	How much i gave to you. Morning.
+ham	I hope your alright babe? I worry that you might have felt a bit desparate when you learned the job was a fake ? I am here waiting when you come back, my love
+ham	Hey, can you tell me blake's address? Carlos wanted me to meet him there but I got lost and he's not answering his phone
+ham	Can i get your opinion on something first?
+ham	That one week leave i put know that time. Why.
+ham	If we hit it off, you can move in with me :)
+ham	excellent. I spent  &lt;#&gt;  years in the Air Force. Iraq and afghanistan. I am stable and honest. do you like traveling?
+ham	I wanna watch that movie
+ham	Ok lor thanx... Ü in school?
+ham	I'm in class. Did you get my text.
+ham	The bus leaves at  &lt;#&gt; 
+ham	God bless.get good sleep my dear...i will pray!
+spam	Todays Voda numbers ending 1225 are selected to receive a £50award. If you have a match please call 08712300220 quoting claim code 3100 standard rates app 
+ham	Do have a nice day today. I love you so dearly.
+ham	Aiyo a bit pai seh ü noe... Scared he dun rem who i am then die... Hee... But he become better lookin oredi leh...
+ham	Aight, I'll ask a few of my roommates
+ham	Now, whats your house # again ? And do you have any beer there ?
+ham	Do ü all wan 2 meet up n combine all the parts? How's da rest of da project going?
+ham	"Getting tickets 4 walsall tue 6 th march. My mate is getting me them on sat. ill pay my treat. Want 2 go. Txt bak .Terry"
+ham	Yes we are chatting too.
+ham	HI ITS JESS I DONT KNOW IF YOU ARE AT WORK BUT CALL ME WHEN U CAN IM AT HOME ALL EVE. XXX
+ham	Sian... Aft meeting supervisor got work 2 do liao... U working now?
+ham	Are you going to write ccna exam this week??
+ham	Well i will watch shrek in 3D!!B)
+ham	Am i that much dirty fellow?
+ham	Dunno dat's wat he told me. Ok lor...
+ham	I'll probably be by tomorrow (or even later tonight if something's going on)
+ham	I couldn't say no as he is a dying man and I feel sad for him so I will go and I just wanted you to know I would probably be gone late into your night
+ham	If you're thinking of lifting me one then no.
+ham	Same as u... Dun wan... Y u dun like me already ah... Wat u doing now? Still eating?
+ham	Sent me ur email id soon
+ham	Wat makes some people dearer is not just de happiness dat u feel when u meet them but de pain u feel when u miss dem!!!
+ham	Dude. What's up. How Teresa. Hope you have been okay. When i didnt hear from these people, i called them and they had received the package since dec  &lt;#&gt; . Just thot you'ld like to know. Do have a fantastic year and all the best with your reading. Plus if you can really really Bam first aid for Usmle, then your work is done.
+ham	Hey gorgeous man. My work mobile number is. Have a good one babe. Squishy Mwahs.
+ham	May i call You later Pls
+spam	Hottest pics straight to your phone!! See me getting Wet and Wanting, just for you xx Text PICS to 89555 now! txt costs 150p textoperator g696ga 18 XxX
+ham	That's the way you should stay oh.
+ham	Hello- thanx for taking that call. I got a job! Starts on monday!
+ham	What time is ur flight tmr?
+ham	When should I come over?
+ham	I have a rather prominent bite mark on my right cheek
+ham	* Will be september by then!
+ham	Are you wet right now?
+ham	And how's your husband.
+spam	Hack Chat. Get backdoor entry into 121 chat rooms at a fraction of the cost. Reply NEO69 or call 09050280520, to subscribe 25p pm. DPS, Bcm box 8027 Ldn, wc1n3xx
+ham	Are we doing the norm tomorrow? I finish just a 4.15 cos of st tests. Need to sort library stuff out at some point tomo - got letter from today - access til end march so i better get move on!
+ham	Yeah. I got a list with only u and Joanna if I'm feeling really anti social
+ham	I am in your office na.
+ham	"Are you comingdown later?"
+ham	Super da:)good replacement for murali
+ham	Da is good good player.why he is unsold.
+ham	Hi. || Do u want | to join me with sts later? || Meeting them at five. || Call u after class.
+ham	Its on in engalnd! But telly has decided it won't let me watch it and mia and elliot were kissing! Damn it!
+spam	FREE NOKIA Or Motorola with upto 12mths 1/2price linerental, 500 FREE x-net mins&100txt/mth FREE B'tooth*. Call Mobileupd8 on 08001950382 or call 2optout/D3WV
+ham	I dont want to hear philosophy. Just say what happen
+ham	You got job in wipro:)you will get every thing in life in 2 or 3 years.
+ham	Then cant get da laptop? My matric card wif ü lei... 
+ham	Dunno da next show aft 6 is 850. Toa payoh got 650.
+spam	This is the 2nd time we have tried 2 contact u. U have won the 750 Pound prize. 2 claim is easy, call 08718726970 NOW! Only 10p per min. BT-national-rate 
+ham	I just made some payments so dont have that much. Sorry. Would you want it fedex or the other way.
+ham	They did't play one day last year know even though they have very good team.. Like india.
+ham	K.:)you are the only girl waiting in reception ah?
+ham	Say this slowly.? GOD,I LOVE YOU &amp; I NEED YOU,CLEAN MY HEART WITH YOUR BLOOD.Send this to Ten special people &amp; u c miracle tomorrow, do it,pls,pls do it...
+ham	I hate when she does this. She turns what should be a fun shopping trip into an annoying day of how everything would look in her house.
+ham	Sir, i am waiting for your call.
+ham	What's up. Do you want me to come online?
+ham	It could work, we'll reach a consensus at the next meeting
+ham	Aiyah then i wait lor. Then u entertain me. Hee...
+ham	The last thing i ever wanted to do was hurt you. And i didn't think it would have. You'd laugh, be embarassed, delete the tag and keep going. But as far as i knew, it wasn't even up. The fact that you even felt like i would do it to hurt you shows you really don't know me at all. It was messy wednesday, but it wasn't bad. The problem i have with it is you HAVE the time to clean it, but you choose not to. You skype, you take pictures, you sleep, you want to go out. I don't mind a few things here and there, but when you don't make the bed, when you throw laundry on top of it, when i can't have a friend in the house because i'm embarassed that there's underwear and bras strewn on the bed, pillows on the floor, that's something else. You used to be good about at least making the bed.
+ham	I'll let you know when it kicks in
+ham	You call him now ok i said call him
+ham	Call to the number which is available in appointment. And ask to connect the call to waheed fathima.
+ham	Or ü go buy wif him then i meet ü later can?
+ham	Mmmm ... Fuck ... Not fair ! You know my weaknesses ! *grins* *pushes you to your knee's* *exposes my belly and pulls your head to it* Don't forget ... I know yours too *wicked smile*
+ham	Today my system sh get ready.all is well and i am also in the deep well
+ham	Mom wants to know where you at
+ham	Aight, I'll text you when I'm back
+ham	Dont know supports ass and srt i thnk. I think ps3 can play through usb too
+ham	Oh ok i didnt know what you meant. Yep i am baby jontin
+spam	You have WON a guaranteed £1000 cash or a £2000 prize.To claim yr prize call our customer service representative on
+spam	Would you like to see my XXX pics they are so hot they were nearly banned in the uk!
+spam	HMV BONUS SPECIAL 500 pounds of genuine HMV vouchers to be won. Just answer 4 easy questions. Play Now! Send HMV to 86688 More info:www.100percent-real.com
+ham	Watching tv now. I got new job :)
+ham	This pen thing is beyond a joke. Wont a Biro do? Don't do a masters as can't do this ever again! 
+ham	I AM AT A PARTY WITH ALEX NICHOLS
+spam	U have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094594
+ham	Just seeing your missed call my dear brother. Do have a gr8 day.
+ham	Ok.. Ü finishing soon?
+ham	Sorry, I can't help you on this.
+ham	Come to me, slave. Your doing it again ... Going into your shell and unconsciously avoiding me ... You are making me unhappy :-(
+ham	I love your ass! Do you enjoy doggy style? :)
+ham	I think asking for a gym is the excuse for lazy people. I jog.
+spam	Dear 0776xxxxxxx U've been invited to XCHAT. This is our final attempt to contact u! Txt CHAT to 86688 150p/MsgrcvdHG/Suite342/2Lands/Row/W1J6HL LDN 18yrs 
+spam	Urgent! Please call 09061743811 from landline. Your ABTA complimentary 4* Tenerife Holiday or £5000 cash await collection SAE T&Cs Box 326 CW25WX 150ppm
+ham	No. On the way home. So if not for the long dry spell the season would have been over
+ham	I gotta collect da car at 6 lei.
+ham	Ok but knackered. Just came home and went to sleep! Not good at this full time work lark.
+ham	Probably earlier than that if the station's where I think it is
+spam	CALL 09090900040 & LISTEN TO EXTREME DIRTY LIVE CHAT GOING ON IN THE OFFICE RIGHT NOW TOTAL PRIVACY NO ONE KNOWS YOUR [sic] LISTENING 60P MIN 24/7MP 0870753331018+
+ham	Good Morning plz call me sir
+spam	FreeMsg Hey U, i just got 1 of these video/pic fones, reply WILD to this txt & ill send U my pics, hurry up Im so bored at work xxx (18 150p/rcvd STOP2stop)
+ham	Uh, heads up we don't have THAT much left
+ham	I tot u outside cos darren say u come shopping. Of course we nice wat. We jus went sim lim look at mp3 player.
+ham	Aight, sounds good. When do you want me to come down?
+ham	Wat would u like 4 ur birthday?
+ham	I love working from home :)
+ham	And miss vday the parachute and double coins??? U must not know me very well...
+ham	Sorry, I'll call later
+ham	My sister got placed in birla soft da:-)
+spam	Free entry in 2 a weekly comp for a chance to win an ipod. Txt POD to 80182 to get entry (std txt rate) T&C's apply 08452810073 for details 18+
+ham	Wah... Okie okie... Muz make use of e unlimited... Haha... 
+ham	There're some people by mu, I'm at the table by lambda
+ham	And stop being an old man. You get to build snowman snow angels and snowball fights.
+ham	ELLO BABE U OK?
+ham	Hello beautiful r u ok? I've kinda ad a row wiv and he walked out the pub?? I wanted a night wiv u Miss u 
+ham	Then u going ikea str aft dat?
+ham	Becoz its  &lt;#&gt;  jan whn al the post ofice is in holiday so she cn go fr the post ofice...got it duffer
+ham	Lol grr my mom is taking forever with my prescription. Pharmacy is like 2 minutes away. Ugh.
+ham	For real tho this sucks. I can't even cook my whole electricity is out. And I'm hungry.
+ham	You want to go? 
+spam	New TEXTBUDDY Chat 2 horny guys in ur area 4 just 25p Free 2 receive Search postcode or at gaytextbuddy.com. TXT ONE name to 89693. 08715500022 rpl Stop 2 cnl
+ham	Its not that time of the month nor mid of the time?
+ham	Fffff. Can you text kadeem or are you too far gone
+ham	We not leaving yet. Ok lor then we go elsewhere n eat. U thk...
+ham	Is fujitsu s series lifebook good?
+ham	Yar i wanted 2 scold u yest but late already... I where got zhong se qing you? If u ask me b4 he ask me then i'll go out w u all lor. N u still can act so real.
+ham	Dont know you bring some food
+ham	No current and food here. I am alone also
+ham	I'll be in sch fr 4-6... I dun haf da book in sch... It's at home...
+ham	Hello. They are going to the village pub at 8 so either come here or there accordingly. Ok?
+ham	Ok
+ham	We don call like  &lt;#&gt;  times oh. No give us hypertension oh.
+ham	Dont give a monkeys wot they think and i certainly don't mind. Any friend of mine&all that! Just don't sleep wiv , that wud be annoyin!
+ham	Omg it could snow here tonite!
+spam	Call from 08702490080 - tells u 2 call 09066358152 to claim £5000 prize. U have 2 enter all ur mobile & personal details @ the prompts. Careful!
+spam	Free 1st week entry 2 TEXTPOD 4 a chance 2 win 40GB iPod or £250 cash every wk. Txt VPOD to 81303 Ts&Cs www.textpod.net custcare 08712405020.
+ham	Carry on not disturbing both of you
+ham	What pa tell me.. I went to bath:-)
+ham	Jus finished avatar nigro
+ham	R u over scratching it?
+ham	Hope you are having a great day.
+ham	Did either of you have any idea's? Do you know of anyplaces doing something?
+ham	My planning usually stops at "find hella weed, smoke hella weed"
+ham	The fact that you're cleaning shows you know why i'm upset. Your priority is constantly "what i want to do," not "what i need to do."
+ham	Excellent! Are you ready to moan and scream in ecstasy?
+spam	More people are dogging in your area now. Call 09090204448 and join like minded guys. Why not arrange 1 yourself. There's 1 this evening. A£1.50 minAPN LS278BB
+ham	Dude avatar 3d was imp. At one point i thought there were actually flies in the room and almost tried hittng one as a reflex
+spam	WELL DONE! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TCs, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins
+ham	K...k:)why cant you come here and search job:)
+ham	I got lousy sleep. I kept waking up every 2 hours to see if my cat wanted to come in. I worry about him when its cold :(
+ham	Yeah, I'll leave in a couple minutes &amp; let you know when I get to mu
+ham	Can ü call me at 10:10 to make sure dat i've woken up...
+ham	Hey we can go jazz power yoga hip hop kb and yogasana 
+ham	The battery is for mr adewale my uncle. Aka Egbon
+ham	I cant pick the phone right now. Pls send a message
+ham	Wait 2 min..stand at bus stop
+ham	Oh ic. I thought you meant mary jane.
+ham	Haha... Really oh no... How? Then will they deduct your lesson tmr?
+ham	Nah im goin 2 the wrks with j wot bout u?
+ham	Then just eat a shit and wait for ur monkey face bitch.......... U asshole..................
+ham	Good night. Am going to sleep.
+ham	Aight I'll grab something to eat too, text me when you're back at mu
+ham	K...k:)why cant you come here and search job:)
+ham	Take something for pain. If it moves however to any side in the next 6hrs see a doctor.
+ham	Lol ... Oh no babe, I wont be sliding into your place after midnight, but thanks for the invite
+ham	Howz that persons story
+spam	Guess what! Somebody you know secretly fancies you! Wanna find out who it is? Give us a call on 09065394973 from Landline DATEBox1282EssexCM61XN 150p/min 18
+ham	LOL that would be awesome payback.
+spam	it to 80488. Your 500 free text messages are valid until 31 December 2005.
+ham	Yes :)it completely in out of form:)clark also utter waste.
+ham	Honeybee Said: *I'm d Sweetest in d World* God Laughed &amp; Said: *Wait,U Havnt Met d Person Reading This Msg* MORAL: Even GOD Can Crack Jokes! GM+GN+GE+GN:)
+ham	Thanks. It was only from tescos but quite nice. All gone now. Speak soon 
+ham	What's a feathery bowa? Is that something guys have that I don't know about?
+ham	Even i cant close my eyes you are in me our vava playing umma :-D
+ham	2 laptop... I noe infra but too slow lar... I wan fast one
+spam	You have won a guaranteed £200 award or even £1000 cashto claim UR award call free on 08000407165 (18+) 2 stop getstop on 88222 PHP
+ham	Nvm it's ok...
+ham	Enjoy ur life. . Good night
+ham	Yes but can we meet in town cos will go to gep and then home. You could text at bus stop. And don't worry we'll have finished by march … ish!
+ham	I had askd u a question some hours before. Its answer
+ham	Thats cool. Where should i cum? On you or in you? :)
+ham	Delhi and chennai still silent.
+ham	Lol alright i was thinkin that too haha
+spam	Reply to win £100 weekly! Where will the 2006 FIFA World Cup be held? Send STOP to 87239 to end service
+ham	No I'm in the same boat. Still here at my moms. Check me out on yo. I'm half naked.
+ham	Shhhhh nobody is supposed to know!
+ham	Sorry, I'll call later
+ham	Sorry, I'll call later in meeting any thing related to trade please call Arul. &lt;#&gt; 
+ham	Hey i will be late... i'm at amk. Need to drink tea or coffee
+ham	I wnt to buy a BMW car urgently..its vry urgent.but hv a shortage of  &lt;#&gt; Lacs.there is no source to arng dis amt. &lt;#&gt; lacs..thats my prob
+spam	Urgent! Please call 09061743810 from landline. Your ABTA complimentary 4* Tenerife Holiday or #5000 cash await collection SAE T&Cs Box 326 CW25WX 150 ppm
+ham	The length is e same but e top shorter n i got a fringe now. I thk i'm not going liao. Too lazy. Dun wan 2 distract u also.
+ham	S..antha num corrct dane
+ham	No calls..messages..missed calls
+ham	Sorry, I'll call later
+ham	The basket's gettin full so I might be by tonight
+ham	HI DARLIN IVE JUST GOT BACK AND I HAD A REALLY NICE NIGHT AND THANKS SO MUCH FOR THE LIFT SEE U TOMORROW XXX
+ham	No other Valentines huh? The proof is on your fb page. Ugh I'm so glad I really DIDN'T watch your rupaul show you TOOL!
+spam	Free tones Hope you enjoyed your new content. text stop to 61610 to unsubscribe. help:08712400602450p Provided by tones2you.co.uk
+ham	Eh den sat u book e kb liao huh...
+ham	Have you been practising your curtsey?
+ham	Shall i come to get pickle
+ham	Lol boo I was hoping for a laugh
+ham	"YEH I AM DEF UP4 SOMETHING SAT,JUST GOT PAYED2DAY & I HAVBEEN GIVEN A£50 PAY RISE 4MY WORK & HAVEBEEN MADE PRESCHOOLCO-ORDINATOR 2I AM FEELINGOOD LUV"
+ham	Well, I have to leave for my class babe ... You never came back to me ... :-( ... Hope you have a nice sleep, my love
+ham	LMAO where's your fish memory when I need it?
+ham	But i'll b going 2 sch on mon. My sis need 2 take smth.
+ham	Idea will soon get converted to live:)
+spam	TheMob>Yo yo yo-Here comes a new selection of hot downloads for our members to get for FREE! Just click & open the next link sent to ur fone...
+ham	S....s...india going to draw the series after many years in south african soil..
+ham	Goodmorning, today i am late for  &lt;DECIMAL&gt; min.
+ham	Can't take any major roles in community outreach. You rock mel
+ham	Shopping lor. Them raining mah hard 2 leave orchard.
+ham	Hi here. have birth at on the  to  at 8lb 7oz. Mother and baby doing brilliantly.
+ham	See the forwarding message for proof
+ham	I can't keep going through this. It was never my intention to run you out, but if you choose to do that rather than keep the room clean so *I* don't have to say no to visitors, then maybe that's the best choice. Yes, I wanted you to be embarassed, so maybe you'd feel for once how I feel when i have a friend who wants to drop buy and i have to say no, as happened this morning. I've tried everything. I don't know what else to do.
+ham	Dunno lei... I thk mum lazy to go out... I neva ask her yet...
+ham	Do whatever you want. You know what the rules are. We had a talk earlier this week about what had to start happening, you showing responsibility. Yet, every week it's can i bend the rule this way? What about that way? Do whatever. I'm tired of having thia same argument with you every week. And a  &lt;#&gt;  movie DOESNT inlude the previews. You're still getting in after 1.
+ham	Beautiful Truth against Gravity.. Read carefully: "Our heart feels light when someone is in it.. But it feels very heavy when someone leaves it.." GOODMORNING
+spam	Great News! Call FREEFONE 08006344447 to claim your guaranteed £1000 CASH or £2000 gift. Speak to a live operator NOW!
+ham	Ambrith..madurai..met u in arun dha marrge..remembr?
+ham	Just re read it and I have no shame but tell me how he takes it and if he runs I will blame u 4 ever!! Not really 4 ever just a long time 
+ham	Princess, is your kitty shaved or natural?
+ham	Better than bb. If he wont use it, his wife will or them doctor
+ham	Ya it came a while ago
+ham	From tomorrow onwards eve 6 to 3 work.
+ham	Anything lor but toa payoh got place 2 walk meh...
+ham	I don't have anybody's number, I still haven't thought up a tactful way to ask alex
+spam	U can WIN £100 of Music Gift Vouchers every week starting NOW Txt the word DRAW to 87066 TsCs www.ldew.com SkillGame,1Winaweek, age16.150ppermessSubscription
+ham	Is there any movie theatre i can go to and watch unlimited movies and just pay once?
+ham	U having lunch alone? I now so bored...
+ham	Yes obviously, but you are the eggs-pert and the potato head… Speak soon! 
+ham	Nah man, my car is meant to be crammed full of people
+ham	No got new job at bar in airport on satsgettin 4.47per hour but means no lie in! keep in touch
+ham	Kallis is ready for bat in 2nd innings
+ham	Thanx but my birthday is over already.
+ham	Ugh y can't u just apologize, admit u were wrong and ask me to take u back?
+ham	I noe la... U wana pei bf oso rite... K lor, other days den...
+ham	Yes, i'm small kid.. And boost is the secret of my energy..
+ham	IM GONNA MISS U SO MUCH
+ham	Is avatar supposed to have subtoitles
+ham	Simply sitting and watching match in office..
+ham	You can jot down things you want to remember later.
+ham	Oh sorry please its over
+ham	Hey are we going for the lo lesson or gym? 
+ham	Dont pack what you can buy at any store.like cereals. If you must pack food, pack gari or something 9ja that you will miss.
+ham	You always make things bigger than they are
+ham	Ü dun wan to watch infernal affair?
+ham	Me not waking up until 4 in the afternoon, sup
+spam	4mths half price Orange line rental & latest camera phones 4 FREE. Had your phone 11mths ? Call MobilesDirect free on 08000938767 to update now! or2stoptxt
+ham	I can send you a pic if you like :)
+ham	Okay... I booked all already... Including the one at bugis.
+ham	Aight fuck it, I'll get it later
+ham	No de. But call me after some time. Ill tell you k
+ham	So dont use hook up any how
+ham	How much is blackberry bold2 in nigeria.
+ham	Hi where you. You in home or calicut?
+ham	Hey darlin.. i can pick u up at college if u tell me wen & where 2 mt.. love Pete xx
+spam	Call 09094100151 to use ur mins! Calls cast 10p/min (mob vary). Service provided by AOM, just GBP5/month. AOM Box61,M60 1ER until u stop. Ages 18+ only!
+ham	Oh... I was thkin of goin yogasana at 10 den no nd to go at 3 den can rush to parco 4 nb... Okie lor, u call me when ready...
+ham	Y so late but i need to go n get da laptop...
+ham	Sir, I am waiting for your mail.
+ham	.Please charge my mobile when you get up in morning.
+ham	Nothing, i got msg frm tht unknown no..
+ham	Ugh fuck it I'm resubbing to eve
+ham	He didn't see his shadow. We get an early spring yay
+ham	I did. One slice and one breadstick. Lol
+ham	Hey ! I want you ! I crave you ! I miss you ! I need you ! I love you, Ahmad Saeed al Hallaq ...
+ham	Is there any training tomorrow?
+spam	URGENT! Your mobile No *********** WON a £2,000 Bonus Caller Prize on 02/06/03! This is the 2nd attempt to reach YOU! Call 09066362220 ASAP! BOX97N7QP, 150ppm
+ham	Pass dis to all ur contacts n see wat u get! Red;i'm in luv wid u. Blue;u put a smile on my face. Purple;u r realy hot. Pink;u r so swt. Orange;i thnk i lyk u. Green;i realy wana go out wid u. Yelow;i wnt u bck. Black;i'm jealous of u. Brown;i miss you Nw plz giv me one color
+ham	Cos daddy arranging time c wat time fetch ü mah...
+ham	Then. You are eldest know.
+ham	Who's there say hi to our drugdealer
+ham	Its hard to believe things like this. All can say lie but think twice before saying anything to me.
+spam	Eerie Nokia tones 4u, rply TONE TITLE to 8007 eg TONE DRACULA to 8007 Titles: GHOST, ADDAMSFA, MUNSTERS, EXORCIST, TWILIGHT www.getzed.co.uk POBox36504W45WQ 150p 
+spam	Sexy Singles are waiting for you! Text your AGE followed by your GENDER as wither M or F E.G.23F. For gay men text your AGE followed by a G. e.g.23G.
+ham	Good night my dear.. Sleepwell&amp;Take care
+ham	That is wondarfull song
+spam	FreeMsg: Claim ur 250 SMS messages-Text OK to 84025 now!Use web2mobile 2 ur mates etc. Join Txt250.com for 1.50p/wk. T&C BOX139, LA32WU. 16 . Remove txtX or stop
+ham	Yar lor actually we quite fast... Cos da ge slow wat... Haha...
+ham	Must come later.. I normally bathe him in da afternoon mah..
+ham	Trust me. Even if isn't there, its there.
+ham	Hey hun-onbus goin 2 meet him. He wants 2go out 4a meal but I donyt feel like it cuz have 2 get last bus home!But hes sweet latelyxxx
+spam	85233 FREE>Ringtone!Reply REAL
+ham	I can take you at like noon
+ham	Where is it. Is there any opening for mca.
+ham	I'm aight. Wat's happening on your side.
+ham	I'm done oredi...
+ham	you are sweet as well, princess. Please tell me your likes and dislikes in bed...
+ham	How are you. Wish you a great semester
+ham	Moji i love you more than words. Have a rich day
+ham	Dude how do you like the buff wind.
+ham	"alright babe, justthought i’d sayhey! how u doin?nearly the endof me wk offdam nevamind!We will have 2Hook up sn if uwant m8? loveJen x."
+spam	Well done ENGLAND! Get the official poly ringtone or colour flag on yer mobile! text TONE or FLAG to 84199 NOW! Opt-out txt ENG STOP. Box39822 W111WX £1.50
+ham	No i'm not. I can't give you everything you want and need. You actually could do better for yourself on yor own--you've got more money than i do. I can't get work, i can't get a man, i can't pay the rent, i can't even fill my fucking gas tank. yes, i'm stressed and depressed. I didn't even call home for thanksgiving cuz i'll have to tell them i,m up to nothing.
+ham	S:-)kallis wont play in first two odi:-)
+ham	Then get some cash together and I'll text jason
+ham	Oh, my love, it's soooo good to hear from you. Omg I missed you so much today. I'm sorry your having problems with the provider but thank you for tming me
+spam	Final Chance! Claim ur £150 worth of discount vouchers today! Text YES to 85023 now! SavaMob, member offers mobile! T Cs SavaMob POBOX84, M263UZ. £3.00 Subs 16
+spam	PRIVATE! Your 2004 Account Statement for 07742676969 shows 786 unredeemed Bonus Points. To claim call 08719180248 Identifier Code: 45239 Expires
+ham	Probably, want to pick up more?
+ham	I'm done...
+ham	Are you the cutest girl in the world or what
+ham	No dice, art class 6 thru 9 :( thanks though. Any idea what time I should come tomorrow?
+spam	SMS SERVICES. for your inclusive text credits, pls goto www.comuk.net login= ***** unsubscribe with STOP. no extra charge. help:08700469649. PO BOX420. IP4 5WE
+ham	Oh Howda gud gud.. Mathe en samachara chikku:-)
+ham	I thk 530 lor. But dunno can get tickets a not. Wat u doing now?
+ham	Audrie lousy autocorrect
+ham	Its a site to simulate the test. It just gives you very tough questions to test your readiness.
+ham	Anyway seriously hit me up when you're back because otherwise I have to light up with armand and he always has shit and/or is vomiting
+ham	I fetch yun or u fetch?
+ham	Thank you. I like you as well...
+ham	Hmmm ... And imagine after you've come home from that having to rub my feet, make me dinner and help me get ready for my date ! Are you sure your ready for that kind of life ?
+spam	FREE2DAY sexy St George's Day pic of Jordan!Txt PIC to 89080 dont miss out, then every wk a saucy celeb!4 more pics c PocketBabe.co.uk 0870241182716 £3/wk
+ham	Lara said she can loan me  &lt;#&gt; .
+ham	Do we have any spare power supplies
+ham	Yar he quite clever but aft many guesses lor. He got ask me 2 bring but i thk darren not so willing 2 go. Aiya they thk leona still not attach wat.
+spam	You are a winner you have been specially selected to receive £1000 cash or a £2000 award. Speak to a live operator to claim call 087123002209am-7pm. Cost 10p
+ham	Yeah, don't go to bed, I'll be back before midnight
+spam	Sunshine Hols. To claim ur med holiday send a stamped self address envelope to Drinks on Us UK, PO Box 113, Bray, Wicklow, Eire. Quiz Starts Saturday! Unsub Stop
+ham	Well I wasn't available as I washob nobbing with last night so they had to ask Nickey Platt instead of me!;
+ham	It's that time of the week again, ryan
+ham	Wish u many many returns of the day.. Happy birthday vikky..
+spam	U can WIN £100 of Music Gift Vouchers every week starting NOW Txt the word DRAW to 87066 TsCs www.Idew.com SkillGame, 1Winaweek, age16. 150ppermessSubscription
+ham	I hope you know I'm still mad at you.
+ham	Argh my 3g is spotty, anyway the only thing I remember from the research we did was that province and sterling were the only problem-free places we looked at
+ham	In xam hall boy asked girl Tell me the starting term for dis answer I can den manage on my own After lot of hesitation n lookin around silently she said THE! intha ponnungale ipaditan;)
+ham	Do you know when the result.
+spam	+123 Congratulations - in this week's competition draw u have won the £1450 prize to claim just call 09050002311 b4280703. T&Cs/stop SMS 08718727868. Over 18 only 150ppm
+ham	Beautiful Truth against Gravity.. Read carefully: "Our heart feels light when someone is in it.. But it feels very heavy when someone leaves it.." GOOD NIGHT
+ham	Sorry im getting up now, feel really bad- totally rejected that kinda me thing.
+ham	You do got a shitload of diamonds though
+ham	Tessy..pls do me a favor. Pls convey my birthday wishes to Nimya..pls dnt forget it. Today is her birthday Shijas
+ham	Well I'm going to be an aunty!
+ham	Mine here like all fr china then so noisy.
+ham	Later i guess. I needa do mcat study too.
+ham	S...from the training manual it show there is no tech process:)its all about password reset and troubleshooting:)
+spam	Your B4U voucher w/c 27/03 is MARSMS. Log onto www.B4Utele.com for discount credit. To opt out reply stop. Customer care call 08717168528
+ham	Spoke with uncle john today. He strongly feels that you need to sacrifice to keep me here. He's going to call you. When he does, i beg you to just listen. Dont make any promises or make it clear things are not easy. And i need you to please let us work things out. As long as i keep expecting help, my creativity will be stifled so pls just keep him happy, no promises on your part.
+ham	If he started searching he will get job in few days.he have great potential and talent.
+ham	Carlos took a while (again), we leave in a minute
+ham	Well done and ! luv ya all 
+ham	Then why you came to hostel.
+ham	K still are you loving me.
+ham	But i juz remembered i gotta bathe my dog today..
+ham	After the drug she will be able to eat.
+ham	Alright took the morphine. Back in yo.
+ham	You see the requirements please
+ham	You stayin out of trouble stranger!!saw Dave the other day he’s sorted now!still with me bloke when u gona get a girl MR!ur mum still Thinks we will get 2GETHA! 
+spam	FreeMsg: Hey - I'm Buffy. 25 and love to satisfy men. Home alone feeling randy. Reply 2 C my PIX! QlynnBV Help08700621170150p a msg Send stop to stop txts
+spam	Sunshine Hols. To claim ur med holiday send a stamped self address envelope to Drinks on Us UK, PO Box 113, Bray, Wicklow, Eire. Quiz Starts Saturday! Unsub Stop
+ham	So can collect ur laptop?
+ham	Ok. Can be later showing around 8-8:30 if you want + cld have drink before. Wld prefer not to spend money on nosh if you don't mind, as doing that nxt wk.
+ham	I will once i get home
+ham	Waaaat?? Lololo ok next time then!
+ham	The table's occupied, I'm waiting by the tree
+ham	I surely dont forgot to come:)i will always be in touch in with you:-)
+ham	Hi kindly give us back our documents which we submitted for loan from STAPATI
+ham	I dont have i shall buy one dear
+ham	Oh god i am happy to see your message after 3 days
+ham	What year. And how many miles.
+ham	Hey cutie. How goes it? Here in WALES its kinda ok. There is like hills and shit but i still avent killed myself. 
+ham	Sad story of a Man - Last week was my b'day. My Wife did'nt wish me. My Parents forgot n so did my Kids . I went to work. Even my Colleagues did not wish. As I entered my cabin my PA said, '' Happy B'day Boss !!''. I felt special. She askd me 4 lunch. After lunch she invited me to her apartment. We went there. She said,'' do u mind if I go into the bedroom for a minute ? '' ''OK'', I sed in a sexy mood. She came out 5 minuts latr wid a cake...n My Wife, My Parents, My Kidz, My Friends n My Colleagues. All screaming.. SURPRISE !! and I was waiting on the sofa.. ... ..... ' NAKED...!
+ham	I think you should go the honesty road. Call the bank tomorrow. Its the tough decisions that make us great people.
+spam	FREE for 1st week! No1 Nokia tone 4 ur mob every week just txt NOKIA to 87077 Get txting and tell ur mates. zed POBox 36504 W45WQ norm150p/tone 16+
+ham	No. Its not specialisation. Can work but its slave labor. Will look for it this month sha cos no shakara 4 beggar.
+ham	Is she replying. Has boye changed his phone number
+ham	1) Go to write msg 2) Put on Dictionary mode 3)Cover the screen with hand, 4)Press  &lt;#&gt; . 5)Gently remove Ur hand.. Its interesting..:)
+ham	hi my darlin im on my way to London and we have just been smashed into by another driver! and have a big dent! im really missing u what have u been up to? xxx
+ham	Nothing really, just making sure everybody's up to speed
+ham	I'm not coming home 4 dinner.
+ham	Thank you. And by the way, I just lost.
+ham	Yes.he have good crickiting mind
+ham	Thx. All will be well in a few months
+spam	Shop till u Drop, IS IT YOU, either 10K, 5K, £500 Cash or £100 Travel voucher, Call now, 09064011000. NTT PO Box CR01327BT fixedline Cost 150ppm mobile vary
+ham	"CAN I PLEASE COME UP NOW IMIN TOWN.DONTMATTER IF URGOIN OUTL8R,JUST REALLYNEED 2DOCD.PLEASE DONTPLEASE DONTIGNORE MYCALLS,U NO THECD ISV.IMPORTANT TOME 4 2MORO"
+ham	I wont. So wat's wit the guys
+ham	Yavnt tried yet and never played original either
+ham	Hiya, had a good day? Have you spoken to since the weekend?
+ham	See? I thought it all through
+ham	I'm at work. Please call
+ham	get ready to moan and scream :)
+ham	Oh k :)why you got job then whats up?
+ham	I don,t think so. You don't need to be going out that late on a school night. ESPECIALLY when the one class you have is the one you missed last wednesday and probably failed a test in on friday
+ham	And popping &lt;#&gt; ibuprofens was no help.
+ham	Babe ! How goes that day ? What are you doing ? Where are you ? I sip my cappuccino and think of you, my love ... I send a kiss to you from across the sea
+ham	Ok.
+ham	PS U no ur a grown up now right?
+ham	Chinatown got porridge, claypot rice, yam cake, fishhead beehoon... Either we eat cheap den go cafe n tok or go nydc or somethin...
+ham	I know a few people I can hit up and fuck to the yes
+ham	Purity of friendship between two is not about smiling after reading the forwarded message..Its about smiling just by seeing the name. Gud evng
+ham	So is there anything specific I should be doing with regards to jaklin or what because idk what the fuck
+ham	Oh god. I'm gonna Google nearby cliffs now.
+spam	FREE camera phones with linerental from 4.49/month with 750 cross ntwk mins. 1/2 price txt bundle deals also avble. Call 08001950382 or call2optout/J MF
+ham	Yup i shd haf ard 10 pages if i add figures... Ü all got how many pages?
+ham	Ooh, 4got, i'm gonna start belly dancing in moseley weds 6.30 if u want 2 join me, they have a cafe too. 
+ham	Thankyou so much for the call. I appreciate your care.
+ham	Congrats ! Treat pending.i am not on mail for 2 days.will mail once thru.Respect mother at home.check mails.
+ham	I called but no one pick up e phone. I ask both of them already they said ok.
+ham	Hi my email address has changed now it is 
+ham	V-aluable. A-ffectionate. L-oveable. E-ternal. N-oble. T-ruthful. I-ntimate. N-atural. E-namous. Happy "VALENTINES DAY" in advance
+ham	Not much, just some textin'. How bout you?
+ham	Bring it if you got it
+ham	I'm in a movie. Call me 4 wat?
+ham	Not sure I have the stomach for it ...
+ham	Haha... can... But i'm having dinner with my cousin...
+ham	A boy was late 2 home. His father: "POWER OF FRNDSHIP"
+ham	(And my man carlos is definitely coming by mu tonight, no excuses)
+ham	soon you will have the real thing princess! Do i make you wet? :)
+ham	Raji..pls do me a favour. Pls convey my Birthday wishes to Nimya. Pls. Today is her birthday.
+ham	Haha, my legs and neck are killing me and my amigos are hoping to end the night with a burn, think I could swing by in like an hour?
+spam	URGENT! Your mobile No 07xxxxxxxxx won a £2,000 bonus caller prize on 02/06/03! this is the 2nd attempt to reach YOU! call 09066362231 ASAP! BOX97N7QP, 150PPM
+ham	Usually the body takes care of it buy making sure it doesnt progress. Can we pls continue this talk on saturday.
+spam	URGENT!! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TC s, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins
+ham	Hmm well, night night 
+ham	Just wanted to say holy shit you guys weren't kidding about this bud
+ham	Just gettin a bit arty with my collages at the mo, well tryin 2 ne way! Got a roast in a min lovely i shall enjoy that!
+ham	This is one of the days you have a billion classes, right?
+ham	Goodmorning, today i am late for 2hrs. Because of back pain.
+ham	Ok then i'll let him noe later n ask him call u tmr...
+ham	Prabha..i'm soryda..realy..frm heart i'm sory
+ham	OK i'm waliking ard now... Do u wan me 2 buy anything go ur house?
+ham	* Will have two more cartons off u and is very pleased with shelves
+ham	Nice talking to you! please dont forget my pix :) i want to see all of you...
+spam	You have WON a guaranteed £1000 cash or a £2000 prize. To claim yr prize call our customer service representative on 08714712379 between 10am-7pm Cost 10p
+ham	But really quite funny lor wat... Then u shd haf run shorter distance wat...
+ham	I notice you like looking in the shit mirror youre turning into a right freak
+ham	Great. I was getting worried about you. Just know that a wonderful and caring person like you will have only the best in life. Know that u r wonderful and God's love is yours.
+spam	Thanks for your ringtone order, ref number K718. Your mobile will be charged £4.50. Should your tone not arrive please call customer services on 09065069120
+ham	I prefer my free days... Tues, wed, fri oso can... Ü ask those workin lor...
+ham	Alrite jod hows the revision goin? Keris bin doin a smidgin. N e way u wanna cum over after college?xx
+ham	If you have belive me. Come to my home.
+ham	Oh k.k..where did you take test?
+ham	Those were my exact intentions
+ham	haha but no money leh... Later got to go for tuition... Haha and looking for empty slots for driving lessons
+ham	Hey... Thk we juz go accordin to wat we discussed yest lor, except no kb on sun... Cos there's nt much lesson to go if we attend kb on sat...
+ham	K, wen ur free come to my home and also tel vikky i hav sent mail to him also.. Better come evening il be free today aftr 6pm..:-)
+ham	Nothing just getting msgs by dis name wit different no's..
+ham	Good Morning plz call me sir
+ham	What's your room number again? Wanna make sure I'm knocking on the right door
+ham	"Si.como no?!listened2the plaid album-quite gd&the new air1 which is hilarious-also bought”braindance”a comp.ofstuff on aphex’s ;abel,u hav2hear it!c u sn xxxx"
+ham	Pls tell nelson that the bb's are no longer comin. The money i was expecting aint coming
+ham	Give her something to drink, if she takes it and doesn't vomit then you her temp might drop. If she unmits however let me know.
+ham	Think you sent the text to the home phone. That cant display texts. If you still want to send it his number is
+ham	Every day i use to sleep after  &lt;#&gt;  so only.
+ham	K I'll call you when I'm close
+ham	U buy newspapers already?
+ham	Nope wif my sis lor... Aft bathing my dog then i can bathe... Looks like it's going 2 rain soon.
+ham	Boo I'm on my way to my moms. She's making tortilla soup. Yummmm
+ham	No management puzzeles.
+ham	How did you find out in a way that didn't include all of these details
+spam	Hi ya babe x u 4goten bout me?' scammers getting smart..Though this is a regular vodafone no, if you respond you get further prem rate msg/subscription. Other nos used also. Beware!
+spam	Back 2 work 2morro half term over! Can U C me 2nite 4 some sexy passion B4 I have 2 go back? Chat NOW 09099726481 Luv DENA Calls £1/minMobsmoreLKPOBOX177HP51FL
+ham	will you like to be spoiled? :)
+spam	Thanks for your ringtone order, ref number R836. Your mobile will be charged £4.50. Should your tone not arrive please call customer services on 09065069154
+ham	I am getting threats from your sales executive Shifad as i raised complaint against him. Its an official message.
+ham	hope things went well at 'doctors' ;) reminds me i still need 2go.did u c d little thing i left in the lounge?
+ham	Den wat will e schedule b lk on sun?
+ham	Lol enjoy role playing much?
+ham	Ok. Me watching tv too.
+ham	I just lov this line: "Hurt me with the truth, I don't mind,i wil tolerat.bcs ur my someone..... But, Never comfort me with a lie" gud ni8 and sweet dreams
+ham	Just checked out, heading out to drop off my stuff now
+ham	Here got lots of hair dresser fr china.
+ham	Sad story of a Man - Last week was my b'day. My Wife did'nt wish me. My Parents forgot n so did my Kids . I went to work. Even my Colleagues did not wish.
+ham	Ill call you evening ill some ideas.
+spam	SplashMobile: Choose from 1000s of gr8 tones each wk! This is a subscrition service with weekly tones costing 300p. U have one credit - kick back and ENJOY
+ham	Did you show him and wot did he say or could u not c him 4 dust?
+ham	It should take about  &lt;#&gt;  min
+spam	Not heard from U4 a while. Call 4 rude chat private line 01223585334 to cum. Wan 2C pics of me gettin shagged then text PIX to 8552. 2End send STOP 8552 SAM xxx
+ham	Ok . . now i am in bus. . If i come soon i will come otherwise tomorrow
+ham	I cant pick the phone right now. Pls send a message
+spam	<Forwarded from 88877>FREE entry into our £250 weekly comp just send the word ENTER to 88877 NOW. 18 T&C www.textcomp.com
+ham	Finish liao... U?
+spam	88066 FROM 88066 LOST 3POUND HELP
+ham	Haha i think i did too
+ham	U know we watchin at lido?
+ham	Life spend with someone for a lifetime may be meaningless but a few moments spent with someone who really love you means more than life itself..
+ham	Haha awesome, I've been to 4u a couple times. Who all's coming?
+ham	Cold. Dont be sad dear
+ham	Think I could stop by in like an hour or so? My roommate's looking to stock up for a trip
+ham	Is that on the telly? No its Brdget Jones!
+ham	Love you aathi..love u lot..
+ham	Hello! How r u? Im bored. Inever thought id get bored with the tv but I am. Tell me something exciting has happened there? Anything! =/
+ham	Hmm...Bad news...Hype park plaza $700 studio taken...Only left 2 bedrm-$900...
+ham	Sorry, I'll call later in meeting
+ham	R ü comin back for dinner?
+ham	I hav almost reached. Call, i m unable to connect u.
+ham	Whom you waited for yesterday
+ham	I reach home safe n sound liao...
+ham	Velly good, yes please!
+ham	Hi, wkend ok but journey terrible. Wk not good as have huge back log of marking to do
+ham	I have had two more letters from . I will copy them for you cos one has a message for you. Speak soon
+ham	Alex knows a guy who sells mids but he's down in south tampa and I don't think I could set it up before like 8
+ham	Dont you have message offer
+spam	Had your mobile 11mths ? Update for FREE to Oranges latest colour camera mobiles & unlimited weekend calls. Call Mobile Upd8 on freefone 08000839402 or 2StopTx
+ham	HEY THERE BABE, HOW U DOIN? WOT U UP 2 2NITE LOVE ANNIE X.
+ham	Remind me how to get there and I shall do so
+ham	:-( that's not v romantic!
+ham	Hello. Damn this christmas thing. I think i have decided to keep this mp3 that doesnt work.
+spam	You have 1 new message. Please call 08718738034.
+ham	HI DARLIN IM MISSIN U HOPE YOU ARE HAVING A GOOD TIME. WHEN ARE U BACK AND WHAT TIME IF U CAN GIVE ME A CALL AT HOME. JESS XX
+spam	<Forwarded from 21870000>Hi - this is your Mailbox Messaging SMS alert. You have 4 messages. You have 21 matches. Please call back on 09056242159 to retrieve your messages and matches
+ham	Draw va?i dont think so:)
+ham	Dont pick up d call when something important is There to tell. Hrishi
+spam	Congrats! 1 year special cinema pass for 2 is yours. call 09061209465 now! C Suprman V, Matrix3, StarWars3, etc all 4 FREE! bx420-ip4-5we. 150pm. Dont miss out!
+ham	Nothin comes to my mind. Ü help me buy hanger lor. Ur laptop not heavy?
+ham	&lt;#&gt; , that's all? Guess that's easy enough
+ham	We can make a baby in yo tho
+ham	Should I tell my friend not to come round til like  &lt;#&gt; ish?
+ham	Friendship poem: Dear O Dear U R Not Near But I Can Hear Dont Get Fear Live With Cheer No More Tear U R Always my Dear. Gud ni8
+ham	Still in the area of the restaurant. Ill try to come back soon
+ham	Aight that'll work, thanks
+spam	WIN a year supply of CDs 4 a store of ur choice worth £500 & enter our £100 Weekly draw txt MUSIC to 87066 Ts&Cs www.Ldew.com.subs16+1win150ppmx3
+spam	Moby Pub Quiz.Win a £100 High Street prize if u know who the new Duchess of Cornwall will be? Txt her first name to 82277.unsub STOP £1.50 008704050406 SP Arrow
+ham	I have 2 sleeping bags, 1 blanket and paper and  phone details. Anything else?
+spam	You have won a Nokia 7250i. This is what you get when you win our FREE auction. To take part send Nokia to 86021 now. HG/Suite342/2Lands Row/W1JHL 16+ 
+spam	Congratulations! Thanks to a good friend U have WON the £2,000 Xmas prize. 2 claim is easy, just call 08718726971 NOW! Only 10p per minute. BT-national-rate.
+spam	tddnewsletter@emc1.co.uk (More games from TheDailyDraw) Dear Helen, Dozens of Free Games - with great prizesWith..
+ham	So what do you guys do.
+ham	Also that chat was awesome but don't make it regular unless you can see her in person
+ham	That's significant but dont worry.
+ham	That's cause your old. I live to be high.
+ham	Waqt se pehle or naseeb se zyada kisi ko kuch nahi milta,Zindgi wo nahi he jo hum sochte hai Zindgi wo hai jo ham jeetey hai..........
+ham	On the way to office da..
+ham	In which place do you want da.
+ham	This pain couldn't have come at a worse time.
+ham	Ok...
+ham	Should I be stalking u?
+ham	Sorry dude. Dont know how i forgot. Even after Dan reminded me. Sorry. Hope you guys had fun.
+ham	Ok lor.
+ham	Apps class varaya elaya.
+ham	The Xmas story is peace.. The Xmas msg is love.. The Xmas miracle is jesus.. Hav a blessed month ahead &amp; wish U Merry Xmas...
+spam	URGENT! Your mobile number *************** WON a £2000 Bonus Caller prize on 10/06/03! This is the 2nd attempt to reach you! Call 09066368753 ASAP! Box 97N7QP, 150ppm
+ham	That day you asked about anand number. Why:-)
+ham	Am surfing online store. For offers do you want to buy any thing.
+ham	Long beach lor. Expected... U having dinner now?
+ham	At home by the way
+ham	We are both fine. Thanks
+ham	What happen to her tell the truth
+ham	Do you like Italian food?
+ham	Which is weird because I know I had it at one point
+ham	"Aww you must be nearly dead!Well Jez isComing over toDo some workAnd that whillTake forever!"
+ham	Tell your friends what you plan to do on Valentines day @ &lt;URL&gt;
+ham	Alright, see you in a bit
+ham	Cheers for the message Zogtorius. I’ve been staring at my phone for an age deciding whether to text or not.
+ham	I will take care of financial problem.i will help:)
+ham	Tell dear what happen to you. Why you talking to me like an alian
+spam	Double your mins & txts on Orange or 1/2 price linerental - Motorola and SonyEricsson with B/Tooth FREE-Nokia FREE Call MobileUpd8 on 08000839402 or2optout/HV9D
+ham	1) Go to write msg 2) Put on Dictionary mode 3)Cover the screen with hand, 4)Press  &lt;#&gt; . 5)Gently remove Ur hand.. Its interesting..:)
+ham	Okie...
+ham	Hi this is yijue, can i meet u at 11 tmr?
+ham	Its posible dnt live in  &lt;#&gt; century cm frwd n thnk different
+ham	But i dint slept in afternoon.
+ham	That seems unnecessarily affectionate
+ham	Yar else i'll thk of all sorts of funny things.
+ham	You will be in the place of that man
+spam	Download as many ringtones as u like no restrictions, 1000s 2 choose. U can even send 2 yr buddys. Txt Sir to 80082 £3 
+ham	Thats cool. How was your day?
+spam	Please CALL 08712402902 immediately as there is an urgent message waiting for you.
+ham	R we going with the  &lt;#&gt;  bus?
+ham	Hello, my love ! How went your day ? Are you alright ? I think of you, my sweet and send a jolt to your heart to remind you ... I LOVE YOU! Can you hear it ? I screamed it across the sea for all the world to hear. Ahmad al Hallaq is loved ! and owned ! *possessive passionate kiss*
+ham	No..he joined today itself.
+ham	Okay same with me. Well thanks for the clarification
+ham	I'll talk to the others and probably just come early tomorrow then
+spam	Spook up your mob with a Halloween collection of a logo & pic message plus a free eerie tone, txt CARD SPOOK to 8007 zed 08701417012150p per logo/pic
+ham	Had the money issue weigh me down but thanks to you, I can breathe easier now. I.ll make sure you dont regret it. Thanks.
+ham	Hi. I'm sorry i missed your call. Can you pls call back.
+ham	How are you doing? Hope you've settled in for the new school year. Just wishin you a gr8 day
+spam	Fantasy Football is back on your TV. Go to Sky Gamestar on Sky Active and play £250k Dream Team. Scoring starts on Saturday, so register now!SKY OPT OUT to 88088
+ham	Ok then no need to tell me anything i am going to sleep good night
+ham	Ok try to do week end course in coimbatore.
+spam	Tone Club: Your subs has now expired 2 re-sub reply MONOC 4 monos or POLYC 4 polys 1 weekly @ 150p per week Txt STOP 2 stop This msg free Stream 0871212025016
+ham	V nice! Off 2 sheffield tom 2 air my opinions on categories 2 b used 2 measure ethnicity in next census. Busy transcribing. :-)
+ham	If you r @ home then come down within 5 min
+ham	A Boy loved a gal. He propsd bt she didnt mind. He gv lv lttrs, Bt her frnds threw thm. Again d boy decided 2 aproach d gal , dt time a truck was speeding towards d gal. Wn it was about 2 hit d girl,d boy ran like hell n saved her. She asked 'hw cn u run so fast?' D boy replied "Boost is d secret of my energy" n instantly d girl shouted "our energy" n Thy lived happily 2gthr drinking boost evrydy Moral of d story:- I hv free msgs:D;): gud ni8
+ham	That day ü say ü cut ur hair at paragon, is it called hair sense? Do ü noe how much is a hair cut? 
+ham	Hmm, too many of them unfortunately... Pics obviously arent hot cakes. Its kinda fun tho
+ham	Watching tv lor... Y she so funny we bluff her 4 wat. Izzit because she thk it's impossible between us?
+spam	XMAS Prize draws! We are trying to contact U. Todays draw shows that you have won a £2000 prize GUARANTEED. Call 09058094565 from land line. Valid 12hrs only
+ham	Dunno lei he neva say...
+ham	Thanx 4 2day! U r a goodmate I THINK UR RITE SARY! ASUSUAL!1 U CHEERED ME UP! LOVE U FRANYxxxxx
+ham	I'm on my way home. Went to change batt 4 my watch then go shop a bit lor.
+spam	YES! The only place in town to meet exciting adult singles is now in the UK. Txt CHAT to 86688 now! 150p/Msg.
+ham	Hi, Mobile no.  &lt;#&gt;  has added you in their contact list on www.fullonsms.com It s a great place to send free sms to people For more visit fullonsms.com
+ham	Good evening Sir, hope you are having a nice day. I wanted to bring it to your notice that I have been late in paying rent for the past few months and have had to pay a $ &lt;#&gt;  charge. I felt it would be inconsiderate of me to nag about something you give at great cost to yourself and that's why i didnt speak up. I however am in a recession and wont be able to pay the charge this month hence my askin well ahead of month's end. Can you please help. Thank you for everything.
+ham	If i let you do this, i want you in the house by 8am.
+ham	Best line said in Love: . "I will wait till the day I can forget u Or The day u realize that u cannot forget me."... Gn
+ham	I will reach before ten morning
+ham	Your pussy is perfect!
+ham	Sorry, I'll call later
+spam	Someone has contacted our dating service and entered your phone becausethey fancy you! To find out who it is call from a landline 09058098002. PoBox1, W14RG 150p
+ham	No message..no responce..what happend?
+ham	Also where's the piece
+ham	wiskey Brandy Rum Gin Beer Vodka Scotch Shampain Wine "KUDI"yarasu dhina vaazhthukkal. ..
+ham	Boo. How's things? I'm back at home and a little bored already :-(
+ham	First has she gained more than  &lt;#&gt; kg since she took in. Second has she done the blood sugar tests. If she has and its ok and her blood pressure is within normal limits then no worries
+ham	PICK UR FONE UP NOW U DUMB?
+ham	Thanks da thangam, i feel very very happy dear. I also miss you da.
+ham	Okey doke. I'm at home, but not dressed cos laying around ill! Speak to you later bout times and stuff. 
+ham	I don't run away frm u... I walk slowly &amp; it kills me that u don't care enough to stop me...
+ham	Babe, I'm back ... Come back to me ...
+ham	Well you told others you'd marry them...
+ham	Neshanth..tel me who r u?
+ham	YO YO YO BYATCH WHASSUP?
+ham	Oh... Kay... On sat right?
+ham	Hi! This is Roger from CL. How are you?
+spam	Babe: U want me dont u baby! Im nasty and have a thing 4 filthyguys. Fancy a rude time with a sexy bitch. How about we go slo n hard! Txt XXX SLO(4msgs)
+ham	Oh oh... Wasted... Den muz chiong on sat n sun liao...
+ham	Jesus christ bitch I'm trying to give you drugs answer your fucking phone
+ham	Please give it 2  or i will pick it up on Tuesday evening about 8 if that is ok.
+ham	I'm meeting Darren...
+ham	One of best dialogue in cute reltnship..!! "Wen i Die, Dont Come Near My Body..!! Bcoz My Hands May Not Come 2 Wipe Ur Tears Off That Time..!Gud ni8
+ham	Solve d Case : A Man Was Found Murdered On  &lt;DECIMAL&gt; . &lt;#&gt;  AfterNoon. 1,His wife called Police. 2,Police questioned everyone. 3,Wife: Sir,I was sleeping, when the murder took place. 4.Cook: I was cooking. 5.Gardener: I was picking vegetables. 6.House-Maid: I went 2 d post office. 7.Children: We went 2 play. 8.Neighbour: We went 2 a marriage. Police arrested d murderer Immediately. Who's It? Reply With Reason, If U r Brilliant.
+ham	Dear where you will be when i reach there
+ham	Aww that's the first time u said u missed me without asking if I missed u first. You DO love me! :)
+ham	Ok... Thanx... Gd nite 2 ü too...
+ham	Come to me right now, Ahmad
+spam	I don't know u and u don't know me. Send CHAT to 86688 now and let's find each other! Only 150p/Msg rcvd. HG/Suite342/2Lands/Row/W1J6HL LDN. 18 years or over.
+ham	Lol please do. Actually send a pic of yourself right now. I wanna see. Pose with a comb and hair dryer or something.
+ham	O was not into fps then.
+ham	Huh means computational science... Y they like dat one push here n there...
+ham	Could you not read me, my Love ? I answered you
+ham	Oh... Lk tt den we take e one tt ends at cine lor... Dun wan yogasana oso can... 
+ham	Madam,regret disturbance.might receive a reference check from DLF Premarica.kindly be informed.Rgds,Rakhesh,Kerala.
+spam	SMS SERVICES For your inclusive text credits pls gotto www.comuk.net login 3qxj9 unsubscribe with STOP no extra charge help 08702840625 comuk.220cm2 9AE
+ham	Oic... Then better quickly go bathe n settle down...
+ham	Err... Cud do. I'm going to  at 8pm. I haven't got a way to contact him until then.
+ham	A bloo bloo bloo I'll miss the first bowl
+ham	Lmao but its so fun...
+ham	Oh k k:)but he is not a big hitter.anyway good
+ham	Hey!!! I almost forgot ... Happy B-day babe ! I love ya!!
+spam	Valentines Day Special! Win over £1000 in our quiz and take your partner on the trip of a lifetime! Send GO to 83600 now. 150p/msg rcvd. CustCare:08718720201
+ham	Do you think i can move  &lt;#&gt;  in a week
+ham	She.s find. I sent you an offline message to know how anjola's now.
+spam	Guess who am I?This is the first time I created a web page WWW.ASJESUS.COM read all I wrote. I'm waiting for your opinions. I want to be your friend 1/1
+ham	How was txting and driving
+ham	That's good. Lets thank God. Please complete the drug. Have lots of water. And have a beautiful day.
+ham	Really dun bluff me leh... U sleep early too. Nite...
+ham	Indians r poor but India is not a poor country. Says one of the swiss bank directors. He says that " &lt;#&gt;  lac crore" of Indian money is deposited in swiss banks which can be used for 'taxless' budget for  &lt;#&gt;  yrs. Can give  &lt;#&gt;  crore jobs to all Indians. From any village to Delhi 4 lane roads. Forever free power suply to more than  &lt;#&gt;  social projects. Every citizen can get monthly  &lt;#&gt; /- for  &lt;#&gt;  yrs. No need of World Bank &amp; IMF loan. Think how our money is blocked by rich politicians. We have full rights against corrupt politicians. Itna forward karo ki pura INDIA padhe.g.m."
+ham	Uncle boye. I need movies oh. Guide me. Plus you know torrents are not particularly legal here. And the system is slowing down. What should i do. Have a gr8 day. Plus have you started cos i dont meet you online. How was the honey moon.
+ham	Oh ya ya. I remember da. .
+ham	Btw regarding that we should really try to see if anyone else can be our 4th guy before we commit to a random dude
+spam	For ur chance to win £250 cash every wk TXT: PLAY to 83370. T's&C's www.music-trivia.net custcare 08715705022, 1x150p/wk.
+ham	I not busy juz dun wan 2 go so early.. Hee.. 
+ham	Rightio. 11.48 it is then. Well arent we all up bright and early this morning.
+ham	Great. I'm in church now, will holla when i get out
+ham	Back in brum! Thanks for putting us up and keeping us all and happy. See you soon 
+ham	I donno if they are scorable
+ham	&lt;#&gt;  great loxahatchee xmas tree burning update: you can totally see stars here
+ham	Yes but i dont care! I need you bad, princess!
+ham	The guy (kadeem) hasn't been selling since the break, I know one other guy but he's paranoid as fuck and doesn't like selling without me there and I can't be up there til late tonight
+ham	Sorry, I'll call later
+ham	Tmr then ü brin lar... Aiya later i come n c lar... Mayb ü neva set properly ü got da help sheet wif ü...
+ham	Do u knw dis no. &lt;#&gt; ?
+ham	Then she dun believe wat?
+ham	K..give back my thanks.
+ham	I know complain num only..bettr directly go to bsnl offc nd apply for it..
+ham	Okay. I've seen it. So i should pick it on friday?
+ham	How much she payed. Suganya.
+ham	Left dessert. U wan me 2 go suntec look 4 u?
+ham	Abeg, make profit. But its a start. Are you using it to get sponsors for the next event?
+ham	Onum ela pa. Normal than.
+ham	K.k..how is your sister kids?
+ham	Cool, I'll text you when I'm on the way
+ham	Nope. Meanwhile she talk say make i greet you.
+ham	i cant talk to you now.i will call when i can.dont keep calling.
+ham	Anything lar...
+ham	Rose needs water, season needs change, poet needs imagination..My phone needs ur sms and i need ur lovely frndship forever....
+ham	Good afternoon, babe. How goes that day ? Any job prospects yet ? I miss you, my love ... *sighs* ... :-(
+ham	They will pick up and drop in car.so no problem..
+ham	S.i think he is waste for rr..
+ham	He is world famamus....
+ham	Is there coming friday is leave for pongal?do you get any news from your work place.
+ham	Lol well don't do it without me. We could have a big sale together.
+ham	* Am on my way
+ham	Eat at old airport road... But now 630 oredi... Got a lot of pple...
+ham	sry can't talk on phone, with parents
+spam	Final Chance! Claim ur £150 worth of discount vouchers today! Text YES to 85023 now! SavaMob, member offers mobile! T Cs SavaMob POBOX84, M263UZ. £3.00 Subs 16
+ham	Ok lor wat time ü finish?
+ham	Princess, i like to make love  &lt;#&gt;  times per night. Hope thats not a problem!
+ham	Mm i am on the way to railway
+ham	i dnt wnt to tlk wid u
+ham	I'm done. I'm sorry. I hope your next space gives you everything you want. Remember all the furniture is yours. If i'm not around when you move it, just lock all the locks and leave the key with jenne.
+ham	Not yet. Just i'd like to keep in touch and it will be the easiest way to do that from barcelona. By the way how ru and how is the house?
+spam	Sppok up ur mob with a Halloween collection of nokia logo&pic message plus a FREE eerie tone, txt CARD SPOOK to 8007
+spam	Urgent! call 09066612661 from landline. Your complementary 4* Tenerife Holiday or £10,000 cash await collection SAE T&Cs PO Box 3 WA14 2PX 150ppm 18+ Sender: Hol Offer
+ham	K.:)do it at evening da:)urgent:)
+ham	Pansy! You've been living in a jungle for two years! Its my driving you should be more worried about!
+ham	Mm have some kanji dont eat anything heavy ok
+ham	Only if you promise your getting out as SOON as you can. And you'll text me in the morning to let me know you made it in ok.
+ham	Lol that's different. I don't go trying to find every real life photo you ever took.
+ham	I dont thnk its a wrong calling between us
+ham	K ill drink.pa then what doing. I need srs model pls send it to my mail id pa.
+ham	Aiyah e rain like quite big leh. If drizzling i can at least run home.
+ham	I have 2 docs appointments next week.:/ I'm tired of them shoving stuff up me. Ugh why couldn't I have had a normal body?
+ham	Dun b sad.. It's over.. Dun thk abt it already. Concentrate on ur other papers k.
+ham	Greetings me, ! Consider yourself excused.
+ham	No drama Pls.i have had enough from you and family while i am struggling in the hot sun in a strange place.No reason why there should be an ego of not going 'IF NOT INVITED' when actually its necessity to go.wait for very serious reppurcussions.
+ham	they released another Italian one today and it has a cosign option
+ham	You at mu? You should try to figure out how much money everyone has for gas and alcohol, jay and I are trying to figure out our weed budget
+spam	WINNER! As a valued network customer you hvae been selected to receive a £900 reward! To collect call 09061701444. Valid 24 hours only. ACL03530150PM
+ham	HCL chennai requires FRESHERS for voice process.Excellent english needed.Salary upto  &lt;#&gt; .Call Ms.Suman  &lt;#&gt;  for Telephonic interview -via Indyarocks.com
+ham	Dai what this da.. Can i send my resume to this id.
+ham	I know where the  &lt;#&gt;  is, I'll be there around 5
+ham	Yup i've finished c ü there...
+ham	Remember to ask alex about his pizza
+ham	No da..today also i forgot..
+ham	Ola would get back to you maybe not today but I ve told him you can be his direct link in the US in getting cars he bids for online, you arrange shipping and you get a cut. Or U????? For a partnership where U????? Invest money for shipping and he takes care of the rest!U??Wud b self reliant soon dnt worry
+ham	Fwiw the reason I'm only around when it's time to smoke is that because of gas I can only afford to be around when someone tells me to be and that apparently only happens when somebody wants to light up
+ham	Hello, my boytoy! I made it home and my constant thought is of you, my love. I hope your having a nice visit but I can't wait till you come home to me ...*kiss*
+ham	Congrats kano..whr s the treat maga?
+ham	Who u talking about?
+ham	Yup...
+ham	Ok...
+ham	U wake up already? Wat u doing? U picking us up later rite? I'm taking sq825, reaching ard 7 smth 8 like dat. U can check e arrival time. C ya soon...
+ham	Yunny i'm walking in citylink now ü faster come down... Me very hungry...
+ham	Er yep sure. Props?
+ham	Hiya , have u been paying money into my account? If so, thanks. Got a pleasant surprise when i checked my balance -u c, i don't get statements 4 that acc
+spam	U have won a nokia 6230 plus a free digital camera. This is what u get when u win our FREE auction. To take part send NOKIA to 83383 now. POBOX114/14TCR/W1 16
+ham	Ok ill send you with in  &lt;DECIMAL&gt;  ok.
+ham	Bognor it is! Should be splendid at this time of year.
+ham	Yes.i'm in office da:)
+ham	Sorry, I'll call later
+ham	Joy's father is John. Then John is the NAME of Joy's father. Mandan
+ham	Ok. I only ask abt e movie. U wan ktv oso?
+ham	Misplaced your number and was sending texts to your old number. Wondering why i've not heard from you this year. All the best in your mcat. Got this number from my atlanta friends
+ham	Sorry, I'll call later
+ham	Dunno lei... I might b eatin wif my frens... If ü wan to eat then i wait 4 ü lar
+ham	Sorry, I'll call later
+spam	FREE entry into our £250 weekly comp just send the word WIN to 80086 NOW. 18 T&C www.txttowin.co.uk
+ham	Say this slowly.? GOD,I LOVE YOU &amp; I NEED YOU,CLEAN MY HEART WITH YOUR BLOOD.Send this to Ten special people &amp; u c miracle tomorrow, do it,pls,pls do it...
+ham	Do u noe how 2 send files between 2 computers?
+ham	Mmmmm ... I loved waking to your words this morning ! I miss you too, my Love. I hope your day goes well and you are happy. I wait for us to be together again
+ham	jay says he'll put in  &lt;#&gt;
+ham	Can you just come in for a sec? There's somebody here I want you to see
+ham	So the sun is anti sleep medicine.
+ham	What's happening with you. Have you gotten a job and have you begun registration for permanent residency
+ham	Yup ok...
+ham	Glad it went well :) come over at 11 then we'll have plenty of time before claire goes to work.
+ham	Ok enjoy . R u there in home.
+ham	Can you pls pls send me a mail on all you know about relatives coming to deliver here? All you know about costs, risks, benefits and anything else. Thanks.
+ham	You do what all you like
+ham	That's y we haf to combine n c how lor...
+ham	The monthly amount is not that terrible and you will not pay anything till 6months after finishing school.
+ham	Hmmm:)how many players selected?
+ham	They said if its gonna snow, it will start around 8 or 9 pm tonite! They are predicting an inch of accumulation.
+ham	I dont. Can you send it to me. Plus how's mode.
+ham	Aiyo please ü got time meh.
+ham	Package all your programs well
+ham	She is our sister.. She belongs 2 our family.. She is d hope of tomorrow.. Pray 4 her,who was fated 4 d Shoranur train incident. Lets hold our hands together &amp; fuelled by love &amp; concern prior 2 her grief &amp; pain. Pls join in dis chain &amp; pass it. STOP VIOLENCE AGAINST WOMEN.
+ham	So are you guys asking that i get that slippers again or its gone with last year
+ham	Company is very good.environment is terrific and food is really nice:)
+spam	Text82228>> Get more ringtones, logos and games from www.txt82228.com. Questions: info@txt82228.co.uk
+ham	Honestly i've just made a lovely cup of tea and promptly dropped my keys in it and then burnt my fingers getting them out!
+ham	Yup but not studying surfing lor. I'm in e lazy mode today.
+ham	Please sen :)my kind advice :-)please come here and try:-)
+ham	I'm done. C ü there.
+ham	Oh fine, I'll be by tonight
+ham	Ü give me some time to walk there.
+ham	I'll reach in ard 20 mins ok...
+spam	FreeMSG You have been awarded a FREE mini DIGITAL CAMERA, just reply SNAP to collect your prize! (quizclub Opt out? Stop 80122300p/wk SP:RWM Ph:08704050406)
+ham	Fuck babe ... What happened to you ? How come you never came back?
+spam	This message is brought to you by GMW Ltd. and is not connected to the
+ham	Some friends want me to drive em someplace, probably take a while
+ham	I also thk too fast... Xy suggest one not me. U dun wan it's ok. Going 2 rain leh where got gd.
+ham	Are you still getting the goods.
+ham	And maybe some pressies
+ham	Yeah I am, so I'll leave maybe 7ish?
+ham	K..k..i'm also fine:)when will you complete the course?
+ham	Under the sea, there lays a rock. In the rock, there is an envelope. In the envelope, there is a paper. On the paper, there are 3 words... '
+ham	I told her I had a Dr appt next week. She thinks I'm gonna die. I told her its just a check. Nothing to be worried about. But she didn't listen.
+ham	You in your room? I need a few
+ham	I dont want to hear anything
+ham	Hey. For me there is no leave on friday. Wait i will ask my superior and tell you..
+ham	Ultimately tor motive tui achieve korli.
+ham	From 5 to 2 only my work timing.
+ham	… and don‘t worry we‘ll have finished by march … ish!
+ham	The house is on the water with a dock, a boat rolled up with a newscaster who dabbles in jazz flute behind the wheel
+spam	Congrats 2 mobile 3G Videophones R yours. call 09063458130 now! videochat wid ur mates, play java games, Dload polypH music, noline rentl. bx420. ip4. 5we. 150p
+spam	Your next amazing xxx PICSFREE1 video will be sent to you enjoy! If one vid is not enough for 2day text back the keyword PICSFREE1 to get the next video.
+ham	Now thats going to ruin your thesis!
+ham	In sch but neva mind u eat 1st lor..
+ham	Hey whats up? U sleeping all morning?
+ham	Erm. I thought the contract ran out the4th of october.
+ham	I dunno until when... Lets go learn pilates...
+spam	U are subscribed to the best Mobile Content Service in the UK for £3 per ten days until you send STOP to 83435. Helpline 08706091795.
+ham	Yup i'm elaborating on the safety aspects and some other issues..
+spam	3 FREE TAROT TEXTS! Find out about your love life now! TRY 3 FOR FREE! Text CHANCE to 85555 16 only! After 3 Free, Msgs £1.50 each
+ham	Goodmorning, today i am late for 1hr.
+ham	Hi happy birthday. Hi hi hi hi hi hi hi
+ham	I will be outside office take all from there
+ham	If you don't respond imma assume you're still asleep and imma start calling n shit
+ham	Aight, see you in a bit
+ham	My superior telling that friday is leave for all other department except ours:)so it will be leave for you:)any way call waheed fathima hr and conform it:)
+spam	Join the UK's horniest Dogging service and u can have sex 2nite!. Just sign up and follow the instructions. Txt ENTRY to 69888 now! Nyt.EC2A.3LP.msg@150p
+ham	Lol I have to take it. member how I said my aunt flow didn't visit for 6 months? It's cause I developed ovarian cysts. Bc is the only way to shrink them.
+ham	Still work going on:)it is very small house.
+ham	My friend just got here and says he's upping his order by a few grams (he's got $ &lt;#&gt; ), when can you get here?
+ham	Tmr timin still da same wat cos i got lesson until 6...
+ham	That‘s the thing with apes, u can fight to the death to keep something, but the minute they have it when u let go, thats it!
+spam	Sunshine Quiz Wkly Q! Win a top Sony DVD player if u know which country Liverpool played in mid week? Txt ansr to 82277. £1.50 SP:Tyrone
+ham	No i'm not gonna be able to. || too late notice. || i'll be home in a few weeks anyway. || what are the plans
+ham	Got fujitsu, ibm, hp, toshiba... Got a lot of model how to say...
+ham	Okie... Thanx...
+ham	Gosh that , what a pain. Spose I better come then.
+ham	As usual..iam fine, happy &amp; doing well..:)
+ham	Okie
+ham	So when you gonna get rimac access 
+ham	"Im at arestaurant eating squid! i will be out about 10:30 wanna dosomething or is that to late?"
+ham	You call times job today ok umma and ask them to speed up
+ham	"HELLO U.CALL WEN U FINISH WRK.I FANCY MEETIN UP WIV U ALL TONITE AS I NEED A BREAK FROM DABOOKS. DID 4 HRS LAST NITE+2 TODAY OF WRK!"
+ham	R U &SAM P IN EACHOTHER. IF WE MEET WE CAN GO 2 MY HOUSE
+ham	:-) yeah! Lol. Luckily i didn't have a starring role like you!
+ham	Hello madam how are you ?
+ham	Awesome, text me when you're restocked
+ham	As usual..iam fine, happy &amp; doing well..:)
+spam	Knock Knock Txt whose there to 80082 to enter r weekly draw 4 a £250 gift voucher 4 a store of yr choice. T&Cs www.tkls.com age16 to stoptxtstop£1.50/week
+ham	Yes. It's all innocent fun. O:-)
+ham	Thanks for sending this mental ability question..
+ham	Sir, hope your day is going smoothly. i really hoped i wont have to bother you about this. I have some bills that i can't settle this month. I am out of all extra cash. I know this is a challenging time for you also but i have to let you know.
+ham	2marrow only. Wed at  &lt;#&gt;  to 2 aha.
+ham	I went to ur hon lab but no one is there.
+ham	I cant pick the phone right now. Pls send a message
+ham	Hey pple...$700 or $900 for 5 nights...Excellent location wif breakfast hamper!!!
+spam	<Forwarded from 21870000>Hi - this is your Mailbox Messaging SMS alert. You have 40 matches. Please call back on 09056242159 to retrieve your messages and matches cc100p/min
+ham	How come?
+ham	Lol! Nah wasn't too bad thanks. Its good to b home but its been quite a reality check. Hows ur day been? Did u do anything with website?
+ham	Ok lor...
+ham	I'm coming home 4 dinner.
+ham	S da..al r above  &lt;#&gt;
+spam	FREE RING TONE just text "POLYS" to 87131. Then every week get a new tone. 0870737910216yrs only £1.50/wk.
+ham	Unni thank you dear for the recharge..Rakhesh
+ham	I know I'm lacking on most of this particular dramastorm's details but for the most part I'm not worried about that
+ham	Haha... They cant what... At the most tmr forfeit... haha so how?
+ham	Hey there! Glad u r better now. I hear u treated urself to a digi cam, is it good? We r off at 9pm. Have a fab new year, c u in coupla wks!
+ham	No way I'm going back there!
+spam	URGENT! Your mobile No 077xxx WON a £2,000 Bonus Caller Prize on 02/06/03! This is the 2nd attempt to reach YOU! Call 09066362206 ASAP! BOX97N7QP, 150ppm
+ham	I WILL CAL YOU SIR. In meeting
+ham	That's what I love to hear :V see you sundayish, then
+ham	Sorry da thangam, very very sorry i am held up with prasad.
+ham	Tiwary to rcb.battle between bang and kochi.
+ham	Thank god they are in bed!
+ham	No I don't have cancer. Moms making a big deal out of a regular checkup aka pap smear
+ham	Am in gobi arts college
+ham	Why she wants to talk to me
+ham	Pandy joined 4w technologies today.he got job..
+spam	You are guaranteed the latest Nokia Phone, a 40GB iPod MP3 player or a £500 prize! Txt word: COLLECT to No: 83355! IBHltd LdnW15H 150p/Mtmsgrcvd18
+ham	They can try! They can get lost, in fact. Tee hee
+ham	Hi! You just spoke to MANEESHA V. We'd like to know if you were satisfied with the experience. Reply Toll Free with Yes or No.
+ham	My friends use to call the same.
+ham	Sorry, I'll call later
+ham	Em, its olowoyey@ usc.edu have a great time in argentina. Not sad about secretary, everything is a blessing
+ham	It,,s a taxt massage....tie-pos argh ok! Lool!
+ham	Hi, can i please get a  &lt;#&gt;  dollar loan from you. I.ll pay you back by mid february. Pls.
+ham	You might want to pull out more just in case and just plan on not spending it if you can, I don't have much confidence in derek and taylor's money management
+ham	Do you like shaking your booty on the dance floor?
+ham	Text me when you get off, don't call, my phones having problems
+ham	No need for the drug anymore.
+ham	Sorry da:)i was thought of calling you lot of times:)lil busy.i will call you at noon..
+ham	Its sarcasm.. .nt scarcasim
+ham	Great! I have to run now so ttyl!
+ham	Feel like trying kadeem again? :V
+ham	Dai  &lt;#&gt;  naal eruku.
+ham	Not yet chikku..wat abt u?
+ham	Ok...
+ham	Want to finally have lunch today?
+ham	Do you know when dad will be back?
+spam	Hello darling how are you today? I would love to have a chat, why dont you tell me what you look like and what you are in to sexy?
+spam	8007 FREE for 1st week! No1 Nokia tone 4 ur mob every week just txt NOKIA to 8007 Get txting and tell ur mates www.getzed.co.uk POBox 36504 W4 5WQ norm 150p/tone 16+
+ham	He remains a bro amongst bros
+ham	R u meeting da ge at nite tmr?
+ham	* Was a nice day and, impressively, i was sensible, went home early and now feel fine. Or am i just boring?! When's yours, i can't remember.
+ham	Why de. You looking good only:-)..
+spam	Wanna get laid 2nite? Want real Dogging locations sent direct to ur mobile? Join the UK's largest Dogging Network. Txt PARK to 69696 now! Nyt. ec2a. 3lp £1.50/msg
+spam	we tried to contact you re your response to our offer of a new nokia fone and camcorder hit reply or call 08000930705 for delivery
+ham	Yes. They replied my mail. I'm going to the management office later. Plus will in to bank later also.or on wednesday.
+ham	That's cool, I'll come by like  &lt;#&gt; ish
+ham	Super msg da:)nalla timing.
+ham	Good afternoon, my boytoy ... How are you feeling today ? Better I hope? Are you being my good boy? Are you my obedient, slave? Do you please your Queen?
+ham	I am 6 ft. We will be a good combination!
+ham	I'm sick !! I'm needy !! I want you !! *pouts* *stomps feet* Where are you ?! *pouts* *stomps feet* I want my slave !! I want him now !!
+ham	* Am on a train back from northampton so i'm afraid not!
+ham	Where in abj are you serving. Are you staying with dad or alone.
+ham	Was playng 9 doors game and gt racing on phone lol
+spam	New Tones This week include: 1)McFly-All Ab.., 2) Sara Jorge-Shock.. 3) Will Smith-Switch.. To order follow instructions on next message
+ham	Solve d Case : A Man Was Found Murdered On  &lt;DECIMAL&gt; . &lt;#&gt;  AfterNoon. 1,His wife called Police. 2,Police questioned everyone. 3,Wife: Sir,I was sleeping, when the murder took place. 4.Cook: I was cooking. 5.Gardener: I was picking vegetables. 6.House-Maid: I went 2 d post office. 7.Children: We went 2 play. 8.Neighbour: We went 2 a marriage. Police arrested d murderer Immediately. Who's It? Reply With Reason, If U r Brilliant.
+ham	I'm on da bus going home...
+ham	I got a call from a landline number. . . I am asked to come to anna nagar . . . I will go in the afternoon
+ham	I'm okay. Chasing the dream. What's good. What are you doing next.
+ham	Yupz... I've oredi booked slots 4 my weekends liao... 
+spam	URGENT! We are trying to contact U. Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050003091 from land line. Claim C52. Valid 12hrs only
+ham	There r many model..sony ericson also der.. &lt;#&gt; ..it luks good bt i forgot modl no
+ham	Okie
+ham	Yes I know the cheesy songs from frosty the snowman :)
+ham	Ya ok, vikky vl c witin  &lt;#&gt; mins and il reply u..
+spam	sports fans - get the latest sports news str* 2 ur mobile 1 wk FREE PLUS a FREE TONE Txt SPORT ON to 8007 www.getzed.co.uk 0870141701216+ norm 4txt/120p 
+ham	Hey tmr meet at bugis 930 ?
+spam	Urgent Urgent! We have 800 FREE flights to Europe to give away, call B4 10th Sept & take a friend 4 FREE. Call now to claim on 09050000555. BA128NNFWFLY150ppm
+ham	All these nice new shirts and the only thing I can wear them to is nudist themed ;_; you in mu?
+ham	Hey sexy buns! What of that day? No word from you this morning on YM ... :-( ... I think of you
+ham	And whenever you and i see we can still hook up too.
+ham	Nope but i'm going home now then go pump petrol lor... Like going 2 rain soon...
+ham	Can you use foreign stamps for whatever you send them off for? 
+spam	FROM 88066 LOST £12 HELP
+ham	Oh baby of the house. How come you dont have any new pictures on facebook
+ham	Feb  &lt;#&gt;  is "I LOVE U" day. Send dis to all ur "VALUED FRNDS" evn me. If 3 comes back u'll gt married d person u luv! If u ignore dis u will lose ur luv 4 Evr
+ham	Hiya, sorry didn't hav signal. I haven't seen or heard from and neither has, which is unusual in itself! I'll put on the case and get him to sort it out! Hugs and snogs.
+ham	Omw back to tampa from west palm, you hear what happened?
+ham	Yup no more already... Thanx 4 printing n handing it up.
+spam	FreeMsg: Fancy a flirt? Reply DATE now & join the UKs fastest growing mobile dating service. Msgs rcvd just 25p to optout txt stop to 83021. Reply DATE now!
+ham	What i mean is do they come chase you out when its over or is it stated you can watch as many movies as you want.
+ham	S now only i took tablets . Reaction morning only.
+spam	Great NEW Offer - DOUBLE Mins & DOUBLE Txt on best Orange tariffs AND get latest camera phones 4 FREE! Call MobileUpd8 free on 08000839402 NOW! or 2stoptxt T&Cs
+ham	Nah, I'm a perpetual DD
+ham	Sorry de i went to shop.
+spam	Hope you enjoyed your new content. text stop to 61610 to unsubscribe. help:08712400602450p Provided by tones2you.co.uk
+ham	Wen ur lovable bcums angry wid u, dnt take it seriously.. Coz being angry is d most childish n true way of showing deep affection, care n luv!.. kettoda manda... Have nice day da.
+ham	Hey you still want to go for yogasana? Coz if we end at cine then can go bathe and hav the steam bath
+ham	Nope i'm not drivin... I neva develop da photos lei...
+ham	I am thinking of going down to reg for pract lessons.. Flung my advance.. Haha wat time u going?
+ham	Cool. I am  &lt;#&gt;  inches long. hope you like them big!
+ham	House-Maid is the murderer, coz the man was murdered on  &lt;#&gt; th January.. As public holiday all govt.instituitions are closed,including post office..understand?
+ham	Okie.. Thanx..
+spam	18 days to Euro2004 kickoff! U will be kept informed of all the latest news and results daily. Unsubscribe send GET EURO STOP to 83222.
+ham	Go where n buy? Juz buy when we get there lar.
+ham	Ok lor...
+ham	I'm working technical support :)voice process.
+ham	It's justbeen overa week since we broke up and already our brains are going to mush!
+ham	Tunde, how are you doing. This is just wishing you a great day. Abiola.
+ham	Nope... C ü then...
+ham	No. But we'll do medical missions to nigeria
+ham	No i am not having not any movies in my laptop
+ham	Whatsup there. Dont u want to sleep
+spam	Urgent Please call 09066612661 from landline. £5000 cash or a luxury 4* Canary Islands Holiday await collection. T&Cs SAE award. 20M12AQ. 150ppm. 16+ “
+spam	Urgent! Please call 09066612661 from your landline, your complimentary 4* Lux Costa Del Sol holiday or £1000 CASH await collection. ppm 150 SAE T&Cs James 28, EH74RR
+ham	I havent lei.. Next mon can?
+ham	Mm feeling sleepy. today itself i shall get that dear
+ham	How dare you stupid. I wont tell anything to you. Hear after i wont talk to you:-.
+ham	Do ü noe if ben is going?
+ham	Can you do a mag meeting this avo at some point?
+ham	I meant middle left or right?
+ham	Really? I crashed out cuddled on my sofa.
+ham	Hi Chachi tried calling u now unable to reach u .. Pl give me a missed cal once u c tiz msg  Kanagu
+ham	I sent you the prices and do you mean the  &lt;#&gt; g,
+ham	Are you this much buzy
+ham	Nothing. Can...
+spam	I don't know u and u don't know me. Send CHAT to 86688 now and let's find each other! Only 150p/Msg rcvd. HG/Suite342/2Lands/Row/W1J6HL LDN. 18 years or over.
+ham	No * am working on the ringing u thing but have whole houseful of screaming brats so * am pulling my hair out! Loving u
+ham	But my family not responding for anything. Now am in room not went to home for diwali but no one called me and why not coming. It makes me feel like died.
+ham	Tick, tick, tick ... Babe
+ham	R ü going 4 today's meeting?
+ham	K da:)how many page you want?
+ham	Ya had just now.onion roast.
+ham	Send his number and give reply tomorrow morning for why you said that to him like that ok
+ham	You said not now. No problem. When you can. Let me know.
+ham	Ok but tell me half an hr b4 u come i need 2 prepare.
+ham	Play w computer? Aiyah i tok 2 u lor?
+ham	Sat right? Okay thanks... 
+ham	Derp. Which is worse, a dude who always wants to party or a dude who files a complaint about the three drug abusers he lives with
+ham	Ok Chinese food on its way. When I get fat you're paying for my lipo.
+ham	We r outside already.
+ham	Have a good trip. Watch out for . Remember when you get back we must decide about easter.
+ham	Yo we are watching a movie on netflix
+ham	What time. I‘m out until prob 3 or so
+ham	Can meh? Thgt some will clash... Really ah, i dun mind... I dun seen to have lost any weight... Gee...
+ham	I dont thnk its a wrong calling between us
+ham	I am not sure about night menu. . . I know only about noon menu
+ham	ARR birthday today:) i wish him to get more oscar.
+ham	Say this slowly.? GOD,I LOVE YOU &amp; I NEED YOU,CLEAN MY HEART WITH YOUR BLOOD.Send this to Ten special people &amp; u c miracle tomorrow, do it,pls,pls do it...
+ham	Open rebtel with firefox. When it loads just put plus sign in the user name place, and it will show you two numbers. The lower number is my number. Once you pick that number the pin will display okay!
+ham	 and  picking them up from various points
+spam	Married local women looking for discreet action now! 5 real matches instantly to your phone. Text MATCH to 69969 Msg cost 150p 2 stop txt stop BCMSFWC1N3XX
+ham	Wow v v impressed. Have funs shopping!
+ham	I am on the way to ur home
+spam	Burger King - Wanna play footy at a top stadium? Get 2 Burger King before 1st Sept and go Large or Super with Coca-Cola and walk out a winner
+ham	No problem. Talk to you later
+ham	Then ur sis how?
+ham	Still in customer place
+spam	How come it takes so little time for a child who is afraid of the dark to become a teenager who wants to stay out all night?
+ham	Dude u knw also telugu..thts gud..k, gud nyt..
+ham	We confirm eating at esplanade?
+ham	Send me your id and password
+ham	Kind of. Took it to garage. Centre part of exhaust needs replacing. Part ordered n taking it to be fixed tomo morning.
+spam	For ur chance to win a £250 cash every wk TXT: ACTION to 80608. T's&C's www.movietrivia.tv custcare 08712405022, 1x150p/wk.
+ham	Well I might not come then...
+ham	Long after I quit. I get on only like 5 minutes a day as it is.
+ham	Then its most likely called Mittelschmertz. Google it. If you dont have paracetamol dont worry it will go.
+ham	Well at this right I'm gonna have to get up and check today's steam sales/pee so text me when you want me to come get you
+ham	Just arrived, see you in a couple days &lt;3
+ham	K, wat s tht incident?
+ham	Yeah get the unlimited
+ham	cThen i thk shd b enuff.. Still got conclusion n contents pg n references.. I'll b doing da contents pg n cover pg..
+ham	Forgot it takes me 3 years to shower, sorry. Where you at/your phone dead yet?
+ham	Ü got wat to buy tell us then ü no need to come in again.
+ham	When you are big..| God will bring success.
+spam	U’ve Bin Awarded £50 to Play 4 Instant Cash. Call 08715203028 To Claim. EVERY 9th Player Wins Min £50-£500. OptOut 08718727870
+ham	… we r stayin here an extra week, back next wed. How did we do in the rugby this weekend? Hi to and and , c u soon "
+ham	Well there's still a bit left if you guys want to tonight
+ham	Not from this campus. Are you in the library?
+ham	The affidavit says  &lt;#&gt;  E Twiggs St, division g, courtroom  &lt;#&gt; , &lt;TIME&gt;  AM. I'll double check and text you again tomorrow
+ham	How will I creep on you now? ;_;
+ham	Tell your friends what you plan to do on Valentines day @ &lt;URL&gt;
+ham	If I get there before you after your ten billion calls and texts so help me god
+ham	Purity of friendship between two is not about smiling after reading the forwarded message..Its about smiling just by seeing the name. Gud evng musthu
+ham	I've told him that i've returned it. That should i re order it.
+ham	House-Maid is the murderer, coz the man was murdered on  &lt;#&gt; th January.. As public holiday all govt.instituitions are closed,including post office..
+ham	Depends on where u going lor.
+ham	And smile for me right now as you go and the world will wonder what you are smiling about and think your crazy and keep away from you ... *grins*
+spam	FreeMsg>FAV XMAS TONES!Reply REAL
+ham	Lil fever:) now fine:)
+ham	I think it's all still in my car
+ham	Can a not?
+spam	December only! Had your mobile 11mths+? You are entitled to update to the latest colour camera mobile for Free! Call The Mobile Update Co FREE on 08002986906 
+ham	Yes princess! I want to catch you with my big strong hands...
+ham	Oh yeah I forgot. U can only take 2 out shopping at once.
+ham	Mm so you asked me not to call radio
+ham	Thinkin about someone is all good. No drugs for that
+ham	Say this slowly.? GOD,I LOVE YOU &amp; I NEED YOU,CLEAN MY HEART WITH YOUR BLOOD.Send this to Ten special people &amp; u c miracle tomorrow, do it,pls,pls do it...
+ham	Enjoy the showers of possessiveness poured on u by ur loved ones, bcoz in this world of lies, it is a golden gift to be loved truly..
+ham	Alright if you're sure, let me know when you're leaving
+ham	Some are lasting as much as 2 hours. You might get lucky.
+ham	Genius what's up. How your brother. Pls send his number to my skype.
+spam	Gr8 Poly tones 4 ALL mobs direct 2u rply with POLY TITLE to 8007 eg POLY BREATHE1 Titles: CRAZYIN, SLEEPINGWITH, FINEST, YMCA :getzed.co.uk POBox365O4W45WQ 300p
+ham	Thk some of em find wtc too far... Weiyi not goin... E rest i dunno yet... R ur goin 4 dinner den i might b able to join...
+ham	Don't forget who owns you and who's private property you are ... And be my good boy always .. *passionate kiss*
+spam	INTERFLORA - “It's not too late to order Interflora flowers for christmas call 0800 505060 to place your order before Midnight tomorrow.
+ham	Oh god..taken the teeth?is it paining
+spam	ROMCAPspam Everyone around should be responding well to your presence since you are so warm and outgoing. You are bringing in a real breath of sunshine.
+ham	Then u ask darren go n pick u lor... But i oso sian tmr haf 2 meet lect...
+ham	No need to buy lunch for me.. I eat maggi mee..
+spam	Congratulations - Thanks to a good friend U have WON the £2,000 Xmas prize. 2 claim is easy, just call 08712103738 NOW! Only 10p per minute. BT-national-rate
+ham	Ok lor...
+ham	Oh right, ok. I'll make sure that i do loads of work during the day!  got a really nasty cough today and is dry n shot so that should really help it!
+ham	Wife.how she knew the time of murder exactly
+spam	Send a logo 2 ur lover - 2 names joined by a heart. Txt LOVE NAME1 NAME2 MOBNO eg LOVE ADAM EVE 07123456789 to 87077 Yahoo! POBox36504W45WQ TxtNO 4 no ads 150p.
+ham	Howz that persons story
+ham	Thanx 4 sending me home...
+ham	Its normally hot mail. Com you see!
+spam	You've won tkts to the EURO2004 CUP FINAL or £800 CASH, to collect CALL 09058099801 b4190604, POBOX 7876150ppm
+ham	U sick still can go shopping?
+ham	Ya they are well and fine., BBD(pooja) full pimples..even she become quite black..and ur rite here its too cold, wearing sweatter..
+ham	Nice.nice.how is it working?
+ham	1's reach home call me.
+ham	Were trying to find a Chinese food place around here
+ham	Easy mate, * guess the quick drink was bit ambitious.
+ham	BABE !!! I miiiiiiissssssssss you ! I need you !!! I crave you !!! :-( ... Geeee ... I'm so sad without you babe ... I love you ...
+ham	Ok thanx...
+ham	aathi..where are you dear..
+ham	Tunji, how's the queen? how are you doing. This is just wishing you a great day. Abiola.
+ham	Today iZ Yellow rose day. If u love my frndship give me 1 misscall &amp; send this to ur frndZ &amp; See how many miss calls u get. If u get 6missed U marry ur Lover.
+ham	Will be out of class in a few hours. Sorry
+ham	Wat time u finish ur lect today?
+spam	Free-message: Jamster!Get the crazy frog sound now! For poly text MAD1, for real text MAD2 to 88888. 6 crazy sounds for just 3 GBP/week! 16+only! T&C's apply
+ham	Sad story of a Man - Last week was my b'day. My Wife did'nt wish me. My Parents forgot n so did my Kids . I went to work. Even my Colleagues did not wish. As I entered my cabin my PA said, '' Happy B'day Boss !!''. I felt special. She askd me 4 lunch. After lunch she invited me to her apartment. We went there. She said,'' do u mind if I go into the bedroom for a minute ? '' ''OK'', I sed in a sexy mood. She came out 5 minuts latr wid a cake...n My Wife, My Parents, My Kidz, My Friends n My Colleagues. All screaming.. SURPRISE !! and I was waiting on the sofa.. ... ..... ' NAKED...!
+spam	YOUR CHANCE TO BE ON A REALITY FANTASY SHOW call now = 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870 is a national = rate call
+ham	She's fine. Good to hear from you. How are you my dear? Happy new year oh.
+ham	Are you going to wipro interview today?
+ham	how tall are you princess?
+ham	I doubt you could handle 5 times per night in any case...
+ham	Haha... Hope ü can hear the receipt sound... Gd luck!
+ham	Your gonna be the death if me. I'm gonna leave a note that says its all robs fault. Avenge me.
+ham	Japanese Proverb: If one Can do it, U too Can do it, If none Can do it,U must do it Indian version: If one Can do it, LET HIM DO it.. If none Can do it,LEAVE it!! And finally Kerala version: If one can do it, Stop him doing it.. If none can do it, Make a strike against it ...
+ham	Today i'm not workin but not free oso... Gee... Thgt u workin at ur fren's shop ? 
+ham	In life when you face choices Just toss a coin not becoz its settle the question But while the coin in the air U will know what your heart is hoping for. Gudni8
+ham	Do you know why god created gap between your fingers..? So that, One who is made for you comes &amp; fills those gaps by holding your hand with LOVE..!
+ham	I want to be there so i can kiss you and feel you next to me
+ham	I am not at all happy with what you saying or doing
+spam	Adult 18 Content Your video will be with you shortly
+ham	Ok that would b lovely, if u r sure. Think about wot u want to do, drinkin, dancin, eatin, cinema, in, out, about... Up to u! Wot about ? 
+ham	What I'm saying is if you haven't explicitly told nora I know someone I'm probably just not gonna bother
+ham	He says hi and to get your ass back to south tampa (preferably at a kegger)
+ham	Smith waste da.i wanna gayle.
+ham	Mum, i've sent you many many messages since i got here. I just want to know that you are actually getting them. Do enjoy the rest of your day.
+ham	Aight, tomorrow around  &lt;#&gt;  it is
+ham	House-Maid is the murderer, coz the man was murdered on  &lt;#&gt; th January.. As public holiday all govt.instituitions are closed,including post office..understand?
+spam	YOUR CHANCE TO BE ON A REALITY FANTASY SHOW call now = 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870 is a national = rate call.
+ham	I actually did for the first time in a while. I went to bed not too long after i spoke with you. Woke up at 7. How was your night?
+ham	See you there! 
+ham	I dont understand your message.
+ham	Crucify is c not s. You should have told me earlier.
+ham	Idk. You keep saying that you're not, but since he moved, we keep butting heads over freedom vs. responsibility. And i'm tired. I have so much other shit to deal with that i'm barely keeping myself together once this gets added to it.
+ham	Fuck cedar key and fuck her (come over anyway tho)
+ham	twenty past five he said will this train have been to durham already or not coz i am in a reserved seat
+spam	Hey Boys. Want hot XXX pics sent direct 2 ur phone? Txt PORN to 69855, 24Hrs free and then just 50p per day. To stop text STOPBCM SF WC1N3XX
+ham	U still painting ur wall?
+spam	Last Chance! Claim ur £150 worth of discount vouchers today! Text SHOP to 85023 now! SavaMob, offers mobile! T Cs SavaMob POBOX84, M263UZ. £3.00 Sub. 16
+ham	Printer is cool. I mean groovy. Wine is groovying
+ham	Hi Harish's rent has been transfred to ur Acnt.
+ham	Anything lor is she coming?
+ham	Cbe is really good nowadays:)lot of shop and showrooms:)city is shaping good.
+ham	Ü still attending da talks?
+ham	No probs hon! How u doinat the mo?
+ham	K I'll take care of it
+ham	I take it we didn't have the phone callon Friday. Can we assume we won't have it this year now?
+ham	My battery is low babe
+ham	Shuhui has bought ron's present it's a swatch watch...
+ham	Yeah there's quite a bit left, I'll swing by tomorrow when I get up
+ham	Babe? You said 2 hours and it's been almost 4 ... Is your internet down ?
+ham	K I'll be sure to get up before noon and see what's what
+ham	K...k...yesterday i was in cbe .
+ham	Went to ganesh dress shop
+spam	pdate_Now - Double mins and 1000 txts on Orange tariffs. Latest Motorola, SonyEricsson & Nokia & Bluetooth FREE! Call MobileUpd8 on 08000839402 or call2optout/!YHL
+ham	Ü collecting ur laptop then going to configure da settings izzit?
+ham	If you r @ home then come down within 5 min
+ham	Aight, I should be there by 8 at the latest, probably closer to 7. Are jay and tyler down or should we just do two trips?
+ham	Come aftr  &lt;DECIMAL&gt; ..now i m cleaning the house
+spam	Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send CASH to 86688 only 150p/msg. CC: 08718720201 PO BOX 114/14 TCR/W1
+ham	Bill, as in: Are there any letters for me. i’m expecting one from orange that isn’t a bill but may still say orange on it.
+ham	Tell me pa. How is pain de.
+ham	HI DARLIN I HOPE YOU HAD A NICE NIGHT I WISH I HAD COME CANT WAIT TO SEE YOU LOVE FRAN PS I WANT DIRTY ANAL SEX AND I WANT A 10 MAN GANG BANG
+ham	Ha. You don‘t know either. I did a a clever but simple thing with pears the other day, perfect for christmas.
+ham	Helloooo... Wake up..! "Sweet" "morning" "welcomes" "You" "Enjoy" "This Day" "with full of joy".. "GUD MRNG".
+ham	ALRITE
+ham	Why must we sit around and wait for summer days to celebrate. Such a magical sight when the worlds dressed in white. Oooooh let there be snow.
+spam	URGENT! Your Mobile number has been awarded with a £2000 prize GUARANTEED. Call 09058094454 from land line. Claim 3030. Valid 12hrs only
+ham	How do you guys go to see movies on your side.
+ham	Sorry,in meeting I'll call later
+ham	You didn't have to tell me that...now i'm thinking. Plus he's going to stop all your runs
+ham	Kindly send some one to our flat before  &lt;DECIMAL&gt;  today.
+spam	Sorry! U can not unsubscribe yet. THE MOB offer package has a min term of 54 weeks> pls resubmit request after expiry. Reply THEMOB HELP 4 more info
+ham	Nothing lor... A bit bored too... Then y dun u go home early 2 sleep today...
+ham	What time should I tell my friend to be around?
+ham	Yes. that will be fine. Love you. Be safe.
+ham	Thanks chikku..:-) gud nyt:-*
+ham	Is xy in ur car when u picking me up?
+ham	Thanx 4 the time we’ve spent 2geva, its bin mint! Ur my Baby and all I want is u!xxxx
+ham	Yo, any way we could pick something up tonight?
+ham	I've not sent it. He can send me.
+ham	Fine am simply sitting.
+ham	Thts god's gift for birds as humans hav some natural gift frm god..
+ham	Are you coming to day for class.
+ham	Im done. Just studyn in library
+ham	Ok... U enjoy ur shows...
+ham	Anything...
+ham	Where wuld I be without my baby? The thought alone mite break me and I don’t wanna go crazy but everyboy needs his lady xxxxxxxx
+ham	Wat's my dear doing? Sleeping ah?
+ham	Hi' Test on  &lt;#&gt; rd ....
+ham	Only 2% students solved this CAT question in 'xam... 5+3+2= &lt;#&gt;  9+2+4= &lt;#&gt;  8+6+3= &lt;#&gt;  then 7+2+5=????? Tell me the answer if u r brilliant...1thing.i got d answr.
+ham	Yo do you know anyone  &lt;#&gt;  or otherwise able to buy liquor? Our guy flaked and right now if we don't get a hold of somebody its just 4 loko all night
+ham	Yup n her fren lor. I'm meeting my fren at 730.
+ham	Yeah, we got one lined up for us
+ham	And stop wondering "wow is she ever going to stop tm'ing me ?!" because I will tm you whenever I want because you are MINE ... *laughs*
+ham	Lol yep did that yesterday. Already got my fireplace. Now its just another icon sitting there for me.
+ham	Hey i've booked the pilates and yoga lesson already... Haha
+ham	Are you ok. What happen to behave like this
+spam	You have 1 new message. Please call 08712400200.
+ham	My supervisor find 4 me one lor i thk his students. I havent ask her yet. Tell u aft i ask her.
+ham	Hello. No news on job, they are making me wait a fifth week! Yeah im up for some woozles and weasels... In exeter still, but be home about 3. 
+ham	No message..no responce..what happend?
+spam	We currently have a message awaiting your collection. To collect your message just call 08718723815.
+ham	Hey babe, sorry i didn't get sooner. Gary can come and fix it cause he thinks he knows what it is but he doesn't go as far a Ptbo and he says it will cost  &lt;#&gt;  bucks. I don't know if it might be cheaper to find someone there ? We don't have any second hand machines at all right now, let me know what you want to do babe
+ham	make that 3! 4 fucks sake?! x
+ham	Leave it. U will always be ignorant.
+ham	Nope but i'll b going 2 sch on fri quite early lor cos mys sis got paper in da morn :-)
+ham	at bruce b downs &amp; fletcher now
+ham	Where are you ? You said you would be here when I woke ... :-(
+ham	Hey now am free you can call me.
+ham	Tell me whos this pls:-)
+spam	URGENT! Your mobile was awarded a £1,500 Bonus Caller Prize on 27/6/03. Our final attempt 2 contact U! Call 08714714011
+ham	Think i might have to give it a miss. Am teaching til twelve, then have lecture at two. Damn this working thing.
+ham	Id have to check but there's only like 1 bowls worth left
+ham	Yes there were many sweets
+ham	I would but I'm still cozy. And exhausted from last night.nobody went to school or work. Everything is closed.
+spam	U have a secret admirer. REVEAL who thinks U R So special. Call 09065174042. To opt out Reply REVEAL STOP. 1.50 per msg recd. Cust care 07821230901
+ham	Buzzzz! *grins* Did I buzz your ass? Buzz your chest ? Buzz your cock ? Where do you keep your phone ? Is the vibrator on ? Did you feel it shake ?
+ham	Sir send to group mail check it.
+ham	I'm doing da intro covers energy trends n pros n cons... Brief description of nuclear fusion n oso brief history of iter n jet got abt 7 n half pages..
+ham	"NONE!NOWHERE IKNO DOESDISCOUNT!SHITINNIT"
+ham	You dont know you jabo me abi.
+spam	Do you ever notice that when you're driving, anyone going slower than you is an idiot and everyone driving faster than you is a maniac?
+ham	Not yet had..ya sapna aunty manege y'day hogidhe..chinnu full weak and swalpa black agidhane..
+ham	Are you being good, baby? :)
+ham	NEFT Transaction with reference number  &lt;#&gt;  for Rs. &lt;DECIMAL&gt;  has been credited to the beneficiary account on  &lt;#&gt;  at  &lt;TIME&gt; : &lt;#&gt;
+ham	Mostly sports type..lyk footbl,crckt..
+ham	Ma head dey swell oh. Thanks for making my day
+ham	U should make a fb list
+ham	Height of Confidence: All the Aeronautics professors wer calld &amp; they wer askd 2 sit in an aeroplane. Aftr they sat they wer told dat the plane ws made by their students. Dey all hurried out of d plane.. Bt only 1 didnt move... He said:"if it is made by my students,this wont even start........ Datz confidence..
+ham	Sary just need Tim in the bollox &it hurt him a lot so he tol me!
+ham	Happy New Year Princess!
+ham	I'll text carlos and let you know, hang on
+ham	Don't worry, * is easy once have ingredients!
+ham	I love u 2 my little pocy bell I am sorry but I love u
+ham	Ok omw now, you at castor?
+ham	Yar lor... Keep raining non stop... Or u wan 2 go elsewhere?
+spam	Xmas Offer! Latest Motorola, SonyEricsson & Nokia & FREE Bluetooth or DVD! Double Mins & 1000 Txt on Orange. Call MobileUpd8 on 08000839402 or call2optout/4QF2
+ham	What u mean u almost done? Done wif sleeping? But i tot u going to take a nap.. Yup i send her liao so i'm picking her up at ard 4 smth lor..
+ham	7 wonders in My WORLD 7th You 6th Ur style 5th Ur smile 4th Ur Personality 3rd Ur Nature 2nd Ur SMS and 1st "Ur Lovely Friendship"... good morning dear
+ham	Tonight? Yeah, I'd be down for that
+ham	What should i eat fo lunch senor
+ham	He said that he had a right giggle when he saw u again! You would possibly be the first person2die from NVQ, but think how much you could for! 
+ham	No break time one... How... I come out n get my stuff fr ü?
+spam	Reply to win £100 weekly! What professional sport does Tiger Woods play? Send STOP to 87239 to end service
+ham	I'm there and I can see you, but you can't see me ? Maybe you should reboot ym ? I seen the buzz
+ham	Do you still have the grinder?
+spam	No 1 POLYPHONIC tone 4 ur mob every week! Just txt PT2 to 87575. 1st Tone FREE ! so get txtin now and tell ur friends. 150p/tone. 16 reply HL 4info
+ham	Love isn't a decision, it's a feeling. If we could decide who to love, then, life would be much simpler, but then less magical
+spam	HOT LIVE FANTASIES call now 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870 is a national rate call
+ham	K.i did't see you.:)k:)where are you now?
+ham	So i'm doing a list of buyers.
+ham	No idea, I guess we'll work that out an hour after we're supposed to leave since as usual nobody has any interest in figuring shit out before the last second
+ham	Mm not entirely sure i understood that text but hey. Ho. Which weekend?
+ham	They released vday shirts and when u put it on it makes your bottom half naked instead of those white underwear.
+ham	Don know..he is watching film in computer..
+ham	No b4 Thursday
+ham	Oh, then your phone phoned me but it disconnected
+ham	Id onluy matters when getting on from offcampus
+spam	This message is free. Welcome to the new & improved Sex & Dogging club! To unsubscribe from this service reply STOP. msgs@150p 18+only
+ham	Excellent, I'll see what riley's plans are
+ham	I will see in half an hour
+spam	You've won tkts to the EURO2004 CUP FINAL or £800 CASH, to collect CALL 09058099801 b4190604, POBOX 7876150ppm
+ham	Ew are you one of them?
+ham	Also hi wesley how've you been
+ham	Ah you see. You have to be in the lingo. I will let you know wot on earth it is when has finished making it!
+spam	Loan for any purpose £500 - £75,000. Homeowners + Tenants welcome. Have you been previously refused? We can still help. Call Free 0800 1956669 or text back 'help'
+spam	Update_Now - 12Mths Half Price Orange line rental: 400mins...Call MobileUpd8 on 08000839402 or call2optout=J5Q
+ham	Imagine Life WITHOUT ME... see.. How fast u are searching me?Don't worry.. l'm always there To disturb U.. Goodnoon..:)
+ham	Hm good morning, headache anyone? :-)
+ham	Yeah no probs - last night is obviously catching up with you... Speak soon 
+spam	FREE UNLIMITED HARDCORE PORN direct 2 your mobile Txt PORN to 69200 & get FREE access for 24 hrs then chrgd@50p per day txt Stop 2exit. This msg is free
+ham	I might go 2 sch. Yar at e salon now v boring.
+ham	 &lt;#&gt;  mins but i had to stop somewhere first.
+ham	&lt;#&gt;  is fast approaching. So, Wish u a very Happy New Year Happy Sankranti Happy republic day Happy Valentines Day Happy Shivratri Happy Ugadi Happy Fools day Happy May Day Happy Independence Day, Happy Friendship,Mother,Father,Teachers,Childrens Day, &amp; HAPPY BIRTHDAY 4 U. Happy Ganesh festival Happy Dasara Happy Diwali Happy Christmas  &lt;#&gt;  Good Mornings Afternoons, Evenings Nights. RememberI AM the first to WISHING U ALL THESE...your's Raj
+ham	One of the joys in lifeis waking up each daywith thoughts that somewhereSomeone cares enough tosend a warm morning greeting.. -
+ham	I didn't get the second half of that message
+ham	Wat time do u wan 2 meet me later?
+ham	I thank you so much for all you do with selflessness. I love you plenty.
+ham	Am in film ill call you later.
+ham	How dare you change my ring
+ham	You are a very very very very bad girl. Or lady.
+ham	I love ya too but try and budget your money better babe. Gary would freak on me if he knew
+ham	What part of "don't initiate" don't you understand
+ham	I finished my lunch already. U wake up already?
+ham	You still at the game?
+ham	You have got tallent but you are wasting.
+ham	What is your record for one night? :)
+ham	Also sir, i sent you an email about how to log into the usc payment portal. I.ll send you another message that should explain how things are back home. Have a great weekend.
+ham	 gonna let me know cos comes bak from holiday that day.  is coming. Don't4get2text me  number. 
+ham	Jokin only lar... :-) depends on which phone my father can get lor...
+ham	Aight, lemme know what's up
+ham	Get ready for  &lt;#&gt;  inches of pleasure...
+ham	Raji..pls do me a favour. Pls convey my Birthday wishes to Nimya. Pls. Today is her birthday.
+ham	;-) ok. I feel like john lennon.
+ham	Cos darren say ü considering mah so i ask ü...
+ham	You are not bothering me but you have to trust my answers. Pls.
+ham	Wishing you and your family Merry "X" mas and HAPPY NEW Year in advance..
+ham	One day a crab was running on the sea shore..The waves came n cleared the footprints of the crab.. Crab asked: being my frnd y r u clearing my beautiful footprints? Waves replied: A fox was following ur footprints to catch you! thats y i cleared it off:) frndsship never lets u dwn :-) GUD nyt..
+ham	Aight what time you want me to come up?
+ham	Slaaaaave ! Where are you ? Must I summon you to me all the time now ? Don't you wish to come to me on your own anymore?
+ham	Your bill at 3 is £33.65 so thats not bad!
+ham	Let me know how it changes in the next 6hrs. It can even be appendix but you are out of that age range. However its not impossible. So just chill and let me know in 6hrs
+ham	Hello, yeah i've just got out of the bath and need to do my hair so i'll come up when i'm done, yeah?
+ham	So how's the weather over there?
+ham	Ok. Not much to do here though. H&M Friday, cant wait. Dunno wot the hell im gonna do for another 3 weeks! Become a slob- oh wait, already done that! 
+ham	Die... Now i have e toot fringe again...
+ham	Lol they don't know about my awesome phone. I could click delete right now if I want.
+ham	Ok
+ham	Awesome question with a cute answer: Someone asked a boy "how is ur life?" . . He smiled &amp; answered: . . "She is fine!" Gudnite
+ham	Please leave this topic..sorry for telling that..
+ham	Pls send me the correct name da.
+ham	What happened to our yo date?
+spam	EASTENDERS TV Quiz. What FLOWER does DOT compare herself to? D= VIOLET E= TULIP F= LILY txt D E or F to 84025 NOW 4 chance 2 WIN £100 Cash WKENT/150P16+
+ham	Webpage s not available!
+ham	Just woke up. Yeesh its late. But I didn't fall asleep til &lt;#&gt; am :/
+spam	You are now unsubscribed all services. Get tons of sexy babes or hunks straight to your phone! go to http://gotbabes.co.uk. No subscriptions.
+ham	Dear all, as we know  &lt;#&gt; th is the  &lt;#&gt; th birthday of our loving Gopalettan. We are planning to give a small gift on that day. Those who like to participate in that you are welcome. Please contact our admin team for more details
+ham	K..k...from tomorrow onwards started ah?
+ham	What u talking bout early morning? It's almost noon where your at!
+ham	Fine. Do you remember me.
+spam	Hi babe its Jordan, how r u? Im home from abroad and lonely, text me back if u wanna chat xxSP visionsms.com Text stop to stopCost 150p 08712400603
+ham	Ok. How many should i buy.
+ham	Sounds good, keep me posted
+spam	Get a brand new mobile phone by being an agent of The Mob! Plus loads more goodies! For more info just text MAT to 87021.
+ham	Ok. So april. Cant wait
+ham	Boy you best get yo ass out here quick
+ham	Ay wana meet on sat?ü wkg on sat?
+ham	I'm now but have to wait till 2 for the bus to pick me.
+ham	Apart from the one i told you about yesterday?
+ham	Ok lor... But buy wat?
+ham	Somebody should go to andros and steal ice
+ham	Don know. I did't msg him recently.
+ham	Take us out shopping and Mark will distract Isaiah.=D
+ham	Mum, hope you are having a great day. Hoping this text meets you well and full of life. Have a great day. Abiola
+ham	There is no sense in my foot and penis.
+ham	Okay but i thought you were the expert
+ham	*deep sigh* ... I miss you :-( ... I am really surprised you haven't gone to the net cafe yet to get to me ... Don't you miss me?
+ham	S.s:)i thinl role is like sachin.just standing. Others have to hit.
+ham	Have a great trip to India. And bring the light to everyone not just with the project but with everyone that is lucky to see you smile. Bye. Abiola
+ham	And very importantly, all we discuss is between u and i only.
+ham	K..k:)how about your training process?
+ham	Ok lor. I ned 2 go toa payoh 4 a while 2 return smth u wan 2 send me there or wat?
+ham	In da car park 
+ham	I wish that I was with you. Holding you tightly. Making you see how important you are. How much you mean to me ... How much I need you ... In my life ...
+ham	So i asked how's anthony. Dad. And your bf
+ham	'Wnevr i wana fal in luv vth my books, My bed fals in luv vth me..!'' . Yen madodu, nav pretsorginta, nammanna pretsovru important alwa....!!:) Gud eveB-).
+ham	What Today-sunday..sunday is holiday..so no work..
+ham	Am going to take bath ill place the key in window:-)
+spam	LORD OF THE RINGS:RETURN OF THE KING in store NOW!REPLY LOTR by 2 June 4 Chance 2 WIN LOTR soundtrack CDs StdTxtRate. Reply STOP to end txts
+ham	Dear, take care. I am just reaching home.love u a lot.
+ham	staff.science.nus.edu.sg/~phyhcmk/teaching/pc1323
+ham	Have you emigrated or something? Ok maybe 5.30 was a bit hopeful...
+ham	Olol i printed out a forum post by a guy with the exact same  prob which was fixed with a gpu replacement. Hopefully they dont ignore that.
+ham	We walked from my moms. Right on stagwood pass right on winterstone left on victors hill. Address is &lt;#&gt;
+ham	Yo, you at jp and hungry like a mofo?
+ham	This is all just creepy and crazy to me.
+ham	Ok... I din get ur msg...
+ham	Tessy..pls do me a favor. Pls convey my birthday wishes to Nimya..pls dnt forget it. Today is her birthday Shijas
+ham	Pathaya enketa maraikara pa'
+ham	Even if he my friend he is a priest call him now
+ham	U so lousy, run already come back then half dead... Hee...
+ham	That's y i said it's bad dat all e gals know u... Wat u doing now?
+ham	Or remind me in a few hrs.
+ham	I had been hoping i would not have to send you this message. My rent is due and i dont have enough for it. My reserves are completely gone. Its a loan i need and was hoping you could her. The balance is  &lt;#&gt; . Is there a way i could get that from you, till mid march when i hope to pay back.
+ham	Hi. Happy New Year. I dont mean to intrude but can you pls let me know how much tuition you paid last semester and how much this semester is. Thanks
+ham	Hello hun how ru? Its here by the way. Im good. Been on 2 dates with that guy i met in walkabout so far. We have to meet up soon. Hows everyone else?
+ham	Lol I was gonna last month. I cashed some in but I left &lt;#&gt; just in case. I was collecting more during the week cause they announced it on the blog.
+spam	Good Luck! Draw takes place 28th Feb 06. Good Luck! For removal send STOP to 87239 customer services 08708034412
+ham	Short But Cute : " Be a good person , but dont try to prove" ..... Gud mrng...
+ham	Just haven't decided where yet eh ?
+ham	Wat time liao, where still got.
+ham	Yes watching footie but worried we're going to blow it - Phil Neville?
+ham	I wait 4 ü inside da car park...
+ham	Uncle Abbey! Happy New Year. Abiola
+ham	Now am free call me pa.
+ham	R u saying i should re order the slippers cos i had to pay for returning it.
+ham	Stop knowing me so well!
+ham	Good evening! this is roger. How are you?
+ham	Small problem in auction:)punj now asking tiwary
+spam	Free entry in 2 a weekly comp for a chance to win an ipod. Txt POD to 80182 to get entry (std txt rate) T&C's apply 08452810073 for details 18+
+ham	He telling not to tell any one. If so treat for me hi hi hi
+ham	My uncles in Atlanta. Wish you guys a great semester.
+spam	1st wk FREE! Gr8 tones str8 2 u each wk. Txt NOKIA ON to 8007 for Classic Nokia tones or HIT ON to 8007 for Polys. Nokia/150p Poly/200p 16+
+ham	U coming 2 pick me?
+ham	Thats cool. i liked your photos. You are very sexy!
+ham	would u fuckin believe it they didnt know i had thurs pre booked off so they re cancelled me AGAIN! that needs to b sacked
+ham	Haha better late than ever, any way I could swing by?
+ham	Ok. But i finish at 6.
+spam	LookAtMe!: Thanks for your purchase of a video clip from LookAtMe!, you've been charged 35p. Think you can do better? Why not send a video in a MMSto 32323.
+ham	I've been barred from all B and Q stores for life!?This twat in orange dungerees came up to me and asked if I wanted decking? So I got the first punch in!!
+ham	So no messages. Had food?
+ham	Ok going to sleep. Hope i can meet her.
+ham	Wat makes some people dearer is not just de happiness dat u feel when u meet them but de pain u feel when u miss dem!!!
+ham	Can you let me know details of fri when u find out cos I'm not in tom or fri. mentionned chinese. Thanks
+ham	You're right I have now that I think about it
+ham	Wat r u doing now?
+ham	Is ur lecture over?
+spam	sexy sexy cum and text me im wet and warm and ready for some porn! u up for some fun? THIS MSG IS FREE RECD MSGS 150P INC VAT 2 CANCEL TEXT STOP
+ham	Customer place i will call you
+ham	Not planned yet :)going to join company on jan 5 only.don know what will happen after that.
+ham	Boy; I love u Grl: Hogolo Boy: gold chain kodstini Grl: Agalla Boy: necklace madstini Grl: agalla Boy: Hogli 1 mutai eerulli kodthini! Grl: I love U kano;-)
+ham	Haha I heard that, text me when you're around
+ham	I.ll get there tomorrow and send it to you
+ham	"SHIT BABE.. THASA BIT MESSED UP.YEH, SHE SHUDVETOLD U. DID URGRAN KNOW?NEWAY, ILLSPEAK 2 U2MORO WEN IM NOT ASLEEP..."
+ham	Oh thats late! Well have a good night and i will give u a call tomorrow. Iam now going to go to sleep night night
+ham	"CHEERS U TEX MECAUSE U WEREBORED! YEAH OKDEN HUNNY R UIN WK SAT?SOUND’S LIKEYOUR HAVIN GR8FUN J! KEEP UPDAT COUNTINLOTS OF LOVEME XXXXX."
+ham	Sorry,  in meeting I'll call you later
+ham	Yo! Howz u? girls never rang after india. L
+ham	Yeah but which is worse for i
+spam	Hard LIVE 121 chat just 60p/min. Choose your girl and connect LIVE. Call 09094646899 now! Cheap Chat UK's biggest live service. VU BCM1896WC1N3XX
+ham	I tagged MY friends that you seemed to count as YOUR friends.
+spam	Not heard from U4 a while. Call 4 rude chat private line 01223585334 to cum. Wan 2C pics of me gettin shagged then text PIX to 8552. 2End send STOP 8552 SAM xxx
+ham	Ok...
+ham	Long time. You remember me today.
+ham	Havent shopping now lor i juz arrive only
+ham	Thank u. IT BETTER WORK OUT CAUSE I WILL FEEL USED OTHERWISE
+ham	Are you up for the challenge? I know i am :)
+ham	How much did ur hdd casing cost.
+ham	Mystery solved! Just opened my email and he's sent me another batch! Isn't he a sweetie
+ham	I can't describe how lucky you are that I'm actually awake by noon
+spam	This is the 2nd time we have tried to contact u. U have won the £1450 prize to claim just call 09053750005 b4 310303. T&Cs/stop SMS 08718725756. 140ppm
+ham	TODAY is Sorry day.! If ever i was angry with you, if ever i misbehaved or hurt you? plz plz JUST SLAP URSELF Bcoz, Its ur fault, I'm basically GOOD
+ham	Cheers for the card ... Is it that time of year already?
+spam	HOT LIVE FANTASIES call now 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870..k
+ham	When people see my msgs, They think Iam addicted to msging... They are wrong, Bcoz They don\'t know that Iam addicted to my sweet Friends..!! BSLVYL
+ham	Ugh hopefully the asus ppl dont randomly do a reformat.
+ham	Haven't seen my facebook, huh? Lol!
+ham	Mah b, I'll pick it up tomorrow
+ham	Still otside le..u come 2morrow maga..
+ham	Do u still have plumbers tape and a wrench we could borrow?
+spam	Dear Voucher Holder, To claim this weeks offer, at you PC please go to http://www.e-tlp.co.uk/reward. Ts&Cs apply.
+ham	It vl bcum more difficult..
+spam	UR GOING 2 BAHAMAS! CallFREEFONE 08081560665 and speak to a live operator to claim either Bahamas cruise of£2000 CASH 18+only. To opt out txt X to 07786200117
+ham	Havent still waitin as usual... Ü come back sch oredi?
+ham	In meeting da. I will call you
+ham	K k :-):-) then watch some films.
+ham	Does cinema plus drink appeal tomo? * Is a fr thriller by director i like on at mac at 8.30.
+ham	There the size of elephant tablets & u shove um up ur ass!!
+ham	So many people seems to be special at first sight, But only very few will remain special to you till your last sight.. Maintain them till life ends.. take cr da
+ham	My Parents, My Kidz, My Friends n My Colleagues. All screaming.. SURPRISE !! and I was waiting on the sofa.. ... ..... ' NAKED...!
+ham	Dunno i juz askin cos i got a card got 20% off 4 a salon called hair sense so i tot it's da one ü cut ur hair. 
+ham	Good morning pookie pie! Lol hope I didn't wake u up
+ham	MAYBE IF YOU WOKE UP BEFORE FUCKING 3 THIS WOULDN'T BE A PROBLEM.
+ham	Happy birthday to you....dear.with lots of love.rakhesh NRI
+ham	Howz that persons story
+spam	This is the 2nd time we have tried 2 contact u. U have won the 750 Pound prize. 2 claim is easy, call 08712101358 NOW! Only 10p per min. BT-national-rate
+ham	X2  &lt;#&gt; . Are you going to get that
+ham	Hi neva worry bout da truth coz the truth will lead me 2 ur heart. It’s the least a unique person like u deserve. Sleep tight or morning
+spam	UR awarded a City Break and could WIN a £200 Summer Shopping spree every WK. Txt STORE to 88039.SkilGme.TsCs087147403231Winawk!Age16+£1.50perWKsub
+ham	Is ur paper today in e morn or aft?
+ham	I will lick up every drop :) are you ready to use your mouth as well?
+ham	And you! Will expect you whenever you text! Hope all goes well tomo 
+ham	Great. P diddy is my neighbor and comes for toothpaste every morning
+ham	I av a new number,  . Wil u only use this one,ta.
+ham	So its to be poking man everyday that they teach you in canada abi! How are you. Just saying hi.
+ham	7 lor... Change 2 suntec... Wat time u coming?
+ham	No de.am seeing in online shop so that i asked.
+ham	Just curious because my cuz asked what I was up to
+ham	Nice.nice.how is it working?
+ham	Okay lor... Wah... like that def they wont let us go... Haha... What did they say in the terms and conditions?
+ham	Haha... Yup hopefully  we will lose a few kg by mon. after hip hop can go orchard and weigh again
+ham	She's good. How are you. Where r u working now
+ham	Oh, yes, I've just been a little under the weather so i've kind of been coccooning at home
+ham	At home also.
+ham	This phone has the weirdest auto correct.
+ham	Oops my phone died and I didn't even know. Yeah I like it better.
+ham	Havent mus ask if u can 1st wat. Of meet 4 lunch den u n him meet can already lor. Or u wan 2 go ask da ge 1st then confirm w me asap?
+ham	She said,'' do u mind if I go into the bedroom for a minute ? '' ''OK'', I sed in a sexy mood. She came out 5 minuts latr wid a cake...n My Wife,
+ham	OH YEAH,AND HAV A GREAT TIME IN NEWQUAY-SEND ME A POSTCARD !1 LOOK AFTER ALL THE GIRLS WHILE IM GONE(U KNOW THE 1IM TALKIN BOUT!)xx
+ham	We got a divorce. Lol. She.s here
+ham	What's ur pin?
+ham	Babe, have you got enough money to pick up bread and milk ? And I'll give you it back when you get home ?
+ham	I want snow. It's just freezing and windy.
+spam	URGENT! We are trying to contact U. Todays draw shows that you have won a £2000 prize GUARANTEED. Call 09066358361 from land line. Claim Y87. Valid 12hrs only
+ham	Come to mahal bus stop.. &lt;DECIMAL&gt;
+ham	Don know:)this week i'm going to tirunelvai da.
+ham	Me too baby! I promise to treat you well! I bet you will take good care of me...
+ham	Its like that hotel dusk game i think. You solve puzzles in a area thing
+spam	Thanks for your ringtone order, reference number X29. Your mobile will be charged 4.50. Should your tone not arrive please call customer services 09065989180
+ham	Hi, my love! How goes that day? Fuck, this morning I woke and dropped my cell on the way down the stairs but it seems alright ... *phews* I miss you !
+ham	Well that must be a pain to catch
+ham	Sorry da thangam.it's my mistake.
+ham	I need... Coz i never go before 
+ham	Rose for red,red for blood,blood for heart,heart for u. But u for me.... Send tis to all ur friends.. Including me.. If u like me.. If u get back, 1-u r poor in relation! 2-u need some 1 to support 3-u r frnd 2 many 4-some1 luvs u 5+- some1 is praying god to marry u.:-) try it....
+ham	Wife.how she knew the time of murder exactly
+spam	SIX chances to win CASH! From 100 to 20,000 pounds txt> CSH11 and send to 87575. Cost 150p/day, 6days, 16+ TsandCs apply Reply HL 4 info
+spam	Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send COLLECT to 83600 only 150p/msg. CC: 08718720201 PO BOX 114/14 TCR/W1
+ham	I feel like a dick because I keep sleeping through your texts and facebook messages. Sup, you in town?
+ham	No plm i will come da. On the way.
+ham	Guess he wants alone time. We could just show up and watch when they do..
+ham	Height of recycling: Read twice- People spend time for earning money and the same money is spent for spending time!;-) Good morning.. keep smiling:-)
+ham	Yup ü not comin :-(
+ham	Yes, princess. Toledo.
+ham	Aight text me when you're back at mu and I'll swing by, need somebody to get the door for me
+ham	Ron say fri leh. N he said ding tai feng cant make reservations. But he said wait lor.
+ham	Good. No swimsuit allowed :)
+ham	Am okay. Will soon be over. All the best
+ham	A cute thought for friendship: "Its not necessary to share every secret with ur close Frnd, but watever u shared should be true"....
+ham	Ok i've sent u da latest version of da project.
+ham	Good Morning my Dear........... Have a great &amp; successful day.
+ham	Pls accept me for one day. Or am begging you change the number.
+ham	Squeeeeeze!! This is christmas hug.. If u lik my frndshp den hug me back.. If u get 3 u r cute:) 6 u r luvd:* 9 u r so lucky;) None? People hate u:
+ham	Its ok, if anybody asks abt me, u tel them..:-P
+ham	Funny fact Nobody teaches volcanoes 2 erupt, tsunamis 2 arise, hurricanes 2 sway aroundn no 1 teaches hw 2 choose a wife Natural disasters just happens
+ham	* You gonna ring this weekend or wot?
+ham	Also track down any lighters you can find
+ham	Sorry, I can't help you on this.
+ham	Babe, I need your advice
+ham	I‘ll leave around four, ok?
+ham	Come to medical college at 7pm ......forward it da
+ham	K:)k..its good:)when are you going?
+ham	I can make lasagna for you... vodka...
+ham	HI ITS KATE CAN U GIVE ME A RING ASAP XXX
+ham	Who were those people ? Were you in a tour ? I thought you were doing that sofa thing you sent me ? Your curious sugar
+ham	No, but you told me you were going, before you got drunk!
+ham	He fucking chickened out. He messaged me he would be late and woould buzz me and then I didn't hear a word from him
+spam	Congratulations! Thanks to a good friend U have WON the £2,000 Xmas prize. 2 claim is easy, just call 08718726978 NOW! Only 10p per minute. BT-national-rate
+ham	I'm always looking for an excuse to be in the city.
+ham	Yup i'm still having coffee wif my frens... My fren drove she'll give me a lift...
+ham	O shore are you takin the bus
+ham	So u gonna get deus ex?
+ham	I will send them to your email. Do you mind  &lt;#&gt;  times per night?
+spam	44 7732584351, Do you want a New Nokia 3510i colour phone DeliveredTomorrow? With 300 free minutes to any mobile + 100 free texts + Free Camcorder reply or call 08000930705.
+ham	tap & spile at seven. * Is that pub on gas st off broad st by canal. Ok?
+ham	Ok then i come n pick u at engin?
+ham	Which is why i never wanted to tell you any of this. Which is why i'm so short with you and on-edge as of late.
+ham	Raviyog Peripherals bhayandar east
+ham	K actually can you guys meet me at the sunoco on howard? It should be right on the way
+spam	You have 1 new voicemail. Please call 08719181513.
+ham	MOON has come to color your dreams, STARS to make them musical and my SMS to give you warm and Peaceful Sleep. Good Night
+ham	Just finished eating. Got u a plate. NOT leftovers this time.
+ham	Thanx a lot...
+ham	Hurry home u big butt. Hang up on your last caller if u have to. Food is done and I'm starving. Don't ask what I cooked.
+ham	Lol your right. What diet? Everyday I cheat anyway. I'm meant to be a fatty :(
+ham	Its a great day. Do have yourself a beautiful one.
+ham	What happened in interview?
+ham	Solve d Case : A Man Was Found Murdered On  &lt;DECIMAL&gt; . &lt;#&gt;  AfterNoon. 1,His wife called Police. 2,Police questioned everyone. 3,Wife: Sir,I was sleeping, when the murder took place. 4.Cook: I was cooking. 5.Gardener: I was picking vegetables. 6.House-Maid: I went 2 d post office. 7.Children: We went 2 play. 8.Neighbour: We went 2 a marriage. Police arrested d murderer Immediately. Who's It? Reply With Reason, If U r Brilliant.
+ham	Badrith is only for chennai:)i will surely pick for us:)no competition for him.
+ham	I tot it's my group mate... Lucky i havent reply... Wat time do ü need to leave... 
+ham	Hey you around? I've got enough for a half + the ten I owe you
+ham	Hey tmr maybe can meet you at yck
+ham	ALRITE SAM ITS NIC JUST CHECKIN THAT THIS IS UR NUMBER-SO IS IT?T.B*
+ham	They are just making it easy to pay back. I have  &lt;#&gt; yrs to say but i can pay back earlier. You get?
+ham	Not to worry. I'm sure you'll get it.
+ham	The gas station is like a block away from my house, you'll drive right by it since armenia ends at swann and you have to take howard
+spam	Someone U know has asked our dating service 2 contact you! Cant Guess who? CALL 09058097189 NOW all will be revealed. POBox 6, LS15HB 150p 
+spam	Camera - You are awarded a SiPix Digital Camera! call 09061221066 fromm landline. Delivery within 28 days
+ham	My tuition is at 330. Hm we go for the 1120 to 1205 one? Do you mind?
+ham	I'm not smoking while people use "wylie smokes too much" to justify ruining my shit
+ham	Dear good morning how you feeling dear
+ham	A little. Meds say take once every 8 hours. It's only been 5 but pain is back. So I took another. Hope I don't die
+ham	Beautiful tomorrow never comes.. When it comes, it's already TODAY.. In the hunt of beautiful tomorrow don't waste your wonderful TODAY.. GOODMORNING:)
+ham	Dunno lei ü all decide lor. How abt leona? Oops i tot ben is going n i msg him.
+ham	Hi there. We have now moved in2 our pub . Would be great 2 c u if u cud come up.
+spam	Todays Voda numbers ending 5226 are selected to receive a ?350 award. If you hava a match please call 08712300220 quoting claim code 1131 standard rates app 
+spam	This message is free. Welcome to the new & improved Sex & Dogging club! To unsubscribe from this service reply STOP. msgs@150p 18 only
+ham	Honeybee Said: *I'm d Sweetest in d World* God Laughed &amp; Said: *Wait,U Havnt Met d Person Reading This Msg* MORAL: Even GOD Can Crack Jokes! GM+GN+GE+GN:)
+ham	Just do what ever is easier for you
+spam	RCT' THNQ Adrian for U text. Rgds Vatian
+ham	Stop calling everyone saying I might have cancer. My throat hurts to talk. I can't be answering everyones calls. If I get one more call I'm not babysitting on Monday
+ham	It'll be tough, but I'll do what I have to
+ham	IM GONNAMISSU SO MUCH!!I WOULD SAY IL SEND U A POSTCARD BUTTHERES ABOUTAS MUCH CHANCE OF MEREMEMBERIN ASTHERE IS OFSI NOT BREAKIN HIS CONTRACT!! LUV Yaxx
+ham	Ee msg na poortiyagi odalebeku: Hanumanji 7 name 1-Hanuman 2-Bajarangabali 3-Maruti 4-Pavanaputra 5-Sankatmochan 6-Ramaduth 7-Mahaveer ee 7 name  &lt;#&gt;  janarige ivatte kalisidare next saturday olage ondu good news keluviri...! Maretare inde 1 dodda problum nalli siguviri idu matra  &lt;#&gt; % true.. Don't neglet.
+ham	HI DARLIN I FINISH AT 3 DO U 1 2 PICK ME UP OR MEET ME? TEXT BACK ON THIS NUMBER LUV KATE XXX
+ham	Set a place for me in your heart and not in your mind, as the mind easily forgets but the heart will always remember. Wish you Happy Valentines Day!
+ham	But i'm surprised she still can guess right lor...
+ham	Okie ü wan meet at bishan? Cos me at bishan now. I'm not driving today.
+ham	Oh ho. Is this the first time u use these type of words
+ham	HI DARLIN HOW WAS WORK DID U GET INTO TROUBLE? IJUST TALKED TO YOUR MUM ALL MORNING! I HAD A REALLY GOOD TIME LAST NIGHT IM GOIN OUT SOON BUT CALL ME IF U CAN
+ham	I know you are serving. I mean what are you doing now.
+ham	Huh... Hyde park not in mel ah, opps, got confused... Anyway, if tt's e best choice den we juz have to take it...
+ham	Oh gei. That happend to me in tron. Maybe ill dl it in 3d when its out
+spam	FREE MESSAGE Activate your 500 FREE Text Messages by replying to this message with the word FREE For terms & conditions, visit www.07781482378.com
+ham	I know girls always safe and selfish know i got it pa. Thank you. good night.
+ham	No worries, hope photo shoot went well. have a spiffing fun at workage. 
+ham	I'm freezing and craving ice. Fml
+ham	Kay... Since we are out already 
+ham	Eh sorry leh... I din c ur msg. Not sad already lar. Me watching tv now. U still in office?
+ham	Yo im right by yo work
+ham	Ok darlin i supose it was ok i just worry too much.i have to do some film stuff my mate and then have to babysit again! But you can call me there.xx
+ham	She said,'' do u mind if I go into the bedroom for a minute ? '' ''OK'', I sed in a sexy mood. She came out 5 minuts latr wid a cake...n My Wife,
+ham	I don wake since. I checked that stuff and saw that its true no available spaces. Pls call the embassy or send a mail to them.
+ham	Nope... Juz off from work...
+ham	Huh so fast... Dat means u havent finished painting?
+ham	 what number do u live at? Is it 11?
+ham	No we put party 7 days a week and study lightly, I think we need to draw in some custom checkboxes so they know we're hardcore
+ham	Sac will score big hundred.he is set batsman:-)
+ham	Send me yetty's number pls.
+ham	How much it will cost approx . Per month.
+ham	Ok... The theory test? when are ü going to book? I think it's on 21 may. Coz thought wanna go out with jiayin. But she isnt free
+spam	You are being contacted by our dating service by someone you know! To find out who it is, call from a land line 09050000928. PoBox45W2TG150P
+ham	That's fine, have him give me a call if he knows what he wants or has any questions
+ham	Sorry, got a late start, we're on the way
+ham	Then u go back urself lor...
+ham	I AM AT THE GAS STATION. GO THERE.
+ham	K, if u bored up just come to my home..
+ham	Babe !!!! I LOVE YOU !!!! *covers your face in kisses*
+ham	Like I made him throw up when we were smoking in our friend's car one time, it was awesome
+ham	Still i have not checked it da. . .
+ham	You will go to walmart. I.ll stay.
+ham	I haven't forgotten you, i might have a couple bucks to send you tomorrow, k? I love ya too
+ham	Oh great. I.ll disturb him more so that we can talk.
+ham	Reverse is cheating. That is not mathematics.
+ham	U're welcome... Caught u using broken english again...
+ham	No problem baby. Is this is a good time to talk? I called and left a message.
+ham	Sorry, I'll call later
+ham	Oh is it! Which brand?
+ham	Sorry i cant take your call right now. It so happens that there r 2waxsto do wat you want. She can come and ill get her medical insurance. And she'll be able to deliver and have basic care. I'm currently shopping for the right medical insurance for her. So just give me til friday morning. Thats when i.ll see the major person that can guide me to the right insurance.
+ham	At what time are you coming.
+ham	Call him and say you not coming today ok and tell them not to fool me like this ok
+ham	I emailed yifeng my part oredi.. Can ü get it fr him..
+ham	R u sure they'll understand that! Wine * good idea just had a slurp!
+ham	Minimum walk is 3miles a day.
+ham	Ok not a problem will get them a taxi. C ing  tomorrow and tuesday. On tuesday think we r all going to the cinema. 
+ham	Brainless Baby Doll..:-D;-), vehicle sariyag drive madoke barolla..
+ham	I don't run away frm u... I walk slowly &amp; it kills me that u don't care enough to stop me...
+spam	Sorry I missed your call let's talk when you have the time. I'm on 07090201529
+ham	Please attend the phone:)
+ham	You only hate me. You can call any but you didnt accept even a single call of mine. Or even you messaged
+ham	No messages on her phone. I'm holding it now
+ham	Can... I'm free...
+ham	Yo my trip got postponed, you still stocked up?
+ham	Sorry, I'll call later
+ham	I am waiting for your call sir.
+ham	Hey what are you doing. Y no reply pa..
+ham	Hey elaine, is today's meeting still on?
+ham	Sorry i've not gone to that place. I.ll do so tomorrow. Really sorry.
+ham	Most of the tiime when i don't let you hug me it's so i don't break into tears.
+ham	Tomorrow i am not going to theatre. . . So i can come wherever u call me. . . Tell me where and when to come tomorrow
+ham	And now electricity just went out fml.
+ham	Looks like you found something to do other than smoke, great job!
+ham	Also andros ice etc etc
+ham	:) 
+ham	Good afternon, my love. How are today? I hope your good and maybe have some interviews. I wake and miss you babe. A passionate kiss from across the sea
+ham	Yup. Wun believe wat? U really neva c e msg i sent shuhui?
+ham	Hows that watch resizing
+ham	Dear umma she called me now :-)
+ham	Just finished. Missing you plenty
+spam	complimentary 4 STAR Ibiza Holiday or £10,000 cash needs your URGENT collection. 09066364349 NOW from Landline not to lose out! Box434SK38WP150PPM18+
+ham	Well, I meant as opposed to my drunken night of before
+ham	K... Must book a not huh? so going for yoga basic on sunday?
+spam	FREE MSG:We billed your mobile number by mistake from shortcode 83332.Please call 08081263000 to have charges refunded.This call will be free from a BT landline
+ham	Ok can...
+ham	Oops - am at my mum's in somerset... Bit far! Back tomo, see you soon x
+ham	So u workin overtime nigpun?
+ham	Same as kallis dismissial in 2nd test:-).
+ham	O. Guess they both got screwd
+spam	Please CALL 08712402972 immediately as there is an urgent message waiting for you
+ham	I'm in a meeting, call me later at
+ham	What r u cooking me for dinner?
+ham	Ok thanx...
+ham	Bull. Your plan was to go floating off to IKEA with me without a care in the world. So i have to live with your mess another day.
+ham	Then i buy.
+spam	URGENT! Your Mobile number has been awarded with a £2000 Bonus Caller Prize. Call 09058095201 from land line. Valid 12hrs only
+ham	Heehee that was so funny tho
+ham	It only does simple arithmetic not percentages.
+ham	Yeah we wouldn't leave for an hour at least, how's 4 sound?
+spam	As a valued customer, I am pleased to advise you that following recent review of your Mob No. you are awarded with a £1500 Bonus Prize, call 09066364589
+ham	Thanks honey. Have a great day.
+ham	'An Amazing Quote'' - "Sometimes in life its difficult to decide whats wrong!! a lie that brings a smile or the truth that brings a tear...."
+ham	Good night my dear.. Sleepwell&amp;Take care
+ham	Then ü ask dad to pick ü up lar... Ü wan 2 stay until 6 meh...
+ham	Jus chillaxin, what up
+ham	"HEY DAS COOL... IKNOW ALL 2 WELLDA PERIL OF STUDENTFINANCIAL CRISIS!SPK 2 U L8R."
+ham	Beautiful Truth against Gravity.. Read carefully: "Our heart feels light when someone is in it.. But it feels very heavy when someone leaves it.." GOODMORNING
+spam	Do you want a New Nokia 3510i colour phone DeliveredTomorrow? With 300 free minutes to any mobile + 100 free texts + Free Camcorder reply or call 08000930705
+ham	Whats that coming over the hill..... Is it a monster! Hope you have a great day. Things r going fine here, busy though! 
+ham	Joy's father is John. Then John is the ____ of Joy's father. If u ans ths you hav  &lt;#&gt;  IQ. Tis s IAS question try to answer.
+ham	Only once then after ill obey all yours.
+ham	No she didnt. I will search online and let you know.
+ham	Where do you need to go to get it?
+ham	No pic. Please re-send.
+ham	He remains a bro amongst bros
+ham	Uhhhhrmm isnt having tb test bad when youre sick
+ham	But i haf enuff space got like 4 mb...
+spam	LIFE has never been this much fun and great until you came in. You made it truly special for me. I won't forget you! enjoy @ one gbp/sms
+spam	Do you want a new Video phone? 600 anytime any network mins 400 Inclusive Video calls AND downloads 5 per week Free delTOMORROW call 08002888812 or reply NOW
+spam	As a valued customer, I am pleased to advise you that following recent review of your Mob No. you are awarded with a £1500 Bonus Prize, call 09066368470
+spam	Welcome! Please reply with your AGE and GENDER to begin. e.g 24M
+spam	Freemsg: 1-month unlimited free calls! Activate SmartCall Txt: CALL to No: 68866. Subscriptn3gbp/wk unlimited calls Help: 08448714184 Stop?txt stop landlineonly
+spam	Had your mobile 10 mths? Update to latest Orange camera/video phones for FREE. Save £s with Free texts/weekend calls. Text YES for a callback orno to opt out
+spam	Am new 2 club & dont fink we met yet Will B gr8 2 C U Please leave msg 2day wiv ur area 09099726553 reply promised CARLIE x Calls£1/minMobsmore LKPOBOX177HP51FL
+ham	True. Its easier with her here.
+ham	Sure but since my parents will be working on Tuesday I don't really need a cover story
+ham	Haha okay... Today weekend leh... 
+ham	"Hi darlin did youPhone me? Im atHome if youwanna chat."
+ham	I don't know jack shit about anything or i'd say/ask something helpful but if you want you can pretend that I did and just text me whatever in response to the hypotheticalhuagauahahuagahyuhagga
+ham	You've always been the brainy one.
+ham	Yeah if we do have to get a random dude we need to change our info sheets to PARTY  &lt;#&gt; /7 NEVER STUDY just to be safe
+spam	Camera - You are awarded a SiPix Digital Camera! call 09061221066 fromm landline. Delivery within 28 days.
+ham	Christmas is An occasion that is Celebrated as a Reflection of UR... Values..., Desires..., Affections...&amp; Traditions.... Have an ideal Christmas...
+ham	Sending you greetings of joy and happiness. Do have a gr8 evening
+ham	"Hi darlin i cantdo anythingtomorrow as myparents aretaking me outfor a meal. when are u free? Katexxx"
+ham	If india win or level series means this is record:)
+ham	Then what about further plan?
+ham	Its good to hear from you
+ham	awesome, how do I deal with the gate? Charles told me last night but, uh, yeah
+ham	What time you thinkin of goin?
+spam	Get a FREE mobile video player FREE movie. To collect text GO to 89105. Its free! Extra films can be ordered t's and c's apply. 18 yrs only
+spam	Save money on wedding lingerie at www.bridal.petticoatdreams.co.uk Choose from a superb selection with national delivery. Brought to you by WeddingFriend
+ham	Your board is working fine. The issue of overheating is also reslove. But still software inst is pending. I will come around 8'o clock.
+ham	Yes but I don't care cause I know its there!
+ham	wiskey Brandy Rum Gin Beer Vodka Scotch Shampain Wine "KUDI"yarasu dhina vaazhthukkal. ..
+ham	Mon okie lor... Haha, best is cheap n gd food la, ex oso okie... Depends on whether wana eat western or chinese food... Den which u prefer... 
+ham	Sitting ard nothing to do lor. U leh busy w work?
+ham	Its  &lt;#&gt; k here oh. Should i send home for sale.
+ham	Sorry. || mail? || 
+ham	Ya just telling abt tht incident..
+ham	Yes we were outside for like 2 hours. And I called my whole family to wake them up cause it started at 1 am
+ham	Ugh just got outta class
+ham	Nowadays people are notixiquating the laxinorficated opportunity for bambling of entropication.... Have you ever oblisingately opted ur books for the masteriastering amplikater of fidalfication? It is very champlaxigating, i think it is atrocious.. Wotz Ur Opinion???? Junna
+ham	I dont have any of your file in my bag..i was in work when you called me.i 'll tell you if i find anything in my room.
+ham	No need lar. Jus testing e phone card. Dunno network not gd i thk. Me waiting 4 my sis 2 finish bathing so i can bathe. Dun disturb u liao u cleaning ur room.
+ham	Ok. I.ll do you right later.
+ham	Friendship poem: Dear O Dear U R Not Near But I Can Hear Dont Get Fear Live With Cheer No More Tear U R Always my Dear. Gud ni8
+ham	Have your lunch and come quickly and open the door:)
+spam	Not heard from U4 a while. Call me now am here all night with just my knickers on. Make me beg for it like U did last time 01223585236 XX Luv Nikiyu4.net
+ham	I am back. Bit long cos of accident on a30. Had to divert via wadebridge.I had a brilliant weekend thanks. Speak soon. Lots of love
+ham	K.. I yan jiu liao... Sat we can go 4 bugis vill one frm 10 to 3 den hop to parco 4 nb. Sun can go cine frm 1030 to 2, den hop to orc mrt 4 hip hop at 4...
+spam	Bloomberg -Message center +447797706009 Why wait? Apply for your future http://careers. bloomberg.com
+ham	i am seeking a lady in the street and a freak in the sheets. Is that you?
+ham	My phone
+ham	Haha figures, well I found the piece and priscilla's bowl
+ham	Actually fuck that, just do whatever, do find an excuse to be in tampa at some point before january though
+spam	URGENT! We are trying to contact U. Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050001808 from land line. Claim M95. Valid12hrs only
+ham	yay! finally lol. i missed our cinema trip last week :-(
+ham	All day working day:)except saturday and sunday..
+ham	aathi..where are you dear..
+ham	Heart is empty without love.. Mind is empty without wisdom.. Eyes r empty without dreams &amp; Life is empty without frnds.. So Alwys Be In Touch. Good night &amp; sweet dreams
+ham	I think I‘m waiting for the same bus! Inform me when you get there, if you ever get there.
+ham	You getting back any time soon?
+ham	, how's things? Just a quick question.
+ham	Night has ended for another day, morning has come in a special way. May you smile like the sunny rays and leaves your worries at the blue blue bay. Gud mrng
+ham	I can probably come by, everybody's done around  &lt;#&gt;  right?
+ham	I got it before the new year cos yetunde said she wanted to surprise you with it but when i didnt see money i returned it mid january before the  &lt;#&gt; day return period ended.
+ham	I can ask around but there's not a lot in terms of mids up here
+ham	Be sure to check your yahoo email. We sent photos yesterday
+ham	What was she looking for?
+ham	Wherre's my boytoy ? :-(
+spam	Do you want a NEW video phone750 anytime any network mins 150 text for only five pounds per week call 08000776320 now or reply for delivery tomorrow
+ham	Hello, my love! How goes that day ? I wish your well and fine babe and hope that you find some job prospects. I miss you, boytoy ... *a teasing kiss*
+ham	Tell my  bad character which u Dnt lik in me. I'll try to change in  &lt;#&gt; . I ll add tat 2 my new year resolution. Waiting for ur reply.Be frank...good morning.
+ham	No:-)i got rumour that you going to buy apartment in chennai:-)
+ham	Yeah, probably earlier than that
+ham	Change windows logoff sound..
+ham	Still i have not checked it da. . .
+ham	I'm also came to room.
+ham	Huh but i got lesson at 4 lei n i was thinkin of going to sch earlier n i tot of parkin at kent vale...  
+ham	Ok.
+ham	I will reach office around  &lt;DECIMAL&gt; . &amp; my mobile have problem. You cann't get my voice. So call you asa i'll free
+ham	Cool, text me when you head out
+spam	You are being contacted by our dating service by someone you know! To find out who it is, call from a land line 09050000878. PoBox45W2TG150P
+spam	Wan2 win a Meet+Greet with Westlife 4 U or a m8? They are currently on what tour? 1)Unbreakable, 2)Untamed, 3)Unkempt. Text 1,2 or 3 to 83049. Cost 50p +std text
+ham	Happy birthday... May u find ur prince charming soon n dun work too hard...
+ham	Oh, the grand is having a bit of a party but it doesn't mention any cover charge so it's probably first come first served
+ham	You said to me before i went back to bed that you can't sleep for anything.
+ham	I hope you arnt pissed off but id would really like to see you tomorrow. Love me xxxxxxxxxxxxxX
+spam	Dorothy@kiefer.com (Bank of Granite issues Strong-Buy) EXPLOSIVE PICK FOR OUR MEMBERS *****UP OVER 300% *********** Nasdaq Symbol CDGT That is a $5.00 per..
+ham	says the  &lt;#&gt;  year old with a man and money. I'm down to my last  &lt;#&gt; . Still waiting for that check.
+ham	I will come to ur home now
+ham	Free any day but i finish at 6 on mon n thurs...
+ham	Will you be here for food
+ham	life alle mone,eppolum oru pole allalo
+ham	Nite...
+ham	Two fundamentals of cool life: "Walk, like you are the KING"...! OR "Walk like you Dont care,whoever is the KING"!... Gud nyt
+ham	Camera quite good, 10.1mega pixels, 3optical and 5digital dooms. Have a lovely holiday, be safe and i hope you hav a good journey! Happy new year to you both! See you in a couple of weeks! 
+ham	Hi Petey!noi’m ok just wanted 2 chat coz avent spoken 2 u 4 a long time-hope ur doin alrite.have good nit at js love ya am.x
+ham	I just saw ron burgundy captaining a party boat so yeah
+ham	I'm serious. You are in the money base
+ham	Already one guy loving you:-.
+ham	Staff of placement training in Amrita college.
+ham	I always chat with you. In fact i need money can you raise me?
+ham	I'm job profile seems like bpo..
+ham	Well, I was about to give up cos they all said no they didn‘t do one nighters. I persevered and found one but it is very cheap so i apologise in advance. It is just somewhere to sleep isnt it?
+ham	So you think i should actually talk to him? Not call his boss in the morning? I went to this place last year and he told me where i could go and get my car fixed cheaper. He kept telling me today how much he hoped i would come back in, how he always regretted not getting my number, etc.
+ham	Are you willing to go for apps class.
+ham	Hanging out with my brother and his family
+ham	No it will reach by 9 only. She telling she will be there. I dont know
+ham	Hey... are you going to quit soon? Xuhui and i working till end of the month 
+ham	Im sorry bout last nite it wasn’t ur fault it was me, spouse it was pmt or sumthin! U 4give me? I think u shldxxxx
+ham	Try neva mate!!
+ham	Yeah that'd pretty much be the best case scenario
+ham	I not free today i haf 2 pick my parents up tonite...
+ham	"HEY BABE! FAR 2 SPUN-OUT 2 SPK AT DA MO... DEAD 2 DA WRLD. BEEN SLEEPING ON DA SOFA ALL DAY, HAD A COOL NYTHO, TX 4 FONIN HON, CALL 2MWEN IM BK FRMCLOUD 9! J X"
+ham	Should i send you naughty pix? :)
+spam	You are a £1000 winner or Guaranteed Caller Prize, this is our Final attempt to contact you! To Claim Call 09071517866 Now! 150ppmPOBox10183BhamB64XE
+spam	Xmas & New Years Eve tickets are now on sale from the club, during the day from 10am till 8pm, and on Thurs, Fri & Sat night this week. They're selling fast!
+ham	Tyler (getting an 8th) has to leave not long after 9, can you get here in like an hour?
+ham	Prepare to be pounded every night...
+ham	Actually, my mobile is full of msg. And i m doing a work online, where i need to send them  &lt;#&gt;  sent msg i wil explain u later.
+ham	Sorry, I'll call later
+ham	Good evening! How are you?
+ham	I'm at home. Please call
+ham	Oic cos me n my sis got no lunch today my dad went out... So dunno whether 2 eat in sch or wat...
+ham	Mmmmm ... It was sooooo good to wake to your words this morning, my Love!! Mmmm fuck ... I love you too, my Lion ... *devouring kiss from across the sea*
+ham	We are pleased to inform that your application for Airtel Broadband is processed successfully. Your installation will happen within 3 days.
+ham	What happen dear. Why you silent. I am tensed
+ham	I'll get there at 3, unless you guys want me to come some time sooner
+ham	If you are not coughing then its nothing
+ham	Ü come lt 25 n pass to me lar
+ham	I'm e person who's doing e sms survey...
+ham	Lol ok ill try to send. Be warned Sprint is dead slow. You'll prolly get it tomorrow
+ham	Thank You meet you monday
+ham	SO IS TH GOWER MATE WHICH IS WHERE I AM!?! HOW R U MAN? ALL IS GOOD IN WALES ILL B BACK ‘MORROW. C U THIS WK? WHO WAS THE MSG 4? – RANDOM!
+spam	Rock yr chik. Get 100's of filthy films &XXX pics on yr phone now. rply FILTH to 69669. Saristar Ltd, E14 9YT 08701752560. 450p per 5 days. Stop2 cancel
+ham	Single line with a big meaning::::: "Miss anything 4 ur "Best Life" but, don't miss ur best life for anything... Gud nyt...
+ham	I got like $ &lt;#&gt; , I can get some more later though. Get whatever you feel like
+ham	Dad wanted to talk about the apartment so I got a late start, omw now
+ham	I love you both too :-)
+ham	Lol u still feeling sick?
+ham	Din i tell u jus now 420
+ham	am up to my eyes in philosophy
+spam	From next month get upto 50% More Calls 4 Ur standard network charge 2 activate Call 9061100010 C Wire3.net 1st4Terms PoBox84 M26 3UZ Cost £1.50 min MobcudB more
+ham	Ok lor. I'm in town now lei.
+ham	I had it already..sabarish asked me to go..
+ham	No da. . Vijay going to talk in jaya tv
+spam	URGENT! We are trying to contact U Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050000460 from land line. Claim J89. po box245c2150pm
+ham	Lol I know! Hey someone did a great inpersonation of flea on the forums. I love it!
+spam	Text BANNEDUK to 89555 to see! cost 150p textoperator g696ga 18+ XXX
+ham	Still chance there. If you search hard you will get it..let have a try :)
+spam	Auction round 4. The highest bid is now £54. Next maximum bid is £71. To bid, send BIDS e. g. 10 (to bid £10) to 83383. Good luck.
+ham	Do you always celebrate NY's with your family ?
+ham	We know TAJ MAHAL as symbol of love. But the other lesser known facts 1. Mumtaz was Shahjahan's 4th wife, out of his 7 wifes. 2. Shahjahan killed Mumtaz's husband to marry her. 3. Mumtaz died in her  &lt;#&gt; th delivery. 4. He then married Mumtaz's sister. Question arises where the Hell is the LOVE?:-| -The Great Hari-
+ham	Its ok..come to my home it vl nice to meet and v can chat..
+spam	Collect your VALENTINE'S weekend to PARIS inc Flight & Hotel + £200 Prize guaranteed! Text: PARIS to No: 69101. www.rtf.sphosting.com
+ham	Sent me de webadres for geting salary slip
+ham	She's fine. Sends her greetings
+spam	Customer Loyalty Offer:The NEW Nokia6650 Mobile from ONLY £10 at TXTAUCTION! Txt word: START to No: 81151 & get yours Now! 4T&Ctxt TC 150p/MTmsg
+ham	But you dint in touch with me.
+ham	Yup, leaving right now, be back soon
+spam	You won't believe it but it's true. It's Incredible Txts! Reply G now to learn truly amazing things that will blow your mind. From O2FWD only 18p/txt
+ham	Yeah sure I'll leave in a min
+ham	And do you have any one that can teach me how to ship cars.
+ham	The sign of maturity is not when we start saying big things.. But actually it is, when we start understanding small things... *HAVE A NICE EVENING* BSLVYL
+ham	Yeah confirmed for you staying at  that weekend
+ham	They said ü dun haf passport or smth like dat.. Or ü juz send to my email account..  
+ham	Multiply the numbers independently and count decimal points then, for the division, push the decimal places like i showed you.
+ham	Have a lovely night and when you wake up to see this message, i hope you smile knowing all is as should be. Have a great morning
+ham	Ard 4 lor...
+ham	You are right. Meanwhile how's project twins comin up
+ham	I sent your maga that money yesterday oh.
+spam	Hi 07734396839 IBH Customer Loyalty Offer: The NEW NOKIA6600 Mobile from ONLY £10 at TXTAUCTION!Txt word:START to No:81151 & get Yours Now!4T&
+ham	Heart is empty without love.. Mind is empty without wisdom.. Eyes r empty without dreams &amp; Life is empty without frnds.. So Alwys Be In Touch. Good night &amp; sweet dreams
+spam	I am hot n horny and willing I live local to you - text a reply to hear strt back from me 150p per msg Netcollex LtdHelpDesk: 02085076972 reply Stop to end
+ham	Our ride equally uneventful - not too many of those pesky cyclists around at that time of night ;).
+ham	If you were/are free i can give. Otherwise nalla adi entey nattil kittum
+ham	I've sent my wife your text. After we buy them she'll tell you what to do. So just relax. We should go get them this wkend.
+ham	I am in escape theatre now. . Going to watch KAVALAN in a few minutes
+ham	How much would it cost to hire a hitman
+ham	I anything lor...
+ham	Sorry, I'll call later
+spam	Do you want a New Nokia 3510i Colour Phone Delivered Tomorrow? With 200 FREE minutes to any mobile + 100 FREE text + FREE camcorder Reply or Call 08000930705
+ham	Huh but i cant go 2 ur house empty handed right?
+ham	Good morning princess! Happy New Year!
+spam	Congratulations YOU'VE Won. You're a Winner in our August £1000 Prize Draw. Call 09066660100 NOW. Prize Code 2309.
+ham	Aight, we'll head out in a few
+ham	Then wat r u doing now? Busy wif work?
+ham	I know you mood off today
+ham	Jay told me already, will do
+ham	Cps is causing the outages to conserve energy.
+ham	I'm not sure, I was just checking out what was happening around the area
+ham	Hey morning what you come to ask:-) pa...
+ham	Jordan got voted out last nite!
+ham	That means you got an A in epi, she.s fine. She.s here now.
+ham	I have no idea where you are
+ham	Pls come quick cant bare this.
+ham	Joy's father is John. Then John is the ____ of Joy's father. If u ans ths you hav  &lt;#&gt;  IQ. Tis s IAS question try to answer.
+ham	Call me. I m unable to cal. Lets meet bhaskar, and deep
+ham	No. I.ll meet you in the library
+ham	K, my roommate also wants a dubsack and another friend may also want some so plan on bringing extra, I'll tell you when they know for sure
+ham	Depends on individual lor e hair dresser say pretty but my parents say look gong. U kaypoh.. I also dunno wat she collecting.
+ham	Ok c ü then.
+ham	I enjoy watching and playing football and basketball. Anything outdoors. And you?
+ham	Can you please ask macho what his price range is, does he want something new or used plus it he only interfued in the blackberry bold  &lt;#&gt;  or any bb
+ham	Sorry sent blank msg again. Yup but trying 2 do some serious studying now.
+ham	Hey check it da. I have listed da.
+spam	8007 25p 4 Alfie Moon's Children in Need song on ur mob. Tell ur m8s. Txt TONE CHARITY to 8007 for nokias or POLY CHARITY for polys :zed 08701417012 profit 2 charity 
+ham	I meant as an apology from me for texting you to get me drugs at  &lt;#&gt; at night
+ham	That means from february to april i'll be getting a place to stay down there so i don't have to hustle back and forth during audition season as i have since my sister moved away from harlem.
+ham	Goin to workout lor... Muz lose e fats... 
+ham	Damn, poor zac doesn't stand a chance
+ham	No message..no responce..what happend?
+ham	I want to tel u one thing u should not mistake me k THIS IS THE MESSAGE THAT YOU SENT:)
+ham	Yeah right! I'll bring my tape measure fri!
+ham	Still chance there. If you search hard you will get it..let have a try :)
+ham	Meeting u is my work. . . Tel me when shall i do my work tomorrow
+ham	Should I head straight there or what
+spam	Get the official ENGLAND poly ringtone or colour flag on yer mobile for tonights game! Text TONE or FLAG to 84199. Optout txt ENG STOP Box39822 W111WX £1.50
+ham	Thank you princess! You are so sexy...
+ham	Oooh I got plenty of those!
+ham	Hui xin is in da lib.
+ham	Its a big difference.  &lt;#&gt;  versus  &lt;#&gt;  every  &lt;#&gt; hrs
+ham	It's not that you make me cry. It's just that when all our stuff happens on top of everything else, it pushes me over the edge. You don't underdtand how often i cry over my sorry, sorry life.
+ham	"ME 2 BABE I FEEL THE SAME LETS JUST 4GET ABOUT IT+BOTH TRY +CHEER UP+NOT FIT SOO MUCHXXLOVE U LOCAXX"
+ham	You know what hook up means right?
+spam	Customer service announcement. We recently tried to make a delivery to you but were unable to do so, please call 07090298926 to re-schedule. Ref:9307622
+ham	Wat's da model num of ur phone?
+ham	He's really into skateboarding now despite the fact that he gets thrown off of it and winds up with bandages and shit all over his arms every five minutes
+spam	You can stop further club tones by replying "STOP MIX" See my-tone.com/enjoy. html for terms. Club tones cost GBP4.50/week. MFL, PO Box 1146 MK45 2WT (2/3)
+ham	My house here e sky quite dark liao... If raining then got excuse not 2 run already rite... Hee...
+ham	Sorry, left phone upstairs. OK, might be hectic but would be all my birds with one fell swoop. It's a date.
+ham	* Thought I didn't see you.
+spam	wamma get laid?want real doggin locations sent direct to your mobile? join the UKs largest dogging network. txt dogs to 69696 now!nyt. ec2a. 3lp £1.50/msg.
+ham	Carlos says we can pick up from him later so yeah we're set
+ham	Hey babe, my friend had to cancel, still up for a visit ?
+ham	As per your request 'Maangalyam (Alaipayuthe)' has been set as your callertune for all Callers. Press *9 to copy your friends Callertune
+ham	Hmm ill have to think about it... ok you're forgiven! =D
+ham	We are hoping to get away by 7, from Langport. You still up for town tonight?
+ham	Want to send me a virtual hug?... I need one
+ham	Probably not, still going over some stuff here
+ham	It has issues right now. Ill fix for her by tomorrow.
+ham	Why i come in between you people
+ham	Senthil group company Apnt 5pm.
+ham	Oh really?? Did you make it on air? What's your talent?
+ham	Studying. But i.ll be free next weekend.
+ham	R u here yet? I'm wearing blue shirt n black pants.
+ham	Wait.i will come out.. &lt;#&gt;  min:)
+ham	I will reach ur home in  &lt;#&gt;  minutes
+ham	Well then you have a great weekend!
+ham	What are you doing in langport? Sorry, but I'll probably be in bed by 9pm. It sucks being ill at xmas! When do you and go2sri lanka? 
+ham	Frnd s not juz a word.....not merely a relationship.....its a silent promise which says ... " I will be with YOU " Wherevr.. Whenevr.. Forevr... Gudnyt dear..
+ham	Huh? 6 also cannot? Then only how many mistakes?
+ham	Ha... U jus ate honey ar? So sweet...
+ham	I'm turning off my phone. My moms telling everyone I have cancer. And my sister won't stop calling. It hurts to talk. Can't put up with it. See u when u get home. Love u
+ham	Honey ? Sweetheart ? Darling ? Sexy buns ? Sugar plum ? Loverboy ? I miss you, boytoy ... *smacks your ass* Did you go to the gym too ?
+ham	Thanks for loving me so. You rock
+ham	Yeah imma come over cause jay wants to do some drugs
+ham	Ok thanx... Take care then...
+ham	Yup. Thk of u oso boring wat.
+ham	 came to look at the flat, seems ok, in his 50s? * Is away alot wiv work. Got woman coming at 6.30 too.
+ham	Moji just informed me that you saved our lives. Thanks.
+spam	You have won a Nokia 7250i. This is what you get when you win our FREE auction. To take part send Nokia to 86021 now. HG/Suite342/2Lands Row/W1JHL 16+
+ham	Whos this am in class:-)
+ham	Hey r ü still online? I've finished the formatting...
+ham	Great! So what attracts you to the brothas?
+spam	Promotion Number: 8714714 - UR awarded a City Break and could WIN a £200 Summer Shopping spree every WK. Txt STORE to 88039 . SkilGme. TsCs087147403231Winawk!Age16 £1.50perWKsub
+ham	Stupid.its not possible
+ham	I cant pick the phone right now. Pls send a message
+ham	LOL what happens in Vegas stays in vegas
+ham	Hello, hello, hi lou sorry it took so long 2 reply- I left mobile at friends in Lancaster, just got it bak Neway im sorry I couldn’t make ur b’day 2 hun!
+ham	When did i use soc... I use it only at home... Ü dunno how 2 type it in word ar...
+ham	Dad says hurry the hell up
+ham	Wake me up at  &lt;#&gt;  am morning:)
+ham	I get out of class in bsn in like  &lt;#&gt;  minutes, you know where advising is?
+ham	Great! I shoot big loads so get ready!
+ham	I'll meet you in the lobby
+ham	You still coming tonight?
+ham	What happen dear tell me
+ham	Sir, i am waiting for your call, once free please call me.
+ham	No i am not having not any movies in my laptop
+ham	I was about to do it when i texted. I finished a long time ago and showered and er'ything!
+ham	Ok im not sure what time i finish tomorrow but i wanna spend the evening with you cos that would be vewy vewy lubly! Love me xxx
+ham	Hello, As per request from  &lt;#&gt;  Rs.5 has been transfered to you
+ham	I am in tirupur.  call you da.
+spam	You are a winner you have been specially selected to receive £1000 cash or a £2000 award. Speak to a live operator to claim call 087147123779am-7pm. Cost 10p
+ham	S:)but he had some luck.2 catches put down:)
+ham	How i noe... Did ü specify da domain as nusstu... Ü still in sch...
+ham	Oh...i asked for fun. Haha...take care. ü
+ham	Shall i get my pouch?
+ham	Hey loverboy! I love you !! I had to tell ... I look at your picture and ache to feel you between my legs ... Fuck I want you ... I need you ... I crave you .
+ham	How is my boy? No sweet words left for me this morning ... *sighs* ... How goes you day, my love ? Did you start your studying?
+ham	Kent vale lor... Ü wait 4 me there ar?
+ham	Ok. Very good. Its all about making that money.
+ham	Reading gud habit.. Nan bari hudgi yorge pataistha ertini kano:-)
+ham	Aight do you still want to get money
+spam	Free Top ringtone -sub to weekly ringtone-get 1st week free-send SUBPOLY to 81618-?3 per week-stop sms-08718727870
+ham	Ok.ok ok..then..whats ur todays plan
+ham	ARE YOU IN TOWN? THIS IS V. IMPORTANT
+ham	Sorry pa, i dont knw who ru pa?
+ham	Wat u doing there?
+ham	If i not meeting ü all rite then i'll go home lor. If ü dun feel like comin it's ok.
+ham	Oh, i will get paid. The most outstanding one is for a commercial i did for Hasbro...in AUGUST! They made us jump through so many hoops to get paid. Still not.
+ham	I am late,so call you tomorrow morning.take care sweet dreams....u and me...ummifying...bye.
+ham	Networking technical support associate.
+ham	I'm gonna rip out my uterus.
+ham	Cool. Do you like swimming? I have a pool and jacuzzi at my house.
+spam	Thanks for your ringtone order, reference number X49. Your mobile will be charged 4.50. Should your tone not arrive please call customer services 09065989182. From: [colour=red]text[/colour]TXTstar
+ham	Yeah why not, is the gang all ready
+ham	Blank is Blank. But wat is blank? Lol
+ham	I'm in a movie... Collect car oredi...
+ham	We left already we at orchard now.
+spam	Hi there, 2nights ur lucky night! Uve been invited 2 XCHAT, the Uks wildest chat! Txt CHAT to 86688 now! 150p/MsgrcvdHG/Suite342/2Lands/Row/W1J6HL LDN 18yrs
+ham	Nothing spl..wat abt u and whr ru?
+ham	No chikku nt yet.. Ya i'm free
+ham	Aldrine, rakhesh ex RTM here.pls call.urgent.
+ham	The search 4 happiness is 1 of d main sources of unhappiness! Accept life the way it comes! U will find happiness in every moment u live.
+ham	I'm at home. Please call
+ham	I guess you could be as good an excuse as any, lol.
+ham	Isn't frnd a necesity in life? imagine urself witout a frnd.. hw'd u feel at ur colleg? wat'll u do wth ur cell? wat abt functions? thnk abt events espe'll cared, missed &amp; irritated u? 4wrd it to all those dear-loving frnds wthout whom u cant live.. I jst did it.. Takecare..:) GOODMORNING
+ham	Gud mrng dear hav a nice day
+ham	Old Orchard near univ. How about you?
+ham	4 tacos + 1 rajas burrito, right?
+ham	It‘s £6 to get in, is that ok?
+ham	Hows the street where the end of library walk is?
+ham	Plz note: if anyone calling from a mobile Co. &amp; asks u to type # &lt;#&gt;  or # &lt;#&gt; . Do not do so. Disconnect the call,coz it iz an attempt of 'terrorist' to make use of the sim card no. Itz confirmd by nokia n motorola n has been verified by CNN IBN.
+ham	We stopped to get ice cream and will go back after
+ham	Did you stitch his trouser
+ham	No da. . Vijay going to talk in jaya tv
+spam	2/2 146tf150p
+ham	Hey i'm bored... So i'm thinking of u... So wat r u doing?
+ham	Nah, Wednesday. When should I bring the mini cheetos bag over?
+ham	Nobody names their penis a girls name this story doesn't add up at all
+ham	Aight, let me know when you're gonna be around usf
+ham	I'm not. She lip synced with shangela.
+ham	Ü neva tell me how i noe... I'm not at home in da aft wat... 
+ham	A bit of Ur smile is my hppnss, a drop of Ur tear is my sorrow, a part of Ur heart is my life, a heart like mine wil care for U, forevr as my GOODFRIEND
+spam	Dear Voucher Holder 2 claim your 1st class airport lounge passes when using Your holiday voucher call 08704439680. When booking quote 1st class x 2
+ham	Buzz! Hey, my Love ! I think of you and hope your day goes well. Did you sleep in ? I miss you babe. I long for the moment we are together again*loving smile*
+ham	Haha... Sounds crazy, dunno can tahan anot...
+ham	Why are u up so early?
+ham	Ya that one is slow as poo
+spam	Bloomberg -Message center +447797706009 Why wait? Apply for your future http://careers. bloomberg.com
+ham	"Im on gloucesterroad what are uup to later?"
+ham	Yes:)here tv is always available in work place..
+spam	YES! The only place in town to meet exciting adult singles is now in the UK. Txt CHAT to 86688 now! 150p/Msg.
+ham	Lol no ouch but wish i'd stayed out a bit longer
+ham	GOD ASKED, "What is forgiveness?" A little child gave lovely reply, "It is d wonderful fruit that a tree gives when it is being hurt by a stone.. Good night......
+ham	We'll join the  &lt;#&gt;  bus
+ham	Was just about to ask. Will keep this one. Maybe that's why you didn't get all the messages we sent you on glo
+spam	FREE for 1st week! No1 Nokia tone 4 ur mob every week just txt NOKIA to 8007 Get txting and tell ur mates www.getzed.co.uk POBox 36504 W45WQ norm150p/tone 16+
+ham	K.i will send in  &lt;#&gt;  min:)
+ham	Would me smoking you out help us work through this difficult time
+spam	Someone U know has asked our dating service 2 contact you! Cant guess who? CALL 09058095107 NOW all will be revealed. POBox 7, S3XY 150p 
+ham	Yes.mum lookin strong:)
+ham	Sir Goodmorning, Once free call me.
+ham	Where are you call me.
+ham	Was gr8 to see that message. So when r u leaving? Congrats dear. What school and wat r ur plans.
+ham	Love it! The girls at the office may wonder why you are smiling but sore...
+ham	Hi, wlcome back, did wonder if you got eaten by a lion or something, nothing much
+ham	Does uncle timi help in clearing cars
+ham	I came hostel. I m going to sleep. Plz call me up before class. Hrishi.
+ham	Ok... But bag again..
+ham	Hi! You just spoke to MANEESHA V. We'd like to know if you were satisfied with the experience. Reply Toll Free with Yes or No.
+ham	Ok lor. Msg me b4 u call.
+spam	Mila, age23, blonde, new in UK. I look sex with UK guys. if u like fun with me. Text MTALK to 69866.18 . 30pp/txt 1st 5free. £1.50 increments. Help08718728876
+ham	Once a fishrman woke early in d mrng. It was very dark. He waited a while &amp; found a sack ful of stones. He strtd throwin thm in2 d sea 2 pass time. Atlast he had jus 1stone, sun rose up &amp; he found out tht those r nt stones, those were diamonds. Moral:"Dont wake up early in d mrng'' GOOD night
+spam	Claim a 200 shopping spree, just call 08717895698 now! Have you won! MobStoreQuiz10ppm
+ham	Then ur physics get a-?
+ham	Dear friends, sorry for the late information. Today is the birthday of our loving Ar.Praveesh. for more details log on to face book and see. Its his number + &lt;#&gt; . Dont miss a delicious treat.
+ham	How r ü going to send it to me?
+ham	Can you do online transaction?
+ham	Dear got train and seat mine lower seat
+ham	Let me know if you need anything else. Salad or desert or something... How many beers shall i get?
+ham	Wat r u doing?
+ham	WHORE YOU ARE UNBELIEVABLE.
+spam	Want to funk up ur fone with a weekly new tone reply TONES2U 2 this text. www.ringtones.co.uk, the original n best. Tones 3GBP network operator rates apply
+ham	Are you sure you don't mean "get here, we made you hold all the weed"
+ham	I love you !!! You know? Can you feel it? Does it make your belly warm? I wish it does, my love ... I shall meet you in your dreams, Ahmad ... *adoring kiss*
+spam	Twinks, bears, scallies, skins and jocks are calling now. Don't miss the weekend's fun. Call 08712466669 at 10p/min. 2 stop texts call 08712460324(nat rate)
+ham	Love it! I want to flood that pretty pussy with cum...
+ham	Hey are you angry with me. Reply me dr.
+ham	Short But Cute: "Be a good person, but dont try to prove it.." .Gud noon....
+ham	Also remember the beads don't come off. Ever.
+ham	They have a thread on the wishlist section of the forums where ppl post nitro requests. Start from the last page and collect from the bottom up.
+ham	For The First Time In The History 'Need' 'Comfort' And 'Luxury' Are Sold At Same Price In India..!! Onion-Rs. &lt;#&gt;  Petrol-Rs. &lt;#&gt;  Beer-Rs. &lt;#&gt;  SHESIL  &lt;#&gt;
+ham	Feb  &lt;#&gt;  is "I LOVE U" day. Send dis to all ur "VALUED FRNDS" evn me. If 3 comes back u'll gt married d person u luv! If u ignore dis u will lose ur luv 4 Evr
+ham	Actually nvm, got hella cash, we still on for  &lt;#&gt; ish?
+spam	We tried to contact you re your reply to our offer of a Video Handset? 750 anytime any networks mins? UNLIMITED TEXT? Camcorder? Reply or call 08000930705 NOW
+ham	It's ok, at least armand's still around
+ham	No da. I am happy that we sit together na
+ham	Yup song bro. No creative. Neva test quality. He said check review online.
+ham	No dude, its not fake..my frnds got money, thts y i'm reffering u..if u member wit my mail link, u vl be credited  &lt;#&gt; rs and il be getiing  &lt;#&gt; rs..i can draw my acc wen it is  &lt;#&gt; rs..
+ham	Dude while were makin those weirdy brownies my sister made awesome cookies. I took pics.
+spam	URGENT! We are trying to contact you. Last weekends draw shows that you have won a £900 prize GUARANTEED. Call 09061701851. Claim code K61. Valid 12hours only
+ham	Pls dont restrict her from eating anythin she likes for the next two days.
+ham	Mm you ask him to come its enough :-)
+ham	At the funeral home with Audrey and dad
+ham	Aight, can you text me the address?
+ham	Excellent! Wish we were together right now!
+ham	Yep then is fine 7.30 or 8.30 for ice age.
+ham	Pls i wont belive god.not only jesus.
+ham	Can. Dunno wat to get 4 her...
+ham	Not yet chikku..k, then wat abt tht guy did he stopped irritating or msging to u..
+ham	How long does it take to get it.
+ham	This is my number by vivek..
+spam	74355 XMAS iscoming & ur awarded either £500 CD gift vouchers & free entry 2 r £100 weekly draw txt MUSIC to 87066 TnC
+ham	sorry brah, just finished the last of my exams, what up
+ham	I got arrested for possession at, I shit you not,  &lt;TIME&gt;  pm
+ham	You are right though. I can't give you the space you want and need. This is really starting to become an issue. I was going to suggest setting a definite move out--if i'm still there-- after greece. But maybe you are ready and should do it now.
+ham	Just normal only here :)
+ham	Please protect yourself from e-threats. SIB never asks for sensitive information like Passwords,ATM/SMS PIN thru email. Never share your password with anybody.
+ham	I miss you so much I'm so desparate I have recorded the message you left for me the other day and listen to it just to hear the sound of your voice. I love you
+ham	Hi. I'm always online on yahoo and would like to chat with you someday
+ham	Goodmorning,my grandfather expired..so am on leave today.
+spam	Congratulations U can claim 2 VIP row A Tickets 2 C Blu in concert in November or Blu gift guaranteed Call 09061104276 to claim TS&Cs www.smsco.net cost£3.75max 
+ham	Where are you ? What are you doing ? Are yuou working on getting the pc to your mom's ? Did you find a spot that it would work ? I need you
+ham	Sure, I'll see if I can come by in a bit
+ham	I agree. So i can stop thinkin about ipad. Can you please ask macho the same question.
+ham	Let's pool our money together and buy a bunch of lotto tickets. If we win I get &lt;#&gt; % u get &lt;#&gt; %. Deal?
+ham	Ok.
+ham	I had askd u a question some hours before. Its answer
+ham	Watching tv lor. Nice one then i like lor.
+ham	I'm thinking that chennai forgot to come for auction..
+ham	Then ü come n pick me at 530 ar?
+ham	Early bird! Any purchases yet?
+ham	Went to pay rent. So i had to go to the bank to authorise the payment.
+ham	Erm … ill pick you up at about 6.45pm. That'll give enough time to get there, park and that.
+ham	HEY MATE! HOWS U HONEY?DID U AVE GOOD HOLIDAY? GIMMI DE GOSS!x
+ham	Howz pain.it will come down today.do as i said ystrday.ice and medicine.
+ham	chile, please! It's only a  &lt;DECIMAL&gt;  hour drive for me. I come down all the time and will be subletting feb-april for audition season.
+ham	Yes ammae....life takes lot of turns you can only sit and try to hold the steering...
+ham	Yeah that's what I thought, lemme know if anything's goin on later
+ham	Mmmm.... I cant wait to lick it!
+ham	Pls go there today  &lt;#&gt; . I dont want any excuses
+spam	Fantasy Football is back on your TV. Go to Sky Gamestar on Sky Active and play £250k Dream Team. Scoring starts on Saturday, so register now!SKY OPT OUT to 88088
+ham	Can you plz tell me the ans. BSLVYL sent via fullonsms.com
+ham	U in town alone?
+ham	I to am looking forward to all the sex cuddling.. Only two more sleeps 
+ham	We have all rounder:)so not required:)
+ham	No, its true..k,Do u knw dis no. &lt;#&gt; ?
+ham	Dont worry, 1 day very big lambu ji vl come..til then enjoy batchlor party:-)
+ham	oh ya... Got hip hop open. Haha i was thinking can go for jazz then zoom to cine... Actually tonight i'm free leh... And there's a kb lesson tonight
+spam	Free msg: Single? Find a partner in your area! 1000s of real people are waiting to chat now!Send CHAT to 62220Cncl send STOPCS 08717890890£1.50 per msg
+ham	I'm ok. Will do my part tomorrow
+ham	No! But we found a diff farm shop to buy some cheese. On way back now, can i call in?
+ham	R u still working now?
+spam	Win the newest “Harry Potter and the Order of the Phoenix (Book 5) reply HARRY, answer 5 questions - chance to be the first among readers!
+ham	Yep. I do like the pink furniture tho.
+spam	Free Msg: Ringtone!From: http://tms. widelive.com/index. wml?id=1b6a5ecef91ff9*37819&first=true18:0430-JUL-05
+ham	Customer place, i wil cal u sir.
+spam	Oh my god! I've found your number again! I'm so glad, text me back xafter this msgs cst std ntwk chg £1.50
+ham	A pure hearted person can have a wonderful smile that makes even his/her enemies to feel guilty for being an enemy.. So catch the world with your smile..:) GOODMORNING &amp; HAVE A SMILEY SUNDAY..:)
+ham	THAT’S ALRITE GIRL, U KNOW GAIL IS NEVA WRONG!!TAKE CARE SWEET AND DON’T WORRY.C U L8TR HUN!LOVE Yaxxx
+ham	Theoretically yeah, he could be able to come
+ham	Alright we're hooked up, where you guys at
+ham	not that I know of, most people up here are still out of town
+ham	No let me do the math. Your not good at it.
+ham	Oh ok wait 4 me there... My lect havent finish
+ham	Yeah my usual guy's out of town but there're definitely people around I know
+ham	I am joining today formally.Pls keep praying.will talk later.
+ham	Happy or sad , one thing about past is- "Its no more" GOOD MORNING :-):-).
+ham	No. Did you multimedia message them or e-mail?
+ham	Okie but i scared u say i fat... Then u dun wan me already...
+ham	did u get that message
+ham	Sorry sir, i will call you tomorrow.  senthil.hsbc
+ham	What you need. You have a person to give na.
+ham	She left it very vague. She just said she would inform the person in accounting about the delayed rent and that i should discuss with the housing agency about my renting another place. But checking online now and all places around usc are  &lt;#&gt;  and up
+ham	Hi juan. Im coming home on fri hey. Of course i expect a welcome party and lots of presents. Ill phone u when i get back. Loads of love nicky x x x x x x x x x
+ham	Can you plz tell me the ans. BSLVYL sent via fullonsms.com
+ham	Short But Cute: "Be a good person, but dont try to prove it.." .Gud noon....
+ham	Gumby's has a special where a  &lt;#&gt; " cheese pizza is $2 so I know what we're doin tonight
+spam	A link to your picture has been sent. You can also use http://alto18.co.uk/wave/wave.asp?o=44345
+ham	Like a personal sized or what
+ham	Same, I'm at my great aunts anniversary party in tarpon springs
+ham	Cab is available.they pick up and drop at door steps.
+ham	ok....take care.umma to you too...
+ham	Unlimited texts. Limited minutes.
+spam	Double Mins & 1000 txts on Orange tariffs. Latest Motorola, SonyEricsson & Nokia with Bluetooth FREE! Call MobileUpd8 on 08000839402 or call2optout/HF8
+ham	No problem. We will be spending a lot of quality time together...
+spam	URGENT This is our 2nd attempt to contact U. Your £900 prize from YESTERDAY is still awaiting collection. To claim CALL NOW 09061702893. ACL03530150PM
+ham	Have you heard from this week?
+spam	Dear Dave this is your final notice to collect your 4* Tenerife Holiday or #5000 CASH award! Call 09061743806 from landline. TCs SAE Box326 CW25WX 150ppm
+ham	Yes. Last  practice
+spam	tells u 2 call 09066358152 to claim £5000 prize. U have 2 enter all ur mobile & personal details @ the prompts. Careful!
+ham	No. Thank you. You've been wonderful
+ham	Otherwise had part time job na-tuition..
+ham	Ü mean it's confirmed... I tot they juz say oni... Ok then... 
+ham	Okie
+ham	That depends. How would you like to be treated? :)
+ham	Right on brah, see you later
+ham	Waiting in e car 4 my mum lor. U leh? Reach home already?
+spam	Your 2004 account for 07XXXXXXXXX shows 786 unredeemed points. To claim call 08719181259 Identifier code: XXXXX Expires 26.03.05
+spam	Do you want a new video handset? 750 anytime any network mins? Half Price Line Rental? Camcorder? Reply or call 08000930705 for delivery tomorrow
+ham	Went fast asleep dear.take care.
+ham	No that just means you have a fat head
+ham	Sounds like a plan! Cardiff is still here and still cold! I'm sitting on the radiator!
+ham	Serious? What like proper tongued her
+ham	She.s good. She was wondering if you wont say hi but she.s smiling now. So how are you coping with the long distance
+ham	How i noe... She's in da car now... Later then c lar... I'm wearing shorts...
+spam	You have an important customer service announcement. Call FREEPHONE 0800 542 0825 now!
+ham	Yeah whatever lol
+ham	Today is ACCEPT DAY..U Accept me as? Brother Sister Lover Dear1 Best1 Clos1 Lvblefrnd Jstfrnd Cutefrnd Lifpartnr Belovd Swtheart Bstfrnd No rply means enemy
+ham	Ard 530 lor. I ok then message ü lor.
+ham	Ok. C u then.
+ham	Eh ur laptop got no stock lei... He say mon muz come again to take a look c got a not...
+ham	No need to ke qi... Ü too bored izzit y suddenly thk of this...
+ham	I wish! I don't think its gonna snow that much. But it will be more than those flurries we usually get that melt before they hit the ground. Eek! We haven't had snow since &lt;#&gt; before I was even born!
+spam	FREE>Ringtone! Reply REAL or POLY eg REAL1 1. PushButton 2. DontCha 3. BabyGoodbye 4. GoldDigger 5. WeBeBurnin 1st tone FREE and 6 more when u join for £3/wk
+ham	Do 1 thing! Change that sentence into: "Because i want 2 concentrate in my educational career im leaving here.."
+ham	Oh really? perform, write a paper, go to a movie AND be home by midnight, huh?
+ham	Okay lor... Will they still let us go a not ah? Coz they will not know until later. We drop our cards into the box right?
+ham	How? Izzit still raining?
+ham	As if i wasn't having enough trouble sleeping.
+ham	I havent add ü yet right.. 
+ham	Lol ... I really need to remember to eat when I'm drinking but I do appreciate you keeping me company that night babe *smiles*
+ham	Babe ? I lost you ... Will you try rebooting ?
+ham	Yes. Nigh you cant aha.
+ham	I thk ü gotta go home by urself. Cos i'll b going out shopping 4 my frens present. 
+ham	Nooooooo I'm gonna be bored to death all day. Cable and internet outage.
+ham	Sos! Any amount i can get pls.
+ham	Playin space poker, u?
+ham	How come guoyang go n tell her? Then u told her?
+ham	You need to get up. Now.
+ham	They r giving a second chance to rahul dengra.
+ham	Yeah, in fact he just asked if we needed anything like an hour ago. When and how much?
+ham	WHEN THE FIRST STRIKE IS A RED ONE. THE BIRD + ANTELOPE BEGIN TOPLAY IN THE FIELDOF SELFINDEPENDENCE BELIEVE THIS + THE FLOWER OF CONTENTION WILL GROW.RANDOM!
+ham	Y ü wan to go there? C doctor?
+ham	Does daddy have a bb now.
+spam	Free Msg: get Gnarls Barkleys "Crazy" ringtone TOTALLY FREE just reply GO to this message right now!
+ham	She's borderline but yeah whatever.
+ham	I got a call from a landline number. . . I am asked to come to anna nagar . . . I will go in the afternoon
+ham	Until 545 lor... Ya, can go 4 dinner together...
+ham	I will be gentle princess! We will make sweet gentle love...
+ham	How u doin baby girl ?? hope u are okay every time I call ure phone is off! I miss u get in touch
+ham	Sorry, went to bed early, nightnight
+ham	I like to think there's always the possibility of being in a pub later.
+ham	HMM yeah if your not too grooved out! And im looking forward to my pound special :)
+ham	I got to video tape pple type in message lor. U so free wan 2 help me? Hee... Cos i noe u wan 2 watch infernal affairs so ask u along. Asking shuhui oso.
+ham	Hi dude hw r u da realy mising u today
+ham	Me hungry buy some food good lei... But mum n yun dun wan juz buy a little bit... 
+spam	Refused a loan? Secured or Unsecured? Can't get credit? Call free now 0800 195 6669 or text back 'help' & we will!
+ham	I probably won't eat at all today. I think I'm gonna pop. How was your weekend? Did u miss me?
+ham	I knew it... U slept v late yest? Wake up so late...
+ham	Haha... dont be angry with yourself... Take it as a practice for the real thing. =) 
+ham	Where is that one day training:-)
+ham	So i could kiss and feel you next to me...
+ham	Have a nice day my dear.
+ham	I sent lanre fakeye's Eckankar details to the mail box
+ham	Your dad is back in ph?
+spam	You have been specially selected to receive a "3000 award! Call 08712402050 BEFORE the lines close. Cost 10ppm. 16+. T&Cs apply. AG Promo
+ham	If you ask her or she say any please message.
+ham	If e timing can, then i go w u lor...
+ham	Love you aathi..love u lot..
+ham	I was just callin to say hi. Take care bruv!
+spam	YOU HAVE WON! As a valued Vodafone customer our computer has picked YOU to win a £150 prize. To collect is easy. Just call 09061743386
+ham	Did u turn on the heater? The heater was on and set to &lt;#&gt; degrees.
+ham	Thanks for your message. I really appreciate your sacrifice. I'm not sure of the process of direct pay but will find out on my way back from the test tomorrow. I'm in class now. Do have a wonderful day.
+ham	That's the trouble with classes that go well - you're due a dodgey one … Expecting mine tomo! See you for recovery, same time, same place 
+spam	Free video camera phones with Half Price line rental for 12 mths and 500 cross ntwk mins 100 txts. Call MobileUpd8 08001950382 or Call2OptOut/674&
+ham	WOT U UP 2 J?
+ham	Night night, see you tomorrow
+ham	Roger that. We‘re probably going to rem in about 20
+ham	do u think that any girl will propose u today by seing ur bloody funky shit fucking face...............asssssholeeee................
+ham	I wish u were here. I feel so alone
+spam	Great NEW Offer - DOUBLE Mins & DOUBLE Txt on best Orange tariffs AND get latest camera phones 4 FREE! Call MobileUpd8 free on 08000839402 NOW! or 2stoptxt T&Cs
+ham	Reason is if the team budget is available at last they buy the unsold players for at base rate..
+ham	CERI U REBEL! SWEET DREAMZ ME LITTLE BUDDY!! C YA 2MORO! WHO NEEDS BLOKES
+spam	ringtoneking 84484
+ham	Huh i cant thk of more oredi how many pages do we have?
+ham	His frens go then he in lor. Not alone wif my mum n sis lor.
+ham	Nationwide auto centre (or something like that) on Newport road. I liked them there
+ham	Hey, I missed you tm of last night as my phone was on the charge ... *smiles* ... I am meeting a friend shortly
+ham	Whatever, juliana. Do whatever you want.
+ham	Friendship is not a game to play, It is not a word to say, It doesn\'t start on March and ends on May, It is tomorrow, yesterday, today and e
+spam	Ringtone Club: Gr8 new polys direct to your mobile every week !
+ham	Hello. Sort of out in town already. That . So dont rush home, I am eating nachos. Will let you know eta.
+ham	Ok lor. Anyway i thk we cant get tickets now cos like quite late already. U wan 2 go look 4 ur frens a not? Darren is wif them now...
+spam	(Bank of Granite issues Strong-Buy) EXPLOSIVE PICK FOR OUR MEMBERS *****UP OVER 300% *********** Nasdaq Symbol CDGT That is a $5.00 per..
+ham	I am on the way to ur home
+ham	Dizzamn, aight I'll ask my suitemates when I get back
+ham	Nimbomsons. Yep phone knows that one. Obviously, cos thats a real word
+ham	I love to cuddle! I want to hold you in my strong arms right now...
+ham	R u in this continent?
+ham	We'll you pay over like  &lt;#&gt; yrs so its not too difficult
+spam	Bored housewives! Chat n date now! 0871750.77.11! BT-national rate 10p/min only from landlines!
+spam	We tried to call you re your reply to our sms for a video mobile 750 mins UNLIMITED TEXT free camcorder Reply or call now 08000930705 Del Thurs
+ham	K...k...when will you give treat?
+spam	This is the 2nd time we have tried to contact u. U have won the £400 prize. 2 claim is easy, just call 087104711148 NOW! Only 10p per minute. BT-national-rate
+ham	He's just gonna worry for nothing. And he won't give you money its no use.
+ham	Did you get any gift? This year i didnt get anything. So bad
+ham	somewhere out there beneath the pale moon light someone think in of u some where out there where dreams come true... goodnite &amp; sweet dreams
+ham	Well there's a pattern emerging of my friends telling me to drive up and come smoke with them and then telling me that I'm a weed fiend/make them smoke too much/impede their doing other things so you see how I'm hesitant
+ham	, ow u dey.i paid 60,400thousad.i told  u would call . 
+ham	IM FINE BABES AINT BEEN UP 2 MUCH THO! SAW SCARY MOVIE YEST ITS QUITE FUNNY! WANT 2MRW AFTERNOON? AT TOWN OR MALL OR SUMTHIN?xx
+ham	I'm reaching home in 5 min.
+ham	Forgot you were working today! Wanna chat, but things are ok so drop me a text when you're free / bored etc and i'll ring. Hope all is well, nose essay and all xx
+ham	Ha... Then we must walk to everywhere... Cannot take tram. My cousin said can walk to vic market from our hotel 
+spam	Wan2 win a Meet+Greet with Westlife 4 U or a m8? They are currently on what tour? 1)Unbreakable, 2)Untamed, 3)Unkempt. Text 1,2 or 3 to 83049. Cost 50p +std text
+spam	Please call our customer service representative on FREEPHONE 0808 145 4742 between 9am-11pm as you have WON a guaranteed £1000 cash or £5000 prize!
+ham	Discussed with your mother ah?
+ham	Ok.
+ham	Sorry, I can't text &amp; drive coherently, see you in twenty
+spam	You will be receiving this week's Triple Echo ringtone shortly. Enjoy it!
+ham	In which place i can get rooms cheap:-)
+ham	Eek that's a lot of time especially since American Pie is like 8 minutes long. I can't stop singing it.
+ham	"GRAN ONLYFOUND OUT AFEW DAYS AGO.CUSOON HONI"
+spam	U've been selected to stay in 1 of 250 top British hotels - FOR NOTHING! Holiday valued at £350! Dial 08712300220 to claim - National Rate Call. Bx526, SW73SS
+ham	University of southern california.
+ham	We have to pick rayan macleran there.
+ham	U gd lor go shopping i got stuff to do. U wan 2 watch infernal affairs a not? Come lar...
+ham	Well. Balls. Time to make calls
+ham	Wat time ü wan today?
+ham	 &lt;#&gt;  in mca. But not conform.
+ham	Oh ok.. Wat's ur email?
+ham	Yes, princess. Are you going to make me moan?
+ham	Lol its ok I didn't remember til last nite
+ham	[…] anyway, many good evenings to u! s
+ham	Cool, I'll text you in a few
+ham	Sorry vikky, i'm Watching olave mandara movie kano in trishul theatre wit my frnds..
+ham	I'm very happy for you babe ! Woo hoo party on dude!
+ham	I am taking you for italian food. How about a pretty dress with no panties? :)
+ham	Wot u up 2? Thout u were gonna call me!! Txt bak luv K
+spam	YOU ARE CHOSEN TO RECEIVE A £350 AWARD! Pls call claim number 09066364311 to collect your award which you are selected to receive as a valued mobile customer.
+ham	How are you holding up?
+ham	Dont flatter yourself... Tell that man of mine two pints of carlin in ten minutes please.... 
+ham	Hope you are not scared!
+ham	I cant pick the phone right now. Pls send a message
+ham	I'm at home n ready...
+spam	Please call our customer service representative on FREEPHONE 0808 145 4742 between 9am-11pm as you have WON a guaranteed £1000 cash or £5000 prize!
+ham	What time do u get out?
+ham	I am literally in bed and have been up for like  &lt;#&gt;  hours
+ham	Yes, my reg is  Ciao!
+ham	If You mean the website. Yes.
+spam	Win a £1000 cash prize or a prize worth £5000
+spam	Thanks for your ringtone order, reference number X49.Your mobile will be charged 4.50. Should your tone not arrive please call customer services 09065989182
+ham	Lol or I could just starve and lose a pound by the end of the day.
+ham	Yeah that's the impression I got
+ham	Ok ok take care. I can understand.
+ham	Motivate Behind every darkness, there is a shining light waiting for you to find it... Behind every best friend, there is always trust and love... BSLVYL
+ham	Ya ok, then had dinner?
+ham	I was slept that time.you there?
+ham	dont make ne plans for nxt wknd coz she wants us to come down then ok
+ham	When is school starting. Where will you stay. What's the weather like. And the food. Do you have a social support system like friends in the school. All these things are important.
+ham	Ha ha nan yalrigu heltini..Iyo kothi chikku, u shared many things wit me..so far i didn't told any body and even uttered a word abt u.. If ur trusting me so much how can i tell these to others.. Plz nxt time dont use those words to me..ok, chikku:-);-)B-)
+ham	Noice. Text me when you're here
+ham	Hi di is yijue we're meeting at 7 pm at esaplanade tonight.
+spam	Moby Pub Quiz.Win a £100 High Street prize if u know who the new Duchess of Cornwall will be? Txt her first name to 82277.unsub STOP £1.50 008704050406 SP
+spam	This weeks SavaMob member offers are now accessible. Just call 08709501522 for details! SavaMob, POBOX 139, LA3 2WU. Only £1.50/week. SavaMob - offers mobile!
+ham	Aight I've been set free, think you could text me blake's address? It occurs to me I'm not quite as sure what I'm doing as I thought I was
+ham	Hi dear we saw dear. We both are happy. Where you my battery is low
+ham	How are you. Its been ages. How's abj
+ham	Prof: you have passed in all the papers in this sem congrats . . . . Student: Enna kalaachutaarama..!! Prof:???? Gud mrng!
+ham	Dont kick coco when he's down
+ham	Fyi I'm gonna call you sporadically starting at like  &lt;#&gt;  bc we are not not doin this shit
+spam	You are being contacted by our Dating Service by someone you know! To find out who it is, call from your mobile or landline 09064017305 PoBox75LDNS7 
+spam	TBS/PERSOLVO. been chasing us since Sept for£38 definitely not paying now thanks to your information. We will ignore them. Kath. Manchester.
+ham	Hope you’re not having too much fun without me!! see u tomorrow love jess x
+ham	Ok i wont call or disturb any one. I know all are avoiding me. I am a burden for all
+ham	I've reached home n i bathe liao... U can call me now...
+spam	Loans for any purpose even if you have Bad Credit! Tenants Welcome. Call NoWorriesLoans.com on 08717111821
+ham	Was the actual exam harder than NBME
+ham	A lot of this sickness thing going round. Take it easy. Hope u feel better soon. Lol
+ham	God picked up a flower and dippeditinaDEW, lovingly touched itwhichturnedinto u, and the he gifted tomeandsaid,THIS FRIEND IS 4U
+spam	87077: Kick off a new season with 2wks FREE goals & news to ur mobile! Txt ur club name to 87077 eg VILLA to 87077
+ham	Hey sathya till now we dint meet not even a single time then how can i saw the situation sathya.
+ham	Gam gone after outstanding innings.
+ham	O i played smash bros  &lt;#&gt;  religiously.
+ham	Sir, good morning. Hope you had a good weekend. I called to let you know that i was able to raise  &lt;#&gt;  from my dad. He however said he would make the rest available by mid feb. This amount is still quite short and i was hoping you would help. Do have a good day. Abiola
+ham	Hurry home. Soup is DONE!
+ham	No no. I will check all rooms befor activities
+ham	Good afternoon, my love. It was good to see your words on YM and get your tm. Very smart move, my slave ... *smiles* ... I drink my coffee and await you.
+ham	Quite ok but a bit ex... U better go eat smth now else i'll feel guilty...
+spam	Orange brings you ringtones from all time Chart Heroes, with a free hit each week! Go to Ringtones & Pics on wap. To stop receiving these tips reply STOP.
+ham	Lemme know when you're here
+spam	PRIVATE! Your 2003 Account Statement for 07973788240 shows 800 un-redeemed S. I. M. points. Call 08715203649 Identifier Code: 40533 Expires 31/10/04
+ham	He needs to stop going to bed and make with the fucking dealing
+ham	How are you, my Love ? Are you with your brother ? Time to talk english with him ? *grins* Say : Hey Muhommad, Penny says hello from across the sea
+spam	We tried to call you re your reply to our sms for a video mobile 750 mins UNLIMITED TEXT + free camcorder Reply of call 08000930705 Now
+ham	Hey doc pls I want to get nice t shirt for my hubby nice fiting ones my budget is  &lt;#&gt; k help pls I will load d card abi hw,keep me posted luv. 2 mj
+ham	I remain unconvinced that this isn't an elaborate test of my willpower
+ham	"Life is nothing wen v get everything". But "life is everything wen v miss something ". Real value of people wil be realized only in their absence.... gud mrng
+ham	how are you? I miss you!
+ham	I ain't answerin no phone at what is actually a pretty reasonable hour but I'm sleepy
+ham	Hey , is * rite u put »10 evey mnth is that all?
+ham	i am going to bed now prin
+ham	I think just yourself …Thanks and see you tomo
+ham	If u dun drive then how i go 2 sch.
+ham	I not at home now lei...
+spam	GSOH? Good with SPAM the ladies?U could b a male gigolo? 2 join the uk's fastest growing mens club reply ONCALL. mjzgroup. 08714342399.2stop reply STOP. msg@£1.50rcvd
+ham	Ok then i will come to ur home after half an hour
+spam	U have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094599
+ham	Do u hav any frnd by name ashwini in ur college?
+ham	Jus finish my lunch on my way home lor... I tot u dun wan 2 stay in sch today...
+ham	K then 2marrow are you coming to class.
+spam	HOT LIVE FANTASIES call now 08707500020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870 is a national rate call
+ham	Pls send me your address sir.
+ham	I want to lick your pussy now...
+ham	Yo, you gonna still be in stock tomorrow/today? I'm trying to get a dubsack
+spam	URGENT! Your Mobile number has been awarded a <UKP>2000 prize GUARANTEED. Call 09061790125 from landline. Claim 3030. Valid 12hrs only 150ppm
+ham	I'll see, but prolly yeah
+ham	Thought we could go out for dinner. I'll treat you! Seem ok?
+ham	Where are you ? What do you do ? How can you stand to be away from me ? Doesn't your heart ache without me ? Don't you wonder of me ? Don't you crave me ?
+ham	Sorry. You never hear unless you book it. One was kinda a joke--thet were really looking for skinny white girls. The other was one line--you can only do so much on camera with that. Something like that they're casting on the look.
+ham	What you doing?how are you?
+ham	Sure thing big man. i have hockey elections at 6, shouldn‘t go on longer than an hour though
+ham	Watch lor. I saw a few swatch one i thk quite ok. Ard 116 but i need 2nd opinion leh...
+ham	Hiya do u like the hlday pics looked horrible in them so took mo out! Hows the camp Amrca thing? Speak soon Serena:)
+ham	Babe! How goes that day ? What are you up to ? I miss you already, my Love ... * loving kiss* ... I hope everything goes well.
+ham	Yunny... I'm goin to be late
+ham	Doc prescribed me morphine cause the other pain meds aren't enough. Waiting for my mom to bring it. That med should kick in fast so I'm gonna try to be on later
+ham	Cool, want me to go to kappa or should I meet you outside mu
+ham	Hey sexy buns ! Have I told you ? I adore you, loverboy. I hope you remember to thank your sister in law for those meatballs *grins* ... i love you, babe
+ham	May b approve panalam...but it should have more posts..
+spam	SPJanuary Male Sale! Hot Gay chat now cheaper, call 08709222922. National rate from 1.5p/min cheap to 7.8p/min peak! To stop texts call 08712460324 (10p/min)
+ham	Sorry, I'll call later
+ham	I dont thnk its a wrong calling between us
+ham	Me i'm not workin. Once i get job...
+ham	And by when you're done I mean now
+ham	"Its Ur luck to Love someone. Its Ur fortune to Love the one who Loves U. But, its a miracle to Love a person who can't Love anyone except U..." Gud nyt...
+ham	Hi baby ive just got back from work and i was wanting to see u allday! I hope i didnt piss u off on the phone today. If u are up give me a call xxx
+spam	FreeMsg Today's the day if you are ready! I'm horny & live in your town. I love sex fun & games! Netcollex Ltd 08700621170150p per msg reply Stop to end
+ham	Is it your yahoo boys that bring in the perf? Or legal.
+ham	No need to say anything to me. I know i am an outsider
+ham	have you ever had one foot before?
+ham	Just got to  &lt;#&gt;
+ham	Good! No, don‘t need any receipts—well done! (…) Yes, please tell . What‘s her number, i could ring her
+ham	Ever green quote ever told by Jerry in cartoon "A Person Who Irritates u Always Is the one Who Loves u Vry Much But Fails to Express It...!..!! :-) :-) gud nyt
+ham	Leave it wif me lar... Ü wan to carry meh so heavy... Is da num 98321561 familiar to ü?
+ham	Beautiful truth : Expression of the face could Be seen by everyone... But the depression of heart Could be understood only By the Loved ones.. Gud Ni8;-)
+ham	Infact happy new year. How are you where are you when are we seeing
+spam	In The Simpsons Movie released in July 2007 name the band that died at the start of the film? A-Green Day, B-Blue Day, C-Red Day. (Send A, B or C)
+ham	That's a shame! Maybe cld meet for few hrs tomo?
+ham	Lol I would but despite these cramps I like being a girl.
+ham	I can’t wait for cornwall. Hope tonight isn’t too bad as well but it’s rock night shite. Anyway i’m going for a kip now have a good night. Speak to you soon.
+ham	Pls help me tell sura that i'm expecting a battery from hont. And that if should pls send me a message about how to download movies. Thanks
+spam	Please call Amanda with regard to renewing or upgrading your current T-Mobile handset free of charge. Offer ends today. Tel 0845 021 3680 subject to T's and C's
+ham	Haven't found a way to get another app for your phone, eh ? Will you go to the net cafe ? Did you take that job? Geeee I need you babe. I crave to see you ...
+ham	I only work from mon to thurs but Sat i cant leh... Booked liao... Which other day u free?
+ham	Ü comin to fetch us oredi...
+ham	What's nannys address?
+spam	URGENT!! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TC s, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins
+ham	Haf u eaten? Wat time u wan me 2 come?
+spam	Want a new Video Phone? 750 anytime any network mins? Half price line rental free text for 3 months? Reply or call 08000930705 for free delivery
+ham	Yo, call me when you get the chance, a friend of mine wanted me to ask you about a big order
+ham	This single single answers are we fighting? Plus i said am broke and you didnt reply
+ham	It certainly puts things into perspective when something like this happens
+ham	Now got tv 2 watch meh? U no work today?
+ham	i felt so...not any conveying reason.. Ese he... What about me?
+spam	Had your mobile 11 months or more? U R entitled to Update to the latest colour mobiles with camera for Free! Call The Mobile Update Co FREE on 08002986030
+ham	How's it going? Got any exciting karaoke type activities planned? I'm debating whether to play football this eve. Feeling lazy though.
+ham	I told that am coming on wednesday.
+ham	Its ok, called mom instead have fun
+spam	Dear Voucher Holder, To claim this weeks offer, at your PC please go to http://www.wtlp.co.uk/text. Ts&Cs apply.
+ham	Well if I'm that desperate I'll just call armand again
+ham	Are you at work right now ?
+spam	Congrats! Nokia 3650 video camera phone is your Call 09066382422 Calls cost 150ppm Ave call 3mins vary from mobiles 16+ Close 300603 post BCM4284 Ldn WC1N3XX
+ham	Haven't heard anything and he's not answering my texts so I'm guessing he flaked. That said the jb is fantastic
+ham	Mmmmmm ... I love you,so much, Ahmad ... I can't wait for this year to begin as every second takes me closer to being at your side. Happy New Year, my love!!
+ham	Pls what's the full name of joke's school cos fees in university of florida seem to actually be  &lt;#&gt; k. Pls holla back
+ham	Sorry, I'll call later
+ham	Ok... But they said i've got wisdom teeth hidden inside n mayb need 2 remove.
+ham	And pls pls drink plenty plenty water
+ham	How are you doing. How's the queen. Are you going for the royal wedding
+ham	He's in lag. That's just the sad part but we keep in touch thanks to skype
+ham	Ok lor then we go tog lor...
+ham	Two teams waiting for some players
+ham	Can ü send me a copy of da report?
+ham	swhrt how u dey,hope ur ok, tot about u 2day.love n miss.take care.
+ham	Ok da, i already planned. I wil pick you.
+spam	Urgent! Please call 0906346330. Your ABTA complimentary 4* Spanish Holiday or £10,000 cash await collection SAE T&Cs BOX 47 PO19 2EZ 150ppm 18+
+ham	Sorry, I'll call later in meeting
+ham	I just really need shit before tomorrow and I know you won't be awake before like 6
+ham	I'm good. Have you registered to vote?
+ham	Hmm ok, i'll stay for like an hour cos my eye is really sore!
+ham	Dear got bus directly to calicut
+ham	Mm umma ask vava also to come tell him can play later together
+ham	Well the general price is  &lt;#&gt; /oz, let me know if/when/how much you want
+ham	Sorry, I'll call later
+ham	Each Moment in a day,has its own value-Morning brings hope,afternoon brings faith,Evening brings luv,Night brings rest,Wish u find them all today.Good Morning
+ham	&lt;#&gt;  w jetton ave if you forgot
+ham	Ok i'm coming home now.
+ham	Can not use foreign stamps in this country.
+spam	Double mins and txts 4 6months FREE Bluetooth on Orange. Available on Sony, Nokia Motorola phones. Call MobileUpd8 on 08000839402 or call2optout/N9DX
+ham	Sorry, it's a lot of friend-of-a-friend stuff, I'm just now about to talk to the actual guy who wants to buy
+spam	FREE for 1st week! No1 Nokia tone 4 ur mob every week just txt NOKIA to 8007 Get txting and tell ur mates www.getzed.co.uk POBox 36504 W45WQ norm150p/tone 16+
+spam	Want to funk up ur fone with a weekly new tone reply TONES2U 2 this text. www.ringtones.co.uk, the original n best. Tones 3GBP network operator rates apply
+spam	cmon babe, make me horny, *turn* me on! Txt me your fantasy now babe -) Im hot, sticky and need you now. All replies cost £1.50. 2 cancel send STOP
+ham	I will come tomorrow di
+ham	Wylie update: my weed dealer carlos went to freedom and had a class with lunsford
+ham	Are you happy baby ? Are you alright ? Did you take that job ? I hope your fine. I send you a kiss to make you smile from across the sea ... *kiss* *kiss*
+ham	C movie is juz last minute decision mah. Juz watch 2 lar but i tot ü not interested.
+ham	How are you enjoying this semester? Take care brother.
+spam	IMPORTANT INFORMATION 4 ORANGE USER 0796XXXXXX. TODAY IS UR LUCKY DAY!2 FIND OUT WHY LOG ONTO http://www.urawinner.com THERE'S A FANTASTIC PRIZEAWAITING YOU!
+ham	Get the door, I'm here
+ham	Lets use it next week, princess :)
+ham	Or i go home first lar ü wait 4 me lor.. I put down my stuff first..
+ham	I want kfc its Tuesday. Only buy 2 meals ONLY 2. No gravy. Only 2 Mark. 2!
+ham	No da:)he is stupid da..always sending like this:)don believe any of those message.pandy is a mental:)
+ham	Oi when you gonna ring
+spam	Missed call alert. These numbers called but left no message. 07008009200
+ham	I attended but nothing is there.
+ham	Ard 530 like dat lor. We juz meet in mrt station then ü dun haf to come out.
+ham	No dear i was sleeping :-P
+ham	Er mw im filled tuth is aight
+ham	Will be office around 4 pm. Now i am going hospital.
+ham	Actually i'm waiting for 2 weeks when they start putting ad.
+ham	Anything lor if they all go then i go lor...
+ham	U free on sat rite? U wan 2 watch infernal affairs wif me n darren n mayb xy?
+ham	Plz note: if anyone calling from a mobile Co. &amp; asks u to type # &lt;#&gt;  or # &lt;#&gt; . Do not do so. Disconnect the call,coz it iz an attempt of 'terrorist' to make use of the sim card no. Itz confirmd by nokia n motorola n has been verified by CNN IBN.
+ham	Yo you around? A friend of mine's lookin to pick up later tonight
+ham	Stupid auto correct on my phone
+ham	Double eviction this week - Spiral and Michael and good riddance to them!
+ham	"The world suffers a lot... Not because of the violence of bad people. But because of the silence of good people!", Gud night....
+ham	Ok thats cool. Its , just off either raglan rd or edward rd. Behind the cricket ground. Gimme ring when ur closeby see you tuesday.
+ham	Buy one egg for me da..please:)
+ham	Have you started in skye
+ham	Have you bookedthe hut? And also your time off? How are you by the way?
+ham	And several to you sir.
+ham	U really pig leh sleep so much. My dad wake me up at 10 smth 2 eat lunch today.
+ham	I'm at home. Please call
+ham	My love ... I hope your not doing anything drastic. Don't you dare sell your pc or your phone ...
+ham	Now only i reached home. . . I am very tired now. . I will come tomorro
+spam	FREEMSG: Our records indicate you may be entitled to 3750 pounds for the Accident you had. To claim for free reply with YES to this msg. To opt out text STOP
+spam	U can WIN £100 of Music Gift Vouchers every week starting NOW Txt the word DRAW to 87066 TsCs www.Idew.com SkillGame, 1Winaweek, age16. 150ppermessSubscription
+ham	Life style garments account no please.
+ham	Lol wtf random. Btw is that your lunch break
+ham	Sez, hows u & de arab boy? Hope u r all good give my love 2 evry1 love ya eshxxxxxxxxxxx
+ham	The LAY MAN! Just to let you know you are missed and thought off. Do have a great day. And if you can send me bimbo and ugo's numbers, ill appreciate. Safe
+ham	Detroit. The home of snow. Enjoy it.
+spam	Show ur colours! Euro 2004 2-4-1 Offer! Get an England Flag & 3Lions tone on ur phone! Click on the following service message for info!
+ham	Okie...
+ham	Aight, I'm chillin in a friend's room so text me when you're on the way
+ham	Is toshiba portege m100 gd?
+ham	Well welp is sort of a semiobscure internet thing
+spam	Text PASS to 69669 to collect your polyphonic ringtones. Normal gprs charges apply only. Enjoy your tones
+spam	accordingly. I repeat, just text the word ok on your mobile phone and send
+ham	Loosu go to hospital. De dont let it careless.
+ham	How much for an eighth?
+ham	Omg Joanna is freaking me out. She's looked thru all my friends to find photos of me. And then she's asking about stuff on my MySpace which I haven't even logged on in like a year. :/
+ham	Send ur birthdate with month and year, I will tel u ur LIFE PARTNER'S name. and the method of calculation. Reply must.
+ham	Juz now havent woke up so a bit blur blur... Can? Dad went out liao... I cant cum now oso...
+ham	How about clothes, jewelry, and trips?
+spam	Block Breaker now comes in deluxe format with new features and great graphics from T-Mobile. Buy for just £5 by replying GET BBDELUXE and take the challenge
+ham	Aah! A cuddle would be lush! I'd need lots of tea and soup before any kind of fumbling!
+spam	important information 4 orange user . today is your lucky day!2find out why log onto http://www.urawinner.com THERE'S A FANTASTIC SURPRISE AWAITING YOU!
+ham	I am late. I will be there at
+ham	Sad story of a Man - Last week was my b'day. My Wife did'nt wish me. My Parents forgot n so did my Kids . I went to work. Even my Colleagues did not wish.
+ham	Are you plans with your family set in stone ?
+ham	Pls dont forget to study
+ham	You'll never believe this but i have actually got off at taunton. Wow
+ham	Den only weekdays got special price... Haiz... Cant eat liao... Cut nails oso muz wait until i finish drivin wat, lunch still muz eat wat... 
+ham	She just broke down a list of reasons why nobody's in town and I can't tell if she's being sarcastic or just faggy
+ham	 &lt;DECIMAL&gt; m but its not a common car here so its better to buy from china or asia. Or if i find it less expensive. I.ll holla
+ham	The greatest test of courage on earth is to bear defeat without losing heart....gn tc
+ham	SORRY IM STIL FUCKED AFTER LAST NITE WENT TOBED AT 430 GOT UP 4 WORK AT 630
+ham	Hey so whats the plan this sat? 
+ham	Beauty sleep can help ur pimples too.
+ham	Great. Hope you are using your connections from mode men also cos you can never know why old friends can lead you to today
+spam	Natalja (25/F) is inviting you to be her friend. Reply YES-440 or NO-440 See her: www.SMS.ac/u/nat27081980 STOP? Send STOP FRND to 62468
+ham	Where to get those?
+ham	Kind of. Just missed train cos of asthma attack, nxt one in half hr so driving in. not sure where to park.
+ham	Ball is moving a lot.will spin in last :)so very difficult to bat:)
+ham	Haiyoh... Maybe your hamster was jealous of million
+ham	Can you please send me my aunty's number
+ham	I'm glad. You are following your dreams.
+ham	I've reached home finally...
+spam	URGENT. Important information for 02 user. Today is your lucky day! 2 find out why , log onto http://www.urawinner.com there is a fantastic surprise awaiting you !
+spam	WINNER!! As a valued network customer you have been selected to receivea £900 prize reward! To claim call 09061701461. Claim code KL341. Valid 12 hours only.
+ham	Wn u r hurt by d prsn who s close 2 u, do fight wit dem. Coz somtimes dis fight saves a relation bt being quiet leaves nothin in a relation.. Gud eveB-)
+ham	U can call now...
+ham	Science tells that chocolate will melt under the sunlight. Please don't walk under the sunlight. BCoz,I don't want to loss a sweet friend.
+ham	Yes. I come to nyc for audiitions and am trying to relocate.
+ham	I pocked you up there before
+ham	Congrats. That's great. I wanted to tell you not to tell me your score cos it might make me relax. But its motivating me so thanks for sharing
+ham	I wud never mind if u dont miss me or if u dont need me.. But u wil really hurt me wen u need me &amp; u dont tell me......... Take care:-)
+ham	Hey mr whats the name of that bill brison book the one about language and words 
+ham	Okay, good, no problem, and thanx!
+ham	For you information, IKEA is spelled with all caps. That is not yelling. when you thought i had left you, you were sitting on the bed among the mess when i came in. i said we were going after you got home from class. please don't try and bullshit me. It makes me want to listen to you less.
+ham	Call me when u're done...
+ham	G.W.R
+ham	You best watch what you say cause I get drunk as a motherfucker
+spam	Kit Strip - you have been billed 150p. Netcollex Ltd. PO Box 1013 IG11 OJA
+spam	HMV BONUS SPECIAL 500 pounds of genuine HMV vouchers to be won. Just answer 4 easy questions. Play Now! Send HMV to 86688 More info:www.100percent-real.com
+spam	Please CALL 08712402578 immediately as there is an urgent message waiting for you
+spam	thesmszone.com lets you send free anonymous and masked messages..im sending this message from there..do you see the potential for abuse???
+spam	WELL DONE! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TCs, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins
+ham	Hurt me... Tease me... Make me cry... But in the end of my life when i die plz keep one rose on my grave and say STUPID I MISS U.. HAVE A NICE DAY BSLVYL
+ham	Erm... Woodland avenue somewhere. Do you get the parish magazine, his telephone number will be in there.
+ham	Are there TA jobs available? Let me know please cos i really need to start working
+ham	Aiyar hard 2 type. U later free then tell me then i call n scold n tell u.
+ham	Yup i'm free...
+ham	Good good, billy mates all gone. Just been jogging, again! Did enjoy concert?
+ham	Yo come over carlos will be here soon
+ham	Awww dat is sweet! We can think of something to do he he! Have a nice time tonight ill probably txt u later cos im lonely :( xxx.
+ham	I guess it is useless calling u 4 something important.
+ham	Ha ha - had popped down to the loo when you hello-ed me. Hello!
+ham	He dint tell anything. He is angry on me that why you told to abi.
+spam	Someone U know has asked our dating service 2 contact you! Cant Guess who? CALL 09058091854 NOW all will be revealed. PO BOX385 M6 6WU
+ham	It so happens that there r 2waxsto do wat you want. She can come and ill get her medical insurance. And she'll be able to deliver and have basic care. I'm currently shopping for the right medical insurance for her. So just give me til friday morning. Thats when i.ll see the major person that can guide me to the right insurance.
+ham	I keep ten rs in my shelf:) buy two egg.
+ham	I wasn't well babe, i have swollen glands at my throat ... What did you end up doing ?
+ham	Is ur changes 2 da report big? Cos i've already made changes 2 da previous report.
+ham	Captain is in our room:)
+ham	I can't speak, bcaz mobile have problem. I can listen you but you cann't listen my voice. So i calls you later.
+ham	HIYA STU WOT U UP 2.IM IN SO MUCH TRUBLE AT HOME AT MOMENT EVONE HATES ME EVEN U! WOT THE HELL AV I DONE NOW? Y WONT U JUST TELL ME TEXT BCK PLEASE LUV DAN 
+ham	S...i will take mokka players only:)
+ham	Are you still playing with gautham?
+ham	Hey mr  and I are going to the sea view and having a couple of gays I mean games! Give me a bell when ya finish 
+ham	K, jason says he's gonna be around so I'll be up there around  &lt;#&gt;
+ham	Sorry . I will be able to get to you. See you in the morning.
+ham	Aight well keep me informed
+ham	I am not having her number sir
+ham	Am only searching for good dual sim mobile pa.
+ham	That seems unnecessarily hostile
+ham	Dude got a haircut. Now its breezy up there
+spam	Congrats! 2 mobile 3G Videophones R yours. call 09061744553 now! videochat wid ur mates, play java games, Dload polyH music, noline rentl. bx420. ip4. 5we. 150pm
+ham	1Apple/Day=No Doctor. 1Tulsi Leaf/Day=No Cancer. 1Lemon/Day=No Fat. 1Cup Milk/day=No Bone Problms 3 Litres Watr/Day=No Diseases Snd ths 2 Whom U Care..:-)
+ham	i thought we were doing a king of the hill thing there.
+ham	Nope i'll come online now..
+ham	ALSO TELL HIM I SAID HAPPY BIRTHDAY
+ham	Y bishan lei... I tot ü say lavender? 
+ham	Boo what time u get out? U were supposed to take me shopping today. :(
+ham	Now u sound like manky scouse boy steve,like! I is travelling on da bus home.wot has u inmind 4 recreation dis eve?
+ham	Fyi I'm taking a quick shower, be at epsilon in like  &lt;#&gt;  min
+ham	on a Tuesday night r u 4 real
+ham	Yes when is the appt again?
+ham	Just got outta class gonna go gym.
+ham	I want to sent  &lt;#&gt; mesages today. Thats y. Sorry if i hurts
+ham	Ü all write or wat..
+ham	Ha! I wouldn't say that I just didn't read anything into way u seemed. I don't like 2 be judgemental....i save that for fridays in the pub!
+ham	Its a valentine game. . . send dis msg to all ur friends. . If 5 answers r d same then someone really loves u. . Ques- which colour suits me the best?
+ham	Hi:)did you asked to waheeda fathima about leave?
+ham	Enjoy urself tmr...
+ham	You still around? I could use a half-8th
+spam	U 447801259231 have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094597
+ham	You give us back my id proof and  &lt;#&gt;  rs. We wont allow you to work. We will come to your home within days
+ham	Ü bot notes oredi... Cos i juz rem i got...
+ham	Yes. Rent is very expensive so its the way we save.
+ham	Night has ended for another day, morning has come in a special way. May you smile like the sunny rays and leaves your worries at the blue blue bay. Gud mrng
+ham	Hows the pain dear?y r u smiling?
+ham	Fun fact: although you would think armand would eventually build up a tolerance or some shit considering how much he smokes, he gets fucked up in like 2 hits
+spam	important information 4 orange user 0789xxxxxxx. today is your lucky day!2find out why log onto http://www.urawinner.com THERE'S A FANTASTIC SURPRISE AWAITING YOU!
+ham	Sorry, I can't help you on this.
+ham	Great. So should i send you my account number.
+ham	HELLOGORGEOUS, HOWS U? MY FONE WAS ON CHARGE LST NITW WEN U TEXD ME. HOPEU AD A NICE WKEND AS IM SURE U DID LOOKIN 4WARD 2 C-IN U 2MRW LUV JAZ
+spam	Our dating service has been asked 2 contact U by someone shy! CALL 09058091870 NOW all will be revealed. POBox84, M26 3UZ 150p
+ham	Ü only send me the contents page...
+ham	Night sweet, sleep well! I've just been to see The Exorcism of Emily Rose and may never sleep again! Hugs and snogs! 
+ham	Don't Think About "What u Have Got" Think About "How to Use It That You Have Got" gooD ni8
+ham	I can't right this second, gotta hit people up first
+ham	Evry Emotion dsn't hav Words.Evry Wish dsn't hav Prayrs.. If u Smile,D World is wit u.Othrwise even d Drop of Tear dsn't lik 2 Stay wit u.So b happy.. Good morning, keep smiling:-)
+ham	So what about you. What do you remember
+ham	Ujhhhhhhh computer shipped out with address to sandiago and parantella lane. Wtf. Poop.
+ham	Mm yes dear look how i am hugging you both. :-P
+ham	I like dis sweater fr mango but no more my size already so irritating.
+ham	1 I don't have her number and 2 its gonna be a massive pain in the ass and i'd rather not get involved if that's possible
+ham	Anytime lor...
+spam	Do you want a new Video handset? 750 any time any network mins? UNLIMITED TEXT? Camcorder? Reply or Call now 08000930705 for del Sat AM
+ham	Purity of friendship between two is not about smiling after reading the forwarded message..Its about smiling just by seeing the name. Gud evng
+spam	Ur balance is now £600. Next question: Complete the landmark, Big, A. Bob, B. Barry or C. Ben ?. Text A, B or C to 83738. Good luck!
+ham	Me fine..absolutly fine
+ham	K and you're sure I don't have to have consent forms to do it :V
+spam	Ur TONEXS subscription has been renewed and you have been charged £4.50. You can choose 10 more polys this month. www.clubzed.co.uk *BILLING MSG*
+spam	If you don't, your prize will go to another customer. T&C at www.t-c.biz 18+ 150p/min Polo Ltd Suite 373 London W1J 6HL Please call back if busy
+ham	How much is torch in 9ja.
+ham	Doing nothing, then u not having dinner w us?
+ham	How are you. Just checking up on you
+ham	Done it but internet connection v slow and can‘t send it. Will try again later or first thing tomo.
+ham	Mathews or tait or edwards or anderson
+ham	yeah sure thing mate haunt got all my stuff sorted but im going sound anyway promoting hex for .by the way who is this? dont know number. Joke
+ham	No need lar i go engin? Cos my sis at arts today...
+ham	Thanks honey but still haven't heard anything I will leave it a bit longer so not 2 crowd him and will try later - great advice thanks hope cardiff is still there!
+spam	Do you want a New Nokia 3510i Colour Phone Delivered Tomorrow? With 200 FREE minutes to any mobile + 100 FREE text + FREE camcorder Reply or Call 8000930705
+ham	, im .. On the snowboarding trip. I was wondering if your planning to get everyone together befor we go..a meet and greet kind of affair? Cheers, 
+ham	S.i'm watching it in live..
+ham	see you then, we're all christmassy here!
+ham	K I'm ready,  &lt;#&gt; ?
+ham	Do you know why god created gap between your fingers..? So that, One who is made for you comes &amp; fills those gaps by holding your hand with LOVE..!
+ham	The greatest test of courage on earth is to bear defeat without losing heart....gn tc
+ham	what are your new years plans?
+spam	RECPT 1/3. You have ordered a Ringtone. Your order is being processed...
+ham	Baaaaaaaabe! Wake up ! I miss you ! I crave you! I need you!
+ham	Only just got this message, not ignoring you. Yes, i was. Shopping that is
+ham	Dear :-/ why you mood off. I cant drive so i brother to drive
+ham	When did dad get back.
+ham	Can you tell Shola to please go to college of medicine and visit the academic department, tell the academic secretary what the current situation is and ask if she can transfer there. She should ask someone to check Sagamu for the same thing and lautech. Its vital she completes her medical education in Nigeria. Its less expensive much less expensive. Unless she will be getting citizen rates in new zealand.
+ham	Yes just finished watching days of our lives. I love it.
+ham	Juz go google n search 4 qet...
+ham	Many times we lose our best ones bcoz we are 
+ham	Good FRIENDS CaRE for each Other.. CLoSE Friends UNDERSTaND each Other... and TRUE Friends STaY forever beyond words, beyond time. Gud ni8
+ham	Just getting back home
+ham	Sorry, I'll call later  &lt;#&gt; mins
+ham	Dun need to use dial up juz open da browser n surf...
+spam	As one of our registered subscribers u can enter the draw 4 a 100 G.B. gift voucher by replying with ENTER. To unsubscribe text STOP
+ham	Awesome, plan to get here any time after like  &lt;#&gt; , I'll text you details in a wee bit
+ham	Take care and sleep well.you need to learn to change in life.you only need to get CONVINCED on that.i will wait but no more conversations between us.GET CONVINCED by that time.Your family is over for you in many senses.respect them but not overemphasise.or u have no role in my life.
+spam	For your chance to WIN a FREE Bluetooth Headset then simply reply back with "ADP"
+ham	You also didnt get na hi hi hi hi hi
+ham	Ya but it cant display internal subs so i gotta extract them
+ham	If i said anything wrong sorry de:-)
+ham	Sad story of a Man - Last week was my b'day. My Wife did'nt wish me. My Parents forgot n so did my Kids . I went to work. Even my Colleagues did not wish.
+ham	How stupid to say that i challenge god.You dont think at all on what i write instead you respond immed.
+ham	Yeah I should be able to, I'll text you when I'm ready to meet up
+ham	V skint too but fancied few bevies.waz gona go meet &othrs in spoon but jst bin watchng planet earth&sofa is v comfey; If i dont make it hav gd night
+ham	 says that he's quitting at least5times a day so i wudn't take much notice of that. Nah, she didn't mind. Are you gonna see him again? Do you want to come to taunton tonight? U can tell me all about !
+ham	When you get free, call me
+ham	How have your little darlings been so far this week? Need a coffee run tomo?Can't believe it's that time of week already …
+ham	Ok i msg u b4 i leave my house.
+ham	Still at west coast... Haiz... Ü'll take forever to come back...
+ham	MMM ... Fuck .... Merry Christmas to me
+ham	alright. Thanks for the advice. Enjoy your night out. I'ma try to get some sleep...
+ham	Update your face book status frequently :)
+ham	Just now saw your message.it k da:)
+ham	Was it something u ate?
+ham	So what did the bank say about the money?
+ham	Aiyar dun disturb u liao... Thk u have lots 2 do aft ur cupboard come...
+ham	Hey they r not watching movie tonight so i'll prob b home early...
+ham	Yar lor... How u noe? U used dat route too?
+ham	2mro i am not coming to gym machan. Goodnight.
+ham	Dont think you need yellow card for uk travel. Ask someone that has gone before. If you do its just  &lt;#&gt; bucks
+ham	Can u look 4 me in da lib i got stuff havent finish yet.
+ham	Sounds great! Im going to sleep now. Have a good night!
+spam	Don't b floppy... b snappy & happy! Only gay chat service with photo upload call 08718730666 (10p/min). 2 stop our texts call 08712460324
+ham	House-Maid is the murderer, coz the man was murdered on  &lt;#&gt; th January.. As public holiday all govt.instituitions are closed,including post office..understand?
+ham	How come u got nothing to do?
+ham	Nothing will ever be easy. But don't be looking for a reason not to take a risk on life and love
+ham	i want to grasp your pretty booty :)
+ham	I've got it down to a tea. not sure which flavour
+ham	I'm going 2 orchard now laready me reaching soon. U reaching?
+ham	Dear i am not denying your words please
+ham	You know my old Dom I told you about yesterday ? His name is Roger? He got in touch with me last night and wants me to meet him today at 2 pm
+ham	COME BACK TO TAMPA FFFFUUUUUUU
+ham	2 celebrate my b’day, y else?
+ham	Merry christmas to u too annie!
+ham	Please tell me you have some of that special stock you were talking about
+ham	I sent them. Do you like?
+spam	Urgent UR awarded a complimentary trip to EuroDisinc Trav, Aco&Entry41 Or £1000. To claim txt DIS to 87121 18+6*£1.50(moreFrmMob. ShrAcomOrSglSuplt)10, LS1 3AJ
+ham	Awesome, be there in a minute
+ham	And that is the problem. You walk around in "julianaland" oblivious to what is going on around you. I say the same things constantly and they go in one ear and out the other while you go off doing whatever you want to do. It's not that you don't know why I'm upset--it's that you don't listen when i tell you WHAT is going to upset me. Then you want to be surprised when I'm mad.
+ham	I've told you everything will stop. Just dont let her get dehydrated.
+ham	Or I guess  &lt;#&gt;  min
+ham	I'm home. Ard wat time will u reach?
+ham	Storming msg: Wen u lift d phne, u say "HELLO" Do u knw wt is d real meaning of HELLO?? . . . It's d name of a girl..! . . . Yes.. And u knw who is dat girl?? "Margaret Hello" She is d girlfrnd f Grahmbell who invnted telphone... . . . . Moral:One can 4get d name of a person, bt not his girlfrnd... G o o d n i g h t . . .@
+ham	If you want to mapquest it or something look up "usf dogwood drive", that's the tiny street where the parking lot is
+ham	Aight should I just plan to come up later tonight?
+ham	Die... I accidentally deleted e msg i suppose 2 put in e sim archive. Haiz... I so sad...
+spam	Welcome to UK-mobile-date this msg is FREE giving you free calling to 08719839835. Future mgs billed at 150p daily. To cancel send "go stop" to 89123
+ham	This is wishing you a great day. Moji told me about your offer and as always i was speechless. You offer so easily to go to great lengths on my behalf and its stunning. My exam is next friday. After that i will keep in touch more. Sorry.
+ham	Thanks again for your reply today. When is ur visa coming in. And r u still buying the gucci and bags. My sister things are not easy, uncle john also has his own bills so i really need to think about how to make my own money. Later sha.
+ham	Sorry I flaked last night, shit's seriously goin down with my roommate, what you up to tonight?
+ham	He said i look pretty wif long hair wat. But i thk he's cutting quite short 4 me leh.
+ham	Ranjith cal drpd Deeraj and deepak 5min hold
+ham	"CHEERS FOR CALLIN BABE.SOZI CULDNT TALKBUT I WANNATELL U DETAILS LATER WENWECAN CHAT PROPERLY X"
+ham	Hey u still at the gym?
+ham	She said,'' do u mind if I go into the bedroom for a minute ? '' ''OK'', I sed in a sexy mood. She came out 5 minuts latr wid a cake...n My Wife,
+ham	Much better now thanks lol
+ham	Nothing, smsing u n xy lor. Sorry lor da guys neva c u in person but they sort of know u lor. So u wan 2 meet them xy ask me 2 bring u along 4 our next meeting.
+ham	Lemme know when I can swing by and pick up, I'm free basically any time after 1 all this semester
+ham	Wa... U so efficient... Gee... Thanx...
+spam	3. You have received your mobile content. Enjoy
+ham	S but not able to sleep.
+spam	Want explicit SEX in 30 secs? Ring 02073162414 now! Costs 20p/min
+ham	We will meet soon princess! Ttyl!
+ham	I'll pick you up at about 5.15pm to go to taunton if you still want to come.
+ham	Oh :-)only 4 outside players allowed to play know
+ham	I anything lor.
+ham	Erutupalam thandiyachu
+ham	Y cant u try new invention to fly..i'm not joking.,
+ham	No..its ful of song lyrics..
+ham	What do u reckon as need 2 arrange transport if u can't do it, thanks
+ham	True lov n care wil nevr go unrecognized. though somone often makes mistakes when valuing it. but they will definitly undrstnd once when they start missing it.
+ham	Shopping? Eh ger i toking abt syd leh...Haha
+ham	What not under standing.
+ham	have * good weekend.
+ham	Miss call miss call khelate kintu opponenter miss call dhorte lage. Thats d rule. One with great phone receiving quality wins.
+ham	Call me when you get the chance plz &lt;3
+ham	The new deus ex game comin early next yr
+ham	My computer just fried the only essential part we don't keep spares of because my fucking idiot roommates looovvve leaving the thing running on full  &lt;#&gt; /7
+ham	My friend, she's studying at warwick, we've planned to go shopping and to concert tmw, but it may be canceled, havn't seen  for ages, yeah we should get together sometime!
+ham	Probably a couple hours tops
+ham	LOL .. *grins* .. I'm not babe, but thanks for thinking of me!
+ham	Man this bus is so so so slow. I think you're gonna get there before me
+ham	Hope this text meets you smiling. If not then let this text give you a reason to smile. Have a beautiful day.
+ham	In case you wake up wondering where I am, I forgot I have to take care of something for grandma today, should be done before the parade
+ham	Ok
+spam	Latest Nokia Mobile or iPOD MP3 Player +£400 proze GUARANTEED! Reply with: WIN to 83355 now! Norcorp Ltd.£1,50/Mtmsgrcvd18+
+spam	SMS SERVICES. for your inclusive text credits, pls goto www.comuk.net login= 3qxj9 unsubscribe with STOP, no extra charge. help 08702840625.COMUK. 220-CM2 9AE
+ham	Nvm take ur time.
+ham	So wat's da decision?
+ham	Wot is u up 2 then bitch?
+ham	Stupid.its not possible
+ham	She told to hr that he want posting in chennai:)because i'm working here:)
+spam	Mobile Club: Choose any of the top quality items for your mobile. 7cfca1a
+ham	When are you guys leaving?
+ham	He neva grumble but i sad lor... Hee... Buy tmr lor aft lunch. But we still meetin 4 lunch tmr a not. Neva hear fr them lei. Ü got a lot of work ar?
+ham	Not able to do anything.
+ham	Ü takin linear algebra today?
+ham	This weekend is fine (an excuse not to do too much decorating)
+ham	Sorry I missed you babe. I was up late and slept in. I hope you enjoy your driving lesson, boytoy. I miss you too ... *teasing kiss*
+ham	Now project pa. After that only i can come.
+spam	Money i have won wining number 946 wot do i do next
+ham	Sure, whenever you show the fuck up &gt;:(
+ham	That was random saw my old roomate on campus. He graduated
+spam	Congrats! 2 mobile 3G Videophones R yours. call 09061744553 now! videochat wid ur mates, play java games, Dload polyH music, noline rentl. bx420. ip4. 5we. 150pm
+ham	Men always needs a beautiful, intelligent, caring, loving, adjustable, cooperative wife. But the law allows only one wife....
+ham	That sucks. So what do you got planned for your yo valentine? I am your yo valentine aren't I?
+ham	Just got part Nottingham - 3 hrs 63miles. Good thing i love my man so much, but only doing 40mph. Hey ho
+ham	What to think no one saying clearly. Ok leave no need to ask her. I will go if she come or not
+ham	Hi good mornin.. Thanku wish u d same..
+ham	DO U WANT 2 MEET UP 2MORRO
+ham	Actually I decided I was too hungry so I haven't left yet :V
+ham	I've sent ü my part..
+ham	Cos i was out shopping wif darren jus now n i called him 2 ask wat present he wan lor. Then he started guessing who i was wif n he finally guessed darren lor.
+spam	I want some cock! My hubby's away, I need a real man 2 satisfy me. Txt WIFE to 89938 for no strings action. (Txt STOP 2 end, txt rec £1.50ea. OTBox 731 LA1 7WS. )
+ham	Understand. his loss is my gain :) so do you work? School?
+ham	HOW ARE U? I HAVE MISSED U! I HAVENT BEEN UP 2 MUCH A BIT BORED WITH THE HOLIDAY WANT 2 GO BAK 2 COLLEGE! SAD ISNT IT?xx
+ham	Hiya, probably coming home * weekend after next
+ham	Don't forget though that I love you .... And I walk beside you. Watching over you and keeping your heart warm.
+ham	I wish things were different. I wonder when i will be able to show you how much i value you. Pls continue the brisk walks no drugs without askin me please and find things to laugh about. I love you dearly.
+ham	Ok both our days. So what are you making for dinner tonite? Am I invited?
+spam	Gr8 new service - live sex video chat on your mob - see the sexiest dirtiest girls live on ur phone - 4 details text horny to 89070 to cancel send STOP to 89070
+ham	I have no money 4 steve mate! !
+ham	IM LATE TELLMISS IM ON MY WAY
+ham	Never blame a day in ur life. Good days give u happiness. Bad days give u experience. Both are essential in life! All are Gods blessings! good morning.:
+ham	Normally i use to drink more water daily:)
+ham	Dare i ask... Any luck with sorting out the car?
+ham	Party's at my place at usf, no charge (but if you can contribute in any way it is greatly appreciated) and yeah, we got room for one more
+ham	Urgh, coach hot, smells of chip fat! Thanks again, especially for the duvet (not a predictive text word).
+ham	Hiya. How was last night? I've been naughty and bought myself clothes and very little ... Ready for more shopping tho! What kind of time do you wanna meet?
+spam	FreeMsg Hi baby wow just got a new cam moby. Wanna C a hot pic? or Fancy a chat?Im w8in 4uTxt / rply CHAT to 82242 Hlp 08712317606 Msg150p 2rcv
+ham	I've been trying to reach him without success
+ham	when you and derek done with class?
+ham	Never y lei... I v lazy... Got wat? Dat day ü send me da url cant work one...
+ham	Never try alone to take the weight of a tear that comes out of ur heart and falls through ur eyes... Always remember a STUPID FRIEND is here to share... BSLVYL
+ham	Hey mate. Spoke to the mag people. We‘re on.  the is deliver by the end of the month. Deliver on the 24th sept. Talk later. 
+ham	Hope you are having a good week. Just checking in
+ham	Haha, my friend tyler literally just asked if you could get him a dubsack
+ham	"Hey! do u fancy meetin me at 4 at cha – hav a lil beverage on me. if not txt or ring me and we can meet up l8r. quite tired got in at 3 v.pist ;) love Pete x x x"
+ham	Great. Have a safe trip. Dont panic surrender all.
+ham	"SYMPTOMS" when U are in love: "1.U like listening songs 2.U get stopped where u see the name of your beloved 3.U won't get angry when your
+ham	Sun ah... Thk mayb can if dun have anythin on... Thk have to book e lesson... E pilates is at orchard mrt u noe hor...  
+ham	Try to do something dear. You read something for exams
+ham	7 wonders in My WORLD 7th You 6th Ur style 5th Ur smile 4th Ur Personality 3rd Ur Nature 2nd Ur SMS and 1st "Ur Lovely Friendship"... good morning dear
+ham	Gettin rdy to ship comp
+ham	I am in hospital da. . I will return home in evening
+ham	PISS IS TALKING IS SOMEONE THAT REALISE U THAT POINT THIS AT IS IT.(NOW READ IT BACKWARDS)
+ham	Think + da. You wil do.
+ham	I'm awake oh. What's up.
+ham	Good afternoon my boytoy. How goes that walking here and there day ? Did you get that police abstract? Are you still out and about? I wake and miss you babe
+ham	How much u trying to get?
+ham	Come around  &lt;DECIMAL&gt; pm vikky..i'm otside nw, il come by tht time
+ham	Tell me again what your address is
+ham	Honeybee Said: *I'm d Sweetest in d World* God Laughed &amp; Said: *Wait,U Havnt Met d Person Reading This Msg* MORAL: Even GOD Can Crack Jokes! GM+GN+GE+GN:)
+ham	Should i buy him a blackberry bold 2 or torch. Should i buy him new or used. Let me know. Plus are you saying i should buy the  &lt;#&gt; g wifi ipad. And what are you saying about the about the  &lt;#&gt; g?
+ham	But you were together so you should be thinkin about him
+ham	hiya hows it going in sunny africa? hope u r avin a good time. give that big old silver back a big kiss from me.
+ham	At WHAT TIME should i come tomorrow
+spam	Wanna have a laugh? Try CHIT-CHAT on your mobile now! Logon by txting the word: CHAT and send it to No: 8883 CM PO Box 4217 London W1A 6ZF 16+ 118p/msg rcvd
+ham	"CHA QUITEAMUZING THAT’SCOOL BABE,PROBPOP IN & CU SATTHEN HUNNY 4BREKKIE! LOVE JEN XXX. PSXTRA LRG PORTIONS 4 ME PLEASE "
+ham	Omg how did u know what I ate?
+spam	"URGENT! This is the 2nd attempt to contact U!U have WON £1000CALL 09071512432 b4 300603t&csBCM4235WC1N3XX.callcost150ppmmobilesvary. max£7. 50"
+ham	:( but your not here....
+ham	Not directly behind... Abt 4 rows behind ü...
+spam	Congratulations ur awarded 500 of CD vouchers or 125gift guaranteed & Free entry 2 100 wkly draw txt MUSIC to 87066
+spam	Had your contract mobile 11 Mnths? Latest Motorola, Nokia etc. all FREE! Double Mins & Text on Orange tariffs. TEXT YES for callback, no to remove from records
+spam	Urgent! call 09066350750 from your landline. Your complimentary 4* Ibiza Holiday or 10,000 cash await collection SAE T&Cs PO BOX 434 SK3 8WP 150 ppm 18+
+ham	No plans yet. What are you doing ?
+ham	Hi ....My engagement has been fixd on  &lt;#&gt; th of next month. I know its really shocking bt....hmm njan vilikkam....t ws al of a sudn;-(.
+ham	Not course. Only maths one day one chapter with in one month we can finish.
+ham	Wow didn't think it was that common. I take it all back ur not a freak! Unless u chop it off:-)
+spam	For ur chance to win a £250 wkly shopping spree TXT: SHOP to 80878. T's&C's www.txt-2-shop.com custcare 08715705022, 1x150p/wk
+ham	Noooooooo please. Last thing I need is stress. For once in your life be fair.
+spam	U have a Secret Admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09065171142-stopsms-08718727870150ppm
+spam	Mila, age23, blonde, new in UK. I look sex with UK guys. if u like fun with me. Text MTALK to 69866.18 . 30pp/txt 1st 5free. £1.50 increments. Help08718728876
+ham	I'll see if I can swing by in a bit, got some things to take care of here firsg
+ham	I wanted to wish you a Happy New Year and I wanted to talk to you about some legal advice to do with when Gary and I split but in person. I'll make a trip to Ptbo for that. I hope everything is good with you babe and I love ya :)
+ham	Have you not finished work yet or something?
+ham	Tomorrow i am not going to theatre. . . So i can come wherever u call me. . . Tell me where and when to come tomorrow
+spam	Well done ENGLAND! Get the official poly ringtone or colour flag on yer mobile! text TONE or FLAG to 84199 NOW! Opt-out txt ENG STOP. Box39822 W111WX £1.50
+ham	Right it wasnt you who phoned it was someone with a number like yours!
+ham	It's ok i wun b angry. Msg u aft i come home tonight.
+ham	I had a good time too. Its nice to do something a bit different with my weekends for a change. See ya soon
+ham	Yo sorry was in the shower sup
+ham	Carlos is down but I have to pick it up from him, so I'll swing by usf in a little bit
+ham	Full heat pa:-) i have applyed oil pa.
+ham	I'm stuck in da middle of da row on da right hand side of da lt... 
+ham	Have you laid your airtel line to rest?
+ham	Hi did u decide wot 2 get 4 his bday if not ill prob jus get him a voucher frm virgin or sumfing 
+spam	FreeMsg: Txt: CALL to No: 86888 & claim your reward of 3 hours talk time to use from your phone now! Subscribe6GBP/mnth inc 3hrs 16 stop?txtStop
+ham	"Hey j! r u feeling any better, hopeSo hunny. i amnow feelin ill & ithink i may have tonsolitusaswell! damn iam layin in bedreal bored. lotsof luv me xxxx"
+ham	And I don't plan on staying the night but I prolly won't be back til late
+ham	THANX 4 PUTTIN DA FONE DOWN ON ME!!
+ham	I need an 8th but I'm off campus atm, could I pick up in an hour or two?
+ham	Oh... Haha... Den we shld had went today too... Gee, nvm la... Kaiez, i dun mind goin jazz oso... Scared hiphop open cant catch up... 
+ham	Been running but only managed 5 minutes and then needed oxygen! Might have to resort to the roller option!
+ham	We live in the next  &lt;#&gt; mins
+ham	Y de asking like this.
+ham	Just glad to be talking to you.
+ham	Wat time ü finish?
+ham	Sorry da. I gone mad so many pending works what to do.
+ham	How much you got for cleaning
+ham	hows my favourite person today? r u workin hard? couldn't sleep again last nite nearly rang u at 4.30
+spam	Sunshine Quiz! Win a super Sony DVD recorder if you canname the capital of Australia? Text MQUIZ to 82277. B
+ham	Ü called dad oredi...
+ham	Good. do you think you could send me some pix? I would love to see your top and bottom...
+ham	Nvm... I'm going to wear my sport shoes anyway... I'm going to be late leh.
+ham	Sorry, I'll call later In meeting.
+ham	THIS IS A LONG FUCKIN SHOWR
+ham	Received, understood n acted upon!
+ham	They finally came to fix the ceiling.
+ham	U need my presnts always bcz U cant mis love. "jeevithathile irulinae neekunna prakasamanu sneham" prakasam ennal prabha 'That mns prabha is'LOVE' Got it. Dont mis me....
+ham	Jus finish blowing my hair. U finish dinner already?
+ham	I'm on the bus. Love you
+ham	Lol ... I knew that .... I saw him in the dollar store
+spam	Please call our customer service representative on 0800 169 6031 between 10am-9pm as you have WON a guaranteed £1000 cash or £5000 prize!
+spam	Todays Voda numbers ending with 7634 are selected to receive a £350 reward. If you have a match please call 08712300220 quoting claim code 7684 standard rates apply.
+ham	Only saturday and sunday holiday so its very difficult:)
+ham	Everybody had fun this evening. Miss you.
+ham	Got hella gas money, want to go on a grand nature adventure with galileo in a little bit?
+ham	I'm in a meeting, call me later at
+ham	Oh wow thats gay. Will firmware update help
+ham	These won't do. Have to move on to morphine
+ham	How come i din c ü... Yup i cut my hair...
+ham	K k pa Had your lunch aha.
+ham	Oh ho. Is this the first time u use these type of words
+ham	Captain vijaykanth is doing comedy in captain tv..he is drunken :)
+ham	Of course. I guess god's just got me on hold right now.
+ham	Do you hide anythiing or keeping distance from me
+ham	Havent.
+spam	You are being ripped off! Get your mobile content from www.clubmoby.com call 08717509990 poly/true/Pix/Ringtones/Games six downloads for only 3
+ham	Sorry i din lock my keypad.
+ham	Did u got that persons story
+ham	Are you planning to come chennai?
+spam	We tried to contact you re your reply to our offer of a Video Phone 750 anytime any network mins Half Price Line Rental Camcorder Reply or call 08000930705
+ham	God created gap btwn ur fingers so dat sum1 vry special will fill those gaps by holding ur hands.. Now plz dont ask y he created so much gap between legs !!!
+ham	We are okay. Going to sleep now. Later
+ham	Please protect yourself from e-threats. SIB never asks for sensitive information like Passwords,ATM/SMS PIN thru email. Never share your password with anybody.
+ham	Finally it has happened..! Aftr decades..! BEER is now cheaper than PETROL! The goverment expects us to "DRINK". . . But don't "DRIVE "
+spam	A £400 XMAS REWARD IS WAITING FOR YOU! Our computer has randomly picked you from our loyal mobile customers to receive a £400 reward. Just call 09066380611 
+ham	Where r e meeting tmr?
+ham	Lol yes. But it will add some spice to your day.
+ham	Hope you are having a great day.
+ham	Our Prasanth ettans mother passed away last night. Just pray for her and family.
+ham	K, I'll work something out
+spam	PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S. I. M. points. Call 08718738002 Identifier Code: 48922 Expires 21/11/04
+ham	This message is from a great Doctor in India:-): 1) Do not drink APPY FIZZ. It contains Cancer causing age
+ham	I cant pick the phone right now. Pls send a message
+ham	You call him and tell now infront of them. Call him now.
+ham	Ok no prob...
+ham	Ladies first and genus second k .
+ham	No. Yes please. Been swimming?
+ham	Mum not going robinson already.
+ham	Ok set let u noe e details later...
+ham	Not..tel software name..
+ham	I send the print  outs da.
+ham	IM REALY SOZ IMAT MY MUMS 2NITE WHAT ABOUT 2MORO 
+ham	When I was born, GOD said, "Oh No! Another IDIOT". When you were born, GOD said, "OH No! COMPETITION". Who knew, one day these two will become FREINDS FOREVER!
+ham	I didnt get ur full msg..sometext is missing, send it again
+ham	Probably not, I'm almost out of gas and I get some cash tomorrow
+spam	Customer service announcement. We recently tried to make a delivery to you but were unable to do so, please call 07099833605 to re-schedule. Ref:9280114
+ham	I forgot 2 ask ü all smth.. There's a card on da present lei... How? Ü all want 2 write smth or sign on it?
+ham	I'm leaving my house now.
+spam	Hi babe its Chloe, how r u? I was smashed on saturday night, it was great! How was your weekend? U been missing me? SP visionsms.com Text stop to stop 150p/text
+ham	Ü ready then call me...
+ham	Wewa is 130. Iriver 255. All 128 mb.
+ham	It is a good thing I'm now getting the connection to bw
+ham	Sry da..jst nw only i came to home..
+ham	That's cool he'll be here all night, lemme know when you're around
+ham	Are you staying in town ?
+ham	Haha yeah, 2 oz is kind of a shitload
+ham	Ok u can take me shopping when u get paid =D
+ham	My life Means a lot to me, Not because I love my life, But because I love the people in my life, The world calls them friends, I call them my World:-).. Ge:-)..
+ham	Alright we'll bring it to you, see you in like  &lt;#&gt;  mins
+ham	But pls dont play in others life.
+ham	Eatin my lunch...
+ham	Hmmm.but you should give it on one day..
+ham	Didn't try, g and I decided not to head out
+ham	Ok no prob
+ham	Surly ill give it to you:-) while coming to review.
+ham	By march ending, i should be ready. But will call you for sure. The problem is that my capital never complete. How far with you. How's work and the ladies
+ham	Tessy..pls do me a favor. Pls convey my birthday wishes to Nimya..pls dnt forget it. Today is her birthday Shijas
+ham	Pls give her the food preferably pap very slowly with loads of sugar. You can take up to an hour to give it. And then some water. Very very slowly.
+spam	URGENT! Your Mobile No 07808726822 was awarded a £2,000 Bonus Caller Prize on 02/09/03! This is our 2nd attempt to contact YOU! Call 0871-872-9758 BOX95QU
+ham	A guy who gets used but is too dumb to realize it.
+ham	Okey dokey, i‘ll be over in a bit just sorting some stuff out.
+ham	Don no da:)whats you plan?
+ham	Yes fine 
+spam	WIN: We have a winner! Mr. T. Foley won an iPod! More exciting prizes soon, so keep an eye on ur mobile or visit www.win-82050.co.uk
+ham	I liked the new mobile
+ham	Anytime...
+ham	Mmmmmmm *snuggles into you* ...*deep contented sigh* ... *whispers* ... I fucking love you so much I can barely stand it ...
+ham	Yar but they say got some error.
+ham	Hey anyway i have to :-)
+ham	Wow so healthy. Old airport rd lor. Cant thk of anything else. But i'll b bathing my dog later.
+ham	Wif my family booking tour package.
+ham	Did you say bold, then torch later. Or one torch and 2bold?
+ham	Haha awesome, I might need to take you up on that, what you doin tonight?
+ham	Ya i knw u vl giv..its ok thanks kano..anyway enjoy wit ur family wit 1st salary..:-);-)
+ham	Huh so slow i tot u reach long ago liao... U 2 more days only i 4 more leh...
+ham	Thats cool princess! I will cover your face in hot sticky cum :)
+ham	Big brother‘s really scraped the barrel with this shower of social misfits
+ham	Oops i thk i dun haf enuff... I go check then tell ü..
+ham	S:)8 min to go for lunch:)
+ham	Hey. What happened? U switch off ur cell d whole day. This isnt good. Now if u do care, give me a call tomorrow.
+ham	K will do, addie &amp; I are doing some art so I'll be here when you get home
+ham	My uncles in Atlanta. Wish you guys a great semester.
+ham	Aiyo... Her lesson so early... I'm still sleepin, haha... Okie, u go home liao den confirm w me lor...
+ham	Forgot to tell ü smth.. Can ü like number the sections so that it's clearer..
+ham	Yup. Anything lor, if u dun wan it's ok...
+ham	I'm home, my love ... If your still awake ... *loving kiss*
+ham	HELLO PEACH! MY CAKE TASTS LUSH!
+spam	FREE GAME. Get Rayman Golf 4 FREE from the O2 Games Arcade. 1st get UR games settings. Reply POST, then save & activ8. Press 0 key for Arcade. Termsapply
+ham	There'll be a minor shindig at my place later tonight, you interested?
+ham	Jason says it's cool if we pick some up from his place in like an hour
+spam	Had your mobile 10 mths? Update to the latest Camera/Video phones for FREE. KEEP UR SAME NUMBER, Get extra free mins/texts. Text YES for a call
+ham	I (Career Tel) have added u as a contact on INDYAROCKS.COM to send FREE SMS. To remove from phonebook - sms NO to  &lt;#&gt;
+ham	I've reached already.
+ham	I dont know ask to my brother. Nothing problem some thing that. Just i told .
+ham	K:)eng rocking in ashes:)
+ham	Wat time r ü going to xin's hostel?
+ham	Good Morning my Dear Shijutta........... Have a great &amp; successful day.
+spam	Buy Space Invaders 4 a chance 2 win orig Arcade Game console. Press 0 for Games Arcade (std WAP charge) See o2.co.uk/games 4 Terms + settings. No purchase
+ham	Oh k:)after that placement there ah?
+ham	Not for possession, especially not first offense
+ham	Nt only for driving even for many reasons she is called BBD..thts it chikku, then hw abt dvg cold..heard tht vinobanagar violence hw is the condition..and hw ru ? Any problem?
+ham	I bought the test yesterday. Its something that lets you know the exact day u ovulate.when will get 2u in about 2 to 3wks. But pls pls dont fret. I know u r worried. Pls relax. Also is there anything in ur past history u need to tell me?
+ham	We have pizza if u want
+ham	I keep seeing weird shit and bein all "woah" then realising it's actually reasonable and I'm all "oh"
+ham	Many more happy returns of the day. I wish you happy birthday.
+ham	Ya very nice. . .be ready on thursday
+ham	I am in hospital da. . I will return home in evening
+ham	"Thinking of u ;) x"
+spam	Camera - You are awarded a SiPix Digital Camera! call 09061221066 fromm landline. Delivery within 28 days.
+ham	Orh i tot u say she now still dun believe.
+ham	When you just put in the + sign, choose my number and the pin will show. Right?
+ham	The beauty of life is in next second.. which hides thousands of secrets. I wish every second will be wonderful in ur life...!! gud n8
+ham	Thanx u darlin!im cool thanx. A few bday drinks 2 nite. 2morrow off! Take care c u soon.xxx
+ham	If you're still up, maybe leave the credit card so I can get gas when I get back like he told me to
+spam	Your weekly Cool-Mob tones are ready to download !This weeks new Tones include: 1) Crazy Frog-AXEL F>>> 2) Akon-Lonely>>> 3) Black Eyed-Dont P >>>More info in n
+ham	Well boy am I glad G wasted all night at applebees for nothing
+spam	Cashbin.co.uk (Get lots of cash this weekend!) www.cashbin.co.uk Dear Welcome to the weekend We have got our biggest and best EVER cash give away!! These..
+ham	Ok lor... Or u wan me go look 4 u?
+ham	U wan 2 haf lunch i'm in da canteen now.
+ham	Don't make life too stressfull.. Always find time to Laugh.. It may not add years to your Life! But surely adds more life to ur years!! Gud ni8..swt dreams..
+ham	hey, looks like I was wrong and one of the kappa guys numbers is still on my phone, if you want I can text him and see if he's around
+spam	URGENT! Your Mobile number has been awarded with a £2000 prize GUARANTEED. Call 09061790121 from land line. Claim 3030. Valid 12hrs only 150ppm
+spam	Thanks 4 your continued support Your question this week will enter u in2 our draw 4 £100 cash. Name the NEW US President? txt ans to 80082
+ham	I'm home. Doc gave me pain meds says everything is fine.
+ham	It's é only $140 ard...É rest all ard $180 at least...Which is é price 4 é 2 bedrm ($900)
+ham	Me too! Have a lovely night xxx
+ham	Prepare to be pleasured :)
+ham	Hi.:)technical support.providing assistance to us customer through call and email:)
+ham	if you text on your way to cup stop that should work. And that should be BUS
+ham	Whens your radio show?
+spam	Your unique user ID is 1172. For removal send STOP to 87239 customer services 08708034412
+ham	I'm not sure if its still available though
+ham	watever reLation u built up in dis world only thing which remains atlast iz lonlines with lotz n lot memories! feeling..
+ham	CHEERS LOU! YEAH WAS A GOODNITE SHAME U NEVA CAME! C YA GAILxx
+ham	Hi..i got the money da:)
+ham	Hi, Mobile no.  &lt;#&gt;  has added you in their contact list on www.fullonsms.com It s a great place to send free sms to people For more visit fullonsms.com
+ham	Ok then u tell me wat time u coming later lor.
+ham	U repeat e instructions again. Wat's e road name of ur house?
+ham	So many people seems to be special at first sight, But only very few will remain special to you till your last sight.. Maintain them till life ends.. Sh!jas
+ham	Quite lor. But dun tell him wait he get complacent...
+ham	Sorry completely forgot * will pop em round this week if your still here?
+ham	U R THE MOST BEAUTIFUL GIRL IVE EVER SEEN. U R MY BABY COME AND C ME IN THE COMMON ROOM
+ham	O we cant see if we can join denis and mina? Or does denis want alone time
+ham	Sen told that he is going to join his uncle finance in cbe
+ham	Yup... Hey then one day on fri we can ask miwa and jiayin take leave go karaoke 
+ham	Call me, i am senthil from hsbc.
+ham	Especially since i talk about boston all up in my personal statement, lol! I woulda changed that if i had realized it said nyc! It says boston now.
+ham	Indeed and by the way it was either or - not both !
+spam	Urgent -call 09066649731from Landline. Your complimentary 4* Ibiza Holiday or £10,000 cash await collection SAE T&Cs PO BOX 434 SK3 8WP 150ppm 18+
+ham	Holy living christ what is taking you so long
+ham	Ü thk of wat to eat tonight.
+ham	Thanx. Yup we coming back on sun. Finish dinner going back 2 hotel now. Time flies, we're tog 4 exactly a mth today. Hope we'll haf many more mths to come...
+ham	We're on the opposite side from where we dropped you off
+ham	Yup. Izzit still raining heavily cos i'm in e mrt i can't c outside.
+ham	Send me your resume:-)
+ham	Gd luck 4 ur exams :-)
+ham	Or u ask they all if next sat can a not. If all of them can make it then i'm ok lor.
+ham	Sorry that was my uncle. I.ll keep in touch
+ham	Saw Guys and Dolls last night with Patrick Swayze it was great
+spam	URGENT This is our 2nd attempt to contact U. Your £900 prize from YESTERDAY is still awaiting collection. To claim CALL NOW 09061702893
+spam	Santa calling! Would your little ones like a call from Santa Xmas Eve? Call 09077818151 to book you time. Calls1.50ppm last 3mins 30s T&C www.santacalling.com
+ham	Just come home. I don't want u to be miserable
+ham	I dont know why she.s not getting your messages
+ham	its cool but tyler had to take off so we're gonna buy for him and drop it off at his place later tonight. Our total order is a quarter, you got enough?
+ham	The guy at the car shop who was flirting with me got my phone number from the paperwork and called and texted me. I'm nervous because of course now he may have my address. Should i call his boss and tell him, knowing this may get him fired?
+ham	Reverse is cheating. That is not mathematics.
+ham	How do you plan to manage that
+ham	Er, hello, things didn‘t quite go to plan – is limping slowly home followed by aa and with exhaust hanging off
+ham	Sorry for the delay. Yes masters
+ham	Call me when u finish then i come n pick u.
+spam	PRIVATE! Your 2004 Account Statement for 078498****7 shows 786 unredeemed Bonus Points. To claim call 08719180219 Identifier Code: 45239 Expires 06.05.05
+ham	What's up my own oga. Left my phone at home and just saw ur messages. Hope you are good. Have a great weekend.
+ham	Don't worry though, I understand how important it is that I be put in my place with a poorly thought out punishment in the face of the worst thing that has ever happened to me. Brb gonna go kill myself
+ham	Honey, can you pls find out how much they sell Predicte in Nigeria. And how many times can it be used. Its very important to have a reply before monday
+ham	E admin building there? I might b slightly earlier... I'll call u when i'm reaching...
+ham	fyi I'm at usf now, swing by the room whenever
+ham	i can call in  &lt;#&gt;  min if thats ok
+ham	Ummmmmaah Many many happy returns of d day my dear sweet heart.. HAPPY BIRTHDAY dear
+ham	Ü no home work to do meh... 
+ham	Anything is valuable in only 2 situations: First- Before getting it... Second- After loosing it...
+ham	Me too. Mark is taking forever to pick up my prescription and the pain is coming back.
+ham	How's ur paper?
+ham	Got smaller capacity one? Quite ex...
+spam	Check Out Choose Your Babe Videos @ sms.shsex.netUN fgkslpoPW fgkslpo
+ham	Im good! I have been thinking about you...
+spam	u r a winner U ave been specially selected 2 receive £1000 cash or a 4* holiday (flights inc) speak to a live operator 2 claim 0871277810710p/min (18 )
+ham	:-) :-)
+ham	Not thought bout it... || Drink in tap & spile at seven. || Is that pub on gas st off broad st by canal. || Ok?
+ham	I am going to sleep. I am tired of travel.
+ham	Haha, just what I was thinkin
+ham	Yup but it's not giving me problems now so mayb i'll jus leave it...
+ham	Lol no. Just trying to make your day a little more interesting
+ham	How long before you get reply, just defer admission til next semester
+ham	The word "Checkmate" in chess comes from the Persian phrase "Shah Maat" which means; "the king is dead.." Goodmorning.. Have a good day..:)
+ham	Po de :-):):-):-):-). No need job aha.
+ham	Rats. Hey did u ever vote for the next themes?
+spam	New Mobiles from 2004, MUST GO! Txt: NOKIA to No: 89545 & collect yours today! From ONLY £1. www.4-tc.biz 2optout 087187262701.50gbp/mtmsg18 TXTAUCTION.
+ham	I hope your pee burns tonite.
+ham	OH RITE. WELL IM WITH MY BEST MATE PETE, WHO I WENT OUT WITH 4 A WEEK+ NOW WERE 2GEVA AGAIN. ITS BEEN LONGER THAN A WEEK.
+ham	Yay can't wait to party together!
+ham	....photoshop makes my computer shut down.
+ham	All boys made fun of me today. Ok i have no problem. I just sent one message just for fun
+ham	That's one of the issues but california is okay. No snow so its manageable
+spam	PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S. I. M. points. Call 08715203652 Identifier Code: 42810 Expires 29/10/0
+ham	Hmmm.... Mayb can try e shoppin area one, but forgot e name of hotel...
+ham	Awesome, that gonna be soon or later tonight?
+ham	I need details about that online job.
+spam	YOU HAVE WON! As a valued Vodafone customer our computer has picked YOU to win a £150 prize. To collect is easy. Just call 09061743386 
+ham	Missing you too.pray inshah allah
+ham	Pls help me tell Ashley that i cant find her number oh
+ham	I am in escape theatre now. . Going to watch KAVALAN in a few minutes
+ham	S.this will increase the chance of winning.
+ham	either way works for me. I am  &lt;#&gt;  years old. Hope that doesnt bother you.
+ham	Maybe you should find something else to do instead???
+ham	Gain the rights of a wife.dont demand it.i am trying as husband too.Lets see
+ham	I liked your new house
+ham	I'm fine. Hope you are also
+ham	Also north carolina and texas atm, you would just go to the gre site and pay for the test results to be sent.
+ham	Same to u...
+ham	yes baby! I need to stretch open your pussy!
+ham	Thanks  and ! Or bomb and date as my phone wanted to say! 
+ham	Ok...
+ham	Hey, a guy I know is breathing down my neck to get him some bud, anyway you'd be able to get a half track to usf tonight?
+ham	"Response" is one of d powerful weapon 2 occupy a place in others 'HEART'... So, always give response 2 who cares 4 U"... Gud night..swt dreams..take care
+ham	Nokia phone is lovly..
+spam	**FREE MESSAGE**Thanks for using the Auction Subscription Service. 18 . 150p/MSGRCVD 2 Skip an Auction txt OUT. 2 Unsubscribe txt STOP CustomerCare 08718726270
+spam	Bored housewives! Chat n date now! 0871750.77.11! BT-national rate 10p/min only from landlines!
+ham	Sorry da..today i wont come to play..i have driving clas..
+ham	I'm really sorry I lit your hair on fire
+ham	Oh! Shit, I thought that was your trip! Loooooool ... That just makes SO much more sense now ... *grins* and the sofa reference was ... The "sleep on a couch" link you sent me ... Wasn't that how you went on your trip ? Oh ... And didn't your babe go with you for that celebration with your rents?
+ham	Okey dokey swashbuckling stuff what oh.
+ham	Watching cartoon, listening music &amp; at eve had to go temple &amp; church.. What about u?
+ham	1. Tension face 2. Smiling face 3. Waste face 4. Innocent face 5.Terror face 6.Cruel face 7.Romantic face 8.Lovable face 9.decent face  &lt;#&gt; .joker face.
+ham	Dip's cell dead. So i m coming with him. U better respond else we shall come back.
+ham	Well. You know what i mean. Texting
+ham	Hi dis is yijue i would be happy to work wif ü all for gek1510...
+ham	Lol! Oops sorry! Have fun. 
+ham	Wat happened to the cruise thing
+ham	I know dat feelin had it with Pete! Wuld get with em , nuther place nuther time mayb?
+spam	lyricalladie(21/F) is inviting you to be her friend. Reply YES-910 or NO-910. See her: www.SMS.ac/u/hmmross STOP? Send STOP FRND to 62468
+ham	The world's most happiest frnds never have the same characters... Dey just have the best understanding of their differences...
+spam	No 1 POLYPHONIC tone 4 ur mob every week! Just txt PT2 to 87575. 1st Tone FREE ! so get txtin now and tell ur friends. 150p/tone. 16 reply HL 4info
+ham	Yeah just open chat and click friend lists. Then make the list. Easy as pie
+ham	alright tyler's got a minor crisis and has to be home sooner than he thought so be here asap
+ham	When/where do I pick you up
+ham	As usual u can call me ard 10 smth.
+ham	New Theory: Argument wins d SITUATION, but loses the PERSON. So dont argue with ur friends just.. . . . kick them &amp; say, I'm always correct.!
+ham	For many things its an antibiotic and it can be used for chest abdomen and gynae infections even bone infections.
+ham	Poor girl can't go one day lmao
+ham	Or just do that 6times
+spam	Todays Vodafone numbers ending with 4882 are selected to a receive a £350 award. If your number matches call 09064019014 to receive your £350 award.
+ham	You have to pls make a note of all she.s exposed to. Also find out from her school if anyone else was vomiting. Is there a dog or cat in the house? Let me know later.
+ham	Japanese Proverb: If one Can do it, U too Can do it, If none Can do it,U must do it Indian version: If one Can do it, LET HIM DO it.. If none Can do it,LEAVE it!! And finally Kerala version: If one can do it, Stop him doing it.. If none can do it, Make a strike against it ...
+ham	Sounds like there could be a lot of time spent in that chastity device boy ... *grins* ... Or take your beatings like a good dog. Going to lounge in a nice long bath now ?
+ham	Its worse if if uses half way then stops. Its better for him to complete it.
+ham	Miserable. They don't tell u that the side effects of birth control are massive gut wrenching cramps for the first 2 months. I didn't sleep at all last night.
+ham	Send me the new number
+ham	Convey my regards to him
+spam	Want the latest Video handset? 750 anytime any network mins? Half price line rental? Reply or call 08000930705 for delivery tomorrow
+ham	2 and half years i missed your friendship:-)
+ham	I cant pick the phone right now. Pls send a message
+ham	Oh for fuck's sake she's in like tallahassee
+ham	Haha, that was the first person I was gonna ask
+spam	ou are guaranteed the latest Nokia Phone, a 40GB iPod MP3 player or a £500 prize! Txt word: COLLECT to No: 83355! IBHltd LdnW15H 150p/Mtmsgrcvd18
+ham	Taka lor. Wat time u wan 2 come n look 4 us?
+spam	* FREE* POLYPHONIC RINGTONE Text SUPER to 87131 to get your FREE POLY TONE of the week now! 16 SN PoBox202 NR31 7ZS subscription 450pw
+ham	"I;m reaching in another 2 stops."
+ham	no, i *didn't* mean to post it. I wrote it, and like so many other times i've ritten stuff to you, i let it sit there. it WAS what i was feeling at the time. I was angry. Before i left, i hit send, then stop. It wasn't there. I checked on my phone when i got to my car. It wasn't there. You said you didn't sleep, you were bored. So why wouldn't THAT be the time to clean, fold laundry, etc.? At least make the bed?
+spam	Warner Village 83118 C Colin Farrell in SWAT this wkend @Warner Village & get 1 free med. Popcorn!Just show msg+ticket@kiosk.Valid 4-7/12. C t&c @kiosk. Reply SONY 4 mre film offers
+ham	Will you come online today night
+ham	Then anything special?
+ham	I'm in solihull, | do you want anything?
+ham	Will do. Have a good day
+ham	WE REGRET TO INFORM U THAT THE NHS HAS MADE A MISTAKE.U WERE NEVER ACTUALLY BORN.PLEASE REPORT 2 YOR LOCAL HOSPITAL 2B TERMINATED.WE R SORRY 4 THE INCONVENIENCE
+ham	Love that holiday Monday feeling even if I have to go to the dentists in an hour
+ham	I am on the way to tirupur.
+spam	Goal! Arsenal 4 (Henry, 7 v Liverpool 2 Henry scores with a simple shot from 6 yards from a pass by Bergkamp to give Arsenal a 2 goal margin after 78 mins.
+ham	You've already got a flaky parent. It'snot supposed to be the child's job to support the parent...not until they're The Ride age anyway. I'm supposed to be there to support you. And now i've hurt you. unintentional. But hurt nonetheless.
+ham	We took hooch for a walk toaday and i fell over! Splat! Grazed my knees and everything! Should have stayed at home! See you tomorrow! 
+ham	Just dropped em off, omw back now
+spam	This is the 2nd time we have tried 2 contact u. U have won the 750 Pound prize. 2 claim is easy, call 08712101358 NOW! Only 10p per min. BT-national-rate
+ham	Sitting in mu waiting for everyone to get out of my suite so I can take a shower
+ham	Re your call; You didn't see my facebook huh?
+ham	G says you never answer your texts, confirm/deny
+ham	Its so common hearin How r u? Wat r u doing? How was ur day? So let me ask u something different. Did u smile today? If not, do it now.... Gud evng.
+ham	Hi Dear Call me its urgnt. I don't know whats your problem. You don't want to work or if you have any other problem at least tell me. Wating for your reply.
+ham	Oh yah... We never cancel leh... Haha 
+ham	We can go 4 e normal pilates after our intro...  
+ham	Ok... Let u noe when i leave my house.
+ham	Oh yes, why is it like torture watching england?
+ham	Wanna do some art?! :D
+ham	Just hopeing that wasn‘t too pissed up to remember and has gone off to his sisters or something!
+spam	Got what it takes 2 take part in the WRC Rally in Oz? U can with Lucozade Energy! Text RALLY LE to 61200 (25p), see packs or lucozade.co.uk/wrc & itcould be u!
+spam	Hi, the SEXYCHAT girls are waiting for you to text them. Text now for a great night chatting. send STOP to stop this service
+ham	Good morning, my boytoy! How's those yummy lips ? Where's my sexy buns now ? What do you do ? Do you think of me ? Do you crave me ? Do you need me ?
+ham	Match started.india  &lt;#&gt;  for 2
+ham	Once free call me sir.
+ham	Hey do you want anything to buy:)
+ham	Hey babe, how's it going ? Did you ever figure out where your going for New Years ?
+ham	K..k.:)congratulation ..
+ham	G wants to know where the fuck you are
+ham	No it was cancelled yeah baby! Well that sounds important so i understand my darlin give me a ring later on this fone love Kate x
+ham	Tomarrow i want to got to court. At  &lt;DECIMAL&gt; . So you come to bus stand at 9.
+ham	Ü go home liao? Ask dad to pick me up at 6...
+ham	Omg you can make a wedding chapel in frontierville? Why do they get all the good stuff?
+ham	I'm eatin now lor, but goin back to work soon... E mountain deer show huh... I watch b4 liao, very nice...
+ham	Check mail.i have mailed varma and kept copy to you regarding membership.take care.insha allah.
+ham	Wrong phone! This phone! I answer this one but assume the other is people i don't well
+ham	Anyway I don't think I can secure anything up here, lemme know if you want me to drive down south and chill
+ham	I'm already back home so no probably not
+spam	Great News! Call FREEFONE 08006344447 to claim your guaranteed £1000 CASH or £2000 gift. Speak to a live operator NOW!
+spam	Hi this is Amy, we will be sending you a free phone number in a couple of days, which will give you an access to all the adult parties...
+ham	I am in bus on the way to calicut
+ham	Hi its me you are probably having too much fun to get this message but i thought id txt u cos im bored! and james has been farting at me all night
+ham	hi baby im sat on the bloody bus at the mo and i wont be home until about 7:30 wanna do somethin later? call me later ortxt back jess xx
+spam	Welcome to Select, an O2 service with added benefits. You can now call our specially trained advisors FREE from your mobile by dialling 402.
+ham	I lost 4 pounds since my doc visit last week woot woot! Now I'm gonna celebrate by stuffing my face!
+ham	U coming back 4 dinner rite? Dad ask me so i re confirm wif u...
+ham	Doing my masters. When will you buy a bb cos i have for sale and how's bf
+ham	Ahhhh...just woken up!had a bad dream about u tho,so i dont like u right now :) i didnt know anything about comedy night but i guess im up for it.
+ham	I'm vivek:)i got call from your number.
+ham	Why didn't u call on your lunch?
+ham	What i mean was i left too early to check, cos i'm working a 9-6.
+ham	I want  &lt;#&gt;  rs da:)do you have it?
+ham	A bit of Ur smile is my hppnss, a drop of Ur tear is my sorrow, a part of Ur heart is my life, a heart like mine wil care for U, forevr as my GOODFRIEND
+ham	Yup ok...
+ham	I want to see your pretty pussy...
+spam	Dear Voucher holder Have your next meal on us. Use the following link on your pc 2 enjoy a 2 4 1 dining experiencehttp://www.vouch4me.com/etlp/dining.asp
+ham	A few people are at the game, I'm at the mall with iouri and kaila
+spam	URGENT! We are trying to contact U. Todays draw shows that you have won a £2000 prize GUARANTEED. Call 09058094507 from land line. Claim 3030. Valid 12hrs only
+spam	You can donate £2.50 to UNICEF's Asian Tsunami disaster support fund by texting DONATE to 864233. £2.50 will be added to your next bill
+ham	Future is not what we planned for tomorrow.....! it is the result of what we do today...! Do the best in present... enjoy the future.
+ham	I will cme i want to go to hos 2morow. After that i wil cme. This what i got from her dear what to do. She didnt say any time
+ham	We are supposed to meet to discuss abt our trip... Thought xuhui told you? In the afternoon. Thought we can go for lesson after that
+ham	Hey come online! Use msn... We are all there
+ham	I'm fine. Hope you are good. Do take care.
+ham	Oops I was in the shower when u called. Hey a parking garage collapsed at university hospital. See I'm not crazy. Stuff like that DOES happen.
+ham	Aiyo u so poor thing... Then u dun wan 2 eat? U bathe already?
+ham	Yar... I tot u knew dis would happen long ago already.
+ham	You are gorgeous! keep those pix cumming :) thank you!
+ham	A boy was late 2 home. His father: "POWER OF FRNDSHIP"
+ham	JADE ITS PAUL. Y DIDN’T U TXT ME? DO U REMEMBER ME FROM BARMED? I WANT 2 TALK 2 U! TXT ME
+ham	Spending new years with my brother and his family. Lets plan to meet next week. Are you ready to be spoiled? :)
+ham	So what u doing today?
+ham	I said its okay. Sorry
+ham	Slept? I thinkThis time ( &lt;#&gt;  pm) is not dangerous
+ham	Networking job is there.
+spam	goldviking (29/M) is inviting you to be his friend. Reply YES-762 or NO-762 See him: www.SMS.ac/u/goldviking STOP? Send STOP FRND to 62468
+ham	Dont let studying stress you out. L8r.
+ham	That's y u haf 2 keep me busy...
+ham	No rushing. I'm not working. I'm in school so if we rush we go hungry.
+ham	Which channel:-):-):):-).
+ham	So your telling me I coulda been your real Valentine and I wasn't? U never pick me for NOTHING!!
+spam	Phony £350 award - Todays Voda numbers ending XXXX are selected to receive a £350 award. If you have a match please call 08712300220 quoting claim code 3100 standard rates app
+ham	We made it! Eta at taunton is 12:30 as planned, hope that‘s still okday?! Good to see you! :-xx
+ham	I'm hungry buy smth home...
+ham	"HEY KATE, HOPE UR OK... WILL GIVE U A BUZ WEDLUNCH. GO OUTSOMEWHERE 4 ADRINK IN TOWN..CUD GO 2WATERSHD 4 A BIT? PPL FROMWRK WILL BTHERE. LOVE PETEXXX."
+ham	My drive can only be read. I need to write
+ham	Just looked it up and addie goes back Monday, sucks to be her
+ham	Happy new year. Hope you are having a good semester
+ham	Esplanade lor. Where else...
+ham	Can you talk with me..
+ham	Hmph. Go head, big baller.
+ham	Well its not like you actually called someone a punto. That woulda been worse.
+ham	Nope. Since ayo travelled, he has forgotten his guy
+ham	You still around? Looking to pick up later
+spam	CDs 4u: Congratulations ur awarded £500 of CD gift vouchers or £125 gift guaranteed & Freeentry 2 £100 wkly draw xt MUSIC to 87066 TnCs www.ldew.com1win150ppmx3age16 
+ham	There's someone here that has a year  &lt;#&gt;  toyota camry like mr olayiwola's own. Mileage is  &lt;#&gt; k.its clean but i need to know how much will it sell for. If i can raise the dough for it how soon after landing will it sell. Holla back.
+ham	Guess which pub im in? Im as happy as a pig in clover or whatever the saying is! 
+ham	ILL B DOWN SOON
+ham	Oh k. . I will come tomorrow
+ham	Go fool dont cheat others ok
+ham	My mobile number.pls sms ur mail id.convey regards to achan,amma.Rakhesh.Qatar
+ham	By the way, 'rencontre' is to meet again. Mountains dont....
+spam	You have WON a guaranteed £1000 cash or a £2000 prize. To claim yr prize call our customer service representative on 08714712412 between 10am-7pm Cost 10p
+ham	U attend ur driving lesson how many times a wk n which day?
+ham	Uncle G, just checking up on you. Do have a rewarding month
+ham	Hello boytoy ! Geeee ... I'm missing you today. I like to send you a tm and remind you I'm thinking of you ... And you are loved ... *loving kiss*
+ham	I think the other two still need to get cash but we can def be ready by 9
+ham	Hey gals...U all wanna meet 4 dinner at nìte? 
+spam	Dear 0776xxxxxxx U've been invited to XCHAT. This is our final attempt to contact u! Txt CHAT to 86688 150p/MsgrcvdHG/Suite342/2Lands/Row/W1J6HL LDN 18yrs
+ham	Babe ! What are you doing ? Where are you ? Who are you talking to ? Do you think of me ? Are you being a good boy? Are you missing me? Do you love me ?
+ham	Great! How is the office today?
+ham	It's cool, we can last a little while. Getting more any time soon?
+ham	:-( sad puppy noise
+ham	Yes its possible but dint try. Pls dont tell to any one k
+ham	Anyway holla at me whenever you're around because I need an excuse to go creep on people in sarasota
+ham	Where you. What happen
+ham	I was gonna ask you lol but i think its at 7
+spam	Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send GO to 86688 only 150p/meg. CC: 08718720201 HG/Suite342/2lands Row/W1j6HL
+spam	PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S.I.M. points. Call 08715203685 Identifier Code:4xx26 Expires 13/10/04
+ham	Go chase after her and run her over while she's crossing the street
+spam	I'd like to tell you my deepest darkest fantasies. Call me 09094646631 just 60p/min. To stop texts call 08712460324 (nat rate)
+ham	Is there coming friday is leave for pongal?do you get any news from your work place.
+ham	Hey... Very inconvenient for your sis a not huh?
+ham	Ok i vl..do u know i got adsense approved..
+ham	* Was really good to see you the other day dudette, been missing you!
+ham	I want to go to perumbavoor
+ham	How many times i told in the stage all use to laugh. You not listen aha.
+spam	You won't believe it but it's true. It's Incredible Txts! Reply G now to learn truly amazing things that will blow your mind. From O2FWD only 18p/txt
+ham	(You didn't hear it from me)
+ham	Thanks for being there for me just to talk to on saturday. You are very dear to me. I cherish having you as a brother and role model.
+ham	Pls clarify back if an open return ticket that i have can be preponed for me to go back to kerala.
+spam	Natalie (20/F) is inviting you to be her friend. Reply YES-165 or NO-165 See her: www.SMS.ac/u/natalie2k9 STOP? Send STOP FRND to 62468
+ham	She ran off with a younger man. we will make pretty babies together :)
+spam	Jamster! To get your free wallpaper text HEART to 88888 now! T&C apply. 16 only. Need Help? Call 08701213186.
+ham	O ic lol. Should play 9 doors sometime yo
+ham	Dunno, my dad said he coming home 2 bring us out 4 lunch. Yup i go w u lor. I call u when i reach school lor...
+ham	We have sent JD for Customer Service cum Accounts Executive to ur mail id, For details contact us
+ham	Desires- u going to doctor 4 liver. And get a bit stylish. Get ur hair managed. Thats it.
+ham	Hmmm.still we dont have opener?
+ham	Yeah so basically any time next week you can get away from your mom &amp; get up before 3
+ham	Edison has rightly said, "A fool can ask more questions than a wise man can answer" Now you know why all of us are speechless during ViVa.. GM,GN,GE,GNT:-)
+ham	I will vote for wherever my heart guides me
+ham	With my sis lor... We juz watched italian job.
+ham	Tick, tick, tick .... Where are you ? I could die of loneliness you know ! *pouts* *stomps feet* I need you ...
+ham	Lmao you know me so well...
+spam	Double Mins & Double Txt & 1/2 price Linerental on Latest Orange Bluetooth mobiles. Call MobileUpd8 for the very latest offers. 08000839402 or call2optout/LF56
+ham	Am on a train back from northampton so i'm afraid not! I'm staying skyving off today ho ho! Will be around wednesday though. Do you fancy the comedy club this week by the way?
+ham	Goodnight da thangam I really miss u dear.
+ham	Hey next sun 1030 there's a basic yoga course... at bugis... We can go for that... Pilates intro next sat.... Tell me what time you r free
+ham	Geeeee ... Your internet is really bad today, eh ?
+spam	Free video camera phones with Half Price line rental for 12 mths and 500 cross ntwk mins 100 txts. Call MobileUpd8 08001950382 or Call2OptOut/674
+ham	I think i am disturbing her da
+ham	Sorry, I'll call you  later. I am in meeting sir.
+ham	Havent stuck at orchard in my dad's car. Going 4 dinner now. U leh? So r they free tonight?
+ham	Ok i also wan 2 watch e 9 pm show...
+ham	I dunno lei... Like dun haf...
+ham	But your brother transfered only  &lt;#&gt;  +  &lt;#&gt; . Pa.
+ham	I calls you later. Afternoon onwords mtnl service get problem in south mumbai. I can hear you but you cann't listen me.
+spam	83039 62735=£450 UK Break AccommodationVouchers terms & conditions apply. 2 claim you mustprovide your claim number which is 15541 
+ham	Talk to g and x about that
+ham	Hai dear friends... This is my new &amp; present number..:) By Rajitha Raj (Ranju)
+spam	5p 4 alfie Moon's Children in need song on ur mob. Tell ur m8s. Txt Tone charity to 8007 for Nokias or Poly charity for polys: zed 08701417012 profit 2 charity.
+ham	As in different styles?
+spam	WIN a £200 Shopping spree every WEEK Starting NOW. 2 play text STORE to 88039. SkilGme. TsCs08714740323 1Winawk! age16 £1.50perweeksub.
+ham	Gud ni8 dear..slp well..take care..swt dreams..Muah..
+ham	I want to sent  &lt;#&gt; mesages today. Thats y. Sorry if i hurts
+spam	This is the 2nd attempt to contract U, you have won this weeks top prize of either £1000 cash or £200 prize. Just call 09066361921
+ham	Well, i'm glad you didn't find it totally disagreeable ... Lol
+ham	Guy, no flash me now. If you go call me, call me. How madam. Take care oh.
+spam	Do you want a New Nokia 3510i colour phone DeliveredTomorrow? With 300 free minutes to any mobile + 100 free texts + Free Camcorder reply or call 08000930705.
+ham	Mark works tomorrow. He gets out at 5. His work is by your house so he can meet u afterwards.
+ham	"Keep ur problems in ur heart, b'coz nobody will fight for u. Only u &amp; u have to fight for ur self &amp; win the battle. -VIVEKANAND- G 9t.. SD..
+ham	Yeah, give me a call if you've got a minute
+ham	"HI BABE UAWAKE?FEELLIKW SHIT.JUSTFOUND OUT VIA ALETTER THATMUM GOTMARRIED 4thNOV.BEHIND OURBACKS – FUCKINNICE!SELFISH,DEVIOUSBITCH.ANYWAY,I’L CALL U"
+ham	Amazing : If you rearrange these letters it gives the same meaning... Dormitory = Dirty room Astronomer = Moon starer The eyes = They see Election results = Lies lets recount Mother-in-law = Woman Hitler Eleven plus two =Twelve plus one Its Amazing... !:-)
+ham	Aiya we discuss later lar... Pick ü up at 4 is it?
+ham	Hey happy birthday...
+ham	Sorry i missed your call. Can you please call back.
+ham	Omg if its not one thing its another. My cat has worms :/ when does this bad day end?
+ham	Good morning, im suffering from fever and dysentry ..will not be able to come to office today.
+ham	I wont do anything de.
+ham	What type of stuff do you sing?
+ham	St andre, virgil's cream
+ham	No no. I will check all rooms befor activities
+ham	My fri ah... Okie lor,goin 4 my drivin den go shoppin after tt...
+ham	Gokila is talking with you aha:)
+ham	Hi Shanil,Rakhesh here.thanks,i have exchanged the uncut diamond stuff.leaving back. Excellent service by Dino and Prem.
+ham	K.k.this month kotees birthday know?
+ham	But i'm really really broke oh. No amount is too small even  &lt;#&gt; 
+ham	Sorry about that this is my mates phone and i didnt write it love Kate
+spam	TheMob>Hit the link to get a premium Pink Panther game, the new no. 1 from Sugababes, a crazy Zebra animation or a badass Hoody wallpaper-all 4 FREE!
+ham	Ah, well that confuses things, doesnt it? I thought was friends with now. Maybe i did the wrong thing but i already sort of invited -tho he may not come cos of money.
+ham	Aight, call me once you're close
+ham	Nope thats fine. I might have a nap tho! 
+spam	This msg is for your mobile content order It has been resent as previous attempt failed due to network error Queries to customersqueries@netvision.uk.com
+ham	In other news after hassling me to get him weed for a week andres has no money. HAUGHAIGHGTUJHYGUJ
+ham	A Boy loved a gal. He propsd bt she didnt mind. He gv lv lttrs, Bt her frnds threw thm. Again d boy decided 2 aproach d gal , dt time a truck was speeding towards d gal. Wn it was about 2 hit d girl,d boy ran like hell n saved her. She asked 'hw cn u run so fast?' D boy replied "Boost is d secret of my energy" n instantly d girl shouted "our energy" n Thy lived happily 2gthr drinking boost evrydy Moral of d story:- I hv free msgs:D;): gud ni8
+ham	I wnt to buy a BMW car urgently..its vry urgent.but hv a shortage of  &lt;#&gt; Lacs.there is no source to arng dis amt. &lt;#&gt; lacs..thats my prob
+ham	Ding me on ya break fassyole! Blacko from londn
+ham	I REALLY NEED 2 KISS U I MISS U MY BABY FROM UR BABY 4EVA
+ham	The sign of maturity is not when we start saying big things.. But actually it is, when we start understanding small things... *HAVE A NICE EVENING* BSLVYL
+ham	Oh you got many responsibilities.
+spam	You have 1 new message. Please call 08715205273
+ham	I've reached sch already...
+spam	December only! Had your mobile 11mths+? You are entitled to update to the latest colour camera mobile for Free! Call The Mobile Update VCo FREE on 08002986906 
+ham	U definitely need a module from e humanities dis sem izzit? U wan 2 take other modules 1st?
+ham	Argh why the fuck is nobody in town ;_;
+spam	Get 3 Lions England tone, reply lionm 4 mono or lionp 4 poly. 4 more go 2 www.ringtones.co.uk, the original n best. Tones 3GBP network operator rates apply.
+ham	Thanks. Fills me with complete calm and reassurance! 
+ham	Aslamalaikkum....insha allah tohar beeen muht albi mufti mahfuuz...meaning same here....
+ham	Are you driving or training?
+ham	Lol for real. She told my dad I have cancer
+spam	PRIVATE! Your 2003 Account Statement for 078
+ham	Oops I did have it,  &lt;#&gt; ?
+ham	"NOT ENUFCREDEIT TOCALL.SHALL ILEAVE UNI AT 6 +GET A BUS TO YOR HOUSE?"
+ham	Hi Chikku, send some nice msgs
+ham	He is impossible to argue with and he always treats me like his sub, like he never released me ... Which he did and I will remind him of that if necessary
+ham	After my work ah... Den 6 plus lor... U workin oso rite... Den go orchard lor, no other place to go liao...
+ham	To the wonderful Okors, have a great month. We cherish you guys and wish you well each day. MojiBiola
+ham	Cuz ibored. And don wanna study
+ham	Wot about on wed nite I am 3 then but only til 9!
+ham	Rose for red,red for blood,blood for heart,heart for u. But u for me.... Send tis to all ur friends.. Including me.. If u like me.. If u get back, 1-u r poor in relation! 2-u need some 1 to support 3-u r frnd 2 many 4-some1 luvs u 5+- some1 is praying god to marry u.:-) try it....
+ham	Any way where are you and what doing.
+ham	That sucks. I'll go over so u can do my hair. You'll do it free right?
+ham	it's still not working. And this time i also tried adding zeros. That was the savings. The checking is  &lt;#&gt; 
+ham	Hmm... Dunno leh, mayb a bag 4 goigng out dat is not too small. Or jus anything except perfume, smth dat i can keep.
+ham	Sday only joined.so training we started today:)
+ham	Sorry * was at the grocers.
+ham	There are some nice pubs near here or there is Frankie n Bennys near the warner cinema?
+spam	YOU VE WON! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TC s, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins
+ham	Yup... I havent been there before... You want to go for the yoga? I can call up to book 
+ham	Oh shut it. Omg yesterday I had a dream that I had 2 kids both boys. I was so pissed. Not only about the kids but them being boys. I even told mark in my dream that he was changing diapers cause I'm not getting owed in the face.
+ham	Yeah I imagine he would be really gentle. Unlike the other docs who treat their patients like turkeys.
+spam	FREE for 1st week! No1 Nokia tone 4 ur mobile every week just txt NOKIA to 8077 Get txting and tell ur mates. www.getzed.co.uk POBox 36504 W45WQ 16+ norm150p/tone
+ham	Now that you have started dont stop. Just pray for more good ideas and anything i see that can help you guys i.ll forward you a link.
+ham	Hi darlin im on helens fone im gonna b up the princes 2 nite please come up tb love Kate
+ham	I'm in office now da:)where are you?
+ham	Aiyar u so poor thing... I give u my support k... Jia you! I'll think of u...
+ham	Oh unintentionally not bad timing. Great. Fingers  the trains play along! Will give fifteen min warning.
+spam	Get your garden ready for summer with a FREE selection of summer bulbs and seeds worth £33:50 only with The Scotsman this Saturday. To stop go2 notxt.co.uk
+ham	K..then come wenever u lik to come and also tel vikky to come by getting free time..:-)
+ham	Pls call me da. What happen.
+ham	Happy new year to u and ur family...may this new year bring happiness , stability and tranquility to ur vibrant colourful life:):)
+ham	No problem with the renewal. I.ll do it right away but i dont know his details.
+ham	Idk. I'm sitting here in a stop and shop parking lot right now bawling my eyes out because i feel like i'm a failure in everything. Nobody wants me and now i feel like i'm failing you.
+ham	Haven't left yet so probably gonna be here til dinner
+ham	Like  &lt;#&gt; , same question
+ham	MY NEW YEARS EVE WAS OK. I WENT TO A PARTY WITH MY BOYFRIEND. WHO IS THIS SI THEN HEY
+ham	Sir, I need Velusamy sir's date of birth and company bank facilities details.
+ham	K k:) sms chat with me.
+ham	I will come with karnan car. Please wait till 6pm will directly goto doctor.
+ham	No but the bluray player can
+ham	Ok... Then r we meeting later?
+ham	Lol no. I just need to cash in my nitros. Hurry come on before I crash out!
+ham	Just send a text. We'll skype later.
+ham	Ok leave no need to ask
+spam	Congrats 2 mobile 3G Videophones R yours. call 09063458130 now! videochat wid ur mates, play java games, Dload polypH music, noline rentl. bx420. ip4. 5we. 150p
+ham	Ü still got lessons?  Ü in sch?
+ham	Y she dun believe leh? I tot i told her it's true already. I thk she muz c us tog then she believe.
+ham	Oh did you charge camera
+ham	I‘ve got some salt, you can rub it in my open wounds if you like!
+ham	Now i'm going for lunch.
+ham	I'm in school now n i'll be in da lab doing some stuff give me a call when ü r done.
+ham	Oh k. . I will come tomorrow
+ham	Aight, text me tonight and we'll see what's up
+ham	U 2.
+ham	Water logging in desert. Geoenvironmental implications.
+ham	Raji..pls do me a favour. Pls convey my Birthday wishes to Nimya. Pls. Today is her birthday.
+ham	Company is very good.environment is terrific and food is really nice:)
+ham	Very strange.  and  are watching the 2nd one now but i'm in bed. Sweet dreams, miss u 
+spam	SMS AUCTION - A BRAND NEW Nokia 7250 is up 4 auction today! Auction is FREE 2 join & take part! Txt NOKIA to 86021 now!
+ham	Hi hope u r both ok, he said he would text and he hasn't, have u seen him, let me down gently please 
+ham	Babe! I fucking love you too !! You know? Fuck it was so good to hear your voice. I so need that. I crave it. I can't get enough. I adore you, Ahmad *kisses*
+ham	K sure am in my relatives home. Sms me de. Pls:-)
+ham	I sent them. Do you like?
+ham	Fuuuuck I need to stop sleepin, sup
+ham	I'm in town now so i'll jus take mrt down later.
+ham	I just cooked a rather nice salmon a la you
+ham	I uploaded mine to Facebook
+ham	WHAT TIME U WRKIN?
+ham	Okie
+spam	ree entry in 2 a weekly comp for a chance to win an ipod. Txt POD to 80182 to get entry (std txt rate) T&C's apply 08452810073 for details 18+
+spam	Our records indicate u maybe entitled to 5000 pounds in compensation for the Accident you had. To claim 4 free reply with CLAIM to this msg. 2 stop txt STOP
+ham	Sorry, I'll call later
+ham	Oh oh... Den muz change plan liao... Go back have to yan jiu again...
+ham	It's wylie, you in tampa or sarasota?
+ham	Ok... Take ur time n enjoy ur dinner...
+ham	Darren was saying dat if u meeting da ge den we dun meet 4 dinner. Cos later u leave xy will feel awkward. Den u meet him 4 lunch lor.
+spam	Spook up your mob with a Halloween collection of a logo & pic message plus a free eerie tone, txt CARD SPOOK to 8007 zed 08701417012150p per logo/pic 
+ham	I like cheap! But i‘m happy to splash out on the wine if it makes you feel better..
+ham	She.s fine. I have had difficulties with her phone. It works with mine. Can you pls send her another friend request.
+ham	Ugh my leg hurts. Musta overdid it on mon.
+spam	Call Germany for only 1 pence per minute! Call from a fixed line via access number 0844 861 85 85. No prepayment. Direct access! www.telediscount.co.uk
+spam	YOU VE WON! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TC s, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins
+ham	WOT STUDENT DISCOUNT CAN U GET ON BOOKS?
+ham	Me fine..absolutly fine
+ham	How come she can get it? Should b quite diff to guess rite...
+spam	Had your mobile 11mths ? Update for FREE to Oranges latest colour camera mobiles & unlimited weekend calls. Call Mobile Upd8 on freefone 08000839402 or 2StopTxt
+ham	I will reach ur home in  &lt;#&gt;  minutes
+ham	Babe, I'm answering you, can't you see me ? Maybe you'd better reboot YM ... I got the photo ... It's great !
+ham	Hi.what you think about match?
+ham	I know you are thinkin malaria. But relax, children cant handle malaria. She would have been worse and its gastroenteritis. If she takes enough to replace her loss her temp will reduce. And if you give her malaria meds now she will just vomit. Its a self limiting illness she has which means in a few days it will completely stop
+ham	Dai i downloaded but there is only exe file which i can only run that exe after installing.
+ham	It is only yesterday true true.
+ham	K.k.how is your business now?
+ham	3 pa but not selected.
+spam	Natalja (25/F) is inviting you to be her friend. Reply YES-440 or NO-440 See her: www.SMS.ac/u/nat27081980 STOP? Send STOP FRND to 62468
+ham	I keep ten rs in my shelf:) buy two egg.
+ham	I am late. I will be there at
+ham	Well thats nice. Too bad i cant eat it
+ham	I accidentally brought em home in the box
+ham	Pls she needs to dat slowly or she will vomit more.
+ham	I have to take exam with in march 3
+ham	Jane babes not goin 2 wrk, feel ill after lst nite. Foned in already cover 4 me chuck.:-)
+ham	5 nights...We nt staying at port step liao...Too ex
+ham	If I die I want u to have all my stuffs.
+ham	"OH FUCK. JUSWOKE UP IN A BED ON A BOATIN THE DOCKS. SLEPT WID 25 YEAR OLD. SPINOUT! GIV U DA GOSSIP L8R. XXX"
+ham	Smile in Pleasure Smile in Pain Smile when trouble pours like Rain Smile when sum1 Hurts U Smile becoz SOMEONE still Loves to see u Smiling!!
+ham	Prabha..i'm soryda..realy..frm heart i'm sory
+ham	I re-met alex nichols from middle school and it turns out he's dealing!
+spam	PRIVATE! Your 2003 Account Statement for <fone no> shows 800 un-redeemed S. I. M. points. Call 08715203656 Identifier Code: 42049 Expires 26/10/04
+ham	It means u could not keep ur words.
+ham	Nope, I'm still in the market
+ham	I realise you are a busy guy and i'm trying not to be a bother. I have to get some exams outta the way and then try the cars. Do have a gr8 day
+spam	YOU ARE CHOSEN TO RECEIVE A £350 AWARD! Pls call claim number 09066364311 to collect your award which you are selected to receive as a valued mobile customer.
+ham	Hey what how about your project. Started aha da.
+ham	Ok cool. See ya then.
+ham	Am on the uworld site. Am i buying the qbank only or am i buying it with the self assessment also?
+ham	Your opinion about me? 1. Over 2. Jada 3. Kusruthi 4. Lovable 5. Silent 6. Spl character 7. Not matured 8. Stylish 9. Simple Pls reply..
+spam	Someonone you know is trying to contact you via our dating service! To find out who it could be call from your mobile or landline 09064015307 BOX334SK38ch 
+ham	Yeah I can still give you a ride
+ham	Jay wants to work out first, how's 4 sound?
+ham	Gud gud..k, chikku tke care.. sleep well gud nyt
+ham	Its a part of checking IQ
+ham	Hmm thinking lor...
+ham	Of course ! Don't tease me ... You know I simply must see ! *grins* ... Do keep me posted my prey ... *loving smile* *devouring kiss*
+ham	thanks for the temales it was wonderful. Thank. Have a great week.
+ham	Thank you princess! I want to see your nice juicy booty...
+ham	Haven't eaten all day. I'm sitting here staring at this juicy pizza and I can't eat it. These meds are ruining my life.
+ham	Gud ni8 dear..slp well..take care..swt dreams..Muah..
+ham	U come n search tat vid..not finishd..
+ham	K I'm leaving soon, be there a little after 9
+spam	Urgent! Please call 09061213237 from a landline. £5000 cash or a 4* holiday await collection. T &Cs SAE PO Box 177 M227XY. 16+
+ham	Yeah work is fine, started last week, all the same stuff as before, dull but easy and guys are fun!
+ham	You do your studies alone without anyones help. If you cant no need to study.
+ham	Please tell me not all of my car keys are in your purse
+ham	I didnt get anything da
+ham	Ok... Sweet dreams...
+ham	Well she's in for a big surprise!
+ham	As usual..iam fine, happy &amp; doing well..:)
+ham	1 in cbe. 2 in chennai.
+ham	Can help u swoop by picking u up from wherever ur other birds r meeting if u want.
+ham	If anyone calls for a treadmill say you'll buy it. Make sure its working. I found an ad on Craigslist selling for $ &lt;#&gt; .
+ham	I absolutely LOVE South Park! I only recently started watching the office.
+ham	Did you see that film:)
+ham	Pls speak with me. I wont ask anything other then you friendship.
+ham	Storming msg: Wen u lift d phne, u say "HELLO" Do u knw wt is d real meaning of HELLO?? . . . It's d name of a girl..! . . . Yes.. And u knw who is dat girl?? "Margaret Hello" She is d girlfrnd f Grahmbell who invnted telphone... . . . . Moral:One can 4get d name of a person, bt not his girlfrnd... G o o d n i g h t . . .@
+ham	Gud ni8.swt drms.take care
+ham	HI DARLIN ITS KATE ARE U UP FOR DOIN SOMETHIN TONIGHT? IM GOING TO A PUB CALLED THE SWAN OR SOMETHING WITH MY PARENTS FOR ONE DRINK SO PHONE ME IF U CAN
+ham	Anything lar then ü not going home 4 dinner?
+ham	"ER, ENJOYIN INDIANS AT THE MO..yeP. SaLL gOoD HehE ;> hows bout u shexy? Pete Xx"
+spam	If you don't, your prize will go to another customer. T&C at www.t-c.biz 18+ 150p/min Polo Ltd Suite 373 London W1J 6HL Please call back if busy 
+ham	Did u fix the teeth?if not do it asap.ok take care.
+ham	So u wan 2 come for our dinner tonight a not?
+ham	Hello.How u doing?What u been up 2?When will u b moving out of the flat, cos I will need to arrange to pick up the lamp, etc. Take care. Hello caroline!
+ham	Its too late:)but its k.wish you the same.
+ham	Hi. Hope ur day * good! Back from walk, table booked for half eight. Let me know when ur coming over.
+ham	Oh yeah clearly it's my fault
+ham	Dunno leh cant remember mayb lor. So wat time r we meeting tmr?
+ham	Best msg: It's hard to be with a person, when u know that one more step foward will make u fall in love.. &amp; One step back can ruin ur friendship.. good night:-) ...
+spam	URGENT! Your Mobile number has been awarded with a £2000 prize GUARANTEED. Call 09061790126 from land line. Claim 3030. Valid 12hrs only 150ppm
+ham	Helloooo... Wake up..! "Sweet" "morning" "welcomes" "You" "Enjoy" "This Day" "with full of joy".. "GUD MRNG".
+ham	Vikky, come around  &lt;TIME&gt; ..
+ham	And how you will do that, princess? :)
+ham	I have gone into get info bt dont know what to do
+ham	Yeah, probably here for a while
+ham	Sent me ur email id soon
+spam	URGENT! You have won a 1 week FREE membership in our £100,000 Prize Jackpot! Txt the word: CLAIM to No: 81010 T&C www.dbuk.net LCCLTD POBOX 4403LDNW1A7RW18
+ham	I'm still pretty weak today .. Bad day ?
+ham	Hey ! Don't forget ... You are MINE ... For ME ... My possession ... MY property ... MMM ... *childish smile* ...
+ham	An excellent thought by a misundrstud frnd: I knw u hate me bt the day wen u'll knw the truth u'll hate urself:-( Gn:-)
+ham	Hey! Congrats 2u2. id luv 2 but ive had 2 go home!
+ham	Dear where you. Call me
+ham	Xy trying smth now. U eat already? We havent...
+spam	Urgent! Please call 09061213237 from landline. £5000 cash or a luxury 4* Canary Islands Holiday await collection. T&Cs SAE PO Box 177. M227XY. 150ppm. 16+
+ham	I donno its in your genes or something
+spam	XMAS iscoming & ur awarded either £500 CD gift vouchers & free entry 2 r £100 weekly draw txt MUSIC to 87066 TnC www.Ldew.com1win150ppmx3age16subscription 
+ham	Alex says he's not ok with you not being ok with it
+ham	Are u coming to the funeral home
+ham	My darling sister. How are you doing. When's school resuming. Is there a minimum wait period before you reapply? Do take care
+ham	I.ll hand her my phone to chat wit u
+ham	Well good morning mr . Hows london treatin' ya treacle?
+ham	I can't make it tonight
+ham	At WHAT TIME should i come tomorrow
+ham	About  &lt;#&gt; bucks. The banks fees are fixed. Better to call the bank and find out.
+ham	I can. But it will tell quite long, cos i haven't finish my film yet...
+ham	Pls ask macho how much is budget for bb bold 2 is cos i saw a new one for  &lt;#&gt;  dollars.
+ham	"Hi missed your Call and my mumHas beendropping red wine all over theplace! what is your adress?"
+ham	Ill be at yours in about 3 mins but look out for me
+ham	What you did in  leave.
+ham	I'm coming back on Thursday. Yay. Is it gonna be ok to get the money. Cheers. Oh yeah and how are you. Everything alright. Hows school. Or do you call it work now
+ham	Jolly good! By the way,  will give u tickets for sat eve 7.30. Speak before then x
+ham	yeah, that's what I was thinking
+ham	K.k:)i'm going to tirunelvali this week to see my uncle ..i already spend the amount by taking dress .so only i want money.i will give it on feb 1
+ham	Here got ur favorite oyster... N got my favorite sashimi... Ok lar i dun say already... Wait ur stomach start rumbling...
+ham	My sister going to earn more than me da.
+spam	Get the official ENGLAND poly ringtone or colour flag on yer mobile for tonights game! Text TONE or FLAG to 84199. Optout txt ENG STOP Box39822 W111WX £1.50
+ham	Hahaha..use your brain dear
+ham	Jus finish watching tv... U?
+ham	K, fyi I'm back in my parents' place in south tampa so I might need to do the deal somewhere else
+ham	Good morning, my Love ... I go to sleep now and wish you a great day full of feeling better and opportunity ... You are my last thought babe, I LOVE YOU *kiss*
+ham	Kothi print out marandratha.
+ham	But we havent got da topic yet rite?
+ham	Ok no problem... Yup i'm going to sch at 4 if i rem correctly...
+ham	Thanks, I'll keep that in mind
+ham	Aah bless! How's your arm?
+ham	Dear Sir,Salam Alaikkum.Pride and Pleasure meeting you today at the Tea Shop.We are pleased to send you our contact number at Qatar.Rakhesh an Indian.Pls save our Number.Respectful Regards.
+ham	Gal n boy walking in d park. gal-can i hold ur hand? boy-y? do u think i would run away? gal-no, jst wana c how it feels walking in heaven with an prince..GN:-)
+ham	What makes you most happy?
+ham	Wishing you a wonderful week.
+ham	Sweet heart how are you?
+ham	Sir, waiting for your letter.
+ham	Dude im no longer a pisces. Im an aquarius now.
+ham	X course it 2yrs. Just so her messages on messenger lik you r sending me
+ham	I think steyn surely get one wicket:)
+ham	Neither [in sterm voice] - i'm studying. All fine with me! Not sure the  thing will be resolved, tho. Anyway. Have a fab hols
+ham	Garbage bags, eggs, jam, bread, hannaford wheat chex
+ham	No. It's not pride. I'm almost  &lt;#&gt;  years old and shouldn't be takin money from my kid. You're not supposed to have to deal with this stuff. This is grownup stuff--why i don't tell you.
+ham	Sounds better than my evening im just doing my costume. Im not sure what time i finish tomorrow but i will txt you at the end.
+ham	My birthday is on feb  &lt;#&gt;  da. .
+ham	So when do you wanna gym?
+ham	You'd like that wouldn't you? Jerk!
+ham	Are u awake? Is there snow there?
+ham	And of course you should make a stink!
+spam	u r subscribed 2 TEXTCOMP 250 wkly comp. 1st wk?s free question follows, subsequent wks charged@150p/msg.2 unsubscribe txt STOP 2 84128,custcare 08712405020
+ham	No go. No openings for that room 'til after thanksgiving without an upcharge.
+ham	When you guys planning on coming over?
+ham	Wat ü doing now?
+ham	My Parents, My Kidz, My Friends n My Colleagues. All screaming.. SURPRISE !! and I was waiting on the sofa.. ... ..... ' NAKED...!
+ham	No sir. That's why i had an 8-hr trip on the bus last week. Have another audition next wednesday but i think i might drive this time.
+ham	Do I? I thought I put it back in the box
+ham	I'm home...
+ham	No one interested. May be some business plan.
+ham	Yup it's at paragon... I havent decided whether 2 cut yet... Hee...
+ham	Good morning princess! Have a great day!
+ham	Guai... Ü shd haf seen him when he's naughty... Ü so free today? Can go jogging...
+ham	Aiyo cos i sms ü then ü neva reply so i wait 4 ü to reply lar. I tot ü havent finish ur lab wat.
+ham	Living is very simple.. Loving is also simple.. Laughing is too simple.. Winning is tooo simple.. But, Being 'SIMPLE' is very difficult...;-) :-)
+ham	Tell me something. Thats okay.
+ham	Ok
+ham	Hmm. Shall i bring a bottle of wine to keep us amused? Just joking! I'll still bring a bottle. Red or white? See you tomorrow
+ham	This is ur face test ( 1 2 3 4 5 6 7 8 9  &lt;#&gt;  ) select any number i will tell ur face astrology.... am waiting. quick reply...
+ham	Hey, iouri gave me your number, I'm wylie, ryan's friend
+ham	Yep get with the program. You're slacking.
+ham	I'm in inside office..still filling forms.don know when they leave me.
+ham	I think your mentor is , but not 100 percent sure.
+spam	Call 09095350301 and send our girls into erotic ecstacy. Just 60p/min. To stop texts call 08712460324 (nat rate)
+spam	Camera - You are awarded a SiPix Digital Camera! call 09061221066 fromm landline. Delivery within 28 days.
+spam	A £400 XMAS REWARD IS WAITING FOR YOU! Our computer has randomly picked you from our loyal mobile customers to receive a £400 reward. Just call 09066380611
+ham	Just trying to figure out when I'm suppose to see a couple different people this week. We said we'd get together but I didn't set dates
+spam	IMPORTANT MESSAGE. This is a final contact attempt. You have important messages waiting out our customer claims dept. Expires 13/4/04. Call 08717507382 NOW!
+ham	Hi mom we might be back later than  &lt;#&gt; 
+spam	dating:i have had two of these. Only started after i sent a text to talk sport radio last week. Any connection do you think or coincidence?
+ham	Lol, oh you got a friend for the dog ?
+ham	Ok., is any problem to u frm him? Wats matter?
+ham	K I'll head out in a few mins, see you there
+ham	Do u konw waht is rael FRIENDSHIP Im gving yuo an exmpel: Jsut ese tihs msg.. Evrey splleing of tihs msg is wrnog.. Bt sitll yuo can raed it wihtuot ayn mitsake.. GOODNIGHT &amp; HAVE A NICE SLEEP..SWEET DREAMS..
+ham	I cant pick the phone right now. Pls send a message
+ham	I don't want you to leave. But i'm barely doing what i can to stay sane. fighting with you constantly isn't helping.
+spam	The current leading bid is 151. To pause this auction send OUT. Customer Care: 08718726270
+spam	Free entry to the gr8prizes wkly comp 4 a chance to win the latest Nokia 8800, PSP or £250 cash every wk.TXT GREAT to 80878 http//www.gr8prizes.com 08715705022
+ham	Somebody set up a website where you can play hold em using eve online spacebucks
+ham	Its sunny in california. The weather's just cool
+spam	You have 1 new message. Call 0207-083-6089
+ham	I can make it up there, squeezed  &lt;#&gt;  bucks out of my dad
+ham	Good day to You too.Pray for me.Remove the teeth as its painful maintaining other stuff.
+ham	How are you babes. Hope your doing ok. I had a shit nights sleep. I fell asleep at 5.I’m knackered and i’m dreading work tonight. What are thou upto tonight. X
+ham	How do friends help us in problems? They give the most stupid suggestion that Lands us into another problem and helps us forgt the previous problem
+ham	I'm at work. Please call
+ham	I will be gentle baby! Soon you will be taking all  &lt;#&gt;  inches deep inside your tight pussy...
+ham	NOT MUCH NO FIGHTS. IT WAS A GOOD NITE!!
+ham	Ok.ok ok..then..whats ur todays plan
+ham	Nt joking seriously i told
+ham	Watching ajith film ah?
+ham	Ooooooh I forgot to tell u I can get on yoville on my phone
+ham	All done, all handed in. Don't know if mega shop in asda counts as celebration but thats what i'm doing!
+ham	I dont know exactly could you ask chechi.
+ham	Dunno lei shd b driving lor cos i go sch 1 hr oni.
+ham	As in i want custom officer discount oh.
+ham	That's necessarily respectful
+ham	Hi. Hope you had a good day. Have a better night.
+ham	And he's apparently bffs with carly quick now
+ham	HARD BUT TRUE: How much you show &amp;  express your love to someone....that much it will hurt when they leave you or you get seperated...!鈥┾??〨ud evening...
+ham	Babes I think I got ur brolly I left it in English wil bring it in 2mrw 4 u luv Franxx
+ham	Hi babe its me thanks for coming even though it didnt go that well!i just wanted my bed! Hope to see you soon love and kisses xxx
+ham	So gd got free ice cream... I oso wan...
+ham	Pls give her prometazine syrup. 5mls then  &lt;#&gt; mins later feed.
+ham	So how many days since then?
+ham	Dear are you angry i was busy dear
+ham	Yup he msg me: is tat yijue? Then i tot it's my group mate cos we meeting today mah... I'm askin if ü leaving earlier or wat mah cos mayb ü haf to walk v far...
+ham	... Are you in the pub?
+ham	There is a first time for everything :)
+ham	Daddy, shu shu is looking 4 u... U wan me 2 tell him u're not in singapore or wat?
+ham	I ask if u meeting da ge tmr nite...
+ham	Gr8. So how do you handle the victoria island traffic. Plus when's the album due
+ham	Nite nite pocay wocay luv u more than n e thing 4eva I promise ring u 2morrowxxxx
+ham	East coast
+ham	You should get more chicken broth if you want ramen unless there's some I don't know about
+ham	My slave! I want you to take 2 or 3 pictures of yourself today in bright light on your cell phone! Bright light!
+ham	Nope. I just forgot. Will show next week
+ham	So how are you really. What are you up to. How's the masters. And so on.
+ham	I'm at bruce &amp; fowler now but I'm in my mom's car so I can't park (long story)
+ham	I dont know oh. Hopefully this month.
+ham	Hi elaine, is today's meeting confirmed?
+ham	Ok k..sry i knw 2 siva..tats y i askd..
+ham	Sorry, I'll call later
+ham	U horrible gal... U knew dat i was going out wif him yest n u still come n ask me...
+ham	Otherwise had part time job na-tuition..
+ham	Oh yeah! And my diet just flew out the window
+spam	Santa Calling! Would your little ones like a call from Santa Xmas eve? Call 09058094583 to book your time.
+ham	You didnt complete your gist oh.
+ham	Er yeah, i will b there at 15:26, sorry! Just tell me which pub/cafe to sit in and come wen u can
+ham	If you can make it any time tonight or whenever you can it's cool, just text me whenever you're around
+ham	If I was I wasn't paying attention
+ham	Thanx a lot 4 ur help!
+ham	You're gonna have to be way more specific than that
+ham	Jesus armand really is trying to tell everybody he can find
+ham	I'm wif him now buying tix lar...
+ham	Mode men or have you left.
+ham	Am slow in using biola's fne
+ham	"What are youdoing later? Sar xxx"
+ham	Hey i've booked the 2 lessons on sun liao...
+ham	Thank you. do you generally date the brothas?
+ham	By the way, make sure u get train to worc foregate street not shrub hill. Have fun night x
+ham	I thought i'd get him a watch, just cos thats the kind of thing u get4an18th. And he loves so much!
+spam	You have won a guaranteed 32000 award or maybe even £1000 cash to claim ur award call free on 0800 ..... (18+). Its a legitimat efreefone number wat do u think???
+ham	Good morning. At the repair shop--the ONLY reason i'm up at this hour.
+ham	And that's fine, I got enough bud to last most of the night at least
+ham	I am back. Good journey! Let me know if you need any of the receipts. Shall i tell you like the pendent?
+ham	So that takes away some money worries
+ham	aight we can pick some up, you open before tonight?
+spam	Latest News! Police station toilet stolen, cops have nothing to go on!
+ham	Sac needs to carry on:)
+ham	Just sing HU. I think its also important to find someone female that know the place well preferably a citizen that is also smart to help you navigate through. Even things like choosing a phone plan require guidance. When in doubt ask especially girls.
+ham	What???? Hello wats talks email address?
+ham	Except theres a chick with huge boobs.
+ham	Im just wondering what your doing right now?
+ham	Wishing you a beautiful day. Each moment revealing even more things to keep you smiling. Do enjoy it.
+spam	"For the most sparkling shopping breaks from 45 per person; call 0121 2025050 or visit www.shortbreaks.org.uk"
+ham	Arun can u transfr me d amt
+ham	Sorry, I'll call later
+ham	If you hear a loud scream in about &lt;#&gt; minutes its cause my Gyno will be shoving things up me that don't belong :/
+spam	December only! Had your mobile 11mths+? You are entitled to update to the latest colour camera mobile for Free! Call The Mobile Update Co FREE on 08002986906
+ham	Ok i thk i got it. Then u wan me 2 come now or wat?
+spam	Txt: CALL to No: 86888 & claim your reward of 3 hours talk time to use from your phone now! Subscribe6GBP/mnth inc 3hrs 16 stop?txtStop www.gamb.tv
+ham	U GOIN OUT 2NITE?
+ham	I will treasure every moment we spend together...
+ham	Shall I bring us a bottle of wine to keep us amused? Only joking! I‘ll bring one anyway
+spam	http//tms. widelive.com/index. wml?id=820554ad0a1705572711&first=true¡C C Ringtone¡
+spam	Get your garden ready for summer with a FREE selection of summer bulbs and seeds worth £33:50 only with The Scotsman this Saturday. To stop go2 notxt.co.uk
+spam	URGENT! Last weekend's draw shows that you have won £1000 cash or a Spanish holiday! CALL NOW 09050000332 to claim. T&C: RSTM, SW7 3SS. 150ppm
+ham	Ok lor.
+ham	I thought slide is enough.
+ham	Yup
+ham	Well obviously not because all the people in my cool college life went home ;_;
+ham	Ok lor ü reaching then message me.
+ham	Where's mummy's boy ? Is he being good or bad ? Is he being positive or negative ? Why is mummy being made to wait? Hmmmm?
+ham	Dhoni have luck to win some big title.so we will win:)
+ham	Yes princess! I want to please you every night. Your wish is my command...
+ham	What Today-sunday..sunday is holiday..so no work..
+ham	No probably  &lt;#&gt; %.
+ham	Really do hope the work doesnt get stressful. Have a gr8 day.
+ham	Have you seen who's back at Holby?!
+ham	Shall call now dear having food
+spam	URGENT We are trying to contact you Last weekends draw shows u have won a £1000 prize GUARANTEED Call 09064017295 Claim code K52 Valid 12hrs 150p pm
+ham	So li hai... Me bored now da lecturer repeating last weeks stuff waste time... 
+ham	, ,  and  picking them up from various points | going 2 yeovil | and they will do the motor project 4 3 hours | and then u take them home. || 12 2 5.30 max. || Very easy
+ham	Also fuck you and your family for going to rhode island or wherever the fuck and leaving me all alone the week I have a new bong &gt;:(
+ham	Ofcourse I also upload some songs
+spam	2p per min to call Germany 08448350055 from your BT line. Just 2p per min. Check PlanetTalkInstant.com for info & T's & C's. Text stop to opt out
+ham	K. I will sent it again
+ham	Oh thanks a lot..i already bought 2 eggs ..
+ham	K. I will sent it again
+ham	U studying in sch or going home? Anyway i'll b going 2 sch later.
+spam	Marvel Mobile Play the official Ultimate Spider-man game (£4.50) on ur mobile right now. Text SPIDER to 83338 for the game & we ll send u a FREE 8Ball wallpaper
+ham	I think if he rule tamilnadu..then its very tough for our people.
+ham	Cool, we shall go and see, have to go to tip anyway. Are you at home, got something to drop in later? So lets go to town tonight! Maybe mum can take us in.
+ham	Good afternoon, my love ... How goes your day ? How did you sleep ? I hope your well, my boytoy ... I think of you ...
+ham	Yes... I trust u to buy new stuff ASAP so I can try it out
+spam	SMS SERVICES. for your inclusive text credits, pls goto www.comuk.net login= 3qxj9 unsubscribe with STOP, no extra charge. help 08702840625.COMUK. 220-CM2 9AE
+ham	Why did I wake up on my own &gt;:(
+ham	Now get step 2 outta the way. Congrats again.
+ham	Love has one law; Make happy the person you love. In the same way friendship has one law; Never make ur friend feel alone until you are alive.... Gud night
+spam	PRIVATE! Your 2003 Account Statement for 07808247860 shows 800 un-redeemed S. I. M. points. Call 08719899229 Identifier Code: 40411 Expires 06/11/04
+ham	Apo all other are mokka players only
+ham	Perhaps * is much easy give your account identification, so i will tomorrow at UNI
+ham	Wait . I will msg after  &lt;#&gt;  min.
+ham	What i told before i tell. Stupid hear after i wont tell anything to you. You dad called to my brother and spoken. Not with me.
+ham	God's love has no limit. God's grace has no measure. God's power has no boundaries. May u have God's endless blessings always in ur life...!! Gud ni8
+ham	I want to be inside you every night...
+ham	Machan you go to gym tomorrow,  i wil come late goodnight.
+ham	Lol they were mad at first but then they woke up and gave in.
+ham	I went to project centre
+ham	It‘s reassuring, in this crazy world.
+ham	Just making dinner, you ?
+ham	Yes. Please leave at  &lt;#&gt; . So that at  &lt;#&gt;  we can leave
+ham	Oh... Okie lor...We go on sat... 
+ham	You are a great role model. You are giving so much and i really wish each day for a miracle but God as a reason for everything and i must say i wish i knew why but i dont. I've looked up to you since i was young and i still do. Have a great day.
+ham	Ya, i'm referin to mei's ex wat... No ah, waitin 4 u to treat, somebody shld b rich liao...So gd, den u dun have to work frm tmr onwards...
+ham	Miles and smiles r made frm same letters but do u know d difference..? smile on ur face keeps me happy even though I am miles away from u.. :-)keep smiling.. Good nyt
+ham	By the way, i've put a skip right outside the front of the house so you can see which house it is. Just pull up before it.
+ham	Can you pls send me that company name. In saibaba colany
+ham	No. I dont want to hear anything
+ham	You are a big chic. Common. Declare
+ham	Thats cool. I want to please you...
+ham	Going to join tomorrow.
+spam	You are awarded a SiPix Digital Camera! call 09061221061 from landline. Delivery within 28days. T Cs Box177. M221BP. 2yr warranty. 150ppm. 16 . p p£3.99
+ham	I want to tell you how bad I feel that basically the only times I text you lately are when I need drugs
+spam	PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S.I.M. points. Call 08718738001 Identifier Code: 49557 Expires 26/11/04
+ham	Total disappointment, when I texted you was the craziest shit got :(
+ham	Its just the effect of irritation. Just ignore it
+ham	What about this one then.
+ham	I think that tantrum's finished so yeah I'll be by at some point
+ham	Compliments to you. Was away from the system. How your side.
+ham	happened here while you were adventuring
+ham	Hey chief, can you give me a bell when you get this. Need to talk to you about this royal visit on the 1st june. 
+ham	Ok which your another number
+ham	I know you are thinkin malaria. But relax, children cant handle malaria. She would have been worse and its gastroenteritis. If she takes enough to replace her loss her temp will reduce. And if you give her malaria meds now she will just vomit. Its a self limiting illness she has which means in a few days it will completely stop
+ham	Aiyah ok wat as long as got improve can already wat...
+spam	Want explicit SEX in 30 secs? Ring 02073162414 now! Costs 20p/min Gsex POBOX 2667 WC1N 3XX
+ham	I can't believe how attached I am to seeing you every day. I know you will do the best you can to get to me babe. I will go to teach my class at your midnight
+ham	Just sleeping..and surfing
+spam	ASKED 3MOBILE IF 0870 CHATLINES INCLU IN FREE MINS. INDIA CUST SERVs SED YES. L8ER GOT MEGA BILL. 3 DONT GIV A SHIT. BAILIFF DUE IN DAYS. I O £250 3 WANT £800
+ham	Yeah it's jus rite...
+ham	Armand says get your ass over to epsilon
+ham	U still havent got urself a jacket ah?
+ham	I'm taking derek &amp; taylor to walmart, if I'm not back by the time you're done just leave the mouse on my desk and I'll text you when priscilla's ready
+ham	Hi its in durban are you still on this number
+ham	Ic. There are a lotta childporn cars then.
+spam	Had your contract mobile 11 Mnths? Latest Motorola, Nokia etc. all FREE! Double Mins & Text on Orange tariffs. TEXT YES for callback, no to remove from records.
+ham	No, I was trying it all weekend ;V
+ham	You know, wot people wear. T shirts, jumpers, hat, belt, is all we know. We r at Cribbs
+ham	Cool, what time you think you can get here?
+ham	Wen did you get so spiritual and deep. That's great
+ham	Have a safe trip to Nigeria. Wish you happiness and very soon company to share moments with
+ham	Hahaha..use your brain dear
+ham	Well keep in mind I've only got enough gas for one more round trip barring a sudden influx of cash
+ham	Yeh. Indians was nice. Tho it did kane me off a bit he he. We shud go out 4 a drink sometime soon. Mite hav 2 go 2 da works 4 a laugh soon. Love Pete x x
+ham	Yes i have. So that's why u texted. Pshew...missing you so much
+ham	No. I meant the calculation is the same. That  &lt;#&gt; units at  &lt;#&gt; . This school is really expensive. Have you started practicing your accent. Because its important. And have you decided if you are doing 4years of dental school or if you'll just do the nmde exam.
+ham	Sorry, I'll call later
+ham	if you aren't here in the next  &lt;#&gt;  hours imma flip my shit
+ham	Anything lor. Juz both of us lor.
+ham	Get me out of this dump heap. My mom decided to come to lowes. BORING.
+ham	Ok lor... Sony ericsson salesman... I ask shuhui then she say quite gd 2 use so i considering...
+ham	Ard 6 like dat lor.
+ham	Why don't you wait 'til at least wednesday to see if you get your .
+ham	Huh y lei...
+spam	REMINDER FROM O2: To get 2.50 pounds free call credit and details of great offers pls reply 2 this text with your valid name, house no and postcode
+spam	This is the 2nd time we have tried 2 contact u. U have won the £750 Pound prize. 2 claim is easy, call 087187272008 NOW1! Only 10p per minute. BT-national-rate.
+ham	Will ü b going to esplanade fr home?
+ham	Pity, * was in mood for that. So...any other suggestions?
+ham	The guy did some bitching but I acted like i'd be interested in buying something else next week and he gave it to us for free
+ham	Rofl. Its true to its name
diff --git a/test/n/data/stopwords/en b/test/n/data/stopwords/en
new file mode 100644
index 0000000..e5d3723
--- /dev/null
+++ b/test/n/data/stopwords/en
@@ -0,0 +1,4 @@
+these
+are
+custom
+stopwords
diff --git a/test/n/data/test_data_loader.rb b/test/n/data/test_data_loader.rb
new file mode 100644
index 0000000..e3c5819
--- /dev/null
+++ b/test/n/data/test_data_loader.rb
@@ -0,0 +1,16 @@
+# encoding: utf-8
+
+module TestDataLoader
+  def self.sms_data
+    @@sms_data ||= self.load_sms_data
+  end
+
+  def self.load_sms_data
+    sms_spam_collection = File.expand_path(File.dirname(__FILE__) + '/corpus/SMSSpamCollection.tsv')
+    File.read(sms_spam_collection).force_encoding("utf-8").split("\n")
+  end
+
+  def self.report_insufficient_data(available, required)
+    puts "\e[31mInsufficient records in the dataset: available #{available}, required #{required}\e[0m"
+  end
+end
diff --git a/test/n/extensions/hasher_test.rb b/test/n/extensions/hasher_test.rb
new file mode 100644
index 0000000..336a8b7
--- /dev/null
+++ b/test/n/extensions/hasher_test.rb
@@ -0,0 +1,67 @@
+require_relative '../test_helper'
+require 'tempfile'
+
+class HasherTest < Minitest::Test
+  def setup
+    @original_stopwords_path = Hasher::STOPWORDS_PATH.dup
+  end
+
+  def test_word_hash
+    hash = { good: 1, :'!' => 1, hope: 1, :"'" => 1, :'.' => 1, love: 1, word: 1, them: 1, test: 1 }
+    assert_equal hash, Hasher.word_hash("here are some good words of test's. I hope you love them!")
+  end
+
+  def test_clean_word_hash
+    hash = { good: 1, word: 1, hope: 1, love: 1, them: 1, test: 1 }
+    assert_equal hash, Hasher.clean_word_hash("here are some good words of test's. I hope you love them!")
+  end
+
+  def test_clean_word_hash_without_stemming
+    hash = { good: 1, words: 1, hope: 1, love: 1, them: 1, tests: 1 }
+    assert_equal hash, Hasher.clean_word_hash("here are some good words of test's. I hope you love them!", 'en', false)
+  end
+
+  def test_default_stopwords
+    refute_empty Hasher::STOPWORDS['en']
+    refute_empty Hasher::STOPWORDS['fr']
+    assert_empty Hasher::STOPWORDS['gibberish']
+  end
+
+  def test_loads_custom_stopwords
+    default_english_stopwords = Hasher::STOPWORDS['en']
+
+    # Remove the english stopwords
+    Hasher::STOPWORDS.delete('en')
+
+    # Add a custom stopwords path
+    Hasher::STOPWORDS_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../data/stopwords')
+
+    custom_english_stopwords = Hasher::STOPWORDS['en']
+
+    refute_equal default_english_stopwords, custom_english_stopwords
+  end
+
+  def test_add_custom_stopword_path
+    # Create stopword tempfile in current directory
+    temp_stopwords = Tempfile.new('xy', "#{File.dirname(__FILE__) + "/"}")
+
+    # Add some stopwords to tempfile
+    temp_stopwords << "this words fun"
+    temp_stopwords.close
+
+    # Get path of tempfile
+    temp_stopwords_path = File.dirname(temp_stopwords)
+
+    # Get tempfile name.
+    temp_stopwords_name = File.basename(temp_stopwords.path)
+
+    Hasher.add_custom_stopword_path(temp_stopwords_path)
+    hash = { list: 1, cool: 1 }
+    assert_equal hash, Hasher.clean_word_hash("this is a list of cool words!", temp_stopwords_name)
+  end
+
+  def teardown
+    Hasher::STOPWORDS.clear
+    Hasher::STOPWORDS_PATH.clear.concat @original_stopwords_path
+  end
+end
diff --git a/test/n/lsi/lsi_test.rb b/test/n/lsi/lsi_test.rb
new file mode 100644
index 0000000..5ec3f42
--- /dev/null
+++ b/test/n/lsi/lsi_test.rb
@@ -0,0 +1,214 @@
+require File.dirname(__FILE__) + '/../test_helper'
+
+class LSITest < Minitest::Test
+  def setup
+    # we repeat principle words to help weight them.
+    # This test is rather delicate, since this system is mostly noise.
+    @str1 = 'This text deals with dogs. Dogs.'
+    @str2 = 'This text involves dogs too. Dogs! '
+    @str3 = 'This text revolves around cats. Cats.'
+    @str4 = 'This text also involves cats. Cats!'
+    @str5 = 'This text involves birds. Birds.'
+  end
+
+  def test_basic_indexing
+    lsi = ClassifierReborn::LSI.new
+    [@str1, @str2, @str3, @str4, @str5].each { |x| lsi << x }
+    assert !lsi.needs_rebuild?
+
+    # note that the closest match to str1 is str2, even though it is not
+    # the closest text match.
+    assert_equal [@str2, @str5, @str3], lsi.find_related(@str1, 3)
+  end
+
+  def test_not_auto_rebuild
+    lsi = ClassifierReborn::LSI.new auto_rebuild: false
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    assert lsi.needs_rebuild?
+    lsi.build_index
+    assert !lsi.needs_rebuild?
+  end
+
+  def test_basic_categorizing
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    assert_equal 'Dog', lsi.classify(@str1)
+    assert_equal 'Cat', lsi.classify(@str3)
+    assert_equal 'Bird', lsi.classify(@str5)
+  end
+
+  def test_basic_categorizing_with_score
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    assert_in_delta 2.49, lsi.classify_with_score(@str1)[1], 0.1
+    assert_in_delta 1.41, lsi.classify_with_score(@str3)[1], 0.1
+    assert_in_delta 1.99, lsi.classify_with_score(@str5)[1], 0.1
+  end
+
+  def test_scored_categories
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    scored_categories = lsi.scored_categories('dog bird cat')
+    assert_equal 2, scored_categories.size
+    assert_equal %w(Bird Dog), scored_categories.map(&:first)
+  end
+
+  def test_external_classifying
+    lsi = ClassifierReborn::LSI.new
+    bayes = ClassifierReborn::Bayes.new 'Dog', 'Cat', 'Bird'
+    lsi.add_item @str1, 'Dog'
+    bayes.train_dog @str1
+    lsi.add_item @str2, 'Dog'
+    bayes.train_dog @str2
+    lsi.add_item @str3, 'Cat'
+    bayes.train_cat @str3
+    lsi.add_item @str4, 'Cat'
+    bayes.train_cat @str4
+    lsi.add_item @str5, 'Bird'
+    bayes.train_bird @str5
+
+    # We're talking about dogs. Even though the text matches the corpus on
+    # cats better.  Dogs have more semantic weight than cats. So bayes
+    # will fail here, but the LSI recognizes content.
+    tricky_case = 'This text revolves around dogs.'
+    assert_equal 'Dog', lsi.classify(tricky_case)
+    refute_equal 'Dog', bayes.classify(tricky_case)
+  end
+
+  def test_recategorize_interface
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    tricky_case = 'This text revolves around dogs.'
+    assert_equal 'Dog', lsi.classify(tricky_case)
+
+    # Recategorize as needed.
+    lsi.categories_for(@str1).clear.push 'Cow'
+    lsi.categories_for(@str2).clear.push 'Cow'
+
+    assert !lsi.needs_rebuild?
+    assert_equal 'Cow', lsi.classify(tricky_case)
+  end
+
+  def test_search
+    lsi = ClassifierReborn::LSI.new
+    [@str1, @str2, @str3, @str4, @str5].each { |x| lsi << x }
+
+    # Searching by content and text, note that @str2 comes up first, because
+    # both "dog" and "involve" are present. But, the next match is @str1 instead
+    # of @str4, because "dog" carries more weight than involves.
+    assert_equal([@str2, @str1, @str4, @str5, @str3],
+                 lsi.search('dog involves', 100))
+
+    # Keyword search shows how the space is mapped out in relation to
+    # dog when magnitude is remove. Note the relations. We move from dog
+    # through involve and then finally to other words.
+    assert_equal([@str1, @str2, @str4, @str5, @str3],
+                 lsi.search('dog', 5))
+  end
+
+  def test_serialize_safe
+    lsi = ClassifierReborn::LSI.new
+    [@str1, @str2, @str3, @str4, @str5].each { |x| lsi << x }
+
+    lsi_md = Marshal.dump lsi
+    lsi_m = Marshal.load lsi_md
+
+    assert_equal lsi_m.search('cat', 3), lsi.search('cat', 3)
+    assert_equal lsi_m.find_related(@str1, 3), lsi.find_related(@str1, 3)
+  end
+
+  def test_uncached_content_node_option
+    lsi = ClassifierReborn::LSI.new
+    [@str1, @str2, @str3, @str4, @str5].each { |x| lsi << x }
+    lsi.instance_variable_get(:@items).values.each do |node|
+      assert node.instance_of?(ContentNode)
+    end
+  end
+
+  def test_cached_content_node_option
+    lsi = ClassifierReborn::LSI.new(cache_node_vectors: true)
+    [@str1, @str2, @str3, @str4, @str5].each { |x| lsi << x }
+    lsi.instance_variable_get(:@items).values.each do |node|
+      assert node.instance_of?(CachedContentNode)
+    end
+  end
+
+  def test_clears_cached_content_node_cache
+    return unless $GSL
+
+    lsi = ClassifierReborn::LSI.new(cache_node_vectors: true)
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    assert_equal 'Dog', lsi.classify('something about dogs, but not an exact dog string')
+
+    first_content_node = lsi.instance_variable_get(:@items).values.first
+    refute_nil first_content_node.instance_variable_get(:@transposed_search_vector)
+    lsi.clear_cache!
+    assert_nil first_content_node.instance_variable_get(:@transposed_search_vector)
+  end
+
+  def test_keyword_search
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+
+    assert_equal [:dog, :text, :deal], lsi.highest_ranked_stems(@str1)
+  end
+
+  def test_invalid_searching_when_using_gsl
+    return unless $GSL
+    lsi = ClassifierReborn::LSI.new
+    lsi.add_item @str1, 'Dog'
+    lsi.add_item @str2, 'Dog'
+    lsi.add_item @str3, 'Cat'
+    lsi.add_item @str4, 'Cat'
+    lsi.add_item @str5, 'Bird'
+    assert_output(/There are no documents that are similar to penguin/) { lsi.search('penguin') }
+  end
+
+  def test_warn_when_adding_bad_document
+    lsi = ClassifierReborn::LSI.new
+    assert_output(/Input: 'i can' is entirely stopwords or words with 2 or fewer characters. Classifier-Reborn cannot handle this document properly./) { lsi.add_item("i can") }
+  end
+
+  def test_summary
+    assert_equal 'This text involves dogs too [...] This text also involves cats', Summarizer.summary([@str1, @str2, @str3, @str4, @str5].join, 2)
+  end
+
+  def test_reset
+    lsi = ClassifierReborn::LSI.new
+    assert lsi.items.empty?
+    lsi.add_item @str1, 'Dog'
+    refute lsi.items.empty?
+    lsi.reset
+    assert lsi.items.empty?
+    lsi.add_item @str3, 'Cat'
+    refute lsi.items.empty?
+  end
+end
diff --git a/test/n/lsi/word_list_test.rb b/test/n/lsi/word_list_test.rb
new file mode 100644
index 0000000..deffc41
--- /dev/null
+++ b/test/n/lsi/word_list_test.rb
@@ -0,0 +1,33 @@
+require_relative '../test_helper'
+
+class WordListTest < Minitest::Test
+  def test_size_does_not_count_words_twice
+    list = ClassifierReborn::WordList.new
+    assert list.size == 0
+
+    list.add_word('hello')
+    assert list.size == 1
+
+    list.add_word('hello')
+    assert list.size == 1
+
+    list.add_word('world')
+    assert list.size == 2
+  end
+
+  def test_brackets_return_correct_position_based_on_add_order
+    list = ClassifierReborn::WordList.new
+    list.add_word('hello')
+    list.add_word('world')
+    assert list['hello'] == 0
+    assert list['world'] == 1
+  end
+
+  def test_word_for_index_returns_correct_word_based_on_add_order
+    list = ClassifierReborn::WordList.new
+    list.add_word('hello')
+    list.add_word('world')
+    assert list.word_for_index(0) == 'hello'
+    assert list.word_for_index(1) == 'world'
+  end
+end
diff --git a/test/n/test_helper.rb b/test/n/test_helper.rb
new file mode 100644
index 0000000..8cb6b2a
--- /dev/null
+++ b/test/n/test_helper.rb
@@ -0,0 +1,10 @@
+$LOAD_PATH.unshift(File.dirname(__FILE__) + '/../lib')
+
+require 'minitest/autorun'
+require "minitest/benchmark"
+require 'minitest/reporters'
+Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new
+require 'pry'
+require 'classifier-reborn'
+require 'classifier-reborn/backends/bayes_redis_backend'
+include ClassifierReborn
diff --git a/test/n/validators/classifier_validation.rb b/test/n/validators/classifier_validation.rb
new file mode 100644
index 0000000..b5f8d3e
--- /dev/null
+++ b/test/n/validators/classifier_validation.rb
@@ -0,0 +1,78 @@
+# encoding: utf-8
+
+require File.dirname(__FILE__) + '/../test_helper'
+require File.dirname(__FILE__) + '/../../lib/classifier-reborn/validators/classifier_validator'
+require_relative '../data/test_data_loader'
+
+class ClassifierValidation < Minitest::Test
+  class ValidationReporter < Minitest::Reporters::BaseReporter
+    REPORT_WIDTH = 80
+
+    def before_suite(suite)
+      puts
+      puts "# #{suite}"
+      puts
+    end
+
+    def after_suite(suite)
+      puts
+    end
+
+    def before_test(test)
+      super
+      validation_name = test.name.gsub(/^test_/, '')
+      puts " #{validation_name} ".center(REPORT_WIDTH, "=")
+    end
+
+    def after_test(test)
+      super
+      puts "-" * REPORT_WIDTH
+      puts
+    end
+
+    def report
+      super
+      puts('Finished in %.5fs' % total_time)
+      puts
+    end
+  end
+  Minitest::Reporters.use! ValidationReporter.new
+
+  SAMPLE_SIZE = 5000
+
+  def setup
+    data = TestDataLoader.sms_data
+    if data.length < SAMPLE_SIZE
+      TestDataLoader.report_insufficient_data(data.length, SAMPLE_SIZE)
+      skip(e)
+    end
+    @sample_data = data.take(SAMPLE_SIZE).collect { |line| line.strip.split("\t") }
+  end
+
+  def test_bayes_classifier_10_fold_cross_validate_memory
+    classifier = ClassifierReborn::Bayes.new
+    ClassifierValidator.cross_validate(classifier, @sample_data)
+  end
+
+  def test_bayes_classifier_3_fold_cross_validate_redis
+    begin
+      backend = ClassifierReborn::BayesRedisBackend.new
+      backend.instance_variable_get(:@redis).config(:set, "save", "")
+      classifier = ClassifierReborn::Bayes.new backend: backend
+      ClassifierValidator.cross_validate(classifier, @sample_data, 3)
+    rescue Redis::CannotConnectError => e
+      puts "Unable to connect to Redis server"
+      skip(e)
+    end
+  end
+
+  def test_lsi_classifier_5_fold_cross_validate
+    lsi = ClassifierReborn::LSI.new
+    required_methods = [:train, :classify, :categories]
+    unless required_methods.reduce(true){|m, o| m && lsi.respond_to?(o)}
+      puts "TODO: LSI is not validatable until all of the #{required_methods} methods are implemented!"
+      skip
+    end
+    ClassifierValidator.cross_validate(lsi, @sample_data, 5)
+  end
+end
diff --git a/test/test_helper.rb b/test/test_helper.rb
new file mode 100644
index 0000000..b539406
--- /dev/null
+++ b/test/test_helper.rb
@@ -0,0 +1,8 @@
+$LOAD_PATH.unshift(File.dirname(__FILE__) + '/../lib')
+
+require 'minitest/autorun'
+require 'minitest/reporters'
+Minitest::Reporters.use!
+require 'pry'
+require 'classifier-reborn'
+include ClassifierReborn