summaryrefslogtreecommitdiff
path: root/perf/documents.c
blob: 831245ca7c7917c23cb0331aec49e4d5f1ac8e70 (plain)
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
/*
 * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include "documents.h"

#include <stdlib.h>
#include <string.h>

/* latest twitter tweets from easter day */
const char * doc1[] = 
    {
"[{\"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:48 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143455073280000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"Good morning! Happy Easter! Hopefully c u later!\",\n"
"            \"id\": 62143455073280000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"David\",\n"
"                \"profile_sidebar_border_color\": \"C0DEED\",\n"
"                \"profile_background_tile\": false,\n"
"                \"profile_sidebar_fill_color\": \"DDEEF6\",\n"
"                \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1313918274\\/image_normal.jpg\",\n"
"                \"created_at\": \"Sat Apr 16 12:10:50 +0000 2011\",\n"
"                \"location\": null,\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"profile_link_color\": \"0084B4\",\n"
"                \"id_str\": \"283022296\",\n"
"                \"url\": null,\n"
"                \"default_profile\": true,\n"
"                \"contributors_enabled\": false,\n"
"                \"favourites_count\": 0,\n"
"                \"utc_offset\": null,\n"
"                \"id\": 283022296,\n"
"                \"listed_count\": 0,\n"
"                \"profile_use_background_image\": true,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 7,\n"
"                \"profile_text_color\": \"333333\",\n"
"                \"profile_background_color\": \"C0DEED\",\n"
"                \"geo_enabled\": false,\n"
"                \"time_zone\": null,\n"
"                \"notifications\": null,\n"
"                \"description\": null,\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1302724321\\/images\\/themes\\/theme1\\/bg.png\",\n",
"                \"statuses_count\": 46,\n"
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 28,\n"
"                \"show_all_inline_media\": false,\n"
"                \"screen_name\": \"djstump440\",\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:48 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143454767104000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"haloo hihihi -_-\",\n"
"            \"id\": 62143454767104000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"Riva \\u01aa(\\u02c7\\u25bc\\u02c7)\\u00ac\",\n"
"                \"profile_sidebar_border_color\": \"eeeeee\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"efefef\",\n"
"                \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1323509905\\/cats_normal.jpg\",\n"
"                \"created_at\": \"Sat Oct 16 05:07:18 +0000 2010\",\n"
"                \"location\": \"\",\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"profile_link_color\": \"009999\",\n"
"                \"id_str\": \"203398982\",\n"
"                \"url\": null,\n"
"                \"default_profile\": false,\n"
"                \"contributors_enabled\": false,\n"
"                \"favourites_count\": 0,\n"
"                \"utc_offset\": -28800,\n"
"                \"id\": 203398982,\n"
"                \"listed_count\": 0,\n",
"                \"profile_use_background_image\": true,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 16,\n"
"                \"profile_text_color\": \"333333\",\n"
"                \"profile_background_color\": \"131516\",\n"
"                \"geo_enabled\": false,\n"
"                \"time_zone\": \"Pacific Time (US & Canada)\",\n"
"                \"notifications\": null,\n"
"                \"description\": \"I'm single\\u01aa(\\u02c7\\u25bc\\u02c7)\\u00ac, pin: 26B49EFA , keep follow me\\u01aa(\\u02c7\\u25bc\\u02c7)\\u00ac\\u01aa(\\u02c7\\u25bc\\u02c7)\\u00ac  follback? just mention, thanks\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a2.twimg.com\\/profile_background_images\\/238078679\\/5496743274_fb1f9c9bea_z_large.jpg\",\n"
"                \"statuses_count\": 899,\n"
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 14,\n"
"                \"show_all_inline_media\": false,\n"
"                \"screen_name\": \"IntaaanRvall\",\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"web\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:48 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143452560896000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"\\u3042\\u3042\\u3042\\u3042\\u3042\\u3042\\u3042\\u3001\\u4eca\\u65e5\\u306e\\u30d7\\u30ea\\u30ad\\u30e5\\u30a2\\u30de\\u30b8\\u6700\\u9ad8\\u3060\\u3063\\u305f\\u3002\\u3082\\u3046\\u30c6\\u30f3\\u30b7\\u30e7\\u30f3\\u4e0b\\u304c\\u3089\\u306d\\u30fc\\u3088\\u3002\\u8272\\u3005\\u8a9e\\u308a\\u305f\\u3044\\u3051\\u3069\\u30c4\\u30a4\\u30c3\\u30bf\\u30fc\\u3058\\u3083\\u4f55\\u56de\\u30c4\\u30a4\\u30fc\\u30c8\\u3057\\u305f\\u3089\\u3044\\u3044\\u306e\\uff1f\\u3063\\u3066\\u611f\\u3058\\u3068\\u308a\\u3042\\u3048\\u305a\\u98a8\\u5442\\u5165\\u3063\\u3066\\u982d\\u6574\\u7406\\u3057\\u3066\\u30d0\\u30ec\\u30b9\\u30ec\\uff06\\u30b3\\u30df\\u30e5\\u898b\\u3066\\u305d\\u308c\\u304b\\u3089\\u65e5\\u8a18\\u66f8\\u304f\",\n"
"            \"id\": 62143452560896000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n",
"            \"name\": \"\\u5929\\u5bae\\u3000\\u5948\\u6f84\",\n"
"                \"profile_sidebar_border_color\": \"db5ecc\",\n"
"                \"profile_background_tile\": false,\n"
"                \"profile_sidebar_fill_color\": \"ffcced\",\n"
"                \"profile_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_images\\/1260667542\\/kanon2_normal.jpg\",\n"
"                \"created_at\": \"Tue Dec 29 11:35:38 +0000 2009\",\n"
"                \"location\": \"\\u8679\\u306e\\u5712\",\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"profile_link_color\": \"5109eb\",\n"
"                \"id_str\": \"100203655\",\n"
"                \"url\": \"http:\\/\\/pudding-tension.cocolog-nifty.com\\/blog\\/\",\n"
"                \"default_profile\": false,\n"
"                \"contributors_enabled\": false,\n"
"                \"favourites_count\": 0,\n"
"                \"utc_offset\": 32400,\n"
"                \"id\": 100203655,\n"
"                \"listed_count\": 3,\n"
"                \"profile_use_background_image\": true,\n"
"                \"lang\": \"ja\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 32,\n"
"                \"profile_text_color\": \"372c47\",\n"
"                \"profile_background_color\": \"a18eed\",\n"
"                \"geo_enabled\": false,\n"
"                \"time_zone\": \"Tokyo\",\n"
"                \"notifications\": null,\n"
"                \"description\": \"\\u73fe\\u5728\\u8133\\u5185\\u306f\\u305d\\u306e\\u6b86\\u3069\\u304c\\u300c\\u30d7\\u30ea\\u30ad\\u30e5\\u30a2\\u300d\\u3068\\u300c\\u3046\\u307f\\u306d\\u3053\\u306e\\u306a\\u304f\\u9803\\u306b\\u300d\\u3068\\u300c\\u795e\\u306e\\u307f\\u305e\\u77e5\\u308b\\u30bb\\u30ab\\u30a4\\u300d\\u3067\\u69cb\\u6210\\u3055\\u308c\\u3066\\u307e\\u3059\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_background_images\\/183152065\\/haikei.png\",\n"
"                \"statuses_count\": 4404,\n"
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 26,\n"
"                \"show_all_inline_media\": false,\n"
"                \"screen_name\": \"amamiya_nasumi\",\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"web\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:48 +0000 2011\",\n"
"            \"favorited\": false,\n",
"            \"truncated\": false,\n"
"            \"id_str\": \"62143451512320000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"\\/\\/BRB..shower time!! :)\",\n"
"            \"id\": 62143451512320000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"narcissa malfoy\",\n"
"                \"profile_sidebar_border_color\": \"eb1d57\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"ff70d2\",\n"
"                \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1240524583\\/8156217_normal.gif\",\n"
"                \"created_at\": \"Thu Feb 10 18:25:02 +0000 2011\",\n"
"                \"location\": \"~*Malfoy Manor*~\",\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"profile_link_color\": \"b30098\",\n"
"                \"id_str\": \"250247515\",\n"
"                \"url\": \"http:\\/\\/www.harrypottercookbook-amanda.blogspot.com\\/\",\n"
"                \"default_profile\": false,\n"
"                \"favourites_count\": 167,\n"
"                \"contributors_enabled\": false,\n"
"                \"utc_offset\": null,\n"
"                \"id\": 250247515,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 10,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 219,\n"
"                \"profile_text_color\": \"8f178f\",\n"
"                \"profile_background_color\": \"f70f5c\",\n"
"                \"time_zone\": null,\n"
"                \"geo_enabled\": false,\n"
"                \"notifications\": null,\n"
"                \"description\": \"Spoiled pureblood fanatic, wife of Lucius Malfoy, mother of Draco,eve, lisa,&chasity. Pregnant and in love with yaxley_death (muilti-rp 18+) Life is good!\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_background_images\\/203844238\\/aslongasyourmine.jpg\",\n"
"                \"statuses_count\": 4128,\n"
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 100,\n"
"                \"screen_name\": \"Mrs_N_Malfoy\",\n"
"                \"show_all_inline_media\": false,\n",
"                \"following\": null\n"
"                },\n"
"            \"source\": \"web\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:47 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143451097088000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"\\u3066\\u304b\\u3001\\u4eca\\u65e5\\u306e\\u85e4\\u5d0e\\u53f0\\u30b4\\u30df\\u7f6e\\u3044\\u3066\\u304f\\u4eba\\u591a\\u3059\\u304e( *\\uff40\\u03c9\\u00b4) \\u30d3\\u30cb\\u30fc\\u30eb\\u30b7\\u30fc\\u30c8\\u3068\\u304b\\u3001\\u304a\\u5f01\\u5f53\\u3068\\u304b\\uff01\\uff01\\u81ea\\u5206\\u3067\\u51fa\\u3057\\u305f\\u30b4\\u30df\\u3050\\u3089\\u3044\\u81ea\\u5206\\u3067\\u6368\\u3066\\u3093\\u304b\\u3044( *\\uff40\\u03c9\\u00b4) ( *\\uff40\\u03c9\\u00b4) \\u6368\\u3066\\u3089\\u308c\\u3093\\u306e\\u306a\\u3089\\u3001\\u4f55\\u3082\\u6301\\u3063\\u3066\\u304f\\u3093\\u306a\\u3057\\uff01\\uff01\",\n"
"            \"id\": 62143451097088000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"misa62@\\u30d1\\u30f3\\u796d\\u308a\\u30c0\\uff01\\uff01\",\n"
"                \"profile_sidebar_border_color\": \"5ED4DC\",\n"
"                \"profile_background_tile\": false,\n"
"                \"profile_sidebar_fill_color\": \"95E8EC\",\n"
"                \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1270879463\\/3264b67a-f15f-499e-9c0c-0fb3bbbac7e1_normal.png\",\n"
"                \"created_at\": \"Mon May 03 15:36:08 +0000 2010\",\n"
"                \"location\": \"\\u798f\\u5ca1\\u770c\\u798f\\u5ca1\\u5e02\",\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"profile_link_color\": \"0099B9\",\n"
"                \"id_str\": \"139753239\",\n"
"                \"url\": null,\n"
"                \"default_profile\": false,\n"
"                \"favourites_count\": 56,\n"
"                \"contributors_enabled\": false,\n"
"                \"utc_offset\": -36000,\n"
"                \"id\": 139753239,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 44,\n"
"                \"lang\": \"ja\",\n",
"                \"protected\": false,\n"
"                \"followers_count\": 260,\n"
"                \"profile_text_color\": \"3C3940\",\n"
"                \"profile_background_color\": \"0099B9\",\n"
"                \"time_zone\": \"Hawaii\",\n"
"                \"geo_enabled\": false,\n"
"                \"notifications\": null,\n"
"                \"description\": \"\\u9e7f\\u5150\\u5cf6\\u770c\\u85a9\\u6469\\u5ddd\\u5185\\u5e02\\u51fa\\u8eab\\u3002\\n\\u73fe\\u5728\\u798f\\u5ca1\\u5e02\\u535a\\u591a\\u533a\\u5728\\u4f4f\\u3002\\n\\u91ce\\u7403\\u306f\\u9df9\\u515a(\\u5fdc\\u63f4\\u306f\\u58f0\\u51fa\\u3057\\u6d3e)\\u3002\\n\\u97f3\\u697d\\u306f\\u3086\\u305a(\\u6ce3\\u304d\\u307c\\u304f\\u308d\\u6d3e)\\u3002\\n\\u30ea\\u30a2\\u30eb\\u30a2\\u30e9\\u30b5\\u30fc(\\u672c\\u6c17\\u3067\\u30ea\\u30a2\\u30eb)\\u3002\\n\\u53cc\\u5b50(\\u591a\\u5206\\u4e8c\\u5375\\u6027)\\u3002\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1302646548\\/images\\/themes\\/theme4\\/bg.gif\",\n"
"                \"statuses_count\": 10218,\n"
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 189,\n"
"                \"screen_name\": \"umeimouto\",\n"
"                \"show_all_inline_media\": false,\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/twipple.jp\\/\\\" rel=\\\"nofollow\\\"\\u003E\\u3064\\u3044\\u3063\\u3077\\u308b for iPhone\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:47 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143450660864000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"Good luck buat semua angkatan 2011,semoga lulus 100% amin!\",\n"
"            \"id\": 62143450660864000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"Rifqi Agata Fadillah\",\n"
"                \"profile_sidebar_border_color\": \"C0DEED\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"DDEEF6\",\n"
"                \"profile_image_url\": \"http:\\/\\/a2.twimg.com\\/profile_images\\/1318083009\\/286099563_normal.jpg\",\n",
"                \"created_at\": \"Sat Nov 27 07:42:50 +0000 2010\",\n"
"                \"location\": \"\\u00dcT: -6.201772,106.766764\",\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"profile_link_color\": \"0084B4\",\n"
"                \"id_str\": \"220266344\",\n"
"                \"url\": null,\n"
"                \"default_profile\": false,\n"
"                \"favourites_count\": 32,\n"
"                \"contributors_enabled\": false,\n"
"                \"utc_offset\": -28800,\n"
"                \"id\": 220266344,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 0,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 145,\n"
"                \"profile_text_color\": \"333333\",\n"
"                \"profile_background_color\": \"C0DEED\",\n"
"                \"time_zone\": \"Pacific Time (US & Canada)\",\n"
"                \"geo_enabled\": false,\n"
"                \"notifications\": null,\n"
"                \"description\": \"SQZ 75 2011| WANTED family| @JumpToHigh - bassist|F5BF\\r|S.O.W|\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_background_images\\/228932382\\/asasasasas.jpg\",\n"
"                \"statuses_count\": 2906,\n"
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 139,\n"
"                \"screen_name\": \"rifqifadilah\",\n"
"                \"show_all_inline_media\": false,\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/www.snaptu.com\\\" rel=\\\"nofollow\\\"\\u003ESnaptu\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:47 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143449721344000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"Sip insyaaloh yam haha RT @IyamSitiPurnama: @ayusucia yu besok bareng yaaah!! Jam 8an aja. Plgnya kita main. Okay?\",\n"
"            \"id\": 62143449721344000,\n",
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"Ayu Sucianti Pratiwi\",\n"
"                \"profile_sidebar_border_color\": \"000000\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"33c7cc\",\n"
"                \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1261651576\\/Photo005_normal.jpg\",\n"
"                \"created_at\": \"Fri Aug 28 11:31:34 +0000 2009\",\n"
"                \"location\": \"Bandung, Indonesia\",\n"
"                \"profile_link_color\": \"ae2ccf\",\n"
"                \"is_translator\": false,\n"
"                \"id_str\": \"69565800\",\n"
"                \"follow_request_sent\": null,\n"
"                \"url\": null,\n"
"                \"contributors_enabled\": false,\n"
"                \"default_profile\": false,\n"
"                \"favourites_count\": 0,\n"
"                \"utc_offset\": -25200,\n"
"                \"id\": 69565800,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 1,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 141,\n"
"                \"profile_text_color\": \"143d42\",\n"
"                \"profile_background_color\": \"352726\",\n"
"                \"geo_enabled\": true,\n"
"                \"time_zone\": \"Mountain Time (US & Canada)\",\n"
"                \"notifications\": null,\n"
"                \"description\": \"SMAN 1 BANDUNG '11\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_background_images\\/228896383\\/Face_In_The_Crowd_by_smashmethod.jpg\",\n"
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 82,\n"
"                \"statuses_count\": 1885,\n"
"                \"show_all_inline_media\": false,\n"
"                \"screen_name\": \"ayusucia\",\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/www.snaptu.com\\\" rel=\\\"nofollow\\\"\\u003ESnaptu\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                }, ",
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:46 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143443954176000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"Fuck youuuuuu very much.\",\n"
"            \"id\": 62143443954176000,\n"
"            \"in_reply_to_status_id_str\": null,\n",
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"MayJ Tumulak\",\n"
"                \"profile_sidebar_border_color\": \"FFFFFF\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"a1908f\",\n"
"                \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1248744054\\/182023_1696887156113_1655881256_1550554_2790545_n_normal.jpg\",\n"
"                \"created_at\": \"Wed Mar 31 15:20:30 +0000 2010\",\n"
"                \"location\": \"Cebu, Philippines.\",\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"profile_link_color\": \"e8dc33\",\n"
"                \"id_str\": \"128247577\",\n"
"                \"url\": \"http:\\/\\/mayjornerd.tumblr.com\\/\",\n"
"                \"default_profile\": false,\n"
"                \"contributors_enabled\": false,\n"
"                \"favourites_count\": 23,\n"
"                \"utc_offset\": 28800,\n"
"                \"id\": 128247577,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 5,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 200,\n"
"                \"profile_text_color\": \"db048c\",\n"
"                \"profile_background_color\": \"000000\",\n"
"                \"time_zone\": \"Hong Kong\",\n"
"                \"geo_enabled\": false,\n"
"                \"notifications\": null,\n"
"                \"description\": \"Josh Duhamel, Emmanuelle Vaugier, Eddie Cahill, Paget Brewster and Thomas Gibson. Stana Katic. I LOVE THEM. \\u2665\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a2.twimg.com\\/profile_background_images\\/124406615\\/AAB1408.jpg\",\n"
"                \"statuses_count\": 4811,\n"
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 275,\n"
"                \"screen_name\": \"MayJT17\",\n"
"                \"show_all_inline_media\": false,\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"web\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n",
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:45 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143439344640000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"Menurutmuuuuuu emememRT @ariesgbgn: Masak di makanin..ckck RT @rindagustina: Emg makan sendiriRT @ariesgbgn: Makan aja sendiri..haha R\",\n"
"            \"id\": 62143439344640000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"Rinda Citra Avanti\",\n"
"                \"profile_sidebar_border_color\": \"f20938\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"d3dee8\",\n"
"                \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1318218525\\/phpJYyKtG_normal\",\n"
"                \"created_at\": \"Tue Nov 23 12:19:01 +0000 2010\",\n"
"                \"location\": \"Pasadena, Semarang \",\n"
"                \"profile_link_color\": \"090a09\",\n"
"                \"is_translator\": false,\n"
"                \"id_str\": \"218856519\",\n"
"                \"follow_request_sent\": null,\n"
"                \"url\": \"http:\\/\\/m.facebook.com\\/profile.php?id=1850197456&refid=17\",\n"
"                \"contributors_enabled\": false,\n"
"                \"default_profile\": false,\n"
"                \"favourites_count\": 122,\n"
"                \"utc_offset\": -28800,\n"
"                \"id\": 218856519,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 1,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 301,\n"
"                \"profile_text_color\": \"333333\",\n"
"                \"profile_background_color\": \"f03046\",\n"
"                \"geo_enabled\": false,\n"
"                \"time_zone\": \"Pacific Time (US & Canada)\",\n"
"                \"notifications\": null,\n"
"                \"description\": \"Low profile | Simple | o2 December 2o1o \\u2665\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_background_images\\/199969730\\/76456_105694036168812_100001846488330_42447_4503930_n.jpg\",\n",
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 202,\n"
"                \"statuses_count\": 11353,\n"
"                \"show_all_inline_media\": false,\n"
"                \"screen_name\": \"rindagustina\",\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003E\\u00dcberSocial\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:45 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143439235584000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"Hate wearing dresses, now I gotta sit with my legs shut.\",\n"
"            \"id\": 62143439235584000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"Alexis Sparrow\",\n"
"                \"profile_sidebar_border_color\": \"eb157d\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"ff8ae4\",\n"
"                \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1285784046\\/110324-160733_normal.jpg\",\n"
"                \"created_at\": \"Thu Feb 10 03:34:07 +0000 2011\",\n"
"                \"location\": \"four one two.\",\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"profile_link_color\": \"6b1f58\",\n"
"                \"id_str\": \"249956435\",\n"
"                \"url\": null,\n"
"                \"contributors_enabled\": false,\n"
"                \"default_profile\": false,\n"
"                \"favourites_count\": 0,\n"
"                \"utc_offset\": -21600,\n"
"                \"id\": 249956435,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 0,\n",
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 52,\n"
"                \"profile_text_color\": \"333333\",\n"
"                \"profile_background_color\": \"f099c5\",\n"
"                \"geo_enabled\": false,\n"
"                \"time_zone\": \"Central Time (US & Canada)\",\n"
"                \"notifications\": null,\n"
"                \"description\": \"#iup #teamblackberry #sixburgh (:\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_background_images\\/236015295\\/pink.gif\",\n"
"                \"statuses_count\": 971,\n"
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 56,\n"
"                \"screen_name\": \"alexis_sparrow\",\n"
"                \"show_all_inline_media\": false,\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/devices\\\" rel=\\\"nofollow\\\"\\u003Etxt\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:44 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143437247488000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"Net ppas wakker:o ZONDE!!\",\n"
"            \"id\": 62143437247488000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"Rohit\",\n"
"                \"profile_sidebar_border_color\": \"C0DEED\",\n"
"                \"profile_background_tile\": false,\n"
"                \"profile_sidebar_fill_color\": \"DDEEF6\",\n"
"                \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1305531627\\/IMG-20110404-00125_normal.jpg\",\n"
"                \"created_at\": \"Sun Feb 06 16:34:11 +0000 2011\",\n"
"                \"location\": \"The Hague\",\n",
"                \"follow_request_sent\": null,\n"
"                \"profile_link_color\": \"0084B4\",\n"
"                \"id_str\": \"248263091\",\n"
"                \"is_translator\": false,\n"
"                \"url\": \"http:\\/\\/www.roo11.hyves.nl\",\n"
"                \"contributors_enabled\": false,\n"
"                \"favourites_count\": 0,\n"
"                \"default_profile\": true,\n"
"                \"utc_offset\": null,\n"
"                \"id\": 248263091,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 0,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 17,\n"
"                \"profile_text_color\": \"333333\",\n"
"                \"profile_background_color\": \"C0DEED\",\n"
"                \"geo_enabled\": false,\n"
"                \"time_zone\": null,\n"
"                \"notifications\": null,\n"
"                \"description\": \"Bb ping, just ask! X\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1302724321\\/images\\/themes\\/theme1\\/bg.png\",\n"
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 102,\n"
"                \"statuses_count\": 257,\n"
"                \"show_all_inline_media\": false,\n"
"                \"screen_name\": \"prince__ro\",\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003ETwitter for BlackBerry\\u00ae\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:44 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143434932224000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"HaPpY eAsTeR pEePs!!!\",\n"
"            \"id\": 62143434932224000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n",
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"Chris Curzon\",\n"
"                \"profile_sidebar_border_color\": \"65B0DA\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"7AC3EE\",\n"
"                \"profile_image_url\": \"http:\\/\\/a2.twimg.com\\/profile_images\\/1239641260\\/image_normal.jpg\",\n"
"                \"created_at\": \"Wed Jun 17 15:35:33 +0000 2009\",\n"
"                \"location\": \"Wilmslow, Cheshire, U.K\",\n"
"                \"is_translator\": false,\n"
"                \"profile_link_color\": \"FF0000\",\n"
"                \"follow_request_sent\": null,\n"
"                \"id_str\": \"47998574\",\n"
"                \"url\": \"http:\\/\\/www.chriscurzon.co.uk\",\n"
"                \"default_profile\": false,\n"
"                \"contributors_enabled\": false,\n"
"                \"favourites_count\": 2,\n"
"                \"utc_offset\": 0,\n"
"                \"id\": 47998574,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 0,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 16,\n"
"                \"profile_text_color\": \"3D1957\",\n"
"                \"profile_background_color\": \"642D8B\",\n"
"                \"time_zone\": \"London\",\n"
"                \"geo_enabled\": false,\n"
"                \"notifications\": null,\n"
"                \"description\": \"\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a2.twimg.com\\/a\\/1302214109\\/images\\/themes\\/theme10\\/bg.gif\",\n"
"                \"statuses_count\": 186,\n"
"                \"friends_count\": 72,\n"
"                \"default_profile_image\": false,\n"
"                \"screen_name\": \"ChrisCurzon\",\n"
"                \"show_all_inline_media\": false,\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n",
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143434101760000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"sadaaaapp...jawaban yg bijak *salut* hahahaha RT @ade_agus_rahman: Biar waktu yg menjawabna hahahahaRT @CSuhendra:... http:\\/\\/mtw.tl\\/lqdn3si\",\n"
"            \"id\": 62143434101760000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"christian suhendra\",\n"
"                \"profile_sidebar_border_color\": \"ffef0f\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"efefef\",\n"
"                \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1306502119\\/172657_1754759681733_1621188498_1678640_1734292_o_normal.jpg\",\n"
"                \"created_at\": \"Tue Jul 14 14:02:20 +0000 2009\",\n"
"                \"location\": \"\",\n"
"                \"is_translator\": false,\n"
"                \"profile_link_color\": \"ba7309\",\n"
"                \"follow_request_sent\": null,\n"
"                \"id_str\": \"56700895\",\n"
"                \"url\": \"http:\\/\\/www.facebook.com\\/?ref=home#!\\/christian.suhendra\",\n"
"                \"default_profile\": false,\n"
"                \"contributors_enabled\": false,\n"
"                \"favourites_count\": 0,\n"
"                \"utc_offset\": -36000,\n"
"                \"id\": 56700895,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 9,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 225,\n"
"                \"profile_text_color\": \"333333\",\n"
"                \"profile_background_color\": \"131516\",\n"
"                \"time_zone\": \"Hawaii\",\n"
"                \"geo_enabled\": true,\n"
"                \"notifications\": null,\n"
"                \"description\": \"it's not about me , it's all about style..HAHA\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_background_images\\/166923240\\/maryPraying1024.jpg\",\n"
"                \"statuses_count\": 5705,\n",
"                \"friends_count\": 256,\n"
"                \"default_profile_image\": false,\n"
"                \"screen_name\": \"CSuhendra\",\n"
"                \"show_all_inline_media\": false,\n"
"                \"following\": null\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/m.tweete.net\\\" rel=\\\"nofollow\\\"\\u003Em.tweete.net\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143433577472000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"Feliz ressurrei\\u00e7\\u00e3o de Jesus Cristo. http:\\/\\/tumblr.com\\/xye28y8fgp\",\n"
"            \"id\": 62143433577472000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"Elisa\",\n"
"                \"profile_sidebar_border_color\": \"ffffff\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"ffffff\",\n"
"                \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1245238667\\/DSC03818_normal.JPG\",\n"
"                \"created_at\": \"Sat Apr 03 20:55:57 +0000 2010\",\n"
"                \"location\": \"\",\n"
"                \"follow_request_sent\": null,\n"
"                \"profile_link_color\": \"ff5c82\",\n"
"                \"id_str\": \"129297077\",\n"
"                \"is_translator\": false,\n"
"                \"url\": null,\n"
"                \"contributors_enabled\": false,\n"
"                \"favourites_count\": 0,\n"
"                \"default_profile\": false,\n"
"                \"utc_offset\": -10800,\n"
"                \"id\": 129297077,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 1,\n",
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 61,\n"
"                \"profile_text_color\": \"ff4c76\",\n"
"                \"profile_background_color\": \"ffffff\",\n"
"                \"time_zone\": \"Brasilia\",\n"
"                \"notifications\": null,\n"
"                \"description\": \"eu fa\\u00e7o da dificuldade a minha motiva\\u00e7\\u00e3o.\",\n"
"                \"geo_enabled\": false,\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_background_images\\/230245704\\/tumblr_lj97wofglY1qb67gho1_500_large.jpg\",\n"
"                \"statuses_count\": 1287,\n"
"                \"default_profile_image\": false,\n"
"                \"friends_count\": 175,\n"
"                \"screen_name\": \"eliisarocha\",\n"
"                \"following\": null,\n"
"                \"show_all_inline_media\": false\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/www.tumblr.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETumblr\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143432310784000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"\\u3053\\u308c\\u3067\\u30e9\\u30b9\\u67a0\\u304b\\u306a\\uff5e\",\n"
"            \"id\": 62143432310784000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"\\u30b7\\u30ab\\u30c8\\uff20Mr.\\u5668\\u7528\\u8ca7\\u4e4f\",\n"
"                \"profile_sidebar_border_color\": \"C0DEED\",\n"
"                \"profile_background_tile\": false,\n"
"                \"profile_sidebar_fill_color\": \"DDEEF6\",\n"
"                \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1204747446\\/100819_1913_010001_normal.jpg\",\n"
"                \"created_at\": \"Sat Nov 13 02:55:41 +0000 2010\",\n"
"                \"location\": \"\\u30b7\\u30ab\\u30c8\\u306e\\u306a\\u3093\\u3068\\u306a\\u304f\\u30cb\\u30b3\\u751f(\\u6c5a)\",\n",
"                \"profile_link_color\": \"0084B4\",\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"id_str\": \"215139533\",\n"
"                \"url\": \"http:\\/\\/com.nicovideo.jp\\/community\\/co568211\",\n"
"                \"default_profile\": true,\n"
"                \"favourites_count\": 0,\n"
"                \"contributors_enabled\": false,\n"
"                \"utc_offset\": 32400,\n"
"                \"id\": 215139533,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 1,\n"
"                \"lang\": \"ja\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 17,\n"
"                \"profile_text_color\": \"333333\",\n"
"                \"profile_background_color\": \"C0DEED\",\n"
"                \"time_zone\": \"Tokyo\",\n"
"                \"geo_enabled\": false,\n"
"                \"notifications\": null,\n"
"                \"description\": \"\\u4e00\\u822c\\u5927\\u5b66\\u751f\\u517c\\u3001\\u30a2\\u30cb\\u30b2\\u30fc\\u30fb\\u30e1\\u30bf\\u30eb\\u30d0\\u30f3\\u30c9\\u30c9\\u30e9\\u30de\\u30fc\\u517cAO\\u52e2\\u3084\\u3063\\u3066\\u307e\\u3059\\u2605 \\u30b3\\u30df\\u30e5\\u3067\\u306fAO\\u52e2\\u6d3e\\u751f\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3068\\u3057\\u3066\\u3001\\u79c1\\u3092\\u542b\\u3081\\u30e1\\u30f3\\u30d0\\u30fc\\u306e\\u65b9\\u3005\\u304c\\u751f\\u653e\\u9001\\u3092\\u884c\\u3063\\u3066\\u304a\\u308a\\u307e\\u3059\\u266a \\u79c1\\u306e\\u653e\\u9001\\u3067\\u306f\\u3001\\u30e9\\u30b8\\u30aa\\u7684\\u30ea\\u30b9\\u30ca\\u30fc\\u53c2\\u52a0\\u578b\\u306e\\u30b9\\u30bf\\u30a4\\u30eb\\u3067\\u653e\\u9001\\u4e2d\\u3067\\u3059\\u2605 \\u8a71\\u984c\\u306b\\u95a2\\u3057\\u3066\\u306f\\u30b8\\u30e3\\u30f3\\u30eb\\u554f\\u308f\\u305a\\u3001\\u5668\\u7528\\u8ca7\\u4e4f\\u3092\\u767a\\u63ee\\u3057\\u3066\\u307e\\u3059\\u266a\\u266a\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1303316982\\/images\\/themes\\/theme1\\/bg.png\",\n"
"                \"default_profile_image\": false,\n"
"                \"statuses_count\": 526,\n"
"                \"friends_count\": 10,\n"
"                \"screen_name\": \"Shikato_Drs_AO\",\n"
"                \"following\": null,\n"
"                \"show_all_inline_media\": false\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/twtr.jp\\\" rel=\\\"nofollow\\\"\\u003EKeitai Web\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
"            \"favorited\": false,\n",
"            \"truncated\": false,\n"
"            \"id_str\": \"62143431262208000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"casa da v\\u00f3, vo fika vo cel\",\n"
"            \"id\": 62143431262208000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"Lucas Murbach Pierin\",\n"
"                \"profile_sidebar_border_color\": \"eeeeee\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"efefef\",\n"
"                \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1321857197\\/Twitter_normal.jpg\",\n"
"                \"created_at\": \"Tue Oct 12 02:14:40 +0000 2010\",\n"
"                \"location\": \"Lapa\\/Ctba\",\n"
"                \"profile_link_color\": \"009999\",\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"id_str\": \"201538116\",\n"
"                \"url\": \"http:\\/\\/xenedapuc.tumblr.com\",\n"
"                \"default_profile\": false,\n"
"                \"favourites_count\": 8,\n"
"                \"contributors_enabled\": false,\n"
"                \"utc_offset\": -10800,\n"
"                \"id\": 201538116,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 22,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 68,\n"
"                \"profile_text_color\": \"333333\",\n"
"                \"profile_background_color\": \"131516\",\n"
"                \"time_zone\": \"Brasilia\",\n"
"                \"geo_enabled\": true,\n"
"                \"notifications\": null,\n"
"                \"description\": \"So um Pi\\u00e1 bm gnt boa, de gosto musical ecl\\u00e9tico + prefiro um bom Rock n' Roll, Curto anda de Bike e joga um futeba d veiz incuando e Atleticano com orgulho. =D \",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_background_images\\/206676494\\/twitter_pattern_background_by_ainon.jpg\",\n"
"                \"default_profile_image\": false,\n"
"                \"statuses_count\": 5470,\n"
"                \"friends_count\": 145,\n",
"                \"screen_name\": \"Xeneral\",\n"
"                \"following\": null,\n"
"                \"show_all_inline_media\": false\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143430956032000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"ATSUSHI\\u75e9\\u305b\\u305f\\uff1f\",\n"
"            \"id\": 62143430956032000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"yui\",\n"
"                \"profile_sidebar_border_color\": \"CC3366\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"E5507E\",\n"
"                \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1210885986\\/image_normal.jpg\",\n"
"                \"created_at\": \"Tue Oct 20 04:16:52 +0000 2009\",\n"
"                \"location\": \"MEGURO TOKYO\",\n"
"                \"profile_link_color\": \"B40B43\",\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"id_str\": \"83766274\",\n"
"                \"url\": \"http:\\/\\/ameblo.jp\\/yuikame61\\/\",\n"
"                \"default_profile\": false,\n"
"                \"favourites_count\": 16,\n"
"                \"contributors_enabled\": false,\n"
"                \"utc_offset\": -36000,\n"
"                \"id\": 83766274,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 6,\n"
"                \"lang\": \"ja\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 175,\n",
"                \"profile_text_color\": \"362720\",\n"
"                \"profile_background_color\": \"FF6699\",\n"
"                \"time_zone\": \"Hawaii\",\n"
"                \"geo_enabled\": false,\n"
"                \"notifications\": null,\n"
"                \"description\": \"I'm stylist's assistant^^ \\/ I love fashion,japanese reggae and hiphop\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1302724321\\/images\\/themes\\/theme11\\/bg.gif\",\n"
"                \"default_profile_image\": false,\n"
"                \"statuses_count\": 4048,\n"
"                \"friends_count\": 184,\n"
"                \"screen_name\": \"kamewada\",\n"
"                \"following\": null,\n"
"                \"show_all_inline_media\": false\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143430540800000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"Well that's the last time I eat chocolate because of #EASTER\",\n"
"            \"id\": 62143430540800000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n"
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"TheRabbitsToldMe\",\n"
"                \"profile_sidebar_border_color\": \"C0DEED\",\n"
"                \"profile_background_tile\": false,\n"
"                \"profile_sidebar_fill_color\": \"DDEEF6\",\n"
"                \"profile_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_images\\/1314186122\\/image_normal.jpg\",\n"
"                \"created_at\": \"Fri Mar 18 23:27:45 +0000 2011\",\n"
"                \"location\": \"Bat Country bitch!!!! :D\",\n"
"                \"profile_link_color\": \"0084B4\",\n"
"                \"is_translator\": false,\n",
"                \"follow_request_sent\": null,\n"
"                \"id_str\": \"268522712\",\n"
"                \"url\": null,\n"
"                \"default_profile\": true,\n"
"                \"favourites_count\": 0,\n"
"                \"contributors_enabled\": false,\n"
"                \"utc_offset\": null,\n"
"                \"id\": 268522712,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 0,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 33,\n"
"                \"profile_text_color\": \"333333\",\n"
"                \"profile_background_color\": \"C0DEED\",\n"
"                \"time_zone\": null,\n"
"                \"geo_enabled\": true,\n"
"                \"notifications\": null,\n"
"                \"description\": \"Sup! I am the back up singer and electric guitarist in the band Your Broken Innocence. U jealous? ps. i luv Short Stack!\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1303425044\\/images\\/themes\\/theme1\\/bg.png\",\n"
"                \"default_profile_image\": false,\n"
"                \"statuses_count\": 115,\n"
"                \"friends_count\": 57,\n"
"                \"screen_name\": \"GraceShortStack\",\n"
"                \"following\": null,\n"
"                \"show_all_inline_media\": false\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                },\n"
"    {\n"
"        \n"
"        \"coordinates\": null,\n"
"            \"created_at\": \"Sun Apr 24 13:18:42 +0000 2011\",\n"
"            \"favorited\": false,\n"
"            \"truncated\": false,\n"
"            \"id_str\": \"62143429689344000\",\n"
"            \"in_reply_to_user_id_str\": null,\n"
"            \"contributors\": null,\n"
"            \"text\": \"RT @eireen37: Abis makan sop+sate kambing di kedai Ahmad Dani,recomended :q\",\n"
"            \"id\": 62143429689344000,\n"
"            \"in_reply_to_status_id_str\": null,\n"
"            \"retweet_count\": 0,\n"
"            \"geo\": null,\n",
"            \"retweeted\": false,\n"
"            \"in_reply_to_user_id\": null,\n"
"            \"place\": null,\n"
"            \"user\": {\n"
"            \"name\": \"Yuki Endah\",\n"
"                \"profile_sidebar_border_color\": \"ffadff\",\n"
"                \"profile_background_tile\": true,\n"
"                \"profile_sidebar_fill_color\": \"e645db\",\n"
"                \"profile_image_url\": \"http:\\/\\/a2.twimg.com\\/profile_images\\/1308637078\\/Copy_of_Copy_of_DSC01894_normal.jpg\",\n"
"                \"created_at\": \"Wed Jul 15 04:39:42 +0000 2009\",\n"
"                \"location\": \"Samarinda, Indonesia\",\n"
"                \"profile_link_color\": \"94039c\",\n"
"                \"is_translator\": false,\n"
"                \"follow_request_sent\": null,\n"
"                \"id_str\": \"56926527\",\n"
"                \"url\": \"http:\\/\\/id-id.facebook.com\\/people\\/Yuki-Endah\\/1646561051\",\n"
"                \"default_profile\": false,\n"
"                \"favourites_count\": 39,\n"
"                \"contributors_enabled\": false,\n"
"                \"utc_offset\": 28800,\n"
"                \"id\": 56926527,\n"
"                \"profile_use_background_image\": true,\n"
"                \"listed_count\": 2,\n"
"                \"lang\": \"en\",\n"
"                \"protected\": false,\n"
"                \"followers_count\": 377,\n"
"                \"profile_text_color\": \"a30c64\",\n"
"                \"profile_background_color\": \"fafafa\",\n"
"                \"time_zone\": \"Kuala Lumpur\",\n"
"                \"geo_enabled\": true,\n"
"                \"notifications\": null,\n"
"                \"description\": \"I LOVE MUSIC. Anytime I want, I will take my time & I will take my earphone to listening my favourite songs..\\r\\n\",\n"
"                \"verified\": false,\n"
"                \"profile_background_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_background_images\\/175641717\\/Sakura_1.jpg\",\n"
"                \"default_profile_image\": false,\n"
"                \"statuses_count\": 5731,\n"
"                \"friends_count\": 197,\n"
"                \"screen_name\": \"yuki_endah\",\n"
"                \"following\": null,\n"
"                \"show_all_inline_media\": true\n"
"                },\n"
"            \"source\": \"\\u003Ca href=\\\"http:\\/\\/www.snaptu.com\\\" rel=\\\"nofollow\\\"\\u003ESnaptu\\u003C\\/a\\u003E\",\n"
"                \"in_reply_to_screen_name\": null,\n"
"                \"in_reply_to_status_id\": null\n"
"                }\n"
"]\n",
NULL
};

