-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWikiTreebankQuartiles.txt
4356 lines (4356 loc) · 954 KB
/
WikiTreebankQuartiles.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
230539 (ROOT (IN so) (@S (NP you) (@S (VP (@VP (@VP (VBD reverted) (NP (PRP$ my) (NN edit))) (, ,)) (S (VBG rstoring) (NP (DT a) (@NP (ADJP (RB badly) (VBN written)) (@NP (NN sentence) (SBAR (WHNP that) (S (VBZ includes) (NP (NP (DT a) (NN point)) (SBAR (WHNP that) (S (VBZ is) (UCP (@UCP (ADJP (RB neither) (@ADJP (JJ germane) (PP (TO to) (NP (DT the) (NN topic))))) (CC nor)) (VP (VBN supported) (PP (IN by) (NP (DT a) (NN citation))))))))))))))) (. .))))
230539 (ROOT (NP (@NP (@NP (NP yeah) (, ,)) (SBAR (WHNP that) (S (ADVP really) (VP helped)))) (, ,)) (@S (VP (@VP (VBD did) (RB n't)) (NP it)) (. ?)))
629967 (ROOT (VP huh) (. ?))
629967 (ROOT (WHNP (@WHNP (WP who) (DT the)) (NN hell)) (@SBARQ (SQ (VBP are) (NP you)) (. ?)))
628256 (ROOT (INTJ no) (@S (, ,) (@S (NP (@NP (NP (RB not) (JJ funny)) (, ,)) (SBAR (IN unless) (S (NP you) (VP (VBP are) (NP (DT a) (RB mentally)))))) (@S (VP (VBD challenged) (NP person)) (. .)))))
628256 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP (@VP (VB find) (NP (DT a) (@NP (JJR better) (NN hobby)))) (SBAR (WHADVP where) (S (NP you) (VP (@VP (VBP do) (RB n't)) (VP (@VP (VP (VB post) (NP lies)) (CC and)) (VP (VB offend) (NP (NP (DT the) (NNS people)) (PP (IN of) (NP tibet)))))))))) (. ?)))
624283 (ROOT (NP i) (@S (VP (@VP (@VP (VBD was) (RB n't)) (ADJP sure)) (SBAR (IN whether) (S (NP you) (VP (@VP (VBD were) (ADVP actually)) (VP (@VP (VBG reading) (NP anything)) (SBAR (IN because) (S (NP facts) (VP (VBP seem) (S (TO to) (VP (@VP (@VP (VB bounce) (PRT off)) (PP (IN of) (NP you))) (PP (IN like) (NP (NP bullets) (PP (RB off) (@PP (IN of) (NP superman))))))))))))))) (. .)))
624283 (ROOT (CC and) (@S (NP you) (@S (VP (VBP accuse) (NP (NP me) (PP (IN of) (NP fantasies)))) (. ?))))
602055 (ROOT (WHNP (WHADJP (WRB how) (JJ many)) (NNS times)) (@SBARQ (SQ (@SQ (VBP do) (NP i)) (VP (VB have) (S (TO to) (VP (@VP (VB revert) (NP you)) (SBAR (IN before) (S (NP you) (VP stop))))))) (. ?)))
602055 (ROOT (@SQ (@SQ (VBP do) (NP you)) (VP (VB want) (S (TO to) (VP (VB get) (VP blocked))))) (. ?))
25481 (ROOT (WHNP (@WHNP (WP what) (DT the)) (NN hell)) (. ?))
25481 (ROOT (ADJP (JJ bitter) (RB much)) (. ?))
181779 (ROOT (NP you) (@S (ADVP really) (@S (VP (@VP (VBP want) (PRT off)) (S (ADVP here) (@S (, ,) (VP (VB dont) (NP you))))) (. ?))))
181779 (ROOT (@S (@S (S (NP i) (VP (@VP (VBP 've) (ADVP already)) (VP (VBN posted) (NP (NP (DT the) (NN incident)) (PP (IN on) (NP (DT the) (@NP (NN incident) (NN board)))))))) (CC and)) (S (NP you) (@S (ADVP still) (VP (VBP are) (VP (@VP (VBG keeping) (NP it)) (PRT up)))))) (. ?))
625649 (ROOT (NP alf) (@S (VP (VBZ has) (NP (NP (DT a) (@NP (JJ large) (NN <url>))) (PP (IN in) (NP germany)))) (. .)))
625649 (ROOT (WHADVP (WRB how) (PP (IN on) (NP earth))) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB know) (SBAR (IN that) (S (NP he) (VP (VBZ is) (NP (NP (DT a) (NN character)) (SBAR (NP (RB almost) (@NP (DT no) (NN one))) (VP (VBZ knows) (PP (IN about) (SBAR (WHADVP where) (S (NP you) (VP (VBP get) (NP (PRP$ your) (@NP (JJ f) (@NP (JJ 'n) (NN info)))))))))))))))) (. ?)))
626504 (ROOT (VP (@VP (VB do) (RB n't)) (VP (@VP (VB add) (NP (DT any) (@NP (JJR more) (NN trash)))) (PP (TO to) (NP (DT the) (NN article))))) (. .))
626504 (ROOT (VP (VBD got) (NP it)) (. ?))
421161 (ROOT (@S (@S (@S (S (NP (NP (DT any) (JJR more)) (PP (IN of) (NP (NP (DT this) (@NP (JJ hoax) (NN crap))) (PP (IN at) (NP (NNP <url>) (@NP (, ,) (@NP (NNP <url>) (, ,)))))))) (VP (VBP eyre/heller) (NP garbage))) (, ,)) (CC and)) (S (NP you) (VP (MD will) (VP (VB be) (VP (ADVP permanently) (@VP (VBN banned) (PP (IN from) (NP editing)))))))) (. .))
421161 (ROOT (@SQ (@SQ (VBZ is) (NP that)) (ADJP clear)) (. ?))
489947 (ROOT (PP (IN as) (NP (NP (@NP (@NP (@NP (NP (DT a) (@NP (JJ former) (NN administrator))) (, ,)) (CC and)) (ADVP therefore)) (NP (DT a) (@NP (JJ veteran) (NN editor)))) (SBAR (WHNP who) (S (VBZ knows) (SBAR (WHADVP how) (S (NP wikipedia) (@S (ADVP really) (VP works)))))))) (@S (, ,) (@S (NP i) (@S (VP (@VP (VBP am) (ADVP actually)) (ADJP (VBN surprised) (SBAR (NP you) (VP (@VP (MD would) (ADVP even)) (VP (@VP (VB ask) (NP (PDT such) (@NP (DT a) (NN question)))) (PP (IN with) (NP (PDT such) (@NP (DT an) (@NP (JJ obvious) (NN answer)))))))))) (. .)))))
489947 (ROOT (NP i) (@S (VP (VBP suspect) (SBAR (NP you) (VP (@VP (VBD were) (ADVP simply)) (VP (@VP (VBG pointing) (PRT out)) (NP (NP (DT a) (@NP (VBN perceived) (NN injustice))) (PP (IN with) (NP (NP (DT a) (NN question)) (VP (@VP (VBN founded) (PP (IN in) (NP (DT a) (NN <url>)))) (SBAR (IN that) (S (NP you) (@S (ADVP yourself) (VP (@VP (VBD did) (RB not)) (VP (VB take) (ADVP seriously)))))))))))))) (. ?)))
335570 (ROOT (SBARQ (WHADVP how) (SQ (@SQ (VBZ is) (NP it)) (ADJP (JJ false) (PP (TO to) (NP state))))) (@S (NP he) (@S (VP (VBD was) (NP (@NP (NP (NP (DT the) (NN ruler)) (PP (IN of) (NP (DT the) (NN prc)))) (: -)) (S (NP (NP terms) (PP (JJ such) (@PP (IN as) (NP (NP (NNP mao) (POS 's)) (NN government))))) (VP (VBP are) (VP (VBN used) (PP (IN in) (NP (DT the) (NN article)))))))) (. .))))
335570 (ROOT (@SQ (@SQ (MD can) (NP you)) (VP (@VP (VB leave) (NP (PRP$ your) (@NP (JJ marxist) (@NP (JJ personal) (NNS beliefs))))) (PP (IN at) (NP (DT the) (NN door))))) (. ?))
207661 (ROOT (NP i) (@S (VP (@VP (VBD had) (NP (DT no) (NN idea))) (SBAR (IN that) (S (NP i) (VP (VBD was) (NP (PDT such) (@NP (DT a) (@NP (JJ rogue) (NN admin)))))))) (. .)))
207661 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (ADVP seriously) (@VP (VBG suggesting) (SBAR (IN that) (S (NP i) (VP (VBP need) (S (TO to) (VP (VB be) (VP (@VP (VBN kicked) (PRT off)) (NP (NP (DT the) (NN project)) (PP (IN for) (S (VBG closing) (NP (DT a) (@NP (NN deletion) (NN debate))))))))))))))) (. ?))
91368 (ROOT (SBAR (WHNP what) (S (@S (S (NP (@NP (NP (DT a) (NN joke)) (, ,)) (NP (DT this) (NN player))) (VP (VBZ has) (VP (@VP (VBN played) (NP (NN league) (NN football))) (NP (PDT all) (@NP (PRP$ his) (NN career)))))) (CC and)) (S (NP (DT some) (NN clown)) (VP (@VP (VBZ has) (ADVP now)) (VP (@VP (VBN deleted) (NP it)) (PRT off)))))) (@SBARQ (, ,) (@SBARQ (WHNP (WHNP (WP what) (NN kind)) (PP (IN of) (NP rules))) (@SBARQ (SQ (@SQ (VBZ has) (NP this)) (VP (VBN been) (VP (VBN deleted) (PP (IN under) (NP then))))) (. ?)))))
91368 (ROOT (S (MD may) (VP (VB be) (VP deleted))) (@S (VP (@VP (VBZ seems) (ADJP (@ADJP (ADJP (NP (NP (NP (DT a) (NN bit)) (PP (IN of) (NP (DT a) (@NP (JJ poor) (NN excuse))))) (PP (TO to) (NP me))) (RB personally)) (, ,)) (ADJP fancy))) (S (@VP (VBG giving) (NP me)) (NP (NP (DT some) (NN information)) (PP (@PP (IN as) (TO to)) (SBAR (WHADVP why) (S (NP this) (VP (VBZ has) (VP (VBN been) (VP (VBN deleted) (PP (RB then) (NP guys))))))))))) (. ?)))
630160 (ROOT (RB so) (JJ !?!?))
630160 (ROOT (, ,) (S (NP what) (VP (VBZ has) (S (NP it) (VP (VBD got) (S (TO to) (VP (VB do) (FRAG (PP (IN with) (NP you)) (. ?)))))))))
433754 (ROOT (@SQ (@SQ (MD may) (NP i)) (VP (VB suggest) (S (NP you) (@S (ADVP actually) (VP (@VP (VB read) (NP (DT the) (NN article))) (PP (IN before) (S (@VP (VP (@VP (VBG claiming) (NP it)) (S (RB not) (VP (TO to) (VP (VB be) (NP nonsense))))) (CC and)) (VP (VBG removing) (NP (PRP$ my) (@NP (NN csd) (NN tag))))))))))) (. ?))
433754 (ROOT (VP (@VP (VBP are) (NP you)) (NP (DT an) (NN admin))) (. ?))
627292 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (VBG kidding) (NP me))) (. ?))
627292 (ROOT (@SQ (@SQ (@SQ (VBP do) (NP you)) (ADVP even)) (VP (VB bother) (S (TO to) (VP (@VP (VB click) (PP (IN on) (NP <url>))) (S (TO to) (VP (VB see) (NP (PRP$ its) (NN fleet)))))))) (. ?))
622173 (ROOT (SBAR (RB so) (S (NP you) (VP (VBP see) (NP kv)))) (@S (, ,) (@S (SBAR (RB just) (@SBAR (@SBAR (IN in) (NN case)) (S (NP you) (VP (VBD missed) (NP (DT the) (NN point)))))) (@S (, ,) (@S (NP you) (@S (VP (@VP (@VP (@VP (@VP (VBP are) (PP (IN in) (NP (DT the) (@NP (JJ naughty) (NN chair))))) (PP (IN in) (NP (NP (DT the) (@NP (JJ naughty) (NN corner))) (PP (RB because) (@PP (IN of) (NP (PRP$ your) (@NP (JJ own) (NN baloney)))))))) (, ,)) (ADJP baloney)) (SBAR (IN that) (S (NP you) (VP (VBP bring) (NP yourself))))) (. .)))))))
622173 (ROOT (SBAR now) (@SBARQ (, ,) (@SBARQ (SQ (@SQ (@SQ (VBD did) (RB n't)) (NP you)) (VP (VB like) (NP (DT that) (NN story)))) (. ?))))
626770 (ROOT (NP (PRP$ your) (@NP (ADJP (RB poorly) (@ADJP (JJ written) (@ADJP (, ,) (JJ bizarre)))) (NN comment))) (@S (VP (@VP (@VP (VBZ makes) (NP (DT no) (NN sense))) (, ,)) (SBAR (IN since) (S (NP (NP all) (PP (IN of) (NP (NP (PRP$ my) (NNS edits)) (PP (IN in) (NP (DT the) (@NP (NNP al) (@NP (NN franken) (NN article)))))))) (VP (VBP conform) (PP (TO to) (NP (NP (NNP wikipedia) (POS 's)) (@NP (JJ npov) (NN policy)))))))) (. .)))
626770 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG talking) (IN about))) (. ?)))
619633 (ROOT (ADVP btw) (@S (, ,) (@S (@S (@S (@S (S (NP (NN nobody) (RB else)) (VP (VBZ has) (VP (VBN been) (VP (VBG keeping) (SBAR (IN that) (S (NP (NN page) (VBN updated)) (@S (ADVP (ADVP (RB as) (RB much)) (PP (IN as) (NP i))) (VP (VBP have) (VP (@VP (VBN worked) (PP (IN on) (NP it))) (PP (IN for) (NP (DT the) (@NP (JJ entire) (@NP (NN hockey) (NN year)))))))))))))) (, ,)) (CC and)) (S (NP it) (VP (MD would) (VP (@VP (VB be) (ADJP (@ADJP (JJ dead) (CC and)) (JJ empty))) (PP (IN without) (NP (PRP$ my) (NN work))))))) (. .))))
619633 (ROOT (SBAR so) (@SBARQ (, ,) (@SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP (@VP (VP (VB be) (ADJP positive)) (CC and)) (VP (@VP (VB praise) (NP (PRP$ my) (NN work))) (PP (RB instead) (@PP (@PP (PP (IN of) (S (VBG being) (ADJP (RB so) (@ADJP (JJ picky) (PP (IN on) (NP (NP (JJ such) (@NP (DT a) (@NP (ADJP (JJ minor) (@ADJP (, ,) (JJ insignificant))) (NN thing)))) (PP (IN as) (S (VBG putting) (NP (`` `) (@NP (JJ vacant) (@NP ('' ') (NN on-top)))))))))))) (CONJP (RB instead) (IN of))) (PP (IN below) (NP (NP (DT a) (NN player)) (SBAR (WHNP who) (S (ADVP (RB no) (RB longer)) (VP (VBZ is) (PP (IN on) (NP (DT the) (NN team))))))))))))) (. ?)))))
625709 (ROOT (NP i) (@S (VP (VBD asked) (S (NP you) (NP (DT a) (NN question)))) (. .)))
625709 (ROOT (@VP (VP (VB be) (ADJP educated)) (CC and)) (VP (VB please) (VP (@VP (VB respond) (: :)) (SBARQ (WHNP what) (@SBARQ (SQ (@SQ (VBZ does) (NP <url>)) (VP (VB has) (S (TO to) (VP (VB do) (PP (IN with) (NP <url>)))))) (. ?))))))
251923 (ROOT (NP you) (@S (VP (VBP 're) (NP (DT a) (NN troll))) (. .)))
251923 (ROOT (WHADVP why) (@FRAG (RB not) (@FRAG (VP (VB go) (NP (RB somewhere) (RB else))) (. ?))))
288449 (ROOT (UH hello) (. ?))
288449 (ROOT (@NP (NP you) (VP (VBG going) (S (TO to) (VP (VB answer) (NP this))))) (. ?))
626797 (ROOT (WHNP (WHNP (WP what) (NN part)) (PP (IN of) (NP (NN use) (@NP (JJ common) (NN sense))))) (@SBARQ (SQ (@VP (VBD did) (RB not)) (VP (@VP (VB get) (PRT through)) (PP (TO to) (NP you)))) (. ?)))
626797 (ROOT (@SQ (@SQ (@SQ (SQ (@SQ (VBD was) (NP it)) (NP (@NP (@NP (@NP (NP (DT the) (NN use)) (, ,)) (NP (DT the) (NN common))) (, ,)) (NP (DT the) (NN sense)))) (, ,)) (CC or)) (SQ (NP (DT some) (NN combination)) (VP thereafter))) (. ?))
452850 (ROOT (ADVP wow) (@S (, ,) (@S (NP you) (@S (VP (@VP (VBD waited) (NP (DT a) (NN whole))) (NP-TMP (CD ten) (NNS minutes))) (. .)))))
452850 (ROOT (WHNP what) (@SBARQ (SQ (VBZ 's) (NP (DT the) (NN problem))) (. ?)))
354110 (ROOT (WHADVP why) (@SBARQ (SQ (NP (JJ delete) (@NP (DT the) (NN page))) (VP (@VP (@VP (VB <url>) (PP (IN with) (NP (DT no) (NN explanation)))) (, ,)) (PP (IN as) (NP (NP (DT an) (NN act)) (PP (IN of) (NP (ADJP deliberate) (NN vandalism))))))) (. ?)))
354110 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (VB do) (NP it))) (. ?)))
625430 (ROOT (IN so) (@S (NP you) (@S (VP (VBP deny) (SBAR (NP you) (VP (VBD did) (NP (ADJP (NN anything) (JJ wrong)) (NN jason))))) (. ?))))
625430 (ROOT (CC and) (@S (NP we) (@S (VP (VBP 're) (NP (NP (DT all) (@NP (NN nazi) (POS 's))) (@NP (S (VBG persecuting) (NP (@NP (@NP (@NP (NP you) (, ,)) (NP itake)) (CC and)) (NP uncle))) (NN davey)))) (. ?))))
242241 (ROOT (WHADVP how) (@SBARQ (SQ (@SQ (MD can) (NP anyone)) (VP (@VP (VB analyze) (NP (DT the) (NN page))) (SBAR (IN if) (S (NP you) (VP (VBP keep) (S (VBG deleting) (NP (DT the) (NN content)))))))) (. ?)))
242241 (ROOT (NP (NP (NP (@NP (@NP (NNP <url>) (CD 01:28)) (, ,)) (CD 18)) (NP-TMP (NNP december) (CD 2006))) (PRN (-LRB- -LRB-) (@PRN (NP utc) (-RRB- -RRB-)))) (@S (VP (VBP are) (S (NP you) (@S (ADJP afraid) (SBAR (NP someone) (VP (MD might) (VP (VB vote) (PP (IN for) (NP it)))))))) (. ?)))
120056 (ROOT (ADVP seriously) (. ?))
120056 (ROOT (ADVP seriously) (. ?))
418733 (ROOT (@SQ (@SQ (MD could) (NP you)) (VP (@VP (VB please) (S (VB clarify) (SBAR (WHNP who) (S (NP (DT the) (@NP (JJ new) (NNS users))) (VP (VBD were) (ADVP exactly)))))) (SBAR (IN that) (S (NP you) (VP (VBD considered) (S (TO to) (VP (VB be) (NP (NP part) (PP (IN of) (NP (PRP$ your) (@NP (`` `) (@NP (JJ sock) (@NP (NN farm) ('' ')))))))))))))) (. ?))
418733 (ROOT (CC or) (@SQ (@SQ (@SQ (VBD did) (NP you)) (VP (ADVP (RB not) (RB even)) (@VP (@VP (VB bother) (PP (TO to) (NP research))) (PP (IN before) (S (VBG making) (NP (JJ such) (NNS claims))))))) (. ?)))
432801 (ROOT (CC but) (@S (VBP do) (@S (NP you) (@S (VP (VB think) (SBAR (NP you) (VP (MD can) (VP (@VP (VB take) (NP (PRP$ your) (NNS concerns))) (PP (TO to) (NP (DT the) (@NP (NN talk) (NN page)))))))) (. ?)))))
432801 (ROOT (PP (IN crazy) (NP notion)) (@FRAG (, ,) (@FRAG (INTJ eh) (. ?))))
61921 (ROOT (NP the) (@S (VP (@VP (VBP have) (RB n't)) (NP (NP (JJ first) (@NP (NN team) (NNS appearances))) (PP (IN for) (NP (VBN gods) (NN sake))))) (. !)))
61921 (ROOT (WHADVP how) (@SBARQ (SQ (@SQ (MD can) (NP you)) (VP (VB say) (S (NP they) (VP (VB deserve) (NP (DT an) (NN article)))))) (. ?)))
625107 (ROOT (@S (@S (S (NP (NP (PRP$ your) (NN obfuscation)) (PP (IN of) (NP (DT the) (@NP (JJ real) (NN issue))))) (VP (VBZ is) (ADJP disengenuous))) (: ;)) (S (NP i) (VP (@VP (VBP 'm) (ADVP rapidly)) (VP (VBG losing) (NP (NP respect) (PP (IN for) (NP you))))))) (. .))
625107 (ROOT (@SQ (@SQ (VBZ is) (NP it)) (NP (@NP (NP (@NP (NP (NP (RB not) (@NP (NN wikipedia) (POS 's))) (NN mission)) (TO to)) (NP (ADJP (RB scornfully) (JJ snub)) (NN vandalism))) (, ,)) (SBAR (WHNP which) (S (VBZ is) (VP (@VP (@VP (@VP (@VP (VBN done) (ADVP instantly)) (, ,)) (ADVP agressively)) (, ,)) (ADVP mercilessly)))))) (. ?))
72875 (ROOT (NP you) (@S (VP (VBP are) (VP (@VP (VBG being) (ADJP (RB very) (JJ insulting))) (PP (IN on) (NP <url>)))) (. .)))
72875 (ROOT (@SQ (@SQ (@SQ (@SQ (MD ca) (RB n't)) (NP you)) (ADVP just)) (VP (VB trust) (NP (@NP (@NP (NP (NP (DT the) (NN strength)) (PP (IN of) (NP (PRP$ your) (NNS arguments)))) (, ,)) (CONJP (RB instead) (IN of))) (NP (NP (JJ insulting) (NNS people)) (SBAR (WHNP who) (S (VBP are) (VP (@VP (VBG doing) (NP (PRP$ their) (JJS best))) (S (TO to) (VP (VB help) (VP (VB improve) (NP wikipedia))))))))))) (. ?))
393254 (ROOT (@S (@S (@S (S (INTJ oh) (@S (NP that) (VP (VBZ 's) (ADJP charming)))) (, ,)) (IN so)) (S (PP (RB instead) (@PP (IN of) (S (@VP (VBG making) (NP (DT a) (@NP (JJ personal) (NN attack)))) (PP (IN on) (NP (DT a) (@NP (JJ single) (NN editor))))))) (@S (NP you) (VP (@VP (VBD made) (NP it)) (PP (IN on) (NP (NP (DT a) (NN class)) (PP (IN of) (NP editors)))))))) (. .))
393254 (ROOT (@SQ (@SQ (@SQ (VBZ does) (NP that)) (ADVP somehow)) (VP (VB make) (S (NP it) (ADJP (RBR more) (JJ ok))))) (. ?))
477181 (ROOT (@S (@S (S (NP you) (VP (@VP (@VP (MD wo) (RB n't)) (ADVP even)) (VP (VB let) (S (NP (NP (DT the) (NN ink)) (PP (IN on) (NP (PRP$ your) (NN report)))) (ADJP dry))))) (CC and)) (S (NP you) (VP (@VP (@VP (VBP 're) (ADVP already)) (PP (IN at) (NP it))) (ADVP again)))) (. .))
477181 (ROOT (VP (VB care) (S (TO to) (VP (@VP (VB explain) (ADVP finally)) (SBAR (WHNP what) (S (NP (RB about) (@NP (DT the) (NN dab))) (VP (VBZ needs) (S cleaning))))))) (. ?))
444118 (ROOT (PP (RB rather) (@PP (IN than) (VP (@VP (VB tell) (NP me)) (SBAR (WHADVP how) (S (NP (JJ wrong) (NNS i)) (VP (VBD was) (S (TO to) (VP (VB close) (SBAR (NP (JJ certain) (NN afd)) (VP (@VP (VBZ 's) (ADVP maybe)) (NP (PRP$ your) (NN time)))))))))))) (@SINV (@SINV (VP (MD would) (VP (VB be) (VP (ADVP better) (VBN spent)))) (S (VBG dealing) (PP (IN with) (NP (DT the) (@NP (JJ current) (@NP (NN afd) (@NP (NN backlog) (NN <url>)))))))) (. .)))
444118 (ROOT (SBAR (IN if) (S (NP (PRP$ my) (NNS decisions)) (VP (@VP (VBD were) (ADJP (RB so) (JJ wrong))) (SBAR (WHADVP why) (S (VBP have) (RB n't)))))) (@S (NP you) (@S (VP (VBD re-opened) (NP them)) (. ?))))
381792 (ROOT (NP it) (@S (VP (@VP (VBZ is) (NP (DT an) (@NP (ADJP (@ADJP (ADJP obvious) (CC and)) (ADJP (RB strongly) (JJ followed))) (NN point)))) (SBAR (IN that) (S (NP (NNP april) (@NP (NNP fools) (NNS jokes))) (VP (@VP (MD should) (RB not)) (VP (VB disrupt) (NP (NP (DT the) (NN running)) (PP (IN of) (NP (DT the) (NN wiki))))))))) (. .)))
381792 (ROOT (@SQ (@SQ (MD could) (NP you)) (VP (VB explain) (SBAR (WHADVP why) (S (NP the) (VP (VBZ hells) (S (NP you) (VP (@VP (VBN coated) (NP (NP (DT a) (@NP (NN dozen) (@NP (NNS users) (POS ')))) (NNS pages))) (PP (IN with) (NP (NP pictures) (PP (IN of) (NP (NP (NNP jimbo) (POS 's)) (@NP (JJ ugly) (@NP (JJ bearded) (NN fizzogg)))))))))))))) (. ?))
27642 (ROOT (SBAR (IN since) (S (NP (PRP$ your) (@NP (NN tube) (@NP (NN station) (NNS articles)))) (VP (@VP (@VP (VBP do) (RB n't)) (ADVP actually)) (VP (VB contain) (NP (DT any) (NN information)))))) (@SBARQ (, ,) (@SBARQ (WHNP what) (@SBARQ (SQ (VBZ is) (NP (NP (DT the) (NN point)) (PP (IN of) (NP them)))) (. ?)))))
27642 (ROOT (WHADVP why) (@FRAG (RB not) (@FRAG (VP (@VP (VP (@VP (VB put) (NP them)) (ADVP together)) (CC and)) (VP (@VP (VB work) (NP them)) (PP (IN into) (NP (NP (DT an) (NN article)) (SBAR (WHNP that) (S (VBZ says) (S (NP something) (ADJP interesting)))))))) (. ?))))
252057 (ROOT (WHPP (TO to) (WHNP whom)) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (@VP (VBG referring) (, ,)) (ADVP hipicrite))) (. ?)))
252057 (ROOT (WHNP who) (@SBARQ (SQ (VBZ has) (NP (DT a) (@NP (JJ secret) (NN opinion)))) (. ?)))
580725 (ROOT (S (VB look) (ADJP dude)) (@S (, ,) (@S (NP <url>) (@S (VP (@VP (VBD was) (ADVP also)) (VP (ADVP just) (VBN deleted))) (. .)))))
580725 (ROOT (WHNP what) (@SBARQ (SQ (@VP (VBZ makes) (NP 2005)) (ADJP (RB so) (JJ special))) (. ?)))
102758 (ROOT (NN sigh) (. .))
102758 (ROOT (@SQ (@SQ (VBD did) (NP arbcomm)) (VP (@VP (VB teach) (NP you)) (NP nothing))) (. ?))
618995 (ROOT (NP (DT the) (NNS sources)) (@S (VP (@VP (VBP are) (ADVP already)) (ADVP there)) (. !)))
618995 (ROOT (@SQ (@SQ (VBP have) (NP you)) (VP (ADVP even) (@VP (VBN looked) (PP (IN at) (NP it))))) (. ?))
624023 (ROOT (ADVP firstly) (@SBARQ (WHNP who) (@SBARQ (SQ (VBP are) (NP you)) (. ?))))
624023 (ROOT (ADVP secondly) (@S (NP there) (@S (VP (VBZ seems) (S (TO to) (VP (VB be) (NP (@NP (@NP (NP (ADJP (NP (DT a) (RB lot)) (JJR more)) (NNS people)) (VP (VBN involved) (SBAR (IN than) (S (NP (RB just) (@NP (JJ node) (@NP (JJ ue) (@NP (NN thirdly) (NNS i))))) (VP (@VP (VBP do) (RB n't)) (VP (VB care) (SBAR (WHNP what) (S (NP (PRP$ his) (NN view)) (VP (@VP (VBZ is) (ADJP (RB as) (JJ long))) (SBAR (IN as) (S (NP (PRP$ his) (NNS edits)) (VP (VBP are) (ADJP neutral))))))))))))) (, ,)) (SBAR (WHNP which) (S (NP edits) (VP (VBP do) (SBAR (NP you) (VP dispute))))))))) (. ?))))
35415 (ROOT (NP you) (@S (VP (VBP make) (S (NP it) (@S (ADJP (RB very) (JJ hard)) (S (TO to) (VP (VB believe) (SBAR (IN that) (S (NP you) (VP (VBP 're) (VP (@VP (VBG acting) (PP (IN in) (NP (JJ good) (NN faith)))) (SBAR (WHADVP when) (S (NP you) (VP (VB rewrite) (NP (DT the) (@NP (JJ <url>) (@NP (NN article) (S (TO to) (VP (@VP (@VP (@VP (VP (@VP (VB remove) (NP (DT all) (NNS references))) (PP (TO to) (NP liberal))) (, ,)) (CC but)) (VP (VB keep) (NP (DT the) (NN phrase)))) (NP (JJ conservative) (@NP (NN independence) (NN institute)))))))))))))))))))) (. .)))
35415 (ROOT (NP i) (@S (VP (VBP see) (S (VBG pov-pushing) (SBAR (WHADVP when) (S (NP that) (VP happens))))) (. .)))
35415 (ROOT (SBAR (IN if) (S (NP you) (VP (VBP 're) (ADJP (RB so) (@ADJP (VBN concerned) (PP (IN about) (NP adjectives))))))) (@FRAG (, ,) (@FRAG (WHADVP why) (@FRAG (RB not) (@FRAG (VP (VB edit) (NP (@NP (NP (NP (DT the) (NNS articles)) (PP (IN about) (NP (@NP (NN aei) (CC or)) (NN heritage)))) (CC or)) (NP (NP americans) (PP (IN for) (NP (NN tax) (NN reform)))))) (. ?))))))
136389 (ROOT (@S (@S (@S (S (NP it) (VP (@VP (VBZ 's) (RB not)) (NP (PRP$ my) (@NP (NN job) (S (TO to) (VP (@VP (VB add) (NP (DT the) (@NP (NN bronze) (@NP (NN age) (NN material))))) (PP (IN in) (NP (NP (DT the) (NN article)) (PP (IN on) (NP <url>)))))))))) (, ,)) (CC so)) (S (INTJ please) (VP (VB refrain) (PP (IN from) (S (@VP (VBG removing) (NP (JJ existing) (NN material))) (SBAR (RB just) (@SBAR (IN because) (S (NP you) (VP (@VP (VBP have) (RB n't)) (VP (VBN made) (NP (DT any) (@NP (NN effort) (S (TO to) (VP (VB add) (NP (DT the) (@NP (NN bronze) (@NP (NN age) (NN content)))))))))))))))))) (. .))
136389 (ROOT (VP ok) (. ?))
523617 (ROOT (@S (@S (@S (S (NP (DT the) (NN page)) (VP (VBZ is) (VP (VBG getting) (UCP (@UCP (VP (@VP (VBN smacked) (ADVP (@ADVP (RB literally) (DT every)) (NN half))) (NP-TMP minute)) (CC or)) (ADJP so))))) (, ,)) (CC and)) (S (NP i) (VP (VBP think) (SBAR (NP (DT the) (NN joke)) (VP (VBZ 's) (VP (VBN worn) (S thin))))))) (. .))
523617 (ROOT (VP (@VP (VB give) (NP us)) (NP (DT a) (NN break))) (. ?))
428791 (ROOT (INTJ well) (@S (, ,) (@S (VP (VB look) (ADVP again)) (. !))))
428791 (ROOT (@SQ (@SQ (VBZ does) (NP <url>)) (VP (@VP (VB look) (PP (IN like) (NP (DT a) (@NP (JJ dictionary-definition) (NN page))))) (PP (TO to) (NP you)))) (. ?))
290546 (ROOT (VP (@VP (VB do) (RB n't)) (VP (@VP (VB threaten) (NP me)) (SBAR (IN as) (S (NP that) (VP (@VP (VBZ is) (RB not)) (NP vandalism)))))) (. .))
290546 (ROOT (WHNP what) (@SBARQ (SQ (VBZ is) (ADJP (JJ wrong) (PP (IN with) (NP (NP (DT a) (@NP (JJ nude) (NN photo))) (PP (IN of) (NP (NP (NN barack) (POS 's)) (NN mom))))))) (. ?)))
358187 (ROOT (IN so) (@S (NP you) (@S (VP (@VP (VBP do) (RB n't)) (VP (VB like) (NP (NP people) (VP (@VP (VBG pointing) (PRT out)) (NP (NP (DT the) (NNS errors)) (SBAR (NP you) (VP make))))))) (. ?))))
358187 (ROOT (CC or) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB have) (S (NP (DT any) (@NP (JJ actual) (NNS arguments))) (VP (TO to) (VP (VB counter) (NP (PRP$ my) (NN post))))))) (. ?)))
131592 (ROOT (S (S (VBN come) (PP (IN on) (NP mohrflies))) (@S (, ,) (@S (NP (JJ i) (NNS donxb4t)) (VP (VBP understand) (SBAR (WHADVP why) (S (NP you) (VP (VBP insist) (PP (IN in) (NP (DT these) (NNS edits)))))))))) (@UCP (: :) (@UCP (NP <url>) (. ?))))
131592 (ROOT (WHADVP why) (@SBARQ (SQ (VBD yugoslav) (SBAR (WHADVP when) (S (NP (RB absolutely) (@NP (DT no) (NN one))) (VP (VBZ uses) (NP it))))) (. ?)))
417696 (ROOT (PP (IN without) (S (@VP (VBG making) (NP (DT a) (NN comment))) (PP (IN on) (NP (NP (DT the) (@NP (VBG underlying) (NN coverage))) (PP (IN of) (NP (NP (DT the) (NN site)) (VP (VBG being) (ADJP down)))))))) (@S (, ,) (@S (NP (PRP$ your) (@NP (JJ edit) (@NP (NN comment) (NN <url>)))) (@S (VP (VBZ indicates) (NP (DT a) (@NP (JJ <url>) (NN violation)))) (. .)))))
417696 (ROOT (WHPP (IN under) (WHNP (WP what) (NP logic))) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB propose) (SBAR (IN that) (S (NP you) (VP (VBP have) (NP (NN authority) (S (TO to) (VP (@VP (VB set) (NP policy)) (PP (IN over) (NP (DT the) (NN article))))))))))) (. ?)))
306797 (ROOT (NP yes) (@FRAG (, ,) (@FRAG (CC and) (@FRAG (S (NP there) (VP (VBZ has) (VP (VBN been) (NP (@NP (NP (DT a) (NN user)) (PP (IN from) (NP (DT an) (@NP (NN aol) (NN ip))))) (SBAR (WHNP who) (S (VBZ has) (VP (VBN been) (VP (@VP (VBG trolling) (ADVP pilotguy)) (PP (IN for) (NP weeks)))))))))) (. .)))))
306797 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (MD must) (NP you)) (VP (ADVP (@ADVP (RB blindly) (NP disagree)) (PP (IN with) (NP (NN everything) (NN anyone)))) (@VP (VBZ says) (PP (TO to) (NP you))))) (. ?)))
130235 (ROOT (NP this) (@S (VP (VBZ is) (ADJP incorrect)) (. .)))
130235 (ROOT (@SQ (@SQ (VBP have) (NP you)) (VP (@VP (@VP (VBN looked) (PP (IN at) (NP (DT the) (NN article)))) (NP-TMP (DT any) (NN time))) (PP (IN after) (NP (NNP october) (CD 2008))))) (. ?))
13662 (ROOT (ADVP (NP ah) (RB well)) (@S (, ,) (@S (SBAR (IN if) (S (NP you) (VP (VBP are) (VP (VBG going) (S (TO to) (VP (@VP (@VP (VB have) (NP (PDT such) (@NP (DT a) (@NP (JJ bizarre) (NN flight))))) (PP (IN of) (NP fancy))) (ADVP (ADVP (RB as) (@ADVP (RB far) (RB as))) (PP (TO to) (S (@VP (VBG calling) (S (NP it) (NP (DT an) (@NP (NN attack) (NN page))))) (ADVP then)))))))))) (@S (ADVP perhaps) (@S (NP i) (@S (VP (MD will) (VP (VB remove) (NP it))) (. .)))))))
13662 (ROOT (ADVP maybe) (@S (NP you) (@S (VP (@VP (MD should) (ADVP also)) (VP (VB look) (PP (IN at) (SBAR (WHADVP how) (S (NP you) (VP (VBP interact) (PP (IN with) (NP others)))))))) (. ?))))
620617 (ROOT (@SINV (VBP are) (NP you)) (VP (ADVP (ADJP crazy) (ADVP (RB down) (RB here))) (VBN ?!)))
620617 (ROOT (WHNP what) (@SBARQ (SQ (NP (DT the) (NN heck)) (VP (VBZ is) (VP (VBG going) (PRT on)))) (. ?)))
35404 (ROOT (NP (@NP (NP hey) (, ,)) (SBAR (IN if) (S (NP you) (VP (VBP want) (S (TO to) (VP (VB assert) (SBAR (IN that) (S (NP (DT a) (NN cite)) (VP (@VP (VBZ does) (RB not)) (VP (VB say) (SBAR (WHNP what) (S (NP it) (@S (ADVP clearly) (VP does)))))))))))))) (@S (VP (@VP (@VP (VBP say) (, ,)) (ADVP how)) (PP (IN about) (S (ADVP actually) (VP (@VP (@VP (VP (@VP (VBG coming) (PP (TO to) (NP (DT the) (@NP (NN discussion) (NN page))))) (S (TO to) (VP (VB discuss) (NP it)))) (, ,)) (CONJP (RB rather) (IN than))) (VP (@VP (VBG treating) (NP (JJ edit) (NNS summaries))) (PP (IN like) (NP (DT a) (@NP (NN discussion) (NN space))))))))) (. ?)))
35404 (ROOT (WHADVP (WRB why) (NP (DT the) (NN hell))) (@SBARQ (SQ (@SQ (VBP am) (NP (JJ i) (@NP (DT the) (NN one)))) (VP (VBG being) (VP (VBN accused) (PP (IN of) (NP (@NP (NP (JJ edit) (VBG warring)) (, ,)) (SBAR (WHADVP when) (S (NP i) (VP (@VP (@VP (VBP 'm) (NP (DT the) (@NP (JJ only) (NN one)))) (ADVP actually)) (ADJP (JJ willing) (S (TO to) (VP (VB talk) (PP (IN on) (NP (DT the) (@NP (NN discussion) (NN page))))))))))))))) (. ?)))
485803 (ROOT (WHNP what) (SQ ?!))
485803 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (@VP (VB resolve) (NP this)) (PP (IN without) (S (VBG dealing) (PP (IN with) (NP (NP (DT the) (@NP (NN user) (NN i))) (VP mentioned))))))) (. ?)))
511427 (ROOT (NP you) (@S (VP (VBP have) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NP cheek) (VP (@VP (VBG marking) (NP (NP <url>) (PP (IN with) (NP <person>)))) (PP (IN without) (S (ADVP actually) (VP (VBG taking) (NP (DT the) (@NP (NN trouble) (S (TO to) (VP (VB say) (SBAR (WHNP what) (S (VBZ needs) (S fixing))))))))))))))) (. .)))
511427 (ROOT (SBAR (IN if) (S (NP you) (VP (@VP (VBP 're) (ADVP really)) (NP (NP someone) (SBAR (WHNP who) (S (VBZ is) (ADJP (JJ able) (S (TO to) (VP (VB contribute) (PP (IN with) (NP (NP (DT a) (@NP (JJ professional) (NN level))) (PP (IN of) (NP english))))))))))))) (@FRAG (, ,) (@FRAG (WHADVP why) (@FRAG (RB not) (@FRAG (VP (@VP (VP (VB display) (NP (DT this) (@NP (VBN supposed) (NN proficiency)))) (CONJP (RB rather) (IN than))) (VP (VBG engaging) (PP (IN in) (NP (NP (DT the) (@NP (JJ illiterate) (NN practice))) (PP (IN of) (S (@VP (VBG adding) (NP templates)) (PP (IN with) (NP tools)))))))) (. ?))))))
344905 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (MD ca) (RB n't)) (NP you)) (VP (@VP (VP (ADVP just) (@VP (VB remove) (NP (DT the) (@NP (JJ offending) (NN phase))))) (CC and)) (VP (VB repost) (NP (PRP$ your) (NN comment))))) (. ?)))
344905 (ROOT (S (NP this) (VP (VBZ resolves) (NP (DT the) (NN situation)))) (@SINV (, ,) (@SINV (@SINV (VP (VBZ does) (NP it)) (NP not)) (. ?))))
623996 (ROOT (VP agree) (. .))
623996 (ROOT (WHNP (@WHNP (WP who) (DT the)) (NN hell)) (@SBARQ (SQ (@VP (VBD came) (PRT up)) (PP (IN with) (NP (NP that) (PP (IN in) (NP (DT the) (@NP (JJ first) (NN place))))))) (. ?)))
530009 (ROOT (@S (@S (S (NP you) (VP (VBP do) (S (VB realise) (SBAR (NP this) (VP (VBZ is) (NP (JJ complete) (NNS rubbish))))))) (: -)) (S (NP it) (VP (@VP (VBZ 's) (ADVP already)) (VP (VBN been) (VP (ADVP speedily) (@VP (VBN deleted) (SBAR (RB once) (@SBAR (IN if) (S (NP you) (VP (VBP check) (NP (DT the) (NN logs)))))))))))) (. .))
530009 (ROOT (S (NP i) (VP (@VP (MD ca) (RB n't)) (VP (@VP (VB see) (NP (DT any) (NN advantage))) (PP (TO to) (S (VBG having) (S (NP (DT this) (NN crap)) (VP (@VP (@VP (VBG floating) (PRT around)) (PP (IN for) (NP (CD 5) (NNS days)))) (: -)))))))) (@SINV (@SINV (VP can) (NP you)) (. ?)))
252731 (ROOT (S hey) (@SQ (, ,) (@SQ (@SQ (@SQ (MD can) (NP you)) (VP (@VP (VB block) (NP (DT this) (NN moron))) (PP (IN from) (S (VBG editing) (NP (DT the) (@NP (NN iihf) (NN page))))))) (. ?))))
252731 (ROOT (CC or) (@SBARQ (WHNP what) (@SBARQ (SQ (@SQ (MD can) (NP i)) (VP (VB do) (PP (IN in) (NP (JJ such) (NNS cases))))) (. ?))))
333566 (ROOT (@SQ (@SQ (@SQ (SQ (ADVP (NP (CD six) (NNS months)) (RB ago)) (VP (VBD was) (NP (NN episode) (CD 10)))) (, ,)) (CC and)) (SQ (@SQ (VBZ has) (NP peter)) (VP (@VP (VP (RB not) (@VP (VBN been) (PP (IN in) (NP (NP (DT every) (NN episode)) (ADVP (RB up) (PP to)))))) (CC and)) (VP (VBG including) (NP that))))) (. ?))
333566 (ROOT (WHADVP seriously) (@SBARQ (, ,) (@SBARQ (WHADVP where) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG getting) (NP (PRP$ your) (NNS figures)))) (. ?)))))
160048 (ROOT (@S (@S (S (INTJ yes) (@S (, ,) (@S (CC but) (@S (NP we) (VP (@VP (VBP are) (ADVP hardly)) (VP (VBG debating) (S (NP that) (VP (VB edit) (SBAR (IN that) (S (NP hasnt) (VP (@VP (VBD stood) (PP (IN in) (NP (DT the) (@NP (JJ last) (@NP (JJ few) (NNS days)))))) (ADVP anywway)))))))))))) (CC and)) (S (ADVP certainly) (VP (@VP (VB isnt) (NP (DT an) (NN issue))) (ADVP (RB right) (RB now))))) (. .))
160048 (ROOT (WHNP (WHNP what) (PP (IN of) (NP (DT that) (NN edit)))) (@SBARQ (SQ (@SQ (@SQ (VBP do) (NP you)) (ADVP currently)) (VP (@VP (VB object) (PP to)) (PP (IN with) (NP (JJ such) (NN vehemence))))) (. ?)))
404626 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP have) (NP you)) (VP (VBN restored) (NP (NP (DT this) (NN article)) (VP (@VP (VBN deleted) (ADVP pursuant)) (PP (TO to) (NP (DT a) (@NP (ADJP (RB perfectly) (JJ acceptable)) (NN afd)))))))) (. ?)))
404626 (ROOT (@SQ (@SQ (VBP am) (NP i)) (VP (@VP (VBG missing) (NP something)) (ADVP here))) (. ?))
607813 (ROOT (@S (@S (S (NP it) (VP (VBZ 's) (PP (IN about) (NP (NP freedom) (PP (IN of) (NP speech)))))) (CC and)) (S (NP (DT no) (@NP (JJ islamic) (NN terrorism))) (VP (VBZ is) (VP (VBG going) (S (TO to) (VP (@VP (VB deter) (NP (DT the) (NN truth))) (PP (IN from) (S outing)))))))) (. .))
607813 (ROOT (CC and) (@FRAG (SBAR (IN if) (S (NP it) (VP (VBZ 's) (VP (VBN forbidden) (S (TO to) (VP (@VP (VB look) (PP (IN at) (NP (NP figures) (PP (IN of) (NP mohammed))))) (SBAR (WHADVP how) (S (VBP come) (SBAR (NP you) (VP (VBD did) (NP (@NP (NP it) (: ;)) (SQ (@SQ (VBP are) (NP you)) (VP (VBG going) (PP (TO to) (NP hell))))))))))))))) (. ?)))
623738 (ROOT (@VP (VB firstly) (, ,)) (SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB assume) (SBAR (NP i) (VP (@VP (VBP do) (RB n't)) (VP (VB care) (PP (IN about) (NP (NP (DT the) (@NP (NN content) (@NP (, ,) (@NP (CC and) (@NP (NN secondly) (, ,)))))) (SBAR (WHNP what) (S (NP chance) (VP (@VP (VBP have) (NP you)) (PP (VBN given) (NP (NN anyone) (S (TO to) (VP (VB voice) (NP (DT a) (@NP (VBG dissenting) (NN opinion))))))))))))))))) (. ?))))
623738 (ROOT (S (@VP (VB correct) (NP me)) (SBAR (IN if) (S (@S (@S (S (NP i) (VP (VBP am) (ADJP wrong))) (, ,)) (CC but)) (S (NP you) (VP (@VP (VBP do) (RB n't)) (VP (VB seem) (S (TO to) (VP (VB have) (VP (VBN asked) (SBAR (IN if) (S (NP anyone) (VP (VBD had) (NP (NP (DT a) (NN problem)) (PP (IN with) (NP (DT the) (NN merge)))))))))))))))) (@SINV (, ,) (@SINV (@SINV (VP did) (NP you)) (. ?))))
342064 (ROOT (@S (@S (S (NP i) (VP (@VP (VBN reverted) (NP (PRP$ your) (NN change))) (PP (TO to) (NP (DT the) (@NP (JJ pet) (@NP (NN shop) (@NP (NNS boys) (NN article)))))))) (: -)) (S (NP it) (VP (VBD was) (NP (NP kind) (PP (IN of) (NP (NP (DT a) (@NP (JJ bizarre) (NN change))) (PRN (-LRB- -LRB-) (@PRN (S (NP i) (VP (MD would) (VP (VB have) (VP (@VP (VBN considered) (NP it)) (SBAR (NP (NP (DT the) (NN work)) (PP (IN of) (NP (DT a) (NN vandal)))) (VP (@VP (VBD were) (NP it)) (PP (RB not) (@PP (IN for) (NP (NP (DT the) (@NP (ADJP (RB seemingly) (JJ valid)) (@NP (JJ other) (@NP (NN wikipedia) (NN work))))) (SBAR (NP you) (VP (VBP 've) (VP done)))))))))))) (-RRB- -RRB-))))))))) (. .))
342064 (ROOT ?)
133623 (ROOT (NP you) (@S (VP (VBP have) (VP (VBN been) (VP (@VP (VBN accused) (PP (IN of) (NP sockpuppetry))) (PP (IN at) (NP <url>))))) (. .)))
133623 (ROOT (ADJP scared) (. ?))
623573 (ROOT (INTJ yes) (@S (, ,) (@S (NP i) (@S (VP have) (. .)))))
623573 (ROOT (@SQ (@SQ (VBD did) (NP you)) (VP (ADVP really) (@VP (VB need) (S (TO to) (VP (@VP (VB send) (NP me)) (NP (DT a) (NN reminder))))))) (. ?))
140016 (ROOT (SBAR (IN if) (S (NP you) (VP (VBP 're) (VP (VBG going) (S (TO to) (VP (@VP (VB accuse) (NP me)) (PP (IN of) (S (VBG operating) (PP (IN in) (NP (JJ bad) (NN faith))))))))))) (@S (, ,) (@S (ADVP then) (@S (NP (DT the) (NN discussion)) (@S (VP (VBZ has) (VP (VBN become) (ADJP (ADVP inappropriately) (JJ personal)))) (. .))))))
140016 (ROOT (WHPP (IN on) (WHNP (WDT what) (NN grounds))) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB make) (NP (PDT such) (@NP (DT an) (NN implication))))) (. ?)))
160294 (ROOT (S listen) (@S (, ,) (@S (NP (DT the) (@NP (NN reason) (NN i))) (@S (VP (VBD put) (SBAR (NP (NP (DT those) (NNS signs)) (PP (IN in) (NP (DT the) (@NP (NN code) (@NP (`` `) (@NP (NN break-clear) ('' '))))))) (VP (VBZ is) (SBAR (@SBAR (@SBAR (SBAR (IN because) (S (NP (NP (DT the) (NN arrangement)) (PP (IN of) (NP (DT the) (NNS blocks)))) (VP (VBZ is) (ADJP off-key)))) (, ,)) (ADVP (IN at) (JJS least))) (SBAR (WHADVP when) (S (VBG looking) (PP (IN through) (NP (@NP (NN ie) (CC or)) (NN mozilla))))))))) (. .)))))
160294 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (@VP (VBG taking) (NP them)) (PRT off))) (. ?)))
380122 (ROOT (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP (@VP (VB see) (NP (NP (DT any) (NN mention)) (PP (IN of) (NP wikipedia)))) (PP (IN in) (NP (DT that) (NN article))))) (. .)))
380122 (ROOT (S (VB do) (RB n't)) (@S (NP you) (@S (VP (VBP have) (NP (NP (JJ other) (NNS things)) (SBAR (NP you) (VP (MD could) (VP (VB be) (VP (VBG worrying) (IN about))))))) (. ?))))
95565 (ROOT (@S (@S (@S (S (NP (@NP (@NP (NP tom) (, ,)) (SBAR (IN that) (S (NP article) (VP (VBZ is) (ADJP (JJ ready) (PP (IN for) (NP publication))))))) (, ,)) (VP (VBD was) (VP (VBN written) (PP (IN by) (NP (NN someone) (RB else)))))) (, ,)) (CC and)) (S (NP (PRP$ your) (NNS changes)) (VP (@VP (VBP are) (RB n't)) (VP (VBG improving) (NP it))))) (. .))
95565 (ROOT (@SQ (@SQ (VBD did) (NP mer-c)) (VP (VB ask) (S (NP you) (VP (TO to) (VP (VB work) (PP (IN on) (NP it))))))) (. ?))
206861 (ROOT (VP (VB excuse) (NP me)) (. ?))
206861 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (@VP (VBG accusing) (NP me)) (PP (IN of) (S doing)))) (. ?)))
151303 (ROOT (NP it) (@S (VP (@VP (VBZ is) (NP (DT an) (@NP (ADJP (@ADJP (ADJP obvious) (CC and)) (ADJP (RB strongly) (JJ followed))) (NN point)))) (SBAR (IN that) (S (NP (NNP april) (@NP (NNP fools) (NNS jokes))) (VP (@VP (MD should) (RB not)) (VP (VB disrupt) (NP (NP (DT the) (NN running)) (PP (IN of) (NP (DT the) (NN wiki))))))))) (. .)))
151303 (ROOT (@SQ (@SQ (MD could) (NP you)) (VP (VB explain) (SBAR (WHADVP why) (S (NP the) (VP (VBZ hells) (S (NP you) (VP (@VP (VBN coated) (NP (NP (DT a) (@NP (NN dozen) (@NP (NNS users) (POS ')))) (NNS pages))) (PP (IN with) (NP (NP pictures) (PP (IN of) (NP (NP (NNP jimbo) (POS 's)) (@NP (JJ ugly) (@NP (JJ bearded) (NN fizzogg)))))))))))))) (. ?))
549539 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (@VP (VB revert) (NP (PRP$ my) (NNS edits))) (PP (IN on) (NP (DT that) (NN page))))) (. ?)))
549539 (ROOT (NP you) (VP (VBP say) (SBAR (NP it) (VP (VBD was) (VP (VBN unsourced) (S (@S (S (CC but) (@S (NP it) (VP (VBD was) (VP (VBN sourced) (PRN (, ,) (@PRN (S (NP i) (VP (@VP (VBD put) (NP (CD two) (NNS references))) (PP (TO to) (NP (NP (CD two) (@NP (JJ fair) (NNS sources))) (PRN (-LRB- -LRB-) (@PRN (NP (@NP (NP (RB not) (NNS blogs)) (CC nor)) (NP (JJ politicaly) (NNS bound))) (-RRB- -RRB-))))))) (, ,))))))) (CC so)) (SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (VB remove) (NP them))) (. ?)))))))))
366668 (ROOT (NP <url>) (@S (VP (@VP (VBP please) (RB also)) (VP (@VP (@VP (@VP (VB answer) (NP (NP (DT the) (NNS questions)) (PP (IN at) (NP (NN paragraph) (NNS <url>))))) (PP above)) (, ,)) (SBAR (IN as) (S (NP you) (VP (VBP are) (VP (VBG looking) (PP (IN like) (NP (NP (DT a) (@NP (JJ classic) (@NP (NN bully) (NN admin)))) (SBAR (WHNP who) (S (@VP (VP (VBZ abuses) (NP (PRP$ his) (NNS powers))) (CC and)) (VP (MD should) (VP (VB be) (VP (VBN stripped) (WHPP (IN of) (WHNP (WDT that) (NN role)))))))))))))))) (. .)))
366668 (ROOT (@SQ (@SQ (VBZ is) (NP there)) (NP (NP (DT any) (@NP (NN review) (NN process))) (PP (IN in) (NP (@NP (NP wikipedia) (, ,)) (PP (IN for) (S (VBG proposing) (SBAR (IN that) (S (NP you) (VP (VB be) (VP (@VP (VBN stripped) (PP (IN of) (NP (PRP$ your) (@NP (NN admin) (NNS powers))))) (PP (IN for) (NP bullyism)))))))))))) (. ?))
624484 (ROOT (WHADVP where) (@SBARQ (SQ (VBZ is) (NP (NP (DT the) (NN exception)) (PP (IN in) (S (@VP (VP (VBG <url>) (PP (IN for) (S (@VP (VBG tossing) (PRT out)) (NP citations)))) (CC and)) (VP (VBG verifiable) (SBAR (@SBAR (IN in) (NN order)) (S (TO to) (VP (@VP (VB make) (S (NP it) (ADJP easier))) (PP (IN for) (NP (DT the) (NN reader))))))))))) (. ?)))
624484 (ROOT (WHNP who) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (S (TO to) (VP (VB disagree) (PP (IN with) (NP (NP (NP (NN nikon) (POS 's)) (NN label)) (PP (IN of) (NP (JJ compact) (NN professional)))))))) (. ?)))
621082 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (MD would) (NP you)) (VP (VB doubt) (NP that))) (. .)))
621082 (ROOT (CC and) (@SBARQ (WHADVP (ADVP (IN for) (NP (DT that) (NN matter))) (WRB why)) (@SBARQ (SQ (@SQ (@SQ (MD would) (RB n't)) (NP you)) (VP (VB rewrite) (S (NP it) (NP yourself)))) (. ?))))
517557 (ROOT (VP (@VP (VB ok) (PP (IN with) (NP you))) (SBAR (IN if) (S (NP i) (VP (VBP play) (ADJP white))))) (. ?))
517557 (ROOT (NP i) (@S (VP (VBP suck) (SBAR (IN so) (S (NP i) (VP (MD should) (VP (@VP (@VP (VB go) (ADJP first.and)) (, ,)) (SBAR (IN if) (S (NP you) (VP (@VP (VBP do) (RB n't)) (VP (VB agree) (SBAR (NP i) (VP (MD will) (VP (@VP (VB crush) (NP you)) (PP (IN like) (NP (DT a) (NN mag))))))))))))))) (. .)))
517557 (ROOT (NP (NN whoa) (@NP (NN power) (NN rush))) (@S (ADVP anyway) (@S (VP (VBP ok) (PP (IN with) (NP you))) (. ?))))
597470 (ROOT (@S (@S (S (@VP (VB re) (NP (PRP$ your) (NNS remarks))) (PP (IN on) (NP (NP (DT the) (@NP (NN talk) (NN page))) (PP (IN of) (NP 9/11))))) (: :)) (S (NP i) (VP (@VP (VBP do) (RB not)) (VP troll)))) (. .))
597470 (ROOT (VP comprende) (. ?))
626130 (ROOT (NP you) (@S (ADVP sure) (@S (VP (VBP kill) (S (VBG educating) (NP information))) (. .))))
626130 (ROOT (NP i) (@S (VP (VBP wounder) (VP why)) (. ?)))
355369 (ROOT (NP right) (@FRAG (, ,) (@FRAG (PP (CC but) (NP (NP (RB not) (DT all)) (PP (IN of) (NP it)))) (. .))))
355369 (ROOT (ADJP so) (@FRAG (S (MD can) (@S (NP you) (VP (@VP (@VP (VB retrieve) (NP it)) (CC or)) (RB not)))) (. ?)))
342431 (ROOT ???)
342431 (ROOT (NP you) (@S (VP wat) (. ?)))
622984 (ROOT (S (ADVP especially) (@VP (VBG considering) (SBAR (IN that) (S (NP it) (VP (@VP (@VP (VBD took) (NP you)) (NP (ADJP (NP (DT a) (RB lot)) (JJR more)) (NN time))) (S (TO to) (VP (@VP (VB vandalize) (NP (DT the) (NN page))) (PP (IN than) (NP (DT the) (@NP (CD two) (NNS seconds))))))))))) (@S (NP it) (@S (VP (VBD took) (S (NP us) (VP (TO to) (VP (VB fix) (NP it))))) (. .))))
622984 (ROOT (WHNP what) (@SBARQ (SQ (VBZ 's) (NP (DT the) (NN point))) (. ?)))
350825 (ROOT (@NP (@NP (NP (NP images) (PP (IN with) (NP (@NP (NP (JJ iconic) (NN status)) (CC or)) (NP (JJ historical) (NN importance))))) (: :)) (NP (NP (RB as) (NNS subjects)) (PP (IN of) (NP commentary)))) (. .))
350825 (ROOT (S (@VP (VB listen) (, ,)) (S (NP it) (VP (@VP (VBZ 's) (ADVP just)) (ADJP (JJ trivial) (S (TO to) (VP (VB look) (PRT up))))))) (@SQ (, ,) (@SQ (@SQ (@SQ (MD could) (NP you)) (VP (VB take) (NP (NP (DT the) (NN care)) (PP (IN of) (S (ADVP actually) (@VP (@VP (VBG reading) (NP (DT these) (NNS policies))) (PP (IN before) (S (@VP (VBG arguing) (PRT over)) (NP them))))))))) (. ?))))
618793 (ROOT (@S (@S (S (NP i) (VP (VBP am) (NP (NP (DT an) (NN administrator)) (PP (IN on) (NP (DT this) (NN project)))))) (CC and)) (S (NP (PRP$ my) (NN task)) (VP (VBZ is) (S (TO to) (VP (VB enforce) (NP (DT these) (NNS rules))))))) (. .))
618793 (ROOT (INTJ now) (@SQ (, ,) (@SQ (@SQ (@SQ (MD will) (NP you)) (VP (@VP (VP cooperate) (CC or)) (VP (@VP (MD will) (ADVP i)) (VP (VB have) (S (TO to) (VP (VB block) (NP you))))))) (. ?))))
424489 (ROOT (SBAR (IN since) (S (NP (DT the) (NN discussion)) (VP (@VP (VBD was) (RB not)) (VP (VBN advertised) (PP (IN at) (NP (DT the) (@NP (VBN affected) (NNS pages)))))))) (@S (, ,) (@S (NP it) (@S (VP (@VP (VBD did) (RB not)) (VP (VB involve) (NP (DT the) (NN community)))) (. .)))))
424489 (ROOT (@SQ (@SQ (VBP do) (NP you)) (VP (RB not) (@VP (VB see) (NP that)))) (. ?))
627233 (ROOT (ADJP delete) (@FRAG (, ,) (@FRAG (SBAR (WHNP who) (S cares)) (. .))))
627233 (ROOT (SBAR (IN if) (S (NP we) (VP (VBP 're) (VP (VBG going) (S (TO to) (VP (VB delete) (NP (NP (DT every) (@NP (JJ fair) (@NP (NN use) (NN image)))) (SBAR (WHNP that) (S (VBZ has) (NP (DT a) (@NP (JJ sufficient) (NN rationale)))))))))))) (@FRAG (, ,) (@FRAG (WHADVP why) (@FRAG (RB not) (@FRAG (VP (VB change) (S (TO to) (VP (@VP (VB german) (NP (JJ wikipedia) (@NP (NN image) (NN policy)))) (ADVP already)))) (. ?))))))
201998 (ROOT (@S (@S (@S (S (NP you) (@S (ADVP again) (VP (@VP (@VP (VBP speak) (PP (IN of) (NP (NP (DT the) (NN probability)) (PP (IN of) (NP interest))))) (, ,)) (SBAR (IN whereas) (S (NP i) (VP (VBD made) (SBAR (NP it) (VP (VBP clear) (SBAR (IN that) (S (@S (@S (S (ADVP either) (@S (NP there) (VP (VBZ is) (NP (NP (RB only) (@NP (CD one) (NN probability))) (PP (IN of) (NP interest)))))) (, ,)) (CC and)) (S (ADVP hence) (@S (NP it) (VP (@VP (MD can) (RB not)) (VP (VB depend) (PP (IN on) (NP (DT the) (@NP (NN door) (NNS numbers)))))))))))))))))) (, ,)) (CC or)) (S (NP there) (VP (VBP are) (NP (@NP (@NP (@NP (@NP (NP (NP (JJ several) (NNS probabilities)) (PP (IN of) (NP interest))) (, ,)) (NP (NP all) (PP (IN with) (NP (DT the) (@NP (JJ same) (NN value)))))) (, ,)) (CC and)) (NP (NP (RB hence) (JJ independent)) (PP (IN of) (NP (NP (DT the) (NNS numbers)) (PP (IN of) (NP (DT the) (NNS doors)))))))))) (. .))
201998 (ROOT (S (VB do) (RB n't)) (@S (NP you) (@S (VP (VBP understand) (NP this)) (. ?))))
623275 (ROOT (S (VBG correcting) (NP (DT an) (@NP (NN article) (S (TO to) (VP (VB remove) (NP (@NP (NP mention) (PP (IN of) (NP something))) (SBAR (WHNP that) (S (@VP (VP (VBD was) (VP (@VP (@VP (VBN made) (PRT up)) (ADVP here)) (PP (IN in) (NP wikipedia)))) (CC and)) (VP (@VP (VBZ does) (RB not)) (VP (VB exist) (PP (IN in) (NP (NP (DT any) (@NP (JJ formal) (NN definition))) (PP (IN of) (NP (NP (DT the) (@NP (NN article) (POS 's))) (NN subject))))))))))))))) (@S (VP (VBZ is) (NP (NP (DT a) (NN furtherance)) (PP (IN of) (NP (@NP (@NP (NP (DT the) (@NP (JJ <url>) (NN policy))) (, ,)) (RB not)) (NP vandalism))))) (. .)))
623275 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (VBN interested) (PP (@PP (@PP (PP (IN in) (NP (JJ knee-jerk) (NN reverting))) (, ,)) (CC or)) (PP (IN in) (S (ADVP actually) (@VP (VBG making) (NP (NP (PRP$ your) (NN encyclopedia)) (ADJP (@ADJP (JJ correct) (CC and)) (JJ accurate))))))))) (. ?))
371345 (ROOT (WHNP what) (@SBARQ (SQ (VBZ 's) (VP (VBG going) (PRT on))) (. ?)))
371345 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (@VP (@VP (VB revert) (NP (PRP$ my) (NNS edits))) (PP (TO to) (NP (DT those) (NNS articles)))) (PP (IN without) (NP (DT any) (NN explanation))))) (. ?)))
629959 (ROOT (NP fine) (@FRAG (, ,) (@FRAG (CC but) (@FRAG (S (NP it) (VP (@VP (VBD took) (NP me)) (NP (NP (DT no) (@QP (JJR more) (@QP (@QP (IN than) (DT a)) (NN couple)))) (PP (IN of) (NP (NNS seconds) (S (TO to) (VP (VB find) (NP (DT a) (NN source))))))))) (. .)))))
629959 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (MD could) (RB n't)) (NP you)) (VP (@VP (VB do) (NP it)) (PP (RB instead) (@PP (IN of) (S (VBG removing) (NP (DT the) (NN content))))))) (. ?)))
625048 (ROOT (PP (ADVP unfortunately) (@PP (IN for) (NP (NP those) (SBAR (WHNP who) (S (VBP like) (NP railroads)))))) (@S (, ,) (@S (NP it) (@S (VP (VBZ 's) (VP (VBN been) (VP (VBN closed) (ADVP again)))) (. !)))))
625048 (ROOT (S (VB do) (RB n't)) (@S (NP (PRP you) (NNS people)) (@S (VP (VBP have) (NP (JJR better) (@NP (NNS things) (S (TO to) (VP do))))) (. ?))))
170153 (ROOT (VP hm) (. .))
170153 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (VBG asking) (S (TO to) (VP (VB be) (VP banned))))) (. ?))
224511 (ROOT (@VP (@VP (@VP (@VP (VBN agian) (PRN (, ,) (@PRN (S (NP (JJ wishful) (NN thinking)) (VP (VBZ is) (NP (@NP (NP (CD one) (NN thing)) (, ,)) (VP fantasyland)))) (, ,)))) (ADVP (RB now) (RB back))) (PP (TO to) (NP reality))) (, ,)) (SINV (@SINV (MD can) (NP you)) (VP (@VP (VB provide) (NP me)) (NP (@NP (NP (CD one) (NN journal)) (, ,)) (NP (NP (CD one) (NN book)) (SBAR (WHNP that) (S (@VP (VBD mentioned) (NP (DT the) (@NP (NN term) (NNS palestinians)))) (PP (IN before) (NP (NP (CD 1960) (POS 's)) (NN ???))))))))))
224511 (ROOT (WHADVP why) (@FRAG (NP not) (. ?)))
517758 (ROOT (ADVP well) (@S (, ,) (@S (NP i) (@S (VP (VBD bet) (SBAR (NP you) (VP (@VP (VBD got) (NP that)) (PP (IN from) (S (VBG stalking) (NP me)))))) (. .)))))
517758 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (VBG making) (SBAR (NP (DT a) (@NP (JJ template) (FW i))) (VP (MD can) (VP use))))) (. ?))
213314 (ROOT (@SBAR (@SBAR (WHNP what) (PRN (, ,) (S (NP you) (VP (VBP are) (VP (VBG saying) (NP (NP (DT that) (NN nothing)) (VP (VBN published) (PP (IN at) (NP mises.org))))))))) (S (VBZ is) (NP (DT a) (@NP (JJ reliable) (NN source))))) (. ?))
213314 (ROOT (WHNP what) (@SBARQ (SQ (VBZ is) (NP (NP (PRP$ your) (NN basis)) (PP (IN for) (S (VBG asserting) (NP that))))) (. ?)))
194444 (ROOT (S (@VP (@VP (VBG calling) (NP (DT all) (NNS changes))) (PP (IN for) (NP vandalism))) (SBAR (RB just) (@SBAR (IN because) (S (NP you) (VP (@VP (VBP do) (RB n't)) (VP (VB agree) (PP (IN with) (NP them)))))))) (@S (VP (@VP (VBZ is) (RB not)) (NP (DT the) (@NP (NN way) (S (TO to) (VP (VB explain) (SBAR (WHADVP why) (S (NP you) (VP (VBZ reverts) (NP edits))))))))) (. .)))
194444 (ROOT (@SQ (@SQ (MD may) (NP i)) (VP (VB suggest) (SBAR (IN that) (S (NP you) (@S (ADVP actually) (VP (VBP learn) (SBAR (WHNP what) (S (NP vandalism) (@S (ADVP actually) (VP (VBZ means) (SBAR (IN before) (S (NP you) (VP (VBP use) (NP (DT the) (NN word))))))))))))))) (. ?))
171044 (ROOT (NP (NNP <person>) (NNP i)) (@S (VP (VBP find) (S (NP (DT this) (NN conversation)) (@S (ADJP remarkable) (S (VBN given) (SBAR (IN that) (S (NP you) (VP (@VP (VBP have) (ADVP twice)) (VP (VBN opted) (S (TO to) (VP (@VP (VB edit) (NP war)) (PP (IN over) (S (@VP (@VP (VBG referencing) (NP format)) (PP (TO to) (NP (NP (DT the) (NN detriment)) (PP (IN of) (NP (NP (NP (DT an) (@NP (NN article) (POS 's))) (NN quality)) (PP (IN in) (NP (DT the) (@NP (JJ last) (@NP (CD 24) (NNS hours)))))))))) (PP (IN on) (NP <url>)))))))))))))) (. .)))
171044 (ROOT (WHNP what) (@SBARQ (SQ gives) (. ?)))
566610 (ROOT (UH eh) (. ?))
566610 (ROOT (INTJ no) (@S (, ,) (@S (NP (DT those) (NNS facts)) (@S (VP (@VP (@VP (VBD were) (ADJP correct)) (, ,)) (SBAR (WHADVP why) (S (VBP do) (SBAR (NP you) (VP (VBP think) (SBAR (NP they) (VP (VBD were) (RB not)))))))) (. ?)))))
618861 (ROOT (ADVP (RB very) (RB well)) (@S (NP i) (@S (VP (@VP (MD wo) (RB n't)) (VP (@VP (VB contact) (NP you)) (ADVP anymore))) (. .))))
618861 (ROOT (NP geez) (@FRAG (, ,) (@FRAG (SBAR (WHNP whatever) (S (VBP happen) (PP (TO to) (NP (NP (DT the) (NN spirit)) (PP (IN of) (NP collaboration)))))) (. ?))))
126492 (ROOT (IN so) (@S (NP you) (@S (VP (VBP 're) (ADJP (JJ interested) (PP (IN in) (NP (DT both) (@NP (JJ amiga) (@NP (@NP (NNS computers) (CC and)) (NN bdsm))))))) (. !))))
126492 (ROOT (VP (@VP (VBP are) (NP you)) (ADVP (NP (DT an) (NN atheist)) (RB too))) (. ?))
625829 (ROOT (ADVP so) (@S (, ,) (@S (ADVP basically) (@S (, ,) (@S (NP you) (@S (VP (@VP (VBP 're) (ADVP just)) (VP (VBG violating) (ADJP (@ADJP (JJ <url>) (CC and)) (JJ <url>)))) (. .)))))))
625829 (ROOT (WRB why) (. ?))
570742 (ROOT (NP yeah) (@FRAG (, ,) (@FRAG (CC but) (@FRAG (S (NP playtime) (VP (VBZ is) (ADJP over))) (. .)))))
570742 (ROOT (VP (@VP (VB find) (NP (DT some) (NNS articles))) (PP (TO to) (NP (@INTJ (UH edit) (, ,)) (UH yes)))) (. ?))
623072 (ROOT (CC and) (@S (ADVP now) (@S (NP you) (@S (VP (VBD undid) (NP (NP (PRP$ my) (NN declination)) (PP (IN of) (NP (NP (DT that) (NN one)) (SBAR (WHNP which) (S (VBD was) (VP copyrighted))))))) (. .)))))
623072 (ROOT (@SQ (@SQ (MD would) (NP you)) (VP (VB please) (VP (VB quit) (S (VBG undoing) (NP (PRP$ my) (NNS declinations)))))) (. ?))
452664 (ROOT (NP you) (@S (ADVP still) (@S (VP (@VP (VBP have) (RB n't)) (VP (VBN answered) (NP (@NP (NP (PRP$ my) (NN question)) (: :)) (SBARQ (WHADVP why) (SQ (@SQ (VBD did) (NP you)) (VP (@VP (@VP (@VP (VB delete) (NP (DT the) (NN article))) (ADVP (RB so) (RB quickly))) (, ,)) (PP (IN without) (S (ADVP even) (VP (VBG bothering) (S (TO to) (VP (VB read) (NP it)))))))))))) (. ?))))
452664 (ROOT (CC and) (@SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (ADJP (RB so) (@ADJP (JJ willing) (PP (TO to) (NP (@NP (@NP (NP (JJ back) (NN thunderbunny)) (CC and)) (RB not)) (NP me)))))) (. ?))))
523577 (ROOT (@SQ (@SQ (@SQ (MD could) (NP you)) (ADVP kindly)) (VP (@VP (VB stick) (PP (TO to) (NP (NP (DT the) (NN issue)) (PP (IN at) (NP hand))))) (PP (IN in) (NP (DT the) (NN fac))))) (. ?))
523577 (ROOT (WHNP which) (@SBARQ (SQ (VBZ is) (S (TO to) (VP (VB discuss) (NP (@NP (@NP (NP (DT the) (NN article)) (, ,)) (RB not)) (NP me))))) (. ?)))
274659 (ROOT (SBAR (PRN (-LRB- -LRB-) (@PRN (PP (IN after) (NP (JJ multipled) (@NP (JJ edit) (NNS conflicts)))) (-RRB- -RRB-))) (S (@S (S (NP i) (VP (@VP (VBN checked) (S (NP (@NP (NP (PRP$ your) (NN behaviour)) (CC and)) (NP (PRP$ your) (NNS contributions))) (NP myself))) (PP (IN at) (NP (@NP (NP (DT the) (NN time)) (, ,)) (SBAR (IN as) (S (VBD did) (NP (NP (JJ numerous) (@NP (JJ other) (NNS admins))) (SBAR (WHNP who) (S (VBN reviewed) (NP (@NP (NP (PRP$ your) (NNS edits)) (CC and)) (NP (DT the) (NN block)))))))))))) (CC and)) (S (NP it) (VP (@VP (VBD was) (ADJP (JJ subject) (PP (IN of) (NP (@NP (@NP (NP (JJ extensive) (@NP (NN discussion) (IN on))) (CC and)) (JJ off-site)) (NP (RB so) (@NP (PRP$ your) (NN suggestion))))))) (SBAR (IN that) (S (NP i) (VP (MD should) (VP (VB have) (VP (VBN checked) (PP (IN with) (NP others))))))))))) (@S (VP (VBZ is) (ADJP silly)) (. .)))
274659 (ROOT (@S (@S (S (NP you) (VP (@VP (VP (VBD violated) (NP (NP (NNP wikipedia) (POS 's)) (NNS policies))) (CC and)) (VP (VBD were) (VP (@VP (VBN blocked) (ADVP rightly)) (PP (IN for) (NP it)))))) (: ;)) (S (@S (S (NP you) (VP (VBP 've) (VP (VBN been) (VP (VBN given) (NP (DT a) (@NP (JJ second) (NN chance))))))) (CC and)) (S (PP (RB instead) (@PP (IN of) (S (VBG being) (ADJP productive)))) (@S (NP you) (VP (@VP (VBP come) (ADVP here)) (S (@VP (@VP (VP (TO to) (VP (VB moan) (PP (IN about) (NP (NP (DT a) (@NP (NN comment) (NN i))) (VP (@VP (@VP (VBN made) (ADVP (NP (QP (JJR more) (@QP (IN than) (CD six))) (NNS months)) (RB ago))) (, ,)) (SBAR (IN that) (S (NP i) (@S (ADVP still) (VP (VBP stand) (PP by)))))))))) (, ,)) (CC and)) (VP (TO to) (VP (@VP (VB pursue) (NP (PRP$ your) (@NP (RB now) (@NP (JJ year-old) (NN vendetta))))) (PP (IN against) (NP nick)))))))))) (. ?))
604463 (ROOT (VB say) (FRAG (WHNP what) (. ?)))
604463 (ROOT (CC and) (@SBARQ (WHNP what) (@SBARQ (SQ (@SQ (VBZ does) (NP this)) (VP (VB have) (S (TO to) (VP (VB do) (PP (IN with) (NP (@NP (NP (JJ happy) (@NP (JJ new) (NN year))) (CC and)) (NP (PRP$ my) (@NP (JJ pretty) (NN picture))))))))) (. ?))))
629582 (ROOT (WHADVP why) (@FRAG (RB not) (@FRAG (VP (VB try) (S (@VP (@VP (VBG adding) (NP sources)) (PP (IN from) (NP time))) (PP (TO to) (NP time)))) (. ?))))
629582 (ROOT (SBAR (IN if) (S (NP you) (VP (MD wo) (RB n't)))) (@SBARQ (WHNP who) (@SBARQ (SQ (VBP do) (SBAR (NP you) (VP (VBP expect) (S (TO to) (VP (VB do) (ADVP so)))))) (. ?))))
345282 (ROOT (WHNP (WHNP which) (PP (IN of) (NP course))) (@SBARQ (SQ (VBZ is) (ADJP (ADJP (ADVP (PDT all) (@ADVP (DT the) (RBR more))) (JJ ironic)) (SBAR (IN as) (S (NP (PRP$ my) (@NP (JJ initial) (NNS edits))) (VP (VBD were) (NP (DT an) (@NP (NN attempt) (S (TO to) (VP (VB improve) (NP (NP (DT the) (NN article)) (PP (IN per) (NP <url>)))))))))))) (. .)))
345282 (ROOT (WHNP (@WHNP (WP who) (DT the)) (NN hell)) (@SBARQ (SQ (MD would) (VP (VB have) (VP (VBN predicted) (NP (PDT all) (DT this))))) (. ?)))
618997 (ROOT (ADVP ok) (@S (, ,) (@S (NP we) (@S (VP (VBP are) (VP (@VP (VBG talking) (PP (IN about) (NP (CD two) (@NP (JJ remaining) (NNS articles))))) (ADVP here))) (. .)))))
618997 (ROOT (SBAR (X the) (S (NP categories) (VP (VBP serve) (NP (RB absolutely) (@NP (DT no) (@NP (NN categorization) (NN purpose))))))) (@SBARQ (, ,) (@SBARQ (WHADVP (ADVP so) (WRB why)) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG being) (ADJP (JJ stubborn) (PP (IN about) (NP it))))) (. ?)))))
622141 (ROOT (ADVP maybe) (@S (NP it) (@S (VP (MD would) (VP (VB be) (ADJP (ADJP better) (SBAR (IN if) (S (NP we) (@S (ADVP never) (VP (@VP (@VP (@VP (VBD talked) (ADVP directly)) (PP (TO to) (NP (DT each) (JJ other)))) (ADVP ever)) (ADVP again)))))))) (. .))))
622141 (ROOT (VP agreed) (. ?))
620534 (ROOT (ADVP here) (@S (, ,) (@S (S (VB let) (S (NP me) (VP (@VP (@VP (@VP (VB parse) (NP it)) (ADVP (IN out) (PP (IN for) (NP you)))) (: :)) (S (NP i) (VP (VB regret) (SBAR (@SBAR (IN that) (IN because)) (S (NP (@NP (NP gravitor) (CC and)) (NP (NP (NN carfiend) (POS 's)) (NN behavior))) (VP (VBZ consists) (PP (IN of) (S (VBG acting) (PP (IN in) (NP (NP tandem) (PRN (-LRB- -LRB-) (@PRN (PP (IN in) (NP (NP (DT the) (NN manner)) (PP (IN of) (NP (NN meat) (@NP (CC or) (@NP (NN sock) (NNS puppets))))))) (-RRB- -RRB-))))))))))))))) (@S (, ,) (@S (VP (VBP refuse) (S (TO to) (VP (@VP (@VP (@VP (VP (@VP (VB discuss) (NP (JJ disputed) (NN content))) (PP (IN on) (NP (DT the) (@NP (NN talk) (NN page))))) (, ,)) (CC and)) (ADVP continally)) (VP (@VP (VB provoke) (NP (JJ revert) (NNS wars))) (SBAR (IN that) (S (NP (DT some) (@NP (JJ administrative) (NN intervention))) (VP (@VP (VBZ is) (ADVP likely)) (VP required)))))))) (. .))))))
620534 (ROOT (@SQ (@SQ (VBZ is) (NP it)) (ADVP (RB clear) (RB now))) (. ?))
622981 (ROOT (NP (DT that) (NN incident)) (@S (VP (@VP (VBZ is) (ADVP already)) (VP (VBN mentioned) (PP (IN in) (NP (DT the) (NN <url>))))) (. .)))
622981 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB insist) (PP (IN on) (S (ADVP redundantly) (VP (VBG adding) (NP it)))))) (. ?)))
94526 (ROOT (@S (@S (@S (S (@S (S (SBAR (IN if) (S (NP you) (VP (@VP (VBP do) (RB n't)) (VP (VB agree) (PP (IN with) (NP (DT this) (NN approach))))))) (@S (, ,) (@S (NP you) (VP (@VP (MD can) (ADVP ether)) (VP (@VP (@VP (VP (VB add) (S (NP (DT the) (NNS references)) (NP yourself))) (, ,)) (CC or)) (VP (VB delete) (NP (DT the) (@NP (VBN added) (NN material))))))))) (CC and)) (S (NP i) (VP (MD will) (VP (@VP (VP (VB go) (ADVP elsewhere)) (CC and)) (VP (VB write) (S (NP something) (ADJP else))))))) (, ,)) (CC and)) (S (NP you) (VP (MD can) (VP (VB take) (PP (IN over) (S (VBG doing) (NP (DT the) (@NP (JJ anti-tank) (@NP (NN warfare) (@NP (@NP (@NP (NN article) (`` `)) (FW properly)) ('' '))))))))))) (. .))
94526 (ROOT (VP ok) (. ?))
4361 (ROOT (NP i) (@S (VP (VBP 'm) (ADJP sure)) (. .)))
4361 (ROOT (WHADVP how) (@SBARQ (S (NP (RB about) (PRP we)) (VP (VBD let) (SBAR (NP (DT the) (@NP (NN sockpuppet) (NN investigation))) (VP (VBD let) (SBAR (NP us) (VP (VBP know) (PP (IN for) (NP (JJ certain) (@NP (, ,) (@NP (JJ m) (@NP (`` `) (NN kay)))))))))))) (. ?)))
270945 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (ADVP really) (@VP (VBG denying) (SBAR (IN that) (S (NP you) (VP (@VP (VBD brought) (NP (NP (@NP (NN giano) (CC and)) (NN bishonen)) (@NP (POS 's) (NNS names)))) (PP (IN into) (NP this)))))))) (. ?))
270945 (ROOT (ADVP seriously) (. ?))
417932 (ROOT (PP (VBG regarding) (NP <url>)) (@S (, ,) (@S (@S (@S (S (NP (DT the) (NNS alumni)) (VP (MD should) (VP (VB be) (VP alphabetized)))) (CC and)) (S (NP (NN tom) (NN delonge)) (VP (VBD did) (S (VB go) (ADVP there))))) (. .))))
417932 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (MD would) (NP you)) (VP (VB undo) (NP (PRP$ my) (NN edit)))) (. ?)))
628354 (ROOT (NP you) (@S (VP (@VP (VBP do) (RB not)) (VP (VB appear) (S (TO to) (VP (VB have) (VP (@VP (VBD alerted) (NP (DT the) (@NP (JJ other) (@NP (JJ previous) (@NP (NN delete) (NNS advocates)))))) (ADVP yet)))))) (. .)))
628354 (ROOT (@SQ (@SQ (MD may) (NP we)) (VP (@VP (@VP (VB take) (NP this)) (PP (IN as) (NP (DT a) (@NP (JJ tacit) (NN admission))))) (SBAR (IN that) (S (ADVP actually) (@S (NP you) (VP (VBD were) (VP (VBG intending) (S (TO to) (VP (VB skew) (NP (DT the) (@NP (NN deletion) (NN review)))))))))))) (. ?))
629552 (ROOT (NP you) (@S (VP (VBP call) (SBAR (WHNP what) (S (NP i) (VP (VBD did) (S (VBG wikistalking) (SBAR (NP (RB yet) (@NP (DT these) (NNS editors))) (VP (VBP are) (VP (VBN allowed) (S (TO to) (VP (@VP (VB do) (NP (DT the) (@NP (JJ same) (NN thing)))) (PP (TO to) (NP me)))))))))))) (. ?)))
629552 (ROOT (WHADVP where) (@SBARQ (SQ (VBZ 's) (NP (NP (DT the) (NN sense)) (PP (IN in) (NP that)))) (. ?)))
423462 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBZ does) (NP this)) (VP (VB have) (S (TO to) (VP (VB do) (PP (IN with) (NP zeitgeist)))))) (. ?)))
423462 (ROOT (SBAR (WHNP i) (S (@VP (VBD posted) (PP (IN on) (NP (PRP$ your) (@NP (NN talk) (NN page))))) (SBAR (IN because) (S (NP this) (VP (@VP (VBZ is) (ADVP (RB no) (@ADVP (RBR longer) (RB remotely)))) (PP (IN about) (NP (DT the) (NN article)))))))) (@SBARQ (, ,) (@SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG continuing) (S (TO to) (VP (VB quarrel) (ADVP here))))) (. ?)))))
509497 (ROOT (@VP (@VP (@VP (VP (VB comply) (PP (IN with) (SBAR (WHNP what) (S (NP (PRP$ your) (@NP (NN talk) (NN page))) (VP says))))) (, ,)) (VP (VB get) (PRT off))) (CC and)) (VP (VB study) (NP !!!!)))
509497 (ROOT (@SQ (@SQ (VBP have) (NP you)) (VP willpower)) (. ?))
44690 (ROOT (ADVP btw) (@S (, ,) (@S (NP i) (@S (VP (VBP 'm) (VP (VBN amazed) (SBAR (IN that) (S (NP he) (VP (VBZ has) (NP (DT the) (@NP (NN gumption) (S (TO to) (VP (@VP (VB show) (NP (PRP$ his) (NN mug))) (PP (IN after) (NP <url>))))))))))) (. .)))))
44690 (ROOT (CC and) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB have) (S (NP (NP (DT the) (NNS balls)) (PRN (-LRB- -LRB-) (@PRN (NP (@NP (JJ metaphorically) (CC or)) (JJ otherwise)) (-RRB- -RRB-)))) (VP (TO to) (VP (@VP (VB place) (NP (DT a) (NN hatnote))) (PP (IN above) (NP (NP (PRP$ his) (NN article)) (VP (VBG linking) (PP (TO to) (NP (DT that) (NN term))))))))))) (. ?)))
338150 (ROOT (NP (CD eight) (@NP (JJR more) (NNS articles))) (@S (VP semi-protected) (. .)))
338150 (ROOT (WHNP (WHADJP (@WHADJP (WRB how) (JJ many)) (PP (IN of) (NP (DT these) (@NP (NNP damned) (@NP (@NP (NNP t) (CC &)) (NNP j)))))) (NNS articles)) (@SBARQ (SQ (VBP are) (NP there)) (. ?)))
625109 (ROOT (NP (DT no) (@NP (PRN (, ,) (PP (IN of) (NP course))) (NN i))) (@S (ADVP never) (@S (VP did) (. .))))
625109 (ROOT (WHADVP (ADVP so) (WRB why)) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB keep) (S (VBG writing) (PP (IN about) (S (@VP (VBG scorning) (NP (NP (NNS others) (POS 's)) (NNS sensitivities))) (SBAR (WHADVP when) (S (NP (PDT such) (@NP (DT a) (NN thing))) (VP (VBD was) (VP (ADVP never) (VBN suggested)))))))))) (. ?)))
184719 (ROOT (INTJ no) (@S (, ,) (@S (NP i) (@S (VP (@VP (VBP have) (RB not)) (VP (@VP (@VP (VBN read) (NP it)) (, ,)) (SBAR (IN as) (S (NP it) (VP (VBZ is) (PP (IN of) (NP (NP (DT no) (NN interest)) (PP (TO to) (NP (@NP (NP me) (CC or)) (NP (DT this) (NN encyclopedia))))))))))) (. .)))))
184719 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (VBG claiming) (SBAR (@SBAR (@SBAR (SBAR (IN that) (S (NP (DT the) (NNS references)) (VP (VBP make) (S (NP (DT the) (NN blog)) (VP (VB post) (NP (DT a) (@NP (JJ reliable) (NN source)))))))) (, ,)) (CC or)) (SBAR (WHADVP why) (S (VBP are) (NP (NP we) (VP (ADVP still) (@VP (VBG discussing) (NP this))))))))) (. ?))
153636 (ROOT (@S (@S (@S (@S (S (NP i) (@S (ADVP clearly) (VP (VBD provided) (NP (NP (DT a) (NN source)) (SBAR (WHNP that) (S (VBZ is) (ADJP valid))))))) (, ,)) (CC and)) (ADVP yet)) (S (NP (NP (DT a) (NN couple)) (PP (IN of) (NP hours))) (VP (VBZ is) (NP (DT a) (@NP (JJ big) (NN deal)))))) (. ?))
153636 (ROOT (@SQ (@SQ (VBZ is) (NP it)) (NP (@NP (@NP (NP (PRP$ your) (NN way)) (, ,)) (CC or)) (NP (DT the) (NN highway)))) (. ?))
629941 (ROOT (NP that) (@S (VP (VBZ 's) (NP (NN reason) (S (TO to) (VP (@VP (VB expand) (NP (DT the) (NN treatment))) (PP (@PP (@PP (PP (TO to) (NP (JJ other) (NNS painters))) (, ,)) (RB not)) (PP (TO to) (NP (JJ blank) (@NP (DT this) (NN one))))))))) (. .)))
629941 (ROOT (CC and) (@S (NP you) (@S (VP (@VP (VBD did) (RB n't)) (VP (VB think) (SBAR (IN that) (S (NP there) (VP (MD would) (VP (VB be) (NP (NP (JJR more) (NNS articles)) (PP (IN on) (NP (NNP van) (@NP (NN gogh) (NNS paintings))))))))))) (. ?))))
417649 (ROOT (ADVP so) (@SBARQ (WHNP what) (@SBARQ (SQ (VBD was) (NP (NP (DT the) (NN point)) (PP (IN of) (NP that)))) (. ?))))
417649 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (VBG looking) (S (TO to) (VP (VB get) (VP blocked))))) (. ?))
143151 (ROOT (NP <url>) (@S (VP (VBD was) (NP (DT a) (@NP (RB bit) (@NP (JJ bad) (NN form))))) (. .)))
143151 (ROOT (VP (@VP (VB think) (ADVP twice)) (SBAR (IN before) (S (NP you) (VP (@VP (VBP do) (NP it)) (ADVP again))))) (. ?))
628764 (ROOT (NN sigh) (. .))
628764 (ROOT (@SQ (@SQ (VBD was) (NP (DT this) (@NP (JJ renewed) (NN attack)))) (ADJP (JJ necessary) (RB now))) (. ?))
4430 (ROOT (NP i) (@S (VP (@VP (VBP am) (ADVP genuinely)) (VP (VBG trying) (S (TO to) (VP (VB do) (NP (NP something) (ADJP (@ADJP (JJ useful) (CC and)) (JJ helpful))))))) (. .)))
4430 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG attacking) (NP it))) (. ?)))
318088 (ROOT (S (@VP (@VP (VBG converting) (NP <url>)) (PP (TO to) (NP (DT a) (NN redirect)))) (PP (IN without) (S (VBG preserving) (NP (CC either) (@NP (@NP (NP (DT the) (NN information)) (CC or)) (NP sources)))))) (@S (, ,) (@S (NP (NP &) (PP (IN without) (NP discussion))) (@S (VP (VBD was) (ADJP ill-advised)) (. .)))))
318088 (ROOT (@NP (NP (DT a) (@NP (RB bit) (@NP (JJR more) (NN care)))) (PP (IN in) (NP future))) (. ?))
620687 (ROOT (NP that) (@S (VP (VBZ 's) (VP (@VP (VBG fucking) (NP (ADJP consistent) (NNS naming-schemers))) (PRN (, ,) (INTJ please)))) (. .)))
620687 (ROOT (SBAR (IN unless) (S (NP there) (VP (VBZ 's) (NP (NP (DT some) (@NP (JJ actual) (NN reason))) (PP (IN for) (NP (@NP (@NP (NP (NP (@NP (@NP (NP (LST (LS a) (-RRB- -RRB-)) (@NP (NP restriction) (PP (TO to) (NP highways)))) (, ,)) (NP b)) (-RRB- -RRB-)) (NP (JJ infeasibly) (@NP (JJ small) (@NP (NN stub) (NNS categories))))) (, ,)) (CC and)) (NP (LST (LS c) (-RRB- -RRB-)) (@NP (VBN inconsistent) (NN capitalisation))))))))) (. ?))
607777 (ROOT (PP (TO to) (NP (DT the) (NNS citations))) (@S (NP missing) (@S (VP template) (. .))))
607777 (ROOT (WHNP what) (@SBARQ (SQ (VBZ 's) (NP (DT the) (NN deal))) (. ?)))
284104 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB mean) (PP (IN by) (NP (NP (RB not) (@NP (DT a) (JJ derivative))) (PP (IN of) (NP (NN formula) (@NP (CD 3) (NN article)))))))) (. ?)))
284104 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (VB feel) (VP (VBN compelled) (S (TO to) (VP (@VP (@VP (VB remove) (NP (DT the) (NN link))) (PP (TO to) (NP (DT the) (@NP (JJ main) (@NP (JJ f3) (NN article)))))) (PP (IN off) (NP (NP (DT the) (NN top)) (PP (IN of) (NP (PDT all) (@NP (DT the) (@NP (JJ f3) (NNS sub-articles)))))))))))) (. ?)))
458314 (ROOT (NP you) (@S (VP (VBP know) (SBAR (NP there) (VP (VBZ 's) (NP (NP (DT no) (NN excuse)) (PP (IN for) (NP (NP (DT the) (NNS edits)) (SBAR (NP you) (VP (VBP 're) (VP (VBG making) (ADVP (VBN related) (PP (TO to) (NP (NP (PRP$ your) (NN position)) (PP (IN at) (NP <url>)))))))))))))) (. .)))
458314 (ROOT (@S (@S (S (NP this) (VP (VBZ has) (S (TO to) (VP (VB go) (PP (TO to) (NP <url>)))))) (: ;)) (SQ (@SQ (MD would) (NP you)) (VP (VB like) (S (TO to) (VP (VB make) (NP (DT the) (NN report))))))) (. ?))
144711 (ROOT (IN so) (@S (NP i) (@S (VP (@VP (VBD got) (ADJP rid)) (PP (IN of) (NP it))) (. .))))
144711 (ROOT (VP (VB have) (NP (@NP (@NP (NP (DT a) (@NP (JJ little) (NN faith))) (PP (IN in) (NP (PRP$ my) (@NP (JJ good) (NN judgment))))) (, ,)) (ADJP okay))) (. ?))
626690 (ROOT (PP (IN in) (NP (NP (PRP$ my) (NN calculation)) (SBAR (IN if) (S (NP i) (VP got))))) (@SINV (@SINV (VP (VBD blocked) (SBAR (IN that) (S (@VP (MD would) (ADVP only)) (VP (@VP (VB be) (ADJP (JJ good) (PP (IN for) (NP me)))) (SBAR (IN as) (S (NP it) (VP (MD would) (VP (@VP (VB clear) (NP (PRP$ my) (NN mind))) (PP (IN from) (NP (DT the) (@NP (NN obsession) (S (TO to) (VP (@VP (@VP (VB try) (CC and)) (VB change)) (NP (NP that) (SBAR (WHNP which) (S (@VP (@VP (VP (VBZ seems) (ADJP (@ADJP (JJ wrong) (CC and)) (JJ mutable))) (, ,)) (CC but)) (VP carries))))))))))))))))) (NP (NP (DT no) (@NP (JJ private) (NNS benefits))) (PP (IN for) (NP (DT the) (NN reformer))))) (. .)))
626690 (ROOT (@SQ (@SQ (VBZ is) (NP (NP (DT that) (NN line)) (PP (IN of) (NP thinking)))) (ADJP (RB truly) (@ADJP (JJ alien) (PP (TO to) (NP you))))) (. ?))
31997 (ROOT (WHNP what) (. ?))
31997 (ROOT (S (INTJ please) (VP (VB speak) (S (NP brighted.ps.do) (NP you)))) (@S (VP (VBP know) (NP gag)) (. ?)))
621666 (ROOT (VP (VB o) (NP rly)) (. ?))
621666 (ROOT (CC and) (@SBARQ (WHNP what) (@SBARQ (SQ (@SQ (VBZ does) (NP it)) (VP (VB do) (ADVP there))) (. ?))))
380758 (ROOT (NP i) (@S (VP (@VP (VBP 've) (ADVP just)) (VP (@VP (VBN reinstated) (NP (DT the) (@NP (ADJP (RB perfectly) (JJ valid)) (NN redirect)))) (PP (TO to) (NP this)))) (. .)))
380758 (ROOT (@S (@S (@S (S (NP i) (VP (VBP seem) (S (TO to) (VP (VB remember) (SBAR (NP there) (VP (@VP (VBD was) (NP (DT some) (@NP (NN issue) (NNS years)))) (ADVP (RB ago) (PP (IN with) (NP (NP (DT a) (@NP (NN rock) (NN group))) (PP (IN of) (NP (DT the) (@NP (JJ same) (NN name))))))))))))) (, ,)) (CC but)) (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP (@VP (VB look) (PP (IN at) (NP (DT these) (NNS things)))) (SBAR (IN before) (S (NP you) (VP delete)))))) (. ?))
627441 (ROOT (CC and) (@S (VP (@VP (VB wasting) (NP (PRP$ our) (NN time))) (ADVP (RB as) (RB well))) (. .)))
627441 (ROOT (NP i) (VP (@VP (MD can) (ADVP only)) (VP (@VP (VB repeat) (: :)) (SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP (@VP (VB do) (NP (JJ constructive) (NN work))) (PP (IN by) (S (@VP (VBG adding) (NP contents)) (PP (IN about) (NP (PRP$ your) (@NP (JJ beloved) (NN makedonia)))))))) (. ?))))))
619157 (ROOT (NNP hello) (NNP ???))
619157 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (ADVP just) (@VP (VBG pretending) (NP (NP i) (SBAR (@VP (VBP do) (RB n't)) (VP exist)))))) (. ?))
333431 (ROOT (PP (IN on) (NP (JJ second) (NN thought))) (@S (, ,) (@S (NP (NP (DT the) (NN mix)) (PP (IN of) (NP (NNS pseudo-politeness) (@NP (, ,) (@NP (@NP (NN vulgarity) (CC and)) (NNS threats)))))) (@S (VP (VBP is.really) (ADVP creepy)) (. .)))))
333431 (ROOT (VP (MD could) (VP ya.stop)) (. ?))
499601 (ROOT (SBAR (IN as) (S (NP i) (VP (VBP have) (VP (VBN said) (ADVP before))))) (@S (, ,) (@S (NP it) (@S (VP (VBZ is) (NP (NP (DT an) (NN issue)) (PP (IN of) (NP (NP breadth) (PP (IN vs.) (NP depth)))))) (. .)))))
499601 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (VBN familiar) (PP (IN with) (NP (JJ such) (NNS concepts))))) (. ?))
182166 (ROOT .)
182166 (ROOT (NP i) (@S (VP (VBP have) (NP (NP (DT no) (NN clue)) (SBAR (WHNP what) (S (NP you) (VP (VBP 're) (VP (@VP (VP (@VP (VBG asking) (NP me)) (PP about)) (CC or)) (VP (VBG seeking) (S (NP me) (VP (TO to) (VP do)))))))))) (. .)))
182166 (ROOT (CC and) (@SBARQ (WHNP what) (@SBARQ (SQ (@SQ (VBZ does) (NP (NN rtl) (NNS wikies))) (VP mean)) (. ?))))
133689 (ROOT (NP (JJ holy) (NNS steaming)) (@S (VP <url>) (. .)))
133689 (ROOT (NP i) (@S (VP (VBP presume) (SBAR (NP you) (VP (VBP know) (PP (IN about) (NP (@NP (NP (DT the) (NN <url>)) (, ,)) (NP yes)))))) (. ?)))
289512 (ROOT (VP (@VP (VBZ seems) (PP (IN like) (NP (DT the) (@NP (JJ troll) (@NP (JJ committed) (NN suicide)))))) (NP-TMP (DT this) (NN morning))) (. .))
289512 (ROOT (@NP (@NP (@NP (NP (NP i) (SBAR (@VP (VBP do) (RB n't)) (VP (VB know) (SBARQ why)))) (: ;)) (RB perhaps)) (NP (NP (RB not) (RB enough)) (NP fun))) (. ?))
550745 (ROOT (NP i) (@S (ADVP just) (@S (VP (VBP take) (NP (NP care) (PP (IN of) (NP (DT the) (NN problem))))) (. .))))
550745 (ROOT (@SQ (@SQ (@SQ (MD ca) (RB n't)) (NP you)) (VP (VB work) (PP (@PP (@PP (@PP (PP (IN with) (NP me)) (, ,)) (CC and)) (RB not)) (PP (IN against) (NP me))))) (. ?))
628665 (ROOT (@SQ (@SQ (@SQ (MD can) (NP i)) (ADVP also)) (VP (@VP (VB point) (PRT out)) (SBAR (IN that) (S (NP (NP (DT the) (NN text)) (SBAR (IN that) (S (NP you) (VP (VBD pasted) (PP (IN into) (NP wikipedia)))))) (VP (@VP (VP (@VP (VBZ is) (ADJP (RB entirely) (JJ inappropriate))) (PP (IN for) (NP (DT an) (@NP (NN encyclopedia) (NN article))))) (CC and)) (VP (ADVP (IN at) (JJS best)) (@VP (MD will) (VP (@VP (VB require) (NP (JJ extensive) (NN editing))) (S (TO to) (VP (VB conform) (PP (TO to) (NP (DT the) (NN <url>))))))))))))) (. .))
628665 (ROOT (@SQ (@SQ (@SQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG going) (S (TO to) (VP (VB do) (NP (DT that) (NN editing)))))) (, ,)) (CC or)) (SQ (@SQ (VBP are) (NP you)) (VP (VBG going) (S (TO to) (VP (@VP (VB leave) (NP it)) (PP (TO to) (NP (NP one) (PP (IN of) (NP (NP (DT the) (@NP (JJ other) (@NP (`` `) (@NP (JJ lazy) (@NP ('' ') (NNS people)))))) (SBAR (WHNP who) (S (VB edit) (NP (DT this) (NN encyclopedia))))))))))))) (. ?))
239808 (ROOT (@S (@S (@S (S (ADVP ok) (@S (, ,) (@S (NP (RB maybe) (NN alcohol)) (VP (VBZ is) (VP (VBG depressing) (NP (PRP$ my) (@NP (JJ injoke-comprehension) (NNS circuits)))))))) (, ,)) (CC but)) (S (NP i) (VP (@VP (MD ca) (RB n't)) (VP (@VP (VB fathom) (NP (JJ <url>) (@NP (JJ edit) (NN summary)))) (ADVP (IN at) (DT all)))))) (. .))
239808 (ROOT (VP (VB care) (S (TO to) (VP explain))) (. ?))
600631 (ROOT (@S (@S (S (NP (DT the) (NN policy)) (VP (VBZ is) (ADJP (RB quite) (JJ clear)))) (: ;)) (S (NP (NP userids) (VP (@VP (VBN set) (PRT up)) (PP (IN for) (NP (NP (DT the) (NNS purposes)) (PP (IN of) (NP (@NP (NN harassment) (CC or)) (NN vandalism))))))) (VP (VBP are) (VP (VBN blocked) (ADVP indefinitely))))) (. .))
600631 (ROOT (NP that) (@S (VP (@VP (VBD said) (, ,)) (SBAR (WHNP what) (S (NP policy) (VP (@VP (VBZ is) (NP it)) (SBAR (IN that) (S (NP you) (VP (VBP think) (SBAR (NP i) (VP (@VP (VBP 'm) (RB not)) (VP following)))))))))) (. ?)))
618715 (ROOT (SBAR (IN if) (S (NP (NP (DT a) (@NP (JJ main) (@NP (CC or) (@NP (JJ major) (NN purpose))))) (PP (IN of) (NP (PRP$ your) (NN presence)))) (@S (ADVP here) (VP (VBZ is) (S (TO to) (VP (@VP (VB cause) (NP drama)) (ADVP then))))))) (@S (NP i) (@S (VP (MD would) (VP (VB support) (NP (PRP$ your) (@NP (JJ being) (NN indefed))))) (. .))))
618715 (ROOT (@SQ (@SQ (VBP am) (NP i)) (VP (VBG misunderstanding) (NP something))) (. ?))
102063 (ROOT (ADVP so) (@S (, ,) (@S (NP i) (@S (VP (@VP (VBP 'm) (NP (DT a) (NN deletion))) (ADVP fanatic)) (. ?)))))
102063 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP (@VP (VP (VB refrain) (PP (IN from) (NP (JJ uncivil) (NNS remarks)))) (CC and)) (VP (@VP (VP (VB focus) (PP (IN on) (S (@VP (VBG adding) (NP sources)) (PP (TO to) (NP (PRP$ your) (@NP (JJ unsourced) (NNS stubs))))))) (: -)) (VP (@VP (VB help) (NP (DT the) (NN encyclopedia))) (PP (RB rather) (@PP (IN than) (S (@VP (VBG pissing) (PRT off)) (NP people)))))))) (. ?)))
627329 (ROOT (@NP (NP depends) (: ;)) (SQ (@SQ (@SQ (VBP do) (NP you)) (VP (@VP (VB care) (ADVP deeply)) (PP (IN about) (NP (NN image) (NN policy))))) (. ?)))
627329 (ROOT (CC or) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (NP (DT an) (@NP (JJ incurable) (NN masochist)))) (. ?)))
574731 (ROOT (NP (@NP (NP #) (CC and)) (NP (WP what) (NN evidence))) (@S (VP (VBP do) (SBAR (NP you) (VP (VBP have) (SBAR (IN that) (S (NP i) (VP (VBP am) (VP (VBG committing) (NP revenge)))))))) (. ?)))
574731 (ROOT (@NP (NP revenge) (PP (IN for) (NP what))) (. ?))
373300 (ROOT (NP i) (@S (VP (VBP 'm) (VP (VBG curious) (ADVP (RB as) (PP (TO to) (SBAR (WHADVP why) (S (NP you) (VP (VBD chose) (S (TO to) (VP (@VP (VB <url>) (NP (DT a) (@NP (JJ full) (@NP (CD two) (NNS minutes))))) (PP (IN after) (NP (PRP$ my) (@NP (JJ last) (NN comment))))))))))))) (. ?)))
373300 (ROOT (S (VBP am) (ADJP (JJ i) (S (TO to) (VP (VB take) (NP (NP this) (PP (IN as) (NP (DT a) (NN sign)))))))) (@S (NP you) (@S (VP (VBP are) (ADJP (ADVP (RB no) (RBR longer)) (@ADJP (JJ willing) (S (TO to) (VP (VB discuss) (NP (DT the) (NN issue))))))) (. ?))))
541234 (ROOT (WHNP what) (@SBARQ (SQ (@VP (VBZ 's) (ADVP up)) (PP (IN with) (NP (PDT all) (@NP (DT those) (@NP (JJ tweaky) (NNS changes)))))) (. ?)))
541234 (ROOT (NP (RB just) (@NP (NN salting) (NNS redirects))) (. ?))
253118 (ROOT (VP (VB ok) (ADVP then)) (. .))
253118 (ROOT (WHNP what) (@SBARQ (SQ (VBZ 's) (NP (NP (PRP$ your) (NN problem)) (PP (IN with) (S (VBG putting) (NP (NP this) (PP (IN in) (NP (@NP (NP (DT the) (NN lead)) (: :)) (SQ (VBZ is) (NP (NP one) (PP (IN of) (NP (NP (DT the) (@NP (JJ <url>) (NNS counties))) (PP (IN of) (NP (DT the) (@NP (NNP <url>) (NNP and))))))))))))))) (. ?)))
620148 (ROOT (NP i) (@S (VP (@VP (VBP 'm) (RB not)) (ADJP (RB even) (@ADJP (JJ sure) (SBAR (WHNP who) (S (NP (DT this) (NN person)) (VP is)))))) (. !)))
620148 (ROOT (WHNP (WDT which) (NN page)) (@SBARQ (SQ (@SQ (VBZ is) (NP this)) (ADJP about)) (. ?)))
252109 (ROOT (NP stephan) (@SBARQ (, ,) (@SBARQ (WHNP what) (@SBARQ (SQ (@SQ (SQ (@SQ (VBD did) (NP you)) (VP (VB mean) (PP by))) (SQ (VBZ is) (NP english))) (FRAG (PRP$ your) (@NP (JJ native) (NN language)))) (. ?)))))
252109 (ROOT (NP you) (@S (VP (@VP (VP (VBP seem) (S (TO to) (VP (VB fill) (PP (IN in) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP things))))))) (RB not)) (VP (VBD said) (PP (IN with) (NP (PRP$ your) (NNS assumptions))))) (. .)))
252109 (ROOT (PP (IN on) (NP (PRP$ my) (NN talk))) (. ?))
497186 (ROOT (NP i) (@S (VP (VBP fail) (S (TO to) (VP (VB see) (SBAR (WHADVP how) (S (NP you) (VP (@VP (@VP (VP (VBP call) (NP (JJ copyleft) (NNS selfish))) (, ,)) (CC but)) (VP (VBP are) (ADJP (JJ fine) (PP (IN with) (NP (NP (DT the) (NN idea)) (PP (IN of) (NP (ADJP (RB totally) (JJ proprietary)) (NNS licenses))))))))))))) (. .)))
497186 (ROOT (@SQ (@SQ (@SQ (MD would) (RB n't)) (NP those)) (VP (@VP (@VP (VB be) (ADJP (RB even) (@ADJP (RBR more) (JJ selfish)))) (, ,)) (ADVP then))) (. ?))
460337 (ROOT (ADVP <url>) (@FRAG (: -) (@FRAG (SBAR (RB even) (@SBAR (IN if) (S (NP he) (VP (@VP (VBZ makes) (NP (RB only) (@NP (DT a) (@NP (JJ single) (@NP (JJ administrative) (NN action)))))) (PP (RB then) (S (NP his) (VP (VBG having) (S (NP (DT the) (NNS tools)) (VP (VBZ is) (NP (DT a) (@NP (JJ net) (NN positive)))))))))))) (. .))))
460337 (ROOT (: -) (@UCP (S (NP (DT a) (@NP (JJ single) (@NP (NN admin) (@NP (NN action) (NN >))))) (VP (VBP are) (ADJP (NP you) (JJ joking)))) (. ?)))
460337 (ROOT (@S (@S (S (NP he) (VP (VBZ gets) (S (TO to) (VP (@VP (@VP (VB see) (NP (PDT all) (@NP (DT the) (@NP (JJ deleted) (@NP (NNS data) (@NP (NN forever) (NN access))))))) (PP (TO to) (NP (DT the) (@NP (JJ extra) (NNS buttons))))) (ADVP forever))))) (CC and)) (S (NP you) (VP (@VP (VBP consider) (NP (DT a) (@NP (JJ single) (NN action)))) (PP (IN as) (NP (DT a) (@NP (JJ net) (NN positive))))))) (. ?))
630786 (ROOT (INTJ hi) (@S (, ,) (@S (VP matt) (. .))))
630786 (ROOT (S (@VP (VBP are) (RB n't)) (NP you)) (@S (VP (VBN supposed) (S (TO to) (VP (VB be) (VP banned)))) (. ?)))
622327 (ROOT (WHADVP how) (@SBARQ (SQ (@SQ (MD can) (NP you)) (VP (ADVP possibly) (@VP (VB know) (NP that)))) (. ?)))
622327 (ROOT (@SQ (@SQ (VBP have) (NP you)) (VP (@VP (VP (VBN tried) (S (TO to) (VP (VB find) (NP (JJ additional) (NN content))))) (CC and)) (VP (VBN failed) (S (TO to) (VP (VB find) (NP it)))))) (. ?))
621427 (ROOT (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP (@VP (@VP (VB think) (ADVP so)) (, ,)) (ADVP giano))) (. .)))
621427 (ROOT (@SQ (@SQ (@SQ (MD can) (NP we)) (ADVP (RB just) (RB once))) (VP (VB attempt) (S (TO to) (VP (@VP (VB let) (NP (DT this) (NN pass))) (PP (IN by) (PP (IN without) (S (VBG calling) (PP (IN for) (NP (NP (DT the) (NNS heads)) (PP (IN of) (NP people))))))))))) (. ?))
204288 (ROOT (NP you) (@S (VP (VBP seem) (S (TO to) (VP (VB have) (NP (NP (DT an) (NN agenda)) (PP (IN of) (S (VBG denying) (SBAR (IN that) (S (NP (NP some) (PP (IN of) (NP (DT the) (NNS ancients)))) (VP (VBD were) (ADJP pedophiles)))))))))) (. .)))
204288 (ROOT (WRB why) (. ?))
618988 (ROOT (SBAR (IN since) (S (NP you) (VP (@VP (VBP are) (ADVP still)) (VP (@VP (VP (RB not) (@VP (VBG responding) (PP (TO to) (NP (NP me) (PRN (-LRB- -LRB-) (@PRN (CC or) (@PRN (NP (NP (DT the) (NN talk)) (NP (NN page) (NN discussion))) (-RRB- -RRB-)))))))) (CC and)) (VP (VBG reverting) (ADVP anyway)))))) (@S (, ,) (@S (NP i) (@S (VP (VBP have) (VP (@VP (VBN mad) (NP you)) (NP (DT a) (@NP (JJ <url>) (NN template))))) (. .)))))
618988 (ROOT (VP (@VP (VP (VB post) (NP (NP that) (PP (IN on) (NP (PRP$ your) (NN page))))) (CC and)) (VP (@VP (@VP (@VP (VB leave) (NP (DT the) (@NP (JJ regular) (NN one)))) (ADVP alone)) (, ,)) (ADVP ok))) (. ?))
34876 (ROOT (NP you) (@S (VP (VBP 're) (VP joking)) (. ?)))
34876 (ROOT (NP (@NP (NNP <person>) (CC and)) (NNP <person>)) (@S (VP (VBP have) (NP (NP (DT no) (@NP (NN word) (NN play))) (PP (IN in) (NP (NP spite) (PP (IN of) (NP (DT the) (@NP (JJ same) (NN kanji)))))))) (. ?)))
397166 (ROOT (@SQ (@SQ (VBP do) (NP i)) (VP (@VP (VB get) (NP (DT a) (NN reference))) (PP (TO to) (NP (PRP$ my) (NN comment))))) (. ?))
397166 (ROOT (VP (@VP (VB show) (NP me)) (SBAR (WHADVP where) (S (NP i) (VP (VBP refuse) (S (TO to) (VP (VB provide) (NP (NP evidence) (VP (@VP (VBG backing) (PRT up)) (NP (PRP$ my) (NNS changes)))))))))) (. ?))
597829 (ROOT (VP (VB please) (VP (VB stop) (S (@VP (@VP (VBG mentioning) (NP (PRP$ my) (NN name))) (PP (IN in) (NP relation))) (PP (TO to) (NP fw))))) (. .))
597829 (ROOT (WHNP (WHADJP (WHADVP (ADVP <url>) (WRB how)) (JJ many)) (NNS times)) (@SBARQ (SQ (@SQ (VBP do) (NP i)) (VP (VB have) (S (TO to) (VP ask)))) (. ?)))
619612 (ROOT (WHADVP (ADVP now) (WRB why)) (@SBARQ (SQ (@SQ (MD would) (NP you)) (VP (VB do) (SBAR (IN that) (@SBAR (WHADVP when) (S (@S (S (NP he) (@S (ADVP specifically) (VP (VBD stated) (SBAR (IN that) (S (NP he) (VP (@VP (VBD did) (RB n't)) (VP (VB want) (S (TO to) (VP (VB discuss) (NP (NP (DT the) (NN matter)) (PP (IN for) (NP (CD 48) (NNS hours))))))))))))) (CC and)) (S (NP i) (@S (ADVP specifically) (VP (VBD stated) (SBAR (IN that) (S (NP people) (VP (MD should) (VP (VB come) (ADVP here))))))))))))) (. ?)))
619612 (ROOT (@SQ (@SQ (VBD did) (NP you)) (VP (RB not) (@VP (VB read) (NP (PRP$ his) (NN request))))) (. ?))
629653 (ROOT (-LRB- -LRB-) (@S (NP (@NP (NN constantine) (CC and)) (NN leo)) (@S (@S (VP (@VP (@VP (VBP are) (ADJP english)) (, ,)) (ADVP (RB not) (NP (CD latin) (NNS names)))) (. .)) (-RRB- -RRB-))))
629653 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP (@VP (@VP (VB answer) (NP (PRP$ my) (NN question))) (PP (IN about) (NP constantine))) (NP-TMP (DT the) (JJ great)))) (. ?)))
493465 (ROOT (ADVP (RB so) (SBAR (WHNP what) (S (ADVP exactly) (VP (VBD was) (NP (NP (DT the) (NN point)) (PP (IN in) (S (@VP (@VP (@VP (VBG moving) (`` `)) (NP (JJ birmingham) (@NP (JJ new) (@NP (NN street) (NN station))))) ('' ')) (PP (@PP (@PP (TO to) (`` `)) (NP (JJ birmingham) (@NP (JJ new) (@NP (NN street) (@NP (NN railway) (NN station)))))) ('' '))))))))) (@S (NP i) (@S (VP (@VP (VBP 've) (ADVP never)) (VP (VBN heard) (SBAR (NP it) (VP (@VP (VBD called) (NP that)) (PP (IN before) (S (VBG nor) (NP (NP (DT any) (JJ other)) (PP (IN of) (NP (DT the) (@NP (NN birmingham) (NNS stations))))))))))) (. .))))
493465 (ROOT (@SQ (@SQ (VBZ is) (NP there)) (NP (NP (DT any) (NN need)) (S (TO to) (VP (@VP (@VP (@VP (@VP (VB add) (`` `)) (NP railway)) ('' ')) (PP (TO to) (NP (NP (DT the) (NN title)) (PP (IN of) (NP (DT a) (NN station)))))) (SBAR (IN unless) (S (NP it) (VP (VBZ is) (VP (VBG being) (VP (VBN disambiguated) (PP (IN from) (NP (@NP (NP (DT a) (@NP (NN bus) (NN station))) (CC or)) (NP something)))))))))))) (. ?))
345899 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB mean) (SBAR (NP they) (VP (@VP (VBP are) (RB not)) (ADJP (VBN related) (PP (TO to) (NP (NP (DT the) (NN scope)) (PP (IN of) (NP <url>))))))))) (. ?)))
345899 (ROOT (PP (IN like) (WHNP (WDT which) (NNS articles))) (. ?))
619320 (ROOT (VP (@VP (VB do) (RB n't)) (VP (@VP (@VP (VP (@VP (@VP (VB talk) (PP (IN about) (NP me))) (, ,)) (PP (IN in) (NP (PRP$ my) (@NP (JJ virtual) (NN presence))))) (, ,)) (CC and)) (VP (VB tell) (S (NP (NN someone) (RB else)) (VP (TO to) (VP (VB ignore) (NP me))))))) (. .))
619320 (ROOT (@SQ (@SQ (VBP do) (NP you)) (VP (VB understand) (SBAR (WHADVP why) (S (NP (DT this) (NN behavior)) (VP (VBZ is) (ADJP inappropriate)))))) (. ?))
345103 (ROOT (WHADVP why) (@SBARQ (SQ (VBP tag) (PP (IN for) (NP deletion))) (. ?)))
345103 (ROOT (FRAG (NP it) (S (@VP (VBD was) (ADVP obviously)) (NP (NP (NP (DT a) (@NP (JJ new) (@NP (NN user) (POS 's)))) (NN attempt)) (PP (IN at) (S (VBG creating) (NP (DT a) (@NP (NN disambiguation) (NN page)))))))) (@FRAG (, ,) (FRAG (WHADVP why) (@FRAG (RB not) (@FRAG (VP (@VP (VB clean) (NP it)) (PRT up)) (. ?))))))
292636 (ROOT (CC and) (@S (, ,) (@S (INTJ no) (@S (, ,) (@S (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP (VB think) (SBAR (IN that) (S (NP (NP everyone) (SBAR (WHNP who) (S (VBD wrote) (SBAR (@S (@S (S (NP (DT a) (NN screenplay)) (VP (MD should) (VP (VB have) (NP (CD two) (NNS pages))))) (, ,)) (CC but)) (S (NP i) (VP do)))))) (VP (VBP think) (SBAR (IN that) (S (NP (NP (DT every) (NN artist)) (SBAR (WHNP who) (S (VBZ has) (NP (NP (DT a) (@NP (JJ substantial) (NN list))) (PP (IN of) (NP (NP works) (SBAR (WHNP which) (S (MD would) (VP (@VP (VB clutter) (PRT up)) (NP (PRP$ their) (@NP (NN biography) (NN page)))))))))))) (VP (MD should) (VP (VB have) (NP (CD two) (NNS pages))))))))))) (. .)))))))
292636 (ROOT (@SQ (@SQ (MD can) (NP you)) (VP (@VP (VB explain) (PP (TO to) (NP me))) (SBAR (WHADVP why) (S (NP (DT the) (@NP (JJ two-page) (NN thing))) (VP (@VP (VBZ is) (NP (PDT such) (@NP (DT a) (@NP (JJ big) (NN deal))))) (SBAR (WHADVP when) (S (NP wikipedia) (VP (@VP (VBZ is) (RB not)) (NP paper))))))))) (. ?))
73470 (ROOT (NP (DT the) (NN press)) (@S (VP (VBZ is) (VP (VBG calling) (S (NP you) (ADJP bisexual)))) (. .)))
73470 (ROOT (@SQ (@SQ (VBD did) (NP you)) (VP (VB know) (NP that))) (. ?))
619609 (ROOT (VP (VB please) (VP (VB explain) (SBAR (WHADVP how) (S (NP that) (VP (VBZ is) (NP (DT a) (@NP (JJ personal) (NN attack)))))))) (. ?))
619609 (ROOT (NP you) (@S (VP (VBP do) (SBAR (VP (VBP realise) (SBAR (IN that) (S (NP (NP someone) (VP (VBG critisizing) (NP (PRP$ your) (NNS actions)))) (VP (@VP (@VP (VBZ is) (RB not)) (NP (DT the) (JJ same))) (SBAR (IN as) (S (NP (DT a) (@NP (JJ personal) (NN attack))) (VP (VBP do) (RB n't)))))))) (NP you))) (. ?)))
630067 (ROOT (NP you) (@S (VP (@VP (VBD told) (NP me)) (SBAR (IN that) (S (NP you) (VP (@VP (MD could) (RB n't)) (VP (@VP (@VP (@VP (VB access) (NP (DT the) (NN page))) (PP (IN in) (NP question))) (, ,)) (SBAR (IN although) (S (NP i) (VP (@VP (VBD had) (ADVP recently)) (VP (@VP (VBN changed) (NP (DT the) (NN link))) (PP (TO to) (NP (PRP$ its) (@NP (JJ new) (NN location))))))))))))) (. .)))
630067 (ROOT (ADVP maybe) (@S (NP you) (@S (ADVP just) (@S (VP (@VP (VBD did) (RB n't)) (VP (VB bother) (S (TO to) (VP (@VP (VB check) (NP it)) (PRT out))))) (. ?)))))
289244 (ROOT (S (VBZ seems) (SBAR (IN like) (S (NP <url>) (VP (VBZ has) (VP conveniently))))) (@S (VP (VBD quit) (NP (NP (DT the) (NN wiki)) (PP (ADVP all) (@PP (IN of) (NP (DT a) (JJ sudden)))))) (. .)))
289244 (ROOT (SBAR (WHNP that) (S (@VP (VBD was) (RB n't)) (NP (NP one) (PP (IN of) (NP (PRP$ your) (NNS sockpuppets)))))) (@SBARQ (, ,) (@SBARQ (SQ (VBD was) (NP it)) (. ?))))
623560 (ROOT (NP i) (@S (VP (VBP see) (SBAR (NP you) (VP (@VP (@VP (VBD created) (NP (DT a) (@NP (JJ nonsense) (NN article)))) (NP-TMP yesterday)) (SBAR (IN because) (S (NP you) (VP (VBD were) (ADJP bored))))))) (. .)))
623560 (ROOT (WHADVP if) (@SBARQ (SQ (@SQ (SQ (NP i) (VP (VB unblock) (NP you))) (SQ (@SQ (MD will) (NP you)) (VP disrupt))) (FRAG more)) (. ?)))
485293 (ROOT (S blocked) (@S (, ,) (@S (VP templated) (. .))))
485293 (ROOT (ADVP next) (. ?))
629741 (ROOT (NP vandalism) (@S (VP (VBZ is) (VP (@VP (VBG putting) (NP (DT a) (@NP (JJ live) (@NP (NN afd) (NN template))))) (ADVP back))) (. ?)))
629741 (ROOT (NP you) (@S (VP (VBP 're) (NP (NP (DT a) (@NP (JJ smart) (NN one))) (SBAR (@VP (VBP ai) (RB n't)) (NP you)))) (. ?)))
104362 (ROOT (NP you) (@S (VP (VBP have) (VP (VBN been) (VP (@VP (VBG following) (NP me)) (PP (IN around) (NP (NP (DT all) (NN week)) (VP (VBG reverting) (NP (PRP$ my) (NNS edits)))))))) (. .)))
104362 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBD did) (NP i)) (VP (VB do) (PP (TO to) (NP you)))) (. ?)))
620088 (ROOT (VP denied) (. .))
620088 (ROOT (NP i) (@S (VP (@VP (@VP (VBP take) (NP it)) (ADVP then)) (SBAR (IN that) (S (NP you) (VP (@VP (VBP deny) (ADVP responsiblity)) (SBAR (IN for) (S (NP (NP (DT an) (NN account)) (PRN (-LRB- -LRB-) (@PRN (SBAR (WHNP which) (S (NP i) (VP (@VP (MD 'll) (RB not)) (VP (VB name) (ADVP here))))) (-RRB- -RRB-)))) (VP (VBD created) (SBAR (NP (RB just) (@NP (CD four) (NNS minutes))) (@SBAR (IN after) (S (NP you) (VP (VBD made) (S (NP that) (VP edit))))))))))))) (. ?)))
34089 (ROOT .)
34089 (ROOT (ADVP then) (@S (NP you) (@S (VP (VBP have) (S (TO to) (VP (ADVP (IN at) (JJS least)) (@VP (VB meet) (NP (PRP me) (JJ half-way)))))) (. .))))
34089 (ROOT (PP (IN for) (NP instance)) (@S (, ,) (@S (NP <url>) (@S (VP (@VP (VP (@VP (VBD described) (NP (DT the) (NN episode))) (PP (IN as) (S (@VP (VBG displaying) (NP (DT an) (@NP (JJ exhilarating) (NN flair)))) (PP (IN for) (NP (NP (JJ rapid) (NN change)) (PP (IN of) (NP (JJ comic) (NN gear)))))))) (CC and)) (VP (VBD made) (SBAR (@VP (VBD commented) (ADVP positively)) (PP (IN on) (NP (DT the) (NN scene)))))) (. .)))))
34089 (ROOT (@SQ (@SQ (MD can) (NP you)) (VP (@VP (VB see) (NP (DT the) (NN problem))) (ADVP here))) (. ?))
623659 (ROOT (S (VBG blocking) (NP (NP people) (SBAR (WHNP who) (S (VBP disagree) (PP (IN with) (NP (PRP$ your) (NNS edits))))))) (@S (VP (VBZ is) (NP (DT a) (@NP (ADJP (RB very) (JJ zionist)) (NN approach)))) (. .)))
623659 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP (@VP (VB try) (ADVP instead)) (S (TO to) (VP (VB justify) (SBAR (WHADVP why) (S (NP (PRP$ your) (NN material)) (VP (MD should) (VP (VB stay) (PP (IN in) (NP (DT the) (NN lead))))))))))) (. ?)))
483513 (ROOT (@S (@S (@S (S (INTJ hi) (@S (, ,) (@S (NP you) (VP (VBD stated) (SBAR (NP (DT the) (NN editor)) (VP (VBZ is) (ADJP inactive))))))) (, ,)) (S (ADVP yet) (@S (NP (DT the) (NN editor)) (VP (VBZ is) (VP (@VP (VP (@VP (VBG stalking) (NP me)) (PP (IN through) (NP (PRP$ my) (NNS contributions)))) (CC and)) (VP (VBG reverting) (NP (PRP$ my) (NNS entries)))))))) (CC and)) (S (NP (DT the) (NN editor)) (VP (@VP (@VP (VBD left) (NP (DT a) (NN message))) (PP (@PP (@PP (IN on) (NP (NP (DT the) (NN top)) (PP (IN of) (NP (PRP$ my) (@NP (NN talk) (NN page)))))) (, ,)) (ADVP so))) (SBAR (WHADVP why) (@SBARQ (SQ (@SQ (MD would) (NP you)) (VP (RB not) (@VP (VB block) (NP them)))) (. ?))))))
483513 (ROOT (NP you) (@S (VP (@VP (@VP (VBD did) (RB n't)) (ADVP even)) (VP (@VP (VB give) (NP them)) (NP (DT a) (NN warning)))) (. ?)))
509068 (ROOT (NP (NP (DT the) (NN text)) (PP (IN of) (NP (PRP$ your) (@NP (NN warning) (NN <url>))))) (@S (VP (VBD made) (SBAR (NP me) (VP smile))) (. .)))
509068 (ROOT (@SQ (@SQ (VBD did) (NP you)) (VP (ADVP really) (@VP (VB think) (SBAR (IN that) (S (@S (@S (S (SBAR (IN if) (S (NP china) (VP (VBD got) (NP (@NP (@NP (NP (NP (DT a) (@NP (JJ new) (@NP (JJ prime) (NN minister)))) (PP (RB as) (@PP (IN of) (NP today)))) (, ,)) (CC and)) (NP (NP (DT a) (@NP (JJ female) (NN one))) (PP (IN at) (NP that))))))) (@S (, ,) (@S (NP it) (VP (@VP (MD would) (RB n't)) (VP (VB be) (NP (NP all) (PP (IN over) (NP (DT the) (NN news))))))))) (, ,)) (CC and)) (S (NP (NP (DT the) (NN link)) (PP (TO to) (NP (DT this) (NN person)))) (VP (MD would) (VP (VB be) (ADJP red))))))))) (. ?))
620507 (ROOT (@S (@S (S (NP personal) (VP attacks)) (CC and)) (S (VBG refusing) (S (TO to) (VP (VB answer) (NP questions))))) (. .))
620507 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP hiding)) (. ?)))
623354 (ROOT (NP (NP (DT the) (@NP (NN deletion) (@NP (NN review) (NN page)))) (VP (VBN linked) (PP above))) (@S (VP (@VP (VBZ contains) (NP (PDT all) (@NP (DT the) (NNS instructions)))) (PP (IN for) (S (VBG requesting) (NP (DT a) (NN review))))) (. .)))
623354 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (RB not) (@VP (VB read) (NP (DT these) (NNS instructions))))) (. ?)))
507463 (ROOT (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP (VB understand) (SBAR (WHADVP how) (S (NP you) (VP (VBP find) (S (NP it) (ADJP (JJ appropriate) (S (TO to) (VP (@VP (VB talk) (PP (IN about) (NP (PRP$ your) (@NP (JJ illegal) (@NP (NN drug) (NN use)))))) (PP (IN on) (NP (PRP$ your) (@NP (NN user) (NN page))))))))))))) (. .)))
507463 (ROOT (SBAR also) (@SBARQ (, ,) (@SBARQ (WHADVP how) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB have) (NP (DT the) (@NP (NN right) (S (TO to) (VP (@VP (VB ban) (NP (NP (JJ other) (@NP (NNS people) (POS 's))) (NNS usernames))) (PP (IN with) (NP (NP (DT a) (NN name)) (PP (IN like) (NP bongwarrior)))))))))) (. ?)))))
346297 (ROOT (UH oh) (. ?))
346297 (ROOT (S (NP you) (VP (VBP know) (SBAR (NP (NN something) (NNS i)) (VP (VBP do) (RB n't))))) (@UCP (, ,) (@UCP (NP friday) (. ?))))
41323 (ROOT (@SQ (@SQ (VBD was) (NP (DT this) (@NP (JJ wholesale) (NN revert)))) (ADJP (RB really) (JJ necessary))) (. ?))
41323 (ROOT (NP <url>) (@S (VP (VBD did) (SBAR (NP (DT the) (NN edit)) (@S (ADVP completely) (VP (VBP fail) (S (TO to) (VP (VB improve) (NP (NP (DT the) (NN article)) (PP (IN in) (NP (DT any) (NN way)))))))))) (. ?)))
271167 (ROOT (NP this) (@S (VP (VBZ is) (VP irritating)) (. .)))
271167 (ROOT (WHNP (WDT what) (NN browser)) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP using)) (. ?)))
51606 (ROOT (NP (@NP (NNP <url>) (CC and)) (NNP <url>)) (@S (VP (VBP seem) (S (TO to) (VP (VB be) (NP (NP (CD two) (NNS articles)) (PP (IN on) (NP (DT the) (@NP (JJ same) (NN subject)))))))) (. .)))
51606 (ROOT (WHNP what) (@SBARQ (SQ (VBZ 's) (NP (NP (DT the) (NN point)) (PP (IN of) (S (VBG having) (NP (JJ separate) (NNS articles)))))) (. ?)))
619962 (ROOT (CC and) (@SBARQ (WHADVP (WRB why) (RB exactly)) (@SBARQ (SQ (@SQ (VBP am) (NP i)) (VP (VBG looking) (PP (IN at) (NP (PRP$ your) (NN monobook))))) (. ?))))
619962 (ROOT (CC and) (@SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (@VP (VB substitute) (NP (PRP$ your) (@NP (NN user) (NNS links)))) (PP (IN onto) (NP here)))) (. ?))))
226433 (ROOT (S (INTJ please) (VP (VB explain) (SBAR (WHADVP why) (S (NP you) (VP (VBP continue) (S (TO to) (VP (VB <url>) (NP (NP (NNP <url>) (NNP <url>)) (PP (IN over) (NP (DT the) (@NP (NN folk) (NN magic/christian)))))))))))) (@S (VP (@VP (@VP (VBD revivalist) (NP wording)) (PP (IN in) (NP (DT the) (NN lede)))) (PP (IN despite) (NP (NP (DT the) (@NP (JJ clear) (NN consensus))) (PP (IN against) (NP you))))) (. .)))
226433 (ROOT (NP you) (@S (VP (@VP (VBP have) (RB not)) (VP (@VP (VBN gained) (NP (NP (DT any) (@NP (JJ favorable) (NNS comments))) (PP (IN for) (NP (PRP$ your) (NN position))))) (PP (@PP (@PP (@PP (@PP (@PP (PP (IN in) (NP (NP (DT the) (NN rfc)) (PRN (-LRB- -LRB-) (@PRN (SBAR (WHNP which) (S (PP (IN in) (NP fact)) (VP (VBZ is) (PP (@PP (PP (IN about) (NP (NP (DT the) (NN treasure)) (VP (VBG seeking) (NP (NP sentence) (SBAR (NP you) (VP (VBP want) (S (TO to) (VP add)))))))) (CC and)) (PP (RB not) (@PP (IN about) (S (@VP (@VP (VBG rewording) (CC or)) (VBG removing)) (NP (DT the) (@NP (JJ existing) (NN sentence)))))))))) (-RRB- -RRB-))))) (, ,)) (RB so)) (PP (IN on) (SBAR (WHNP what) (S (NP basis) (VP (VBP do) (SBAR (NP you) (VP (VBP claim) (NP (NP preeminence) (PP (IN for) (NP (PRP$ your) (@NP (VBN preferred) (NN wording)))))))))))) (, ,)) (CC or)) (PP (IN for) (S (@VP (VBG removing) (NP (DT the) (NNS sentences))) (ADVP completely)))))) (. ?)))
627029 (ROOT (NP he) (@S (ADVP probably) (@S (VP (@VP (MD could) (RB n't)) (VP (VB understand) (NP (DT the) (@NP (JJ speedy) (NN notice))))) (. .))))
627029 (ROOT (FRAG (RB then) (ADVP again)) (@SBARQ (, ,) (@SBARQ (SBARQ (WHNP who) (SQ (VBZ knows) (SBAR (WHNP what) (S (@VP (VBZ goes) (PRT on)) (PP (IN in) (NP (NP (DT the) (NNS minds)) (PP (IN of) (NP n00bs)))))))) (. ?))))
620952 (ROOT (VP is) (NP (NNS <url>) (SBAR (WHNP what) (S (NP you) (VP (VBP 're) (VP (VBG referring) (S (TO to) (VP ??))))))))
620952 (ROOT (NP (NP (CD one) (@NP (NN autograph) (NN page))) (SBAR (IN that) (S (@S (S (NP he) (VP (VBN deleted) (ADVP (NP (RB almost) (@NP (CD five) (NNS months))) (RB ago)))) (CC and)) (S (NP you) (VP (@VP (VBP 're) (ADVP now)) (VP (@VP (VBG attacking) (NP him)) (SBAR (RB as) (@SBAR (IN if) (S (NP he) (VP (@VP (VBZ deleted) (NP (DT every) (@NP (JJ single) (@NP (NN autograph) (NN book))))) (ADVP ever))))))))))) (. ?))
128189 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (ADVP just) (@VP (VB do) (NP that)))) (. ?)))
128189 (ROOT (S (NP i) (VP (VBP am) (VP (VBG being) (ADJP serious)))) (@UCP (: -) (@UCP (SBAR (WHNP what) (S (NP business) (VP (VBD was) (NP (NP it) (PP (IN of) (NP (PRP$ yours) (RB exactly))))))) (. ?))))
132700 (ROOT (VP yeah) (. .))
132700 (ROOT (WHNP what) (@SBARQ (SQ (VBZ 's) (NP (NP (DT the) (NN point)) (PP (IN of) (S (@VP (@VP (VBG reverting) (NP them)) (ADVP again)) (SBAR (IN if) (S (NP they) (VP (MD 'll) (VP (VB be) (VP (@VP (VBN removed) (, ,)) (ADVP anyway)))))))))) (. ?)))
336645 (ROOT (NP (DT the) (NN image)) (@S (VP (@VP (VBZ is) (ADVP only)) (VP (VBN used) (PP (IN on) (NP (@NP (NP (CD one) (NN page)) (: -)) (NP (NP (DT the) (NN site)) (PP (IN of) (NP (DT the) (NN film)))))))) (. .)))
336645 (ROOT (@SBARQ (@SBARQ (SBARQ (WHNP what) (SQ (@SQ (VBZ is) (NP (DT the) (NN problem))) (ADVP here))) (, ,)) (CC and)) (SBARQ (WHADVP how) (@SBARQ (SQ (@SQ (VBZ does) (NP it)) (VP (VB violate) (NP (NN wikipedia) (NN policy)))) (. ?))))
100602 (ROOT (NP i) (@S (VP (VBP see) (SBAR (IN that) (S (NP you) (VP (VBP are) (VP (VBG becoming) (S (NP (DT a) (@NP (JJ little) (NN bit))) (ADJP paranoid))))))) (. .)))
100602 (ROOT (@SQ (@SQ (VBP do) (NP i)) (VP (VB need) (S (TO to) (VP (@VP (VB do) (NP (DT a) (@NP (NN check) (NN user)))) (PP (IN for) (NP you)))))) (. ?))
507189 (ROOT (VP (VBG deleting) (NP (NP (JJ val) (@NP (NN klassen) (POS 's))) (NN page))) (. .))
507189 (ROOT (NP (NP i) (VP (@VP (VBN redirected) (NP it)) (PP (TO to) (NP (NP (DT the) (@NP (NN creator) (POS 's))) (NN talkpage))))) (@S (, ,) (@S (VP (@VP (VBD was) (RB n't)) (ADJP (RB that) (JJ enough))) (. ?))))
170548 (ROOT (WHADVP (ADVP so) (WRB why)) (@SBARQ (SQ (@SQ (@SQ (VBD did) (RB n't)) (NP you)) (VP (ADVP just) (@VP (VB look) (PP (IN through) (NP (@NP (NP (DT the) (NN source)) (, ,)) (S (TO to) (VP (VB see) (SBAR (IN if) (S (NP there) (VP (@VP (VBD was) (NP (DT a) (NN number))) (ADVP there))))))))))) (. ?)))
170548 (ROOT (CC or) (@SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBD did) (RB n't)) (NP you)) (VP (ADVP simply) (@VP (VB ask) (NP (NP (DT the) (NN editor)) (PP (IN on) (NP (PRP$ their) (@NP (NN talk) (NN page)))))))) (. ?))))
625057 (ROOT (ADVP again) (@S (, ,) (@S (SBAR (WHADVP why) (S are)) (@S (NP you) (@S (ADVP simply) (@S (VP (VBD reverting) (UCP (@UCP (ADJP wholesale) (CC and)) (PP (IN without) (NP (DT any) (NN explanation))))) (. ?)))))))
625057 (ROOT (@SQ (@SQ (@SQ (MD would) (NP you)) (ADVP (RB rather) (NP (DT the) (NN article)))) (VP (@VP (@VP (@VP (VB be) (ADJP (IN out) (PP (IN of) (NP line)))) (PP (IN with) (NP (DT the) (@NP (@NP (NNS policies) (CC and)) (NNS guidelines))))) (, ,)) (PP (IN among) (NP (JJ other) (NNS problems))))) (. ?))
626628 (ROOT (S (NP i) (VP (@VP (VBD did) (RB n't)) (VP (VB see) (NP (PRP$ your) (@NP (JJ internal) (NN link)))))) (@S (, ,) (@S (NP i) (@S (VP (@VP (VBD put) (NP it)) (ADVP back)) (. .)))))
626628 (ROOT (S (VBG <url>) (SBAR (@VP (VBZ is) (RB n't)) (ADJP orphaned))) (@SBARQ (, ,) (@SBARQ (WHNP what) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG talking) (IN about))) (. ?)))))
359566 (ROOT (@SQ (@SQ (@SQ (VBZ does) (NP it)) (ADVP not)) (VP (@VP (@VP (VB take) (NP (RB just) (@QP (DT a) (@QP (NN bit) (JJR more))))) (PP (IN than) (NP someone))) (S (VBG saying) (S (NP they) (VP (VB own) (S (NP it) (VP (TO to) (VP (VB remove) (NP (DT a) (NN copyvio)))))))))) (. ?))
359566 (ROOT (NP (@NP (SBAR (@SBAR (SBAR (IN as) (S (MD can) (VP (VB be) (VP (@VP (VBN seen) (NP (JJ i) (NN post))) (PP (IN from) (NP canada)))))) (CC and)) (SBAR (WHNP what) (S (VBZ 's) (S (TO to) (VP (VB stop) (S (NP me) (VP (VBG claiming) (S (TO to) (VP (VB be) (ADJP <url>)))))))))) (CC and)) (NP (NP anything) (VP (VBN published) (PP (IN in) (NP (DT the) (NN <url>)))))) (@S (VP (MD can) (VP (VB be) (VP (@VP (VBN put) (PP (IN on) (NP wikipedia))) (PRN (-LRB- -LRB-) (@PRN (@PRN (CC or) (FRAG (NP (NP something) (ADJP (NP (DT a) (RB little)) (JJR more))) (ADJP sensible))) (-RRB- -RRB-)))))) (. ?)))
379301 (ROOT (PP (IN without) (S (VBG participating) (PP (IN in) (NP (NN talk) (@NP (NN page) (NN discussion)))))) (@S (, ,) (@S (NP you) (@S (VP (VBP have) (VP (@VP (@VP (VP (VBN deleted) (NP (JJ reliable) (NNS sources))) (, ,)) (CC and)) (VP (@VP (VBN rewritten) (NP (DT a) (NN sentence))) (SBAR (RB so) (@SBAR (IN that) (S (NP it) (VP (VBZ is) (VP (@VP (VBN supported) (PP (IN by) (NP (DT no) (NNS sources)))) (PP (IN at) (NP (NP all) (PP (IN except) (NP (PRP$ your) (@NP (JJ personal) (NN opinion)))))))))))))) (. .)))))
379301 (ROOT (NP <url>) (@S (VP (VBP am) (VP (@VP (VBG i) (NP (JJ missing) (NN something))) (ADVP here))) (. ?)))
323159 (ROOT (SBAR (IN if) (S (NP people) (VP (VBP want) (S (TO to) (VP (@VP (VB know) (NP more)) (PP (IN about) (NP her))))))) (@S (, ,) (@S (NP there) (@S (VP (VBZ 's) (NP (NP (DT the) (NN article)) (PP (IN on) (NP her)))) (. .)))))
323159 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (ADVP really) (@VP (VBG meaning) (S (TO to) (VP (VB argue) (SBAR (IN that) (S (NP people) (VP (@VP (@VP (MD could) (RB not)) (ADVP fully)) (VP (@VP (VB understand) (NP (NP (DT the) (NN concept)) (PP (IN of) (NP imagism)))) (PP (IN without) (S (VBG seeing) (NP (NP (DT a) (NN picture)) (PP (IN of) (NP hd)))))))))))))) (. ?))
80498 (ROOT (CC and) (@S (ADVP personally) (@S (NP i) (@S (VP (@VP (VBP 'm) (RB not)) (VP (VBG gon) (S (TO na) (VP (VB apologize) (PP (IN for) (NP <url>)))))) (. .)))))
80498 (ROOT (S (NP (NP (RB quite) (@NP (DT a) (NN bit))) (ADJP (JJ different) (PP (IN than) (NP (DT a) (@NP (JJ holocaust) (NN denier)))))) (VP (VBP like) (S nordling))) (@SQ (, ,) (@SQ (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP think)) (. ?))))
185432 (ROOT (ADVP anyway) (@S (, ,) (@S (NP (DT the) (NN point)) (@S (VP (VBZ is) (SBAR (IN that) (S (NP (DT the) (NN bot)) (VP (VBZ is) (NP (NP editing) (PP (IN against) (NP <url>))))))) (. .)))))
185432 (ROOT (@SQ (@SQ (MD can) (NP you)) (VP (VB let) (S (NP me) (VP (VB know) (SBAR (@SBAR (SBAR (IN whether) (S (NP you) (VP (VBP intend) (S (TO to) (VP continue))))) (CC or)) (SBAR (IN whether) (S (NP we) (VP (MD can) (VP (VB agree) (SBAR (IN that) (S (NP you) (VP (MD 'll) (VP (VB stop) (S (VBG using) (S (NP it) (VP (TO to) (VP (VB do) (NP this)))))))))))))))))) (. ?))
559607 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (VB delete) (VP (@VP (VB see) (ADVP also)) (NP (NP section) (PP (IN in) (NP (NN puerto) (NN rico))))))) (. ?)))
559607 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (VB delete) (NP (DT the) (@NP (JJ political) (NNS parties))))) (. ?)))
263642 (ROOT (VP (@VP (VB ridding) (NP (DT the) (NN project))) (PP (IN from) (NP (@NP (NP (NN copyvio) (NNS images)) (, ,)) (SBAR (WHNP which) (S (MD could) (VP (@VP (VP (VB result) (PP (IN in) (NP (JJ expensive) (@NP (JJ legal) (NNS battles))))) (CC and)) (VP (@VP (VB put) (NP (DT the) (@NP (JJ whole) (NN project)))) (PP (IN at) (NP risk))))))))) (. ?))
263642 (ROOT (NP you) (@S (VP (VBP think) (SBAR (IN that) (S (NP we) (VP (MD should) (VP (VB risk) (S (@VP (VBG putting) (NP (NP (DT the) (NN work)) (PP (IN of) (NP (NP thousands) (PP (IN of) (NP editors)))))) (PP (TO to) (NP (NP risk) (PP (RB because) (@PP (IN of) (NP (DT some) (NN image)))))))))))) (. ?)))
272658 (ROOT (WHNP what) (@SBARQ (SQ (VBP are) (NP they)) (. ?)))
272658 (ROOT (WHADVP where) (@SBARQ (SQ (@SQ (VBD did) (NP (DT that) (@NP (JJ offensive) (NN photo)))) (VP (VB come) (PP from))) (. ?)))
440690 (ROOT (S malbrain) (@S (, ,) (@S (NP i) (@S (VP (@VP (MD ca) (RB n't)) (VP (@VP (@VP (VB understand) (NP you)) (, ,)) (PP (PP (@PP (IN in) (CC either)) (NP (PRP$ your) (NNS comments))) (PP (TO to) (NP (DT the) (@NP (NN talk) (NN page))))))) (. .)))))
440690 (ROOT (S (VBZ is) (NP (NP (DT the) (NNS criteria)) (VP (VBG being) (VP (VBN used) (PP (IN by) (NP (NP user) (VP (VBG whosasking) (S (TO to) (VP make))))))))) (@S (VP (VBZ reverts) (PP (IN of) (NP (PRP$ my) (NNS edits)))) (. .)))
440690 (ROOT (WHADVP (ADVP since) (WRB when)) (@SBARQ (SQ (@SQ (VBZ does) (NP (DT any) (@NP (NN one) (NN editor)))) (VP (VB have) (S (TO to) (VP (VB understand) (NP (NP (PDT all) (@NP (DT the) (NN material))) (PP (IN of) (NP (NP (DT a) (NN subject)) (VP (VBN known) (PP (IN by) (NP (DT the) (@NP (JJ other) (NNS editors)))))))))))) (. ?)))
619724 (ROOT (VP (VB compare) (NP (DT the) (CD two))) (. .))
619724 (ROOT (WHADVP how) (@SBARQ (SQ (VBZ is) (NP (NP (DT the) (JJ first)) (PP (IN in) (ADJP (ADJP (ADVP anyway) (JJ superior)) (PP (TO to) (NP (DT the) (NN second))))))) (. ?)))
4747 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (@VP (VB remove) (NP (PRP$ my) (NN comment))) (PP (IN from) (NP (PRP$ your) (NN page))))) (. ?)))
4747 (ROOT (WHNP what) (@SBARQ (SQ (VBD was) (NP (NP (DT the) (NN reason)) (PP (IN for) (NP that)))) (. ?)))
262902 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP have) (RB n't)) (NP you)) (VP (@VP (VB submitted) (NP (DT the) (NN diet))) (PP (TO to) (NP ga)))) (. ?)))
262902 (ROOT (CC and) (@SBARQ (WHADVP when) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG going) (PP (IN for) (NP fac)))) (. ?))))
458737 (ROOT (ADVP well) (@PRN (, ,) (SBAR (IN if) (S (NP it) (VP (@VP (@VP (VBZ is) (RB n't)) (NP ours)) (S (TO to) (VP (@VP (VB feature) (, ,)) (SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (VBZ is) (NP it)) (VP (VBN ours) (S (TO to) (VP use)))) (. ?))))))))))
458737 (ROOT (@SQ (@SQ (VBP do) (NP you)) (VP (VB mean) (S (TO to) (VP (VB say) (SBAR (IN that) (S (, ,) (@S (PP (IN for) (NP you)) (@S (, ,) (@S (NP (DT the) (@NP (RBS best) (@NP (JJ possible) (NN encyclopedia)))) (VP (@VP (MD would) (RB not)) (VP (@VP (VB use) (NP images)) (PP (IN from) (NP (@NP (NP (JJ outside) (NNS sources)) (, ,)) (NP (NP (DT no) (NN matter)) (NP (PRP$ their) (NN license)))))))))))))))) (. ?))
626647 (ROOT (ADVP cw) (@S (, ,) (@S (NP you) (@S (VP (VBP are) (ADJP (JJ aware) (SBAR (IN that) (S (NP lebanon) (VP (@VP (@VP (@VP (VBZ is) (RB n't)) (ADJP hezbollah)) (, ,)) (ADVP right)))))) (. ?)))))
626647 (ROOT (PP (IN in) (NP (DT the) (@NP (JJ same) (NN way)))) (@S (NP (DT that) (NN ireland)) (@S (VP (@VP (VBZ is) (RB n't)) (NP (DT the) (NN ira))) (. ?))))
131626 (ROOT (@S (@S (S (SBAR (IN if) (S (NP you) (VP (VBP have) (NP (NN something) (S (TO to) (VP (VB say) (PP (IN for) (S (VBG keeping) (NP (DT that) (NN picture)))))))))) (@S (, ,) (VP (@VP (VB say) (NP it)) (ADVP here)))) (CC and)) (S (NP i) (VP (MD 'll) (VP (@VP (@VP (VB copy) (NP it)) (PRT over)) (PP (TO to) (NP (DT the) (@NP (NN ffd) (NN page)))))))) (. .))
131626 (ROOT (CC but) (@S (, ,) (@S (ADVP frankly) (@S (, ,) (@S (SBAR (IN if) (S (NP you) (VP (@VP (@VP (MD ca) (RB n't)) (ADVP even)) (VP (VB be) (VP (VBN bothered) (S (TO to) (VP (@VP (@VP (VB check) (PRT out)) (NP (DT the) (@NP (JJ <url>) (NNS rules)))) (S (TO to) (VP (@VP (VB find) (PRT out)) (PP (IN about) (SBAR (WHADVP why) (S (NP (DT the) (@NP (NN zguri) (NN image))) (VP (@VP (@VP (@VP (VBZ is) (RB n't)) (ADJP acceptable)) (, ,)) (SBAR (WHADVP how) (S do))))))))))))))) (@S (NP you) (@S (VP (VBP expect) (S (TO to) (VP (VB be) (ADJP (JJ able) (S (TO to) (VP (@VP (VB make) (NP (DT any) (@NP (JJ relevant) (NN argument)))) (PP (IN about) (NP (DT the) (@NP (JJ other) (NN one)))))))))) (. ?))))))))
627373 (ROOT (S (CC and) (S (NP dab) (VP (VBZ uses) (NP (DT a) (@NP (RB very) (@NP (JJ foul) (NN language))))))) (@S (, ,) (@S (ADVP persistently) (@S (, ,) (@S (VP (VBZ is) (ADJP (RB that) (JJ right))) (. ?))))))
627373 (ROOT (@SQ (@SQ (VBD did) (NP i)) (VP (ADVP not) (@VP (@VP (VB talk) (PP (TO to) (NP you))) (PP (IN about) (NP (NP that) (ADVP already)))))) (. ?))
457783 (ROOT (NP ps) (@X (: -) (@X (VP (VBN surprised) (SBAR (NP you) (VP (@VP (VBD did) (RB n't)) (VP (VB make) (NP (NP (DT the) (NN annoucement)) (PP (IN in) (NP (PRP$ your) (NN blog)))))))) (. .))))
457783 (ROOT (VP (VBG trying) (S (TO to) (VP (VB fool) (NP (NP (PRP$ your) (NNS hordes)) (PP (IN of) (NP (JJ devoted) (NNS readers))))))) (. ?))
623841 (ROOT (S (RB then) (VP (VBG maybe) (SBAR (NP admins) (VP (MD should) (VP (@VP (VP (VB focus) (PP (IN on) (NP (NN copyright) (NNS infringements)))) (CC and)) (VP (VB avoid) (NP (DT the) (NN leader/educator/cop)))))))) (@FRAG (: /) (@FRAG (NP (NP (NN parliamentarian) (NNS roles)) (SBAR (IN that) (S (NP they) (VP (VBP cherish) (ADVP (RB so) (RB much)))))) (. .))))
623841 (ROOT (@SQ (@SQ (MD could) (NP (CD 1000) (NNS admins))) (VP (VB handle) (NP this))) (. ?))
621291 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB ask) (S (NP me) (NP (NP questions) (SBAR (WHPP (TO to) (WHNP which)) (S (NP you) (@S (ADVP already) (VP (VBP know) (NP (DT the) (NNS answers)))))))))) (. ?)))
621291 (ROOT (@SQ (@SQ (VBZ is) (NP it)) (NP (DT a) (@NP (JJ rhetorical) (NN device)))) (. ?))
476702 (ROOT (ADVP further) (@S (: :) (@S (NP it) (@S (VP (@VP (VBZ seems) (PP (TO to) (NP me))) (SBAR (IN that) (S (NP <url>) (VP (VBD was) (NP (DT a) (@NP (ADJP (RB perfectly) (JJ reasonable)) (@NP (NN dab) (NN page)))))))) (. .)))))
476702 (ROOT (NP i) (@S (VP (VBP wonder) (SBAR (WHADVP why) (S (NP you) (VP (VBD needed) (S (TO to) (VP (VB change) (NP it))))))) (. ?)))
283318 (ROOT (NP (NNP jeez) (@NP (, ,) (@NP (NNP joe) (@NP (, ,) (@NP (CC and) (NNP i)))))) (@S (VP (VBD was) (VP (VBG going) (S (TO to) (VP (VB suggest) (S (NP you) (VP (@VP (VB hang) (PP (IN around) (NP (NNP andrea) (POS 's)))) (S (TO to) (VP (@VP (VB make) (ADJP (JJ sure) (SBAR (NP he) (VP (@VP (VBZ does) (RB n't)) (VP (VB do) (NP himself)))))) (NP (DT a) (NN disservice)))))))))) (. .)))
283318 (ROOT (WHNP what) (@SBARQ (SQ (VBZ is) (NP this)) (. ?)))
283318 (ROOT (S (VBG getting) (VP blocked)) (@S (VP (VBZ is) (NP (DT the) (@NP (JJ new) (NN cool)))) (. ?)))
622208 (ROOT (ADVP also) (@SINV (, ,) (@SINV (VP (VBZ is) (ADJP <url>)) (NP (@NP (NP (RB about) (NN chemistry)) (, ,)) (NP (@NP (@NP (@NP (@NP (@NP (@NP (NP sociology) (, ,)) (NP theology)) (, ,)) (NP (JJ international) (NN law))) (, ,)) (CC or)) (NP (WP what) (NN ??)))))))
622208 (ROOT (NP i) (@S (VP (@VP (@VP (VP (@VP (VBP know) (NP (DT the) (NN answer))) (PP (TO to) (NP (DT that) (NN question)))) (, ,)) (CC but)) (VP (VBZ does) (NP (NP (DT the) (@NP (NN person) (NN reading))) (SBAR (NP (DT the) (NN article)) (VP know))))) (. ?)))
626929 (ROOT (NP you) (@S (ADVP also) (@S (VP (VBP say) (SBAR (IN that) (S (NP i) (VP (VBP am) (VP (VBG participating) (PP (IN in) (NP (DT a) (@NP (JJ high-tech) (NN lynching))))))))) (. .))))
626929 (ROOT (@SQ (@SQ (@SQ (VBZ is) (RB n't)) (NP that)) (NP (NP what) (SBAR (NP you) (VP (VBD did) (SBAR (WHADVP when) (S (NP you) (VP (@VP (VBD put) (NP samuraiclinton)) (PP (IN on) (NP rfa))))))))) (. ?))
208612 (ROOT (IN so) (@S (ADVP (NP (RB nearly) (@NP (DT a) (NN year))) (RB later)) (@S (NP you) (@S (VP (@VP (VBP change) (NP it)) (ADVP (DT all) (RB again))) (. .)))))
208612 (ROOT (WRB why) (. ?))
619775 (ROOT (VP wait) (. .))
619775 (ROOT (SBAR (IN unless) (S (NP you) (VP (VBP need) (SBAR (NP it) (VP (@VP (VP repaired) (CC and)) (VP (VBD updated) (ADVP quickly))))))) (. ?))
389087 (ROOT (VP (@VP (VB do) (RB n't)) (VP (@VP (@VP (VB push) (NP it)) (, ,)) (ADVP zachary))) (. .))
389087 (ROOT (@SQ (@SQ (MD can) (NP you)) (VP (@VP (VB give) (NP me)) (NP (NP proof) (PP (IN of) (NP (NP (DT the) (NN existence)) (PP (IN of) (NP (NP musicmaximum) (ADJP (JJ hot) (NP-TMP 100))))))))) (. ?))
619683 (ROOT (ADVP wow) (@S (, ,) (@S (NP you) (@S (VP (@VP (@VP (VBP have) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP gall)))) (, ,)) (PP (VBN given) (SBAR (NP you) (VP (@VP (@VP (VBD removed) (NP (DT the) (@NP (JJ west) (@NP (NN wing) (NN discussion))))) (PP (IN from) (NP (PRP$ your) (@NP (NN talk) (NN page))))) (PP (IN with) (NP (DT the) (@NP (JJ edit) (@NP (NN summary) (@NP (NN archiving) (NN crap)))))))))) (. .)))))
619683 (ROOT (SBAR (ADVP perhaps) (@SBAR (IN if) (S (NP (PRP$ your) (NN going)) (VP (TO to) (VP (@VP (VB make) (NP (JJ unnecessary) (NNS comments))) (PP (IN on) (NP (NP (NNS people) (POS 's)) (@NP (NN talk) (NNS pages))))))))) (@S (, ,) (@S (NP you) (@S (VP (MD should) (VP (@VP (VB hold) (NP yourself)) (PP (TO to) (NP (DT the) (@NP (JJ same) (NN standard)))))) (. ?)))))
626742 (ROOT (CC but) (@S (NP you) (@S (VP (VBP 're) (NP (NP (DT the) (NN one)) (VP (@VP (VBG branding) (NP (PRP$ his) (NN work))) (PP (IN as) (ADJP anti-semitic))))) (. !))))
626742 (ROOT (VP (VB see) (SBAR (WHNP what) (S (NP i) (VP (VBP mean) (PP (IN about) (NP (JJ bad) (NN faith))))))) (. ?))
159429 (ROOT (WHNP what) (@SBARQ (SQ (VBZ is) (NP (NP (ADJP (JJ unreliable) (PP (IN about) (NP (DT the) (@NP (NN newspaper) (NN article))))) (NNS reports)) (PP (IN about) (NP (NP (DT the) (NNS protests)) (PP (IN in) (NP (JJ meliti) (@NP (, ,) (@NP (@NP (NNS lofi) (, ,)) (FW etc))))))))) (. ?)))
159429 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (VBG alleging) (SBAR (IN that) (S (NP (NP (DT the) (NNS protests)) (PP (IN against) (NP (DT the) (@NP (NN greek) (NN military))))) (VP (@VP (VBD did) (RB not)) (VP occur)))))) (. ?))
184396 (ROOT (NP ok) (@S (, ,) (@S (ADVP now) (@S (NP i) (@S (VP (VBP see) (NP (DT the) (NN <url>))) (. .))))))
184396 (ROOT (@SQ (@SQ (@SQ (MD would) (RB n't)) (NP it)) (VP (VB have) (VP (@VP (VBN been) (ADJP better)) (S (@VP (TO to) (ADVP just)) (VP (VB say) (VP (@VP (@VP (VB see) (NP talk)) (PP (IN in) (NP (DT the) (@NP (JJ edit) (NN summary))))) (SBAR (RB so) (@SBAR (IN that) (S (NP editors) (VP (@VP (VBP do) (RB n't)) (VP (VB think) (SBAR (IN that) (S (NP you) (@S (ADVP just) (VP (@VP (VBD moved) (NP it)) (PP (IN on) (NP (DT a) (@NP (JJ childish) (NN whim))))))))))))))))))) (. ?))
626728 (ROOT (PP (RB instead) (@PP (IN of) (NP (DT another) (NNS 3o)))) (@SBARQ (, ,) (@SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP (VB put) (PP (IN in) (NP (DT a) (NN <url>))))) (. .)))))
626728 (ROOT (@S (S (ADVP (CC and) (RB no)) (@S (, ,) (@S (NP it) (VP (@VP (VBZ 's) (RB not)) (NP (DT a) (NN threat)))))) (: -)) (S (NP it) (VP (VBZ 's) (NP (@NP (NP (DT an) (NN observation)) (: -)) (SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP <url>)) (. ?)))))))
227097 (ROOT (NP it) (@S (VP (@VP (VBZ 's) (RB not)) (ADJP (JJ bowdlerism) (S (TO to) (VP (VB delete) (NP (NP (JJ nonsensical) (NNS trivia)) (SBAR (WHPP (IN about) (WHNP which)) (S (NP (NP movies) (NP (DT an) (NN actress))) (VP (VBZ appears) (ADJP (JJ nude) (PP in)))))))))) (. .)))
227097 (ROOT (@SQ (@SQ (MD should) (NP we)) (VP (VB indicate) (SBAR (WHNP (WP what) (NN color)) (S (NP (PRP$ her) (NN hair)) (VP (VBZ is) (PP (IN in) (NP (DT those) (NNS movies)))))))) (. ?))
13951 (ROOT (NP you) (@S (VP (@VP (MD should) (ADVP really)) (VP (@VP (VB use) (NP (JJ edit) (NNS summaries))) (S (TO to) (VP (VB justify) (NP (PRP$ your) (NNS edits)))))) (. .)))
13951 (ROOT (VP explain) (. ?))
273534 (ROOT (VP (@VP (VBD stole) (NP (NN ur) (NN flag))) (PP (IN for) (NP (PRP$ my) (NN page)))) (. .))
273534 (ROOT (WHNP that) (@SBARQ (SQ ok) (. ?)))
549635 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG putting) (NP (NP (NNP <nowiki>) (@NP (NNP <person>) (NNP </nowiki>))) (PP (IN on) (NP (NP (JJ several) (NNS pages)) (VP (VBN related) (PP (IN with) (NP yu-musicians)))))))) (. ?)))
549635 (ROOT (ADVP imo) (@S (NP this) (@S (VP (VBZ is) (NP (@NP (@NP (NP (DT a) (@NP (ADJP (RB pretty) (JJ <strike>)) (NN stup))) (VP (@VP (VBN </strike>) (NP (JJ meaningless) (NN stub))) (S (TO to) (VP have)))) (: ;)) (SBAR (WHADVP (WRB why) (RB not)) (S (NP (NNP <nowiki>) (NNP <person>)) (VP (VBZ </nowiki>) (ADVP instead)))))) (. ?))))
621235 (ROOT (@NP (NP (NP (QP (CD 4.5) (CD million)) (NNS hits)) (PP (IN on) (NP google))) (VP (@VP (VBG turning) (PRT up)) (NP (DT the) (@NP (JJ non-columbia) (NNS campuses))))) (. .))
621235 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG talking) (IN about))) (. ?)))
630774 (ROOT (NP you) (VP (VBP seem) (S (TO to) (VP (VB have) (S (NP (NP plenty) (PP (IN of) (NP time))) (VP (TO to) (VP (@VP (VB discuss) (, ,)) (SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP (VB try) (S (TO to) (VP (VB educate) (NP <url>))))) (. ?))))))))))
630774 (ROOT (ADVP maybe) (@S (NP he) (@S (VP (@VP (VBZ needs) (ADVP (DT this) (RBR more))) (PP (IN than) (NP me))) (. ?))))
265163 (ROOT (ADVP well) (@S (, ,) (@S (NP i) (@S (ADVP fully) (@S (VP (VBP agree) (SBAR (@SBAR (@SBAR (SBAR (IN with) (S (NP (DT the) (@NP (CD three) (@NP (NNS rationales) (NNS lumos)))) (VP (VBZ has) (VP (VBN given) (PP above))))) (: ;)) (CC and)) (SBAR (IN so) (S (ADVP evidently) (VP (VBP do) (SBAR (NP (QP (RB about) (PDT half)) (@NP (NP (DT the) (NNS wikipedians)) (SBAR (WHNP who) (S (VBP have) (VP (VBN contributed) (PP (TO to) (NP (DT the) (@NP (NN rfc) (NNS lumos))))))))) (VP (VBZ has) (VP cited)))))))) (. .))))))
265163 (ROOT (SBAR (IN if) (S (NP (RB so) (JJ many)) (VP (@VP (VP (VBP think) (SBAR (IN that) (S (NP (JJ such) (NNS links)) (VP (MD can) (VP (VB be) (ADJP useful)))))) (CC and)) (VP appreciated)))) (@SBARQ (, ,) (@SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (VBZ does) (NP it)) (VP (@VP (@VP (VB matter) (ADVP (RB so) (RB much))) (PP (TO to) (NP you))) (SBAR (IN that) (S (NP they) (VP (MD should) (VP (VB be) (VP eradicated))))))) (. ?)))))
115432 (ROOT (NP ok) (@S (VP done) (. .)))
115432 (ROOT (WHADVP when) (@SBARQ (SQ (@SQ (VBP do) (NP i)) (VP (VB get) (NP (PRP$ my) (NN money)))) (. ?)))
618803 (ROOT (NP (PRP$ your) (NN resolution)) (@S (VP (VBD was) (S (TO to) (VP (@VP (@VP (VB move) (NP it)) (ADVP (RB back) (PP (TO to) (NP (NN detective) (@NP (NN terry) (NN crowley)))))) (ADVP again)))) (. ?)))
618803 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB keep) (S (VBG doing) (NP that)))) (. ?)))
624477 (ROOT (VP hmm) (. .))
624477 (ROOT (NP you) (@S (VP (VBP do) (SBAR (@SBAR (@SBAR (SBAR (VBP realize) (SBAR (IN that) (S (NP (NP two) (PP (IN of) (NP (DT the) (@NP (JJ please) (@NP (NN sign) (NNS diffs)))))) (VP (VBP are) (PP (IN from) (NP <url>)))))) (, ,)) (CC and)) (SBAR (IN that) (S (NP (DT the) (@NP (NN talk) (NN page))) (VP (VBZ is) (ADJP (JJ splashed) (PP (IN with) (NP (NP <person>) (SBAR (WHNP which) (S (VBZ has) (NP (DT the) (@NP (NN sig) (NN thingy))))))))))))) (. ?)))
622646 (ROOT (NP please) (@S (VP (@VP (VBP do) (RB n't)) (VP (VB talk) (PP (IN like) (NP (DT a) (NN robot))))) (. .)))
622646 (ROOT (WHNP (WDT what) (NN harm)) (@SBARQ (SQ (@SQ (VBD did) (NP it)) (VP do)) (. ?)))
619135 (ROOT (@S (@S (@S (S (NP i) (@S (ADVP hardly) (VP (ADVP ever) (@VP (VBP agree) (PP (IN with) (NP jimintheatl)))))) (, ,)) (CC but)) (S (NP (DT that) (NN block)) (VP (VBD was) (VP (VBG bordering) (PP (IN on) (ADJP absurd)))))) (. .))
619135 (ROOT (ADVP (RB fast) (PP (IN on) (NP (DT the) (NN button)))) (@FRAG (NP much) (. ?)))
23281 (ROOT (PP (TO to) (NP arbcom)) (. ?))
23281 (ROOT (VP (@VP (@VP (VBP are) (RB n't)) (NP we)) (S (VBG being) (ADJP (@ADJP (ADJP (NP (DT a) (RB bit)) (JJ dramatic)) (ADVP here)) (SBAR (WHADVP when) (S (NP (NP (JJ other) (NNS forms)) (PP (IN of) (NP (NN dispute) (NN resolution)))) (VP (@VP (VBP have) (RB not)) (VP (VBN been) (VP tried)))))))) (. ?))
202035 (ROOT (VP (VB let) (S (NP me) (VP (VB ask) (S (NP you) (NP this))))) (. .))
202035 (ROOT (@S (@S (S (VBG assuming) (S (NP we) (VP (@VP (VB take) (NP it)) (SBAR (IN that) (S (NP (DT the) (NN player)) (VP (MD might) (VP (VB have) (VP (VBN chosen) (NP (DT any) (@NP (NN door) (S (TO to) (VP (VB start) (PP with))))))))))))) (CC and)) (S (NP (DT the) (NN host)) (VP (MD may) (VP (VB have) (VP (@VP (@VP (VBN opened) (NP (DT any) (@NP (JJ unchosen) (@NP (JJ goat-hiding) (NN door))))) (, ,)) (SBAR (WHADVP why) (S (VBP do) (SBAR (NP you) (@S (RB not) (VP (VBP insist) (SBAR (IN that) (S (NP (DT the) (@NP (JJ starting) (@NP (NN sample) (NN space)))) (VP (MD must) (VP (VB include) (NP (PDT all) (@NP (DT the) (@NP (JJ possible) (@NP (NN door) (NNS combinations))))))))))))))))))) (. ?))
620697 (ROOT (NP you) (@S (VP (@VP (VBP 're) (ADVP still)) (VP (VBG missing) (NP (DT the) (NN point)))) (. .)))
620697 (ROOT (WHADVP how) (@SBARQ (SQ (@SQ (VBP do) (NP (DT the) (@NP (CD two) (NNS sites)))) (VP (VB meet) (NP <url>))) (. ?)))
411440 (ROOT (NP thanks) (@FRAG (, ,) (@FRAG (CC but) (@FRAG (S (NP i) (VP (@VP (VBP 've) (ADVP already)) (VP (VBN read) (NP (DT those) (NNS essays))))) (. .)))))
411440 (ROOT (@SQ (@SQ (VBD did) (NP you)) (VP (@VP (VB have) (NP anything)) (S (TO to) (VP (@VP (@VP (VB say) (NP yourself)) (, ,)) (ADVP personally))))) (. ?))
551502 (ROOT (VP umm) (. .))
551502 (ROOT (@SQ (@SQ (@SQ (VBZ is) (RB n't)) (NP (DT the) (@NP (JJ template) (NN page)))) (ADJP (NP itself) (JJ semi-protected))) (. ?))
551502 (ROOT (SBAR (IN if) (SBAR so)) (@SBARQ (, ,) (@SBARQ (SQ (@SQ (VP (ADVP then) (VP (MD should) (RB n't))) (NP it)) (VP (VB be) (PP (IN in) (NP (DT the) (NN category))))) (. ?))))
628701 (ROOT (@S (@S (@S (S (NP i) (VP (@VP (VBP 'm) (ADVP usually)) (ADJP polite))) (, ,)) (CC but)) (S (NP (DT this) (NN one)) (VP (VBD seemed) (S (TO to) (VP (@VP (VB need) (NP (DT a) (NN slap))) (PP (IN across) (NP (DT the) (NN face)))))))) (. .))
628701 (ROOT (NP it) (@S (VP 's) (. .)))
628701 (ROOT (NP words) (@S (VP (VB escape) (NP me)) (. .)))
628701 (ROOT (VP mindboggling) (. .))
628701 (ROOT (NN jaw-dropping) (. .))
628701 (ROOT ?)
625993 (ROOT (UH bingo) (. !))
625993 (ROOT (SBAR (IN since) (S (NP you) (VP (VBP 've) (VP (VBN seen) (NP (DT the) (NN light)))))) (@SBARQ (, ,) (@SBARQ (WHADVP now) (@SBARQ (SQ (@SQ (MD will) (NP you)) (VP (VB stop) (S (VBG trying) (S (TO to) (VP (VB craft) (NP (NN pr) (NNS statements))))))) (. ?)))))
600440 (ROOT (INTJ hi) (@S (, ,) (@S (NP i) (@S (VP (VBD noticed) (SBAR (NP you) (VP (VBD blocked) (SBAR (NP (@NP (@NP (NP (NP (JJ bprd) (NN agent)) (PP (IN with) (NP (NP (DT no) (@NP (JJ expiry) (NN time))) (PP (IN with) (NP reason))))) (: :)) (NP (JJ vandalism-only) (NN account))) (: ;)) (VP (VBP see) (NP (@NP (NP contribs) (CC and)) (NP (JJ deleted) (NNS contribs)))))))) (. .)))))
600440 (ROOT (ADVP um) (@SQ (, ,) (@SQ (@SQ (@SQ (@SQ (VBZ is) (RB n't)) (NP (DT the) (NN deleted))) (NP (NP contributions) (VP (ADVP only) (@VP (VBN restricted) (PP (TO to) (NP administrators)))))) (. ?))))
207726 (ROOT (ADVP so) (@S (, ,) (@S (ADVP pasquale) (@S (, ,) (@S (NP you) (@S (VP (@VP (VBP 're) (RB not)) (ADJP interested)) (. ?)))))))
207726 (ROOT (@SQ (@SQ (VBP have) (NP you)) (VP (ADVP ever) (@VP (VBN read) (NP (JJ <url>) (NN article))))) (. ?))
538180 (ROOT (NP (DT the) (NN file)) (@S (ADVP clearly) (@S (VP (VBZ states) (SBAR (NP this) (VP (VBZ is) (NP (NP (DT an) (NN image)) (PP (IN from) (NP (DT a) (NN poster))))))) (. .))))
538180 (ROOT (WHADVP (ADVP since) (WRB when)) (@SBARQ (SQ (@SQ (VBZ does) (NP this)) (VP (VB require) (NP (DT any) (@NP (JJ additional) (NN explanation))))) (. ?)))
240300 (ROOT (@NP (@NP (NP um) (: -)) (NP no)) (. .))
240300 (ROOT (S (CC and) (@S (NP i) (VP (VBP take) (NP it)))) (@S (NP you) (@S (VP (VBP delieve) (SBAR (NP (DT all) (@NP (JJ racist) (@NP (CC and) (@NP (JJ fascist) (NNS groups))))) (VP (VBP are) (NP (JJ right) (NN wing))))) (. ?))))
455372 (ROOT (NP i) (@S (VP (@VP (VBP 'm) (ADVP just)) (VP (VBG saying) (SBAR (IN that) (S (NP kingboyk) (VP (@VP (@VP (VBZ has) (RB n't)) (ADVP really)) (VP (VBN been) (VP (VBG editing) (ADVP lately)))))))) (. .)))
455372 (ROOT (SBAR (RB so) (@SBAR (IN if) (S (NP you) (VP (@VP (VBP 're) (ADVP actually)) (ADJP (JJ interested) (PP (IN in) (S (VBG resolving) (NP (DT an) (NN issue))))))))) (@FRAG (, ,) (@FRAG (WHADVP why) (@FRAG (RB not) (@FRAG (VP (@VP (VB take) (NP it)) (PP (TO to) (NP (DT a) (NN noticeboard)))) (. ?))))))
144921 (ROOT (@NP (@NP (NP um) (, ,)) (NP what)) (. ?))
144921 (ROOT (IN so) (@S (ADVP presumably) (@S (NP you) (@S (VP (MD 'd) (VP (VB like) (S (TO to) (VP (@VP (VB change) (NP (JJ irish) (@NP (@NP (NN footballer) (CC and)) (NN manager)))) (PP (TO to) (NP (NP republic) (PP (IN of) (NP (NP (JJ ireland-born) (@NP (NN association) (@NP (@NP (NN footballer) (CC and)) (NN coach)))) (PRN (-LRB- -LRB-) (@PRN (NP sports) (-RRB- -RRB-))))))))))) (. ?)))))
542899 (ROOT (WHADVP (WRB when) (NP (NP you) (NP (NNP deleted) (NNP <url>)))) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (ADVP accidentally) (@VP (VB overlook) (NP (DT the) (@NP (JJ <person>) (NN template)))))) (. ?)))
542899 (ROOT (CC or) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB have) (NP (NP (DT some) (NN reason)) (PP (IN for) (S (VBG ignoring) (NP it)))))) (. ?)))
627980 (ROOT (WHADVP how) (PP (@PP (IN about) (NP (NP this) (PP (IN for) (NP (DT a) (@NP (NN novel) (NN solution)))))) (. ?)))
627980 (ROOT (S (NP-TMP (DT the) (@NP-TMP (JJ next) (NN time))) (@S (NP (DT a) (@NP (VBN banned) (NN editor))) (VP (@VP (@VP (@VP (VBD posts) (NP something)) (PP (TO to) (NP (PRP$ your) (NN page)))) (, ,)) (SBAR (WHADVP (WRB why) (RB not)) (S (@VP (VBP delete) (S (NP it) (NP yourself))) (PP (IN with) (NP (NP (DT an) (@NP (JJ edit) (NN summary))) (PP (IN of) (ADJP sorry))))))))) (@S (, ,) (@S (NP i) (@S (VP (VBP 'm) (ADJP (JJ topic-banned) (PP (IN from) (S (VBG discussing) (NP this))))) (. ?)))))
364453 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (VB erase) (NP (DT the) (@NP (JJ <url>) (NN page))))) (. ?)))
364453 (ROOT (@S (@S (@S (S (NP i) (VP (VBD was) (VP (VBG working) (PP (IN on) (NP (DT that) (NN article)))))) (, ,)) (CC and)) (S (NP (PRP$ his) (NN notability)) (VP (@VP (VBZ is) (RB not)) (ADJP disputed)))) (. ?))
210807 (ROOT (@S (@S (S (NP i) (VP (MD will) (VP (@VP (@VP (@VP (@VP (VB say) (NP this)) (, ,)) (ADVP though)) (, ,)) (PP (IN in) (NP (NP (DT the) (NN form)) (PP (IN of) (NP (DT a) (NN suggestion)))))))) (: :)) (S (NP it) (VP (VBZ makes) (S (NP me) (@S (ADJP (DT a) (@ADJP (NN bit) (JJ uneasy))) (S (TO to) (VP (@VP (VB see) (S (NP you) (ADJP (@ADJP (ADJP (RB so) (JJ involved)) (CC and)) (ADJP (RB sometimes) (JJ argumentative))))) (PP (IN in) (NP (PRP$ your) (NN nomination)))))))))) (. .))
210807 (ROOT (WHADVP why) (@FRAG (RB not) (@FRAG (VP (@VP (VP (VB step) (ADVP back)) (CC and)) (VP (VB let) (S (NP (DT the) (NN community)) (VP (VB do) (NP (PRP$ its) (NN thing)))))) (. ?))))
622653 (ROOT (SBAR (IN because) (S (NP wikipedia) (VP (@VP (VBZ is) (ADVP (NP (DT an) (NN encylopaedia)) (RB not))) (NP (DT a) (@NP (JJ free) (@NP (NN advertising) (@NP (CC and) (@NP (NN self) (@NP (NN promotion) (NN venue)))))))))) (. .))
622653 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB keep) (S (VBG abusing) (NP it)))) (. ?)))
626619 (ROOT (NP you) (@S (VP (@VP (@VP (VBP realize) (SBAR (NP (DT the) (NN bot)) (VP (VBZ maintains) (NP (DT a) (@NP (JJ separate) (NN page)))))) (, ,)) (ADVP right)) (. ?)))
626619 (ROOT (@SQ (@SQ (VBZ is) (NP it)) (NP (NP (RB not) (JJ possible)) (SBAR (IN that) (S (NP (DT the) (NN problem)) (VP (VBZ is) (VP (VBG having) (NP (NP (DT the) (NNS pages)) (ADJP inconsistent)))))))) (. ?))
204861 (ROOT (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP (VB see) (SBAR (WHADVP how) (S (NP you) (VP (MD can) (VP (VB use) (S (NP this) (VP (TO to) (VP (@VP (VP (VB discount) (NP (PRP$ his) (NNS trustworthiness))) (CC and)) (VP (VB oppose) (NP him))))))))))) (. .)))
204861 (ROOT (SBAR (IN if) (S (NP there) (VP (VBZ is) (NP (NN consensus) (S (TO to) (VP (VB promote) (PP (IN among) (NP (JJ several) (NNS bureaucrats))))))))) (@SBARQ (, ,) (@SBARQ (WHNP what) (@SBARQ (SQ (VBZ 's) (NP (NP (PRP it) (NN matter)) (SBAR (WHNP who) (S (ADVP actually) (VP (VBZ presses) (NP (DT the) (NN button))))))) (. ?)))))
128622 (ROOT (@S (@S (S (NP i) (VP (VBP 'm) (ADJP sorry))) (CC but)) (S (S (@VP (VBG looking) (PRT back)) (PP (IN on) (NP (DT that) (@NP (FW edit) (FW i))))) (VP (@VP (MD wo) (RB n't)) (VP (VB stand) (PP (IN for) (NP that)))))) (. .))
128622 (ROOT (S (VB do) (RB n't)) (@S (NP you) (@S (VP (VBP think) (SBAR (IN that) (S (S (ADVP actually) (@VP (VBG removing) (NP (DT the) (@NP (JJ edit) (NN summary))))) (VP (VBD was) (NP (DT a) (NN bit)))))) (. .))))
128622 (ROOT (UH well) (. .))
128622 (ROOT (NP (NNP let) (POS 's)) (@S (VP (@VP (@VP (VBP say) (`` `)) (NP (JJ abusing) (@NP (NN sysop) (NNS powers)))) ('' ')) (. ?)))
67375 (ROOT (RB not) (@SBAR (IN that) (S (NP this) (@S (ADVP really) (VP (VBZ needs) (ADJP (ADJP (RB much) (@ADJP (RBR more) (JJ discussion))) (SBAR (CC but) (@SBAR (@SBAR (WHADVP how) (S (VBD did) (SBAR (NP (DT the) (NN object)) (VP (@VP (@VP (VBD described) (PP (IN as) (NP (JJ creepy) (NN change)))) (PP (IN from) (NP (NP (DT the) (NN email)) (PP (IN in) (NP (PRP$ your) (@NP (JJ first) (NN sentence))))))) (PP (TO to) (NP (NP (DT the) (NN administrator)) (PP (IN in) (NP (DT the) (NN second))))))))) (. ?)))))))))
67375 (ROOT (ADVP especially) (@FRAG (SBAR (WHADVP when) (S (NP (DT the) (@NP (JJ original) (NN edit))) (VP (VBD stated) (SBAR (IN that) (S (NP (DT the) (NN email)) (VP (@VP (@VP (VBD was) (ADVP creepy)) (, ,)) (ADVP (RB not) (NP (DT the) (NN administrator))))))))) (. ?)))
228129 (ROOT .)
228129 (ROOT (VP (@VP (VBZ is) (ADVP indeed)) (NP (DT a) (@NP (ADJP (@ADJP (JJ sick) (CC and)) (JJ boring)) (NN life)))) (. .))
228129 (ROOT (WHADVP where) (@SBARQ (SQ (@SQ (VBP do) (NP i)) (VP (@VP (VB sign) (PRT up)) (S (TO to) (VP (@VP (VB give) (NP you)) (NP (PRP$ your) (@NP (NN celebratory) (@NP (NN sexin) ('' ')))))))) (. ?)))
200596 (ROOT (ADJP (RB not) (JJ sure)) (@FRAG (SBAR (IN if) (S (NP you) (VP (VBP are) (VP (VBG saying) (SBAR (IN that) (S (NP i) (VP (VBP am) (VP (@VP (VBG beating) (NP (DT a) (@NP (JJ dead) (NN horse)))) (PP (IN in) (S (@VP (VBG raising) (NP (DT the) (@NP (NN inclusion) (@NP (NNS criteria) (NN problem))))) (ADVP again))))))))))) (. .)))
200596 (ROOT (CC or) (@FRAG (SBAR (IN if) (S (NP doncram) (VP (VBZ is) (VP (@VP (VBG doing) (ADVP (RB so) (PP (IN in) (S (VBG objecting) (PP (TO to) (NP my)))))) (S (VBG doing) (ADVP (RB so) (RB again))))))) (. .)))
200596 (ROOT (CC or) (@SQ (@SQ (@SQ (VBZ is) (NP it)) (ADVP both)) (. ?)))
614705 (ROOT (@SQ (@SQ (@SQ (VBP do) (NP you)) (ADVP really)) (VP (VB believe) (SBAR (IN that) (S (NP (NP (PRP$ your) (NN photograph)) (PP (IN at) (NP (NP (DT the) (NN top)) (PP (IN of) (NP (DT the) (NN <url>)))))) (VP (@VP (VBZ is) (ADJP (ADJP better) (PP (IN than) (NP (PRP$ my) (NN photograph))))) (SBAR (WHNP which) (S (NP you) (VP removed)))))))) (. ?))
614705 (ROOT (@SQ (@SQ (MD should) (NP wikipedia)) (VP (VB have) (NP (NP (DT a) (@NP (JJ dedicated) (@NP (NN sunrise) (NN article)))) (SBAR (WHNP that) (S (@VP (VBZ does) (RB not)) (VP (@VP (VB feature) (ADVP even)) (NP (NP (CD one) (@NP (JJ single) (@NP (JJ decent) (NN image)))) (PP (IN of) (NP (DT a) (@NP (JJ red) (NN sky))))))))))) (. ?))
85235 (ROOT (NP (NP no-one) (SBAR (VBZ 's) (VP (VBG saying) (SBAR (@SBAR (@SBAR (SBAR (NP you) (VP (@VP (MD ca) (RB n't)) (VP (VB edit) (NP anything)))) (, ,)) (CC but)) (SBAR (WHNP what) (S (NP we) (VP (VBP are) (VP saying)))))))) (@S (VP (VBZ is) (SBAR (IN that) (S (S (VBG introducing) (NP (@NP (@NP (@NP (@NP (@NP (NP (ADJP (RB grammatically) (JJ incorrect)) (NNS phrases)) (, ,)) (NP pov)) (, ,)) (NP (NP (JJ weasel) (@NP (@NP (NNS words) (CC and)) (NNS things))) (VP (@VP (@VP (VBN discussed) (CC and)) (VBN discounted)) (PP (IN in) (NP (DT the) (@NP (JJ numerous) (NN prs))))))) (CC and)) (NP (NP flcs) (SBAR (NP (DT this) (NN article)) (VP (VBD went) (PRT through)))))) (VP (VBZ is) (ADJP inappropriate))))) (. .)))
85235 (ROOT (NP buc) (@S (, ,) (@S (S (VB stop) (S (NP it) (VP please))) (@S (, ,) (@S (NP i) (@S (VP (VBP 'm) (VP (@VP (@VP (@VP (VBG getting) (ADJP tired)) (PP (IN of) (NP this))) (, ,)) (SBAR (WHADVP (WRB why) (RB not)) (S (VBP work) (PP (IN on) (S (VBG being) (ADJP (JJ constructive) (PP (TO to) (NP (NP articles) (SBAR (WHNP that) (S (@VP (VBP are) (RB n't)) (PP (IN at) (NP (JJ featured) (NN status)))))))))))))) (. ?)))))))
409045 (ROOT (NP i) (@S (VP (@VP (@VP (VP (VBD started) (NP (NP thinking) (PP (IN of) (SBAR (WHADVP how) (S (TO to) (VP (VB copy-edit) (NP it))))))) (, ,)) (CC but)) (VP (ADVP then) (@VP (VBD lost) (NP interest)))) (. .)))
409045 (ROOT (WHNP what) (@SBARQ (SQ (VBZ is) (NP (NP (DT this) (NN thing)) (SBAR (IN that) (S (NP americans) (VP (VBP have) (PP (IN about) (S (@VP (@VP (VBG writing) (PP (IN about) (NP (PRP$ their) (@NP (JJ bloody) (NNS roads))))) (, ,)) (PP (IN for) (NP (NN goodness) (NN sake)))))))))) (. ?)))
409045 (ROOT (@SQ (@SQ (MD can) (NP you)) (VP (@VP (VB imagine) (NP (DT the) (NN <url>))) (UCP (PP (IN as) (NP (DT a) (@NP (JJ featured) (NN article)))) (@UCP (, ,) (@UCP (CC or) (S (@VP (VBG having) (NP (NP (DT a) (NN list)) (PP (IN of) (NP (NP a-roads) (PP (IN in) (NP gloucestershire)))))) (PP (IN as) (NP (DT a) (@NP (JJ featured) (NN list)))))))))) (. ?))
6754 (ROOT (INTJ no) (@S (, ,) (@S (NP wikipedia) (@S (VP (@VP (VBZ does) (RB not)) (VP (@VP (@VP (VB consider) (NP itself)) (PRN (-LRB- -LRB-) (@PRN (CC or) (@PRN (VP (VBZ wikis) (PP (IN in) (NP general))) (-RRB- -RRB-))))) (PP (IN as) (NP (DT a) (@NP (JJ reliable) (NN source)))))) (. .)))))
6754 (ROOT (ADVP surely) (@S (NP you) (@S (VP (VBP know) (NP (PDT such) (@NP (DT a) (@NP (JJ basic) (NN policy))))) (. ?))))
396161 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP am) (NP i)) (VP (ADVP never) (@VP (VBN asked) (S (TO to) (VP (VB write) (NP (DT a) (NN feature))))))) (. .)))
396161 (ROOT (@SINV (VP is) (NP it)) (SBAR (@SBAR (IN because) (S (NP i) (VP (VBZ is) (ADJP black)))) (. ?)))
620601 (ROOT (S (NP it) (VP (@VP (VBZ 's) (RB not)) (NP (DT a) (NN ban)))) (@S (, ,) (@S (NP it) (@S (VP (VBZ 's) (NP (DT an) (@NP (JJ indefinite) (NN block)))) (. .)))))
620601 (ROOT (@S (@S (S (NP he) (VP (MD 'll) (VP (@VP (VB know) (PP (IN about) (NP it))) (SBAR (WHADVP when) (S (NP he) (VP (VBZ tries) (S (TO to) (VP edit)))))))) (CC and)) (S (NP he) (VP (MD 'll) (VP (VB know) (SBAR (IN that) (S (NP it) (VP (@VP (VBD was) (NP me)) (SBAR (@SBAR (@SBAR (SBAR (WHNP that) (S (VBD blocked) (NP him))) (, ,)) (CC so)) (SBAR (WHNP what) (S (VBZ 's) (NP (NP (DT the) (NN pint)) (PP (IN of) (S (@VP (@VP (VBG telling) (NP him)) (ADVP again)) (PP (IN on) (NP (PRP$ his) (@NP (NN talk) (NN page))))))))))))))))) (. ?))
250689 (ROOT (@NP (@NP (NP third) (: :)) (S (NP it) (VP (@VP (VBZ 's) (NP-TMP (NNP august) (CD 31))) (NP 2010)))) (. .))
250689 (ROOT (VP (VB please) (VP (@VP (VB check) (NP (PRP$ my) (NN userpage))) (PP (IN for) (NP (NP reasons) (SBAR (WHADVP why) (S (NP i) (@S (ADVP really) (VP (@VP (VBP do) (RB n't)) (VP (VB feel) (NP-TMP (JJ useful) (NN today))))))))))) (. .))
250689 (ROOT (VP (VB ask) (NP (@NP (NP (DT another) (NN admin)) (, ,)) (ADJP okay))) (. ?))
368684 (ROOT (@NP (@NP (NP note) (: :)) (S (@S (S (@S (@S (S (NP (NP (NN kurt) (POS 's)) (@NP (NN talk) (NN page))) (@S (ADVP (RB almost) (RB certainly)) (VP (@VP (VBZ is) (RB n't)) (NP (DT a) (@NP (JJ good) (@NP (NN place) (S (TO to) (VP (VB seek) (NP (NP (DT a) (@NP (JJ broad) (@NP (CC or) (@NP (JJ unbiased) (NN consensus))))) (PP (IN on) (NP (DT this) (NN question)))))))))))) (, ,)) (CC nor)) (SQ (@SQ (NNS is) (NP it)) (NP (NP (DT the) (@NP (JJ appropriate) (NN venue))) (WHPP (IN in) (SBAR (@SBAR (WHNP which) (S (TO to) (VP (@VP (VB request) (NP (DT an) (NN exemption))) (PP (IN from) (NP (DT a) (NN ban)))))) (: --)))))) (CC and)) (S (PP (IN in) (NP (DT all) (NN honesty))) (@S (, ,) (@S (NP i) (VP (@VP (@VP (VBP 'm) (RB not)) (ADJP sure)) (SBAR (IN that) (S (S (@VP (VBG managing) (NP (PDT such) (@NP (DT an) (NN exemption)))) (PP (IN for) (NP (NP (DT the) (NN purpose)) (PP (IN of) (S (VBG posting) (NP gags)))))) (VP (MD would) (VP (VB be) (NP (NP (DT a) (@NP (JJ constructive) (NN use))) (PP (IN of) (NP (NP (NN anyone) (POS 's)) (NN time)))))))))))))) (. .))
368684 (ROOT (ADVP perhaps) (@S (NP it) (@S (VP (MD would) (VP (@VP (@VP (VB be) (ADVP best)) (S (TO to) (VP (@VP (@VP (VB save) (NP (DT the) (NNS jokes))) (PP (IN for) (NP (@NP (@NP (NP (NP (DT a) (NN time)) (SBAR (WHADVP when) (S (NP you) (VP (@VP (VBP 're) (ADVP (RB once) (RB again))) (VP (VBN allowed) (S (TO to) (VP (VB edit) (PP (IN in) (NP (DT the) (@NP (NN wp) (NN namespace))))))))))) (, ,)) (CC or)) (NP (NP post) (SBAR (WHNP whatever) (S (VBZ jokes) (SBAR (NP you) (VP wish)))))))) (PRN (-LRB- -LRB-) (@PRN (PP (IN within) (NP reason)) (-RRB- -RRB-)))))) (PP (IN in) (NP (PRP$ your) (@NP (JJ own) (@NP (NN user) (NN space))))))) (. ?))))
618834 (ROOT (NP fine) (@FRAG (, ,) (@FRAG (CC but) (@FRAG (S (NP you) (VP (@VP (VBD did) (RB n't)) (VP (VB need) (S (TO to) (VP (VB be) (NP (DT an) (@NP (NN admin) (S (TO to) (VP (@VP (VB make) (NP edits)) (PP (TO to) (NP articles))))))))))) (. .)))))
618834 (ROOT (CC or) (@X (VP (VBD did) (NP you)) (. ?)))
560843 (ROOT (NP (@NP (@NP (NP re) (: :)) (ADJP (@ADJP (JJ <url>) (CC and)) (JJ <url>))) (, ,)) (@S (SBAR (IN if) (S (NP you) (VP (VBP think) (SBAR (NP they) (VP (@VP (VBP are) (ADJP (ADJP (@ADJP (JJR better) (RP off)) (PP (IN as) (NP redirects))) (PP (TO to) (NP (@NP (NP (DT the) (NN suburb/town)) (CONJP (RB rather) (IN than))) (NP substubs))))) (PP (IN on) (NP (NP (DT the) (NNS lakes)) (PP (IN with) (NP (DT a) (@NP (NNP <nowiki>) (@NP (NNP <person>) (@NP (NNP </nowiki>) (NN tagline))))))))))))) (@S (, ,) (@S (NP you) (@S (ADVP only) (@S (VP (@VP (@VP (VBP need) (S (TO to) (VP (@VP (@VP (VB overwrite) (NP (DT the) (NN article))) (PP (IN with) (NP (DT a) (NN redirect)))) (PRN (-LRB- -LRB-) (@PRN (CC or) (@PRN (VP (VBN revert) (PP (TO to) (NP (NP (DT a) (@NP (JJ previous) (NN version))) (SBAR (WHNP that) (S (VBD was) (NP (DT a) (NN redirect))))))) (-RRB- -RRB-))))))) (, ,)) (S (@VP (VBG leaving) (NP (DT the) (NN substub))) (PP (IN in) (NP (DT the) (@NP (NN article) (NN history)))))) (. .)))))))
560843 (ROOT (WHADVP how) (@SBARQ (SQ (@SQ (VP (VBP come) (S (NP you) (ADJP speedied))) (NP them)) (PP (IN before) (NP redirecting))) (. ?)))
369400 (ROOT (NP (NP (PRP$ your) (NN comment)) (PP (IN about) (NP (DT the) (NNS additions)))) (@S (VP (VBD were) (VP (@VP (VBN left) (ADJP intact)) (SBAR (IN as) (S (NP (DT a) (NN courtesy)) (VP (VBZ sounds) (ADJP (NP (DT a) (RB bit)) (@ADJP (JJ strange) (PP (TO to) (NP me))))))))) (. .)))
369400 (ROOT (ADVP maybe) (@S (NP you) (@S (VP (MD should) (VP (VB read) (NP <url>))) (. ?))))
622299 (ROOT (NP i) (@S (VP (VBP have) (S (TO to) (VP (VB protest) (SBAR (IN that) (S (NP i) (VP (VBP find) (S (NP it) (ADJP (RB rather) (@ADJP (JJ meaningless) (PP (TO to) (NP (NP (JJ present) (NNS arguments)) (PP (IN on) (NP (NP (DT the) (@NP (NN talk) (NN page))) (PP (IN for) (NP (@NP (NP (NP edits) (SBAR (WHNP which) (S (@VP (VBP are) (ADVP then)) (VP (ADVP blankly) (@VP (VBN reverted) (PP (IN by) (NP (NP (DT the) (NN likes)) (PP (IN of) (NP user))))))))) (: :)) (NP (NP historicar) (PP (IN without) (NP (@NP (NN explanation) (CC or)) (NN discussion))))))))))))))))))) (. .)))
622299 (ROOT (@NP (NP (DT any) (NNS suggestions)) (PP (IN for) (NP (@NP (NP (DT a) (@NP (JJR more) (@NP (JJ formal) (NN process)))) (CC or)) (NP (JJ other) (NNS remedies))))) (. ?))
621854 (ROOT (VP (VBD liked) (SBAR (IN that) (S (NP (NNP <url>) (NNP i)) (VP (VBD tore) (PP (IN into) (NP (DT that) (NN spammer))))))) (. ?))
621854 (ROOT (@SQ (@SQ (VBD got) (NP (DT a) (NN box))) (PP (IN with) (NP (DT a) (NN gun)))) (. ?))
185430 (ROOT (ADVP se) (@S (, ,) (@S (NP i) (@S (VP (@VP (VBP 've) (ADVP briefly)) (VP (@VP (VBN blocked) (NP (PRP$ your) (NN bot))) (SBAR (IN because) (S (NP i) (VP (VBP see) (SBAR (NP it) (VP (VBZ 's) (VP (@VP (@VP (@VP (@VP (VBG changing) (NP (JJ embedded) (NNS links))) (PP (TO to) (NP footnotes))) (ADVP again)) (, ,)) (PP (IN against) (NP <url>)))))))))) (. .)))))
185430 (ROOT (@SQ (@SQ (VBD did) (NP you)) (VP (@VP (@VP (VP (@VP (VB discuss) (PP (IN with) (NP anyone))) (SBAR (IN that) (S (NP you) (VP (VBD were) (VP (VBG doing) (NP this)))))) (, ,)) (CC or)) (VP (@VP (VB get) (NP permission)) (S (TO to) (VP (VB use) (NP it)))))) (. ?))
492308 (ROOT (VP yeeesh) (. .))
492308 (ROOT (@SQ (@SQ (@SQ (SQ (@SQ (@SQ (VBZ is) (NP it)) (ADVP just)) (NP me)) (, ,)) (CC or)) (SQ (@SQ (VBZ is) (NP it)) (ADJP (RB very) (@ADJP (JJ difficult) (S (TO to) (VP (VB follow) (NP (NP (DT these) (NN stream)) (PP (IN of) (NP (NN consciousness) (NNS postings)))))))))) (. ?))
620486 (ROOT ?)
620486 (ROOT (WHNP what) (. ?))
542059 (ROOT (NP you) (@S (VP (@VP (VBP 've) (ADVP completely)) (VP (VBN lost) (NP me))) (. .)))
542059 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG asking) (IN about))) (. ?)))
627547 (ROOT (@S (@S (@S (S (NP (NP (PRP$ your) (@NP (JJ first) (NN attempt))) (PP (IN at) (S (VBG doing) (NP this)))) (@S (ADVP also) (VP (@VP (VBD added) (NP (DT a) (@NP (JJ <nowiki>) (@NP (NNP <url>) (@NP (NNP </nowiki>) (NN line)))))) (PP (TO to) (NP (DT the) (NN article)))))) (, ,)) (CC and)) (S (NP that) (VP (VBZ 's) (SBAR (WHNP what) (S (VBD triggered) (NP (DT the) (NN bot))))))) (. .))
627547 (ROOT (ADVP perhaps) (@S (NP you) (@S (VP (MD should) (VP (VB get) (PP (IN into) (NP (NP (DT the) (NN habit)) (PP (IN of) (S (VBG using) (NP (DT the) (@NP (`` `) (@NP (NN show) (@NP (NNS changes) (NN button))))))))))) (. ?))))
624948 (ROOT (S (VBG misrepresenting) (NP (NP (DT a) (@NP (NN person) (POS 's))) (@NP (NNS actions) (S (TO to) (VP (@VP (VB portray) (NP them)) (PP (IN in) (NP (DT a) (@NP (JJ bad) (NN light))))))))) (@S (VP (VBZ is) (NP (NP one) (PP (IN of) (NP (NP (DT the) (@NP (ADJP (RBR more) (@ADJP (JJ common) (PRN (-LRB- -LRB-) (@PRN (@PRN (CC and) (VB transparent)) (-RRB- -RRB-))))) (NNS forms))) (PP (IN of) (NP (JJ personal) (NN attack))))))) (. .)))
624948 (ROOT (@SQ (@SQ (VBZ is) (NP that)) (NP (NP (PRP$ your) (NN defense)) (PP (IN for) (S (ADVP repeatedly) (@VP (VBG violating) (NP <url>)))))) (. ?))
623900 (ROOT (@S (@S (S (NP it) (VP (VBZ 's) (PP (IN on) (NP (DT the) (NN talkpage))))) (: -)) (S (NP you) (VP (VBP are) (VP (VBG deleting) (PP (IN like) (ADJP crazy)))))) (. .))
623900 (ROOT (NP i) (@S (VP (MD can) (VP (@VP (VB ask) (PP (IN for) (NP (DT a) (NN cabral)))) (SBAR (IN if) (S (NP you) (VP like))))) (. ?)))
505765 (ROOT (NP (PRP$ your) (NN bot)) (@S (VP (VBZ has) (VP (@VP (VBN ruined) (NP (NP (DT the) (NN formatting)) (PP (IN on) (NP (NN ref) (CD 2))))) (PP (IN in) (NP <url>)))) (. .)))
505765 (ROOT (@SQ (@SQ (MD would) (NP you)) (VP (VB care) (S (TO to) (VP (DT either) (@VP (@VP (VP (@VP (VB call) (PRT off)) (NP (DT the) (NN bot))) (CC or)) (VP (VB suggest) (NP (NP (DT an) (@NP (JJ alternate) (NN formatting))) (SBAR (WHNP that) (S (MD will) (VP (VB work) (ADVP better))))))))))) (. ?))
627160 (ROOT (VP huh) (. ?))
627160 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBD was) (NP that)) (VP (VBN supposed) (S (TO to) (VP mean)))) (. ?)))
536140 (ROOT (@SQ (@SQ (VBP am) (NP i)) (VP (ADVP indeed) (@VP (VBN dishonest) (PP (IN by) (S (VBG responding) (PP (TO to) (NP you))))))) (. ?))
536140 (ROOT (@SQ (@SQ (VBZ is) (NP <url>)) (ADJP correct)) (. ?))
168149 (ROOT (ADVP however) (@S (, ,) (@S (SBAR (IN as) (S (NP you) (VP (MD can) (VP see)))) (@S (, ,) (@S (NP i) (@S (VP (@VP (VBD provided) (NP citation)) (PP (IN for) (NP (PRP$ my) (NN edit)))) (. .)))))))
168149 (ROOT (@SQ (@SQ (MD will) (NP you)) (VP (@VP (VP (VB revert) (NP that)) (CC and)) (VP (@VP (VB accuse) (NP me)) (PP (IN of) (S vandalizing))))) (. ?))
624679 (ROOT (NP he) (@S (VP (VBZ has) (VP (VBN been) (NP (NP indef) (VP (VBN blocked) (ADVP (RB once) (RB again)))))) (. .)))
624679 (ROOT (NP i) (@S (VP (VBP wonder) (SBAR (WHADVP (WRB how) (RB long)) (S (NP it) (VP (MD will) (VP (VB take) (S (NP him) (VP (TO to) (VP (@VP (VB come) (PRT back)) (NP (DT this) (NN time)))))))))) (. ?)))
272602 (ROOT (ADVP maybe) (@S (NP you) (@S (VP (MD should) (VP (VB consider) (NP (DT a) (@NP (NN user) (@NP (NN name) (NN change)))))) (. ?))))
272602 (ROOT (VP (@VP (TO to) (PRN (, ,) (@PRN (INTJ say) (, ,)))) (VP (@VP (VB sarah) (`` `)) (NP (NP (DT the) (@NP (NN hammer) (POS '))) (NN ewart)))) (. ?))
476958 (ROOT (@X (@X (S (VBG being) (ADJP (RB too) (@ADJP (JJ efficient) (SBAR (MD can) (VP (@VP (@VP (VB be) (ADJP detrimental)) (: -)) (SBAR (NP what) (@SBAR (IN if) (S (NP i) (VP (VBD was) (VP (@VP (VBG doing) (NP it)) (PP (IN in) (NP (DT the) (@NP (JJ wrong) (NN order)))))))))))))) (: -)) (NP (SQ (@SQ (VBZ does) (NP that)) (VP (@VP (VB allow) (NP (PRP$ my) (NN reversion))) (SBAR (IN if) (S (ADVP indeed) (@S (NP i) (VP do)))))) (VP (VB utilise) (NP (DT the) (NN abbreviation))))) (. ?))
476958 (ROOT (NP (DT a) (@NP (JJ simple) (NN enquiry))) (@S (VP (MD might) (VP (VB have) (VP (VBN been) (PP (IN in) (NP order))))) (. ?)))
620391 (ROOT (ADJP sorry) (@FRAG (, ,) (@FRAG (NP (RB almost) (JJ forgot)) (. .))))
620391 (ROOT (PP (IN after) (S (VBG calling) (NP me))) (@S (NP (NP (DT a) (NN child)) (UCP (@UCP (ADJP uneducated) (CC and)) (VP (@VP (VBG making) (NP remarks)) (PP (TO to) (NP (NP (DT the) (NN effect)) (PP (IN of) (SBAR (@VP (MD should) (RB n't)) (VP (VB be) (VP (VBN allowed) (S (TO to) (VP (VB post) (PP (IN on) (NP (NP (JJ edit) (NN wikipedia)) (SBAR (WHNP what) (S (NP grounds) (VP (VBP have) (S (NP you) (VP (VBD got) (S (TO to) (VP (@VP (VB stand) (PRT on)) (S (TO to) (VP (VB say) (NP i))))))))))))))))))))))) (@S (VP (VBP 've) (VP (@VP (VBN made) (NP (NP (JJ personal) (NNS attacks)) (PP (IN against) (NP you)))) (PP (IN by) (S (VBG suggesting) (NP vandalism))))) (. ?))))
344934 (ROOT (ADVP ok) (@S (, ,) (@S (@S (@S (@S (S (ADVP then) (@S (, ,) (@S (S (VB define) (NP bias)) (@S (, ,) (VP (VBP propose) (S (NP (DT a) (NN way)) (VP (TO to) (VP (VB quantify) (NP it))))))))) (, ,)) (CC and)) (S (SBAR (IN if) (S (NP it) (VP (VBZ 's) (VP (VBN accepted) (PP (IN by) (NP consensus)))))) (@S (, ,) (@S (NP we) (VP (MD 'll) (VP (@VP (VB apply) (NP it)) (PP (TO to) (NP (NP (PDT all) (@NP (DT the) (NNS admins))) (PP (IN on) (NP (DT that) (NN page))))))))))) (. .))))
344934 (ROOT (FRAG (CC or) (@FRAG (, ,) (@FRAG (ADVP perhaps) (NP (RB as) (@NP (DT a) (@NP (JJ starting) (NN point))))))) (@SBARQ (, ,) (@SBARQ (SBARQ (WHADVP how) (SQ (ADVP about) (@VP (VBG presenting) (NP (DT some) (NN evidence))))) (. ?))))
103616 (ROOT (NP (@NP (NNP oh) (CC and)) (PRP you)) (@S (VP (VBP seem) (S (TO to) (VP (VB have) (VP (@VP (VBN deleted) (NP (NP half) (PP (IN of) (NP (DT the) (NN stuff))))) (PP (IN on) (NP <url>)))))) (. .)))
103616 (ROOT (NP i) (@S (VP (VBP presume) (SBAR (NP this) (VP (VBD was) (NP (DT a) (NN mistake))))) (. ?)))
627447 (ROOT (NP i) (@S (VP (VBP have) (RB n't)) (. .)))
627447 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG referring) (PP to))) (. ?)))
600844 (ROOT (PP (IN during) (NP (PRP$ your) (NN rfa))) (@S (NP you) (@S (VP (VBD stated) (SBAR (IN that) (S (NP you) (VP (MD would) (VP (VB be) (VP (@VP (@VP (VBG helping) (NP deal)) (PP (IN with) (NP (DT the) (@NP (JJ scibaby) (NN situation))))) (SBAR (IN after) (S (NP raul) (VP (VBD stopped) (S (VBG doing) (NP it))))))))))) (. .))))
600844 (ROOT (@SQ (@SQ (VBP do) (NP you)) (VP (VB feel) (SBAR (IN that) (S (NP you) (VP (VBP 've) (VP (VBN done) (SBAR (WHNP what) (S (NP you) (VP (VBD said) (SBAR (NP you) (VP (VBD were) (VP (VBG going) (S (TO to) (VP do)))))))))))))) (. ?))
620951 (ROOT (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP (VB see) (NP (NP any) (PP (IN of) (NP (NP that) (PP (IN in) (NP (PRP$ his) (@NP (NN deletion) (NN log))))))))) (. .)))
620951 (ROOT (@SQ (@SQ (MD would) (NP you)) (VP (VB please) (VP (@VP (VB find) (PRT out)) (SBAR (WHNP (WDT which) (NN one)) (S (NP it) (VP (@VP (VBD was) (PP (IN as) (NP evidence))) (SBAR (IN so) (S (NP you) (VP (@VP (VBP 're) (ADVP (RB not) (RB blindly))) (VP (VBG accusing) (NP (NP (DT an) (NN admin)) (PP (IN of) (S (VBG deleting) (NP (NP something) (SBAR (NP they) (VP (@VP (VBD did) (RB n't)) (VP delete))))))))))))))))) (. ?))
624529 (ROOT (SBAR (RB just) (S (@S (@S (S (VB look) (PRT out)) (CC or)) (PRN (S (NP you) (VP (MD 'll) (VP regret!ok))) (, ,))) (S (VB stop) (ADVP here)))) (@S (, ,) (@S (VP (VB go) (PP (TO to) (NP bed))) (. .))))
624529 (ROOT (@SQ (@SQ (VBP have) (NP u)) (VP (@VP (VBN done) (NP (NN tourism) (NN report))) (ADVP yet))) (. ?))
216645 (ROOT (NP (DT no) (NN problem)) (@S (, ,) (@S (NP it) (@S (VP (@VP (VP (VBD was) (ADJP open)) (CC and)) (VP (VBD shut) (NP (JJ <url>) (NN issue)))) (. .)))))
216645 (ROOT (PP (IN for) (NP (PRP$ your) (@NP (JJ next) (@NP (NN project) (NN can))))) (@S (NP you) (@S (VP (@VP (VBP find) (NP something)) (SBAR (IN that) (S (NP doesnt) (VP (VBP make) (S (NP (NP (PRP$ your) (NN fanclub)) (PP (IN at) (NP (DT the) (@NP (NN wikipedia) (NN review))))) (ADJP angry)))))) (. ?))))
9737 (ROOT (NP i) (@S (ADVP often) (@S (VP (@VP (VBP work) (PRT out)) (UCP (UCP (@UCP (PP (IN of) (NP sweden)) (CC and)) (NP (@NP (NP (NP (NP i) (SBAR (@VP (@VP (VBP have) (NP (DT an) (@NP (JJ excellent) (@NP (, ,) (@NP (JJ free) (@NP (, ,) (@NP (JJ built-in) (@NP (NN english) (@NP (CC or) (@NP (NN swedish) (@NP (NN grammar) (@NP (CC and) (@NP (NN spelling) (NN program)))))))))))))) (PP (IN in) (NP (NP word) (PP (IN on) (NP (DT that) (NN computer)))))) (S (VBG using) (NP firefox)))) (PRN (-LRB- -LRB-) (@PRN (SBAR (IN as) (S (NP (DT this) (NN user)) (VP (VBZ says) (SBAR (NP she) (VP does))))) (-RRB- -RRB-)))) (: -)) (NP (@NP (NP (JJ red) (NNS underlinings)) (PP (IN for) (NP (@NP (NN spelling) (CC and)) (NN green)))) (PP (IN for) (NP grammar))))) (@UCP (: -) (SBAR (WHNP which) (S (MD would) (VP (@VP (@VP (@VP (VP (VB preclude) (NP (NP (RB almost) (DT all)) (PP (IN of) (NP (NP (DT the) (@NP (JJ huge) (NN amount))) (PP (IN of) (NP (NP problems) (VP (VBN caused) (PP (IN by) (NP (NP (DT this) (NN user)) (VP (VBG regarding) (ADVP readability))))))))))) (, ,)) (CC or)) (ADVP (IN at) (JJS least))) (VP (@VP (VP (@VP (VB alert) (NP her)) (PP (TO to) (NP (NP (DT the) (@NP (JJ very) (NN quanitity))) (PP (IN of) (NP (DT the) (NNS problems)))))) (CC and)) (VP (@VP (VB inspire) (NP (DT a) (@NP (JJ constructive) (NN attitude)))) (PP (IN as) (PP (TO to) (NP (PRP$ her) (@NP (JJ own) (NN capacity))))))))))))) (. .))))
9737 (ROOT (SBAR (ADVP perhaps) (@SBAR (IN if) (S (NP one) (VP (@VP (VBZ does) (RB not)) (VP (@VP (VB consider) (S (NP it) (NP (NP (DT a) (NN duty)) (PP (IN of) (NP sorts))))) (S (TO to) (VP (@VP (VB contribute) (NP (JJ readable) (NN english))) (ADVP here)))))))) (@S (, ,) (@S (NP that) (@S (ADVP actually) (@S (VP (MD might) (VP (VB be) (NP (DT the) (NN problem)))) (. ?))))))
55457 (ROOT (NN hablo) (@NP (NNS ingles) (. ?)))
55457 (ROOT .)
55457 (ROOT (NP roflmao) (. ?))
98833 (ROOT (NP i) (@S (VP (VBP 'm) (ADJP (VBN disappointed) (SBAR (IN that) (S (NP (PRP$ your) (@NP (JJ first) (NN response))) (@S (ADVP here) (VP (VBD was) (S (@VP (@VP (VP (TO to) (VP (@VP (VB revert) (NP me)) (PP (IN without) (NP discussion)))) (, ,)) (CC and)) (VP (TO to) (VP (VB assert) (NP (NP (DT a) (NN consensus)) (SBAR (WHNP that) (S (@VP (VBD was) (RB not)) (ADJP apparent))))))))))))) (. .)))
98833 (ROOT (SBAR (IN before) (S (NP you) (VP (VBP choose) (S (TO to) (VP (@VP (VB revert) (NP me)) (ADVP again)))))) (@SQ (, ,) (@SQ (@SQ (@SQ (MD can) (NP you)) (VP (VB please) (S (@VP (@VP (VB participate) (PP (IN in) (NP (NP (DT the) (NN discussion)) (PP (IN at) (NP wt))))) (: :)) (ADVP rd)))) (. ?))))
421765 (ROOT (PP (IN on) (NP (DT a) (@NP (ADJP (RBR more) (JJ practical)) (NN note)))) (@S (: :) (@S (NP one) (@S (VP (CC either) (@VP (@VP (VP does) (CC or)) (VP (@VP (VBZ does) (RB n't)) (VP (VB agree) (S (TO to) (VP (@VP (VB take) (NP part)) (PP (IN in) (NP mediation)))))))) (. .)))))
421765 (ROOT (SBAR (WHNP which) (S (VBZ is) (NP it))) (@S (, ,) (@S (VP please) (. ?))))
240310 (ROOT (SBAR (WHNP (NP (DT this) (NN statement)) (PP (IN by) (NP (DT the) (@NP (CD four) (NNS deuces))))) (S (NP <url>) (VP (@VP (VBZ makes) (NP (JJ little) (NN sense))) (PP (TO to) (NP me))))) (@SQ (, ,) (@SQ (@SQ (@SQ (@SQ (VBZ does) (NP (DT this) (NN user))) (ADVP often)) (VP (VB obfuscate) (PP (IN like) (NP this)))) (. ?))))
240310 (ROOT (NP (DT the) (NN source)) (@S (VP (VBZ is) (ADJP (RB quite) (@ADJP (JJ unambiguous) (PP (IN in) (S (VBG stating) (NP (NP (JJ communist) (NNS terrorists)) (SBAR (WHADVP how) (S (PP (IN on) (NP earth)) (VP (VBZ does) (S (NP this) (@S (RB not) (VP (VB mean) (SBAR (NP (DT the) (NN author)) (VP (VBZ is) (VP (VBG talking) (PP (IN of) (NP (JJ communist) (NN terrorism)))))))))))))))))) (. ?)))
614362 (ROOT (S (VBG <url>) (ADVP honestly)) (@S (, ,) (@S (NP i) (@S (VP (MD 'd) (VP (VB like) (S (TO to) (VP (VB know) (SBAR (IN if) (S (NP you) (@S (ADVP really) (VP (VBP are) (VP (VBG defending) (NP <url>)))))))))) (. .)))))
614362 (ROOT (@SQ (@SQ (@SQ (VBP do) (NP you)) (ADVP really)) (VP (VB believe) (SBAR (IN that) (S (NP they) (VP (VBD were) (ADJP justified)))))) (. ?))
622124 (ROOT (@S (@S (@S (@S (S (NP i) (VP (VBP understand) (NP (PRP$ your) (NN position)))) (, ,)) (S (ADVP however) (@S (NP i) (VP (VBP disagree) (PP (IN with) (NP it)))))) (, ,)) (PP (ADVP even) (@PP (VBG regarding) (NP (DT the) (NN spirit))))) (. .))
622124 (ROOT (S (@VP (VBG <ins>) (ADVP mostly)) (SBAR (IN because) (S (NP i) (VP (@VP (VBP do) (RB n't)) (VP (VB see) (S (@VP (VBG linking) (NP something)) (PP (IN as) (NP (NP modification) (PP (IN of) (NP (DT the) (NN quote))))))))))) (@S (, ,) (@S (ADVP therefore) (@S (NP it) (@S (VP (@VP (@VP (VBZ 's) (NP (DT a) (@NP (JJ moot) (NN point)))) (, ,)) (SBAR (RB even) (@SBAR (WHADVP when) (S (VBN coupled) (PP (IN with) (NP (JJ bracketed) (NNS additions))))))) (. .))))))
622124 (ROOT (S (VBG </ins>) (ADVP perhaps)) (@S (NP we) (@S (VP (MD should) (VP (@VP (VB see) (NP (JJ <ins>) (@NP (NN k) (@NP (NN </ins>) (NNS comments))))) (PP (IN from) (NP (JJ additional) (NNS editors))))) (. ?))))
598159 (ROOT (VP (@VP (VBG doing) (NP (ADJP (RB too) (JJ many)) (NNS things))) (PP (IN at) (NP once))) (. ?))
598159 (ROOT (RB not) (@FRAG (ADJP listening) (. ?)))
350757 (ROOT (PP (RB as) (@PP (IN for) (S (VBG restoring) (NP (DT the) (NN image))))) (@S (, ,) (@S (NP (DT no) (FW i)) (@S (VP (MD will) (RB not)) (. .)))))
350757 (ROOT (@SQ (@SQ (VBD did) (NP you)) (VP (VB consider) (SBAR (@SBAR (@SBAR (SBAR (IN that) (S (NP you) (VP (VBP are) (VP (VBG asking) (S (NP me) (VP (TO to) (VP (@VP (VB put) (PRT up)) (NP (NP (DT an) (NN image)) (SBAR (WHPP (IN for) (WHNP which)) (S (NP i) (VP (VBP know) (SBAR (NP (DT the) (@NP (JJ fair) (NN use))) (VP (VBP claim) (S (TO to) (VP (VB be) (ADJP bogus)))))))))))))))) (, ,)) (CC and)) (SBAR (IN that) (S (NP this) (VP (VBZ is) (ADJP illegal))))))) (. ?))
524052 (ROOT (NP it) (@S (VP (VBD was) (VP (@VP (VBN closed) (PP (IN as) (NP (@NP (NP (DT no) (NN consensus)) (, ,)) (NP default)))) (S (TO to) (VP keep)))) (. .)))
524052 (ROOT (WHNP (WDT what) (NN difference)) (@SBARQ (SQ (@SQ (VBZ does) (NP it)) (VP make)) (. ?)))
629705 (ROOT (WHADVP where) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (VB learn) (NP english))) (. ?)))
629705 (ROOT (WHNP how) (@SBARQ (SQ (VBP come) (SBAR (NP you) (VP (VBP 're) (VP (VBG taking) (PP (IN on) (NP (DT a) (@NP (JJ third) (NN language)))))))) (. ?)))
156487 (ROOT (NP you) (@S (VP (VBP have) (VP (@VP (VBN reverted) (NP (@NP (@NP (@NP (@NP (NP (CD four) (NNS times)) (, ,)) (NP (NP sarek) (NP-TMP (CD three) (NNS times)))) (, ,)) (CC and)) (NP (DT an) (NN ip)))) (ADVP once))) (. .)))
156487 (ROOT (@SQ (@SQ (VBP do) (NP i)) (VP (@VP (VB take) (NP it)) (SBAR (IN that) (S (NP you) (VP (VBP are) (VP (VBG declining) (S (TO to) (VP (VB undo) (NP (PRP$ your) (NN edit)))))))))) (. ?))
608090 (ROOT (@S (@S (S (NP you) (VP wrote)) (: :)) (S (NP i) (VP (@VP (VBP 'm) (RB not)) (VP (@VP (VBG trying) (S (TO to) (VP (@VP (@VP (VP (VB be) (ADJP obtuse)) (, ,)) (CC but)) (VP is)))) (SBAR (WHNP what) (S (NP you) (VP (VBP 're) (VP (@VP (VBG saying) (PP (IN in) (NP essence))) (SBAR (@SBAR (IN that) (IN if)) (S (NP we) (VP (@VP (MD can) (RB not)) (VP (VB tell) (SBAR (IN whether) (S (NP (DT an) (NN award)) (VP (@VP (@VP (VBZ is) (ADJP (RB utterly) (JJ trivial))) (ADVP then)) (SBAR (IN that) (S (NP uncertainty) (VP (VBZ becomes) (NP (NP (JJ sufficient) (NN assertion)) (PP (IN of) (NP (ADJP (JJ notability) (S (TO to) (VP (RB not) (VB apply)))) (NNS a7)))))))))))))))))))))) (. ?))
608090 (ROOT (SBAR (RB so) (@SBAR (IN if) (S (@S (@S (S (NP (DT an) (NN assumption)) (VP (VBZ needs) (S (TO to) (VP (VB be) (VP made))))) (, ,)) (CC or)) (S (NP discretion) (VP employed))))) (@S (, ,) (@S (NP a7) (@S (VP (@VP (VBZ does) (RB n't)) (VP (VB apply) (SBAR (IN because) (S (NP (NP (DT the) (NN assertion)) (PP (IN of) (NP notability))) (VP (VBZ has) (VP (VBN been) (VP made))))))) (. ?)))))
577189 (ROOT (NP he) (@S (VP (@VP (@VP (VP (@VP (VBZ keeps) (NP coming)) (ADVP back)) (, ,)) (CC and)) (VP (VBZ keeps) (S (VBG getting) (VP (VBN blocked) (ADVP again))))) (. .)))
577189 (ROOT (WHADVP when) (@SBARQ (SQ (@SQ (MD will) (NP they)) (VP learn)) (. ?)))
501425 (ROOT (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP (VB understand) (SBAR (WHADVP why) (S (NP hong) (VP (@VP (@VP (VBZ is) (ADJP (RB so) (JJ reluctant))) (S (TO to) (VP (@VP (VB revert) (NP (JJ unilateral) (NNS changes))) (PP (IN from) (NP time-to-time))))) (SBAR (WHADVP when) (S (NP he) (VP (@VP (@VP (VBD did) (ADVP (RB so) (RB frequently))) (PP (IN in) (NP (DT the) (NN past)))) (SBAR (WHADVP when) (S (NP (@NP (NP i) (CC or)) (NP (NP someone) (SBAR (WHNP (RB else) (WP who)) (S (VBD supported) (NP (PRP$ my) (NNS edits)))))) (VP (VBD did) (NP it)))))))))))) (. .)))
501425 (ROOT (WHNP (WP what) (RB exactly)) (@SBARQ (SQ (VBZ is) (NP (NP (DT the) (NN point)) (PP (IN in) (S (NP me) (VP (@VP (VBG agreeing) (PP (TO to) (NP this))) (SBAR (IN if) (S (NP (NN someone) (NNS conveniently)) (VP (@VP (@VP (VP (VBZ comes) (PRT along)) (CC and)) (ADVP then)) (VP (@VP (VBZ starts) (S (VBG making) (NP (NP lots) (PP (IN of) (NP changes))))) (SBAR (IN that) (S (NP i) (VP (@VP (VBP do) (RB n't)) (VP (VB like) (SBAR (CC but) (S (NP giovanni) (VP (@VP (VBZ does) (RB n't)) (VP mind))))))))))))))))) (. ?)))
357200 (ROOT (PP (RB just) (NP fyi)) (@S (, ,) (@S (NP i) (@S (VP (VBP have) (VP (VBN decided) (S (TO to) (VP (@VP (VP (VB be) (ADJP <url>)) (CC and)) (VP (@VP (VB remove) (NP (DT the) (NN screenshot))) (PP (IN at) (NP (NP (DT the) (NN top)) (PP (IN of) (NP (DT the) (NN article)))))))))) (. .)))))
357200 (ROOT (@S (@S (S (NP there) (VP (@VP (VBZ is) (ADVP already)) (NP (NP (DT a) (NN link)) (PP (TO to) (NP (NP (DT a) (NN mirror)) (PP (IN of) (NP (NP goatse.cx) (PP (IN in) (NP (JJ external) (NNS links)))))))))) (, ,)) (RB so)) (SBARQ (WHADVP why) (@SBARQ (SQ (NP (NN force) (NNS readers)) (PP (TO to) (NP (NP look) (PP (IN at) (NP that))))) (. ?))))
36069 (ROOT (S (NP i) (VP (VBP 'm) (ADJP (NP (DT a) (RB little)) (JJ surprised)))) (@S (NP you) (@S (VP (@VP (VBP have) (RB n't)) (VP (@VP (VBN responded) (PP (TO to) (NP (PRP$ my) (NNS suggestions)))) (S (@VP (VBG regarding) (NP (DT the) (NN gan))) (ADVP yet)))) (. .))))
36069 (ROOT (@SQ (@SQ (@SQ (SQ (@SQ (VBZ is) (NP there)) (NP (NP (DT some) (NN sort)) (PP (IN of) (NP (NP (DT a) (NN problem)) (ADVP there))))) (, ,)) (CC or)) (SQ (@SQ (VBP have) (NP you)) (VP (ADVP (RB just) (RB not)) (@VP (VBN managed) (S (TO to) (VP (@VP (@VP (VB get) (PRT around)) (PP (TO to) (NP it))) (ADVP yet))))))) (. ?))
620039 (ROOT (ADVP ok) (@S (, ,) (@S (NP (RB so) (@NP (DT a) (NN website))) (@S (VP (@VP (MD might) (RB not)) (VP (@VP (VB be) (ADJP reliable)) (SBAR (RB even) (@SBAR (IN if) (S (NP (PRP$ its) (NNS sources)) (VP (VBP are) (PRN (-LRB- -LRB-) (@PRN (PP (IN despite) (NP (NP (DT the) (NN convenience)) (PP (IN in) (S (@VP (@VP (VBG showing) (PP (DT both) (@PP (IN on) (NP (NP wikipedia) (PP (IN for) (NP guidance)))))) (, ,)) (PP (IN as) (NP (JJ mere) (@NP (NN reading) (NN material)))))))) (-RRB- -RRB-))))))))) (. .)))))
620039 (ROOT (CC but) (@S (SBAR (WHNP what) (S (NP you) (VP (VBD failed) (S (TO to) (VP explain))))) (@S (VP is) (. .))))
620039 (ROOT (WHADVP why) (@SBARQ (SQ (VBZ is) (NP (DT this) (@NP (ADJP (@ADJP (ADJP particular) (CC and)) (ADJP (JJ unmentioned) (PP (IN by) (NP (DT the) (NNS rules))))) (@NP (NN website) (NN unreliable))))) (. ?)))
179474 (ROOT (ADVP um) (@S (, ,) (@S (NP you) (@S (VP (VBP know) (SBAR (IN that) (S (NP (NP (DT the) (@NP (JJ last) (NN couple))) (PP (IN of) (NP replies))) (VP (VBP have) (VP (@VP (VBN been) (PP (IN from) (NP (NN someone) (JJ other)))) (PP (IN than) (NP esprqii))))))) (. ?)))))
179474 (ROOT (JJ right) (. ?))
97672 (ROOT (@S (@S (@S (S (ADVP hmmm) (@S (, ,) (@S (NP you) (VP (@VP (VBP are) (ADVP basically)) (VP (@VP (VP (VBG asking) (S (NP me) (VP (TO to) (VP (@VP (VB think) (ADVP positively)) (PP (IN despite) (NP evidence)))))) (CC and)) (VP (VBG knowing) (SBAR (IN that) (S (PP (IN over) (NP (DT this) (@NP (NN issue) (NN none)))) (@S (NP (NP (JJ good) (NN faith)) (PP (IN on) (NP (NP part) (PP (IN of) (NP (DT some) (NNS users)))))) (VP (VBD was) (VP (VBN showed) (PP (IN in) (NP past))))))))))))) (, ,)) (CC but)) (S (ADVP ok) (@S (, ,) (@S (NP letxb4s) (VP (VBP see) (SBAR (WHADVP how) (S (NP it) (VP goes)))))))) (. .))
97672 (ROOT (@S (@S (@S (S (NP (DT the) (NN question)) (@S (ADVP then) (VP (@VP (VBZ is) (: :)) (SQ (@SQ (VBP do) (NP you)) (VP (VB consider) (PP (VBG including) (NP (@NP (NP (DT the) (NNS discussions)) (PP (IN with) (NP (JJ outside) (@NP (NN mediation) (NNS participants))))) (SBAR (WHNP that) (S (VBN happend) (PP (IN on) (NP (DT those) (NNS talk-pages)))))))))))) (PRN (-LRB- -LRB-) (@PRN (S (NP (@NP (@NP (NP direktor) (, ,)) (PP (IN for) (NP exemple))) (, ,)) (VP (VBZ has) (VP (@VP (VBN been) (ADJP (@ADJP (@ADJP (ADJP (RB very) (JJ active)) (CC and)) (ADJP enthusiastic)) (ADVP there))) (ADVP lately)))) (-RRB- -RRB-)))) (CC or)) (S (NP (RB only) (@NP (DT the) (@NP (JJ in-mediation) (NNS discussions)))) (VP (VBP are) (NP (NP (DT the) (NNS ones)) (SBAR (WHNP that) (S count)))))) (. ?))
476595 (ROOT (@S (@S (S (NP i) (VP (@VP (VBD replied) (PP (TO to) (NP you))) (ADVP <url>))) (CC but)) (S (NP you) (VP (@VP (VBD did) (RB n't)) (VP answer)))) (. .))
476595 (ROOT (@SQ (@SQ (VBD did) (NP you)) (VP (RB not) (@VP (VB see) (NP it)))) (. ?))
328014 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (@VP (VBG trying) (S (TO to) (VP (@VP (@VP (VB delete) (NP (PRP$ my) (@NP (NN user) (NN page)))) (, ,)) (ADVP (RB literally) (NP (QP (JJR less) (@QP (IN than) (DT a))) (NN minute)))))) (SBAR (IN after) (S (NP i) (VP (VBD began) (NP it)))))) (. .)))
328014 (ROOT (NP you) (VP (VBP are) (VP (@VP (VBN allowed) (S one)) (SBAR (IN so) (FRAG (WHADVP why) (@SBARQ (SQ (RB not) (NP me)) (. ?)))))))
384125 (ROOT (@S (@S (@S (S (NP (DT the) (@NP (JJ ya) (NN article))) (VP (VBZ is) (NP (DT a) (@NP (JJ right) (NN trainwreck))))) (, ,)) (CC and)) (S (S (VBG having) (VP (VBN had) (S (TO to) (VP (VB do) (NP (NP much) (PP (IN of) (NP (NP (DT the) (@NP (JJ exact) (@NP (JJ same) (NN work)))) (PP (IN on) (NP (@NP (NNP <url>) (CC and)) (NNP <url>)))))))))) (@S (, ,) (@S (NP i) (VP (@VP (VBP 'm) (RB not)) (ADJP (JJ keen) (S (TO to) (VP (@VP (@VP (@VP (VP (@VP (@VP (@VP (VB do) (NP it)) (ADVP again)) (NP-TMP (DT a) (@NP-TMP (JJ third) (NN time)))) (PP (IN on) (NP <url>))) (, ,)) (CC and)) (ADVP then)) (VP (@VP (VB defend) (NP (CD three) (@NP (JJ separate) (NNS articles)))) (PP (IN from) (NP (JJ identical) (@NP (NN pov) (NNS pushes))))))))))))) (. .))
384125 (ROOT (NNS thoughts) (. ?))
581772 (ROOT (S (NP (DT the) (NN review)) (VP (VBZ has) (VP (@VP (VBN been) (ADVP (RB up) (RB there))) (PP (IN for) (NP (NP something) (PP (IN like) (NP (CD six) (NNS weeks)))))))) (@S (, ,) (@S (NP i) (@S (VP notice) (. .)))))
581772 (ROOT (VP (VB think) (SBAR (NP you) (VP (MD 'll) (VP (VB be) (ADJP (JJ able) (S (TO to) (VP (VB take) (NP (NP care) (PP (IN of) (NP (NP (DT those) (@NP (JJ last) (NN couple))) (PP (IN of) (NP things)))))))))))) (. ?))
343273 (ROOT (NP i) (@S (VP (VBP consider) (ADJP (JJ <url>) (S (TO to) (VP (VB be) (NP (NP (DT the) (@NP (JJ single) (@NP (ADJP (RBS most) (JJ important)) (NN edit)))) (SBAR (NP i) (VP (@VP (VBP have) (ADVP ever)) (VP made)))))))) (. .)))
343273 (ROOT (NP god) (@SBARQ (, ,) (@SBARQ (WHNP what) (@SBARQ (SQ (VBZ is) (VP (VBG happening) (PP (IN with) (NP (NP (DT the) (@NP (JJ beatles) (NN coverage))) (PP (IN on) (NP wikipedia)))))) (. ?)))))
473874 (ROOT (PP (IN as) (NP (DT a) (@NP (NN side) (NN note)))) (@S (, ,) (@S (NP i) (@S (VP (@VP (@VP (VP (VBP 'm) (ADJP (ADJP (RB slightly) (VBN amused)) (SBAR (IN that) (S (PP (IN on) (NP (DT the) (@NP (CD one) (NN hand)))) (@S (, ,) (@S (NP you) (VP (@VP (@VP (VBP caution) (S (NP me) (@S (RB not) (VP (TO to) (VP (VB encourage) (NP (DT the) (@NP (NN penguieater) (NN troll)))))))) (, ,)) (S (ADVP explicitly) (VP (@VP (VBG striking) (PRT out)) (NP (DT the) (@NP (VBG mocking) (NN part)))))))))))) (, ,)) (CC but)) (VP (ADVP then) (PP (IN in) (NP (NP (DT the) (@NP (JJ same) (NN breath))) (SBAR (NP you) (VP (VB sign) (NP (NP (DT the) (NN finding)) (SBAR (WHNP that) (S (@VP (VBZ cites) (NP (DT those) (@NP (JJ same) (@NP (NN penguin) (NNS diffs))))) (PP (IN as) (NP (NP evidence) (PP (IN of) (NP (JJ terrible) (@NP (@NP (NNS insults) (CC and)) (NN intimidation))))))))))))))) (. .)))))
473874 (ROOT (ADVP (RB slightly) (RB inconsistent)) (@FRAG (, ,) (@FRAG (ADVP perhaps) (. ?))))
623829 (ROOT (NP i) (@S (VP (@VP (@VP (VP (VBP do) (RB not)) (, ,)) (CC nor)) (VP (@VP (@VP (VBP have) (RB i)) (ADVP ever)) (VP (@VP (VBN used) (NP (JJ other) (NNS accounts))) (PP (IN on) (NP wikipedia))))) (. .)))
623829 (ROOT (S (VBD did) (RB n't)) (@S (NP you) (@S (VP (@VP (VBP ask) (NP me)) (ADVP (DT this) (IN before))) (. ?))))
264394 (ROOT (@SQ (@SQ (MD would) (NP you)) (VP (VB like) (S (TO to) (VP elaborate)))) (. ?))
264394 (ROOT (WHADVP how) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (@VP (VBG empowering) (NP me)) (ADVP exactly))) (. ?)))
394185 (ROOT (@NP (@NP (NP <url>) (: -)) (NP (NP i) (VP (@VP (VBN removed) (NP (DT a) (NN see-also))) (PP (TO to) (NP (@NP (@NP (NP (DT a) (NN link)) (VP (VBN placed) (PP (IN by) (NP (NP (DT a) (NN coi-editor)) (VP (VBG pointing) (PP (TO to) (NP (NP (DT a) (NN topic)) (PP (IN about) (NP himself))))))))) (, ,)) (SBAR (WHNP which) (S (VBN duplicated) (NP (NP (DT an) (@NP (VBG existing) (NN link))) (PP (IN on) (NP (DT the) (@NP (JJ same) (NN topic)))))))))))) (. .))
394185 (ROOT (WHADJP (RB exactly) (WP what)) (@SBARQ (SQ (VBZ is) (VP (@VP (VBN <em>) (NP (PRP$ your) (@NP (JJ </em>) (NN reason)))) (PP (IN for) (NP (NP (DT the) (NN template)) (PP (IN on) (NP (PRP$ my) (@NP (NN user) (NN page)))))))) (. ?)))
629713 (ROOT (@S (@S (S (NP notability) (VP (VBZ is) (NP (NP (DT an) (NN issue)) (PP (IN of) (NP (JJ common) (NN sense)))))) (: :)) (S (NP you) (VP (VBP 're) (VP (VBG writing) (PP (IN for) (NP (@NP (NP (JJ other) (NNS people)) (, ,)) (SBAR (RB so) (@SBAR (WHNP what) (S (@VP (VBZ is) (ADJP notable)) (SBAR (IN for) (S (NP (@NP (@NP (@NP (NP you) (-LRB- -LRB-)) (CC or)) (NP me)) (-RRB- -RRB-)) (VP (@VP (VBZ is) (RB not)) (ADJP (RB that) (JJ relevant)))))))))))))) (. .))
629713 (ROOT (NP (PRP$ my) (@NP (JJ local) (NN shop))) (@S (VP (@VP (VBZ is) (ADJP (@ADJP (ADJP (RBR more) (JJ important)) (CC and)) (ADJP (JJ notable) (PP (TO to) (NP me))))) (UCP (PP (IN than) (NP wal-mart)) (@UCP (, ,) (@UCP (CC but) (SBAR (WHNP who) (S (, ,) (@S (ADVP (JJ other) (PP (IN than) (NP me))) (@S (, ,) (VP (ADVP actually) (VBZ cares)))))))))) (. ?)))
624848 (ROOT (JJ new) (@NP (NN dictator) (. ?)))
624848 (ROOT (WHNP who) (@SBARQ (SQ (VBZ 's) (NP (DT the) (@NP (JJ old) (NN one)))) (. ?)))
624848 (ROOT (CC and) (@SBARQ (WHNP who) (@SBARQ (SQ (VBP are) (NP (NP others) (PP (IN in) (NP (PRP$ your) (NN gang))))) (. ?))))
192825 (ROOT (ADJP lil-unique) (@SINV (@SINV (@SINV (VP (VBD told) (NP me)) (NP it)) (PP (IN with) (NP (NP (DT the) (NNS reasons)) (PP (IN of) (SBAR (WHNP what) (S (NP i) (VP (@VP (@VP (VBD put) (PP (IN in) (NP (PRP$ my) (@NP (JJ edit) (NN summary))))) (, ,)) (SBAR (RB so) (@SBAR (IN if) (S (NP you) (VP (VBP need) (S (NP (DT a) (@NP (JJR better) (NN explanation))) (VP (VB ask) (NP him)))))))))))))) (. .)))
192825 (ROOT (NP i) (@S (ADVP left) (@S (VP (@VP (VBD billboard) (ADJP (@ADJP (JJ hot) (NP-TMP 100)) (PP (IN as) (NP (NP billboard) (ADJP (JJ hot) (NP-TMP 100)))))) (SBAR (IN because) (S (NP that) (VP (VBZ 's) (NP (NP (DT the) (@NP (JJ exact) (NN name))) (PP (IN of) (NP (DT the) (NN chart)))))))) (. ?))))
124602 (ROOT (@SQ (@SQ (@SQ (VBD was) (NP it)) (NP you)) (SBAR (WHNP who) (S (@VP (@VP (VBN deleted) (NP (DT the) (NN section))) (PP (IN in) (NP (NP (NN victor) (@NP (NN garber) (POS 's))) (NN article)))) (PP (IN about) (NP (@NP (NP (PRP$ his) (NN sexuality)) (CC and)) (NP (PRP$ his) (NN partner))))))) (. ?))
124602 (ROOT (FRAG (IN if) (NP yes)) (@SBARQ (, ,) (@SBARQ (SBARQ (WHNP what) (SQ (VBD was) (NP (DT the) (NN reason)))) (. ?))))
629277 (ROOT (NP (NP (DT the) (@NP (JJ specific) (NN claim))) (PP (IN of) (NP boyer))) (@S (VP (VBZ 's) (SBAR (IN that) (S (@S (S (NP you) (VP included)) (CC and)) (S (NP (NP i) (VP deleted)) (VP (VBD was) (NP (NP (DT that) (@NP (ADJP (RB cauchy) (VBN based)) (NNS infinitesimals))) (PP (IN on) (NP limits)))))))) (. .)))
629277 (ROOT (@SQ (@SQ (VBD did) (NP you)) (VP (VB see) (S (NP anybody) (@S (ADJP else) (S (VBG saying) (NP this)))))) (. ?))
463473 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (MD ca) (RB n't)) (NP we)) (VP (@VP (VP (VB do) (PP (IN like) (NP imdb))) (CC and)) (VP (VB have) (NP (JJ multiple) (NNS ratings))))) (. ?)))
463473 (ROOT (@SQ (@SQ (@SQ (SQ (@SQ (VBZ is) (NP it)) (ADJP (RB that) (JJ simple))) (, ,)) (CC or)) (SQ (@SQ (VBP am) (NP i)) (ADJP crazy))) (. ?))
399080 (ROOT (VP wow) (. .))
399080 (ROOT (VP (VB please) (VP (@VP (VB tell) (NP me)) (SBAR (IN that) (S (NP this) (VP (MD will) (VP (VB be) (VP (VBG going) (S (TO to) (VP fac))))))))) (. ?))
60607 (ROOT (NP (DT the) (NN article)) (@S (VP (@VP (VBZ is) (RB not)) (PP (IN about) (NP (@NP (NP this) (, ,)) (ADVP (IN at) (DT all))))) (. .)))
60607 (ROOT (@SQ (@SQ (MD could) (NP you)) (VP (VB explain) (NP (PRP$ your) (NN logic)))) (. ?))
622914 (ROOT (NP that) (@S (VP (VBZ 's) (NP (DT the) (@NP (JJ british) (@NP (NN english) (NN spelling))))) (. .)))
622914 (ROOT (NP (NN american) (NN english)) (VP (@VP (@VP (@VP (VBZ wins) (PRT out)) (PP (IN on) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NP stuff) (PP (IN on) (NP wikipedia))))))) (, ,)) (SBAR (IN so) (FRAG (WHADVP why) (@FRAG (RB not) (@FRAG (VP (@VP (@VP (VB give) (NP (DT a) (NN cookie))) (PP (TO to) (NP (DT the) (NNS brits)))) (ADVP (@ADVP (RB now) (CC and)) (RB then))) (. ?)))))))
605764 (ROOT (INTJ yes) (@S (, ,) (@S (NP the) (@S (VP (VBZ licking) (NP (PRP$ my) (@NP (NNS balls) (NN thing)))) (. .)))))
605764 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP am) (NP i)) (ADJP (RB not) (JJ surprised))) (SBAR (IN that) (S (NP that) (VP (@VP (VBD was) (NP (PRP$ his) (NN work))) (ADVP too))))) (. ?)))
614424 (ROOT (ADVP cla) (@S (, ,) (@S (@S (@S (@S (S (NP (PRP$ your) (NN partisanship)) (VP (@VP (VBZ is) (ADVP indeed)) (ADJP (RB fairly) (JJ obvious)))) (, ,)) (CC and)) (S (S (VBG pointing) (PP (TO to) (NP (NP (CD one) (NN article)) (SBAR (WHADVP where) (S (NP you) (VP (@VP (VBP 've) (ADVP deliberately)) (VP (VBN been) (ADJP good)))))))) (VP (@VP (VBZ is) (RB n't)) (ADJP (JJ good) (RB enough))))) (. .))))
614424 (ROOT (SBAR (ADVP (RB so) (: :)) (@SBAR (IN if) (S (NP i) (VP (@VP (VBP point) (NP you)) (PP (TO to) (NP (NP (PRP$ my) (NN stand)) (PP (IN against) (NP ajl)))))))) (@SQ (, ,) (@SQ (@SQ (@SQ (MD will) (NP you)) (VP (VB declare) (S (NP me) (VP (TO to) (VP (VB be) (ADJP non-partisan)))))) (. ?))))
625194 (ROOT (@NP (@NP (NP sudoghost) (, ,)) (NP (RB just) (@NP (DT a) (NN question)))) (. .))
625194 (ROOT (@SQ (@SQ (VBP do) (NP you)) (VP (VB think) (SBAR (IN that) (S (S (ADVP simply) (@VP (VBG calling) (S (NP (NP (NN someone) (POS 's)) (NNS edits)) (ADJP disruptive)))) (VP (VBZ is) (ADJP (RB very) (JJ specific))))))) (. ?))
115596 (ROOT (PP (JJ such) (@PP (IN as) (NP (NP (DT the) (@NP (JJ redundant) (NN link))) (PP (TO to) (NP (@NP (NNP roe) (CC v.)) (NNP wade)))))) (. ?))
115596 (ROOT (RB not) (@NP (DT an) (@NP (NN improvement) (. ?))))
620595 (ROOT (NP i) (@S (VP (@VP (@VP (VBP do) (RB n't)) (ADVP really)) (VP (VB see) (NP (NP that) (PP (IN as) (NP (DT a) (NN problem)))))) (. .)))
620595 (ROOT (IN if) (S (NP it) (VP (VBZ 's) (NP (NP (DT a) (@NP (NN fringe) (NN position))) (FRAG (WHADVP why) (@FRAG (RB not) (@FRAG (VP (ADVP simply) (@VP (@VP (VB state) (NP it)) (PP (IN as) (NP such)))) (. ?))))))))
141299 (ROOT (NP i) (@S (VP (@VP (VBD did) (NP notice)) (SBAR (IN that) (S (NP (DT some) (NNS articles)) (VP (VBD linked) (PP (TO to) (NP (@NP (@NP (@NP (NP (DT the) (@NP (NNS ones) (NN i))) (VP (VBN worked) (PRT on))) (VP (@VP (VBP are) (ADVP now)) (ADJP missing))) (, ,)) (SBAR (WHNP which) (S (VBZ leaves) (NP (NP (DT a) (NN link)) (VP hanging)))))))))) (. .)))
141299 (ROOT (SBAR (IN if) (S (NP you) (VP (VBP 're) (VP (VBG going) (S (TO to) (VP (VB delete) (NP articles))))))) (@SQ (, ,) (@SQ (@SQ (@SQ (@SQ (MD should) (RB n't)) (NP someone)) (VP (@VP (VB clean) (PRT up)) (NP (DT these) (@NP (VBN broken) (NNS links))))) (. ?))))
28387 (ROOT (NP sovereignty) (@S (VP (VBZ is) (NP (NP something) (SBAR (NP (@NP (@NP (NP (DT a) (NN thing)) (, ,)) (PP (IN in) (NP (DT this) (@NP (NN case) (NN japan))))) (, ,)) (VP (@VP (VP possesses) (, ,)) (VP (ADVP hence) (NP (DT the) (NN apostrophe))))))) (. .)))
28387 (ROOT (ADVP so) (@SBARQ (WHNP what) (@SBARQ (SQ (VBZ 's) (NP (DT the) (NN problem))) (. ?))))
170195 (ROOT (NP (NN woohoo) (CD 279)) (@S (VP hits) (. !)))
170195 (ROOT (NP (NN hey) (NN scientist)) (@S (, ,) (@S (VP (VBZ is) (ADJP (NP (DT that) (@NP (DT an) (JJ all-time))) (JJ low))) (. ?))))
792 (ROOT (WHNP what) (@FRAG (PP (IN about) (NP (NP (NN race) (@NP (, ,) (@NP (@NP (NN ethnicity) (CC and)) (NN migration)))) (PP (IN in) (NP (NP (JJ modern) (NN japan)) (PRN (-LRB- -LRB-) (@PRN (NP (NN weiner) (CD 2004)) (-RRB- -RRB-))))))) (. ?)))
792 (ROOT (CC or) (@FRAG (NP (NP any) (PP (IN of) (NP (NP (DT the) (NNS dozens)) (PP (IN of) (NP (NP books) (SBAR (NP you) (VP (MD can) (VP (@VP (VB find) (PP (IN on) (NP google))) (PP (IN by) (S (VBG searching) (NP (JJ ainu) (@NP (JJ +) (NN honshu))))))))))))) (. ?)))
619538 (ROOT (UH well) (. ?))
619538 (ROOT (@SQ (@SQ (MD shall) (NP i)) (VP (VB request) (NP (JJ outside) (NN assistance)))) (. ?))
620908 (ROOT (VP huh) (. ?))
620908 (ROOT (@SQ (@SQ (VBZ is) (NP that)) (NP (@NP (NP (DT a) (@NP (NN web) (NN address))) (CC or)) (NP (DT a) (NN wikilink)))) (. ?))
420910 (ROOT (FRAG hello) (@S (: -) (@S (S (NP (NP some) (PP (IN of) (NP (PRP$ your) (NN writing)))) (VP (@VP (VBZ is) (ADJP (NP (DT a) (RB bit)) (JJ hard))) (S (TO to) (VP understand)))) (. .))))
420910 (ROOT (@SQ (@SQ (VBZ is) (NP english)) (NP (NP (@NP (NP (PRP$ your) (@NP (JJ first) (NN language))) (, ,)) (ADVP out)) (PP (IN of) (NP curiousity)))) (. ?))
590973 (ROOT (ADVP just) (@S (VP (VB think) (PP (IN about) (NP it))) (. .)))
590973 (ROOT (SBAR (IN if) (S (, ,) (@S (PP (IN unlike) (NP (JJ saudi) (NN arabia))) (@S (, ,) (@S (X the) (@S (NP us) (VP (@VP (@VP (VBZ is) (NP (NP (DT the) (NN land)) (PP (IN of) (NP (DT the) (JJ free))))) (, ,)) (ADVP then)))))))) (@SBARQ (WHNP how) (@SBARQ (SQ (VBP come) (SBAR (NP you) (VP (@VP (VBP are) (ADVP only)) (VP (VBN allowed) (S (TO to) (VP (VB drink) (NP <url>))))))) (. ?))))
622063 (ROOT (NP (NP (JJ lowell/lawrence) (@NP (NN blvd) (VBG leading))) (PP (IN from) (NP (ADJP (JJ lowell) (PP (TO to) (NP (DT the) (NN methuen)))) (NNS rotary)))) (@S (VP (@VP (VBZ is) (NP (NP (DT a) (NN device)) (PP (IN from) (NP hell)))) (ADVP (RB as) (RB well))) (. .)))
622063 (ROOT (WHNP (WHADJP (WRB how) (JJ many)) (NNS people)) (@SBARQ (SQ (@SQ (VBZ does) (NP (NP (DT that) (@NP (JJ short) (NN stretch))) (PP (IN of) (NP road)))) (VP (VB have) (S (TO to) (VP kill)))) (. ?)))
625272 (ROOT (NNS provocations) (. ?))
625272 (ROOT (WHADVP how) (@SBARQ (SQ (@SQ (VBZ is) (NP it)) (VP (VBG provoking) (S (TO to) (VP (@VP (VB suggest) (PP (TO to) (NP (DT an) (NN american-expat)))) (SBAR (IN that) (S (NP (NP (NN calling) (NNS people)) (PP (IN in) (NP (NN taiwan) (NN taiwanese)))) (VP (@VP (VBZ is) (RB not)) (ADJP controversial)))))))) (. ?)))
344227 (ROOT (@SQ (@SQ (VBZ is) (NP it)) (NP (NP (PRP$ your) (NN view)) (SBAR (IN that) (S (NP (DT the) (@NP (VBN united) (@NP (NNS states) (NN senate)))) (VP (@VP (VBZ does) (RB n't)) (VP (VB have) (NP (DT any) (NN credibility)))))))) (. ?))
344227 (ROOT (CC or) (@SBARQ (SQ (@SQ (@SQ (VBP are) (NP you)) (PP (IN of) (NP (DT the) (NN view)))) (SBAR (IN that) (S (NP (NP (DT some) (@NP (NN cyber) (NN truck))) (SBAR (IN that) (S (NP (NP zooms) (PP (IN around) (NP (DT the) (NN www)))) (VP (@VP (VP (MD must) (VP (VB have) (VP (@VP (VBN bumped) (PP (IN into) (NP (DT the) (@NP (NN web) (NN page))))) (PP (IN by) (NP accident))))) (CC and)) (VP (VBD dumped) (NP stuff)))))) (VP (VBD endorsed) (NP (DT the) (@NP (VBN united) (@NP (NNS states) (NN government)))))))) (. ?)))
234095 (ROOT (PP (IN on) (NP (NP <url>) (PP (IN about) (NP (DT the) (@NP (JJ chinese) (@NP (NN sex) (NN imbalance))))))) (@S (, ,) (@S (NP you) (@S (VP (VBD accused) (NP (NP (NP (CC either) (@NP (@NP (NP (DT the) (NN op)) (CC or)) (NP (DT the) (@NP (JJ first) (NN responder))))) (PRN (-LRB- -LRB-) (@PRN (NP me) (-RRB- -RRB-)))) (PP (IN of) (NP <url>)))) (. .)))))
234095 (ROOT (@SQ (@SQ (MD could) (NP you)) (VP (VB explain) (SBAR (WHADVP why) (S (NP you) (VP (VBD thought) (SBAR (NP (NP either) (PP (IN of) (NP us))) (VP (VBD was) (VP (@VP (@VP (@VP (@VP (VP advocating) (, ,)) (VP opining)) (, ,)) (CC or)) (VP (@VP (VBG recruiting) (, ,)) (PP (IN in) (NP (NP (DT a) (NN way)) (SBAR (WHNP that) (S (VBD diminished) (NP (NP (DT the) (NN quality)) (PP (IN of) (NP (DT the) (@NP (NN reference) (NN desk)))))))))))))))))) (. ?))
491740 (ROOT (NP this) (@S (VP (VBD was) (VP (VBN supposed) (S (TO to) (VP (VB have) (VP (VBN been) (VP (VBN moved) (PP (TO to) (NP (NP <url>) (PP (IN per) (NP (DT the) (NN cfd))))))))))) (. .)))
491740 (ROOT (WHADVP why) (@SBARQ (SQ (VBD was) (ADJP (RB n't) (SBAR (NP it) (VP moved)))) (. ?)))
498529 (ROOT (IN so) (@S (NP you) (@S (VP (@VP (VBD exchanged) (NP (PRP$ my) (NN suggestion))) (PP (IN with) (NP (DT an) (@NP (VBN expired) (NN nomination))))) (. .))))
498529 (ROOT (JJ right) (. ?))
420251 (ROOT (@S (@S (@S (S (NP i) (@S (ADVP certainly) (VP (VBP think) (SBAR (NP (JJR more) (NNS things)) (VP (MD should) (VP (VB be) (VP (VBN deleted) (PP (IN from) (NP enwiki))))))))) (, ,)) (CC but)) (S (ADVP thecommunity) (@S (-LRB- -LRB-) (@S (NP tm) (@S (-RRB- -RRB-) (VP (VBZ is) (ADJP fickle))))))) (. .))
420251 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (VBG complaining) (PP (IN about) (NP (NP something) (SBAR (NP i) (VP did)))))) (. ?))
215577 (ROOT (@S (@S (S (NP they) (VP (@VP (@VP (@VP (VP did) (CC and)) (VP (VBP have) (VP done))) (, ,)) (PP (@PP (PP (IN on) (NP (PRP$ my) (@NP (NN talk) (NN page)))) (CC and)) (PP (IN on) (S (NP (@NP (NP (PRP$ their) (@NP (NN talk) (NN page))) (CC and)) (NP (RB most) (@NP (DT the) (@NP (NN time) (NN im))))) (@S (RB not) (VP (ADVP really) (@VP (VBG doing) (NP anything))))))))) (CC and)) (S (NP i) (@S (ADVP always) (VP (VBP seem) (S (TO to) (VP (VB get) (NP (NP (DT the) (NN finger)) (VP (VBN pointed) (PP (IN at) (NP me)))))))))) (. .))
215577 (ROOT (ADVP so) (@SBARQ (WHNP what) (@SBARQ (SQ (VBP do) (SBAR (NP you) (VP (VBP expect) (S (NP me) (VP (TO to) (VP (VB do) (SBAR (IN if) (S (NP someone) (VP (VBZ is) (ADJP (JJ uncivil) (PP (IN towards) (NP me)))))))))))) (. ?))))
628216 (ROOT (NP you) (@S (VP (VBP see) (SBAR (WHADVP how) (S (NP (NP time) (VP (@VP (@VP (VBG consuming) (CC and)) (VBG annoying)) (NP it))) (VP (VBZ is) (SBAR (WHADVP when) (S (NP (DT a) (NN person)) (VP (VBZ keeps) (PP (IN on) (S (VBG telling) (S (NP you) (VP (TO to) (VP (VB provide) (NP (DT a) (NN source)))))))))))))) (. .)))
628216 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB want) (ADJP (JJ michael) (S (TO to) (VP (VB be) (NP (RB just) (@NP (DT another) (@NP (NN compilation) (NN album))))))))) (. ?)))
72763 (ROOT (NP i) (@S (VP (@VP (@VP (VP started) (, ,)) (CC but)) (VP (VBD gave) (PRT up))) (. .)))
72763 (ROOT (@SQ (CC and) (FRAG (WHADVP why) (VP (VB link) (NP (DT the) (@NP (NN word) (@NP (`` `) (@NP (NN mother) ('' ')))))))) (. ?))
325929 (ROOT (@SQ (@SQ (VBP do) (NP we)) (VP (VB have) (NP (NP (DT an) (@NP (JJ automated-edit-using) (NN editor))) (SBAR (WHNP who) (S (VBZ 's) (VP (VBN decided) (S (TO to) (VP (ADVP just) (@VP (@VP (VB stick) (NP these)) (PP (IN in) (PP (IN for) (NP (NP (NNS completeness) (POS ')) (NN sake))))))))))))) (. ?))
325929 (ROOT (@SQ (@SQ (VBD did) (NP i)) (VP (VB miss) (NP (PDT all) (DT this)))) (. ?))
628341 (ROOT (NP (@NP (@NP (NP wait) (, ,)) (SBAR (WHNP that) (S (@VP (VBD was) (RB n't)) (NP (DT the) (NN question))))) (, ,)) (@S (VP (VBD was) (NP it)) (. .)))
628341 (ROOT (WHNP what) (@SBARQ (SQ (@VP (VBZ appears) (PP (IN after) (NP these))) (SBAR (IN that) (S (NP i) (VP (@VP (VBP do) (RB n't)) (VP have))))) (. ?)))
624790 (ROOT (NP (CD one) (@NP (JJ final) (NN thing))) (@S (: :) (@S (S (SBAR (IN if) (FRAG anything)) (@S (, ,) (@S (NP (JJ many) (NNS vegetarians)) (VP (VBP are) (VP (@VP (VBN characterized) (PP (IN by) (NP (NP (PRP$ their) (NN disapproval)) (PP (IN of) (NP non-violence))))) (PRN (-LRB- -LRB-) (@PRN (PP (IN towards) (NP animals)) (-RRB- -RRB-)))))))) (. .))))
624790 (ROOT (NP you) (@S (VP (VBP do) (VP (VB realise) (SBAR (IN that) (S (NP you) (VP (VBP are) (VP (@VP (@VP (@VP (VBG saying) (, ,)) (ADVP here)) (, ,)) (SBAR (IN that) (S (NP (JJ many) (NNS vegetarians)) (VP (VBP approve) (PP (IN of) (NP (NP violence) (PP (IN towards) (NP animals))))))))))))) (. ?)))
624790 (ROOT (@SQ (@SQ (VBZ is) (NP that)) (NP (NP really) (SBAR (WHNP what) (S (NP you) (VP meant))))) (. ?))
497049 (ROOT (CC and) (@S (NP this) (@S (VP (VBZ is) (NP (PRP$ your) (@NP (JJ first) (NN edit)))) (. .))))
497049 (ROOT (@SQ (@SQ (@SQ (VBZ is) (RB n't)) (NP that)) (ADJP interesting)) (. ?))
628427 (ROOT (@NP (NP (NP (DT a) (@NP (ADJP (RB remarkably) (JJ modern-sounding)) (NN name))) (PP (IN for) (NP something))) (VP (VBG being) (VP (VBN applied) (PP (TO to) (NP (NP articles) (PP (IN on) (NP (NP people) (SBAR (WHNP who) (S (VBP 've) (VP (@VP (VBN been) (ADJP dead)) (PP (IN for) (NP centuries)))))))))))) (. .))
628427 (ROOT (NP you) (@S (ADVP really) (@S (VP (VBP think) (SBAR (NP it) (VP (VBZ 's) (ADJP (JJ appropriate) (PP (IN for) (NP <url>)))))) (. ?))))
466963 (ROOT (SBAR (IN that) (S (NP you) (VP (MD would) (VP (@VP (VB consider) (NP (DT a) (NN section))) (SBAR (IN that) (S (NP he) (VP (@VP (@VP (VBD praised) (NP (DT a) (NN murderer))) (PRN (-LRB- -LRB-) (@PRN (VP (VBN referenced) (PP (TO to) (NP (NP (DT a) (NN website)) (VP (@VP (@VP (VBN dedicated) (PP (TO to) (NP (NN smear) (NNS campaigns)))) (, ,)) (ADVP (DT no) (RBR less)))))) (-RRB- -RRB-)))) (SBAR (IN as) (S (NP npov) (VP (VBZ is) (ADJP astonishing))))))))))) (. .))
466963 (ROOT (S (@VP (@VP (VBZ does) (RB n't)) (ADVP <url>)) (VP (@VP (VP (VB apply) (ADVP here)) (CC or)) (VP (VB do) (NP you)))) (@S (VP (VBP expect) (S (NP (JJ other) (NNS users)) (VP (TO to) (VP (@VP (VB turn) (NP (DT the) (NN attack))) (PP (IN into) (NP (NN something) (NNS npov))))))) (. ?)))
624021 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (VBG trying) (S (TO to) (VP (VB help) (S (NP him) (VP (@VP (VB milk) (NP (DT the) (NN publicity))) (PP (IN over) (NP (DT the) (@NP (NN wr) (NN incident)))))))))) (. ?))
624021 (ROOT (IN if) (S (NP it) (VP (@VP (@VP (VBZ ends) (PRT up)) (PP (IN on) (NP (NP google) (PP (IN with) (NP (NP lots) (PP (IN of) (NP nns))))))) (SBAR (WHADVP why) (@SBARQ (SQ (@SQ (MD would) (NP that)) (VP matter)) (. ?))))))
203736 (ROOT (SBAR (IN unless) (S (NP you) (VP (@VP (@VP (VBP provide) (NP (DT a) (@NP (NN wikipedia) (NN article)))) (, ,)) (PP (IN with) (NP (NP (JJ solid) (@NP (NNS references) (@NP (NN od) (NN proof)))) (PP (IN of) (NP (NP notability) (PP (IN of) (NP (DT the) (NN term)))))))))) (@S (, ,) (@S (NP i) (@S (VP (VBP am) (VP (VBG going) (S (TO to) (VP (VB delist) (NP it))))) (. .)))))
203736 (ROOT (NP i) (@S (VP (@VP (@VP (VP (@VP (VBP ave) (NP (DT no) (NNS doubts))) (SBAR (IN that) (S (NP there) (VP (VBD was) (NP (NP (DT a) (NN dilike)) (PP (IN of) (NP (NP portugals) (PRN (-LRB- -LRB-) (@PRN (PP (IN like) (NP (DT any) (@NP (JJ other) (@NP (JJ major) (NN nation))))) (-RRB- -RRB-)))))))))) (, ,)) (CC but)) (VP (VBD was) (NP (NP (DT this) (NN word)) (PP (IN in) (NP (JJ notable) (NN circulation)))))) (. ?)))
40765 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (@VP (VB have) (NP (NP (DT a) (NN problem)) (PP (IN with) (NP (NP (DT the) (NN inclusion)) (PP (IN of) (NP (NP (NN lady) (@NP (NN bristol) (POS 's))) (NN persona))))))) (ADVP (RB prior) (PP (TO to) (NP (PRP$ her) (@NP (JJ 2nd) (NN marriage))))))) (. ?)))
40765 (ROOT (VP (VB and) (PP (TO to) (NP (NP (DT the) (NN inclusion)) (PP (IN of) (NP (NP (NN somerset) (POS 's)) (NN son-in-law)))))) (. ?))
619505 (ROOT (FRAG chriso) (@SINV (, ,) (@SINV (@SINV (@SINV (VP (VBP am) (VP (@VP (VP (VBN i) (S (VBG being) (ADJP paranoiac))) (CC or)) (VP are))) (NP you)) (S (@VP (VBG undertaking) (NP (NP (DT some) (NN kind)) (PP (IN of) (NP campaign)))) (PP (IN against) (NP me)))) (. ?))))
619505 (ROOT (WHNP (WP what) (RB exactly)) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG referring) (PP (TO to) (NP (DT this) (NN time))))) (. ?)))
618619 (ROOT (INTJ eh) (@S (, ,) (@S (NP i) (@S (VP (@VP (VBP 've) (ADVP always)) (VP (@VP (@VP (VBN hated) (NP (CD 50) (@NP (NN meter) (NNS pools)))) (PRN (-LRB- -LRB-) (@PRN (S (NP (CD 200) (NN butterfly)) (VP (@VP (VBD was) (ADVP always)) (NP (NP (DT the) (@NP (JJS biggest) (NN pain))) (PP (IN in) (NP (DT the) (NN ass)))))) (-RRB- -RRB-)))) (SBAR (IN although) (S (NP i) (@S (ADVP really) (VP (@VP (VBD did) (PP (IN like) (NP butterfly))) (PP (IN for) (NP (DT some) (NN reason))))))))) (. .)))))
618619 (ROOT (ADVP (RB never) (RB quite)) (@SINV (VP (VBD got) (SBAR (@SBAR (WHNP that) (, ,)) (S (ADVP so) (VP (VBD was) (NP it))))) (NP (NP (DT an) (@NP (JJ indoor) (@NP (CC or) (@NP (JJ outdoor) (NN pool))))) (ADJP ????))))
430063 (ROOT (ADVP ps) (@S (, ,) (@S (NP i) (@S (VP (@VP (MD would) (ADVP seriously)) (VP (@VP (@VP (VB like) (NP (DT an) (NN answer))) (PP (TO to) (NP (PRP$ my) (NN question)))) (PP above))) (. .)))))
430063 (ROOT (@SBARQ (SBARQ (WHNP what) (SQ (VBZ is) (NP (PRP$ your) (@NP (JJ native) (NN language))))) (CC and)) (SBARQ (WHADVP where) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB come) (PP from))) (. ?))))
618840 (ROOT (ADVP ok) (@S (, ,) (@S (NP i) (@S (VP (MD 'll) (VP bite)) (. .)))))
618840 (ROOT (WHADVP how) (@SBARQ (SQ (VBZ is) (NP (NP (JJ matt) (@NP (JJ dirty) (NN sanchez))) (S (TO to) (VP (VB be) (VP (VBN construed) (PP (IN as) (NP (NP (NN anything) (JJ other)) (PP (IN than) (NP (DT a) (@NP (JJ personal) (NN attack))))))))))) (. ?)))
627166 (ROOT (@S (@S (@S (S (NP that) (VP (VBZ sounds) (ADJP fine))) (, ,)) (CC but)) (S (SBAR (WHADVP why) (S would)) (@S (NP you) (VP (VBP want) (NP (NP somebody) (SBAR (WHNP who) (S (@VP (VBZ knows) (NP nothing)) (PP (IN about) (NP (DT the) (@NP (NN show) (S (TO to) (VP (VB write) (NP them))))))))))))) (. ?))
627166 (ROOT (SBAR (IN if) (S (NP you) (VP (VBP are) (VP (VBN informed) (PP (IN about) (NP it)))))) (@SQ (, ,) (@SQ (@SQ (@SQ (@SQ (MD would) (RB n't)) (NP you)) (VP (VB be) (NP (DT a) (@NP (JJ good) (@NP (NN person) (S (TO to) (VP (VB do) (NP it)))))))) (. ?))))
287205 (ROOT (NP i) (@S (VP (@VP (VBP am) (PP (IN for) (NP (DT some) (NN reason)))) (ADJP (VBN disappointed) (SBAR (IN that) (S (NP it) (VP (VBD took) (S (NP me) (@S (ADVP (NP (DT a) (@NP (JJ few) (NNS seconds))) (RB longer)) (VP (TO to) (VP (@VP (VB pick) (PRT up)) (NP (NP (DT the) (@NP (FW bon) (@NP (NN jovi) (NN reference)))) (SBAR (IN than) (S (NP it) (VP (VBD did) (NP (DT the) (@NP (JJ tom) (@NP (JJ petty) (NN one))))))))))))))))) (. .)))
287205 (ROOT (@SQ (@SQ (VBZ does) (NP that)) (VP (VB mean) (SBAR (NP (DT the) (NNS terrorists)) (VP (@VP (VBP have) (ADVP already)) (VP won))))) (. ?))
328996 (ROOT (PP (IN of) (NP (CD <url>) (RB as))) (@S (NP those) (@S (VP (@VP (VBD were) (ADVP just)) (NP (NP (ADJP (RB plain) (JJ old)) (NN copyedit)) (PRN (-LRB- -LRB-) (@PRN (VP (VBG replacing) (NP (@NP (NP begining) (PP (IN of) (NP paragraph))) (SBAR (NP he) (VP (VBZ 's) (PP (IN with) (NP (@NP (NP (DT the) (NN name)) (CC and)) (NP (DT a) (@NP (JJ template) (NN fix))))))))) (-RRB- -RRB-))))) (. .))))
328996 (ROOT (NP i) (@S (VP (VBP 'm) (VP (VBG assuming) (SBAR (NP you) (VP (@VP (VBD were) (PP (IN on) (NP (DT the) (@NP (NN cell) (NN phone))))) (ADVP again))))) (. ?)))
389055 (ROOT (ADVP again) (@S (, ,) (@S (NP what) (@S (VP (MD would) (VP (VB be) (NP (NP (DT the) (NN point)) (PP (IN of) (NP redirection))))) (. ?)))))
389055 (ROOT (WHNP (WHNP who) (PP (IN on) (NP earth))) (@SBARQ (SQ (VBZ is) (VP (VBG going) (S (TO to) (VP (@VP (VB fall) (PP (IN on) (NP (DT the) (NN redirect)))) (ADVP first))))) (. ?)))
599609 (ROOT (NP so.what) (@S (VP (@VP (VBZ 's) (ADVP up)) (PP (IN with) (NP (DT this) (NN article)))) (. ?)))
599609 (ROOT (@SQ (@SQ (VBZ is) (NP it)) (NP (DT a) (NN joke))) (. ?))
623497 (ROOT (NP i) (@S (VP (VBP guess) (SBAR (NP i) (VP (@VP (VBD sent) (NP you)) (NP (NP something) (PP (IN about) (NP (@NP (NP (DT the) (@NP (JJ <url>) (NN project))) (CC and)) (NP (JJ welsh) (NNS data)))))))) (. .)))
623497 (ROOT (CC but) (@S (NP you) (@S (VP (@VP (@VP (@VP (@VP (VBD were) (ADVP also)) (ADVP somehow)) (ADJP silent)) (PP (IN on) (NP lists))) (SBAR (IN like) (S (S gnome-i18n) (@S (, ,) (VP (@VP (VBD were) (RB n't)) (NP you)))))) (. ?))))
459747 (ROOT (INTJ howdy) (@S (VP resolute) (. .)))
459747 (ROOT (@SQ (@SQ (@SQ (VBZ is) (NP <url>)) (PP for)) (ADVP real)) (. ?))
103566 (ROOT (SBAR (WHADVP when) (S (NP we) (VP (@VP (VBP have) (NP (DT a) (@NP (NN glam) (NN barnstar)))) (NP-TMP then)))) (@S (NP you) (@S (VP (@VP (VBP get) (NP it)) (PP (ADVP just) (@PP (IN for) (NP (DT the) (@NP (JJ hindi) (NN article)))))) (. !))))
103566 (ROOT (@S (@S (S (NP i) (VP (@VP (MD can) (RB not)) (VP (VB explain) (SBAR (WHADVP why) (S (NP you) (VP (VBD needed) (S (TO to) (VP (@VP (VB create) (NP (DT a) (@NP (NN derby) (NN page)))) (PP (IN in) (NP hindi)))))))))) (: -)) (S (ADVP surely) (@S (NP it) (VP (MD should) (VP (@VP (VB be) (ADVP there)) (ADVP already)))))) (. ?))
133725 (ROOT (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP (VB think) (SBAR (NP i) (VP (VBP 've) (VP (@VP (VBN used) (NP it)) (PP (IN in) (NP wikipedia))))))) (. .)))
133725 (ROOT (SBAR (@SBAR (IN so) (, ,)) (S (SBAR (IN if) (S i)) (VP (VBP have) (RB n't)))) (@SBARQ (, ,) (@SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (@VP (VB bring) (NP it)) (PRT up))) (. ?)))))
228258 (ROOT (@S (@S (S (NP i) (VP (@VP (@VP (VBP 'm) (RB not)) (ADJP sure)) (SBAR (WHADVP how) (S (NP i) (VP (VBP feel) (PP (IN about) (S (NP you) (VP (VBG adding) (S (S (VBZ coordinates) (S (TO to) (VP (ADJP (JJ locations) (PP (DT all) (@PP (@PP (@PP (PP (IN over) (NP (DT the) (NN place))) (, ,)) (CONJP (CC but) (RB rather))) (PP than)))) (@VP (@VP (VB get) (PP (IN into) (NP (@NP (NP that) (, ,)) (NP (NP (NNP let) (POS 's)) (NN start))))) (PP (IN with) (NP something)))))) (ADJP easy)))))))))) (: :)) (S (NP <url>) (VP (@VP (VBZ does) (RB not)) (VP (VB equal) (NP <url>))))) (. .))
228258 (ROOT (@SQ (@SQ (@SQ (SQ (@SQ (VBP do) (NP you)) (VP (VB need) (S (NP me) (VP (TO to) (VP (VB explain) (SBARQ why)))))) (, ,)) (CC or)) (SQ (VBD was) (NP (NP that) (ADVP (RB just) (NP (DT a) (NN typo)))))) (. ?))
620953 (ROOT (SBAR (IN if) (S (NP i) (VP (VBD had) (VP (VBN asked) (NP you))))) (@S (, ,) (@S (NP (NP (DT the) (@NP (JJ same) (NN thing))) (SBAR (IN that) (S (NP i) (VP did)))) (@S (VP (MD would) (VP (VB have) (VP (VBN been) (VP accomplished)))) (. .)))))
620953 (ROOT (WHADVP why) (SQ (VP (VB force) (S (NP you) (VP (TO to) (VP (VB go) (PP (IN through) (NP (NP (DT the) (NN trouble)) (PP (IN of) (S (@VP (VBG removing) (NP them)) (SBAR (IN if) (S (NP (NN someone) (RB else)) (VP (@VP (VBZ is) (ADVP already)) (VP (VBG removing) (NP (PDT all) (@NP (DT the) (NNS others))))))))))))))) (. ?)))
239278 (ROOT (@S (@S (@S (S (NP (NP most) (PP (IN of) (NP (NP (DT the) (NNS editors)) (SBAR (WHNP who) (S (MD would) (VP (VB care) (PP (IN about) (NP (NP (DT the) (NN deletion)) (PP (IN of) (NP (NP (NNP kik) (POS 's)) (NNS threads))))))))))) (VP (VBP are) (NP (NP (DT the) (NNS ones)) (SBAR (WHNP who) (S (MD would) (VP (VB agree) (PP (IN with) (NP him)))))))) (, ,)) (IN so)) (S (NP it) (VP (VBZ 's) (ADJP (JJ pointless) (S (TO to) (VP (VB warn) (NP them))))))) (. .))
239278 (ROOT (NN hell) (. .))
239278 (ROOT (VP (VB come) (S (TO to) (VP (@VP (@VP (@VP (VP (VB think) (PP (IN of) (NP it))) (, ,)) (VP (@VP (@VP (VBZ has) (RB n't)) (ADVP kik)) (VP (VBN been) (NP (NP all) (PP (IN over) (NP (PRP$ their) (@NP (NN talk) (NNS pages)))))))) (, ,)) (PP (IN with) (S (NP them) (VP (VBG high-fiving) (NP (DT each) (JJ other)))))))) (. ?))
624081 (ROOT (NP you) (@S (VP (@VP (VBD lived) (ADVP next)) (PP (TO to) (NP her))) (. ?)))
624081 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (VB do) (ADJP wrong))) (. ?)))
74639 (ROOT (ADVP well) (@S (NP this) (@S (VP (VBZ seems) (ADJP (JJ odd) (PP (TO to) (NP me)))) (. .))))
74639 (ROOT (S (VB do) (RB n't)) (@S (NP you) (@S (VP (@VP (VBP find) (S (NP it) (ADJP strange))) (SBAR (IN that) (S (ADVP otherwise) (@S (NP (NP (JJ authoritative) (NNS sources)) (PP (IN like) (NP (@NP (NN emulex) (CC and)) (NN ibm)))) (VP (MD would) (VP (VB be) (ADJP (RB so) (@ADJP (JJ full) (PP (IN of) (NP mistakes)))))))))) (. ?))))
257353 (ROOT (@S (@S (@S (S (S (@ADJP (ADJP okay) (, ,)) (ADJP (RB so) (JJ yeah))) (@S (, ,) (@S (NP it) (VP (@VP (VBZ 's) (ADJP possible)) (SBAR (IN that) (S (NP that) (VP (VBZ 's) (NP (PRP$ his) (NN intent))))))))) (, ,)) (CC but)) (S (SBAR (RB i) (@SBAR (RB even) (@SBAR (IN if) (S (NP it) (VP were))))) (@S (, ,) (@S (NP i) (VP (@VP (VBP do) (RB n't)) (VP (VB see) (SBAR (WHADVP why) (S (NP (DT the) (NN file)) (VP (VBZ has) (NP (JJR less) (NN value))))))))))) (. .))
257353 (ROOT (@SQ (@SQ (VBP are) (NP (NP interviews) (PP (IN with) (NP (NN blp) (@NP (NNS subjects) (RB not)))))) (VP (VBN considered) (NP (NP (JJ valid) (@NP (NN el) (POS 's))) (NN general)))) (. ?))
394690 (ROOT (NP you) (@S (VP (VBN deleted) (NP (NN ricardo) (NN marinello))) (. .)))
394690 (ROOT (WHNP what) (@SBARQ (SQ (VBD was) (VP (VBN written) (PP (IN in) (NP (DT the) (NN article))))) (. ?)))
620785 (ROOT (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP understand)) (. .)))
620785 (ROOT (@S (@S (@S (S (ADVP so) (@S (ADVP then) (@S (NP you) (VP (VBP decide) (PP (IN by) (NP yourself)))))) (, ,)) (CC and)) (S (NP (NP (DT the) (NNS people)) (SBAR (WHNP who) (S (@VP (VBD stated) (NP (PRP$ their) (NN support))) (PP (IN for) (NP (DT the) (JJ original)))))) (VP (VBP are) (VP ignored)))) (. ?))
442925 (ROOT (WHADVP (WRB why) (PP (IN on) (NP earth))) (@SBARQ (SQ (@SQ (VBP have) (NP you)) (VP (VBN deleted) (NP (NP (DT the) (NN article)) (PP (IN on) (NP (DT the) (NN <url>)))))) (. ?)))
442925 (ROOT (@SQ (@SQ (MD can) (NP you)) (VP (VB please) (VP (VB undelete) (NP it)))) (. ?))
376510 (ROOT (VP (VB see) (NP (@NP (@NP (@NP (@NP (NP <url>) (: -)) (NP (RB not) (@NP (DT a) (@NP (JJ good) (NN revert))))) (, ,)) (CC and)) (NP (NP (DT no) (NN reason)) (VP given)))) (. .))
376510 (ROOT (NP rollback) (. ?))
311900 (ROOT (VP (VB remember) (SBAR (NP we) (VP (@VP (VBD had) (NP (NP (DT the) (@NP (JJ whole) (@NP (JJ edit) (NN warring)))) (PP (IN on) (NP (NN edelsten) (NN article))))) (NP-TMP (DT a) (@NP-TMP (NN while) (RP back)))))) (. ?))
311900 (ROOT (NP i) (@S (VP (VBP find) (SBAR (NP it) (VP (VBZ curious) (SBAR (IN that) (S (NP (DT a) (@NP (ADJP (RB recently) (VBN created)) (NN account))) (VP (@VP (VBD posted) (NP (DT this) (NN <url>))) (PP (IN as) (NP (NP (PRP$ their) (@NP (JJ first) (NN contribution))) (VP (@VP (@VP (VP (ADVP basically) (@VP (VBG supporting) (NP (NP (NN edelsten) (POS 's)) (@NP (JJ personal) (NN website))))) (PRN (-LRB- -LRB-) (@PRN (SBAR (WHNP which) (S (SBAR (WHADVP when) (S (NP you) (VP (VBP look) (SBAR (@VP (MD would) (ADVP hardly)) (VP (VB pass) (NP <url>)))))) (@S (, ,) (@S (NP i) (VP (@VP (VP (@VP (@VP (VBD looked) (NP it)) (PP (IN at) (NP (DT this) (NN site)))) (PP (ADVP (NP (DT a) (NN while)) (RB back)) (@PP (IN in) (NP research)))) (CC and)) (VP (VBD found) (SBAR (NP (NP some) (PP (IN of) (NP (DT the) (@NP (JJ positive) (NNS claims))))) (VP (@VP (MD could) (RB not)) (VP (VB be) (VP verified)))))))))) (-RRB- -RRB-)))) (CC and)) (VP (VBG wanting) (NP (NP (DT a) (@NP (JJ complete) (NN rewrite))) (PP (IN of) (NP (DT the) (NN article)))))))))))))) (. .)))
311900 (ROOT (VP (VB sound) (ADJP familiar)) (. ?))
625143 (ROOT (ADVP there) (. .))
625143 (ROOT (ADJP better) (. ?))
476244 (ROOT (S (INTJ hello) (@S (NP i) (VP (VBP see) (SBAR (NP you) (VP (VBD changed) (NP (NP (DT a) (NN couple)) (PP (IN of) (NP (NP entries) (VP (VBG relating) (S (TO to) (VP palatine))))))))))) (@S (, ,) (@S (NP (DT the) (NN subject)) (@S (VP (VBP centre) (PP (IN for) (NP (NP (NN dance) (@NP (, ,) (@NP (@NP (NN drama) (CC and)) (NN music)))) (PP (IN of) (NP (DT the) (@NP (ADJP (RB uk) (JJR higher)) (@NP (NN education) (NN academy)))))))) (. .)))))
476244 (ROOT (@S (@S (@S (S (NP i) (VP (@VP (VBP do) (RB n't)) (VP (@VP (VB know) (PRN (-LRB- -LRB-) (@PRN (CC or) (@PRN (VP (ADVP even) (VBP care)) (-RRB- -RRB-))))) (SBAR (WHADVP why) (S (NP (DT that) (NN organisation)) (VP (VBZ chooses) (S (TO to) (VP (@VP (VB refer) (PP (TO to) (NP itself))) (PP (IN by) (S (VBG capitalising) (NP (DT the) (NN word)))))))))))) (, ,)) (CC but)) (S (NP (-LRB- -LRB-) (@PRN (CC and) (@PRN (NP (NP (FW i) (FW ask)) (PP (IN for) (NP (NP information) (ADVP here)))) (-RRB- -RRB-)))) (VP (@VP (VBZ is) (ADVP there)) (NP (NP (DT a) (NN policy)) (SBAR (WHNP that) (S (@VP (VBZ precludes) (NP us)) (PP (IN from) (S (VBG respecting) (NP (DT that) (NN choice)))))))))) (. ?))
620647 (ROOT (INTJ (@INTJ (UH oh) (, ,)) (UH no)) (@FRAG (, ,) (@FRAG (ADVP sorry) (. .))))
620647 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB want) (S (TO to) (VP (@VP (VB talk) (PP (TO to) (NP me))) (PP (IN on) (NP irc)))))) (. ?)))
630046 (ROOT (DT no) (@NP (NN kidding) (. .)))
630046 (ROOT (ADVP perhaps) (@S (NP you) (@S (VP (MD could) (VP (VB be) (ADJP (JJ troubled) (S (TO to) (VP (@VP (VB point) (PRT out)) (NP (NP (DT the) (NNS parts)) (SBAR (NP you) (VP (VBP consider) (S (TO to) (VP (VB be) (VP (VBN actionable) (PP (@PP (@PP (IN as) (`` `)) (NP spam)) ('' '))))))))))))) (. ?))))
607187 (ROOT (VP shudder) (. ?))
607187 (ROOT (WRB why) (. ?))
13150 (ROOT (NP i) (@S (VP (@VP (VBD based) (NP (PRP$ my) (NN sentence))) (PP (IN on) (NP (DT the) (NN citation)))) (. .)))
13150 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (VBG saying) (SBAR (NP (DT the) (NN citation)) (VP (VBZ is) (ADJP wrong))))) (. ?))
625156 (ROOT (ADVP evidently) (@S (, ,) (@S (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP (@VP (@VP (VB have) (NP (JJ enough) (NN consciousness))) (, ,)) (SBAR (IN because) (S (NP i) (VP (@VP (VBP have) (RB n't)) (NP (NP (DT the) (@NP (JJ foggiest) (NN idea))) (PP (IN of) (SBAR (WHNP what) (S (NP you) (VP (VBP 're) (VP (VBG talking) (IN about)))))))))))) (. .)))))
625156 (ROOT (@SQ (@SQ (MD could) (NP you)) (VP (VB tell) (NP me))) (. ?))
627085 (ROOT (@SQ (@SQ (VBP do) (NP you)) (VP (@VP (VB understand) (ADVP now)) (SBAR (WHNP what) (S (VBD was) (ADJP (JJ wrong) (PP (IN with) (NP (PRP$ your) (NNS edits)))))))) (. ?))
627085 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB intend) (S (TO to) (VP (VB do) (SBAR (IN if) (S unblocked)))))) (. ?)))
620143 (ROOT (NP mind) (@S (VP <url>) (. .)))
620143 (ROOT (WHADVP (ADVP since) (WRB when)) (@SBARQ (SQ (NP one) (VP (VB edit) (SBAR (IN after) (S (NP (NN protection) (NN expiry)) (VP (@VP (VBZ is) (ADJP disruptive)) (S (@VP (VBG editing) (CC or)) (VBG editwarring))))))) (. ?)))
464704 (ROOT (@S (@S (@S (S (NP i) (VP (VBP 'm) (VP (VBG attempting) (S (TO to) (VP (VB be) (ADJP incisive)))))) (, ,)) (CC and)) (S (NP (DT the) (@NP (NNS articles) (NN integrity))) (VP (@VP (VBZ has) (RB n't)) (VP (VBN been) (VP disrupted))))) (. .))
464704 (ROOT (ADVP therefore) (@S (NP i) (@S (VP (VBP see) (NP (NP (DT no) (NN reason)) (SBAR (WHADVP why) (S (NP you) (VP (VBD chose) (S (TO to) (VP (VB comment) (SBAR (IN unless) (S (NP you) (VP (VBD felt) (SBAR (IN that) (S (NP ive) (VP (@VP (VBD wiped) (PRT out)) (NP (JJ important) (NN information))))))))))))))) (. ?))))
626487 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB mean) (NP (JJ personal) (NN attack)))) (. ?)))
626487 (ROOT (WHADVP why) (@SBARQ (SQ (@VP (VBP do) (RB n't)) (VP (VB site) (SBAR (WHNP what) (S (NP (PRP$ my) (@NP (JJ personal) (NN attack))) (VP is))))) (. ?)))
393356 (ROOT (VP (VB look) (SBAR (RB even) (S (NP (PRP$ your) (@NP (JJ 3rr) (NN message))) (VP (VBZ says) (S (TO to) (VP (VB use) (NP (DT the) (@NP (NN talk) (NN page))))))))) (. .))
393356 (ROOT (WHNP (WDT what) (NN authority)) (@SBARQ (SQ (@SQ (VBZ does) (NP (DT the) (@NP (NN pokemon) (NN project)))) (VP (VB have) (PP (IN over) (NP (JJ japanese) (NN mythology))))) (. ?)))
300687 (ROOT (@NP (NP thanks) (PP (IN for) (NP (DT the) (NN referrence)))) (. .))
300687 (ROOT (@SQ (@SQ (VBP do) (NP you)) (VP (@VP (VB have) (NP (DT any) (@NP (JJ other) (NN response)))) (PP (TO to) (NP (NP (DT the) (NN bozo)) (SBAR (WHNP who) (S (VBZ doubts) (ADVP notability))))))) (. ?))
626822 (ROOT (WHADVP (ADVP anyway) (WRB why)) (@SBARQ (SQ (@VP (VBD put) (PRT up)) (PP (IN with) (NP (PDT all) (@NP (DT this) (NNS carelessness))))) (. ?)))
626822 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP are) (NP (@NP (NNS sockpuppets) (CC and)) (NN trolls))) (VP (VBG being) (VP enabled))) (. ?)))
403226 (ROOT (NP (NN yeah) (NNS i)) (@S (VP have) (. .)))
403226 (ROOT (@S (@S (S (INTJ yes) (@S (NP i) (VP (VBP know) (NP that)))) (: ;)) (S (NP you) (VP (VBG saying) (SBAR (NP i) (VP (VBP 'm) (NP (DT a) (@NP (JJ malicious) (NN admin)))))))) (. ?))
333023 (ROOT (NP you) (@S (VP (MD may) (VP (VB want) (S (TO to) (VP (VB look) (PP (IN at) (NP (DT the) (NN nomination))))))) (. .)))
333023 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (VB intend) (S (TO to) (VP do)))) (. ?)))
622815 (ROOT (@NP (@NP (@NP (@NP (NP self-follow-up) (: :)) (ADVP also)) (, ,)) (S (SBAR (IN while) (S (@S (S (ADVP sometimes) (@S (NP (DT the) (@NP (NN status) (NN quo))) (VP (MD should) (VP (VB be) (VP (@VP (VBN maintained) (, ,)) (PP (IN by) (S (@VP (VBG supporting) (NP it)) (PP (IN in) (NP (DT this) (NN case)))))))))) (, ,)) (S (NP you) (VP (@VP (VBP 're) (ADVP also)) (VP (VBG supporting) (NP (DT a) (NN revert-first))))))) (@S (, ,) (VP (@VP (@VP (VB ask) (NP questions)) (ADVP later)) (VP (VB approach) (PP (TO to) (S (VBG dealing) (PP (IN with) (NP (JJ good) (@NP (NN faith) (NNS edits))))))))))) (. .))
622815 (ROOT (@SQ (@SQ (VBZ is) (NP that)) (NP (NP really) (SBAR (WHNP what) (S (NP you) (VP want))))) (. ?))
25458 (ROOT (ADVP maybe) (@S (NP others) (@S (VP (@VP (@VP (VP (@VP (VBP have) (RB n't)) (VP noticed)) (: -)) (CC or)) (VP (VBP are) (ADJP (RB too) (JJ busy)))) (. .))))
25458 (ROOT (SBAR (IN if) (S (NP you) (VP (VBP are) (VP (VBG thinking) (SBAR (WHNP what) (S (NP i) (VP (VBP 'm) (VP thinking)))))))) (@SBARQ (, ,) (@SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (VBP am) (NP i)) (VP (VBG reverting) (NP (NP (RB so) (JJ many)) (PP (IN of) (NP (PRP$ your) (NNS edits)))))) (. ?)))))
331000 (ROOT (NP i) (@S (VP (@VP (VBP 'm) (ADVP still)) (VP (VBG scratching) (NP (PRP$ my) (NN head)))) (. .)))
331000 (ROOT (WHADVP how) (@SBARQ (SQ (@SQ (MD can) (NP this)) (VP be)) (. ?)))
101183 (ROOT (NP there) (@S (VP (VBD was) (NP (@NP (NP (DT a) (NN redirect)) (PP (IN from) (NP (NP klpn) (PP (TO to) (NP ktpn))))) (SBAR (WHNP that) (S (VBD was) (VP created))))) (. .)))
101183 (ROOT (NP klpn) (@S (VP (@VP (VBZ is) (NP (DT the) (@NP (JJ main) (NN station)))) (SBAR (RB so) (@SBAR (WHADVP why) (S (VBZ is) (NP (NP (DT the) (NN article)) (VP (VBN called) (NP ktpn))))))) (. ?)))
269779 (ROOT (NP i) (@S (VP (@VP (VBD did) (RB not)) (VP (VB think) (SBAR (IN that) (S (VBD was) (NP (DT a) (NN refinement)))))) (. .)))
269779 (ROOT (WHADVP how) (@SBARQ (SQ (@SQ (VBD were) (NP (DT those) (NNS categories))) (ADJP (RB not) (JJ appropriate))) (. ?)))
201981 (ROOT (NP corrections) (@S (, ,) (@S (S (VB make) (SBAR (IN that) (S (NP (@NP (NP (CD four) (NNS terms)) (: :)) (NP i)) (VP (VBP pick) (SBAR (NP (@NP (NP (DT a) (@NP (@NP (NN car) (CC and)) (NN swap))) (, ,)) (NP (@NP (@NP (NP (FW i) (FW pick)) (NP (DT a) (@NP (@NP (NN goat) (CC and)) (NN swap)))) (, ,)) (FW i))) (VP (@VP (VP (VBP pick) (NP (DT a) (NN car))) (CC and)) (VP (@VP (VBP do) (RB not)) (VP swap)))))))) (@S (, ,) (@S (NP i) (@S (VP (@VP (VP (VBP pick) (NP (DT a) (NN goat))) (CC and)) (VP (@VP (VBP do) (RB not)) (VP swap))) (. .)))))))
201981 (ROOT (WHNP who) (@SBARQ (SQ (VBZ cares) (PP (IN about) (NP (NNS doors) (@NP (CC or) (@NP (NN door) (NNS numbers)))))) (. ?)))
102510 (ROOT (NP thanks) (@FRAG (, ,) (@FRAG (CC but) (@FRAG (S (NP i) (VP (VBP believe) (SBAR (NP i) (VP (VBP 've) (VP (VBN covered) (NP (DT the) (NN sustance))))))) (. .)))))
102510 (ROOT (@SQ (@SQ (@SQ (MD could) (NP you)) (ADVP also)) (VP (@VP (@VP (@VP (VB get) (NP beeblebrox)) (S (TO to) (VP (VB strike) (NP (DT the) (@NP (NN mr) (NN insult)))))) (, ,)) (SBAR (IN unless) (S (NP he) (VP (VBD was) (VP (@VP (VBG doing) (NP it)) (ADVP deliberately))))))) (. ?))
21544 (ROOT (NP i) (@S (VP (VBD thought) (SBAR (@SBAR (IN that) (, ,)) (S (SBAR (WHADVP when) (S (NP (DT some) (NNS informations)) (VP (VBP are) (VP (@VP (VBN mentioned) (IN about)) (PP (IN in) (NP (JJ desperate) (NNS housewives))))))) (@S (, ,) (@S (NP it) (VP (VBZ is) (NP (DT a) (@NP (JJ reliable) (NN source))))))))) (. ?)))
21544 (ROOT (ADVP so) (@S (, ,) (@S (PP (IN in) (NP (NP (PRP$ your) (NN way)) (PP (IN of) (NP thinking)))) (@S (, ,) (@S (NP (JJ susan) (@NP (NN mayer) (@NP (NN maiden) (NN name)))) (@S (VP (@VP (VBZ is) (RB not)) (NP (NP (@NP (NN bremmer) (CC or)) (NN something)) (PP (IN like) (NP that)))) (. ?)))))))
619228 (ROOT (INTJ oh) (@FRAG (, ,) (@FRAG (NP (@NP (NP that) (, ,)) (ADJP eh)) (. ?))))
619228 (ROOT (ADVP so) (@S (, ,) (@S (@S (@S (@S (S (NP you) (@S (ADVP wrongly) (VP (@VP (VBD accused) (NP me)) (PP (IN of) (S (VBG making) (NP (NN death) (NNS threats))))))) (, ,)) (CC and)) (S (NP that) (VP (VBZ 's) (NP (NP all) (SBAR (NP you) (VP (VBP have) (S (TO to) (VP (VB say) (PP (IN for) (NP yourself)))))))))) (. ?))))
624290 (ROOT (@VP (VB okay) (, ,)) (S (@S (S (NP i) (@S (VP (MD will) (VP (VB fix) (NP (DT the) (NNS crystals)))) (, ,))) (CC but)) (SBARQ (WHADVP how) (@SBARQ (SQ (@SQ (VBP do) (NP i)) (VP (@VP (@VP (@VP (VB put) (NP myself)) (PRT up)) (PP (IN for) (NP adoption))) (ADVP again))) (. ?)))))
624290 (ROOT (@SQ (@SQ (MD will) (NP you)) (VP (VB kindergarten) (S (@VP (VBG <url>) (NP me)) (PP (IN through) (NP (DT the) (NN process)))))) (. ?))
619691 (ROOT (CC but) (@S (NP att) (@S (VP (VBZ is) (NP (@NP (NP (DT a) (NN re-statement)) (PP (IN of) (NP (@NP (NNP nor) (CC and)) (NNP v.)))) (SBAR (NP we) (VP (@VP (VBP do) (RB n't)) (VP (@VP (@VP (VP (VB need) (NP (NP (DT a) (NN re-statement)) (PP (IN of) (NP them)))) (CC and)) (ADVP then)) (VP (VB call) (S (NP it) (ADJP rs)))))))) (. .))))
619691 (ROOT (WHNP what) (@SBARQ (SQ (MD would) (VP (VB be) (NP (DT the) (NN point)))) (. ?)))
341534 (ROOT (NP i) (@S (VP (@VP (MD could) (RB n't)) (VP (@VP (VB tell) (NP you)) (SBAR (WHADVP why) (S (NP (NN glam) (NN rock)) (VP (VBD was) (ADVP there)))))) (. .)))
341534 (ROOT (ADJP better) (. ?))
37677 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB contend) (SBAR (IN that) (S (NP (JJ new) (@NP (NN atheism) (@NP (CC and) (@NP (NN atheism) (NNS 3.0))))) (VP (VBP are) (ADJP unrelated)))))) (. ?)))
37677 (ROOT (NP they) (@S (VP (VBP are) (ADJP (RB so) (@ADJP (JJ intermingled) (SBAR (IN that) (S (NP people) (VP (VBP have) (NP (NP (NN difficulty) (NNS discerning)) (SBAR (WHNP which) (S (VBZ is) (WHNP which)))))))))) (. ?)))
623961 (ROOT (NP you) (@S (VP (@VP (@VP (VBD removed) (NP posts)) (PP (IN by) (NP me))) (ADVP (RB as) (RB well))) (. .)))
623961 (ROOT (@SQ (@SQ (VBP do) (NP you)) (VP (VB have) (NP (DT any) (NN explanation)))) (. ?))
622811 (ROOT (NP bureaucrats) (@S (VP (@VP (VBP require) (NP (NP (DT a) (@NP (JJR higher) (NN level))) (PP (IN of) (NP trust)))) (PP (IN than) (NP administrators))) (. .)))
622811 (ROOT (@SQ (@SQ (VBP are) (NP you)) (ADJP (ADJP (ADVP actually) (JJ familiar)) (PP (IN with) (SBAR (WHNP what) (S (NP (DT these) (NNS tasks)) (VP entail)))))) (. ?))
627133 (ROOT (VP coi) (. ?))
627133 (ROOT (WHNP (WDT what) (NP coi)) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP (VB think) (SBAR (NP i) (VP have)))) (. ?)))
619871 (ROOT (NP <url>) (VP (VBZ is) (NP (@NP (@NP (NP one) (PP (IN of) (NP (DT the) (@NP (CD three) (@NP (JJ fundamental) (@NP (NN wikipedia) (@NP (NN content) (NNS policies)))))))) (: ;)) (SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (NNS is) (NP it)) (NP (NP (DT a) (NN shame)) (SBAR (NP you) (VP (VBP have) (S (TO to) (VP (VB follow) (NP it))))))) (. ?))))))
619871 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (VB mean) (PP (IN by) (NP (NP people) (PP (IN like) (NP you)))))) (. ?)))
333097 (ROOT (NP i) (@S (VP (VBP see) (SBAR (IN that) (S (NP you) (VP (@VP (@VP (VP (@VP (VBD closed) (NP (DT that) (@NP (NN cfd) (NN discussion)))) (PP (IN as) (NP rename))) (, ,)) (CC but)) (VP (@VP (@VP (VBP have) (RB n't)) (ADVP actually)) (VP (VBN renamed) (NP (DT the) (NNS categories)))))))) (. .)))
333097 (ROOT (WHNP what) (@SBARQ (SQ (@VP (VBZ 's) (ADVP up)) (PP (IN with) (NP that))) (. ?)))
284995 (ROOT (NP i) (@S (VP (MD will) (VP (VB be) (VP (@VP (@VP (VBG retiring) (PP (TO to) (NP (DT the) (@NP (NN cayman) (NNS islands))))) (ADVP shortly)) (PP (IN with) (NP (NP (DT the) (NNS riches)) (SBAR (NP i) (VP (VBP 'm) (VP (VBG gathering) (PP (IN through) (NP (NP (PRP$ my) (@NP (NN wikipedia) (NN editing))) (PP (IN of) (NP (JJ political) (NNS pages))))))))))))) (. .)))
284995 (ROOT (@NP (@NP (NP (NP -) (PRN (-LRB- -LRB-) (@PRN (PP (IN from) (NP (PRP$ your) (NN userpage))) (-RRB- -RRB-)))) (: -)) (S (NP you) (VP (VBP 're) (VP (@VP (VBG joking) (, ,)) (ADVP right))))) (. ?))
284995 (ROOT (NP oh) (@FRAG (, ,) (@FRAG (CC and) (@FRAG (S (NP you) (VP (@VP (VBP 're) (ADVP also)) (VP (VBG joking) (PP (IN about) (S (VBG being) (ADVP (NP (DT a) (NN republican)) (RB too))))))) (. ?)))))
441617 (ROOT (NP i) (@S (ADVP obviously) (@S (VP (@VP (VBD made) (NP (DT a) (NN mistake))) (ADVP too)) (. .))))
441617 (ROOT (@SQ (@SQ (@SQ (VBP do) (NP you)) (ADVP really)) (VP (VB think) (SBAR (NP i) (VP (@VP (MD 'd) (ADVP purposefully)) (VP (@VP (VB misinterpret) (NP things)) (PP (IN like) (NP that))))))) (. ?))
435881 (ROOT (INTJ why) (@FRAG (, ,) (@FRAG (ADVP precisely) (. ?))))
435881 (ROOT (CC and) (@SBARQ (WHNP what) (@SBARQ (SQ (@VP (VBZ separates) (NP (NP (DT the) (NN etiquette)) (PP (IN of) (NP (NP (PRP$ your) (NN area)) (PP (IN of) (NP society)))))) (PP (IN from) (NP (NP (PRP$ our) (@NP (JJ conventional) (@NP (NN etiquette) (NN speed-developed)))) (PP (IN on) (NP (DT the) (NN internet)))))) (. ?))))
57748 (ROOT (WHNP how) (@SBARQ (SQ (VBP are) (VP (@VP (@VP (VP recognizing) (CC and)) (RB not)) (VP (VBG recognising) (S (VBN defined) (PP (IN in) (NP (DT this) (NN context))))))) (. ?)))
57748 (ROOT (NP (DT the) (NN country)) (@S (VP (@VP (VP (@VP (VBZ has) (ADVP (@ADVP (ADVP explicitly) (CC and)) (ADVP officially))) (VP (VBN stated) (SBAR (IN that) (S (NP they) (VP do))))) (CC or)) (VP (@VP (VBP do) (RB not)) (VP (VB recognise) (NP (NP (DT the) (NN state)) (PP (IN of) (NP palestine)))))) (. ?)))
553125 (ROOT (NP i) (@S (VP (VBP presume) (SBAR (NP you) (VP (@VP (VBP have) (RB n't)) (VP (@VP (@VP (@VP (VBN obliterated) (NP them)) (ADVP completely)) (, ,)) (SBAR (IN because) (S (NP that) (VP (MD would) (VP (VB be) (S (TO to) (VP (@VP (VB be) (ADJP editorialise)) (ADVP enormously))))))))))) (. .)))
553125 (ROOT (WHADVP where) (@SBARQ (SQ (@SQ (VBP have) (NP you)) (VP (VBN put) (S (NP them) (ADVP instead)))) (. ?)))
221514 (ROOT (NP he) (@S (VP (VBZ 's) (VP (VBN taken) (ADVP (NP (DT the) (NN notice)) (RB down)))) (. .)))
221514 (ROOT (@SQ (@SQ (@SQ (VBZ does) (RB n't)) (NP (NP (DT this) (NN count)) (PP as))) (VP (VB belaboring) (NP (DT the) (NN point)))) (. ?))
625793 (ROOT (@S (@S (@S (S (NP there) (VP (VBZ 's) (NP (NP nothing) (PP (IN in) (NP (NP (PRP$ your) (NN history)) (PP (IN besides) (S (VBG editing) (NP (PRP$ my) (NN page))))))))) (, ,)) (IN so)) (S (NP i) (VP (@VP (VBP 'm) (RB not)) (ADJP (JJ sure) (PP (TO to) (SBAR (WHNP what) (S (NP you) (VP (VBP are) (VP referring))))))))) (. .))
625793 (ROOT (WHNP (WDT what) (NN page)) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG talking) (IN about))) (. ?)))
626998 (ROOT (ADJP (JJ errr) (@ADJP (, ,) (JJ okay))) (. .))
626998 (ROOT (CC but) (@FRAG (VP (VB let) (S (NP 's) (VP (VB make) (ADJP (JJ sure) (SBAR (NP (PRP$ our) (NNS answers)) (VP (VBP are) (ADJP (JJ accurate) (PP (IN by) (S (VBG using) (NP (@NP (@NP (@NP (NP <url>) (CONJP (RB rather) (IN than))) (NP (NP something) (SBAR (NP we) (VP (VBD heard) (SBAR (NP someone) (VP say)))))) (, ,)) (ADVP eh))))))))))) (. ?)))
224928 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBZ is) (NP (PRP$ your) (@NP (NN awb) (NN robot)))) (VP (@VP (@VP (VBG changing) (NP (CC &) (NN oslash))) (: ;)) (PP (TO to) (NP (DT the) (@NP (NN letter) (NN xd8)))))) (. ?)))
224928 (ROOT (NP i) (@S (@S (VP (@VP (VBD asked) (NP you)) (SBAR (IN if) (S (NP (NP (DT all) (NNS computers)) (PP (IN in) (NP (DT the) (NN world)))) (VP (VBP are) (VP (@VP (VBN set) (PRT up)) (S (TO to) (VP (VB read) (NP (CC &) (NN oslash))))))))) (: ;)) (. ?)))
58108 (ROOT (NP you) (@S (VP (VBD said) (SBAR (NP (JJ other) (NNS sources)) (VP (@VP (@VP (VBD supported) (NP (DT the) (NN info))) (PP (IN in) (NP (DT the) (NN infobox)))) (SBAR (RB yet) (S (NP you) (VP (@VP (VBD did) (RB not)) (VP (VB indicate) (S (NP what) (NP sources))))))))) (. .)))
58108 (ROOT (CC and) (@SBARQ (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (MD ca) (RB n't)) (NP we)) (VP (VB use) (NP (NP (DT a) (@NP (JJ primary) (NN source))) (PP (IN for) (NP (PRP$ his) (@NP (NN birth) (NN date))))))) (. ?))))
421459 (ROOT (@S (@S (@S (S (NP i) (VP (VBP 'm) (ADJP (JJ loathe) (S (TO to) (VP (VB come) (S (VBG running) (PP (TO to) (NP (DT an) (NN admin))))))))) (, ,)) (CC but)) (S (NP gregcaletta) (VP (@VP (VBZ is) (ADVP just)) (VP (@VP (VBG making) (NP (DT the) (@NP (JJ same) (NNS edits)))) (SBAR (IN that) (S (NP i) (VP (VBD had) (VP (@VP (VP (VBN undone) (ADVP before)) (CC and)) (VP (@VP (@VP (@VP (VBN made) (NP objection)) (PP to)) (PP (IN on) (NP (DT the) (@NP (NN talk) (NN page))))) (PP (IN without) (NP (DT any) (@NP (NN attempt) (S (TO to) (VP (@VP (VB address) (NP (DT the) (@NP (JJ previous) (NNS objections)))) (PP (IN on) (NP (DT the) (@NP (NN talk) (NN page)))))))))))))))))) (. .))
421459 (ROOT (ADVP now) (@X (NP what) (. ?)))
577368 (ROOT (WHADVP why) (@SBARQ (SQ (VBP are) (NP (NP records) (PP (IN of) (NP (NP (DT the) (@NP (JJ julianna) (@NP (NNS posers) (NNS changes)))) (VP (VBG being) (VP deleted)))))) (. ?)))
577368 (ROOT (SBAR (RB even) (@SBAR (IN if) (S (NP this) (@S (ADVP really) (VP (VBD was) (NP her)))))) (@SBARQ (, ,) (@SBARQ (SQ (@SQ (VBP do) (NP celebrities)) (VP (@VP (VB get) (NP (JJ special) (NNS privlidges))) (PP (IN on) (NP wikipedia)))) (. ?))))
385560 (ROOT (NP (NP (PRP$ your) (@NP (JJ recent) (NNS edits))) (PP (IN with) (NP (NN dab) (NN solver)))) (@S (VP (VBP seem) (S (TO to) (VP (VB be) (VP (@VP (@VP (VBG removing) (PP (RB rather) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP links))))) (, ,)) (PP (IN without) (S (VBG mentioning) (NP (NP this) (PP (IN in) (NP (DT the) (@NP (JJ edit) (NN summary))))))))))) (. .)))
385560 (ROOT (@SQ (@SQ (VBZ is) (NP this)) (VP (VBN intended) (NP behaviour))) (. ?))
96067 (ROOT (NP i) (@S (VP (@VP (VP (VBP notice) (SBAR (IN that) (S (NP (PRP$ your) (NN userpage)) (VP (VBZ announces) (SBAR (IN that) (S (NP this) (VP (VBZ is) (NP (DT an) (@NP (JJ alternate) (NN account)))))))))) (CC and)) (VP (@VP (MD wo) (RB n't)) (VP (VB get) (VP (VBN involved) (PP (IN in) (NP policy)))))) (. .)))
96067 (ROOT (@SQ (@SQ (@SQ (SQ (@SQ (VBD did) (NP you)) (VP (ADVP always) (@VP (VB have) (NP (DT that) (NN attitude))))) (, ,)) (CC or)) (SQ (@SQ (VBZ is) (NP it)) (PP (IN since) (NP (NNP december) (@NP (JJ last) (NN year)))))) (. ?))
529441 (ROOT (@S (@S (@S (S (INTJ yes) (@S (, ,) (@S (NP i) (VP (VBP know) (SBAR (WHNP what) (S (NP (DT a) (@NP (NN score) (NN card))) (VP is))))))) (, ,)) (CC but)) (S (NP you) (VP (@VP (VBD wrote) (NP (NN score) (NN car))) (PP (IN in) (NP (DT the) (NN article)))))) (. .))
529441 (ROOT (@SQ (@SQ (@SQ (SQ (VBD was) (NP (NP that) (NP (DT a) (NN typo)))) (, ,)) (CC or)) (SQ (@SQ (@SQ (@SQ (VBZ is) (NP there)) (ADVP really)) (PP (JJ such) (NP (DT a) (NN thing)))) (PP (IN as) (NP (DT a) (@NP (NN score) (NN car)))))) (. ?))
520030 (ROOT (NP this) (@S (VP (VBZ is) (VP (VBG starting) (S (TO to) (VP (ADVP almost) (@VP (VB feel) (PP (IN like) (NP harassment))))))) (. .)))
520030 (ROOT (ADVP perhaps) (@S (NP we) (@S (VP (MD should) (VP (@VP (VB take) (NP this)) (PP (TO to) (NP (DT a) (@NP (NN mediation) (NN committee)))))) (. ?))))
620432 (ROOT (WHADVP how) (@SBARQ (SQ (VBP are) (NP (NP (DT these) (NN inconsistent)) (PP (IN with) (NP (NP (DT the) (@NP (JJ traditional) (NN account))) (PP (IN of) (NP (NP (DT the) (NNS origins)) (PP (IN of) (NP (NP (DT the) (NN torah)) (VP (@VP (@VP (VBG involving) (NP redactions)) (ADVP (RB as) (RB late))) (PP (IN as) (NP ezra))))))))))) (. ?)))
620432 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (VBP do) (NP we)) (VP (@VP (VB need) (NP (JJ bizarre) (NNS hypotheses))) (PP (IN about) (NP (NP documents) (VP (VBG being) (VP (VBN interwoven) (SBAR (IN that) (S (VBP are) (ADJP (JJ contrary) (PP (TO to) (NP (NP (ADJP (RB all) (VBN known)) (NNS examples)) (PP (IN of) (SBAR (WHADVP how) (S (NP books) (VP (VBP are) (VP written)))))))))))))))) (. ?)))
68091 (ROOT (VP wassat) (. ?))
68091 (ROOT (ADJP leavevisstoyou) (. ?))
625221 (ROOT (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP (VB have) (NP (NP (DT the) (@NP (JJ delete) (NN privilege))) (VP (VBN assigned) (PP (TO to) (NP (PRP$ my) (NN account))))))) (. .)))
625221 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBP are) (NP you)) (VP (VBG talking) (IN about))) (. ?)))
620600 (ROOT (NP i) (@S (VP (@VP (VBP 'm) (RB not)) (ADJP (JJ sure) (SBAR (WHNP what) (S (NP you) (VP (VBP are) (VP (VBG asking) (ADVP here))))))) (. .)))
620600 (ROOT (S (@S (S (NP admins) (VP (@VP (MD can) (RB not)) (VP (VB check) (NP ips)))) (CC but)) (S (SBAR (WHADVP why) (S would)) (@S (NP you) (@S (ADVP even) (VP (VBP want) (NP (NP (DT the) (@NP (JJ same) (NN ip))) (SBAR (WHNP that) (S (MD would) (VP (VB be) (ADJP foolish)))))))))) (@SINV (@SINV (VP (MD would) (RB n't)) (NP it)) (. ?)))
622624 (ROOT (@S (@S (S (S alright) (@S (, ,) (@S (NP i) (VP (@VP (VP (@VP (VBP do) (RB n't)) (VP (VB like) (NP it))) (CC but)) (VP (@VP (VBZ is) (RB not)) (ADJP (JJ worth) (S (@VP (@VP (@VP (VBG wasting) (NP (JJR more) (NN time))) (PP on)) (, ,)) (ADVP but)))))))) (PRN (-LRB- -LRB-) (@PRN (SBAR (IN as) (S (NP you) (@S (ADVP now) (VP (VBD noticed) (ADVP (RB as) (RB well)))))) (-RRB- -RRB-)))) (S (SBAR (IN if) (S (NP it) (@S (ADVP really) (VP (VBD had) (VP (VBN been) (VP (VBN deleted) (PP (IN for) (NP <url>)))))))) (@S (, ,) (@S (NP it) (VP (MD would) (VP (VB have) (VP (VBN been) (ADJP (RB truly) (JJ problematic))))))))) (. .))
622624 (ROOT (@SQ (@SQ (@SQ (MD can) (NP i)) (ADVP just)) (VP (@VP (VB ask) (: :)) (S (SBAR (IN if) (S (NP mephistophelian) (VP (@VP (VP (MD would) (VP return)) (, ,)) (VP are)))) (@S (NP we) (VP (VBD allowed) (S (TO to) (VP (VB undelete) (NP it)))))))) (. ?))
620935 (ROOT (WHADVP how) (@SBARQ (SQ (@SQ (MD can) (NP people)) (VP (@VP (VB edit) (NP them)) (SBAR (IN if) (S (NP it) (@S (ADVP just) (VP redirects)))))) (. ?)))
620935 (ROOT (@SQ (@SQ (VBD did) (NP you)) (VP (VB think) (PP (IN about) (NP that)))) (. ?))
620813 (ROOT (INTJ yes) (@S (, ,) (@S (NP this) (@S (VP (@VP (VBZ is) (NP (DT the) (@NP (JJ english) (NN wikipedia)))) (SBAR (IN so) (S (NP we) (VP (VBP use) (NP (NP (DT the) (@NP (JJ english) (NN version))) (PP (IN of) (NP (DT the) (NN infobox)))))))) (. .)))))
620813 (ROOT (CC and) (@SQ (@SQ (@SQ (@SQ (MD can) (NP there)) (ADVP once)) (VP (VB be) (NP (NP (DT a) (NN time)) (SBAR (WHADVP when) (S (NP you) (VP (@VP (VBP do) (RB n't)) (VP (@VP (VB find) (NP (PRP$ your) (NN way))) (PP (TO to) (NP (NP (PRP$ my) (NN talk)) (NP (DT a) (NN complain))))))))))) (. ?)))
515165 (ROOT (ADVP ed) (@FRAG (, ,) (@FRAG (ADVP eh) (. ?))))
515165 (ROOT (@SQ (@SQ (VBP have) (NP they)) (VP (VBN tried) (NP viagra))) (. ?))
620803 (ROOT (@S (@S (@S (@S (@S (S (PP (IN in) (NP case)) (@S (NP you) (VP (@VP (VBD did) (RB n't)) (VP realize)))) (, ,)) (S (NP (NP one) (PP (IN of) (NP (NP (DT the) (@NP (JJ first) (NNS things))) (SBAR (NP they) (VP (VBZ states) (PP (IN on) (NP (DT that) (NN article)))))))) (VP (VBD was) (SBAR (@SBAR (IN that) (IN if)) (S (NP (NP (DT the) (NN information)) (PP (IN on) (NP (DT a) (@NP (JJ main) (@NP (CC or) (@NP (JJ major) (NN character))))))) (VP (VBZ becomes) (ADVP long))))))) (, ,)) (RB then)) (S (NP it) (VP (VBZ warrants) (NP (PRP$ its) (@NP (JJ own) (NN article)))))) (. .))
620803 (ROOT (SBAR so) (@SBARQ (, ,) (@SBARQ (PP (IN if) (NP (NP that) (NP (DT the) (NN case)))) (@SBARQ (, ,) (@SBARQ (WHADVP (ADVP then) (WRB why)) (@SBARQ (SQ (@SQ (VBD did) (NP you)) (VP (@VP (@VP (VB merge) (ADVP <url>)) (, ,)) (SBAR (IN since) (S (@S (S (NP (PRP$ his) (NN article)) (VP (VBZ is) (ADJP long))) (CC and)) (S (NP he) (VP (VBZ is) (NP (NP (DT the) (@NP (JJ main) (NN character))) (PP (IN on) (NP <url>))))))))) (. ?)))))))
630772 (ROOT (NP (NN user) (CD 86.138.232.97)) (@S (VP (VBZ does) (VP (VB have) (NP (NP (DT a) (NN history)) (PP (IN of) (NP (JJ malicous) (NNS edits)))))) (. .)))
630772 (ROOT (@SQ (@SQ (VBP are) (NP you)) (VP (ADVP then) (@VP (VBG confirming) (SBAR (IN that) (S (NP (NP (DT these) (@NP (JJ malicious) (NNS edits))) (VP (VBN done) (PP (IN by) (NP (NN user) (CD 86.138.232.97))))) (VP (VBD were) (VP (VBN done) (PP (IN by) (NP yourself))))))))) (. ?))
544739 (ROOT (NP that) (@S (VP (@VP (@VP (VBD was) (ADJP (RB awfully) (JJ quick))) (, ,)) (S (VBG considering) (SBAR (IN that) (S (NP it) (VP (VBD was) (ADJP (JJ open) (PP (IN for) (NP (QP (JJR less) (@QP (IN than) (CD 12))) (NNS hours))))))))) (. .)))
544739 (ROOT (SBAR (IN since) (S (NP i) (VP (@VP (MD must) (ADVP now)) (VP (@VP (VB do) (NP them)) (ADVP individually))))) (@SQ (, ,) (@SQ (@SQ (@SQ (MD must) (NP they)) (VP (VB be) (VP (@VP (VBN considered) (NP (JJ second) (NNS nominations))) (SBAR (IN if) (S (NP i) (VP (@VP (@VP (VBD put) (NP them)) (PRT up)) (ADVP again))))))) (. ?))))
119849 (ROOT (NP i) (@S (VP (VBP 've) (VP (VBN noticed) (SBAR (IN that) (S (NP you) (VP (VBP 're) (VP (@VP (@VP (VBN engaged) (PP (IN in) (NP (JJ several) (@NP (JJ edit) (NNS wars))))) (, ,)) (PP (IN with) (NP (@NP (NP meliniki) (, ,)) (PP (VBG regarding) (NP (NP (JJ minor) (NNS alterations)) (PP (TO to) (NP (JJ multiple) (@NP (NN greek) (@NP (NN language) (NNS articles))))))))))))))) (. .)))
119849 (ROOT (ADVP perhaps) (@S (NP you) (@S (VP (MD should) (VP (VB consider) (S (@VP (VBG discussing) (NP (DT the) (NNS changes))) (PP (@PP (IN on) (NP (NP (NNS meliniki) (POS 's)) (NN <url>))) (ADVP instead))))) (. ?))))
332646 (ROOT (NP i) (@S (VP (VBP 've) (VP (VBN removed) (NP (PRP$ my) (NN remark)))) (. .)))
332646 (ROOT (CC but) (@SQ (SBAR (@SBAR (@SBAR (SBAR (IN if) (S (NP somebody) (VP (VBZ puts) (NP (NP (NP words) (@NP (PP (IN in) (NP another)) (POS 's))) (NN mouth))))) (, ,)) (CC and)) (SBAR (IN that) (S (NP (@NP (@NP (NP (NP (JJ second) (@NP (NN person) (NNS states))) (SBAR (WHNP that) (S (@VP (VBZ is) (RB not)) (SBAR (WHNP what) (S (NP he) (VP meant)))))) (, ,)) (CC and)) (NP (DT the) (@NP (JJ first) (NN person)))) (VP (VBZ responds) (SBAR (IN that) (S (INTJ no) (@S (, ,) (@S (NP that) (VP (VBZ is) (SBAR (WHNP what) (S (NP (DT the) (@NP (JJ second) (NN person))) (VP (@VP (VBD meant) (, ,)) (ADVP well))))))))))))) (@SQ (, ,) (@SQ (@SQ (@SQ (@SQ (MD would) (RB n't)) (NP you)) (VP (VB say) (SBAR (IN that) (S (VBZ 's) (ADJP (NP (DT a) (RB little)) (JJ weird)))))) (. ?)))))
199732 (ROOT (ADVP (RB no) (JJR more)) (@FRAG (NP saga) (. !)))
199732 (ROOT (VP (@VP (VB help) (NP me)) (PP (IN by) (S (VBG keeping) (NP (NP (NP (DT this) (NN page)) (NP (DT the) (NN way))) (SBAR (NP it) (VP (@VP (@VP (@VP (VBZ is) (ADJP right)) (ADVP now)) (, ,)) (ADJP alright))))))) (. ?))
429854 (ROOT (NP it) (@S (VP (VBZ 's) (ADJP (NN simple) (JJ pumpie))) (. .)))
429854 (ROOT (WHADVP why) (@SBARQ (SQ (@SQ (@SQ (VBP do) (RB n't)) (NP you)) (VP (VB try) (S (TO to) (VP (@VP (@VP (VP (VB understand) (NP (DT all) (NNS parts))) (, ,)) (CC or)) (VP (VB write) (PP (IN in) (NP (PRP$ your) (@NP (JJ own) (NN language))))))))) (. ?)))
485442 (ROOT (PP (IN cactus) (NP league)) (@FRAG (, ,) (@FRAG (INTJ eh) (. ?))))
485442 (ROOT (NP (NNP let) (POS 's)) (@S (VP see) (. .)))
485442 (ROOT (WHNP what) (@SBARQ (SQ (@SQ (VBZ does) (NP liebman)) (VP (VB have) (S (PP (IN in) (NP (NP common) (PP (IN with) (NP (NP (DT the) (NN type)) (PP (IN of) (NP pain)))))) (@S (NP you) (VP (MD might) (VP (VB get) (PP (IN from) (NP (DT a) (@NP (NN cactus) (NN needle)))))))))) (. ?)))
463602 (ROOT (CC but) (@S (, ,) (@S (SBAR (IN before) (S (NP you) (VP (@VP (VBP accuse) (NP me)) (PP (IN of) (S (@VP (@VP (VBG shying) (PRT away)) (PP (IN from) (NP (PRP$ your) (JJ second)))) (PP (TO to) (NP (JJ last) (NN question)))))))) (@S (, ,) (@S (@S (@S (@S (S (NP (PRP$ my) (NN phd)) (VP (VBZ is) (PP (IN in) (NP (JJ inorganic) (NN chemistry))))) (PRN (, ,) (@PRN (S (NP homogeneous) (VP (VBZ catalysis) (S (TO to) (VP (VB be) (ADJP specific))))) (, ,)))) (CC but)) (S (@S (S (NP (PRP$ my) (@NP (JJS latest) (@NP (JJ scientific) (NN paper)))) (VP (VBD was) (VP (VBN submitted) (S (PRN (-LRB- -LRB-) (@PRN (PP (ADVP still) (@PP (IN with) (NP (DT the) (NNS reviewers)))) (-RRB- -RRB-))) (PP (TO to) (NP <url>)))))) (: :)) (S (NP it) (VP (@VP (@VP (VBZ touches) (PP (IN on) (NP (NP (DT the) (@NP (JJ metrological) (NNS consequences))) (PP (IN of) (NP (NP (DT the) (@NP (JJ microscopic) (NN quantization))) (PP (IN of) (NP q))))))) (, ,)) (SBAR (IN as) (S (NP it) (VP (@VP (VBZ happens) (, ,)) (SBAR (IN although) (S (NP that) (VP (@VP (VBZ is) (RB not)) (NP (PRP$ its) (@NP (JJ main) (NN thrust))))))))))))) (. .))))))
463602 (ROOT (SBAR so) (@SBARQ (, ,) (@SBARQ (SQ (@SQ (@SQ (SQ (@SQ (VBP do) (NP you)) (VP (VB want) (S (TO to) (VP (@VP (@VP (VB thrash) (NP this)) (PRT out)) (PP (IN among) (NP scientists)))))) (, ,)) (CC or)) (SQ (@SQ (MD would) (NP you)) (VP (VB prefer) (S (TO to) (VP (@VP (VB waste) (NP (PRP$ your) (NN time))) (PP (IN with) (NP arbcom))))))) (. ?))))
351042 (ROOT (VP hmm) (. .))
351042 (ROOT (ADVP over) (. ?))
627236 (ROOT (@S (@S (S (NP (DT no) (@NP (JJ other) (NN encyclopedia))) (VP (@VP (VBZ deals) (PP (IN with) (NP (NP (DT these) (NNS charges)) (PP (IN in) (NP (PRP$ their) (NNS entries)))))) (PP (IN on) (NP reagan)))) (: ;)) (S (NP encyclopedias) (VP (@VP (VBP have) (NP (JJR higher) (NNS standards))) (PP (IN than) (NP (@NP (NP (NN supermarket) (NNS tabloids)) (CC and)) (NP (NN kitty) (NN kelley))))))) (. .))
627236 (ROOT (SBAR (ADVP on) (@SBAR (IN that) (S note))) (@FRAG (, ,) (@FRAG (WHADVP why) (@FRAG (RB not) (@FRAG (VP (VB post) (NP (NP (DT the) (NN content)) (SBAR (NP you) (VP (@VP (VBP want) (PP (IN in) (NP (DT the) (@NP (JJ <url>) (NN article))))) (ADVP instead))))) (. ?))))))
228874 (ROOT (S (VBG having) (VP (VBD said) (WHNP that))) (@S (, ,) (@S (NP i) (@S (VP (@VP (VBP do) (RB n't)) (VP (VB want) (S (TO to) (VP (@VP (VB drive) (NP anyone)) (ADVP (ADVP (RB away) (RB just)) (SBAR (IN because) (S (NP they) (VP (@VP (MD ca) (RB n't)) (VP (VB write) (ADVP well)))))))))) (. .)))))
228874 (ROOT (NP (DT the) (NN question)) (VP (@VP (VBZ is) (, ,)) (SBARQ (WHADVP where) (@SBARQ (SQ (@SQ (VBP do) (NP you)) (VP begin)) (. ?)))))
253114 (ROOT (NP i) (@S (VP (VBP note) (S (NP you) (VP (@VP (@VP (@VP (VBN reverted) (NP (PRP$ my) (NN edit))) (PP (IN on) (NP <url>))) (, ,)) (S (VBG quoting) (NP consensus))))) (. .)))
253114 (ROOT (WHNP what) (@SBARQ (SQ consensus) (. ?)))
260538 (ROOT (NP i) (@S (VP (VBP have) (NP (NP (RB absolutely) (@NP (DT no) (NN idea))) (SBAR (WHNP what) (S (NP you) (VP (VBP are) (VP (VBG talking) (IN about))))))) (. .)))
260538 (ROOT (VP (VB please) (VP (VB be) (ADJP (RBR more) (JJ precise)))) (. ?))
623596 (ROOT (NP please) (@S (VP (@VP (VBP do) (RB not)) (VP (VB remove) (NP warnings))) (. .)))
623596 (ROOT (SBAR (RB just) (S (VBP follow) (SBAR (NP (DT the) (@NP (@NP (NNS rules) (CC and)) (NN everyone))) (VP (MD will) (VP (VB get) (PRT along)))))) (@FRAG (, ,) (@FRAG (ADVP ok) (. ?))))
476169 (ROOT .)
476169 (ROOT (CC but) (@S (SBAR (WHADVP when) (S (NP you) (VP (VBP do) (NP (NP things) (PP (IN like) (NP <url>)))))) (@S (, ,) (@S (NP i) (@S (VP (VBP start) (S (VBG distancing) (NP myself))) (. .))))))
476169 (ROOT (WHNP what) (@SBARQ (SQ (VBD made) (SBAR (NP you) (VP (@VP (VBP come) (PP (TO to) (NP (DT that) (NN decision)))) (SBAR (IN if) (S (NP you) (VP (@VP (VBD did) (ADVP differently)) (PP (IN on) (NP (DT the) (@NP (@NP (NNP <url>) (CC and)) (NNP <url>)))))))))) (. ?)))