/* recent flickr photos on monday morning */
const char * doc2[] = {
"{\n"
"		\"title\": \"Uploads from everyone\",\n"
"		\"link\": \"http://www.flickr.com/photos/\",\n"
"		\"description\": \"\",\n"
"		\"modified\": \"2011-04-25T11:41:03Z\",\n"
"		\"generator\": \"http://www.flickr.com/\",\n"
"		\"items\": [\n"
"	   {\n"
"			\"title\": \"sylhet 963\",\n"
"			\"link\": \"http://www.flickr.com/photos/saifmanna/5652906125/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5268/5652906125_c113213248_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-09T04:31:45-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/saifmanna/\\\">saifmanna<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/saifmanna/5652906125/\\\" title=\\\"sylhet 963\\\"><img src=\\\"http://farm6.static.flickr.com/5268/5652906125_c113213248_m.jpg\\\" width=\\\"240\\\" height=\\\"159\\\" alt=\\\"sylhet 963\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:03Z\",\n"
"			\"author\": \"nobody@flickr.com (saifmanna)\",\n"
"			\"author_id\": \"9712792@N05\",\n"
"			\"tags\": \"sylhet\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"DSCN7238\",\n"
"			\"link\": \"http://www.flickr.com/photos/54062330@N03/5652906139/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5182/5652906139_550aa6702f_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-25T12:26:17-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/54062330@N03/\\\">acvаrelium<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/54062330@N03/5652906139/\\\" title=\\\"DSCN7238\\\"><img src=\\\"http://farm6.static.flickr.com/5182/5652906139_550aa6702f_m.jpg\\\" width=\\\"240\\\" height=\\\"180\\\" alt=\\\"DSCN7238\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:03Z\",\n"
"			\"author\": \"nobody@flickr.com (acvаrelium)\",\n"
"			\"author_id\": \"54062330@N03\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"Siena-014\",\n"
"			\"link\": \"http://www.flickr.com/photos/katharinaegarter/5652906201/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5062/5652906201_c7307b23e1_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-22T12:51:58-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/katharinaegarter/\\\">Katharina Egarter<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/katharinaegarter/5652906201/\\\" title=\\\"Siena-014\\\"><img src=\\\"http://farm6.static.flickr.com/5062/5652906201_c7307b23e1_m.jpg\\\" width=\\\"180\\\" height=\\\"240\\\" alt=\\\"Siena-014\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:05Z\",\n"
"			\"author\": \"nobody@flickr.com (Katharina Egarter)\",\n",
"			\"author_id\": \"51712997@N04\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"avd-1.jpg\",\n"
"			\"link\": \"http://www.flickr.com/photos/arjanvandam/5652906213/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5066/5652906213_9ed963d069_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-25T13:41:06-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/arjanvandam/\\\">Arjan van Dam<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/arjanvandam/5652906213/\\\" title=\\\"avd-1.jpg\\\"><img src=\\\"http://farm6.static.flickr.com/5066/5652906213_9ed963d069_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"avd-1.jpg\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:06Z\",\n"
"			\"author\": \"nobody@flickr.com (Arjan van Dam)\",\n"
"			\"author_id\": \"44451778@N06\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"IMG_4146\",\n"
"			\"link\": \"http://www.flickr.com/photos/14414603@N08/5652906245/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5148/5652906245_8e9717e8c3_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-13T03:53:52-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/14414603@N08/\\\">A :-)<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/14414603@N08/5652906245/\\\" title=\\\"IMG_4146\\\"><img src=\\\"http://farm6.static.flickr.com/5148/5652906245_8e9717e8c3_m.jpg\\\" width=\\\"240\\\" height=\\\"180\\\" alt=\\\"IMG_4146\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:06Z\",\n"
"			\"author\": \"nobody@flickr.com (A :-))\",\n"
"			\"author_id\": \"14414603@N08\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"550907i20020624_13\",\n"
"			\"link\": \"http://www.flickr.com/photos/ltppims/5652906275/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5022/5652906275_467d6f36ed_m.jpg\"},\n"
"			\"date_taken\": \"2003-02-06T09:14:11-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/ltppims/\\\">ltppims<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/ltppims/5652906275/\\\" title=\\\"550907i20020624_13\\\"><img src=\\\"http://farm6.static.flickr.com/5022/5652906275_467d6f36ed_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"550907i20020624_13\\\" /><\\/a><\\/p> <p>550907i20020624_13<\\/p>\",\n"
"			\"published\": \"2011-04-25T11:41:08Z\",\n"
"			\"author\": \"nobody@flickr.com (ltppims)\",\n"
"			\"author_id\": \"61401047@N03\",\n"
"			\"tags\": \"550907i2002062413\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"P4193424\",\n"
"			\"link\": \"http://www.flickr.com/photos/aifromla/5652906305/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5266/5652906305_a72c1050c4_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-25T04:41:08-08:00\",\n",
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/aifromla/\\\">愛 from LA<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/aifromla/5652906305/\\\" title=\\\"P4193424\\\"><img src=\\\"http://farm6.static.flickr.com/5266/5652906305_a72c1050c4_m.jpg\\\" width=\\\"240\\\" height=\\\"180\\\" alt=\\\"P4193424\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:08Z\",\n"
"			\"author\": \"nobody@flickr.com (愛 from LA)\",\n"
"			\"author_id\": \"60647869@N06\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"In need of a wash but not on the last day Midland Red D9 on the last day of service 31,Dec,1979, in Leicester photo lifted from a super 8 film\",\n"
"			\"link\": \"http://www.flickr.com/photos/transport_photos/5652906307/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5189/5652906307_e5da6d2d29_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-25T12:41:08-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/transport_photos/\\\">Horsencart<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/transport_photos/5652906307/\\\" title=\\\"In need of a wash but not on the last day Midland Red D9 on the last day of service 31,Dec,1979, in Leicester photo lifted from a super 8 film\\\"><img src=\\\"http://farm6.static.flickr.com/5189/5652906307_e5da6d2d29_m.jpg\\\" width=\\\"240\\\" height=\\\"135\\\" alt=\\\"In need of a wash but not on the last day Midland Red D9 on the last day of service 31,Dec,1979, in Leicester photo lifted from a super 8 film\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:08Z\",\n"
"			\"author\": \"nobody@flickr.com (Horsencart)\",\n"
"			\"author_id\": \"36803579@N07\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"11182862509\",\n"
"			\"link\": \"http://www.flickr.com/photos/58240971@N06/5652906329/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5188/5652906329_0cebae6d65_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-25T04:41:09-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/58240971@N06/\\\">caciousclei<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/58240971@N06/5652906329/\\\" title=\\\"11182862509\\\"><img src=\\\"http://farm6.static.flickr.com/5188/5652906329_0cebae6d65_m.jpg\\\" width=\\\"180\\\" height=\\\"240\\\" alt=\\\"11182862509\\\" /><\\/a><\\/p> <p>ღneslyluka ni kennethocuteღ<\\/p>\",\n"
"			\"published\": \"2011-04-25T11:41:09Z\",\n"
"			\"author\": \"nobody@flickr.com (caciousclei)\",\n"
"			\"author_id\": \"58240971@N06\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"Resting in the woods\",\n"
"			\"link\": \"http://www.flickr.com/photos/benrobson2999/5653475856/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5301/5653475856_550aa6702f_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-24T14:23:43-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/benrobson2999/\\\">benrobson2999<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/benrobson2999/5653475856/\\\" title=\\\"Resting in the woods\\\"><img src=\\\"http://farm6.static.flickr.com/5301/5653475856_550aa6702f_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"Resting in the woods\\\" /><\\/a><\\/p> \",\n",
"			\"published\": \"2011-04-25T11:41:03Z\",\n"
"			\"author\": \"nobody@flickr.com (benrobson2999)\",\n"
"			\"author_id\": \"59245229@N04\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"IMG_4696\",\n"
"			\"link\": \"http://www.flickr.com/photos/feltedpleasure/5653475918/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5188/5653475918_a06fd2400c_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-25T08:05:11-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/feltedpleasure/\\\">FeltedPleasure<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/feltedpleasure/5653475918/\\\" title=\\\"IMG_4696\\\"><img src=\\\"http://farm6.static.flickr.com/5188/5653475918_a06fd2400c_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"IMG_4696\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:04Z\",\n"
"			\"author\": \"nobody@flickr.com (FeltedPleasure)\",\n"
"			\"author_id\": \"41967161@N03\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"DSC04271\",\n"
"			\"link\": \"http://www.flickr.com/photos/ze_ero/5653475956/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5144/5653475956_31da27478a_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-17T09:45:21-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/ze_ero/\\\">ze_ero<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/ze_ero/5653475956/\\\" title=\\\"DSC04271\\\"><img src=\\\"http://farm6.static.flickr.com/5144/5653475956_31da27478a_m.jpg\\\" width=\\\"240\\\" height=\\\"135\\\" alt=\\\"DSC04271\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:05Z\",\n"
"			\"author\": \"nobody@flickr.com (ze_ero)\",\n"
"			\"author_id\": \"49631749@N06\",\n"
"			\"tags\": \"japan kyoto arashiyama 京都 日本 嵐山 kansai 関西\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"DSC07923\",\n"
"			\"link\": \"http://www.flickr.com/photos/lamolda/5653475962/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5063/5653475962_8fc2b9f460_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-24T22:44:50-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/lamolda/\\\">lamolda<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/lamolda/5653475962/\\\" title=\\\"DSC07923\\\"><img src=\\\"http://farm6.static.flickr.com/5063/5653475962_8fc2b9f460_m.jpg\\\" width=\\\"213\\\" height=\\\"240\\\" alt=\\\"DSC07923\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:05Z\",\n"
"			\"author\": \"nobody@flickr.com (lamolda)\",\n"
"			\"author_id\": \"60466736@N02\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"DSC00773\",\n",
"			\"link\": \"http://www.flickr.com/photos/zhanghao/5653475998/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5141/5653475998_ef1ee0de1e_m.jpg\"},\n"
"			\"date_taken\": \"2006-12-23T15:36:57-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/zhanghao/\\\">贰月<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/zhanghao/5653475998/\\\" title=\\\"DSC00773\\\"><img src=\\\"http://farm6.static.flickr.com/5141/5653475998_ef1ee0de1e_m.jpg\\\" width=\\\"240\\\" height=\\\"180\\\" alt=\\\"DSC00773\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:06Z\",\n"
"			\"author\": \"nobody@flickr.com (贰月)\",\n"
"			\"author_id\": \"32806588@N00\",\n"
"			\"tags\": \"日本 新宿御苑 東京 出差\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"DSCF3051\",\n"
"			\"link\": \"http://www.flickr.com/photos/30045765@N07/5653476064/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5305/5653476064_c55cd687a1_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-25T23:58:27-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/30045765@N07/\\\">jamerco<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/30045765@N07/5653476064/\\\" title=\\\"DSCF3051\\\"><img src=\\\"http://farm6.static.flickr.com/5305/5653476064_c55cd687a1_m.jpg\\\" width=\\\"240\\\" height=\\\"163\\\" alt=\\\"DSCF3051\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:08Z\",\n"
"			\"author\": \"nobody@flickr.com (jamerco)\",\n"
"			\"author_id\": \"30045765@N07\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"DSC_0440\",\n"
"			\"link\": \"http://www.flickr.com/photos/carolineteselle/5653476082/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5023/5653476082_3884a09f91_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-20T19:29:33-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/carolineteselle/\\\">ecteselle<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/carolineteselle/5653476082/\\\" title=\\\"DSC_0440\\\"><img src=\\\"http://farm6.static.flickr.com/5023/5653476082_3884a09f91_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"DSC_0440\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:08Z\",\n"
"			\"author\": \"nobody@flickr.com (ecteselle)\",\n"
"			\"author_id\": \"57944678@N08\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"IMG_2301\",\n"
"			\"link\": \"http://www.flickr.com/photos/marcolympics/5653476084/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5307/5653476084_00abc74e08_m.jpg\"},\n"
"			\"date_taken\": \"2010-12-14T11:52:23-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/marcolympics/\\\">mbk28<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/marcolympics/5653476084/\\\" title=\\\"IMG_2301\\\"><img src=\\\"http://farm6.static.flickr.com/5307/5653476084_00abc74e08_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"IMG_2301\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:08Z\",\n",
"			\"author\": \"nobody@flickr.com (mbk28)\",\n"
"			\"author_id\": \"16181899@N00\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"shot_1303650234358\",\n"
"			\"link\": \"http://www.flickr.com/photos/mirtedevries/5653476086/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5145/5653476086_cb998056eb_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-24T15:03:54-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/mirtedevries/\\\">Krullenbol1987<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/mirtedevries/5653476086/\\\" title=\\\"shot_1303650234358\\\"><img src=\\\"http://farm6.static.flickr.com/5145/5653476086_cb998056eb_m.jpg\\\" width=\\\"207\\\" height=\\\"240\\\" alt=\\\"shot_1303650234358\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:08Z\",\n"
"			\"author\": \"nobody@flickr.com (Krullenbol1987)\",\n"
"			\"author_id\": \"61985194@N03\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"GWP Rochefort 2011 De Leerboom (602) (Small)\",\n"
"			\"link\": \"http://www.flickr.com/photos/26703364@N05/5653476088/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5307/5653476088_3fc497eea8_m.jpg\"},\n"
"			\"date_taken\": \"2011-03-28T09:05:21-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/26703364@N05/\\\">bertrand.demiddeleer<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/26703364@N05/5653476088/\\\" title=\\\"GWP Rochefort 2011 De Leerboom (602) (Small)\\\"><img src=\\\"http://farm6.static.flickr.com/5307/5653476088_3fc497eea8_m.jpg\\\" width=\\\"240\\\" height=\\\"180\\\" alt=\\\"GWP Rochefort 2011 De Leerboom (602) (Small)\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:09Z\",\n"
"			\"author\": \"nobody@flickr.com (bertrand.demiddeleer)\",\n"
"			\"author_id\": \"26703364@N05\",\n"
"			\"tags\": \"\"\n"
"	   },\n"
"	   {\n"
"			\"title\": \"IMG_3650\",\n"
"			\"link\": \"http://www.flickr.com/photos/fatpoppadaddys/5653476104/\",\n"
"			\"media\": {\"m\":\"http://farm6.static.flickr.com/5183/5653476104_462f44a3e5_m.jpg\"},\n"
"			\"date_taken\": \"2011-04-22T00:26:40-08:00\",\n"
"			\"description\": \" <p><a href=\\\"http://www.flickr.com/people/fatpoppadaddys/\\\">fatpoppadaddys<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/fatpoppadaddys/5653476104/\\\" title=\\\"IMG_3650\\\"><img src=\\\"http://farm6.static.flickr.com/5183/5653476104_462f44a3e5_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"IMG_3650\\\" /><\\/a><\\/p> \",\n"
"			\"published\": \"2011-04-25T11:41:09Z\",\n"
"			\"author\": \"nobody@flickr.com (fatpoppadaddys)\",\n"
"			\"author_id\": \"28382183@N04\",\n"
"			\"tags\": \"efs1855mmf3556\"\n"
"	   }\n"
"        ]\n"
"}\n",
NULL
};

/* commits on the yajl 2.x branch */
const char * doc3[] = {
"{\"commits\":[{\"parents\":[{\"id\":\"1b9995a0a341096afdf3e13a70f2185e438c4452\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/0d5000f0ad0ef9d94bd2bbcf2188b813a60d452a\",\"id\":\"0d5000f0ad0ef9d94bd2bbcf2188b813a60d452a\",\"committed_date\":\"2011-04-24T11:48:34-07:00\",\"authored_date\":\"2011-04-24T11:48:34-07:00\",\"message\":\"update docs for perf gains with yajl_dont_validate_strings\",\"tree\":\"af70481aad00b4ce9e2f23cdd23e58d735c50072\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"453aa706cc86425bea35195e454f80941a7fbc4a\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/1b9995a0a341096afdf3e13a70f2185e438c4452\",\"id\":\"1b9995a0a341096afdf3e13a70f2185e438c4452\",\"committed_date\":\"2011-04-24T07:10:58-07:00\",\"authored_date\":\"2011-04-24T07:10:58-07:00\",\"message\":\"first pass at a little in-tree perf test for a stable way to quantify optimization efforts\",\"tree\":\"39884f09d59312dbeea4a7ab7d46a56320cb986c\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"25133e5508b979fdf6814832d4355f46bd26db43\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/453aa706cc86425bea35195e454f80941a7fbc4a\",\"id\":\"453aa706cc86425bea35195e454f80941a7fbc4a\",\"committed_date\":\"2011-04-24T07:06:14-07:00\",\"authored_date\":\"2011-04-24T07:06:14-07:00\",\"message\":\"fix debug compile error\",\"tree\":\"e10ab42ec2577bc19163222f445532958fe51f3b\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"b36a8bd294cbeeaab7149402f369fdd9be95aec1\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/25133e5508b979fdf6814832d4355f46bd26db43\",\"id\":\"25133e5508b979fdf6814832d4355f46bd26db43\",\"committed_date\":\"2011-04-23T12:42:19-07:00\",\"authored_date\":\"2011-04-23T12:42:19-07:00\",\"message\":\"documentation updates\",\"tree\":\"e49e7296c1f82f78f359636ce6aa600e7c3ef73a\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"9bf2ad882bb98710949b1e3262bddff67845bb87\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/b36a8bd294cbeeaab7149402f369fdd9be95aec1\",\"id\":\"b36a8bd294cbeeaab7149402f369fdd9be95aec1\",\"committed_date\":\"2011-04-23T10:17:35-07:00\",\"authored_date\":\"2011-04-23T10:17:35-07:00\",\"message\":\"update documentation and tighten API for yajl_tree.h, inline several structures so a reader can grok the structure in hopefully one pass without jumping all over the file.\",\"tree\":\"7e2ab759926148ad03d1931c8a768abe5301bff9\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"69a9c263b5e3c2019dc258d3e75c95ad7267ea16\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/9bf2ad882bb98710949b1e3262bddff67845bb87\",\"id\":\"9bf2ad882bb98710949b1e3262bddff67845bb87\",\"committed_date\":\"2011-04-22T18:21:52-07:00\",\"authored_date\":\"2011-04-22T18:21:52-07:00\",\"message\":\"move unnec. includes out of public api, more yajl_type propogation\",\"tree\":\"f30c2f4962abb020a64d0bc4773db1b704053b1d\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"d24690ee5cc09ea2cf6bbd152f2627e8ee1986e7\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/69a9c263b5e3c2019dc258d3e75c95ad7267ea16\",\"id\":\"69a9c263b5e3c2019dc258d3e75c95ad7267ea16\",\"committed_date\":\"2011-04-22T18:17:44-07:00\",\"authored_date\":\"2011",
"-04-22T18:17:44-07:00\",\"message\":\"change types from preprocessor macros to an enum, add yajl_t_any for use with yajl_tree_get()\",\"tree\":\"46f88aa049c3016e68a93463ff265fcdd38d879a\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"8e5d0b15415c6422365f6ececff5190499b43bd5\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/d24690ee5cc09ea2cf6bbd152f2627e8ee1986e7\",\"id\":\"d24690ee5cc09ea2cf6bbd152f2627e8ee1986e7\",\"committed_date\":\"2011-04-22T18:11:55-07:00\",\"authored_date\":\"2011-04-22T18:11:55-07:00\",\"message\":\"reduce output noise during testing\",\"tree\":\"c92162f0875998309e33af415510db3ecd592559\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"dd18f6182e58bb81368b30d33262e58fca7a532c\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/8e5d0b15415c6422365f6ececff5190499b43bd5\",\"id\":\"8e5d0b15415c6422365f6ececff5190499b43bd5\",\"committed_date\":\"2011-04-22T16:05:38-07:00\",\"authored_date\":\"2011-04-22T16:05:38-07:00\",\"message\":\"fix compiler warning.  he's right.\",\"tree\":\"b7350153b2d9ba99e83540a0caaca73b6ac8367f\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"aedaa9e449e03af866c0e594014cd7e78dc7c98b\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/dd18f6182e58bb81368b30d33262e58fca7a532c\",\"id\":\"dd18f6182e58bb81368b30d33262e58fca7a532c\",\"committed_date\":\"2011-04-22T15:52:23-07:00\",\"authored_date\":\"2011-04-22T15:52:23-07:00\",\"message\":\"add a couple convenience routines for dealing with numbers, more copious yajl_tree reformatting\",\"tree\":\"e7767ad0ded6924ee6d9af4b59842148f9409cd6\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"baf9c39797fce24b89398a3e94ff27ae4074867a\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/aedaa9e449e03af866c0e594014cd7e78dc7c98b\",\"id\":\"aedaa9e449e03af866c0e594014cd7e78dc7c98b\",\"committed_date\":\"2011-04-22T15:38:55-07:00\",\"authored_date\":\"2011-04-22T15:38:55-07:00\",\"message\":\"object keys should just be bare strings, the indirection is useless\",\"tree\":\"73dc7fb46872a78d6516fadb2197519d8d6ac3f0\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"742a1cd7c66d64d45e25a016e506d555834f087b\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/baf9c39797fce24b89398a3e94ff27ae4074867a\",\"id\":\"baf9c39797fce24b89398a3e94ff27ae4074867a\",\"committed_date\":\"2011-04-22T15:32:59-07:00\",\"authored_date\":\"2011-04-22T15:32:59-07:00\",\"message\":\"be terse & piss all over that tree.\",\"tree\":\"6103a99867b21a5d844bb84eb49e84c4f393d1ec\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"86f5093024d434eb989c4d6c7ad657a31f5f4bf1\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/742a1cd7c66d64d45e25a016e506d555834f087b\",\"id\":\"742a1cd7c66d64d45e25a016e506d555834f087b\",\"committed_date\":\"2011-04-22T14:53:32-07:00\",\"authored_date\":\"2011-04-22T14:53:32-07:00\",\"message\":\"cosmetic, indention and code formatting for yajl_tree\",\"tree\":\"0c883d58cfd69bfaba84a54be4912dd2edb86095\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"b53a6cb3ee91d2a7765bff88e41089ce17ec7b4a\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/86f509302",
"4d434eb989c4d6c7ad657a31f5f4bf1\",\"id\":\"86f5093024d434eb989c4d6c7ad657a31f5f4bf1\",\"committed_date\":\"2011-04-22T14:47:44-07:00\",\"authored_date\":\"2011-04-22T14:47:44-07:00\",\"message\":\"remove a useless level of indirection for strings\",\"tree\":\"f734163b55a78c41ca157cc90096fe0db3152737\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"e976b21748c5fd8b6ca4d28470d8a70f69890ecd\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/b53a6cb3ee91d2a7765bff88e41089ce17ec7b4a\",\"id\":\"b53a6cb3ee91d2a7765bff88e41089ce17ec7b4a\",\"committed_date\":\"2011-04-22T14:43:29-07:00\",\"authored_date\":\"2011-04-22T14:43:29-07:00\",\"message\":\"ISC license the configuration file parser example\",\"tree\":\"fe9bea332cf4a1ea8c3843035abddf64ba2a501d\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"a03bd0c9c61092f664c97a51b1b0262f8499e21b\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/e976b21748c5fd8b6ca4d28470d8a70f69890ecd\",\"id\":\"e976b21748c5fd8b6ca4d28470d8a70f69890ecd\",\"committed_date\":\"2011-04-22T14:43:13-07:00\",\"authored_date\":\"2011-04-22T14:43:13-07:00\",\"message\":\"relicense florian's contribution ISC, (still pending his approval, but I'm an optimist)\",\"tree\":\"1b4fbbf98af3ee641692e6f0ba045e8343ac2386\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"668e787b1cdba118d73efc233e8a48306c2033d6\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/a03bd0c9c61092f664c97a51b1b0262f8499e21b\",\"id\":\"a03bd0c9c61092f664c97a51b1b0262f8499e21b\",\"committed_date\":\"2011-04-22T14:40:45-07:00\",\"authored_date\":\"2011-04-22T14:40:45-07:00\",\"message\":\"talk a little bit more about this yajl_tree.h example\",\"tree\":\"e297fd14812d926f005919a1d3a28d8ad427521c\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"d2ec58b70b429b908d9f395ef378443b6101153b\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/668e787b1cdba118d73efc233e8a48306c2033d6\",\"id\":\"668e787b1cdba118d73efc233e8a48306c2033d6\",\"committed_date\":\"2011-04-22T14:39:40-07:00\",\"authored_date\":\"2011-04-22T14:39:40-07:00\",\"message\":\"initial merge/port of Florian Forster's yajl_tree implementation, along with a new utility routine yajl_tree_get() and an example\",\"tree\":\"38488d9afe9d58c47e1c6ed5c6f7ad1cbed5cd45\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"9538bda17bef60642f2ed3ff2f6bfd29785c36df\"},{\"id\":\"a7ab7633a603c6c3e31bb54a45da2afbb54a98c9\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/d2ec58b70b429b908d9f395ef378443b6101153b\",\"id\":\"d2ec58b70b429b908d9f395ef378443b6101153b\",\"committed_date\":\"2011-04-22T13:11:24-07:00\",\"authored_date\":\"2011-04-22T13:11:24-07:00\",\"message\":\"Merge branch 'parsetree' of https://github.com/octo/yajl into parsetree\",\"tree\":\"207162f20d8d97eafe0c9e899d9ffad32c36c0c2\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"bb21bcdb4ced287e7aea8285904ad3540560558a\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/9538bda17bef60642f2ed3ff2f6bfd29785c36df\",\"id\":\"9538bda17bef60642f2ed3ff2f6bfd29785c36df\",\"committed_date\":\"2011-04-22T12:17:29-07:00\",\"authored_date\":\"2011-04-22T12:17:29-07:00\",\"message\":\"Add a generator feature to validate UTF8 strings as they are written to output.  closes #25\",\"tree\":\"24ebb57",
"3fadebcf0387f73b3feb9a83ac2bf080d\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"9813127163116b7f928c383f14bb8618675a9694\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/bb21bcdb4ced287e7aea8285904ad3540560558a\",\"id\":\"bb21bcdb4ced287e7aea8285904ad3540560558a\",\"committed_date\":\"2011-04-22T11:37:04-07:00\",\"authored_date\":\"2011-04-22T11:37:04-07:00\",\"message\":\"use new configuration features to simplify the json verifier\",\"tree\":\"9450c43b683056391b936c05ec88dad1333fa628\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"0858bb341280956947df1cfae33eb5ac6ecfe6f7\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/9813127163116b7f928c383f14bb8618675a9694\",\"id\":\"9813127163116b7f928c383f14bb8618675a9694\",\"committed_date\":\"2011-04-21T12:58:28-07:00\",\"authored_date\":\"2011-04-21T09:56:51-07:00\",\"message\":\"rename yajl_parse_complete to yajl_complete_parse.  the latter is correctly an imperative, while the former might be confused for a question.\",\"tree\":\"66fbf6ebf56d9bbe75095f5b97bab7fc22b2115e\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"6aefdaab38d81f33c46e33353c5a156884ea022d\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/0858bb341280956947df1cfae33eb5ac6ecfe6f7\",\"id\":\"0858bb341280956947df1cfae33eb5ac6ecfe6f7\",\"committed_date\":\"2011-04-21T12:55:45-07:00\",\"authored_date\":\"2011-04-21T08:36:26-07:00\",\"message\":\"rework programmatic configuration of yajl.  both generator and parser now have a yajl_XXX_config() function that accepts varargs so that configuration is simple, and new config options can be added in the future that preserve backwards binary compatibility. closes #23.\",\"tree\":\"2f61e004f7a892f00f6f34d38a8a194618400b59\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"b6b44127f23d70231156a8d20fa7d437cac1588f\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/6aefdaab38d81f33c46e33353c5a156884ea022d\",\"id\":\"6aefdaab38d81f33c46e33353c5a156884ea022d\",\"committed_date\":\"2011-04-20T15:25:43-07:00\",\"authored_date\":\"2011-04-20T15:25:43-07:00\",\"message\":\"oh, ok.  osx ld doesn't like more than two digits in shared lib version numbers.  weenies.\",\"tree\":\"8b13d0a2e7870253be11fe6ba20e73dc64f2586e\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"f542280579e0a98a172e38631e972acbd6dc1195\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/b6b44127f23d70231156a8d20fa7d437cac1588f\",\"id\":\"b6b44127f23d70231156a8d20fa7d437cac1588f\",\"committed_date\":\"2011-04-20T15:23:09-07:00\",\"authored_date\":\"2011-04-20T15:23:09-07:00\",\"message\":\"add tests cases for partial value config\",\"tree\":\"52392b3b62a212d17b9e6b4fa865620d3603d7b6\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"de81b1fcd22b29b152f921f23faab759c79da7e1\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/f542280579e0a98a172e38631e972acbd6dc1195\",\"id\":\"f542280579e0a98a172e38631e972acbd6dc1195\",\"committed_date\":\"2011-04-20T14:57:42-07:00\",\"authored_date\":\"2011-04-20T14:57:42-07:00\",\"message\":\"cosmetic, indentation and whitespace\",\"tree\":\"736c631155d85e83b0cbede9223d4ea1a98d43fa\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"7852c0a19",
"70b67c22b7b7bfeb29095bcc21ca12f\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/de81b1fcd22b29b152f921f23faab759c79da7e1\",\"id\":\"de81b1fcd22b29b152f921f23faab759c79da7e1\",\"committed_date\":\"2011-04-20T14:48:36-07:00\",\"authored_date\":\"2011-04-20T14:48:36-07:00\",\"message\":\"yajl 2 will be relicensed under the ISC license.  same idea, fewer bytes.\",\"tree\":\"4cc7e0c2d9bde7f1c739fda71bec6491b381b6d2\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"986516e15b7b331a19fe317e2c828c5352d5b72e\"}],\"author\":{\"name\":\"Greg Olszewski\",\"login\":\"gno\",\"email\":\"gno@gropeep.org\"},\"url\":\"/lloyd/yajl/commit/7852c0a1970b67c22b7b7bfeb29095bcc21ca12f\",\"id\":\"7852c0a1970b67c22b7b7bfeb29095bcc21ca12f\",\"committed_date\":\"2011-04-20T14:24:19-07:00\",\"authored_date\":\"2010-10-17T17:05:01-07:00\",\"message\":\"o closes #5 - replace strtol with own implementation, uses pascal strings.\\no issue #6 - check a few malloc error cases.\\n\\nSigned-off-by: Lloyd Hilaiel <lloyd@hilaiel.com>\",\"tree\":\"6c5ee341a57ddc31ea920eae720083d50b55436c\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"9b88b94429985a8579161ea99754cfa5e66a54bb\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/986516e15b7b331a19fe317e2c828c5352d5b72e\",\"id\":\"986516e15b7b331a19fe317e2c828c5352d5b72e\",\"committed_date\":\"2011-04-20T11:22:50-07:00\",\"authored_date\":\"2011-04-20T11:22:50-07:00\",\"message\":\"add a test case which demonstrates how new parsing configuration in yajl 2.x closes #7\",\"tree\":\"274bf0c359ff4a30cc913c8614beed0b68ef615e\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"888d390f4e3642f2bafff7e5489810cc695843d1\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/9b88b94429985a8579161ea99754cfa5e66a54bb\",\"id\":\"9b88b94429985a8579161ea99754cfa5e66a54bb\",\"committed_date\":\"2011-04-20T11:20:45-07:00\",\"authored_date\":\"2011-04-20T11:20:45-07:00\",\"message\":\"fixes to testing system.  allowGarbage is misnamed, it actually means *forbid* garbage\",\"tree\":\"6a165f8af10271b6b3605ef9a78bc6d88a73184a\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"ecd8008a32677f4d03f8c9231ece27732a248404\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/888d390f4e3642f2bafff7e5489810cc695843d1\",\"id\":\"888d390f4e3642f2bafff7e5489810cc695843d1\",\"committed_date\":\"2011-04-20T11:08:15-07:00\",\"authored_date\":\"2011-04-20T11:08:15-07:00\",\"message\":\"add a missing test case - multiple integers in a stream\",\"tree\":\"206438ff65252b1a77e4301688ce025cabf13c70\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"b9e91a37f7132bf7f5b91de895b766db06ae3072\"}],\"author\":{\"name\":\"Conrad Irwin\",\"login\":\"ConradIrwin\",\"email\":\"conrad.irwin@gmail.com\"},\"url\":\"/lloyd/yajl/commit/ecd8008a32677f4d03f8c9231ece27732a248404\",\"id\":\"ecd8008a32677f4d03f8c9231ece27732a248404\",\"committed_date\":\"2011-04-20T10:17:40-07:00\",\"authored_date\":\"2011-03-19T18:32:21-07:00\",\"message\":\"Parse null bytes correctly.\\n\\nSigned-off-by: Lloyd Hilaiel <lloyd@hilaiel.com>\",\"tree\":\"f88244c16383ca4377e9cbadc4e5a7fb0ab1324a\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"dc206cf75b8489b4cdcc8ff0cdbe94cbcc61a551\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/b9e91a37f7132bf7f5b91de895b766db06ae3072\",\"id\":\"b9e91a37f7132bf7f5b91de895b76",
"6db06ae3072\",\"committed_date\":\"2011-04-20T09:41:14-07:00\",\"authored_date\":\"2011-04-20T09:41:14-07:00\",\"message\":\"o rework yajl api\\n  - remove yajl_status_parse_incomplete, replace with three\\n    flag settings\\n    - yajl_allow_multiple_values\\n    - yajl_forbid_trailing_garbage\\n    - yajl_forbid_partial_values\\n\\n    In the new model, callers must consistently call yajl_parse_complete\\n    and check it's return. Two new parse errors have been introduced:\\n    \\\"premature EOF\\\" and \\\"trailing garbage\\\".\\n\\n    yajl_test.c demonstrates the simplifying effect on calling code.\\n\\n    adds 3 flags to yajl_test\\n         -g forbids trailing garbage\\n         -p forbids partial values\\n         -m allows multiple values to be parsed.\\n\\n    and complementary tests.\\n\\nlth: Addresses the majority of issue #24.  gno is awesomesauce.\\n\\nSigned-off-by: Lloyd Hilaiel <lloyd@hilaiel.com>\",\"tree\":\"a2f006d686e40502ebc74be858992db52ba2204b\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"1ecfbc0b3458420feba033cd2c25a4f5e9bac0b4\"},{\"id\":\"49116c941312b78ca6768b916fd0d247147f1f47\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/dc206cf75b8489b4cdcc8ff0cdbe94cbcc61a551\",\"id\":\"dc206cf75b8489b4cdcc8ff0cdbe94cbcc61a551\",\"committed_date\":\"2011-04-20T09:27:46-07:00\",\"authored_date\":\"2011-04-20T09:27:46-07:00\",\"message\":\"Merge branch 'master' into 2.x\",\"tree\":\"e9d6f3873dfe530e11009bbf0fa1e858f27d968b\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"0d9e3589bc8d59ce963937587f634c8c9cc61643\"}],\"author\":{\"name\":\"Mirek Rusin\",\"login\":\"mirek\",\"email\":\"mirek@me.com\"},\"url\":\"/lloyd/yajl/commit/49116c941312b78ca6768b916fd0d247147f1f47\",\"id\":\"49116c941312b78ca6768b916fd0d247147f1f47\",\"committed_date\":\"2011-04-19T04:46:52-07:00\",\"authored_date\":\"2011-04-19T04:46:52-07:00\",\"message\":\"LLVM warnings\",\"tree\":\"57eac7400e476299277490f9253e059e4d00085b\",\"committer\":{\"name\":\"Mirek Rusin\",\"login\":\"mirek\",\"email\":\"mirek@me.com\"}}]}",
NULL
};

const char ** g_documents[] = {
    doc1,
    doc2,
    doc3,
    NULL
};

int num_docs(void) 
{
    int i = 0;
    for (i=0;g_documents[i];i++);
    return i;
}

const char ** get_doc(int i) 
{
    return g_documents[i];
}

unsigned int doc_size(int i) 
{
    int sz = 0;
    const char ** p = get_doc(i);
    do { sz += strlen(*p); } while(*(++p));
    return sz;
}