-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsentential-by-relation.cjparses.txt
1377 lines (1377 loc) · 785 KB
/
sentential-by-relation.cjparses.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
(S1 (S (NP (NP (NP (NNP Mr.) (NNP Gray)) (PP (IN of) (NP (NNP Blackstone)))) (, ,) (NP (NP (DT a) (NNP Chicago) (NN native)) (SBAR (WHNP (WP who)) (S (VP (AUX had) (VP (VBN given) (PRT (RP up)) (NP (PRP$ his) (NNS seats)) (PP (TO to) (NP (DT the) (NN game) (S (VP (TO to) (VP (VB stay) (PP (IN in) (NP (NNP New) (NNP York))))))))))))) (, ,)) (VP (VBD missed) (S (VP (VBG seeing) (NP (NP (DT a) (JJ remarkable) (JJ kickoff) (NN return)) (PP (IN by) (NP (DT the) (NNP Chicago) (NNPS Bears)))))) (SBAR (IN as) (S (NP (PRP he)) (VP (VBD jumped) (PP (IN on) (NP (DT the) (NN phone))) (S (VP (TO to) (VP (VB strategize) (PP (IN about) (SBAR (WHNP (WP what)) (S (VP (TO to) (VP (AUX do))))))))))))) (. .)))
(S1 (S (NP (JJ Last) (NN year)) (, ,) (NP (DT a) (NN state) (NN screening) (NN committee)) (VP (VBD recommended) (S (VP (VBG giving) (NP (DT the) (NN franchise)) (PP (TO to) (NP (NP (NNP Excelsior) (NN Racing) (NNP Associates)) (, ,) (NP (NP (DT a) (JJ New) (NNP York) (NNP City) (NN group)) (VP (VBN led) (PP (IN by) (NP (NP (NP (NNP Richard) (NNP Fields)) (, ,) (NP (DT a) (NN casino) (NN developer)) (, ,)) (CC and) (NP (NP (NNP Stephen) (NNP W.) (NNP Swindal)) (, ,) (NP (NP (DT a) (NN partner)) (PP (IN in) (NP (NP (DT the) (NNP New) (NNP York) (NNPS Yankees)) (SBAR (WHNP (WP who)) (S (VP (AUX is) (ADVP (RB also)) (NP (NP (NNP George) (NNP Steinbrenner) (POS 's)) (NN son-in-law)))))))))))))))))) (. .)))
(S1 (S (S (NP (NNP Sosa)) (VP (AUX was) (ADJP (JJ 13-3)) (PP (IN in) (NP (CD 2005))) (PP (IN for) (NP (DT the) (NNP Atlanta) (NNPS Braves))))) (, ,) (CC but) (S (NP (JJ last) (NN season)) (NP (PRP he)) (VP (VBD went) (NP (CD 3-11)) (PP (IN for) (NP (NP (NNP Atlanta)) (CC and) (NP (DT the) (NNP St.) (NNP Louis) (NNPS Cardinals)))))) (. .)))
(S1 (S (PP (VBG Highlighting) (SBAR (WHADJP (WRB how) (JJ dominant)) (S (NP (DT the) (CD 1995-96) (NNP Chicago) (NNPS Bulls)) (VP (AUX were))))) (, ,) (NP (NP (DT the) (NNPS Mavericks)) (PRN (-LRB- -LRB-) (NP (CD 46-9)) (-RRB- -RRB-))) (VP (AUX have) (VP (VBN lost) (NP (NP (JJR more) (NN home) (NNS games)) (PRN (-LRB- -LRB-) (NP (CD three)) (-RRB- -RRB-))) (PP (IN than) (SBAR (S (NP (NNP Chicago)) (VP (AUX did) (NP (NP (DT all) (NN season)) (PRN (-LRB- -LRB-) (NP (CD two)) (-RRB- -RRB-))) (PP (IN on) (NP (NP (PRP$ its) (NN way)) (PP (TO to) (NP (DT a) (JJ 72-10) (NN finish))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (NNP Jacksonville)) (, ,) (NP (NNP Fla.)))) (, ,) (NP (NNS demonstrators)) (VP (VBD used) (NP (DT an) (JJ unusual) (JJ visual) (NN aid)) (S (VP (TO to) (VP (VB illustrate) (NP (NP (VBG rising) (NN sea) (NNS levels)) (: :) (NP (NP (NP (NNP Alltel) (NNP Stadium)) (, ,) (NP (NP (NN home)) (PP (IN of) (NP (NP (JJ professional) (NN football) (POS 's)) (NNP Jacksonville) (NNPS Jaguars)))) (, ,)) (SBAR (WHADVP (WRB where)) (S (NP (PRP they)) (VP (VBD hoisted) (NP (DT a) (NN boat) (CD 20) (NNS feet)) (PP (IN in) (NP (DT the) (NN air))) (PP (IN outside) (NP (DT an) (NN entrance)))))))))))) (. .)))
(S1 (S (NP (NP (NNP Raleigh)) (, ,) (NP (DT the) (NN state) (NN capital)) (, ,)) (VP (VBZ offers) (NP (NP (NN big-city) (NNS amenities)) (: --) (NP (NNS museums) (CC and) (NNS galleries)) (, ,) (NP (DT the) (VBG defending) (NNP Stanley) (NNP Cup) (NN champion) (NNP Carolina) (NNPS Hurricanes)) (CC and) (NP (NP (JJ live) (NN music)) (PP (IN at) (NP (NP (DT the) (NN Hideaway) (NN BBQ)) (CC and) (NP (DT the) (NNP Lincoln) (NNP Theater))))))) (. .)))
(S1 (S (PP (IN Because) (IN of) (NP (DT an) (JJ editing) (NN error))) (, ,) (NP (NP (DT a) (NN report)) (PP (IN in) (NP (NP (DT the) (NNP N.B.A.) (NN roundup)) (PP (IN in) (NP (DT some) (NNS copies))) (NP (JJ last) (NNP Thursday)))) (, ,) (PP (IN about) (NP (NP (NP (DT the) (NNP Toronto) (NNS Raptors) (POS ')) (JJ 90-77) (NN victory)) (PP (IN over) (NP (DT the) (NNP Milwaukee) (NNS Bucks))))) (, ,)) (VP (VBD misstated) (NP (NP (DT the) (NN team)) (SBAR (WHNP (WDT that)) (S (NP (NNP Toronto)) (VP (VBD tied) (PP (IN for) (NP (NP (DT the) (NN lead)) (PP (IN in) (NP (DT the) (NNP Atlantic) (NNP Division))))) (PP (IN as) (NP (DT a) (NN result)))))))) (. .)))
(S1 (S (NP (NP (NN Turnaround)) (PP (IN in) (NP (NNP Toronto) (NNP The) (NNP Toronto) (NNS Raptors)))) (VP (VP (AUX have) (VP (VBN won) (NP (NP (CD 12)) (PP (IN of) (NP (PRP$ their) (JJ last) (CD 20) (NNS games)))))) (CC and) (VP (AUX are) (NP (NP (DT a) (NN game)) (CC and) (NP (DT a) (NN half))) (PP (IN behind) (NP (DT the) (NNS Nets))) (PP (IN in) (NP (NP (DT the) (JJ weak) (NNP Atlantic) (NNP Division)) (, ,) (NP (NP (DT a) (JJ nice) (NN turnaround)) (PP (IN for) (NP (NP (DT a) (NN team)) (SBAR (WHNP (WDT that)) (S (VP (VBD started) (ADJP (JJ 5-10)))))))))))) (. .)))
(S1 (S (PP (IN By) (NP (NP (NP (NN virtue)) (PP (IN of) (NP (NP (DT the) (NNS Nets) (POS ')) (NN defeat)))) (CC and) (NP (NP (NP (DT the) (NNP Toronto) (NNS Raptors) (POS ')) (NN victory)) (PP (IN over) (NP (NP (DT the) (NNP Philadelphia) (NNS 76ers)) (PP (IN on) (NP (NNP Friday) (NN night)))))))) (, ,) (NP (NP (NNP Toronto)) (PRN (-LRB- -LRB-) (NP (CD 43-33)) (-RRB- -RRB-))) (VP (VBD secured) (NP (NP (PRP$ its) (JJ first) (NN division) (NN title)) (PP (IN in) (NP (NN franchise) (NN history))))) (. .)))
(S1 (S (NP (NP (NN RECORD)) (: --) (NP (JJ 14-2) (JJ 1ST-ROUND) (NN OPPONENT)) (: --) (NP (NNP BYE) (NNP SEEDING)) (: --) (NP (CD 2) (NN TEAM)) (: --) (NP (NNP Baltimore) (NNP Ravens) (PRN (-LRB- -LRB-) (NP (NNP North) (NNS champions)) (-RRB- -RRB-)) (NNP Baltimore))) (VP (VBD beat) (NP (NNP Buffalo) (NN yesterday)) (, ,) (S (VP (VBG using) (NP (NP (PRP$ its) (JJ fifth) (NN interception) (NN return)) (PP (IN for) (NP (DT a) (NN touchdown)))) (S (VP (TO to) (VP (VB secure) (NP (NP (DT the) (JJ second) (NN seeding)) (CC and) (NP (DT a) (JJ first-round) (NN bye))))))))) (. .)))
(S1 (S (CC But) (NP (DT both) (NNP Senator) (NNP John) (NNP McCain) (CC and) (NNP Senator) (NNP Barack) (NNP Obama)) (VP (AUX have) (ADVP (RB now)) (VP (AUX had) (S (VP (TO to) (VP (VB express) (NP (NN regret)) (PP (IN for) (S (VP (VBG saying) (SBAR (IN that) (S (NP (JJ American) (NNS lives)) (VP (AUX have) (VP (AUX been) ('' '') (VP (VBN wasted) ('' '') (PP (IN in) (NP (NN battle)))))))))))))))) (. .)))
(S1 (S (NP (CD 1) (NNP McCain)) (VP (VBZ Says) (NP (`` `) (UH No) (NP (NNP Plan) (NNP B) (POS ')) (PP (IN for) (NP (NNP Iraq)))) (PP (IN In) (NP (NP (DT a) (NN discussion)) (PP (IN of) (SBAR (WHADVP (WRB how)) (S (NP (PRP he)) (VP (MD would) (VP (VB handle) (NP (NNP Iraq)) (SBAR (IN if) (S (NP (NP (VBN elected) (NN president)) (, ,) (NP (NNP Senator) (NNP John) (NNP McCain))) (VP (VBD said) (SBAR (SBAR (IN that) (S (NP (NP (DT the) (NN buildup)) (PP (IN of) (NP (NP (JJ American) (NNS forces)) (PP (IN in) (NP (DT the) (NN country)))))) (VP (VBZ represents) (S (NP (DT the) (RB only) (JJ viable) (NN option)) (VP (TO to) (VP (VB avoid) (NP (NN failure)) (PP (IN in) (NP (NNP Iraq))))))))) (CC and) (SBAR (IN that) (S (NP (PRP he)) (VP (AUX had) (ADVP (RB yet)) (S (VP (TO to) (VP (VB identify) (NP (DT an) (JJ effective) (NN fallback)) (SBAR (IN if) (S (NP (DT the) (JJ current) (NN strategy)) (VP (VBD failed)))))))))))))))))))))) (. .)))
(S1 (S (NP (DT The) (NNS attacks)) (VP (VBD coincided) (PP (IN with) (NP (NP (DT a) (NN visit)) (PP (TO to) (NP (NNP Iraq))))) (PP (IN by) (NP (NP (DT a) (JJ Republican) (JJ Congressional) (NN delegation)) (VP (VBN led) (PP (IN by) (NP (NP (NNP Senator) (NNP John) (NNP McCain)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD declared) (PP (IN at) (NP (DT a) (NN news) (NN conference))) (SBAR (IN that) (S (NP (DT the) (JJ new) (NNP American) (NN security) (NN plan)) (VP (AUX was) (UCP ('' '') (S (VP (VBG making) (NP (NN progress)))) ('' '') (CC and) (SBAR (IN that) (S (NP (EX there)) (VP (AUX was) (NP (NP (NN cause)) (PP (IN for) (NP ('' '') (ADJP (RB very) (JJ cautious)) (NN optimism)))))))))))))))))))) (. .) ('' '')))
(S1 (S (S (NP (NNP John) (NNP McCain)) (VP (AUX is) (NP (NP (DT a) (JJ remarkable) (NNP American) (NN hero)) (SBAR (WHNP (WP who)) (S (VP (AUX has) (VP (VBN experienced) (NP (NN war))))))))) (, ,) (CC and) (SBARQ (PP (IN in) (NP (DT the) (ADJP (CD post-9) (NN \)) (JJ \/) (CD 11) (NN period))) (, ,) (WHNP (WP what) (JJR better) (NN kind) (PP (IN of) (NP (NN leader)))) (SQ (MD could) (NP (PRP we)) (VP (AUX have) (PP (IN than) (NP (DT that))))) (. ?) ('' ''))))
(S1 (SBARQ (WHADVP (WRB How)) (SQ (AUX is) (NP (PRP it)) (SBAR (IN that) (S (S (NP (NNP John) (NNP McCain)) (ADVP (RB now)) (VP (VBZ believes) (SBAR (S (NP (JJ American) (NNS lives)) (VP (AUX are) (VP (AUXG being) (VP (VBN wasted)))))))) (, ,) (CC yet) (S (NP (PRP he)) (ADVP (RB so) (RB stubbornly)) (VP (VBZ supports) (NP (NP (DT the) (NN president) (POS 's)) (NN plan) (S (VP (TO to) (VP (VP (VB escalate) (NP (DT the) (NN war)) (PP (IN in) (NP (NNP Iraq)))) (CC and) (VP (VB put) (NP (ADJP (RBR more) (JJ American)) (NNS lives)) (PP (IN in) (NP (NP (NN harm) (POS 's)) (NN way))))))))))))) (. ?) ('' '')))
(S1 (S (NP (PRP It)) (VP (AUX 's) (RB not) (SBAR (IN that) (S (NP (DT the) (NNP Episcopalian) (NNP John) (NNP McCain)) (VP (AUX is) (ADJP (RBR less) (JJ comfortable) (PP (IN with) (NP (NP (PRP$ his) (NN faith)) (SBAR (S (NP (PRP it)) (VP (AUX 's) (SBAR (IN that) (S (NP (NP (PRP$ his) (NN faith) (POS 's)) (NN tradition)) (ADVP (RB no) (RB longer)) (VP (VBZ seems) (ADJP (JJ convincing) (PP (TO to) (NP (NP (DT an) (NNP American) (NN public)) (SBAR (WHNP (WP$ whose) (NNS expectations)) (S (VP (AUX have) (VP (VBN shifted))))))))))))))))))))) (. .)))
(S1 (S (NP (DT This) (NN week)) (, ,) (NP (NP (NNP Senators) (NNP Carl) (NNP Levin)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NP (NNP Michigan)) (, ,) (CC and) (NP (NP (NNP John) (NNP McCain)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Arizona)))))))) (, ,)) (VP (VBD released) (NP (NP (CD three) (NNS letters)) (VP (VBG demanding) (SBAR (IN that) (S (NP (NNP Ms.) (NNP Rice)) (VP (VB make) (S (ADJP (JJ public)) (NP (NP (NP (DT the) (NN administration) (POS 's)) (NNS requirements)) (PP (IN for) (NP (NP (NNS actions)) (SBAR (S (VP (TO to) (VP (AUX be) (VP (VBN taken) (PP (IN by) (NP (DT the) (JJ Iraqi) (NN government))) (S (VP (TO to) (VP (VB earn) (NP (JJ continued) (JJ American) (NN support)))))))))))))))))))) (. .)))
(S1 (S (NP (NNP Senator) (NNP John) (NNP McCain)) (VP (VBD said) (SBAR (SBAR (IN that) (S (NP (NP (DT the) (NN buildup)) (PP (IN of) (NP (NP (JJ American) (NNS forces)) (PP (IN in) (NP (NNP Iraq)))))) (VP (VBD represented) (S (NP (DT the) (ADJP (RB only) (JJ viable)) (NN option)) (VP (TO to) (VP (VB avoid) (NP (NN failure)) (PP (IN in) (NP (NNP Iraq))))))))) (CC and) (SBAR (IN that) (S (NP (PRP he)) (VP (AUX had) (ADVP (RB yet)) (S (VP (TO to) (VP (VB identify) (NP (DT an) (JJ effective) (NN fallback)) (SBAR (IN if) (S (NP (DT the) (JJ current) (NN strategy)) (VP (VBN failed)))))))))))) (. .) ('' '')))
(S1 (S (S (NP (NP (DT The) (JJ zydeco) (CC and) (JJ Cajun) (NNS musicians)) (PP (PP (IN from) (NP (DT the) (NN bayou) (NN country))) (PP (TO to) (NP (DT the) (NN west)))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX was) (ADVP (RB harder)) (VP (VBN hit) (PP (IN by) (NP (NNP Hurricane) (NNP Rita))))))) (, ,)) (ADVP (RB also)) (VP (VBD sang) (PP (IN about) (NP (NP (DT the) (NNS storms)) (SBAR (S (NP (DT the) (NNP Cajun) (NN rocker) (NNP Zachary) (NNP Richard)) (VP (AUX had) (NP (NP (DT a) (NN song)) (SBAR (WHNP (WDT that)) (S (VP (VBD vowed)))))))))))) (, ,) ('' '') (NP (NNP Seven) (NNS generations)) (NP (PRP we)) (VP (AUX 've) (VP (AUX been) (VP (VBN stuck) (ADVP (RB here)) (PP (IN in) (NP (DT the) (NN mud\/But))) (NP (NP (DT the) (JJ only) (NN way)) (SBAR (WHNP (IN that)) (S (NP (PRP I)) (VP (AUX 'm) (VP (VBG leaving) (SBAR (S (NP (NNP Louisiana)) (VP (AUX is) (SBAR (IN if) (S (NP (PRP I)) (VP (AUX 'm) (VP (VBN swept) (ADVP (RB away)) (PP (IN in) (NP (DT a) (NN flood)))))))))))))))))) (. .) ('' '')))
(S1 (S (S (SBAR (WHADVP (WRB When)) (S (NP (NP (NNP Senator) (NNP John) (NNP McCain)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Arizona)))) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX has) (ADVP (RB long)) (VP (VBN favored) (S (VP (VBG sending) (NP (JJR more) (NNS troops)) (PP (TO to) (NP (NNP Iraq))))))))) (, ,)) (VP (VBD asked) (SBAR (IN if) (S (NP (NP (NN approval)) (PP (IN of) (NP (NP (DT a) (NNP Senate) (NN resolution)) (VP (VBG assailing) (NP (NP (NNP Mr.) (NNP Bush) (POS 's)) (JJ new) (NN strategy)))))) (VP (MD could) (VP (VB hurt) (NP (NP (DT the) (NN morale)) (PP (IN of) (NP (JJ American) (NNS troops))))))))))) (, ,) (NP (DT the) (NN general)) (VP (VBN replied))) (, ,) ('' '') (NP (PRP It)) (VP (MD would) (RB not) (VP (AUX be) (NP (NP (DT a) (JJ beneficial) (NN effect)) (, ,) (NP (NNP sir))))) (. .) ('' '')))
(S1 (S (S (NP (NP (DT The) (JJ zydeco) (CC and) (JJ Cajun) (NNS musicians)) (PP (PP (IN from) (NP (DT the) (NN bayou) (NN country))) (PP (TO to) (NP (DT the) (NN west)))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX was) (ADVP (RB harder)) (VP (VBN hit) (PP (IN by) (NP (NNP Hurricane) (NNP Rita))))))) (, ,)) (ADVP (RB also)) (VP (VBD sang) (PP (IN about) (NP (NP (DT the) (NNS storms)) (SBAR (S (NP (DT the) (NNP Cajun) (NN rocker) (NNP Zachary) (NNP Richard)) (VP (AUX had) (NP (NP (DT a) (NN song)) (SBAR (WHNP (WDT that)) (S (VP (VBD vowed)))))))))))) (, ,) ('' '') (NP (NNP Seven) (NNS generations)) (NP (PRP we)) (VP (AUX 've) (VP (AUX been) (VP (VBN stuck) (ADVP (RB here)) (PP (IN in) (NP (DT the) (NN mud\/But))) (NP (NP (DT the) (JJ only) (NN way)) (SBAR (WHNP (IN that)) (S (NP (PRP I)) (VP (AUX 'm) (VP (VBG leaving) (SBAR (S (NP (NNP Louisiana)) (VP (AUX is) (SBAR (IN if) (S (NP (PRP I)) (VP (AUX 'm) (VP (VBN swept) (ADVP (RB away)) (PP (IN in) (NP (DT a) (NN flood)))))))))))))))))) (. .) ('' '')))
(S1 (FRAG (PP (TO To) (NP (DT the) (NN Editor))) (: :) (S (S (NP (NNP Re) ('' '') (NNP Senators)) (VP (VB Regret) (NP (NP (NNS Remarks)) (PP (IN on) (NP (NNS Troops)))) ('' '') (PRN (-LRB- -LRB-) (NP (NP (NN news) (NN article)) (, ,) (NP (NNP March) (CD 2))) (-RRB- -RRB-)))) (: :) (RB So) (S (NP (NP (NNP Senator) (NNP John) (NNP McCain)) (CC and) (NP (NNP Senator) (NNP Barack) (NNP Obama))) (VP (AUX have) (DT both) (VP (VBD apologized) (PP (IN for) (S (VP (VBG saying) (SBAR (IN that) (S (NP (JJ American) (NNS lives)) (VP (AUX have) (VP (AUX been) ('' '') (VP (VBN wasted) ('' '') (PP (IN in) (NP (NN battle))))))))))))))) (. .)))
(S1 (S (PP (TO To) (NP (DT the) (NN Editor))) (: :) (NP (PRP It)) (VP (AUX is) (ADJP (JJ appalling)) (SBAR (IN that) (S (NP (NNP John) (NNP McCain)) (VP (MD would) (VP (VB claim) (SBAR (IN that) (S (NP (PRP it)) (VP (AUX is) (NP (NP (NNPS Democrats)) ('' '') (SBAR (WHNP (WP who)) (S (VP (VBP deny) (NP (PRP$ our) (NNS soldiers)) (NP (DT the) (NN means)) (S (VP (TO to) (VP (VB prevent) (NP (DT an) (NNP American) (NN defeat)) ('' '') (PRN (-LRB- -LRB-) ('' '') (S (NP (NNP McCain)) (VP (VBZ Says) (SBAR (S (NP (NNPS Democrats)) (VP (VBP Play) (`` `) (NP (JJ Small) (NNS Politics)) ('' ') (PP (IN Over) (NP (NNP Iraq)))))))) (, ,) ('' '') (NP (NP (NN news) (NN article)) (, ,) (NP (NNP April) (CD 12))) (-RRB- -RRB-))))))))))))))))) (. .)))
(S1 (S (S (PP (VBN Based) (PP (IN on) (NP (NP (NNS statistics)) (PP (IN of) (NP (JJ reported) (NN crime)))))) (, ,) (NP (NP (NNS residents)) (PP (IN of) (NP (NNP Nassau) (CC and) (NNP Suffolk)))) (VP (AUX are) (ADJP (ADJP (JJR less)) (PP (IN than) (NP (NN one-third)))) (PP (IN as) (ADJP (JJ likely) (S (VP (TO to) (VP (AUX be) (NP (NP (NN crime) (NNS victims)) (PP (IN as) (NP (NNP New) (NNP York) (NNP City) (NNS residents))))))))))) (, ,) (VP (VBD said) (NP (NP (NNP Dr.) (NNP Andrew) (NNP Karmen)) (, ,) (NP (NP (DT a) (NN sociology) (NN professor)) (PP (IN at) (NP (NNP John) (NNP Jay)))))) (. .) ('' '')))
(S1 (S (S (NP (NP (DT The) (NN theme)) (PP (IN of) (NP (NP (DT this) (NN year) (POS 's)) (NN issue)))) (VP (AUX is) (NP (NN music)))) (, ,) (CC and) (S (NP (DT this) (NN special)) (VP (VBZ goes) (PP (IN behind) (NP (DT the) (NNS scenes))) (PP (IN with) (NP (NP (DT the) (NNS models)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD shimmied) (PP (IN at) (NP (NP (NNS locations)) (PP (IN like) (NP (NP (NP (DT the) (NNP Rock) (CC and) (NNP Roll) (NNP Hall)) (PP (IN of) (NP (NNP Fame))) (PP (IN in) (NP (NNP Cleveland)))) (CC and) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NNP Elvis) (NNP Presley) (NN mansion)) (PP (IN in) (NP (NNP Memphis)))))))))))))))) (. .)))
(S1 (S (NP (NP (DT A) (NN Miracle)) (PP (IN of) (NP (NNS Catfish))) ('' '')) (VP (VBZ takes) (NP (NN place)) (PP (IN in) (NP (NP (NP (NNP Larry) (NNP Brown) (POS 's)) (NN world)) (, ,) (NP (JJ northern) (NNP Mississippi))))) (. .)))
(S1 (SINV (S (NP (PRP We)) (VP (VBP want) (NP (NP (DT a) (NN debate)) (PP (IN about) (NP (NNP Iraq))) (SBAR (WHNP (WDT that)) (S (VP (VBZ includes) (NP (NP (NN funding)) (PP (IN for) (NP (DT the) (NNS troops)))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NP (NNP Senator) (NNP Mitch) (NNP McConnell)) (PP (IN of) (NP (NNP Kentucky)))) (, ,) (NP (DT the) (NNP Republican) (NN leader))) (. .) ('' '')))
(S1 (SINV (S (SBAR (WHADVP (WRB When)) (S (NP (EX there)) (VP (AUX are) (NP (NP (NNS openings)) (VP (VBG popping) (PP (IN like) (NP (DT this)))))))) (, ,) (NP (PRP you)) (ADVP (RB never)) (VP (VBP know) (SBAR (WHNP (WP what)) (S (VP (TO to) (VP (VB expect))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Hamilton)) (, ,) (SBAR (WHNP (WP$ whose) (NNS men)) (S (VP (AUX 's) (SBAR (S (NP (NP (NN basketball) (NN coach)) (, ,) (NP (NNP Bruce) (NNP Pearl)) (, ,)) (VP (AUX was) (NP (NP (DT a) (NN candidate)) (PP (IN for) (NP (DT the) (NN opening))) (PP (IN at) (NP (NNP Iowa))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD hired) (NP (NNP Butler) (NNP Coach) (NNP Todd) (NNP Lickliter)) (PP (IN on) (NP (NNP Tuesday)))))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Edgar) (NNP Allan) (NNP Poe)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD lived) (ADVP (RP on) (CC and) (RP off)) (PP (IN in) (NP (DT the) (NN city)))))) (, ,)) (VP (VBD died) (PP (IN in) (NP (NNP Baltimore))) (PP (IN in) (NP (NP (CD 1849)) (PP (IN of) (NP (JJ mysterious) (NNS causes)))))) (. .)))
(S1 (S (NP (DT The) (NNS senators)) (VP (AUX have) (VP (AUX been) (VP (VBN joined) (PP (IN in) (NP (PRP$ their) (NN effort))) (PP (IN by) (NP (NP (DT the) (JJ Republican) (NN leader)) (, ,) (NP (NP (NP (NNP Mitch) (NNP McConnell)) (PP (IN of) (NP (NNP Kentucky)))) (, ,) (NP (NP (NNP Senator) (NNP John) (NNP Cornyn)) (PP (IN of) (NP (NNP Texas)))) (CC and) (NP (NP (NNP Senator) (NNP David) (NNP Vitter)) (PP (IN of) (NP (NNP Louisiana)))))))))) (. .)))
(S1 (S (NP (NP (NNP Mr.) (NNP Romney) (POS 's)) ('' '') (NN Turnaround)) ('' '') (VP (VBZ touts) (NP (NP (PRP$ his) (JJ successful) (NN stewardship)) (PP (IN of) (NP (NP (DT the) (CD 2002) (NNPS Olympics)) (SBAR (S (NP (NP (NNP Mr.) (NNP Giuliani) (POS 's)) ('' '') (NN Leadership)) ('' '') (VP (VBZ dwells) (PP (IN on) (NP (PRP$ his) (JJ successful) (NNS efforts) (S (VP (TO to) (VP (VB cut) (NP (NP (NN crime)) (PP (IN in) (NP (NP (NNP New) (NNP York) (NNP City)) (CC and) (NP (PRP$ his) (CD 9\/11) (NNS heroics) (NP (NNP Mr.) (NNP Richardson) (POS 's)) ('' '') (PP (IN Between) (NP (NP (NNS Worlds)) ('' '') (SBAR (S (VP (AUX is) (VP (VBN filled) (SBAR (IN with) (S (VP (VBZ boasts) (, ,) (PP (IN from) (NP (NP (PRP$ his) (NN description)) (PP (IN of) (NP (NP (DT a) (ADJP (CD 1995) (NN negotiation)) (NN session)) (PP (IN with) (NP (NNP Saddam) (NNP Hussein))))) (PP (IN as) ('' '') (NP (NP (NP (DT a) (JJ typical) (NN adventure)) (PP (IN for) (NP (PRP me))) (PP (IN in) (NP (NP (QP (JJR more) (IN than) (CD 30)) (NNS years)) (PP (IN of) (NP (JJ public) (NN service))))) ('' '') (PP (TO to) (NP (PRP$ his) (NN assertion)))) (IN that) (NP (PRP he)))) ('' '') (VP (VBD shattered) (NP (NP (NNP Theodore) (NNP Roosevelt) (POS 's)) (JJ long-standing) (NN record)) (PP (IN for) (S (VP (VBG handshaking) (CC and) (VP (VBN made) (NP (PRP it)) (PP (IN into) (NP (NP (DT the) (`` `) (NNP Guinness) (NNP Book)) (PP (IN of) (NP (NNP World) (NNPS Records))))))))))))))))))))))))))))))))))))) (. .) ('' '') ('' ')))
(S1 (S (PP (IN After) (NP (NNP Hurricane) (NNP Katrina))) (, ,) (NP (PRP he)) (VP (AUX was) (VP (VBN appointed) (PP (IN by) (NP (NP (NNP Gov.) (NNP Haley) (NNP Barbour)) (PP (IN of) (NP (NNP Mississippi))))) (S (VP (TO to) (VP (VB lead) (NP (NP (NP (DT the) (NN governor) (POS 's)) (NN commission)) (PP (IN on) (NP (NP (DT the) (NN recovery) (, ,) (NN rebuilding) (CC and) (NN renewal)) (PP (IN of) (NP (DT the) (NN state))))))))))) (. .)))
(S1 (S (NP (DT The) (JJ first) (NN season)) (VP (VBD followed) (NP (NP (NN Trademark) (NNS Properties)) (, ,) (VP (VP (VBN based) (PP (IN near) (NP (NP (NNP Charleston)) (, ,) (NP (NNP S.) (NNP C.))))) (CC and) (VP (VBN run) (PP (IN by) (NP (NNP Richard) (NNP C.) (NNP Davis))))))) (. .)))
(S1 (S (NP (NP (NP (DT The) (NNP Senate) (POS 's)) (JJ top) (NNS leaders)) (, ,) (NP (NP (NP (NNP Harry) (NNP Reid)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NNP Nevada)))) (, ,)) (CC and) (NP (NP (NNP Mitch) (NNP McConnell)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Kentucky)))))) (, ,)) (VP (VBD convened) (NP (DT a) (JJ bipartisan) (NN meeting)) (PP (IN at) (NP (CD 9) (NN a.m.))) (S (VP (TO to) (VP (VB discuss) (NP (NN bipartisanship)))))) (. .) ('' '')))
(S1 (S (SBAR (RB Even) (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBD visited) (NP (NP (PRP$ my) (JJ upscale) (NN cousin)) (PRN (-LRB- -LRB-) (S (NP (PRP he)) (VP (AUX 's) (NP (DT a) (NN psychiatrist)))) (-RRB- -RRB-)) (PP (IN in) (NP (NP (NNP Westport)) (, ,) (NP (NNP Conn.)))))))) (, ,) (PP (RB just) (IN down) (NP (NP (DT the) (NN road)) (PP (IN from) (NP (NP (NNP Paul) (NNP Newman) (POS 's)) (NN place))))) (, ,) (NP (PRP I)) (VP (VBD felt) (SBAR (S (NP (PRP I)) (VP (VBD belonged))))) (. .)))
(S1 (S (NP (NP (NP (NNP Senator) (NNP Mitch) (NNP McConnell)) (PP (IN of) (NP (NNP Kentucky)))) (, ,) (NP (DT the) (JJ Republican) (NN leader)) (, ,)) (VP (VBD seized) (PP (IN on) (NP (NP (DT the) (NNS differences)) (VP (VBG emerging) (PP (IN among) (NP (DT some) (NNPS Democrats))))))) (. .) ('' '')))
(S1 (S (SBAR (RB Even) (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBD visited) (NP (NP (PRP$ my) (JJ upscale) (NN cousin)) (PRN (-LRB- -LRB-) (S (NP (PRP he)) (VP (AUX 's) (NP (DT a) (NN psychiatrist)))) (-RRB- -RRB-)) (PP (IN in) (NP (NP (NNP Westport)) (, ,) (NP (NNP Conn.)))))))) (, ,) (PP (RB just) (IN down) (NP (NP (DT the) (NN road)) (PP (IN from) (NP (NP (NNP Paul) (NNP Newman) (POS 's)) (NN place))))) (, ,) (NP (PRP I)) (VP (VBD felt) (SBAR (S (NP (PRP I)) (VP (VBD belonged))))) (. .)))
(S1 (S (NP (DT The) (JJ late) (NNP Yitzhak) (NNP Rabin)) (VP (VBD called) (S (NP (PRP him)) (NP (NP (DT the) (JJS greatest) (NN builder)) (PP (IN of) (NP (NNP Jerusalem))) (PP (IN since) (NP (NNP Herod) (NP (DT the) (NNP Great))))))) (. .)))
(S1 (SINV (S (NP (PRP I)) (VP (AUX do) (RB n't) (VP (VB know) (SBAR (IN that) (S (NP (DT the) (JJ American) (NNS people)) (VP (MD will) (VP (VB see) (NP (DT the) (NN surge)) (PP (IN as) (NP (DT a) (JJ new) (NN direction)))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Senator) (NNP Ben) (NNP Nelson)) (, ,) (NP (NP (DT a) (NNP Democrat)) (PP (IN from) (NP (NNP Nebraska))))) (. .) ('' '')))
(S1 (S (S (SBAR (IN For) (S (NP (PRP me)) (VP (TO to) (VP (VB improve))))) (, ,) (NP (PRP I)) (VP (AUX have) (S (VP (TO to) (VP (VB depend) (PP (IN on) (NP (NP (DT a) (JJ whole) (NN bunch)) (PP (IN of) (NP (NNS people)))))))))) (, ,) ('' '') (NP (PRP he)) (VP (VBD said) (ADVP (RB recently)) (, ,) (S (VP (VBG sitting) (PP (IN in) (NP (PRP$ his) (NN office))) (PP (IN at) (NP (NP (NP (NNP Brigham) (CC and) (NNP Women) (POS 's)) (NNP Hospital)) (PP (IN in) (NP (NNP Boston))) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (PRP he)) (VP (VBZ keeps) (NP (NP (DT a) (NN copy)) (PP (IN of) (NP (NP (NNP Sylvia) (NNP Plath) (POS 's)) (NN poem) ('' '') (NNP The) (NNP Surgeon)))) (PP (IN at) (NP (NP (CD 2) (NN a.m.)) ('' '') (PP (JJ next) (TO to) (NP (PRP$ his) (NN desk))))))))))))) (. .) ('' '')))
(S1 (S (NP (DT That) (JJ same) (NN night)) (, ,) (NP (NP (NNP Nate) (NNP Robertson)) (PP (IN of) (NP (NNP Detroit)))) (VP (VBD threw) (NP (NP (CD 115) (NNS pitches)) (PP (IN in) (NP (CD five) (NN innings))) (, ,) (NP (NP (NP (NNP Dan) (NNP Haren)) (PP (IN of) (NP (NNP Oakland) (CD 117))) (PP (IN in) (NP (CD eight) (NN innings)))) (, ,) (NP (NP (NNP Dontrelle) (NNP Willis)) (PP (IN of) (NP (NNP Florida) (CD 95))) (PP (IN in) (NP (CD six)))) (, ,) (NP (NP (NNP Tomo) (NNP Ohka)) (PP (IN of) (NP (NNP Toronto) (CD 91))) (PP (IN in) (NP (CD five)))) (, ,) (NP (NP (NNP Matt) (NNP Belisle)) (PP (IN of) (NP (NNP Cincinnati) (CD 81))) (PP (IN in) (NP (CD five)))) (, ,) (NP (NP (NNP Brett) (NNP Tomko)) (PP (IN of) (NP (NP (NNP Los) (NNP Angeles) (CD 56)) (PP (IN in) (NP (NP (NP (CD two)) (CC and) (NP (NP (NP (DT a) (JJ third)) (CC and) (NP (NNP Kevin) (NNP Millwood))) (PP (IN of) (NP (NNP Texas) (CD 45))))) (PP (IN in) (NP (CD one)))))))) (CC and) (NP (NNS two-thirds))))) (. .)))
(S1 (S (NP (NP (CD Red76)) (, ,) (NP (NP (DT a) (JJ collective)) (PP (IN from) (NP (NP (NNP Portland)) (, ,) (NP (NNP Ore.))))) (, ,) (VP (VBN spearheaded) (PP (IN by) (NP (DT the) (NN artist) (NNP Sam) (NNP Gould)))) (, ,)) (VP (VBD assembled) (NP (NP (DT a) (NN kind)) (PP (IN of) (NP (NN lean-to))) (SBAR (WHPP (IN from) (WHNP (WDT which))) (S (NP (NN street) (NNS performances)) (VP (VBD called) ('' '') (SBAR (S (NP (NNP Revolutionary) (NNPS Days) ('' '')) (VP (AUX have) (VP (VBN emerged) (PP (IN during) (NP (NP (DT the) (NN course)) (PP (IN of) (NP (DT the) (NN show)))))))))))))) (. .)))
(S1 (SINV (S (NP (DT The) (JJ American) (NNS people)) (VP (MD can) (VP (VB see) (SBAR (WHNP (WP what)) (S (VP (AUX is) (VP (VBG happening) (ADVP (RB here))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Senator) (NNP Ben) (NNP Nelson)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NNP Nebraska))))) (. .) ('' '')))
(S1 (S (NP (NP (NNS Others)) (SBAR (WHNP (WP who)) (S (VP (AUX have) (ADVP (RB already)) (VP (VBN indicated) (S (NP (PRP they)) (VP (MD will) (VP (VB wear) (NP (NNP No.) (CD 42)))))))))) (VP (VBP include) (NP (NP (NP (NNP Ken) (NNP Griffey) (NNP Jr.)) (PP (IN of) (NP (NNP Cincinnati)))) (, ,) (NP (NP (NNP Florida) (POS 's)) (NNP Dontrelle) (NNP Willis)) (, ,) (NP (NP (NNP Carlos) (NNP Lee)) (PP (IN of) (NP (NNP Houston)))) (, ,) (NP (NP (NNP Derrek) (NNP Lee)) (PP (IN of) (NP (DT the) (NNP Cubs)))) (CC and) (NP (NP (NNP Detroit) (POS 's)) (NNP Gary) (NNP Sheffield)))) (. .)))
(S1 (S (NP (DT The) (NNS findings)) (, ,) (SBAR (IN while) (S (VP (VBG offering) (NP (JJ little) (NN solace)) (PP (TO to) (NP (NP (DT the) (NNS relatives)) (PP (IN of) (NP (NP (NNP Sean) (NNP Bell)) (, ,) (NP (NNP Amadou) (NNP Diallo)) (CC and) (NP (NP (JJ other) (NN minority) (NNS victims)) (PP (IN of) (NP (NN police) (NN gunfire)))))) (PP (IN in) (NP (NNP New) (NNP York) (NNP City)))))))) (, ,) (VP (VBP suggest) (SBAR (IN that) (S (NP (NP (DT the) (NN impact)) (PP (IN of) (NP (NN race))) (PP (IN on) (NP (NN police) (NN behavior)))) (VP (VP (AUX is) (ADJP (JJR subtler) (SBAR (IN than) (S (VP (ADVP (RB previously)) (VBN understood)))))) (, ,) (CC and) (VP (AUX is) (VP (ADVP (RB strongly)) (VBN shaped) (PP (IN by) (NP (JJ professional) (NN training))))))))) (. .)))
(S1 (S (SBAR (RB Even) (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBD visited) (NP (NP (PRP$ my) (JJ upscale) (NN cousin)) (PRN (-LRB- -LRB-) (S (NP (PRP he)) (VP (AUX 's) (NP (DT a) (NN psychiatrist)))) (-RRB- -RRB-)) (PP (IN in) (NP (NP (NNP Westport)) (, ,) (NP (NNP Conn.)))))))) (, ,) (PP (RB just) (IN down) (NP (NP (DT the) (NN road)) (PP (IN from) (NP (NP (NNP Paul) (NNP Newman) (POS 's)) (NN place))))) (, ,) (NP (PRP I)) (VP (VBD felt) (SBAR (S (NP (PRP I)) (VP (VBD belonged))))) (. .)))
(S1 (S (NP (NP (NNP William) (NNP Randolph) (NNP Hearst)) (, ,) (NP (NP (DT a) (NN rube)) (PP (IN from) (NP (NNP San) (NNP Francisco)))) (, ,)) (VP (VP (VBD came) (ADVP (RB here)) (PP (IN at) (NP (NP (DT the) (NN turn)) (PP (IN of) (NP (DT the) (JJ last) (NN century)))))) (CC and) (VP (VBD bought) (NP (NP (DT a) (NN newspaper)) (SBAR (WHNP (WDT that)) (S (VP (VBD became) (NP (DT the) (JJ legendary) (NNP New) (NNP York) (NNP Journal)))))))) (. .)))
(S1 (NP (NP (NNS EX-LAWMAKERS)) (: --) (NP (NP (NNP George) (NNP Allen)) (, ,) (NP (NP (JJ former) (NN senator)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NP (NNP Virginia) (NNP Newt) (NNP Gingrich)) (, ,) (NP (JJ former) (NNP Republican) (NNP House) (NN speaker) (NNP Alan) (NNP K.) (NNP Simpson)) (, ,) (NP (JJ former) (NN senator)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Wyoming)))) (CC and) (NP (NP (NNP Fred) (NNP Thompson)) (, ,) (NP (NP (JJ former) (NN senator)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Tennessee))))))))))) (. .)))
(S1 (S (NP (PRP He)) (VP (VBN trained) (PP (PP (IN with) (NP (NP (NNP Garth) (NNP Fagan)) (CC and) (NP (NP (NNS others)) (PP (IN in) (NP (PRP$ his) (JJ native) (NNP Rochester)))))) (CC and) (PP (IN with) (NP (NP (NNP Desmond) (NNP Richardson)) (CC and) (NP (NP (NNP Dwight) (NNP Rhoden)) (, ,) (NP (NP (DT the) (NNS founders)) (PP (IN of) (NP (DT the) (NNPS Complexions))) (, ,) (PP (IN in) (NP (NNP Manhattan))))))))) (. .)))
(S1 (S (NP (NP (DT The) (NN majority) (NN leader)) (, ,) (NP (NP (NP (NNP Harry) (NNP Reid)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NNP Nevada)))) (, ,)) (CC and) (NP (NP (DT the) (NN minority) (NN leader)) (, ,) (NP (NP (NNP Mitch) (NNP McConnell)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Kentucky))))))) (, ,)) (VP (VBD said) (SBAR (S (NP (PRP they)) (VP (VBD expected) (S (NP (DT the) (NN bill)) (VP (TO to) (VP (VB return) (PP (TO to) (NP (DT the) (NN floor))) (PP (IN before) (NP (NP (DT the) (JJ Fourth)) (PP (IN of) (NP (NNP July) (NN recess)))))))))))) (. .)))
(S1 (SINV (S (NP (PRP We)) (VP (AUX were) (ADJP (NP (DT a) (JJ little)) (JJ surprised) (PP (IN by) (NP (DT the) (NNS results)))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Sandy) (NNP Praeger)) (, ,) (NP (NP (NP (NNP Kansas) (POS ')) (NN insurance) (NN commissioner)) (CC and) (NP (NP (DT the) (NN president-elect)) (PP (IN of) (NP (DT the) (NN association)))))) (. .)))
(S1 (S (NP (DT The) (NN visit)) (VP (VBD seemed) (S (VP (TO to) (VP (AUX have) (NP (NP (DT a) (JJ dual) (NN purpose)) (: :) (S (VP (VP (TO to) (VP (VB deliver) (NP (DT an) (JJ in-person) (NN pledge)) (PP (IN of) (NP (NP (NN support)) (PP (IN for) (NP (NP (DT the) (NN town)) (PP (IN of) (NP (NNP Greensburg))))))))) (, ,) (CC and) (VP (TO to) (VP (VB dispel) (NP (DT any) (NNS comparisons)) (PP (TO to) (NP (NP (DT the) (NN hurricane) (NN response)) (, ,) (NP (NP (CD one) (NN day)) (SBAR (IN after) (S (NP (PRP$ his) (NN administration)) (VP (VBD sparred) (PP (IN with) (NP (NP (NNP Gov.) (NNP Kathleen) (NNP Sebelius)) (PP (IN of) (NP (NNP Kansas))))) (PP (IN over) (NP (NN disaster) (NN readiness)))))))))))))))))) (. .)))
(S1 (S (CC But) (NP (NP (DT the) (NNP Senate) (NN minority) (NN leader)) (, ,) (NP (NP (NNP Mitch) (NNP McConnell)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Kentucky))))) (, ,)) (VP (VBD said) (SBAR (S (NP (NNP Congress)) (VP (MD could) (RB not) (VP (VB supplant) (NP (NP (DT the) (NN authority)) (PP (IN of) (NP (DT the) (NN president))))))))) (. .) ('' '')))
(S1 (S (S (NP (NP (NNP France) (NNP Honors) (NNP Clint) (NNP Eastwood) (NNP Clint) (NNP Eastwood)) (, ,) (NP (NP (CD 76)) (, ,) (ADVP (RB below))) (, ,)) (VP (AUX had) (NP (NP (DT a) (JJ good) (NN day)) (PP (IN at) (NP (DT the) (JJ Élysée) (NNP Palace)))) (PP (IN in) (NP (NNP Paris))) (PP (IN on) (NP (NNP Saturday))) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (NP (NNP President) (NNP Jacques) (NNP Chirac)) (PP (IN of) (NP (NNP France)))) (VP (VBD inducted) (NP (PRP him)) (PP (IN as) (NP (NP (DT a) (NN knight)) (PP (IN in) (NP (NP (DT the) (NNP Legion)) (PP (IN of) (NP (NN Honor)))))))))))) (, ,) (NP (DT The) (NNP Associated) (NNP Press)) (VP (VBD reported)) (. .)))
(S1 (S (S (-LRB- -LRB-) (NP (NNP AP)) (-RRB- -RRB-) (VP (VBZ CAVALIERS) (NP (NP (CD 82)) (, ,) (NP (NN JAZZ) (CD 73))))) (: --) (S (NP (NNP LeBron) (NNP James)) (VP (VP (VBD scored) (NP (CD 24) (NNS points))) (CC and) (VP (AUX had) (NP (NP (DT a) (JJ season-high) (CD 17) (NNS rebounds)) (SBAR (S (VP (TO to) (VP (VB help) (S (VP (VB host) (S (NP (NNP Cleveland)) (VP (VB win) (NP (PRP$ its) (JJ eighth) (JJ straight) (NN game)))))))))))))) (. .)))
(S1 (S (NP (NP (JJ Triple) (NNP Play) (NNP Alternative) (NNS arts)) (PP (IN in) (NP (NNP Baltimore))) (PRN (: --) (NP (NP (DT a) (NN tradition)) (SBAR (WHNP (WDT that)) (S (VP (VBZ includes) (NP (NP (DT the) (JJ filmmaker) (NNP John) (NNP Waters)) (CC and) (NP (DT the) (NN musician) (NNP David) (NNP Byrne))))))) (: --))) (VP (AUX is) (ADJP (JJ alive) (CC and) (RB well))) (. .)))
(S1 (S (NP (JJ First-Round) (NNP Redux)) (NP (NP (NP (JJ Last) (NN year) (POS 's)) (JJ first-round) (NN matchup)) (PP (IN between) (NP (NNP Cleveland) (CC and) (NNP Washington)))) (VP (VBN ended) (PP (IN in) (NP (DT the) (JJ sixth) (NN game))) (PP (IN with) (NP (NP (NP (NNP LeBron) (NNP James) (POS 's)) (NN psych-out)) (PP (IN of) (NP (NNP Gilbert) (NNS Arenas))) (PP (IN on) (NP (DT the) (NN free-throw) (NN line)))))) (. .)))
(S1 (S (NP (NP (DT A) (JJ Political) (NN Memo) (NN article)) (PP (IN on) (NP (NNP Thursday))) (, ,) (PP (IN about) (NP (NP (DT the) (NNS challenges)) (SBAR (S (NP (NNP Rudolph) (NNP W.) (NNP Giuliani)) (VP (VBZ faces) (PP (IN in) (S (VP (VBG running) (PP (IN for) (NP (NN president))) (PP (IN as) (NP (DT a) (JJ former) (NNP New) (NNP York) (NNP City) (NN mayor))))))))))) (, ,)) (VP (VBD referred) (ADVP (RB incorrectly)) (PP (TO to) (NP (NP (DT the) (NN timing)) (PP (IN of) (NP (NP (DT the) (JJ two-term) (NN presidency)) (PP (IN of) (NP (NP (DT another) (NNP New) (NNP Yorker)) (, ,) (NP (NNP Theodore) (NNP Roosevelt))))))))) (. .)))
(S1 (S (NP (EX There)) (VP (AUX were) (ADVP (RB also)) (NP (NP (NNS performers)) (SBAR (WHNP (WP who)) (S (VP (AUX were) (VP (VBN born) (PP (IN in) (NP (NNP Louisiana))) (, ,) (PP (VBG including) (NP (NP (NP (NNP Lucinda) (NNP Williams)) (, ,) (NP (NNP Jerry) (NNP Lee) (NNP Lewis)) (CC and) (NP (NNP Johnny) (NNS Rivers))) (, ,) (SBAR (WP$ whose) (S ('' '') (NP (NNP Secret) (NNP Agent) (NNP Man)) ('' '') (VP (AUX had) (NP (NP (DT a) (NN touch)) (PP (IN of) (NP (JJ bayou-country) (NN swamp-pop))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (DT another) (NN letter)) (PP (IN on) (NP (NNP Tuesday))))) (, ,) (NP (NP (CD two) (JJ Democratic) (NNS senators)) (, ,) (NP (NP (NP (NNP Patrick) (NNP J.) (NNP Leahy)) (PP (IN of) (NP (NNP Vermont)))) (CC and) (NP (NP (NNP Sheldon) (NNP Whitehouse)) (PP (IN of) (NP (NNP Rhode) (NNP Island))))) (, ,)) (VP (VBD asked) (NP (NNP Mr.) (NNP Gonzales)) (SBAR (WHADVP (WRB how)) (S (NP (DT the) (NNP Justice) (NNP Department)) (VP (MD would) (VP (VB respond) (PP (TO to) (NP (NP (NNS issues)) (VP (VBG stemming) (PP (IN from) (NP (NP (NNP Ms.) (NNP Goodling) (POS 's)) (NN refusal) (S (VP (TO to) (VP (VB testify)))))))))))))) (. .)))
(S1 (S (NP (PRP It)) (VP (AUX was) (NP (NP (DT a) (NN leadoff) (NN bunt) (JJ single)) (PP (IN in) (NP (NP (DT the) (JJ first) (NN inning)) (PP (IN by) (NP (NNP José) (NNPS Reyes))) (SBAR (WHNP (WDT that)) (S (VP (VBD seemed) (S (VP (TO to) (VP (VB discombobulate) (NP (NP (NNP Chuck) (NNP James)) (, ,) (NP (NP (NNP Atlanta) (POS 's)) (JJ starting) (NN pitcher)) (, ,)) (PP (IN in) (SBAR (WHNP (WP what)) (S (VP (VBD became) (NP (DT a) (JJ 7-2) (NNPS Mets) (NN victory)))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Mr.) (NNP Chabon)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBZ lives) (PP (IN in) (NP (NP (NNP Berkeley)) (, ,) (NP (NNP Calif.)) (, ,))) (SBAR (IN with) (S (NP (NP (PRP$ his) (NN wife)) (, ,) (NP (DT the) (NN writer) (NNP Ayelet) (NNP Waldman)) (, ,)) (VP (AUX is) (ADJP (RBR more) (JJ available) (PP (TO to) (NP (NP (PRP$ his) (CD two) (NNS boys)) (CC and) (NP (NP (CD two) (NNS girls)) (, ,) (NP (QP (CD 4) (TO to) (CD 12))))))))))))) (, ,)) (VP (VBG getting) (S (NP (PRP them)) (ADJP (JJ ready) (PP (IN for) (NP (NN school))))) (, ,) (S (VP (VBG breaking) (PP (IN from) (NP (NN work))) (SBAR (WHADVP (WRB when)) (S (NP (PRP they)) (VP (VBP return) (PP (IN in) (NP (DT the) (NNS afternoons))))))))) (. .)))
(S1 (S (PP (IN For) (NP (NN example))) (, ,) (S (NP (NP (NNP Representative) (NNP Jim) (NNP McDermott)) (, ,) (NP (NP (DT a) (JJ senior) (NN member)) (PP (IN of) (NP (NNPS Ways) (CC and) (NNPS Means)))) (, ,)) (VP (AUX is) (NP (DT a) (JJ quintessential) (NN liberal)))) (, ,) (CC but) (S (NP (PRP he)) (VP (AUX is) (ADVP (RB also)) (PP (IN from) (NP (NP (NNP Seattle)) (, ,) (NP (NP (DT a) (NN city)) (ADJP (RB heavily) (JJ dependent) (PP (IN on) (NP (NN trade))))))))) (. .)))
(S1 (S (CC But) (NP (NP (NP (NNP Senator) (NNP Mitch) (NNP McConnell)) (PP (IN of) (NP (NNP Kentucky)))) (, ,) (NP (DT the) (JJ Republican) (NN leader)) (, ,)) (VP (AUX did) (RB not) (ADVP (RB immediately)) (VP (VB agree) (S (VP (TO to) (VP (VB debate) (NP (DT the) (NN measure)) (, ,) (SBAR (IN so) (S (NP (PRP it)) (VP (AUX was) (ADJP (RB almost) (JJ certain) (S (VP (TO to) (VP (AUX be) (ADJP (JJ shelved)) (SBAR (IN as) (S (NP (JJ other) (NNP Iraq) (NNS bills)) (VP (AUX have) (VP (AUX been) (NP (DT this) (NN year)))))))))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Representative) (NNP Steve) (NNP Buyer)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Indiana)))) (, ,)) (VP (VBD said) (SBAR (S (NP (PRP he)) (VP (VBD sought) (NP (NP (DT a) (NN meeting)) (PP (IN with) (NP (NNP Defense) (NNP Department) (NNS officials)))) (PP (IN after) (S (VP (VBG visiting) (NP (NP (DT a) (NNP V.A.) (NN hospital)) (PP (IN in) (NP (NNP Minneapolis))) (SBAR (WHADVP (WRB where)) (S (NP (NNS doctors)) (VP (VP (VBD lacked) (NP (NP (JJ direct) (NN access)) (PP (TO to) (NP (DT the) (JJ patient) (NN tracking) (NN system))))) (CC and) (VP (AUX were) (ADVP (RB still)) (VP (VBG receiving) (VP (VBD faxed) (NP (NP (JJ medical) (NNS records)) (PP (IN from) (NP (JJ military) (NNS hospitals)))))))))))))))))) (. .)))
(S1 (S (NP (NP (NP (NNP Senators) (NNP Joseph) (NNP R.) (NNP Biden) (NNP Jr.)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NNP Delaware)))) (, ,)) (CC and) (NP (NP (NNP Chuck) (NNP Hagel)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Nebraska)))) (, ,))) (VP (VBD said) (SBAR (S (NP (PRP they)) (VP (MD would) (VP (VB back) (NP (NP (NP (NNP Mr.) (NNP Warner) (POS 's)) (NN alternative)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ declares) (SBAR (IN that) (S ('' '') (S (NP (DT the) (NNP Senate)) (VP (VBZ disagrees) (PP (IN with) (NP (NP (DT the) (`` `) (NN plan) ('' ')) (SBAR (S (VP (TO to) (VP (VB augment) (NP (PRP$ our) (NNS forces)) (PP (IN by) (NP (CD 21,500))))))))))) (, ,) ('' '') (VP (VBZ calls) (PP (IN on) (NP (DT the) (NN president) (S (VP (TO to) (VP (VP (VB consider) (NP (JJ other) (NNS alternatives))) (CC and) (VP (VBZ urges) (S (NP (PRP him)) (VP (TO to) (VP (VB limit) (NP (NP (DT the) (NNP American) (NN role)) (PP (IN in) (S (VP (VBG countering) (NP (JJ sectarian) (NN violence))))))))))))))))))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP President) (NNP Jacques) (NNP Chirac)) (PP (IN of) (NP (NNP France))) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD met) (PP (IN with) (NP (NNP Mr.) (NNP Siniora))) (PP (IN in) (NP (NNP Paris))) (PP (IN on) (NP (NNP Wednesday)))))) (, ,)) (VP (VBD followed) (PP (IN with) (NP (NP (DT a) (NN pledge)) (PP (IN of) (NP (NP (DT a) (NN 500-million-euro) (NN loan)) (PP (TO to) (NP (NP (NNP Lebanon)) (, ,) (SBAR (WHNP (WDT which)) (S (NP (NP (DT a) (NN spokesman)) (PP (IN for) (NP (NNP Mr.) (NNP Chirac)))) (VP (VBD said) (SBAR (S (VP (MD would) (VP (AUX be) (VP (VBN extended) (PP (IN on) ('' '') (NP (ADJP (RB highly) (JJ preferential)) (NNS terms)))))))))))))))))) (. .) ('' '')))
(S1 (S (NP (NNP Lima)) (VP (VP (VBZ goes) (PP (TO to) (NP (NNP Nicaragua)))) (, ,) (CC and) (VP (VBZ disappears) (S (ADVP (NP (RB there) (CD two) (NNS years)) (RB later)) (NP (PRP he)) (VP (VP (AUX has) (VP (VBN returned) (PP (TO to) (NP (NNP Mexico) (NNP City))))) (, ,) (CC and) (VP (AUX is) (VP (VBN glimpsed) (PP (IN by) (NP (NP (DT the) (NN secretary)) (PP (IN of) (NP (NNP Octavio) (NNP Paz))))))))))) (. .)))
(S1 (S (PP (IN At) (NP (NP (DT another) (NN point)) (PP (IN in) (NP (DT the) (NN debate))))) (, ,) (NP (NP (NNP Tommy) (NNP Thompson)) (, ,) (NP (NP (DT a) (JJ former) (NN governor)) (PP (IN of) (NP (NNP Wisconsin)))) (, ,)) (VP (VBD said) (SBAR (S (NP (PRP he)) (VP (MD would) (VP (VB allow) (S (NP (DT an) (NN employer)) (VP (TO to) (VP (VB fire) (NP (DT an) (NN employee)) (ADVP (RB solely)) (PP (IN for) (S (VP (AUXG being) (ADJP (JJ gay))))))))))))) (. .)))
(S1 (S (NP (NNP PAGE) (NNP A3)) (VP (VBZ Spurs) (ADJP (JJ Close)) (SBAR (IN In) (S (PP (IN on) (NP (NNP Title) (NNP San) (NNP Antonio))) (VP (VBD prevented) (NP (DT the) (NNP Cleveland) (NN star) (NNP LeBron) (NNP James)) (PP (IN from) (S (VP (VP (VBG attempting) (NP (NP (DT a) (JJ potential) (JJ game-tying) (NN shot)) (PP (IN in) (NP (DT the) (JJ final) (NNS seconds))))) (CC and) (VP (VBD held) (PRT (RP on)) (S (VP (TO to) (VP (VB win) (, ,) (NP (NN 75-72)) (, ,) (PP (IN in) (NP (NP (NNP Game) (CD 3)) (PP (IN of) (NP (DT the) (JJ best-of-seven) (NNP N.B.A.) (NNS finals)))))))))))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Reid)) (VP (VBD started) (NP (DT the) (NN week)) (PP (IN by) (S (VP (VBG introducing) (NP (NP (DT a) (JJ bipartisan) (NNS ethics) (CC and) (NN lobbying) (NN proposal)) (VP (VBN negotiated) (PP (IN with) (NP (NP (DT the) (JJ Republican) (NN leader)) (, ,) (NP (NP (NNP Senator) (NNP Mitch) (NNP McConnell)) (PP (IN of) (NP (NNP Kentucky)))))))))))) (. .)))
(S1 (S (S (NP (NP (DT The) (NN resolution)) (, ,) (VP (VBN proposed) (PP (IN by) (NP (NP (NP (NNP Senators) (NNP Joseph) (NNP R.) (NNP Biden) (NNP Jr.)) (PP (IN of) (NP (NP (NNP Delaware)) (CC and) (NP (NP (NNP Carl) (NNP Levin)) (PP (IN of) (NP (NNP Michigan))))))) (, ,) (NP (DT both) (NNPS Democrats)) (, ,) (CC and) (NP (NP (NNP Chuck) (NNP Hagel)) (PP (IN of) (NP (NNP Nebraska)))) (, ,))) (NP (DT a) (NNP Republican))) (, ,)) (VP (MD would) (RB not) (VP (AUX be) (ADJP (JJ binding))))) (, ,) (CC and) (S (NP (DT the) (NNP White) (NNP House)) (VP (VBD said) (SBAR (S (NP (PRP it)) (VP (MD would) (VP (AUX have) (NP (NP (DT no) (NN effect)) (PP (IN on) (NP (NP (NNP Mr.) (NNP Bush) (POS 's)) (NN plan) (S (VP (TO to) (VP (VB send) (NP (QP (JJR more) (IN than) (CD 20,000)) (JJ additional) (NNS troops)) (PP (TO to) (NP (NNP Iraq))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NN court) (NNS documents))) (, ,) (NP (NNS prosecutors)) (VP (VBD said) (SBAR (S (NP (NNP Atlanta) (NN police) (NNS officers)) (ADVP (RB regularly)) (VP (VBD lied) (S (VP (TO to) (VP (VB obtain) (NP (NP (NN search) (NNS warrants)) (CC and) (NP (NP (VBN fabricated) (NN documentation)) (PP (IN of) (NP (NN drug) (NNS purchases)))))))) (, ,) (SBAR (IN as) (S (NP (PRP they)) (VP (AUX had) (SBAR (WHADVP (WRB when)) (S (NP (PRP they)) (VP (VBD raided) (NP (NP (NP (DT the) (NN home)) (PP (IN of) (NP (DT the) (NN woman)))) (, ,) (NP (NNP Kathryn) (NNP Johnston)) (, ,)) (PP (IN in) (NP (NNP November))) (, ,) (S (VP (VBG killing) (NP (PRP her)) (PP (IN in) (NP (NP (DT a) (NN hail)) (PP (IN of) (NP (NNS bullets))))))))))))))))) (. .)))
(S1 (S (S (NP (NNS Others)) (VP (AUX have) (NP (JJ unimpeachable) (NNS reasons)))) (: :) (S (NP (NP (NNP Paul) (NNP Gailiunas)) (, ,) (NP (NP (DT a) (NN doctor)) (SBAR (WHNP (WHNP (WP$ whose) (NN wife)) (, ,) (NP (NNP Helen) (NNP Hill)) (, ,)) (S (VP (AUX was) (VP (VBN murdered) (PP (IN in) (NP (PRP$ their) (NN home))) (NP (JJ last) (NN month))))))) (, ,)) (VP (VBD left) (ADVP (RB immediately)) (PP (IN for) (NP (NNP South) (NNP Carolina))))) (. .)))
(S1 (S (NP (NP (NP (NNP Senator) (NNP Mitch) (NNP McConnell)) (PP (IN of) (NP (NNP Kentucky)))) (, ,) (NP (DT the) (JJ Republican) (NN leader)) (, ,)) (VP (VBD said) (NP (NNP Friday)) (SBAR (IN that) (S (NP (PRP$ his) (NN party)) (VP (MD would) (VP (VB unite) (S (VP (TO to) (VP (VB block) (NP (NNP Senate) (NN debate)) (NP (JJ next) (NN week)) (PP (IN on) (NP (NP (DT a) (JJ bipartisan) (NN resolution)) (VP (VBG opposing) (NP (NP (NNP President) (NNP Bush) (POS 's)) (NN troop) (NN buildup)) (PP (IN in) (NP (NNP Iraq))) (SBAR (IN unless) (S (NP (DT the) (NNPS Democrats)) (VP (VBD allowed) (NP (NP (NNS votes)) (PP (IN on) (NP (QP (IN at) (JJS least) (CD two)) (NNP Republican) (NNS alternatives)))))))))))))))))) (. .)))
(S1 (S (NP (JJ Great) (NN interest)) (VP (AUX is) (VP (VBN paid) (PP (TO to) (NP (NP (NP (DT the) (NN sport) (POS 's)) (ADJP (RB satanically) (VBN possessed)) (NN stepbrother)) (: :) (NP (NP (DT the) (ADJP (VBN scripted) (, ,) (VBN costumed) (CC and) (JJ slick-chested)) (NNS professionals)) (PP (IN of) (NP (NP (NNP Vince) (NNP McMahon) (POS 's)) (NNP World) (NN Wrestling) (NNP Entertainment) (, ,) (SBAR (WHNP (WP$ whose) (NNS stars)) (S (VP (VP (VB write) (NP (NP (JJ best-selling) (NNS memoirs)) (PRN (-LRB- -LRB-) (NP (NNP Steve) (NNP Austin)) (-RRB- -RRB-)))) (, ,) (VP (VB become) (NP (NP (NN action) (NN movie) (NNS hunks)) (PRN (-LRB- -LRB-) (NP (NNP The) (NNP Rock)) (-RRB- -RRB-)))) (CC or) (VP (VB get) (NP (NP (VBN elected) (NN governor)) (PP (IN of) (NP (NP (NNP Minnesota)) (PRN (-LRB- -LRB-) (NP (NNP Jesse) (NNP Ventura)) (-RRB- -RRB-)))))))))))))))) (. .)))
(S1 (S (NP (NP (NP (NNP Sheldon) (NNP Whitehouse)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NNP Rhode) (NNP Island)))) (, ,)) (CC and) (NP (NP (NNP Claire) (NNP McCaskill)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NNP Missouri)))) (, ,) (NP (DT both) (JJ former) (NNS prosecutors)) (, ,))) (VP (AUX were) (ADJP (RB especially) (JJ eloquent) (PP (IN about) (NP (NP (DT the) (NN way)) (SBAR (WHPP (IN in) (WHNP (WDT which))) (S (NP (NNP Mr.) (NNP Gonzales)) (VP (AUX has) (VP (VBN betrayed) (NP (NP (DT the) (NNS ideals)) (PP (IN of) (NP (NNP American) (NN law)))))))))))) (. .)))
(S1 (S (S (NP (NP (NN Councilman) (NNP Tony) (NNP Avella)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD joined) (NP (DT the) (NNP Kennedy) (JJ middle) (NN school) (NNS parents)) (PP (IN at) (NP (DT a) (NN bus) (NN stop))) (, ,) (PP (IN without) (NP (DT the) (NN bus))) (, ,) (PP (IN on) (NP (NP (NNP Willets) (NNP Point) (NNP Boulevard)) (PP (IN in) (NP (NP (NNP Whitestone)) (, ,) (NP (NNP Queens))))))))) (, ,)) (VP (VBD said))) (: :) ('' '') (S (NP (NP (NNS Parents)) (CC and) (NP (DT the) (NNS kids))) (VP (VBD stood) (ADVP (RB there)) (PP (IN for) (NP (IN about) (DT an) (NN hour))))) (. .)))
(S1 (S (`` `) (NP (NN OPENING) (NNS DOORS)) (: :) (S (NP (NP (DT A) (NN JOURNEY)) (PP (IN IN) (NP (NP (JJ MUSICAL) (NN THEATER) (POS ')) (PRN (-LRB- -LRB-) (NP (NNP Tomorrow) (CC and) (NNP Sunday)) (-RRB- -RRB-))))) (VP (VP (VB Take) (NP (NP (NP (DT the) (NNS songs)) (PP (IN of) (NP (NNP Stephen) (NNP Sondheim)))) (, ,) (NP (NNP Cy) (NNP Coleman)) (CC and) (NP (JJ other) (JJ modern) (NNS composers)))) (CC and) (VP (VB combine) (NP (PRP them)) (PP (IN with) (NP (NP (DT the) (NNS talents)) (PP (IN of) (NP (JJ selected) (NNP New) (NNP York) (NNP City) (NN middle) (CC and) (JJ high) (NN school) (NNS students)))))))) (, ,) (CC and) (S (NP (PRP you)) (VP (AUX have) (NP (NP (DT this) (JJ cabaret) (NN show)) (, ,) (VP (VBN presented) (PP (IN by) (NP (NNP Wingspan) (NNP Arts))))))) (. .)))
(S1 (S (NP (NP (DT A) (NAC (NNP Hunka) (, ,) (NNP Hunka) (DT An)) (NN exhibition)) (PP (IN of) (NP (NP (NP (NNP Elvis) (NNP Presley) (POS 's)) (NN stage) (NNS costumes)) (PP (IN from) (NP (NP (CD 1969)) (PP (TO to) (NP (CD 1977)))))))) (VP (VBD opened) (PP (IN on) (NP (NNP Thursday))) (PP (IN in) (NP (NP (DT the) (NN visitor) (NN center)) (PP (IN at) (NP (NNP Graceland) (NN mansion))) (PP (IN in) (NP (NNP Memphis)))))) (. .)))
(S1 (S (NP (DT This)) (VP (AUX is) (NP (NP (DT a) (ADJP (RB richly) (JJ anecdotal)) (NN history)) (PP (IN of) (NP (NP (NP (DT the) (NNP American) (NN newspaper) (NNS people)) (PRN (: --) (NP (NP (NP (NNP Ernest) (NNP Hemingway)) (CC and) (NP (NNP Henry) (NNP Miller))) (PP (IN among) (NP (PRP them)))) (: --)) (SBAR (WHNP (WP who)) (S (VP (VBD flocked) (PP (TO to) (NP (NNP Paris))) (PP (IN during) (NP (NP (DT the) (CD 15) (NNS years)) (PP (IN after) (NP (DT the) (NN armistice))) (SBAR (WHNP (WDT that)) (S (VP (VBD ended) (NP (NNP World) (NNP War) (NNP I.)) (NP (DT A) (NN WRITER)) (PP (IN AT) (NP (NN WAR)))))))))))) (: :) (NP (NP (DT A) (NNP Soviet) (NN Journalist)) (PP (IN With) (NP (NP (DT the) (NNP Red) (NNP Army)) (, ,) (NP (CD 1941-1945)) (, ,))) (PP (IN by) (NP (NNP Vasily) (NNP Grossman)))))))) (. .)))
(S1 (S (NP (NP (NNP Senator) (NNP Chuck) (NNP Hagel)) (PP (IN of) (NP (NNP Nebraska))) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX has) (VP (AUX been) (NP (NP (DT the) (JJS loudest) (JJ Republican) (NN critic)) (PP (IN of) (NP (NP (DT the) (NN president) (POS 's)) (NNP Iraq) (NN policy)))))))) (, ,)) (ADVP (RB also)) (VP (VBD signed) (NP (DT the) (NN letter)) (SBAR (IN after) (S (NP (PRP$ his) (NN vote)) (VP (VBD contributed) (PP (TO to) (NP (NP (DT a) (NN delay)) (PP (IN of) (NP (DT the) (NNP Iraq) (NN debate))))))))) (. .) ('' '')))
(S1 (S (SBAR (WHADVP (WRB When)) (S (NP (NNP Kyle)) (VP (AUX was) (NP (CD 5))))) (, ,) (NP (PRP$ his) (NN mother)) (VP (VBN organized) (NP (NP (DT a) (JJ local) (NN prayer) (NN vigil)) (PP (IN for) (NP (NP (NNP Amadou) (NNP Diallo)) (, ,) (NP (NP (DT the) (JJ African) (JJ immigrant) (NN shot)) (PP (TO to) (NP (NN death))) (PP (IN by) (NP (NP (DT the) (NN police)) (PP (IN in) (NP (NNP New) (NNP York) (NNP City)))))))))) (. .) ('' '')))
(S1 (S (S (ADVP (RB Now)) (NP (PRP you)) (VP (AUX have) (NP (NP (CD eight) (NNS pieces)) (PP (IN of) (NP (NN junk))) (VP (VBG sitting) (PP (IN at) (NP (DT the) (NN yard))))))) (, ,) ('' '') (NP (NP (NNP Representative) (NNP Gene) (NNP Taylor)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NNP Mississippi)))) (, ,)) (VP (VBD said) (PP (IN at) (NP (DT the) (NN hearing))) (, ,) (S (NP (PRP$ his) (NN voice)) (VP (VBG cracking) (PP (IN with) (NP (NN anger)))))) (. .)))
(S1 (NP (NNP XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)))
(S1 (S (NP (NP (NP (NNP Gov.) (NNP Haley) (NNP Barbour)) (PP (IN of) (NP (NNP Mississippi)))) (, ,) (NP (NP (DT a) (JJ former) (NN chairman)) (PP (IN of) (NP (DT the) (NNP Republican) (NNP National) (NNP Committee)))) (, ,)) (VP (VBD toasted) (NP (NP (DT the) (JJ political) (NN prowess)) (PP (IN of) (NP (NNP Mrs.) (NNP Clinton))))) (. .) ('' '')))
(S1 (S (NP (NP (NP (NNP Senator) (NNP Chuck) (NNP Hagel)) (PP (IN of) (NP (NNP Nebraska)))) (, ,) (NP (NP (DT an) (JJ outspoken) (NNP Republican) (NN critic)) (PP (IN of) (NP (NP (DT the) (NN administration) (POS 's)) (NNP Iraq) (NN policy)))) (, ,)) (VP (MD will) (VP (VB join) (NP (CD two) (VBG leading) (NNPS Democrats)) (PP (IN in) (S (VP (VBG introducing) (NP (NP (DT a) (NN resolution)) (VP (VBG opposing) (NP (NP (NP (NNP President) (NNP Bush) (POS 's)) (NN buildup)) (PP (IN of) (NP (NNS troops))) (PP (IN in) (NP (NNP Iraq))))))))) (, ,) (S (VP (VBG putting) (NP (DT a) (JJ bipartisan) (NN stamp)) (PP (IN on) (NP (DT the) (VBG looming) (JJ Congressional) (NN showdown))) (PP (IN over) (NP (DT the) (NN war))))))) (. .)))
(S1 (S (NP (NP (NNP Paul) (NNP Watzlawick)) (, ,) (NP (NP (DT a) (NN therapist)) (SBAR (WHNP (WP who)) (S (VP (VBD advanced) (NP (NP (DT a) (JJ novel) (NN strategy)) (PP (IN for) (NP (NP (JJ rapid) (NN diagnosis) (CC and) (NN treatment)) (PP (IN of) (NP (NP (NNS problems)) (SBAR (WHNP (WDT that)) (S (VP (VBP occur) (PP (IN in) (NP (NNS marriages) (CC and) (NNS families))))))))))))))) (, ,)) (VP (VBD died) (PP (IN on) (NP (NNP March) (CD 31))) (PP (IN at) (NP (NP (PRP$ his) (NN home)) (PP (IN in) (NP (NP (NNP Palo) (NNP Alto)) (, ,) (NP (NNP Calif.))))))) (. .)))
(S1 (S (NP (NP (CD Two) (JJ Democratic) (NNS Senators)) (, ,) (NP (NP (NP (NNP Ben) (NNP Nelson)) (PP (IN of) (NP (NNP Nebraska)))) (CC and) (NP (NP (NNP Mark) (NNP Pryor)) (PP (IN of) (NP (NNP Arkansas))))) (, ,)) (VP (VBD crossed) (NP (NN party) (NNS lines)) (S (VP (TO to) (VP (VB oppose) (NP (DT the) (NN withdrawal) (NN plan)))))) (. .)))
(S1 (S (S (NP (NP (DT The) (ADJP (RBS most) (JJ massive)) (NN poll)) (VP (ADVP (RB ever)) (VBN taken) (PP (IN on) (NP (DT any) (NN subject))))) (VP (AUX is) (VP (VBN taken) (PP (IN on) (NP (NP (DT the) (NN subject)) (PP (IN of) (S (VP (VBG using) (NP (NN tax) (NNS dollars)) (PP (IN for) (NP (JJ political) (NNS campaigns))))))))))) (, ,) ('' '') (NP (NP (NNP Senator) (NNP Mitch) (NNP McConnell)) (PP (IN of) (NP (NP (NNP Kentucky)) (, ,) (NP (DT the) (NNP Senate) (NNP Republican) (NN leader)) (, ,)))) (VP (VBD said) (PP (IN in) (NP (DT a) (NN statement)))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Jaime) (NNP Lerner)) (, ,) (NP (NP (DT the) (NN archangel)) (PP (IN of) (NP (DT the) (NNP Curitiba) (JJ green) (NN movement)))) (, ,)) (VP (AUX was) (VP (VBN anointed) (PP (IN by) (NP (NP (DT the) (NNS dragons)) (PP (IN of) (NP (NN war))))))) (. .)))
(S1 (S (PP (IN At) (NP (NP (DT a) (NN news) (NN conference)) (PP (IN in) (NP (NNP Baghdad))))) (, ,) (NP (NP (DT the) (JJ hard) (NNS choices)) (NP (DT the) (NN war))) (VP (AUX has) (VP (VBN placed) (SBAR (IN before) (S (NP (JJ American) (NNS politicians)) (VP (AUX were) (ADJP (JJ evident)) (SBAR (IN as) (S (NP (NP (NNP Senator) (NNP Chuck) (NNP Hagel)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Nebraska)))) (, ,)) (VP (VBD spoke) (PP (IN with) (NP (NNS reporters))) (PP (IN about) (NP (NP (NP (PRP$ his) (JJ two-day) (NN visit)) (ADVP (RB here))) (, ,) (NP (NP (PRP$ his) (JJ fifth)) (PP (IN since) (NP (NP (DT the) (NN invasion)) (PP (IN in) (NP (NNP March) (CD 2003)))))))))))))))) (. .)))
(S1 (S (S (NP (NP (DT The) (NN theme)) (PP (IN of) (NP (NP (DT this) (NN year) (POS 's)) (NN issue)))) (VP (AUX is) (NP (NN music)))) (, ,) (CC and) (S (NP (DT this) (NN special)) (VP (VBZ goes) (PP (IN behind) (NP (DT the) (NNS scenes))) (PP (IN with) (NP (NP (DT the) (NNS models)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD shimmied) (PP (IN at) (NP (NP (NNS locations)) (PP (IN like) (NP (NP (NP (DT the) (NNP Rock) (CC and) (NNP Roll) (NNP Hall)) (PP (IN of) (NP (NNP Fame))) (PP (IN in) (NP (NNP Cleveland)))) (CC and) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NNP Elvis) (NNP Presley) (NN mansion)) (PP (IN in) (NP (NNP Memphis)))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Gretchen) (NNP Bleiler)) (, ,) (NP (CD 25)) (, ,) (PP (IN of) (NP (NP (NNP Aspen)) (, ,) (NP (NNP Colo.)))) (, ,)) (VP (VBD placed) (ADVP (RB second)) (PP (IN with) (NP (NP (DT a) (NN score)) (PP (IN of) (NP (CD 85.0)))))) (. .)))
(S1 (S (NP (NN Color)) (VP (AUX is) (NP (NP (DT the) (NN stuff)) (PP (IN of) (NP (NN life))) (PP (IN in) (NP (NP (DT the) (NNS movies)) (PP (IN of) (NP (NP (NNP Mira) (NNP Nair)) (, ,) (NP (NP (DT the) (JJ Indian-born) (NN director)) (SBAR (WHNP (WHNP (WP$ whose) (JJS newest) (NN film)) (, ,) ('' '')) (S (NP (DT The) (NN Namesake)) (, ,) ('' '') (VP (VBZ follows) (NP (NP (CD two) (NNS generations)) (PP (IN of) (NP (NP (DT a) (NNP Bengali) (NN family)) (PP (PP (IN from) (NP (JJ late-1970s) (NNP Calcutta))) (PP (TO to) (NP (NNP New) (NNP York) (NNP City))))))))))))))))) (. .)))
(S1 (S (SBAR (IN While) (S (NP (NNP Kidd)) (VP (AUX was) (VP (VBG looking) (ADVP (RB forward)) (PP (TO to) (S (VP (VBG playing) (PP (IN with) (NP (NNP Kobe) (NNP Bryant)))))))))) (, ,) (NP (NNP Bibby)) (VP (MD could) (VP (AUX have) (VP (VBN played) (PP (IN with) (NP (NNP LeBron) (NNP James))) (PP (IN in) (NP (NNP Cleveland)))))) (. .) ('' '')))
(S1 (S (VP (VB Match) (NP (NP (NNS names)) (PP (IN with) (NP (NNS faces))) (: :) (NP (NP (NNP Senator) (NNP Sam) (NNP Brownback)) (PP (IN of) (NP (NP (NNP Kansas) (NNP John) (NNP H.) (NNP Cox)) (, ,) (NP (NP (NNP Chicago) (NN businessman) (NNP Former) (NNP Gov.) (NNP Jim) (NNP Gilmore)) (PP (IN of) (NP (NP (NNP Virginia) (NNP Rep.) (NNP Duncan) (NNP Hunter)) (PP (IN of) (NP (NP (NNP California) (NNP Former) (NNP Gov.) (NNP Tommy) (NNP Thompson)) (PP (IN of) (NP (NP (NNP Wisconsin) (NNP Former) (NNP Gov.) (NNP Mike) (NNP Huckabee)) (PP (IN of) (NP (NP (NNP Arkansas) (NNP Rep.) (NNP Ron) (NNP Paul)) (PP (IN of) (NP (NP (NNP Texas) (NNP Rep.) (NNP Tom) (NNP Tancredo)) (PP (IN of) (NP (NP (NNP Colorado)) (PRN (-LRB- -LRB-) (NP (NP (NP (CD One) (NN point)) (PP (IN for) (NP (DT each) (JJ correct) (NN match)))) (: --) (NP (JJ potential) (CD 8) (NNS points)) (. .)) (-RRB- -RRB-))))))))))))))))))))))
(S1 (S (NP (NP (NP (NNP Republican) (NNP Senators) (NNP Chuck) (NNP Hagel)) (PP (IN of) (NP (NNP Nebraska)))) (CC and) (NP (NP (NNP Olympia) (NNP J.) (NNP Snowe)) (PP (IN of) (NP (NNP Maine))))) (VP (VBD urged) (NP (NNP Senate) (NNS leaders)) (NP (JJ late) (NNP Wednesday)) (S (VP (TO to) (VP (VB cancel) (NP (DT the) (NN recess)) (SBAR (IN so) (S (NP (DT the) (NNP Iraq) (NN debate)) (VP (MD could) (VP (VB proceed))))))))) (. .)))
(S1 (S (NP (DT The) (JJ overall) (NN report)) (VP (AUX was) (VP (VBN approved) (PP (IN in) (NP (DT a) (JJ 10-5) (NN vote))) (, ,) (PP (IN with) (S (NP (NP (CD two) (NNP Republican) (NNS senators)) (, ,) (NP (NP (NP (NNP Olympia) (NNP Snowe)) (PP (IN of) (NP (NNP Maine)))) (, ,) (CC and) (NP (NP (NNP Chuck) (NNP Hagel)) (PP (IN of) (NP (NNP Nebraska))))) (, ,)) (VP (VBG joining) (PP (IN with) (NP (NP (DT all) (CD eight) (NNPS Democrats)) (PP (IN on) (NP (DT the) (NN committee)))))))))) (. .)))
(S1 (S (NP (NP (NNP Senator) (NNP Ben) (NNP Nelson)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NNP Nebraska)))) (, ,)) (VP (VBD said) (: :) (S ('' '') (NP (PRP I)) (VP (MD will) (VP (VB vote) (PP (PP (IN for) (NP (NN cloture))) (, ,) (CC but) (RB not)) (SBAR (IN because) (S (NP (PRP I)) (VP (VBP support) (NP (DT the) (JJ underlying) (NN bill))))))))) (. .)))
(S1 (S (PP (IN Despite) (NP (NP (JJ such) (NNS complaints) (CC and) (NNS suggestions)) (SBAR (WHNP (WDT that)) (S (NP (NP (NNS opponents)) (PP (IN of) (NP (DT the) (NN bill)))) (VP (AUX are) (VP (VBN motivated) (PP (IN by) (NP (NN bigotry))))))))) (, ,) (NP (NP (NNP Mr.) (NNP Sessions)) (CC and) (NP (NP (NNP Republican) (NNS colleagues)) (PP (IN like) (NP (NP (NP (NNP Jim) (NNP DeMint)) (PP (IN of) (NP (NNP South) (NNP Carolina)))) (, ,) (NP (NP (NNP Jim) (NNP Bunning)) (PP (IN of) (NP (NNP Kentucky)))) (CC and) (NP (NP (NNP David) (NNP Vitter)) (PP (IN of) (NP (NNP Louisiana)))))))) (VP (AUX have) (VP (VBD dug) (PP (IN in) (PP (IN against) (SBAR (WHNP (WP what)) (S (NP (PRP they)) (VP (VBP describe) (PP (IN as) (NP (DT a) (NN travesty)))))))))) (. .)))
(S1 (S (NP (NNPS Democrats)) (VP (VBD said) (SBAR (IN that) (S (NP (NP (NP (NNP Mr.) (NNP Kyl)) (CC and) (NP (NP (NNP Senator) (NNP Mitch) (NNP McConnell)) (PP (IN of) (NP (NNP Kentucky))))) (, ,) (NP (DT the) (NNP Republican) (NN leader)) (, ,)) (VP (VBD needed) (S (VP (TO to) (VP (VB squeeze) (NP (NP (NNS concessions)) (PP (IN from) (NP (NP (DT the) (NNS senators)) (VP (VBG fighting) (NP (DT the) (NN bill)))))) (SBAR (IN though) (S (NP (PRP they)) (VP (AUX were) (ADJP (JJ skeptical) (SBAR (S (NP (PRP it)) (VP (MD could) (VP (AUX be) (VP (AUX done) (SBAR (IN since) (S (NP (DT some) (NNS critics)) (VP (VBP appear) (ADJP (VBN determined) (S (VP (TO to) (VP (VB kill) (NP (DT the) (NN measure))))))))))))))))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT The) (NNP Republican) (NNP Senate) (NN leader)) (, ,) (NP (NP (NNP Mitch) (NNP McConnell)) (PP (IN of) (NP (NNP Kentucky)))) (, ,)) (VP (VBD convened) (NP (NP (DT a) (NN conference) (NN call)) (PP (IN with) (NP (NNS reporters)))) (PP (TO to) (NP (JJ taunt) (NNPS Democrats))) (PP (IN for) (S (VP (VBG failing) (S (VP (TO to) (VP (VB agree) (PP (IN on) (NP (NP (DT a) (NN means)) (PP (IN for) (S (VP (VBG winding) (PRT (RP down)) (NP (DT the) (NN war)))))))))))))) (. .)))
(S1 (S (NP (PRP He)) (VP (VBD became) (VP (ADVP (RB particularly) (RB well)) (VBN known) (PP (IN for) (NP (NP (PRP$ his) (ADJP (JJ outspoken) (CC and) (JJ visible)) (NN role)) (PP (IN in) (S (VP (VBG condemning) (NP (NP (DT the) (CD 1999) (NN shooting)) (PP (IN of) (NP (NP (NNP Amadou) (NNP Diallo)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN killed) (PP (IN in) (NP (NP (DT a) (NN barrage)) (PP (IN of) (NP (CD 41) (NNS bullets))) (VP (VBN fired) (PP (IN by) (NP (CD four) (NNP New) (NNP York) (NNP City) (NN police) (NNS officers)))))))))))))))))))) (. .)))
(S1 (S (NP (PRP They)) (VP (VBP travel) (PP (TO to) (NP (NNP Cleveland))) (PP (IN on) (NP (NNP Saturday))) (PP (IN for) (NP (NP (DT a) (NN game)) (PP (IN against) (NP (DT the) (NNPS Cavaliers) (CC and) (NNP LeBron) (NNP James)))))) (. .)))
(S1 (S (NP (DT The) (NNP Foreign) (NNP Relations) (NNP Committee)) (VP (VBD approved) (NP (DT the) (NN resolution)) (PP (IN by) (NP (NP (DT a) (NN vote)) (PP (IN of) (NP (NP (CD 12)) (PP (TO to) (NP (CD 9))))))) (, ,) (PP (IN with) (S (NP (NP (DT a) (NNP Republican) (NN senator)) (, ,) (NP (NP (NNP Chuck) (NNP Hagel)) (PP (IN of) (NP (NNP Nebraska)))) (, ,)) (VP (VBG joining) (NP (CD 11) (NNPS Democrats)) (PP (IN in) (S (VP (VBG supporting) (NP (PRP it))))))))) (. .)))
(S1 (S (NP (NP (DT The) (JJ last) (NN time)) (SBAR (S (NP (DT the) (NNP United) (NNPS States)) (VP (VBD faced) (NP (NNP Spain)) (PP (IN in) (NP (DT the) (NNP Davis) (NNP Cup))))))) (, ,) (NP (NNP James) (NNP Blake)) (VP (AUX was) (PP (IN at) (NP (NN home))) (PP (IN in) (NP (NP (NNP Tampa)) (, ,) (NP (NNP Fla.)))) (, ,) (S (VP (VBG recovering) (PP (IN from) (NP (NP (NN injury)) (, ,) (NP (NN illness)) (CC and) (NP (NP (DT the) (NN death)) (PP (IN of) (NP (PRP$ his) (NN father))))))))) (. .)))
(S1 (S (SBAR (WHADVP (WRB When)) (S (NP (NNP Kyle)) (VP (AUX was) (NP (CD 5))))) (, ,) (NP (PRP$ his) (NN mother)) (VP (VBN organized) (NP (NP (DT a) (JJ local) (NN prayer) (NN vigil)) (PP (IN for) (NP (NP (NNP Amadou) (NNP Diallo)) (, ,) (NP (NP (DT the) (JJ African) (JJ immigrant) (NN shot)) (PP (TO to) (NP (NN death))) (PP (IN by) (NP (NP (DT the) (NN police)) (PP (IN in) (NP (NNP New) (NNP York) (NNP City)))))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT The) (NN proposal)) (PP (IN from) (NP (NP (NP (NNP Mr.) (NNP Warner) (CC and) (NNPS Senators) (NNP Susan) (NNP Collins)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Maine)))) (, ,)) (CC and) (NP (NP (NNP Ben) (NNP Nelson)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NNP Nebraska)))) (, ,))))) (ADVP (RB also)) (VP (VBZ declares) (SBAR (SBAR (IN that) (S (NP (DT the) (NN president)) (VP (AUX is) (NP (NP (DT the) (NN commander)) (PP (IN in) (NP (NN chief))))))) (CC and) (SBAR (IN that) (S (NP (PRP it)) (VP (AUX is) (RB not) (NP (NP (DT the) (NNP Senate) (POS 's)) (NN intent) (S (VP (TO to) (VP (VB contravene) (NP (NP (PRP$ his) (NN authority)) (: --) (NP (NP (NN wording)) (SBAR (WHNP (WDT that)) (S (VP (VBD drew) (NP (NP (DT the) (NN attention)) (PP (IN of) (NP (DT some) (NNS lawmakers)))))))))))))))))) (. .) ('' '')))
(S1 (S (PP (IN On) (NP (NNP Wednesday))) (, ,) (NP (NP (NNP Senator) (NNP Chuck) (NNP Hagel)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Nebraska)))) (, ,)) (VP (VBN joined) (NP (DT the) (NNS calls)) (PP (IN by) (NP (NNS lawmakers))) (SBAR (IN for) (S (NP (NNP Mr.) (NNP Gonzales)) (VP (TO to) (VP (VB step) (PRT (RP down))))))) (. .)))
(S1 (S (NP (NP (NNP Power) (JJ forward) (NNP Patrick) (NNP Patterson)) (PP (IN of) (NP (NP (NNP Huntington)) (, ,) (NP (NNP W.) (NNP Va.)) (, ,)))) (VP (VBD signed) (PP (IN with) (NP (NP (NNP Kentucky) (NN yesterday)) (, ,) (NP (NP (DT the) (JJ final) (NN day)) (PP (IN of) (NP (DT the) (JJ late) (NN signing) (NN period))))))) (. .)))
(S1 (SQ (AUX Is) (NP (DT this)) (ADVP (RB really)) (NP (NNP Florida)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (JJ partisan) (NN division)) (ADVP (RB so) (RB vividly)) (VP (VBD defined) (NP (DT the) (JJ presidential) (NN recount)) (PP (IN in) (NP (CD 2000)))))) (, ,) (NP (NP (NP (DT the) (NNP Terri) (NNP Schiavo) (NN case)) (PP (IN in) (NP (CD 2005)))) (CC and) (NP (NP (NP (NNP Mr.) (NNP Bush) (POS 's)) (NNS efforts)) (SBAR (S (VP (TO to) (VP (VB end) (NP (JJ racial) (NNS preferences)) (PP (IN in) (NP (NN state) (NN college) (NNS admissions))))))))) (. ?)))
(S1 (S (CC But) (NP (NP (NNP Senator) (NNP Ben) (NNP Nelson)) (, ,) (NP (DT a) (NNP Nebraska) (NNP Democrat)) (, ,)) (VP (VBD said) (SBAR (S (NP (PRP he)) (VP (MD would) (VP (AUX be) (ADJP (JJ reluctant) (S (VP (TO to) (VP (VB support) (NP (PRP it)))))) (SBAR (IN unless) (S (NP (PRP it)) (VP (VBD attracted) (NP (JJ enough) (JJ bipartisan) (NN support) (S (VP (TO to) (VP (VB offset) (NP (NN criticism) (SBAR (IN that) (S (NP (PRP it)) (VP (AUX was) (VP (VBG shortchanging) (NP (JJ American) (NNS troops))))))))))))))))))) (. .)))
(S1 (S (NP (NP (DT The) (JJ obvious) (NN choice)) (PP (IN for) (NP (DT that) (NN role)))) (VP (AUX is) (NP (NP (NP (NNP Senator) (NNP Chuck) (NNP Hagel)) (PP (IN of) (NP (NNP Nebraska)))) (, ,) (NP (NP (DT a) (VBN decorated) (NN veteran)) (SBAR (SBAR (WHNP (WP who)) (S (VP (AUX has) (VP (AUX been) (NP (NP (DT a) (JJ consistent) (NN critic)) (PP (IN of) (NP (NP (NP (DT the) (NN administration) (POS 's)) (NN conduct)) (PP (IN of) (NP (DT the) (NN war)))))))))) (CC and) (SBAR (WHNP (WP who)) (S (VP (AUX has) (RB not) (VP (VBN ruled) (PRT (RP out)) (NP (NP (DT a) (NN run)) (PP (IN for) (NP (DT the) (NN presidency)))))))))))) (. .)))
(S1 (S (S (SBAR (WHNP (WP What)) (S (NP (PRP I)) (VP (MD 'll) (VP (AUX be) (VP (VBG doing)))))) (VP (AUX is) (VP (VBG trying) (S (VP (TO to) (VP (VB appeal) (PP (TO to) (NP (PRP$ my) (JJ Republican) (NNS colleagues))) (S (VP (TO to) (RB not) (VP (VB pass) (NP (NP (DT a) (JJ nonbinding) (NN resolution)) (SBAR (WHNP (WDT that)) (S (ADVP (RB basically)) (VP (VBZ says) (PP (TO to) (NP (NP (DT the) (NNS troops)) (SBAR (WHNP (WP who)) (S (VP (AUX are) (VP (VBG going) (ADVP (RB there)) (SBAR (S (NP (DT this)) (VP (AUX is) (NP (NP (DT a) (NN mission)) (SBAR (WHNP (WDT that)) (S (VP (AUX does) (RB n't) (VP (AUX have) (NP (NP (DT a) (NN chance)) (PP (IN of) (S (VP (VBG succeeding)))))))))))))))))))))))))))))))) (, ,) ('' '') (NP (NP (NP (NNP Senator) (NNP Mitch) (NNP McConnell)) (PP (IN of) (NP (NNP Kentucky)))) (, ,) (NP (DT the) (JJ Republican) (NN leader)) (, ,)) (VP (VBD said) (PRT (RP on)) ('' '') (S (VP (NNP Face) (NP (DT the) (NNP Nation)) ('' '') (PP (IN on) (NP (NNP CBS)))))) (. .)))
(S1 (S (NP (NP (NNS Efforts)) (VP (TO to) (VP (VB meld) (NP (NP (VBG differing) (NNS resolutions)) (VP (VBG opposing) (NP (DT the) (NN troop) (NN buildup))))))) (VP (VBD faltered) (NP (NNP Thursday)) (SBAR (WHADVP (WRB when)) (S (NP (NP (NP (NNP Senators) (NNP John) (NNP W.) (NNP Warner)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Virginia)))) (, ,)) (CC and) (NP (NP (NNP Ben) (NNP Nelson)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NNP Nebraska)))) (, ,))) (VP (VBD chose) (S (RB not) (VP (TO to) (VP (VB negotiate) (PP (IN with) (NP (NP (DT those)) (PP (IN behind) (NP (NP (DT a) (VBG competing) (NN plan)) (VP (VBN approved) (PP (IN by) (NP (DT the) (NNP Foreign) (NNPS Relations) (NNP Committee))))))))))))))) (. .)))
(S1 (S (PP (IN Of) (NP (NP (PDT all) (DT the) (JJ Cavalier) (NNS players)) (SBAR (WHNP (WP who)) (S (VP (AUX have) (VP (VBN come) (CC and) (VBN gone) (UCP (PP (IN in) (NP (NP (DT the) (NN organization) (POS 's)) (JJ 37-year) (NN history))) (CC and) (SBAR (IN for) (S (NP (PDT all) (DT the) (NN vitality) (NNP LeBron) (NNP James)) (VP (AUX has) (VP (VBN brought)))))))))))) (, ,) (NP (NNP Bingo) (NNP Smith)) (VP (VBZ remains) (NP (NP (NP (DT the) (NNPS Cavaliers) (POS ')) (NN soul)) (: :) (NP (NP (DT the) (JJ light-skinned) (JJ black) (NN man)) (PP (IN with) (NP (NP (DT the) (JJ huge) (NNP Afro)) (, ,) (VP (VBG reigning) (NP (NNS jumpers)) (PP (IN from) (NP (NN downtown) (NN Cleveland))))))))) (. .)))
(S1 (S (S (NP (CD A18) (NNP Baltimore)) (VP (TO to) (VP (VB Track) (NP (NNS Guns)) (PP (IN With) (S (NP (JJ violent) (NN crime)) (VP (VBG rising) (ADVP (RB sharply)) (PP (IN in) (NP (NNP Baltimore))))))))) (, ,) (NP (NNP Mayor) (NNP Sheila) (NNP Dixon)) (VP (VBD announced) (NP (NNS plans) (S (VP (TO to) (VP (VP (VB form) (NP (NP (DT a) (NN task) (NN force)) (PP (IN on) (NP (JJ illegal) (NNS guns))))) (CC and) (VP (VB start) (NP (NP (DT a) (NN system)) (SBAR (S (VP (TO to) (VP (VB track) (SBAR (WHADVP (WRB where) (CC and) (WRB when)) (S (NP (NNS guns)) (VP (AUX have) (VP (AUX been) (VP (VBN used) (PP (IN in) (NP (NNS crimes))))))))))))))))))) (. .)))
(S1 (S (NP (DT This)) (VP (AUX is) (NP (NP (DT an) (JJ engaging) (NN biography)) (PP (IN of) (NP (NP (NP (DT the) (VBN poised) (, ,) (JJ private) (NN woman)) (PP (IN from) (NP (NP (NNP Monroeville)) (, ,) (NP (NNP Ala.)) (, ,))) (SBAR (WHNP (WP who)) (S (VP (VBD wrote) (SBAR (S ('' '') (S (VP (TO To) (VP (VB Kill) (NP (DT a) (NNP Mockingbird))))) (, ,) ('' '') (VP (VP (VBD won) (NP (DT a) (NNP Pulitzer) (NNP Prize))) (CC and) (VP (VBD helped) (S (NP (NNP Truman) (NNP Capote)) (VP (VB research) (NP (PRP$ his) (NN nonfiction) (NN masterpiece)))))))))))) (, ,) ('' '') (NP (NNP In) (NNP Cold) (NNP Blood)))))) (. .) ('' '')))
(S1 (S (VP (VBD demanded) (NP (NP (NNP Senator) (NNP Chuck) (NNP Hagel)) (, ,) (NP (NP (NNP Republican)) (PP (IN of) (NP (NNP Nebraska)))))) (. .) ('' '')))
(S1 (S (CC And) (NP (PRP they)) (VP (MD would) (ADVP (RB never)) (VP (VB understand) (SBAR (WHADVP (WRB why)) (, ,) (S (PP (IN for) (NP (NNP Bill) (NNP Elliott))) (, ,) (NP (EX there)) (VP (AUX was) (NP (NP (DT no) (NN joy)) (PP (IN in) (NP (NNP Dawsonville))))))))) (. .)))
(S1 (S (CC But) (SBAR (IN as) (S (NP (NP (DT the) (JJ fierce) (NN war) (NN critic) (NNP Chuck) (NNP Hagel)) (, ,) (NP (NP (DT the) (NNP Republican) (NN senator)) (PP (IN from) (NP (NNP Nebraska)))) (, ,)) (VP (VBZ argues) (PP (IN in) (NP (DT a) (JJ must-read) (NN interview))) (PP (IN at) (NP (NN gq.com)))))) (, ,) (NP (DT the) (NN war)) (VP (AUX is) ('' '') (VP (VBG starting) (S (VP (TO to) (VP (VP (VB redefine) (NP (DT the) (JJ political) (NN landscape)) ('' '')) (CC and) (VP (VBP scramble) (NP (DT the) (JJ old) (NN party) (NNS labels)))))))) (. .)))
(S1 (S (NP (NP (NP (NNP Mitch) (NNP McConnell)) (PP (IN of) (NP (NNP Kentucky)))) (, ,) (NP (DT the) (NNP Senate) (NN minority) (NN leader)) (, ,) (CC and) (NP (NP (NNP Representative) (NNP John) (NNP A.) (NNP Boehner)) (PP (IN of) (NP (NP (NNP Ohio)) (, ,) (NP (DT the) (NNP House) (NN minority) (NN leader))))) (, ,) (CC and) (NP (PRP$ their) (NNS deputies))) (VP (AUX were) (VP (VBN scheduled) (S (VP (TO to) (VP (VB spend) (NP (DT the) (NN evening)) (PP (IN at) (NP (NNP Camp) (NNP David))) (PP (IN on) (NP (NNP Friday))) (PP (IN with) (NP (DT the) (NN president)))))))) (. .)))
(S1 (S (PP (IN In) (NP (CD 2003))) (, ,) (NP (PRP she)) (VP (VBD disclosed) (PP (IN during) (NP (NP (DT an) (NN interview)) (PP (IN with) (NP (NP (NP (NNP Citigroup) (POS 's)) (JJ chief) (NN executive)) (, ,) (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,))))) (SBAR (IN that) (S (NP (PRP she)) (VP (VBD owned) (NP (NP (CD 1,000) (NNS shares)) (PP (IN of) (NP (NN stock)))) (PP (IN in) (NP (PRP$ his) (NN company))))))) (. .)))
(S1 (S (CC But) (NP (PRP he)) (VP (VBD said) (SBAR (S (NP (PRP he)) ('' '') (VP (MD would) (RB not) (VP (AUX have) (VP (VBN taken) (NP (DT the) (NN job)) ('' '') (PP (IN without) (NP (DT a) (JJ severance) (NN plan))) (, ,) (SBAR (ADVP (RB especially)) (IN since) (S (NP (PRP he)) (VP (AUX had) (VP (VBN spent) (NP (CD six) (NNS months)) (S (VP (VBG negotiating) (NP (NP (PRP$ his) (NN exit)) (PP (IN at) (NP (NNP Citigroup)))) (PP (IN after) (NP (NP (DT a) (VBG falling) (RP out)) (PP (IN with) (NP (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,) (NP (PRP$ his) (JJ former) (NN mentor) (CC and) (NN boss)))))))))))))))))) (. .)))
(S1 (S (VP (VBN Built) (PP (IN from) (NP (NP (DT a) (NN series)) (PP (IN of) (NP (NP (NNS acquisitions)) (PP (IN by) (NP (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,) (NP (NP (DT the) (NN company) (POS 's)) (JJ former) (NN chairman)) (, ,) (SBAR (S (NP (NNP Citigroup)) (VP (AUX has) (ADVP (RB since)) (VP (VBD encompassed) (NP (NP (DT both) (JJ retail) (CC and) (NN investment) (NN banking) (NNS operations)) (, ,) (NP (NN credit) (NN card) (NNS businesses)) (, ,) (NP (NN wealth) (NN management)) (CC and) (NP (NP (DT a) (NN host)) (PP (IN of) (NP (JJ other) (NNS services)))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (CD 2002))) (, ,) (NP (DT a) (NN government) (NN investigation)) (VP (VBD found) (SBAR (IN that) (S (NP (NP (NNP Jack) (NNP B.) (NNP Grubman)) (, ,) (ADVP (RB then)) (NP (NP (DT an) (NN analyst)) (PP (IN with) (NP (NNP Citigroup)))) (, ,)) (VP (AUX had) (VP (VBN bragged) (PP (IN in) (NP (NP (DT an) (NN e-mail) (NN message)) (SBAR (WHNP (WDT that)) (S (NP (NP (PRP$ his) (NN boss)) (, ,) (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,)) (VP (AUX had) (VP (VBN helped) (S (VP (VB get) (NP (PRP$ his) (NNP twins)) (PP (IN into) (NP (NP (NP (DT the) (NNP Y) (POS 's)) (NN nursery) (NN school)) (SBAR (IN after) (S (NP (NNP Mr.) (NNP Grubman)) (VP (VBD upgraded) (NP (NP (PRP$ his) (NN rating)) (PP (IN on) (NP (DT a) (NN stock)))) (PP (IN as) (NP (NP (DT a) (NN favor)) (PP (TO to) (NP (NNP Mr.) (NNP Weill))))))))))))))))))))))) (. .)))
(S1 (S (SBAR (RB Ever) (IN since) (S (NP (NNP Sanford) (NNP I.) (NNP Weill)) (VP (VBD orchestrated) (NP (NP (DT the) (CD 1998) (NN merger)) (PP (IN of) (NP (NNP Travelers) (CC and) (NNP Citicorp))) (S (VP (TO to) (VP (VB form) (NP (DT the) (NN company))))))))) (, ,) (NP (NNP Citigroup)) (VP (AUX had) (VP (VBN managed) (NP (NNS expenses)) (PP (IN in) (NP (DT an) (ADJP (JJ episodic) (CC and) (JJ decentralized)) (NN manner))))) (. .)))
(S1 (S (NP (DT Those) (VBN invited)) (VP (VBD included) (NP (NP (DT the) (NNP Republican) (NN fund-raiser) (NNP Georgette) (NNP Mosbacher)) (CC and) (NP (DT the) (JJ former) (JJ chief) (NNS executives))) (NP (NP (NP (NNP Leonard) (NNP A.) (NNP Lauder)) (PRN (-LRB- -LRB-) (NP (NNP Estée) (NNP Lauder) (NNPS Companies)) (-RRB- -RRB-))) (CC and) (NP (NP (NNP Sanford) (NNP I.) (NNP Weill)) (PRN (-LRB- -LRB-) (NP (NNP Citigroup)) (-RRB- -RRB-)))) (, ,) (SBAR (IN though) (S (NP (PRP it)) (VP (AUX was) (ADJP (RB not) (JJ clear)) (SBAR (IN if) (S (NP (PDT all) (DT those)) (VP (VBN invited) (S (VP (VBN attended)))))))))) (. .) ('' '')))
(S1 (S (NP (DT Both)) (VP (VP (AUX were) (ADJP (JJ young) (, ,) (JJ talented) (CC and) (JJ ambitious))) (CC both) (VP (AUX were) (VP (ADVP (RB personally)) (VBN recruited) (PP (TO to) (NP (NNP Citigroup))) (PP (IN by) (NP (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,) (NP (NP (NNP Mr.) (NNP Prince) (POS 's)) (NN predecessor))))))) (. .)))
(S1 (S (PP (IN In) (NP (CD 2006))) (, ,) (NP (DT the) (JJ annual) (NN meeting)) (VP (VBD morphed) (PP (IN into) (NP (NP (DT a) (CD three)) (CC and) (NP (NP (DT a) (JJ half) (NN hour) (NN celebration)) (PP (IN of) (NP (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,) (NP (NP (NNP Citigroup) (POS 's)) (VBG departing) (NN chairman)))))))) (. .)))
(S1 (S (NP (PRP It)) (VP (AUX is) (NP (NP (DT the) (JJ second) (NN stoppage)) (PP (IN of) (NP (NP (JJ Russian) (NN energy) (NNS supplies)) (PP (TO to) (NP (NNP European) (NNS countries)))))) (PP (IN since) (NP (NP (JJ last) (NN winter)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (JJ natural) (NN gas) (NNS shipments)) (VP (AUX were) (VP (VBN shut) (PRT (RP down)) (ADVP (RB briefly)) (PP (IN during) (NP (NP (DT a) (NN gas) (NN pricing) (NN dispute)) (PP (IN between) (NP (NNP Russia) (CC and) (NNP Ukraine)))))))))))) (. .)))
(S1 (S (NP (NP (NNP Telenor)) (, ,) (NP (DT the) (JJ Norwegian) (NN cellphone) (NN company)) (, ,)) (VP (VBD said) (NP (NNP Tuesday)) (SBAR (IN that) (S (NP (DT a) (NNP Russian) (NNS telecommunications) (NN company)) (VP (VBD paid) (NP (NP (NNS journalists)) (PP (IN in) (NP (NNP Ukraine)))) (S (VP (TO to) (VP (VB publish) (NP (NP (JJ negative) (NNS articles)) (PP (IN about) (NP (NNP Telenor)))) (PP (IN in) (NP (NP (DT the) (NN midst)) (PP (IN of) (NP (DT a) (NN business) (NN dispute)))))))))))) (. .)))
(S1 (S (ADVP (RB Yet)) (, ,) (PP (IN at) (NP (NP (RB virtually) (DT every) (NN encounter)) (PP (IN with) (NP (NP (NNP Western) (NNS reporters)) (, ,) (NP (NNS academics)) (CC and) (NP (NP (NN business) (NNS analysts)) (ADVP (RB here))))))) (, ,) (NP (DT the) (NNP Russian) (NNS leaders)) (VP (AUX have) (VP (VBN encountered) (NP (NP (NP (NN skepticism)) (CC and) (NP (NP (DT the) (JJ same) (NN series)) (PP (IN of) (NP (NNS questions))))) (: :) (NP (NP (NNP Is) (NNP Russia)) (NP (DT a) (JJ reliable) (NN trading) (NN partner)))))) (. ?)))
(S1 (S (NP (NP (NNP Aleksei) (NNP Pushkov)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX has) (NP (NP (DT a) (JJ foreign) (NN policy) (NN news) (NN show)) (PP (IN on) (NP (NNP Russian) (NNP TV))))))) (, ,)) (VP (VBD said) (: :) (S ('' '') (NP (NNP NATO) (NN expansion)) (VP (AUX was) (NP (NP (DT a) (NN message)) (PP (TO to) (NP (NNP Russia))) (SBAR (IN that) (S (NP (PRP you)) (VP (AUX are) (PP (IN on) (NP (PRP$ your) (JJ own)))))))))) (. .)))
(S1 (S (NP (NNP Herzen)) (VP (AUX was) (ADJP (JJ tireless)) (PP (IN in) (NP (NP (PRP$ his) (NN crusade)) (PP (IN for) (S (VP (VP (VBG freeing) (NP (NP (NNP Russia) (POS 's)) (NNS serfs))) (CC and) (VP (VBG reforming) (NP (JJ Russian) (NN society))))))))) (. .)))
(S1 (S (NP (DT Both)) (VP (AUX had) (VP (VBN worked) (PP (IN in) (NP (DT the) (CD 1990s))) (PP (IN in) (NP (NNP Moscow))) (PP (IN for) (NP (NP (NNP Boris) (NNP A.) (NNP Berezovsky)) (, ,) (ADVP (RB now)) (NP (NP (DT the) (JJ self-exiled) (JJ Russian) (NN tycoon) (NN living)) (PP (IN in) (NP (NNP London))) (SBAR (WHNP (WP who)) (S (VP (AUX was) (ADVP (RB once)) (PP (IN among) (NP (NP (NNP Russia) (POS 's)) (ADJP (JJS richest) (CC and) (ADJP (RBS most) (JJ powerful))) (NNS men))))))))))) (. .)))
(S1 (S (NP (NNP Russia)) (VP (VP (AUX has) (VP (VBN sought) (S (VP (TO to) (VP (VB bolster) (NP (PRP$ its) (NN military) (CC and) (NN trade) (NNS relations)) (PP (IN with) (NP (NP (NNS countries)) (PP (IN in) (NP (DT the) (NNP Middle) (NNP East)))))))))) (CC and) (VP (AUX is) (VP (VBG hoping) (S (VP (TO to) (VP (VB win) (NP (NP (DT a) (JJ major) (NN order)) (PP (IN from) (NP (NNP Saudi) (NNP Arabia))) (PP (IN for) (NP (JJ Russian) (NNS weapons)))))))))) (. .)))
(S1 (S (CC But) (NP (NP (NNP Russia)) (CC and) (NP (JJ other) (JJ post-Soviet) (NNS republics))) (ADVP (RB also)) (VP (VBP offer) (NP (NP (JJ several) (NNS museums)) (VP (VBN dedicated) (PP (TO to) (NP (NP (NP (DT the) (JJ socialist) (NN state) (POS 's)) (JJ technical) (CC and) (JJ military) (NN might)) (, ,) (NP (NP (DT a) (NN sector)) (PP (IN of) (NP (DT the) (NN economy)))) (CC and) (NP (NP (DT a) (JJ martial) (NN state)) (PP (IN of) (NP (NN mind))) (SBAR (WHPP (IN in) (WHNP (WDT which))) (S (NP (NP (JJ much)) (PP (IN of) (NP (JJ Russian) (NN society)))) (VP (AUX was) (VP (VBN invested))))))))))) (. .)))
(S1 (S (S (NP (JJ Russian) (NNS officials)) (VP (AUX have) (VP (VBN begun) (S (VP (VBG formulating) (NP (PRP$ their) (NN starting) (NNS positions))))))) (, ,) (CC but) (S (NP (NP (NNP German) (NNP O.) (NNP Gref)) (, ,) (NP (NP (NNP Russia) (POS 's)) (NN trade) (NN minister)) (, ,)) (VP (VBD told) (NP (NNS reporters)) (NP (NNP Tuesday) (NN evening)) (SBAR (IN that) (S (NP (NNP Moscow)) (VP (MD would) (VP (VB start) (NP (NNS talks)) (SBAR (RB only) (IN after) (S (NP (NNP Belarus)) (VP (AUX had) (VP (VP (VBN lifted) (NP (NN transit) (NNS duties))) (CC and) (VP (VBN resumed) (NP (NN oil) (NN transit))))))))))))) (. .)))
(S1 (S (S (NP (DT The) (NNP Yeltsin) (JJ democratic) (NN experiment)) (VP (AUX is) (ADVP (RB over)) (, ,) (SBAR (S (VP (TO to) (VP (VP (AUX be) (ADJP (JJ sure))) (, ,) (VP (VBD added) (NP (NP (NNP Rose) (NNP Gottemoeller)) (, ,) (NP (NP (NN director)) (PP (IN of) (NP (NP (DT the) (NNP Carnegie) (NNP Endowment) (POS 's)) (NNP Moscow) (NN office)))))) (, ,) ('' '') (SBAR (IN because) (S (NP (PRP it)) (VP (AUX was) (VP (VBN delegitimized) (PP (IN by) (NP (DT the) (CD 1998) (NN ruble) (NN crash)))))) (CC and) (SBAR (IN because) (S (NP (PRP it)) (VP (AUX was) (NP (NP (DT a) (NN time)) (PP (IN of) (NP (NP (JJ supreme) (NN corruption) (CC and) (NN dominance)) (PP (IN by) (NP (NNS oligarchs)))))))))))))))) (: --) (CC but) (S (NP (DT the) (JJ Russian) (JJ democratic) (NN experiment)) (VP (AUX is) (RB not) (ADVP (RB over)) (SBAR (IN because) (S (NP (NNP Russia)) (VP (AUX is) (NP (PDT such) (DT a) (JJ changed) (NN place))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT A) (NN day)) (PP (IN after) (NP (NNP Belarus)))) (VP (VBD agreed) (S (VP (TO to) (VP (VB drop) (NP (NP (DT a) (NN transit) (NN fee)) (PP (IN of) (NP (NP ($ $) (CD 46)) (NP (DT a) (NN ton)) (SBAR (WHNP (WDT that)) (S (VP (VBD prompted) (S (NP (NNP Russia)) (VP (TO to) (VP (VB turn) (PRT (RP off)) (PP (IN for) (NP (CD three) (NNS days))) (NP (NP (DT a) (NN pipeline)) (SBAR (IN that) (S (VP (VBN moved) (NP (NN oil)) (PP (IN across) (NP (NNP Europe))))))) (PRN (, ,) (S (NP (DT the) (JJ crude) (NN oil)) (VP (VBD started) (S (VP (VBG flowing) (ADVP (RB again)) (PP (IN on) (NP (NNP Thursday) (NN morning))))))) (, ,)) (SBAR (IN as) (S (VP (AUX did) (NP (NP (DT the) (JJ Russian) (NNS profits)) (SBAR (WHNP (WDT that)) (S (NP (NNP Belarus)) (VP (AUX had) (VP (VBN hoped) (S (VP (TO to) (VP (VB share) (, ,) (SBAR (IN as) (S (NP (PRP it)) (VP (AUX had) (PP (IN for) (NP (DT the) (JJ last) (NN decade)))))))))))))))))))))))))))))) (. .)))
(S1 (S (SBAR (IN Although) (S (NP (PRP he)) (VP (VP (ADVP (RB never)) (VBD returned) (PP (TO to) (NP (NNP Russia)))) (CC and) (VP (ADVP (RB always)) (VBD wrote) (PP (IN in) (NP (NNP French))))))) (, ,) (NP (NNP Russia)) (VP (VBD remained) (ADJP (JJ present)) (PP (IN in) (NP (NP (RB much)) (PP (PP (IN of) (NP (PRP$ his) (NN work))) (, ,) (ADVP (RB notably)) (PP (IN in) (NP (NP (DT a) (NN stream)) (PP (IN of) (NP (NNS biographies))))) (, ,) (PP (IN of) (NP (NP (NNP Ivan) (DT the) (JJ Terrible)) (, ,) (NP (NNP Peter) (DT the) (NAC (NNP Great) (, ,) (NNP Catherine) (DT the) (NNP Great) (, ,)) (NNP Alexander) (NNP II)) (, ,) (NP (NNP Nicholas) (NNP II)) (, ,) (NP (NNP Rasputin)) (CC and) (NP (JJ other) (JJ historical) (NNS figures)))) (CC and) (PP (IN of) (NP (NP (JJ Russian) (JJ literary) (NNS giants)) (PP (IN like) (NP (NP (NNP Tolstoy) (, ,) (NNP Pushkin) (, ,) (NNP Gogol) (, ,) (NNP Chekhov)) (CC and) (PRN (, ,) (ADVP (RBS most) (RB recently)) (, ,)) (NP (NNP Boris) (NNP Pasternak)))))))))) (. .)))
(S1 (S (PP (IN In) (NP (DT a) (ADJP (ADJP (RB softly) (JJ lighted)) (CC and) (ADJP (JJ sumptuous))) (NN suite))) (, ,) (NP (NP (NNP Mr.) (NNP Berezovsky)) (, ,) (NP (NP (DT a) (JJ former) (NN mathematician)) (SBAR (WHNP (WP who)) (S (VP (VBD amassed) (NP (JJ huge) (NN wealth)) (PP (IN in) (NP (NN business))) (PP (IN during) (NP (NP (DT the) (JJ Russian) (NN presidency)) (PP (IN of) (NP (NP (NNP Boris) (NNP N.) (NNP Yeltsin)) (PP (IN in) (NP (DT the) (CD 1990s))))))))))) (, ,)) (VP (VBD said) (SBAR (S (NP (PRP he)) (VP (AUX was) (ADJP (JJ prepared) (S (VP (TO to) (VP (VB meet) (NP (JJ Russian) (NNS investigators)) (SBAR (IN if) (S (NP (DT that)) (VP (MD would) (VP (VB help) (NP (NP (DT the) (JJ British) (NN police) (NN inquiry)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX is) (ADVP (RB widely)) (VP (VBN perceived) (S (VP (TO to) (VP (AUX have) (VP (VBN stalled) (PRT (RP over)) (NP (NP (NP (NNP Russia) (POS 's)) (NN resistance)) (PP (TO to) (NP (NN extraditing) (NNS suspects))))))))))))))))))))))))) (. .)))
(S1 (S (NP (PRP It)) (VP (AUX is) (NP (NP (DT the) (JJ second) (NN stoppage)) (PP (IN of) (NP (NP (JJ Russian) (NN energy) (NNS supplies)) (PP (TO to) (NP (NNP European) (NNS countries)))))) (PP (IN since) (NP (NP (JJ last) (NN winter)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (JJ natural) (NN gas) (NNS shipments)) (VP (AUX were) (VP (VBN shut) (PRT (RP down)) (ADVP (RB briefly)) (PP (IN during) (NP (NP (DT a) (NN gas) (NN pricing) (NN dispute)) (PP (IN between) (NP (NNP Russia) (CC and) (NNP Ukraine)))))))))))) (. .)))
(S1 (S (NP (NP (DT The) (JJ Russian) (NN energy) (NN minister)) (, ,) (NP (NNP Viktor) (NNP Khristenko)) (, ,)) (ADVP (RB piously)) (VP (VP (VBD declared) (PP (IN on) (NP (NNP Tuesday))) (SBAR (IN that) (S (NP (NP (NP (NNP Russia) (POS 's)) (NNS meetings)) (PP (IN with) (NP (JJ other) (NN gas) (NNS producers)))) (VP (AUX were) (VP (VBN intended) (S (ADVP (RB only)) (VP (TO to) (VP (VB improve) (NP (NN energy) (NN security)))))))))) (, ,) (CC and) (SBAR (IN that) (S (NP (NP (DT any) (NN talk)) (PP (IN of) (NP (DT a) (NN cartel)))) (VP (AUX was) (NP (NP (DT the) (NN product)) (PP (IN of) (NP (DT a) ('' '') (JJ sick) (NN imagination)))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT The) (JJ Orthodox) (NNP Church) (POS 's)) (NN resurrection)) (PP (IN in) (NP (JJ Russian) (NN society))) (VP (AUX is) (ADVP (RB now)) (VP (ADVP (RB firmly)) (VBN established) (, ,) (SBAR (S (CC but) (NP (NP (DT the) (JJ striking) (NN tableau)) (PP (IN of) (NP (NP (NNP Mr.) (NNP Yeltsin) (POS 's)) (NN coffin)))) (, ,) (S (VP (VP (VBN draped) (PP (IN in) (NP (DT the) (NNP Russian) (NN tricolor)))) (, ,) (VP (VBN accompanied) (PP (IN by) (NP (DT a) (JJ military) (NN honor) (NN guard)))) (CC and) (VP (VBD presided) (PRT (RP over)) (PP (IN by) (NP (JJ bearded) (NNS priests)))))) (, ,) (VP (VBN embodied) (NP (NP (NNS symbols)) (PP (IN of) (NP (NP (DT a) (JJ new) (NNP Russia)) (PRN (: --) (NP (NN state) (, ,) (JJ military) (CC and) (NN church)) (: --))))) (PP (ADVP (RB very) (RB much)) (IN like) (NP (NP (DT the) (NNP Russia)) (PP (IN of) (NP (JJ old)))))))))) (. .) ('' '')))
(S1 (S (NP (PRP He)) (VP (VP (AUX had) (VP (VBN grown) (PRT (RP up)) (PP (IN in) (NP (NNP Louisiana))))) (CC and) (VP (VBD learned) (S (VP (TO to) (VP (VB ride) (PP (IN on) (NP (NP (DT the) (NN region) (POS 's)) (JJ fabled) (NNP Cajun) (NNP bush) (NNS tracks)))))))) (. .)))
(S1 (S (S (NP (NNP Lukashenko)) (VP (AUX does) (RB not) (VP (VB want) (S (VP (TO to) (VP (AUX be) (NP (NP (DT the) (NN governor)) (PP (IN of) (NP (DT a) (JJ Russian) (NN province)))))))))) (, ,) ('' '') (NP (NP (NNP Anatoly) (NNP Lebedko)) (, ,) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (NNP Belarussian) (NN president) (POS 's)) (JJS fiercest) (NNS critics)))) (, ,)) (VP (VBD said) (PP (IN in) (NP (DT a) (NN telephone) (NN interview))) (PP (IN from) (NP (NNP Belarus))) (PP (IN on) (NP (NNP Thursday)))) (. .)))
(S1 (S (S (NP (NP (DT The) (JJ new) (NN price)) (, ,) (NP (NP ($ $) (CD 100)) (PP (IN per) (NP (CD thousand) (JJ cubic) (NNS meters))) (, ,) (PP (VBN compared) (PP (IN with) (NP (NP ($ $) (CD 46)) (JJ last) (NN year))))) (, ,)) (VP (VBD infuriated) (NP (NNP Mr.) (NNP Lukashenko)))) (, ,) (CC but) (S (NP (NP (DT a) (JJ separate) (NN decision)) (PP (IN by) (NP (NNP Russia))) (VP (TO to) (VP (VB impose) (NP (NP (DT a) (NNS customs) (NN duty)) (PP (IN of) (NP (NP ($ $) (CD 180)) (PP (IN per) (NP (JJ metric) (NN ton)))))) (PP (IN on) (NP (JJ Russian) (NN oil)))))) (VP (VBD prompted) (NP (DT the) (NNP Belarussian) (NN transit) (NN fee)))) (. .)))
(S1 (S (NP (NP (NP (NN Opposition) (NN Candidate) (NN Shot) (NNP MAKHACHKALA)) (, ,) (NP (NNP Russia)) (, ,) (NP (NP (NNP Feb.) (CD 14)) (PRN (-LRB- -LRB-) (NP (NNP Agence) (NNP France-Presse)) (-RRB- -RRB-)))) (: --) (NP (DT A) (JJ local) (JJ legislative) (NN candidate))) (VP (AUX was) (VP (VBN shot) (PP (IN in) (NP (DT the) (NN head))) (NP (NNP Wednesday)) (PP (PP (IN in) (NP (NP (DT the) (JJ southern) (JJ Russian) (NN region)) (PP (IN of) (NP (NNP Dagestan))))) (CC less) (PP (IN than) (NP (NP (DT an) (NN hour)) (PP (IN after) (S (VP (VBG making) (NP (NP (DT a) (NN campaign) (NN speech)) (PP (IN on) (NP (NN television)))) (ADVP (RB here)) (, ,) (SBAR (S (NP (DT a) (NN police) (NN spokeswoman)) (VP (VBD said)))))))))))) (. .)))
(S1 (S (NP (DT The) (NNP Kremlin)) (VP (AUX is) (VP (VBG hoping) (SBAR (S (NP (PRP it)) (VP (MD can) (VP (VB put) (NP (DT the) (NN focus)) (PP (IN on) (NP (NP (NNS gains)) (PP (IN in) (NP (DT the) (NNP Russian) (NN economy))))) (PP (IN at) (NP (NP (NP (DT a) (NN forum)) (PP (IN for) (NP (NN business) (NNS leaders)))) (NP (JJ next) (NN month)) (PP (IN in) (NP (NNP St.) (NNP Petersburg))))) (, ,) (S (VP (VBG highlighting) (NP (NP (NN growth)) (SBAR (WHNP (WDT that)) (S (VP (AUX has) (VP (AUX been) (VP (VBN overshadowed) (PP (IN by) (NP (NP (JJ negative) (JJ political) (NN news)) (PP (IN from) (NP (NNP Russia))))))))))))))))))) (. .)))
(S1 (S (S (ADVP (RB Later)) (, ,) (NP (PRP he)) (VP (VBD said))) (, ,) ('' '') (NP (DT The) (NNPS Brits)) (VP (VBD became) (ADJP (JJ interested) (PP (IN in) (NP (NP (NN everything)) (: :) (NP (PRP$ my) (NNS connections)) (, ,) (NP (JJ financial) (NN potential)) (, ,) (NP (NP (NN existence)) (PP (IN of) (NP (NP (JJ direct) (NN access)) (PP (TO to) (NP (NP (DT the) (NN president)) (PP (IN of) (NP (NNP Russia)))))))) (CONJP (RB as) (RB well) (IN as)) (NP (NP (NNS contacts)) (PP (IN with) (NP (NP (NNS employees)) ('' '') (PP (IN of) (NP (NNP Russian) (NN intelligence) (NNS agencies)))))))))) (. .)))
(S1 (S (NP (NP (NNP Russia)) (CC and) (NP (NP (DT the) (NNP United) (NNPS States)) (PP (IN on) (NP (NNP Wednesday))))) (VP (VBD appeared) (S (VP (TO to) (VP (VB step) (ADVP (RB back)) (PP (IN from) (NP (NP (PRP$ their) (NN confrontation)) (PP (IN over) (NP (NP (JJ American) (NNS plans)) (PP (IN for) (NP (NP (NNS installations)) (PP (IN in) (NP (NNP Europe))) (VP (VBG relating) (PP (TO to) (NP (NP (DT a) (NN missile) (NN shield)) (, ,) (SBAR (IN as) (S (NP (NNP President) (NNP Bush)) (VP (VBD said) (SBAR (S (NP (NNP Russia)) (VP (AUX was) (RB not) (NP (NP (NP (DT a) (NN threat)) (PP (TO to) (NP (NNP Europe)))) (CC and) (NP (NP (DT the) (JJ Russian) (JJ foreign) (NN minister)) (VP (VBD withdrew) (NP (DT a) (NN threat) (S (VP (TO to) (VP (VB pull) (PRT (RP out)) (PP (IN of) (NP (DT a) (JJ conventional) (NNS arms) (NN treaty))))))))))))))))))))))))))))) (. .)))
(S1 (NP (NNP XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)))
(S1 (S (NP (DT An) (NN explosion)) (VP (VBD destroyed) (NP (NP (DT a) (NN section)) (PP (IN of) (NP (NP (DT a) (NN pipeline)) (PP (IN in) (NP (NNP Ukraine))) (VP (VBG carrying) (NP (JJ Russian) (JJ natural) (NN gas)) (PP (TO to) (NP (NNP Europe)))))))) (. .)))
(S1 (S (NP (NP (DT These) (JJ new) (NNS deals)) (: --) (SBAR (WHNP (WDT which)) (S (VP (ADVP (JJR more) (IN than)) (VBD doubled) (NP (NP (DT the) (NN price)) (SBAR (S (NP (NNP Belarus)) (VP (VP (VBZ pays) (PP (IN for) (NP (JJ natural) (NN gas)))) (CC and) (VP (VBD imposed) (NP (NP (DT an) (NN export) (NN duty)) (PP (IN on) (NP (NN oil) (NNS shipments)))))))))))) (: --)) (VP (MD will) (VP (VB generate) (NP (NNS billions)) (PP (IN of) (NP (NP (NNS dollars)) (PP (IN of) (NP (NP (VBN added) (NN revenue)) (PP (IN for) (NP (DT the) (NNP Russian) (NN energy) (NN giant) (NNP Gazprom))))))) (, ,) (ADVP (RB as) (RB well) (PP (IN as) (NP (NP (NNP Russia) (POS 's)) (NN state) (CC and) (JJ private) (NN oil) (NNS companies)))) (, ,) (SBAR (RB much) (IN as) (S (NP (JJ recent) (NNS deals)) (VP (AUX did) (PP (IN with) (NP (NNP Ukraine) (, ,) (NNP Moldova) (CC and) (NNP Armenia)))))))) (. .)))
(S1 (S (S (NP (NP (DT The) (JJ Russian) (NN ambassador)) (, ,) (NP (NNP Vitaly) (NNP I.) (NNP Churkin)) (, ,)) (VP (VBD said) (SBAR (S (NP (DT the) (NN revision)) ('' '') (VP (AUX has) (RB not) (VP (VBN changed) (NP (NN anything)))))))) (, ,) ('' '') (CC and) (S (SBAR (WHADVP (WRB when)) (S (VP (VBN asked) (SBAR (IN whether) (S (NP (NNP Russia)) (VP (MD would) (VP (VB veto) (NP (PRP it))))))))) (, ,) (NP (PRP he)) (VP (VBD said))) (: :) ('' '') (S (NP (PRP I)) (VP (AUX do) (RB not) (VP (VB like) (NP (NP (NN use)) (PP (IN of) (NP (DT this) (NN word))))))) (. .)))
(S1 (S (NP (NP (NNP Marina) (NNP Y.) (NNP Gridneva)) (, ,) (NP (NP (DT a) (NN spokeswoman)) (PP (IN for) (NP (NP (DT the) (NNP Russian) (NN prosecutor) (NN general) (POS 's)) (NN office)))) (, ,)) (VP (VBD said) (SBAR (IN that) (S ('' '') (NP (NP (DT a) (NN citizen)) (SBAR (WHNP (WP who)) (S (VP (AUX has) (VP (VBN committed) (NP (NP (DT a) (NN crime)) (PP (IN on) (NP (NP (DT the) (NN territory)) (PP (IN of) (NP (DT a) (JJ foreign) (NN state))))))))))) (VP (MD can) (VP (AUX be) (VP (VBN prosecuted) (PP (IN with) (NP (NP (NN evidence)) (VP (VBN provided) (PP (IN by) (NP (DT the) (JJ foreign) (NN state)))))) (PRN (, ,) (CC but) (ADVP (RB only)) (PP (IN on) (NP (NP (DT the) (NN territory)) (PP (IN of) (NP (NNP Russia)))))))))))) (. .) ('' '')))
(S1 (S (S (NP (NP (DT The) (JJ zydeco) (CC and) (JJ Cajun) (NNS musicians)) (PP (PP (IN from) (NP (DT the) (NN bayou) (NN country))) (PP (TO to) (NP (DT the) (NN west)))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX was) (ADVP (RB harder)) (VP (VBN hit) (PP (IN by) (NP (NNP Hurricane) (NNP Rita))))))) (, ,)) (ADVP (RB also)) (VP (VBD sang) (PP (IN about) (NP (NP (DT the) (NNS storms)) (SBAR (S (NP (DT the) (NNP Cajun) (NN rocker) (NNP Zachary) (NNP Richard)) (VP (AUX had) (NP (NP (DT a) (NN song)) (SBAR (WHNP (WDT that)) (S (VP (VBD vowed)))))))))))) (, ,) ('' '') (NP (NNP Seven) (NNS generations)) (NP (PRP we)) (VP (AUX 've) (VP (AUX been) (VP (VBN stuck) (ADVP (RB here)) (PP (IN in) (NP (DT the) (NN mud\/But))) (NP (NP (DT the) (JJ only) (NN way)) (SBAR (WHNP (IN that)) (S (NP (PRP I)) (VP (AUX 'm) (VP (VBG leaving) (SBAR (S (NP (NNP Louisiana)) (VP (AUX is) (SBAR (IN if) (S (NP (PRP I)) (VP (AUX 'm) (VP (VBN swept) (ADVP (RB away)) (PP (IN in) (NP (DT a) (NN flood)))))))))))))))))) (. .) ('' '')))
(S1 (S (NP (JJ Russian) (NNS officials)) (VP (AUX have) (VP (VBN pointed) (PRT (RP out)) (SBAR (SBAR (IN that) (S (NP (DT this)) (VP (MD would) (VP (VB mean) (NP (NP (CD two) (JJ military) (NNS missiles)) (VP (VBG colliding) (PP (IN over) (NP (NNP Russia))))))))) (, ,) (CC and) (SBAR (IN that) (S (NP (NP (DT the) (NN debris)) (PP (IN from) (NP (DT any) (NN explosion)))) (VP (MD could) (VP (VB endanger) (NP (NNP Russian) (NNS people) (CC and) (NN property))))))))) (. .)))
(S1 (S (NP (DT The) (NN essay)) (VP (VBD summarized) (NP (NP (NP (DT the) (NNP Kremlin) (POS 's)) (NN control) (CC and) (NN manipulation)) (PP (IN of) (NP (NP (NNP Russia) (POS 's)) (JJ public) (JJ political) (NN dialogue)))) (, ,) (S (VP (VBG saying) (SBAR (S (NP (NP (NP (DT the) (NN union) (POS 's)) (NN monitoring)) (PP (IN of) (NP (DT the) (NNP Russian) (NN news) (NNS media)))) (VP (AUX had) (VP (VBN found) (SBAR (IN that) (S (NP (UCP ('' '') (JJ pro-president) (CC and) (NN ruling)) (NN party) (NN propaganda)) (VP (VP (VBD amounted) (PP (TO to) (NP (NP (QP (RB roughly) (CD 30)) (NN percent)) (PP (IN of) (NP (NP (DT the) (JJ total) (NN amount)) (PP (IN of) (NP (NN information))))))) ('' '') (PP (IN in) (NP (CD 2000)))) (, ,) (CC but) (VP (VBD rose) (PP (TO to) (NP (CD 92) (NN percent))) (PP (IN in) (NP (CD 2006)))))))))))))) (. .) ('' '')))
(S1 (S (CC But) (NP (NP (DT the) (JJ Russian) (NN goal)) (PP (IN of) (S (VP (VBG diversifying) (NP (NP (NNP navigation) (NNS signals)) (VP (VBN used) (PP (IN in) (NP (NN commerce))))))))) (VP (MD will) (VP (AUX be) (VP (VBN achieved) (PRN (, ,) (S (NP (NNP Mr.) (NNP Ionin)) (VP (VBD said))) (, ,)) (SBAR (SBAR (RB even) (IN if) (S (NP (JJ foreign) (NNS manufacturers)) (ADVP (RB simply)) (VP (VB adopt) (NP (DT the) (NNP Russian) (NN standard))))) (, ,) (CC and) (SBAR (RB even) (IN if) (S (NP (NP (NNP Russia) (POS 's)) (JJ own) (NN attempt) (S (VP (TO to) (VP (VB make) (NP (NN consumer) (NNS devices)))))) (VP (VBZ fails)))))))) (. .)))
(S1 (S (NP (NNP President) (NNP Bush)) (VP (VBD delivered) (NP (DT a) (JJ two-pronged) (NN message)) (PP (TO to) (NP (NP (NNP President) (NNP Vladimir) (NNP V.) (NNP Putin)) (PP (IN of) (NP (NNP Russia))))) (PP (IN on) (NP (NP (NNP Tuesday)) (, ,) (NP (CD two) (NNS days)))) (PP (IN before) (NP (NP (PRP$ their) (JJ scheduled) (NN meeting)) (PP (IN in) (NP (NNP Germany))))) (, ,) (S (VP (VBG chiding) (NP (NNP Mr.) (NNP Putin)) (PP (IN for) (S (VP (VBG derailing) (NP (JJ democratic) (NNS reforms)) (SBAR (IN while) (S (VP (VBG assuring) (NP (DT the) (JJ Russian) (NN leader) (SBAR (IN that) (S (NP (PRP he)) (VP (AUX had) (NP (NP (NN nothing)) (SBAR (S (VP (TO to) (VP (VB fear) (PP (IN from) (NP (NP (DT a) (NN missile) (NN defense) (NN system)) (PP (IN in) (NP (NNP Europe))))))))))))))))))))))) (. .)))
(S1 (S (NP (NNP Belarus)) (VP (AUX has) (VP (VP (VBN refined) (NP (JJ subsidized) (JJ Russian) (NN oil))) (CC and) (VP (VBP resold) (NP (PRP it)) (PP (IN at) (NP (JJ significant) (NN profit)))))) (. .)))
(S1 (S (NP (JJ Last) (NN month)) (, ,) (NP (NP (NNP Sergey) (NNP V.) (NNP Lavrov)) (, ,) (NP (DT the) (JJ Russian) (JJ foreign) (NN minister)) (, ,)) (VP (VBD called) (NP (NP (DT an) (NN emergency) (NN conference)) (PP (IN for) (NP (JJ next) (NN week))) (PP (IN in) (NP (NNP Vienna)))) (S (VP (TO to) (VP (VB discuss) (NP (DT the) (NNP Treaty)) (PP (IN on) (NP (NP (JJ Conventional) (NNS Forces)) (PP (IN in) (NP (NNP Europe))))) (SBAR (IN after) (S (NP (NNP Mr.) (NNP Putin)) (VP (VBD announced) (SBAR (IN that) (S (NP (NNP Russia)) (VP (MD would) (VP (VB freeze) (NP (PRP$ its) (NNS commitments)) (PP (IN under) (NP (DT the) (NN pact)))))))))))))) (. .)))
(S1 (S (NP (NP (DT These) (JJ new) (NNS deals)) (: --) (SBAR (WHNP (WDT which)) (S (VP (ADVP (JJR more) (IN than)) (VBD doubled) (NP (NP (DT the) (NN price)) (SBAR (S (NP (NNP Belarus)) (VP (VP (VBZ pays) (PP (IN for) (NP (JJ natural) (NN gas)))) (CC and) (VP (VBD imposed) (NP (NP (DT an) (NN export) (NN duty)) (PP (IN on) (NP (NN oil) (NNS shipments)))))))))))) (: --)) (VP (MD will) (VP (VB generate) (NP (NNS billions)) (PP (IN of) (NP (NP (NNS dollars)) (PP (IN of) (NP (NP (VBN added) (NN revenue)) (PP (IN for) (NP (DT the) (NNP Russian) (NN energy) (NN giant) (NNP Gazprom))))))) (, ,) (ADVP (RB as) (RB well) (PP (IN as) (NP (NP (NNP Russia) (POS 's)) (NN state) (CC and) (JJ private) (NN oil) (NNS companies)))) (, ,) (SBAR (RB much) (IN as) (S (NP (JJ recent) (NNS deals)) (VP (AUX did) (PP (IN with) (NP (NNP Ukraine) (, ,) (NNP Moldova) (CC and) (NNP Armenia)))))))) (. .)))
(S1 (S (S (VP (VBG Attracting) (NP (NN phone) (CC and) (NN text) (NN message) (NNS votes)) (PP (IN from) (NP (NP (NNS viewers)) (PP (IN across) (NP (NNP Europe))))))) (, ,) (NP (NP (NP (NNP Ms.) (NNP Serifovic) (POS 's)) (NN ballad)) (, ,) (VP (VBN sung) (PP (IN in) (NP (NNP Serbo-Croatian)))) (, ,)) (VP (VBD beat) (PRT (RP out)) (NP (NP (NP (DT a) (JJ gaudy) (NN drag) (NN show)) (PP (IN from) (NP (NNP Ukraine)))) (CC and) (NP (DT a) (NNP Russian) (NN girl) (NN band)))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Angela) (NNP E.) (NNP Stent)) (, ,) (NP (NP (NN director)) (PP (IN of) (NP (NP (DT the) (NNP Center)) (PP (IN for) (NP (NNP Eurasian) (, ,) (NNP Russian) (CC and) (NNP East) (NNP European) (NNP Studies))))) (PP (IN at) (NP (NNP Georgetown) (NNP University)))) (, ,)) (VP (VBD said) (SBAR (S (NP (DT the) (NNP Bush) (NN administration)) (VP (VP (AUX had) ('' '') (ADVP (RB already)) (VP (AUX been) (VP (VBG reassessing) (NP (NP (PRP$ our) (NN policy)) (PP (IN toward) (NP (NNP Russia))))))) (, ,) (SBAR (IN as) (S (NP (PRP we)) (VP (AUX have) (VP (VBN understood) (PP (ADVP (IN at) (JJS least)) (IN since) (NP (NNP January))) (PP (IN of) (UCP (NP (CD 2006)) (CC or) (ADVP (ADVP (RB even) (RB before)) (SBAR (IN that) (S (NP (EX there)) (VP (AUX is) (NP (NP (DT a) (ADJP (RB newly) (JJ self-confident)) (NNP Russia)) (, ,) (NP (NP (DT a) (NNP Russia)) (SBAR (WHNP (WDT that)) (S (VP (AUX is) (ADJP (JJ awash) (PP (IN in) (NP (NNS petrodollars)))))))) (CC and) (NP (NP (DT a) (NNP Russia)) (SBAR (WHNP (WDT that)) (S (ADVP (RB really)) (VP (VBZ feels) (SBAR (S (NP (PRP it)) (VP (MD can) (VP (VP (VB say) (ADVP (RB no))) (CC and) (VP (VB pursue) (NP (PRP$ its) (JJ own) (NNS interests)))))))))))))))))))))))))) (. .) ('' '')))
(S1 (S (NP (DT The) (NNP Bush) (NN administration)) (VP (AUX is) (VP (VBG offering) (NP (NNP Russia)) (NP (NP (DT a) (JJ new) (NN package)) (PP (IN of) (NP (NNS incentives))) (SBAR (S (VP (TO to) (VP (VB drop) (NP (NP (PRP$ its) (JJ strong) (NN opposition)) (PP (TO to) (NP (NP (NNP American) (NN missile) (NN defense) (NNS sites)) (PP (IN in) (NP (NP (NNP Poland)) (CC and) (NP (DT the) (NNP Czech) (NNP Republic)))))))))))) (, ,) (PP (VBG including) (NP (NP (DT an) (NN invitation)) (SBAR (S (VP (TO to) (VP (VB begin) (S (VP (VBG linking) (NP (DT some) (NNP American) (CC and) (NNP Russian) (JJ antimissile) (NNS systems)))) (, ,) (PP (VBG according) (PP (TO to) (NP (NP (JJ senior) (NN administration)) (CC and) (NP (JJ military) (NNS officials))))))))))))) (. .)))
(S1 (S (NP (DT The) (JJ conciliatory) (NNS remarks)) (VP (VBD came) (SBAR (IN as) (S (NP (NP (NNS leaders)) (PP (IN of) (NP (NP (DT the) (NN Group)) (PP (IN of) (NP (CD 8) (VBN industrialized) (NNS nations)))))) (VP (VBN gathered) (PP (IN for) (NP (NP (DT a) (NN meeting)) (SBAR (WHNP (WDT that)) (S (VP (AUX was) (PP (IN at) (NP (NP (NN risk)) (PP (IN of) (S (VP (AUXG being) (VP (VBN overshadowed) (PP (IN by) (NP (DT the) (NN threat))) (PP (IN by) (NP (NP (NNP President) (NNP Vladimir) (NNP V.) (NNP Putin)) (PP (IN of) (NP (NNP Russia))))) (S (VP (TO to) (VP (VB aim) (NP (JJ Russian) (NNS missiles)) (PP (IN at) (NP (NP (JJ nuclear) (NNS sites)) (PP (IN in) (NP (NNP Europe))))) (SBAR (IN if) (S (NP (DT the) (NNP United) (NNPS States)) (VP (VBZ places) (NP (DT the) (NNS installations)) (PP (IN in) (NP (NP (NNP Poland)) (CC and) (NP (DT the) (JJ Czech) (NNP Republic))))))))))))))))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT A) (NN day)) (PP (IN after) (NP (NNP Belarus)))) (VP (VBD agreed) (S (VP (TO to) (VP (VB drop) (NP (NP (DT a) (NN transit) (NN fee)) (PP (IN of) (NP (NP ($ $) (CD 46)) (NP (DT a) (NN ton)) (SBAR (WHNP (WDT that)) (S (VP (VBD prompted) (S (NP (NNP Russia)) (VP (TO to) (VP (VB turn) (PRT (RP off)) (PP (IN for) (NP (CD three) (NNS days))) (NP (NP (DT a) (NN pipeline)) (SBAR (IN that) (S (VP (VBN moved) (NP (NN oil)) (PP (IN across) (NP (NNP Europe))))))) (PRN (, ,) (S (NP (DT the) (JJ crude) (NN oil)) (VP (VBD started) (S (VP (VBG flowing) (ADVP (RB again)) (PP (IN on) (NP (NNP Thursday) (NN morning))))))) (, ,)) (SBAR (IN as) (S (VP (AUX did) (NP (NP (DT the) (JJ Russian) (NNS profits)) (SBAR (WHNP (WDT that)) (S (NP (NNP Belarus)) (VP (AUX had) (VP (VBN hoped) (S (VP (TO to) (VP (VB share) (, ,) (SBAR (IN as) (S (NP (PRP it)) (VP (AUX had) (PP (IN for) (NP (DT the) (JJ last) (NN decade)))))))))))))))))))))))))))))) (. .)))
(S1 (S (S (NP (NP (PRP$ His) (NNS parents)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD spoke) (ADJP (JJ Russian) (CC and) (JJ Yiddish)) (PP (TO to) (NP (DT each) (JJ other)))))) (, ,)) (VP (VBD emigrated) (PP (IN from) (NP (NP (NNP Ukraine)) (PRN (-LRB- -LRB-) (RB then) (NP (NP (NN part)) (PP (IN of) (NP (NNP Russia)))) (-RRB- -RRB-)))) (PP (IN in) (NP (CD 1905))))) (, ,) (CC and) (S (NP (PRP$ his) (CD four) (JJR older) (NNS siblings)) (VP (AUX were) (VP (VBN born) (ADVP (RB there))))) (. .)))
(S1 (S (NP (JJ Russian) (NNS officials)) (VP (AUX have) (VP (VBN pointed) (PRT (RP out)) (SBAR (SBAR (IN that) (S (NP (DT this)) (VP (MD would) (VP (VB mean) (NP (NP (CD two) (JJ military) (NNS missiles)) (VP (VBG colliding) (PP (IN over) (NP (NNP Russia))))))))) (, ,) (CC and) (SBAR (IN that) (S (NP (NP (DT the) (NN debris)) (PP (IN from) (NP (DT any) (NN explosion)))) (VP (MD could) (VP (VB endanger) (NP (NNP Russian) (NNS people) (CC and) (NN property))))))))) (. .)))
(S1 (S (NP (NP (DT The) (NN hunger) (CC and) (NN ambition)) (PP (IN of) (NP (NNP Russian) (NNS parents)))) (VP (AUX is) (ADJP (RB uniquely) (JJ strong)) (, ,) (SBAR (ADVP (RB particularly)) (WHADVP (WRB when)) (S (NP (PRP one)) (VP (VBZ considers) (SBAR (SBAR (WHADVP (WRB how)) (S (NP (JJ hard) (NN life)) (VP (AUX is) (PP (IN in) (NP (NNP Russia))) (ADVP (RB right) (RB now))))) (CC and) (SBAR (ADVP (RB also)) (IN that) (S (NP (NP (DT the) (NN patron) (NN saint)) (PP (IN of) (NP (NNP Russian) (NN tennis) (NNS parents)))) (VP (AUX is) (NP (NP (NP (DT the) (JJ ex-Siberian) (NN oil-field) (NN worker) (NNP Yuri) (NNP Sharapov)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD came) (PP (TO to) (NP (NNP America))) (PP (IN with) (NP (QP (JJR less) (IN than) ($ $) (CD 1,000)))))))) (CC and) (NP (NP (PRP$ his) (JJ 7-year-old) (NN daughter)) (, ,) (NP (NNP Maria)) (, ,) (SBAR (WHNP (WP who)) (S (ADVP (RB now)) (VP (VBZ earns) (NP (NP (DT an) (VBN estimated) (QP ($ $) (CD 30) (CD million))) (NP (DT a) (NN year)) (PP (IN in) (NP (NNS endorsements))))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (DT a) (NN news) (NN conference))) (, ,) (NP (NP (DT the) (NNP Russian) (NN industry) (CC and) (NN energy) (NN minister)) (, ,) (NP (NNP Viktor) (NNP B.) (NNP Khristenko)) (, ,)) (VP (VBD said) (SBAR (IN that) (S (PP (IN in) (NP (NN time))) (NP (NNP Russia)) (VP (MD would) (VP (AUX be) (ADJP (JJ able) (S (VP (TO to) (VP (VB reroute) (NP (NN oil)) (PP (IN around) (NP (NNP Belarus))) (, ,) (PP (ADVP (RB possibly)) (IN by) (S (VP (VP (VBG increasing) (NP (NP (DT the) (NN capacity)) (PP (IN of) (NP (DT the) (NNP Baltic) (NN pipeline) (NN system))))) (CC or) (VP (VBG hurrying) (NP (NP (DT the) (NN completion)) (PP (IN of) (NP (DT the) (NNP East) (NNP Siberia-Pacific) (NNP Ocean) (NN pipeline))))))))))))))))) (. .)))
(S1 (S (NP (NP (NP (DT The) (CD two) (NNS leaders) (POS ')) (JJ seesaw) (NN struggle)) (PP (IN for) (NP (NN power)))) (VP (VBZ reflects) (NP (NP (DT a) (JJR deeper) (NN schism)) (PP (IN in) (NP (JJ Ukrainian) (NNS politics) (CC and) (NN society))) (PP (IN in) (NP (NP (DT a) (NN country)) (VP (VBN balanced) (PP (PP (IN between) (NP (NP (NNP Russia)) (CC and) (NP (DT the) (NNP West)))) (, ,) (CC and) (PP (IN between) (NP (NP (JJ Russian) (NNS speakers)) (CC and) (NP (JJ Ukrainian) (NNS speakers)))))))))) (. .)))
(S1 (S (NP (NP (DT The) (JJ Orthodox) (NNP Church) (POS 's)) (NN resurrection)) (PP (IN in) (NP (JJ Russian) (NN society))) (VP (AUX is) (ADVP (RB now)) (VP (ADVP (RB firmly)) (VBN established) (, ,) (SBAR (S (CC but) (NP (NP (DT the) (JJ striking) (NN tableau)) (PP (IN of) (NP (NP (NNP Mr.) (NNP Yeltsin) (POS 's)) (NN coffin)))) (, ,) (S (VP (VP (VBN draped) (PP (IN in) (NP (DT the) (NNP Russian) (NN tricolor)))) (, ,) (VP (VBN accompanied) (PP (IN by) (NP (DT a) (JJ military) (NN honor) (NN guard)))) (CC and) (VP (VBD presided) (PRT (RP over)) (PP (IN by) (NP (JJ bearded) (NNS priests)))))) (, ,) (VP (VBN embodied) (NP (NP (NNS symbols)) (PP (IN of) (NP (NP (DT a) (JJ new) (NNP Russia)) (PRN (: --) (NP (NN state) (, ,) (JJ military) (CC and) (NN church)) (: --))))) (PP (ADVP (RB very) (RB much)) (IN like) (NP (NP (DT the) (NNP Russia)) (PP (IN of) (NP (JJ old)))))))))) (. .) ('' '')))
(S1 (S (S (NP (NP (DT The) (JJ zydeco) (CC and) (JJ Cajun) (NNS musicians)) (PP (PP (IN from) (NP (DT the) (NN bayou) (NN country))) (PP (TO to) (NP (DT the) (NN west)))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX was) (ADVP (RB harder)) (VP (VBN hit) (PP (IN by) (NP (NNP Hurricane) (NNP Rita))))))) (, ,)) (ADVP (RB also)) (VP (VBD sang) (PP (IN about) (NP (NP (DT the) (NNS storms)) (SBAR (S (NP (DT the) (NNP Cajun) (NN rocker) (NNP Zachary) (NNP Richard)) (VP (AUX had) (NP (NP (DT a) (NN song)) (SBAR (WHNP (WDT that)) (S (VP (VBD vowed)))))))))))) (, ,) ('' '') (NP (NNP Seven) (NNS generations)) (NP (PRP we)) (VP (AUX 've) (VP (AUX been) (VP (VBN stuck) (ADVP (RB here)) (PP (IN in) (NP (DT the) (NN mud\/But))) (NP (NP (DT the) (JJ only) (NN way)) (SBAR (WHNP (IN that)) (S (NP (PRP I)) (VP (AUX 'm) (VP (VBG leaving) (SBAR (S (NP (NNP Louisiana)) (VP (AUX is) (SBAR (IN if) (S (NP (PRP I)) (VP (AUX 'm) (VP (VBN swept) (ADVP (RB away)) (PP (IN in) (NP (DT a) (NN flood)))))))))))))))))) (. .) ('' '')))
(S1 (S (S (NP (NNP INTERNATIONAL) (NNP A3-8)) (VP (TO To) (VP (VB Pursue) (NP (NNP Missile) (NNP Project))))) (, ,) (NP (NNP U.S.)) (VP (VBZ Offers) (S (NP (NNP Russia)) (NP (NP (DT a) (NN Deal)) (SBAR (S (NP (DT The) (NNP Bush) (NN administration)) (VP (AUX is) (VP (VBG offering) (NP (NNP Russia) (NNS incentives)) (S (VP (TO to) (VP (VB drop) (NP (NP (PRP$ its) (NN opposition)) (PP (TO to) (NP (NP (NNP American) (NN missile) (NN defense) (NNS sites)) (PP (IN in) (NP (NP (NNP Poland)) (CC and) (NP (DT the) (NNP Czech) (NNP Republic)))) (, ,) (PP (VBG including) (NP (NP (DT an) (NN invitation)) (SBAR (S (VP (TO to) (VP (VB begin) (S (VP (VBG linking) (NP (DT some) (NNP American) (CC and) (NNP Russian) (JJ antimissile) (NNS systems)))) (, ,) (PP (VBG according) (PP (TO to) (NP (JJ senior) (NN administration) (NNS officials))))))))))))))))))))))) (. .)))
(S1 (S (NP (PRP It)) (VP (AUX was) (ADVP (RB then)) (S (VP (TO to) (VP (AUX be) (VP (VBN sent) (PP (TO to) (NP (NP (NNP Russia) (POS 's)) (JJ central) (NN bank))) (PP (IN before) (NP (NP (DT a) (JJ further) (NN transfer)) (PP (TO to) (NP (NP (DT an) (NN account)) (VP (VBN controlled) (PP (IN by) (NP (NNP North) (NNP Korea)))))) (PP (IN in) (NP (DT a) (JJ Russian) (JJ commercial) (NN bank)))))))))) (. .)))
(S1 (S (PP (IN For) (NP (NN instance))) (, ,) (VP (AUX is) (NP (DT the) (NNP Russian) (NN gene) (NN pool)) (ADVP (RB really)) (SBAR (IN that) (S (ADJP (RB innately) (JJ superior) (PP (TO to) (NP (NP (DT that)) (PP (IN of) (NP (NP (NNP Ukraine) (CC or) (NNP Slovenia)) (CC or) (NP (NNP Southern) (NNP California)))))))))) (. ?)))
(S1 (S (NP (NP (NNP Mr.) (NNP Yanukovich)) (, ,) (SBAR (WHNP (WP who)) (S (, ,) (PP (IN in) (ADJP (JJ general))) (, ,) (VP (VP (VBZ represents) (NP (JJ Russian) (NNS speakers)) (PP (IN in) (NP (NNP Ukraine)))) (CC and) (VP (VBZ favors) (NP (NP (JJR closer) (NN business) (CC and) (JJ political) (NNS ties)) (PP (IN with) (NP (NNP Russia)))))))) (, ,)) (VP (VBZ leads) (NP (NP (DT a) (NN party)) (SBAR (WHNP (WDT that)) (S (VP (AUX is) (ADJP (JJ likely) (S (VP (TO to) (VP (VB win) (NP (NP (DT a) (NN plurality)) (PP (IN in) (NP (DT any) (JJ new) (NN election)))))))) (, ,) (SBAR (IN as) (S (NP (PRP it)) (VP (AUX did) (PP (IN in) (NP (DT the) (NN vote))) (NP (JJ last) (NN year)))))))))) (. .)))
(S1 (S (NP (NP (DT The) (NN hunger) (CC and) (NN ambition)) (PP (IN of) (NP (NNP Russian) (NNS parents)))) (VP (AUX is) (ADJP (RB uniquely) (JJ strong)) (, ,) (SBAR (ADVP (RB particularly)) (WHADVP (WRB when)) (S (NP (PRP one)) (VP (VBZ considers) (SBAR (SBAR (WHADVP (WRB how)) (S (NP (JJ hard) (NN life)) (VP (AUX is) (PP (IN in) (NP (NNP Russia))) (ADVP (RB right) (RB now))))) (CC and) (SBAR (ADVP (RB also)) (IN that) (S (NP (NP (DT the) (NN patron) (NN saint)) (PP (IN of) (NP (NNP Russian) (NN tennis) (NNS parents)))) (VP (AUX is) (NP (NP (NP (DT the) (JJ ex-Siberian) (NN oil-field) (NN worker) (NNP Yuri) (NNP Sharapov)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD came) (PP (TO to) (NP (NNP America))) (PP (IN with) (NP (QP (JJR less) (IN than) ($ $) (CD 1,000)))))))) (CC and) (NP (NP (PRP$ his) (JJ 7-year-old) (NN daughter)) (, ,) (NP (NNP Maria)) (, ,) (SBAR (WHNP (WP who)) (S (ADVP (RB now)) (VP (VBZ earns) (NP (NP (DT an) (VBN estimated) (QP ($ $) (CD 30) (CD million))) (NP (DT a) (NN year)) (PP (IN in) (NP (NNS endorsements))))))))))))))))) (. .)))
(S1 (S (ADVP (RB Now)) (, ,) (ADVP (NP (QP (RB nearly) (CD four)) (NNS decades)) (IN on)) (, ,) (NP (PRP it)) (VP (AUX has) (VP (VBN survived) (NP (NP (DT the) (NN turbulence)) (PP (IN of) (NP (JJ post-Soviet) (NN transition)))) (S (VP (VP (TO to) (VP (VB undercut) (NP (NP (JJ common) (NNS perceptions)) (PP (IN of) (NP (JJ Russian) (NN agriculture) (CC and) (NN life)))))) (CC and) (VP (TO to) (VP (VB become) (NP (NP (DT a) (NN measure)) (, ,) (PP (IN in) (NP (PRP$ its) (NN way))) (, ,) (PP (IN of) (NP (NP (NNP Russia) (POS 's)) (NN change)))))))))) (. .)))
(S1 (S (PP (IN In) (S (VP (VBG doing) (ADVP (RB so))))) (, ,) (NP (PRP he)) (VP (VBD said) (SBAR (S (NP (DT the) (NN company)) (VP (AUX was) (VP (VBG shaking) (PRT (RP off)) (NP (NP (NP (NNP Russia) (POS 's)) (JJ dark) (NN legacy)) (PP (IN of) (NP (NP (DT the) (CD 1986) (NNP Chernobyl) (NN disaster)) (PP (IN by) (NP (NP (JJ convincing) (JJ foreign) (NNS governments)) (PP (IN of) (NP (NP (NN engineering) (NNS advances)) (PP (IN in) (NP (JJ Russian) (NNS designs)))))))))) (PP (IN since) (NP (RB then)))))))) (. .)))
(S1 (S (NP (NP (DT A) (JJ RUSSIA-IRAN) (NN GAS) (NN ALLIANCE)) (: --) (NP (DT The) (JJ Russian) (NN president)) (, ,) (NP (NNP Vladimir) (NNP V.) (NNP Putin)) (, ,)) (VP (VBD said) (SBAR (IN that) (S (NP (NNP Russia)) (VP (MD would) (VP (VB consider) (NP (JJ OPEC-like) (NN cooperation)) (PP (IN with) (NP (NNP Tehran))) (PP (IN on) (NP (NP (NNS sales)) (PP (IN of) (NP (JJ natural) (NN gas)))))))))) (. .)))
(S1 (NP (NNP XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)))
(S1 (S (NP (NP (DT These) (JJ new) (NNS deals)) (: --) (SBAR (WHNP (WDT which)) (S (VP (ADVP (JJR more) (IN than)) (VBD doubled) (NP (NP (DT the) (NN price)) (SBAR (S (NP (NNP Belarus)) (VP (VP (VBZ pays) (PP (IN for) (NP (JJ natural) (NN gas)))) (CC and) (VP (VBD imposed) (NP (NP (DT an) (NN export) (NN duty)) (PP (IN on) (NP (NN oil) (NNS shipments)))))))))))) (: --)) (VP (MD will) (VP (VB generate) (NP (NNS billions)) (PP (IN of) (NP (NP (NNS dollars)) (PP (IN of) (NP (NP (VBN added) (NN revenue)) (PP (IN for) (NP (DT the) (NNP Russian) (NN energy) (NN giant) (NNP Gazprom))))))) (, ,) (ADVP (RB as) (RB well) (PP (IN as) (NP (NP (NNP Russia) (POS 's)) (NN state) (CC and) (JJ private) (NN oil) (NNS companies)))) (, ,) (SBAR (RB much) (IN as) (S (NP (JJ recent) (NNS deals)) (VP (AUX did) (PP (IN with) (NP (NNP Ukraine) (, ,) (NNP Moldova) (CC and) (NNP Armenia)))))))) (. .)))
(S1 (S (IN Because) (NP (EX there)) (VP (AUX is) (NP (NP (DT a) (JJ deep) (JJ tectonic) (NN shift)) (PP (IN in) (NP (DT the) (NNP Russian) (NN psyche))) (SBAR (WHNP (WDT that)) (S (VP (VBZ says) (, ,) (`` `) (S (NP (DT These) (NNS guys)) (VP (AUX are) (PP (IN about) (S (VP (VBG exploiting) (NP (NP (NNP Russia) (POS 's)) (NN weakness)))))))))))) (. .)))
(S1 (S (S (VP (VBG Addressing) (NP (NP (NNS tensions)) (PP (IN between) (NP (NNP Europe) (CC and) (NNP Russia))) (PP (IN over) (NP (NN energy) (NNS exports)))))) (, ,) (NP (NNP Mr.) (NNP Putin)) (VP (VBD said) (SBAR (S (NP (NP (CD 26) (NN percent)) (PP (IN of) (NP (JJ Russian) (NN oil)))) (VP (AUX was) (VP (VBN extracted) (PP (IN by) (NP (JJ foreign) (NNS companies)))))))) (. .)))
(S1 (S (S (NP (NN FEUD)) (VP (VBZ LEADS) (PP (TO TO) (NP (NN OIL) (NN CUTOFF))))) (: --) (S (NP (NP (NNS Supplies)) (PP (IN of) (NP (NP (JJ Russian) (JJ crude) (NN oil)) (VP (VBN headed) (PP (TO to) (NP (JJ European) (NNS markets))))))) (VP (VBD came) (PP (TO to) (NP (DT a) (NN halt))) (ADVP (RB overnight)) (, ,) (PP (IN in) (NP (NP (DT the) (JJS latest) (NN manifestation)) (PP (IN of) (NP (NP (ADJP (RB rapidly) (VBG deteriorating)) (NNS relations)) (PP (IN between) (NP (NNP Russia) (CC and) (NNP Belarus))))))))) (. .)))
(S1 (S (NP (NP (NNS Details)) (PP (IN about) (NP (NP (DT the) (JJ new) (NN package)) (PP (IN of) (NP (NNS invitations))) (SBAR (IN for) (S (NP (NNP Russia)) (VP (TO to) (VP (VB cooperate) (PP (IN on) (NP (NN missile) (NN defense)))))))))) (VP (AUX were) (VP (VBN described) (PP (IN by) (NP (NP (JJ civilian) (NN administration) (NNS officials)) (CC and) (NP (NP (JJ military) (NNS officers)) (SBAR (WHNP (WP who)) (S (VP (VBD said) (SBAR (S (NP (PRP they)) (VP (VBD believed) (SBAR (IN that) (S (NP (DT the) (NN initiative)) (VP (AUX was) (NP (NP (DT a) (JJ major) (NN step) (RB forward)) (PP (IN in) (S (VP (VBG calming) (NP (NP (JJ Russian) (NNS objections)) (PP (TO to) (NP (DT the) (NNP American) (NNS plans)))))))))))))))))))))) (. .)))
(S1 (S (PP (IN For) (NP (RB now))) (, ,) (S (NP (JJ Russian) (JJ private) (NNS companies)) (VP (AUX are) (ADVP (RB ahead) (PP (IN of) (NP (NN government) (NNS rules)))))) (, ,) (CC but) (S (NP (PRP they)) (ADVP (RB only)) (VP (AUX do) (NP (NNS deals)) (PP (IN outside) (PP (IN of) (NP (NNP Russia)))))) (. .)))
(S1 (S (NP (NP (NNP Chevron)) (, ,) (VP (VBN based) (PP (IN in) (NP (NP (NNP San) (NNP Ramon)) (, ,) (NP (NNP Calif.))))) (, ,)) (VP (VBD declined) (S (VP (TO to) (VP (VB comment) (PP (IN on) (NP (NP (DT the) (NN assertion)) (PP (IN by) (NP (NP (CD two) (NNP Russian) (NNS officials)) (PRN (: --) (PP (VBG including) (NP (NP (DT the) (JJ chief) (NN executive)) (PP (IN of) (NP (NP (NNP Gazprom)) (, ,) (NP (NP (NNP Russia) (POS 's)) (JJ natural) (NN gas) (NN monopoly)))))) (: --)))) (SBAR (IN that) (S (NP (JJ American) (NNS companies)) (VP (AUX were) (ADJP (JJ interested) (PP (IN in) (S (VP (VBG participating) (PP (IN in) (NP (NP (DT an) (NN auction)) (PP (IN of) (NP (NP (NNP Yukos) (POS 's)) (NNS assets)))))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP com)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VP (AUX has) (NP (DT a) (NNP New) (NNP Jersey) (NN phone) (NN number))) (CC but) (VP (VBZ claims) (SBAR (SBAR (IN that) (S (NP (PRP it)) (VP (AUX is) (VP (VBN based) (PP (IN in) (NP (NNP Russia))))))) (CC and) (SBAR (IN that) (S (NP (PRP it)) (VP (VBZ complies) (PP (IN with) (NP (JJ Russian) (JJ copyright) (NNS laws))))))))))) (, ,)) (ADVP (RB still)) (VP (VBZ operates)) (. .)))
(S1 (S (SBAR (IN Although) (S (NP (PRP he)) (VP (VP (ADVP (RB never)) (VBD returned) (PP (TO to) (NP (NNP Russia)))) (CC and) (VP (ADVP (RB always)) (VBD wrote) (PP (IN in) (NP (NNP French))))))) (, ,) (NP (NNP Russia)) (VP (VBD remained) (ADJP (JJ present)) (PP (IN in) (NP (NP (RB much)) (PP (PP (IN of) (NP (PRP$ his) (NN work))) (, ,) (ADVP (RB notably)) (PP (IN in) (NP (NP (DT a) (NN stream)) (PP (IN of) (NP (NNS biographies))))) (, ,) (PP (IN of) (NP (NP (NNP Ivan) (DT the) (JJ Terrible)) (, ,) (NP (NNP Peter) (DT the) (NAC (NNP Great) (, ,) (NNP Catherine) (DT the) (NNP Great) (, ,)) (NNP Alexander) (NNP II)) (, ,) (NP (NNP Nicholas) (NNP II)) (, ,) (NP (NNP Rasputin)) (CC and) (NP (JJ other) (JJ historical) (NNS figures)))) (CC and) (PP (IN of) (NP (NP (JJ Russian) (JJ literary) (NNS giants)) (PP (IN like) (NP (NP (NNP Tolstoy) (, ,) (NNP Pushkin) (, ,) (NNP Gogol) (, ,) (NNP Chekhov)) (CC and) (PRN (, ,) (ADVP (RBS most) (RB recently)) (, ,)) (NP (NNP Boris) (NNP Pasternak)))))))))) (. .)))
(S1 (S (NP (NNP Russia)) (NP (JJ last) (NN month)) (VP (VBD provided) (NP (NNP Iran)) (PP (IN with) (NP (NP (ADJP (QP ($ $) (CD 700) (CD million))) (NN worth)) (PP (IN of) (NP (NP (JJ TOR-M1) (NN antiaircraft) (NNS batteries)) (SBAR (WHNP (WHNP (WP$ whose) (JJ likely) (NN target)) (PP (IN in) (NP (NP (DT the) (NN event)) (PP (IN of) (NP (NN conflict)))))) (S (VP (MD would) (VP (AUX be) (NP (JJ American) (NNS fighters) (CC and) (NNS bombers)) (, ,) (SBAR (RB just) (IN as) (S (NP (NP (JJ Russian) (JJ anti-tank) (NNS weapons)) (, ,) (VP (ADVP (RB originally)) (VBN sold) (PP (TO to) (NP (NNP Syria)))) (, ,)) (VP (AUX were) (VP (VBN used) (PP (IN against) (NP (NP (JJ Israeli) (NNS forces)) (VP (VBG fighting) (NP (NNP Hezbollah))))) (PP (IN in) (NP (NNP Lebanon))) (NP (JJ last) (NN year)) (, ,) (S (VP (VBG prompting) (NP (JJ diplomatic) (NNS protests)) (PP (IN from) (NP (NNP Israel)))))))))))))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Lugovoi)) (ADVP (RB also)) (VP (VBD said) (SBAR (IN that) (S (NP (NP (NNP Mr.) (NNP Litvinenko)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD made) (NP (PRP$ his) (NN name)) (PP (IN in) (NP (NN part))) (PP (IN by) (S (VP (ADVP (RB stridently)) (VBG criticizing) (NP (NP (NNP Mr.) (NNP Putin) (CC and) (NNP Russia) (POS 's)) (NN intelligence) (NNS services)))))))) (, ,)) (VP (AUX had) (VP (VBN proposed) (NP (DT a) (NN racket) (S (VP (TO to) (VP (VB secure) (NP (NN asylum)) (PP (IN for) (NP (NP (NNPS Russians)) (SBAR (WHNP (WP who)) (S (VP (MD would) (ADVP (RB publicly)) (VP (VB criticize) (NP (JJ Russian) (NNS authorities))))))))))))))))) (. .)))
(S1 (S (NP (NNP A8) (NNP Russia)) (VP (VBZ Lifts) (NP (NNP Bear) (NN Hunting) (NN Ban)) (PP (IN For) (NP (NP (DT the) (JJ first) (NN time)) (PP (IN in) (NP (QP (JJR more) (IN than) (CD five)) (NNS decades))))) (, ,) (SBAR (S (NP (DT the) (JJ Russian) (NN government)) (VP (AUX is) (VP (VBG preparing) (S (VP (TO to) (VP (VB allow) (S (NP (NNS hunters)) (VP (TO to) (VP (VB kill) (NP (NP (JJ polar) (NNS bears)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX are) (VP (VBG descending) (PP (IN with) (NP (NP (JJR greater) (NN regularity)) (PP (IN on) (NP (JJ coastal) (NNS villages))) (PP (IN in) (NP (NP (NNS parts)) (PP (IN of) (NP (NP (DT the) (ADJP (RB far) (JJ north))) (PP (IN as) (NP (NP (DT a) (NN result)) (PP (IN of) (NP (NP (VBG shrinking) (NN sea) (NN ice)) (VP (ADVP (RB generally)) (VBN attributed) (PP (TO to) (NP (DT a) (NN warming) (NN planet)))))))))))))))))))))))))))))) (. .)))
(S1 (S (S (NP (NP (NNS Supplies)) (PP (IN of) (NP (NP (JJ Russian) (JJ crude) (NN oil)) (VP (VBN headed) (PP (TO to) (NP (JJ European) (NNS markets))))))) (VP (VBD came) (PP (TO to) (NP (DT a) (NN halt))) (ADVP (RB overnight)))) (, ,) (NP (NNS officials)) (VP (VBD said) (NP (NNP Monday)) (, ,) (PP (IN in) (NP (NP (DT the) (JJS latest) (NN manifestation)) (PP (IN of) (NP (NP (ADJP (RB rapidly) (VBG deteriorating)) (NNS relations)) (PP (IN between) (NP (NNP Russia) (CC and) (NNP Belarus)))))))) (. .)))
(S1 (NP (NNP XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)))
(S1 (S (NP (NP (QP (IN At) (JJS least) (CD 20)) (NN percent)) (PP (IN of) (NP (JJ Russian) (JJ natural) (NN gas))) (VP (VBN destined) (PP (IN for) (NP (NNP Europe))))) (VP (VBZ passes) (PP (IN through) (NP (NNP Belarus))) (, ,) (NP (NP (JJR less)) (PP (IN than) (NP (NP (DT the) (NN amount)) (SBAR (WHNP (WDT that)) (S (VP (VP (VBZ transits) (NP (NNP Ukraine))) (CC but) (VP (RB enough) (S (VP (TO to) (VP (VB raise) (NP (JJ new) (NNS concerns)) (PP (IN in) (NP (NNP Europe)))))))))))))) (. .)))
(S1 (S (S (S (NP (DT The) (NN fund)) (VP (AUX has) (ADVP (RB also)) (VP (AUX done) (ADVP (RB well)) (PP (IN with) (NP (NP (NNP Vimpel) (NNPS Communications)) (, ,) (NP (DT a) (NNP Russian) (NNP wireless) (NN telecommunications) (NN company))))))) (, ,) (NP (WDT which) ('' '')) (VP (AUX is) (VP (VBG experiencing) (NP (NP (DT a) (NN profit) (NN surge)) (VP (VBN related) (PP (TO to) (NP (NP (DT the) (JJ overall) (NN strength)) (PP (IN of) (NP (NN business))) (PP (IN in) (NP (NNP Russia)))))))))) (, ,) ('' '') (NP (PRP he)) (VP (VBD said)) (. .)))
(S1 (S (NP (PRP We)) (VP (AUX do) (NP (DT no) (NN one)) (NP (NP (DT any) (NNS favors)) (, ,) (NP (NP (JJS least)) (PP (IN of) (NP (NP (PDT all) (DT the) (JJ Russian) (NNS people)) (CC and) (NP (RB even) (PRP$ their) (NN government))))) (, ,)) (PP (IN by) (S (VP (VBG abstaining) (PP (IN from) (S (VP (VBG speaking) (PRT (RP out)) (SBAR (WHADVP (WRB when)) (S (ADJP (JJ necessary)) (, ,) ('' '') (NP (DT the) (NNP Russia) (NN expert)) (, ,) (NP (NP (NNP David) (NNP Kramer)) (, ,) (NP (NP (DT the) (JJ deputy) (NN assistant) (NN secretary)) (PP (IN of) (NP (NN state))) (PP (IN for) (NP (NNP European) (CC and) (NNP Eurasian) (NNS affairs)))) (, ,)) (VP (VBD said) (PP (IN in) (NP (DT a) (NN speech))) (NP (NNP Thursday) (NN night)) (PP (IN before) (NP (NP (DT the) (NNP Baltimore) (NNP Council)) (PP (IN on) (NP (NNP Foreign) (NNPS Affairs))))))))))))))) (. .)))
(S1 (S (NP (DT The) (NNP Mi-24)) (VP (AUX is) (NP (NP (DT a) (JJ Russian) (NN attack) (NN gunship)) (PP (IN in) (NP (NN abundance))) (PP (RB just) (IN over) (NP (NP (DT the) (NN border)) (PP (IN inside) (NP (NP (NNP Russia)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (JJ several) (NN aviation) (NNS units)) (VP (VBP support) (NP (NP (NN counterinsurgency) (NNS operations)) (PP (IN in) (NP (NNP Chechnya))))))))))))) (. .)))
(S1 (S (NP (DT The) (JJ Russian) (NN government)) (VP (AUX has) (VP (VBN billed) (NP (NP (DT the) (NN gathering)) (PP (IN in) (NP (NNP St.) (NNP Petersburg)))) (PP (IN as) (NP (NP (DT a) (NN kind)) (PP (IN of) (NP (NNPS Davos))))) (PP (IN for) (NP (VBG emerging) (NNS markets))) (, ,) (PP (IN with) (NP (NP (DT an) (NN emphasis)) (PP (IN on) (NP (NP (NNP Russia) (POS 's)) (JJ oil-driven) (NN economy))))))) (. .)))
(S1 (NP (NNP XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)))
(S1 (S (NP (DT The) (NNP Boeing) (NN Company)) (VP (VBD announced) (PP (IN on) (NP (NNP Saturday))) (NP (NP (DT a) (ADJP (QP ($ $) (CD 3.5) (CD billion))) (NN sale)) (PP (IN of) (NP (NNS airplanes))) (PP (TO to) (NP (NP (NNP Aeroflot)) (, ,) (NP (DT the) (NNP Russian) (JJ national) (NN airline)) (, ,)))) (PP (IN in) (NP (NP (DT a) (NN deal)) (SBAR (WHNP (WDT that)) (S (VP (VBD defied) (NP (DT the) (NN souring)) (NP (NP (JJ political) (NNS relations)) (PP (IN between) (NP (NP (DT the) (NNP United) (NNPS States)) (CC and) (NP (NNP Russia))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (DT a) (NN flurry)) (PP (IN of) (NP (NP (JJ public) (NNS comments)) (PP (IN in) (NP (DT the) (JJ past) (NN month))))))) (, ,) (NP (NNP Russian) (NNS officials)) (VP (VBD acknowledged) (SBAR (IN that) (S (NP (NNP Russia)) (VP (AUX was) (VP (VBG delaying) (NP (NP (DT the) (NN delivery)) (PP (IN of) (NP (NN fuel)))) (PP (TO to) (NP (NP (DT the) (NN reactor)) (PP (IN in) (NP (NP (DT the) (JJ Iranian) (JJ port) (NN city)) (PP (IN of) (NP (NNP Bushehr)))))))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Lang)) (VP (VBD said) (SBAR (S (NP (DT the) (NN monument)) (VP (AUX was) (VP (VBN built) (PP (IN in) (NP (CD 1947))) ('' '') (S (VP (TO to) (VP (VP (VB symbolize) (NP (NP (DT the) (NN superiority)) (PP (IN of) (NP (NNP Russia) (CC and) (NNP Russian) (NN rule))))) ('' '') (CC and) (VP (ADVP (RB therefore)) (AUX had) (NP (NP (DT no) (NN place)) (PP (IN in) (NP (NP (JJ independent) (NNP Estonia)) (, ,) (ADVP (RB now)) (NP (NP (DT a) (JJ committed) (NN member)) (PP (IN of) (NP (DT the) (NNP European) (NNP Union) (CC and) (NNP NATO)))))))))))))))) (. .)))
(S1 (S (S (NP (NNP Russian) (NNS officials)) (VP (VBD said) (SBAR (S (NP (PRP they)) (VP (VBD banned) (NP (NP (NNP Petro) (NNP O.) (NNP Poroshenko)) (, ,) (NP (DT a) (NN chocolate) (CC and) (NN television) (NN magnate)) (CC and) (NP (JJ former) (JJ Ukrainian) (JJ national) (NN security) (NN adviser)) (, ,)) (PP (IN on) (NP (NNP Feb.) (CD 3))) (PP (IN in) (NP (NP (NN retaliation)) (PP (IN for) (NP (NP (NP (NNP Ukraine) (POS 's)) (NN visa) (NN ban)) (PP (IN on) (NP (NP (NNP Russian) (NN ultranationalist) (NN politician) (NNP Vladimir) (NNP V.) (NNP Zhirinovsky)) (CC and) (NP (NNS others))))))))))))) (, ,) (NP (NNP Interfax)) (VP (VBD reported)) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Gates)) (VP (VBD said) (SBAR (S (NP (NNP Russian)) (VP (VBZ fears) (SBAR (IN that) (S (NP (NP (NN missile) (NN defense) (NNS sites)) (PP (IN in) (NP (DT the) (NN region)))) (VP (MD could) (VP (AUX be) (VP (VBN altered) (PP (IN in) (NP (NNS years))) (S (VP (TO to) (VP (VB come) (S (VP (TO to) (VP (VB counter) (NP (NP (NP (NNP Moscow) (POS 's)) (JJ sizable) (JJ nuclear) (NN missile) (NN fleet)) ('' '') (SBAR (S (S (VP (AUX is) (NP (NP (DT a) (NN matter)) (SBAR (WHNP (WDT that)) (S (VP (MD can) (VP (AUX be) (VP (VBN negotiated) (PP (IN over) (NP (NN time))))))))))) (, ,) ('' '') (CC and) (S (NP (PRP he)) (VP (VBD stressed) (SBAR (IN that) (S (NP (NP (NNP Russia)) (CONJP (RB as) (RB well) (IN as)) (NP (NNP NATO) (NNS allies))) (VP (MD would) (VP (VB benefit) (PP (IN from) (NP (JJ American) (NN missile) (NNS defenses))))))))))))))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (DT a) (NN news) (NN conference))) (, ,) (NP (NP (DT the) (NNP Russian) (NN industry) (CC and) (NN energy) (NN minister)) (, ,) (NP (NNP Viktor) (NNP B.) (NNP Khristenko)) (, ,)) (VP (VBD said) (SBAR (IN that) (S (PP (IN in) (NP (NN time))) (NP (NNP Russia)) (VP (MD would) (VP (AUX be) (ADJP (JJ able) (S (VP (TO to) (VP (VB reroute) (NP (NN oil)) (PP (IN around) (NP (NNP Belarus))) (, ,) (PP (ADVP (RB possibly)) (IN by) (S (VP (VP (VBG increasing) (NP (NP (DT the) (NN capacity)) (PP (IN of) (NP (DT the) (NNP Baltic) (NN pipeline) (NN system))))) (CC or) (VP (VBG hurrying) (NP (NP (DT the) (NN completion)) (PP (IN of) (NP (DT the) (NNP East) (NNP Siberia-Pacific) (NNP Ocean) (NN pipeline))))))))))))))))) (. .)))
(S1 (S (S (SBAR (IN If) (S (NP (EX there)) (VP (AUX is) (NP (NP (DT a) (NN president)) (PP (IN in) (NP (DT the) (NN country))))))) (, ,) (SBAR (IN if) (S (NP (DT the) (NN president)) (VP (VP (VBZ loves) (NP (NNP Ukraine))) (CC and) (VP (VBZ respects) (NP (NNP Ukrainians)))))) (, ,) (SBAR (IN if) (S (NP (DT the) (NN president)) (VP (VBZ understands) (NP (NP (PDT all) (DT the) (NNS dangers)) (VP (VBG facing) (NP (DT the) (NN country))))))) (, ,) (NP (PRP he)) (VP (MD will) (ADVP (RB either)) (VP (VP (VB dissolve) (NP (DT the) (NNP Parliament))) (CC or) (VP (VB lose) (NP (NP (DT the) (VBG remaining) (NN support)) (PP (IN of) (NP (NN society)))))))) (, ,) ('' '') (NP (NNP Yulia) (NNP V.) (NNP Tymoshenko)) (, ,) (PP (IN once) (NP (NP (NNP Mr.) (NNP Yushchenko) (POS 's)) (JJ prime) (NN minister))) (, ,) (VP (VBD said) (NP (NP (NNP Friday)) (, ,) (NP (NP (DT the) (JJ Russian) (NN news) (NN agency)) (SBAR (S (NP (NNP Interfax)) (VP (VBD reported) (PP (IN from) (NP (NNP Kiev))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NNP Estonia))) (, ,) (NP (NNS officials)) (VP (VBD blamed) (NP (NNP Russian) (NNS hackers)) (PP (IN for) (S (VP (VBG shutting) (PRT (RP down)) (NP (NN government) (NNP Web) (NNS sites))))) (, ,) (SBAR (IN while) (S (NP (NP (DT the) (NN president)) (, ,) (NP (NNP Toomas) (NNP Hendrik) (NNP Ilves)) (, ,)) (VP (VBD called) (PP (IN on) (NP (NNP Russia) ('' ''))) (S (VP (TO to) (VP (VB remain) (ADJP (JJ civilized)) ('' '') (PP (IN after) (NP (NP (NNS days)) (PP (IN of) (NP (NP (NNS protests)) (PP (IN in) (NP (DT each) (NN country))) (PP (IN over) (NP (NP (DT the) (NN removal)) (PP (IN of) (NP (NP (DT a) (NNP Soviet-era) (NN monument)) (PP (IN in) (NP (NP (NNP Tallinn)) (, ,) (NP (DT the) (JJ Estonian) (NN capital)) (, ,))))))))))) (NP (RB late) (JJ last) (NN week))))))))) (. .)))
(S1 (S (NP (NP (DT An) (NN article)) (NP (JJ last) (NNP Thursday)) (PP (IN about) (NP (NP (DT the) (NN burial)) (PP (IN of) (NP (NP (NNP Boris) (NNP N.) (NNP Yeltsin)) (, ,) (NP (NP (NNP Russia) (POS 's)) (JJ first) (ADJP (RB democratically) (VBN elected)) (NN president)) (, ,))) (PP (IN at) (NP (NNP Novodevichy) (NNP Cemetery)))))) (, ,) (ADVP (RB erroneously)) (VP (VBD included) (NP (NP (DT a) (NN writer)) (PP (IN among) (NP (NP (JJ other) (JJ Russian) (NNS notables)) (VP (VBN interred) (ADVP (RB there))))))) (. .)))
(S1 (S (NP (PRP They)) (VP (VBD said) (SBAR (S (NP (PRP they)) (VP (AUX were) (NP (NP (DT a) (NN means)) (SBAR (S (VP (TO to) (VP (VB keep) (NP (NP (NNP Mr.) (NNP Khodorkovsky)) (CC and) (NP (NNP Mr.) (NNP Lebedev))) (PP (IN in) (NP (NN prison))) (PP (PP (IN beyond) (NP (NP (NP (NNP Russia) (POS 's)) (JJ presidential) (NN election)) (PP (IN in) (NP (JJ early) (CD 2008))))) (CC and) (PP (IN throughout) (NP (NP (DT the) (NN remainder)) (PP (IN of) (NP (NP (DT the) (NN liquidation)) (PP (IN of) (NP (NP (NNP Yukos)) (, ,) (NP (PRP$ their) (JJ former) (NN oil) (NN giant)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX is) (PP (IN in) (NP (JJ Russian) (NN receivership)))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Angela) (NNP E.) (NNP Stent)) (, ,) (NP (NP (NN director)) (PP (IN of) (NP (NP (DT the) (NNP Center)) (PP (IN for) (NP (NNP Eurasian) (, ,) (NNP Russian) (CC and) (NNP East) (NNP European) (NNP Studies))))) (PP (IN at) (NP (NNP Georgetown) (NNP University)))) (, ,)) (VP (VBD said) (SBAR (S (NP (DT the) (NNP Bush) (NN administration)) (VP (VP (AUX had) ('' '') (ADVP (RB already)) (VP (AUX been) (VP (VBG reassessing) (NP (NP (PRP$ our) (NN policy)) (PP (IN toward) (NP (NNP Russia))))))) (, ,) (SBAR (IN as) (S (NP (PRP we)) (VP (AUX have) (VP (VBN understood) (PP (ADVP (IN at) (JJS least)) (IN since) (NP (NNP January))) (PP (IN of) (UCP (NP (CD 2006)) (CC or) (ADVP (ADVP (RB even) (RB before)) (SBAR (IN that) (S (NP (EX there)) (VP (AUX is) (NP (NP (DT a) (ADJP (RB newly) (JJ self-confident)) (NNP Russia)) (, ,) (NP (NP (DT a) (NNP Russia)) (SBAR (WHNP (WDT that)) (S (VP (AUX is) (ADJP (JJ awash) (PP (IN in) (NP (NNS petrodollars)))))))) (CC and) (NP (NP (DT a) (NNP Russia)) (SBAR (WHNP (WDT that)) (S (ADVP (RB really)) (VP (VBZ feels) (SBAR (S (NP (PRP it)) (VP (MD can) (VP (VP (VB say) (ADVP (RB no))) (CC and) (VP (VB pursue) (NP (PRP$ its) (JJ own) (NNS interests)))))))))))))))))))))))))) (. .) ('' '')))
(S1 (S (S (NP (NNP ROSNEFT)) (VP (VBZ BUYS) (NP (NNP YUKOS) (NNS ASSETS)))) (: --) (S (NP (NP (NNP Rosneft)) (, ,) (NP (DT the) (NNP Russian) (NN state) (NN oil) (NN company)) (, ,)) (VP (VBD won) (NP (DT an) (NN auction)) (PP (IN for) (NP (NP (NNS assets)) (PP (IN of) (NP (DT the) (JJ bankrupt) (NN company) (NNS Yukos))))) (, ,) (S (ADVP (RB further)) (VP (VBG tightening) (NP (NP (NP (DT the) (NNP Kremlin) (POS 's)) (NN control)) (PP (IN of) (NP (NN energy) (NNS industries)))) (PP (IN in) (NP (NNP Russia))))))) (. .)))
(S1 (FRAG (NP (NP (NP (CD 10) (NN P.M.)) (PRN (-LRB- -LRB-) (NP (NN History) (NNP Channel)) (-RRB- -RRB-)) (NP (DT THE) (NNS STATES) (NN Crash) (NN course))) (NP (NNP No.) (CD 3))) (: :) (NP (NP (NNP New) (NNP York)) (SBAR (IN as) (S (NP (PRP it)) (VP (VBD evolved) (PP (IN from) (NP (NP (DT the) (JJ Dutch) (NN settlement)) (PP (IN of) (NP (NNP New) (NNP Amsterdam)))) (NP (NP (DT the) (NN origin)) (PP (IN of) (NP (NP (NNP Cajun) (NN culture)) (PP (IN in) (NP (NP (NNP Louisiana)) (NP (DT the) (NNP Oregon) (NNP Trail)) (NP (NP (NP (DT the) (NN life)) (PP (IN of) (NP (NP (NNP Billy) (DT the) (NNP Kid)) (PP (IN in) (NP (NNP New) (NNP Mexico)))))) (CC and) (NP (NP (DT a) (NN taste)) (PP (IN of) (NP (NP (NP (NNP Ben) (CC &) (NNP Jerry) (POS 's)) (NN ice) (NN cream)) (PP (IN in) (NP (NNP Vermont))))))))))))))))) (. .)))
(S1 (S (S (NP (PRP I)) (VP (AUX am) (ADVP (RB here)) (S (VP (TO to) (VP (VB support) (NP (PRP you)) (DT all) (PP (IN against) (NP (NNP AIDS)))))))) (, ,) ('' '') (NP (PRP he)) (VP (VBD told) (NP (NP (DT the) (NN crowd)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD included) (NP (NP (NNP President) (NNP Viktor) (NNP Yushchenko)) (, ,) (NP (NP (NNP Ukraine) (POS 's)) (JJ former) (NN leader) (NNP Leonid) (NNP Kuchma)) (, ,) (NP (DT the) (NNP Russian) (NN envoy) (NNP Viktor) (NNP Chernomyrdin)) (CC and) (NP (JJ top) (NN government) (NNS officials)))))))) (. .)))
(S1 (S (NP (NP (NNP Ms.) (NNP Gottemoeller)) (, ,) (NP (DT an) (NNP American)) (, ,)) (VP (VBD told) (NP (PRP me)) (SBAR (S (NP (PRP she)) (VP (VP (ADVP (RB recently)) (VBD visited) (NP (NP (NNP Ulyanovsk)) (, ,) (NP (NP (NNP Lenin) (POS 's)) (NN birthplace)) (, ,)) (PP (IN in) (NP (NP (DT the) (NN heart)) (PP (IN of) (NP (NP (NNP Russia) (POS 's)) (VBG aging) (JJ industrial) (NN rust) (NN belt)))))) (, ,) (CC and) (VP (VBD went) (PRT (RP out)) (PP (TO to) (NP (NN dinner))) (PP (IN with) (NP (NP (CD three) (JJ Russian) (NNS couples)) (, ,) (NP (DT all) (JJ new) (NNS entrepreneurs))))))))) (. .) ('' '')))
(S1 (S (ADVP (RB Still)) (, ,) (PP (IN in) (NP (NP (DT the) (JJ strategic) (NN game)) (PP (IN of) (NP (NP (JJ energy-pipeline) (NNS placements)) (PP (IN in) (NP (NP (NNP Europe)) (CC and) (NP (NNP Asia)))) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (NP (NNP European) (NNS nations)) (CC and) (NP (DT the) (NNP United) (NNPS States))) (VP (AUX are) (VP (VBG trying) (S (VP (TO to) (VP (VB increase) (NP (NN oil) (NNS exports)) (SBAR (IN while) (S (VP (VBG creating) (NP (NP (NP (NNS routes)) (SBAR (WHNP (WDT that)) (S (VP (VB loosen) (NP (NP (NP (NNP Russia) (POS 's)) (NN grip)) (PP (IN on) (NP (DT the) (NN trade)))))))) (, ,) (NP (NP (DT a) (NN kind)) (PP (IN of) (NP (NP (JJ slow-motion) (NN chess)) (VP (ADVP (RB already)) (VBG spanning) (NP (DT a) (NN decade))))))))))))))))))))) (, ,) (NP (NP (DT a) (JJ Russian) (NN hand)) (PP (IN on) (NP (DT the) (JJ new) (NN pipeline)))) (VP (AUX is) (VP (VBN seen) (PP (IN as) (NP (NP (DT a) (JJ mixed) (NN blessing)) (PP (IN for) (NP (NNP Europe))))))) (. .)))
(S1 (FRAG (NP (NN Correction)) (: :) (NP (NNP May) (CD 3) (, ,) (CD 2007) (, ,) (NP (NNP Thursday))) (NP (NP (DT An) (NN article)) (NP (JJ last) (NNP Thursday)) (PP (IN about) (NP (NP (DT the) (NN burial)) (PP (IN of) (NP (NP (NNP Boris) (NNP N.) (NNP Yeltsin)) (, ,) (NP (NP (NNP Russia) (POS 's)) (JJ first) (ADJP (RB democratically) (VBN elected)) (NN president)) (, ,))) (PP (IN at) (NP (NP (NNP Novodevichy) (NNP Cemetery)) (, ,) (VP (ADVP (RB erroneously)) (VBN included) (NP (NP (DT a) (NN writer)) (PP (IN among) (NP (NP (JJ other) (JJ Russian) (NNS notables)) (VP (VBN interred) (ADVP (RB there)))))))))))) (. .)))
(S1 (S (NP (NNP A8) (NNP Russia) (NNP Copter) (NN Crash)) (VP (VBZ Kills) (NP (CD 18)) (SBAR (S (NP (DT A) (JJ Russian) (JJ military) (NN helicopter)) (VP (VBD crashed) (PP (IN in) (NP (NNP Chechnya))) (, ,) (S (VP (VBG killing) (ADVP (DT all) (IN aboard))))))) (, ,) (PP (VBG according) (PP (TO to) (NP (NNP Russian) (NN news) (NNS agencies))))) (. .)))
(S1 (SINV (S (PP (IN For) (NP (NP (DT that) (NN kind)) (PP (IN of) (NP (NN cooperation))))) (, ,) (S (VP (TO to) (VP (AUX be) (VP (VBN treated) (ADVP (RB seriously)) (PP (IN by) (NP (NP (DT the) (NNP United) (NNPS States)) (CC and) (NP (NNP NATO)))))))) (, ,) (NP (PRP they)) (VP (MD would) (VP (AUX have) (S (VP (TO to) (VP (AUX have) (NP (NP (JJR more) (NN trust)) (SBAR (IN than) (S (NP (NNS people)) (ADVP (RB really)) (VP (AUX do) (ADVP (RB now)) (PP (IN toward) (NP (DT the) (JJ Russian) (NN military))))))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Stephen) (NNP Sestanovich)) (, ,) (NP (NP (DT an) (NN expert)) (PP (IN on) (NP (NNP Russia))) (PP (IN at) (NP (NP (DT the) (NNP Council)) (PP (IN on) (NP (NNP Foreign) (NNP Relations))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT The) (JJ Orthodox) (NNP Church) (POS 's)) (NN resurrection)) (PP (IN in) (NP (JJ Russian) (NN society))) (VP (AUX is) (ADVP (RB now)) (VP (ADVP (RB firmly)) (VBN established) (, ,) (SBAR (S (CC but) (NP (NP (DT the) (JJ striking) (NN tableau)) (PP (IN of) (NP (NP (NNP Mr.) (NNP Yeltsin) (POS 's)) (NN coffin)))) (, ,) (S (VP (VP (VBN draped) (PP (IN in) (NP (DT the) (NNP Russian) (NN tricolor)))) (, ,) (VP (VBN accompanied) (PP (IN by) (NP (DT a) (JJ military) (NN honor) (NN guard)))) (CC and) (VP (VBD presided) (PRT (RP over)) (PP (IN by) (NP (JJ bearded) (NNS priests)))))) (, ,) (VP (VBN embodied) (NP (NP (NNS symbols)) (PP (IN of) (NP (NP (DT a) (JJ new) (NNP Russia)) (PRN (: --) (NP (NN state) (, ,) (JJ military) (CC and) (NN church)) (: --))))) (PP (ADVP (RB very) (RB much)) (IN like) (NP (NP (DT the) (NNP Russia)) (PP (IN of) (NP (JJ old)))))))))) (. .) ('' '')))
(S1 (S (S (NP (NP (NNS Supplies)) (PP (IN of) (NP (NP (JJ Russian) (JJ crude) (NN oil)) (VP (VBN headed) (PP (TO to) (NP (JJ European) (NNS markets))))))) (VP (VBD came) (PP (TO to) (NP (DT a) (NN halt))) (ADVP (RB overnight)))) (, ,) (NP (NNS officials)) (VP (VBD said) (NP (NNP Monday)) (, ,) (PP (IN in) (NP (NP (DT the) (JJS latest) (NN manifestation)) (PP (IN of) (NP (NP (ADJP (RB rapidly) (VBG deteriorating)) (NNS relations)) (PP (IN between) (NP (NNP Russia) (CC and) (NNP Belarus)))))))) (. .)))
(S1 (S (S (NP (NP (PRP$ His) (NNS parents)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD spoke) (ADJP (JJ Russian) (CC and) (JJ Yiddish)) (PP (TO to) (NP (DT each) (JJ other)))))) (, ,)) (VP (VBD emigrated) (PP (IN from) (NP (NP (NNP Ukraine)) (PRN (-LRB- -LRB-) (RB then) (NP (NP (NN part)) (PP (IN of) (NP (NNP Russia)))) (-RRB- -RRB-)))) (PP (IN in) (NP (CD 1905))))) (, ,) (CC and) (S (NP (PRP$ his) (CD four) (JJR older) (NNS siblings)) (VP (AUX were) (VP (VBN born) (ADVP (RB there))))) (. .)))
(S1 (S (SBAR (WHNP (WP What)) (S (VP (VBD followed)))) (VP (AUX was) (SBAR (WHNP (WP what)) (S (NP (DT some)) (ADVP (RB here)) (VP (VP (VB describe) (PP (IN as) (NP (NP (DT the) (JJ first) (NN war)) (PP (IN in) (NP (NN cyberspace)))))) (, ,) (NP (NP (DT a) (JJ monthlong) (NN campaign)) (SBAR (WHNP (WDT that)) (S (VP (AUX has) (VP (VBN forced) (S (NP (JJ Estonian) (NNS authorities)) (VP (TO to) (VP (VB defend) (NP (PRP$ their) (JJ pint-size) (NNP Baltic) (NN nation)) (PP (IN from) (NP (NP (DT a) (NNS data) (NN flood)) (SBAR (WHNP (IN that)) (S (NP (PRP they)) (VP (VBP say) (SBAR (S (VP (AUX was) (VP (VBN set) (PRT (RP off)) (PP (IN by) (NP (NP (NP (NNS orders)) (PP (IN from) (NP (NNP Russia)))) (CC or) (NP (NP (JJ ethnic) (NNP Russian) (NNS sources)) (PP (IN in) (NP (NP (NN retaliation)) (PP (IN for) (NP (NP (DT the) (NN removal)) (PP (IN of) (NP (DT the) (NN statue))))))))))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (NP (CD 8) (NN P.M.)) (PRN (-LRB- -LRB-) (NP (NNP Fox)) (-RRB- -RRB-)) (NP (NNP AMERICAN) (NNP IDOL))) (: --) (NP (NP (NNP Southern) (NN discomfort)) (SBAR (IN as) (S (NP (NNP Week) (CD 3) (NNS auditions)) (VP (VBP begin) (PP (IN in) (NP (NP (NAC (NNP Birmingham) (, ,) (NNP Ala.) (CD 9)) (NN P.M.)) (PRN (-LRB- -LRB-) (NP (CD 13)) (-RRB- -RRB-)))) (NP (NP (DT THE) (NN CELL) (JJ NEXT) (NN DOOR)) (: --) (NP (NP (JJ Last) (NN summer)) (, ,) (NP (NP (CD 18) (JJ young) (NNS men)) (PP (IN in) (NP (NNP Toronto)))) (CC and) (NP (NP (CD two)) (PP (IN in) (NP (NNP Atlanta)))))))))) (: --) (NP (NP (JJS most)) (PP (IN of) (SBAR (WHNP (WP whom)) (S (VP (AUX had) (VP (VBN grown) (PRT (RP up)) (PP (IN in) (NP (NP (JJ moderate) (, ,) (JJ middle-class) (NNS homes)) (PP (IN in) (NP (NP (NNP Canada)) (CC and) (NP (DT the) (NNP United) (NNPS States)))))))))))) (: --)) (VP (AUX were) (VP (VBN arrested) (PP (IN on) (NP (NN terrorism) (NNS charges))) (PP (IN after) (S (VP (AUXG being) (VP (VBN accused) (PP (IN of) (S (VP (VBG plotting) (S (VP (TO to) (VP (VP (VB blow) (PRT (RP up)) (NP (NP (NNS buildings)) (CC and) (NP (NP (JJ behead) (NNS members)) (PP (IN of) (NP (DT the) (NNP Canadian) (NN parliament)))))) (CC and) (VP (VBG attending) (NP (NP (DT a) (JJ terrortraining) (NN camp)) (PP (IN in) (NP (NNP Ontario))))))))))))))))) (. .)))
(S1 (S (NP (NNP Chrysler)) (VP (AUX is) (NP (NP (DT the) (ADJP (RBS most) (JJ important)) (NN customer)) (PP (IN of) (NP (NP (NNP Magna)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX is) (VP (VBN based) (ADVP (RB north) (PP (IN of) (NP (NNP Toronto)))) (PP (IN in) (NP (NP (NNP Aurora)) (, ,) (NP (NNP Ontario)))))))))))) (. .)))
(S1 (S (NP (JJ Last) (NN year)) (, ,) (NP (NP (CD 13) (NNP Muslim) (NNS men)) (CC and) (NP (CD five) (NNS youths))) (VP (AUX were) (VP (VBN arrested) (PP (IN in) (NP (DT the) (NNP Toronto) (NN area))) (PP (IN in) (NP (NP (NN connection)) (PP (IN with) (NP (DT a) (VBN suspected) (NN plot) (S (VP (TO to) (VP (VB attack) (NP (NP (JJ several) (NNS targets)) (PP (IN in) (NP (JJ southern) (NNP Ontario))))))))))))) (. .)))
(S1 (NP (NP (NNP PACELLA)) (: --) (NP (NP (NNP Bernard) (NNP L.) (, ,) (NNP M.D.) (NNP Born)) (PP (IN on) (NP (NP (NNP July) (CD 25) (, ,) (CD 1912)) (, ,) (NP (NP (NNP Toronto)) (, ,) (NP (NP (NNP Ontario)) (, ,) (NP (NNP Canada))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (DT the) (JJ highest-profile) (NN use)) (PP (IN of) (NP (DT the) (JJ anti-terror) (NNS laws))))) (, ,) (NP (CD 18) (NNS men)) (, ,) (S (NP (NP (JJS most)) (PP (IN of) (NP (PRP them)))) (ADJP (JJ young))) (, ,) (VP (AUX were) (VP (VP (VBN arrested) (NP (JJ last) (NN summer)) (PP (IN in) (NP (DT the) (NNP Toronto) (NN area)))) (CC and) (VP (VBN accused) (PP (IN of) (S (VP (VBG plotting) (S (VP (TO to) (VP (VB attack) (NP (NP (JJ several) (NN government) (NNS targets)) (PP (IN in) (NP (JJ southern) (NNP Ontario))) (, ,) (PP (VBG including) (NP (NP (DT the) (NNP Parliament) (NNS buildings)) (PP (IN in) (NP (NNP Ottawa))))))))))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Stronach)) (VP (VP (VBZ remains) (NP (NP (NNP Magna) (POS 's)) (NN chairman))) (CC and) (VP (PRN (, ,) (PP (IN along) (PP (IN with) (NP (NN family) (NNS members)))) (, ,)) (VBZ controls) (NP (NP (DT the) (NN voting) (NNS shares)) (PP (IN of) (NP (NP (DT the) (NN company)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX is) (VP (VBN based) (ADVP (RB north) (PP (IN of) (NP (NNP Toronto)))) (PP (IN in) (NP (NP (NNP Aurora)) (, ,) (NP (NNP Ontario))))))))))))) (. .)))
(S1 (S (NP (DT The) (JJ Canadian) (NN band)) (VP (AUX is) (PP (IN INTO) (NP (NP (NNP ETERNITY)) (, ,) (NP (NP (DT an) (JJ unpredictable) (NN group)) (PP (IN from) (NP (NP (NNP Regina)) (, ,) (NP (NNP Saskatchewan)) (, ,))) (SBAR (WHNP (WDT that)) (S (VP (VBZ jumps) (PP (PP (IN from) (NP (JJ warp-speed) (NNS riffs))) (PP (TO to) (NP (NN off-tempo) (NNS breaks))) (PP (TO to) (NP (NP (JJ old-fashioned) (VBG howling) (NNS refrains)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (MD should) (VP (VB inspire) (NP (NP (NN plenty)) (PP (IN of) (S (VP (VBG singing) (ADVP (RB along)) (PP (IN on) (NP (NNP Monday))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (NN Speculation)) (PP (IN about) (NP (NP (DT a) (JJ potential) (NN takeover)) (PP (IN of) (NP (NP (NNP Ipsco)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VP (AUX is) (VP (VBN based) (PP (IN in) (NP (NP (NNP Regina)) (, ,) (NP (NNP Saskatchewan)))))) (, ,) (CC but) (VP (AUX has) (NP (NP (NN executive) (NNS offices)) (PP (IN in) (NP (NP (NNP Lisle)) (, ,) (NP (NNP Ill.))))))))) (, ,)))))) (VP (VBD started) (PRT (RP over)) (ADVP (NP (DT a) (NN month)) (RB ago))) (. .)))
(S1 (S (NP (NN Menu)) (VP (AUX was) (VP (VBN founded) (PP (IN in) (NP (CD 1971))) (SBAR (WHADVP (WRB when)) (S (NP (NP (NNP Donald) (NNP B.) (NNP Green)) (, ,) (NP (NP (DT the) (NN company) (POS 's)) (JJ former) (NN chairman)) (, ,)) (VP (VBD bought) (NP (NP (DT a) (JJ pet) (NN food) (NN plant)) (PP (IN in) (NP (NP (DT the) (NNP Toronto) (NN suburb)) (PP (IN of) (NP (NP (NNP Mississauga)) (, ,) (NP (NNP Ontario)) (, ,)))))) (PP (IN from) (NP (NNP Quaker) (NNP Oats)))))))) (. .)))
(S1 (S (NP (NP (JJ Last) (NNP Saturday)) (, ,) (NP (NNP Jennifer) (NNP Dines)) (, ,) (NP (CD 35)) (, ,) (NP (PRP$ her) (NN husband)) (CC and) (NP (DT a) (NN friend))) (VP (VBD drove) (NP (NP (CD 45) (NNS minutes)) (PP (IN from) (NP (NP (NNP Oshawa)) (, ,) (NP (NNP Ontario)) (, ,)))) (PP (TO to) (NP (NP (DT the) (JJ inaugural) (NNP Crumpler) (NN sale)) (PP (IN at) (NP (NP (NNP Queen) (NNP Street) (NNP West)) (PP (IN in) (NP (NNP Toronto)))))))) (. .)))
(S1 (S (NP (NP (NNP Mr.) (NNP Anderson)) (, ,) (NP (DT a) (JJ native) (NNP New) (NNP Yorker)) (, ,)) (VP (VBD began) (NP (NP (PRP$ his) (NN career)) (PP (IN as) (NP (NP (DT a) (NN curator)) (PP (IN of) (NP (NP (UCP (JJ Greek) (CC and) (NNP Roman)) (NNS antiquities)) (PP (IN at) (NP (NP (DT the) (NNP Metropolitan) (NNP Museum)) (PP (IN of) (NP (NNP Art))) (PP (IN before) (NP (NP (NNS stints)) (PP (IN as) (NP (NP (NN director)) (PP (IN of) (NP (NP (DT the) (NNP Michael) (NNP C.) (NNP Carlos) (NNP Museum)) (PP (IN in) (NP (NP (NNP Atlanta)) (CC and) (NP (NP (DT the) (NNP Art) (NNP Gallery)) (PP (IN of) (NP (NNP Ontario))) (PP (IN in) (NP (NNP Toronto)))))))))))))))))))) (. .)))
(S1 (S (NP (NNP Joost)) (VP (AUX was) (VP (VBN founded) (NP (JJ last) (NN year)) (PP (IN by) (NP (NP (NNP Janus) (NNP Friis)) (CC and) (NP (NP (NNP Niklas) (NNP Zennstrom)) (, ,) (NP (NP (NNS creators)) (PP (IN of) (NP (DT the) (NNP Internet) (NN telephone) (NN company) (NNP Skype))))))))) (. .)))
(S1 (S (NP (NP (DT A) (NN founder)) (CC and) (NP (NP (NP (NNP YouTube) (POS 's)) (JJ chief) (NN executive)) (NP (NNP Chad) (NNP Hurley)))) (VP (VBD received) (NP (NP (NP (CD 694,087) (NNS shares)) (PP (IN of) (NP (NNP Google)))) (CC and) (NP (NP (DT an) (JJ additional) (CD 41,232)) (PP (IN in) (NP (DT a) (NN trust)))))) (. .)))
(S1 (SINV (S (NP (NNS Users)) (VP (MD will) (VP (AUX be) (ADJP (JJ able) (S (VP (TO to) (VP (VB integrate) (NP (JJ full) (JJ video) (NNS files)) (PP (IN in) (NP (DT the) (VBG coming) (NNS months)))))))))) (, ,) (VP (VBD said)) (NP (NP (NNP Mr.) (NNP McCann)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD caught) (NP (DT the) (NN video) (NN bug)) (PP (IN after) (NP (DT a) (NN conversation))) (NP (JJ last) (NN year)) (PP (IN with) (NP (NP (NNP Chad) (NNP Hurley)) (, ,) (NP (NP (CD one)) (PP (IN of) (NP (NP (NNP YouTube) (POS 's)) (NNS founders)))))))))) (. .)))
(S1 (S (NP (NP (DT The) (JJ chief) (NN executive)) (PP (IN of) (NP (NP (NNP Sirius) (NNP Satellite) (NNP Radio)) (, ,) (NP (NNP Mel) (NNP Karmazin)) (, ,)))) (VP (AUX is) (VP (VBG taking) (NP (DT the) (NN campaign)) (S (VP (TO to) (VP (VB sell) (NP (NP (NP (PRP$ his) (NN company) (POS 's)) (VBN proposed) (NN merger)) (PP (IN with) (NP (NNP XM) (NNP Satellite) (NNP Radio)))) (PP (TO to) (NP (NNP Washington)))))))) (. .)))
(S1 (S (NP (NP (NNP Pixar) (POS 's)) (NN founder)) (, ,) (NP (NP (NNP John) (NNP Lasseter)) (, ,) (CC and) (NP (PRP$ his) (JJ chief) (NN animator))) (VP (VBD spent) (SBAR (S (NP (NP (DT a) (NN research) (NN week)) (PP (IN in) (NP (NP (NNP Winslow)) (, ,) (CC and) (NP (NP (JJ several) ('' '') (NNPS Cars) ('' '') (NNS scenes)) (PRN (: --) (NP (NP (NP (DT a) (NN motel)) (PP (IN with) (NP (NP (NNS cabins)) (VP (VBN shaped) (PP (IN like) (NP (NNS tepees))))))) (, ,) (NP (NP (DT a) (JJ great) (JJ historic) (NN hotel)) (VP (VBN designed) (PP (IN like) (NP (DT a) (JJ Spanish) (NN hacienda)))))) (: --)))))) (VP (AUX were) (VP (VBN inspired) (PP (IN by) (NP (PRP$ their) (NN visit)))))))) (. .) ('' '')))
(S1 (SINV (S (NP (NP (DT The) (NN idea)) (PP (IN of) (NP (JJ recreational) (NN shopping)))) (VP (AUX is) (RB not) (ADJP (JJ new)))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Juliet) (NNP B.) (NNP Schor)) (, ,) (NP (NP (NP (DT a) (NN professor)) (PP (IN of) (NP (NN sociology))) (PP (IN at) (NP (NNP Boston) (NNP College)))) (CC and) (NP (NP (NN author)) (PP (IN of) ('' '') (NP (NNP Born))) (S (VP (TO to) (VP (VB Buy) (: :) (NP (NP (NP (DT The) (JJ Commercialized) (NN Child)) (CC and) (NP (DT the) (NNP New) (NNP Consumer) (NN Culture))) ('' '') (PRN (-LRB- -LRB-) (NP (NNP Scribner)) (-RRB- -RRB-))))))))) (. .) ('' '')))
(S1 (S (SBAR (IN As) (S (NP (PRP he)) (VP (VBD sought) (S (VP (TO to) (VP (VP (VB sell) (NP (NP (DT the) (VBN proposed) (NN merger)) (PP (IN of) (NP (NP (NNP Sirius) (NNP Satellite) (NNP Radio)) (CC and) (NP (NNP XM) (NNP Satellite) (NNP Radio))))) (PP (TO to) (NP (NNP Congress)))) (, ,) (CC and) (PP (IN by) (NP (NN extension))) (PP (TO to) (NP (NP (NNS regulators)) (PP (IN like) (NP (NNP Mr.) (NNP Martin))))))))))) (, ,) (NP (NP (NNP Mel) (NNP Karmazin)) (, ,) (NP (NP (DT the) (JJ chief) (NN executive)) (PP (IN of) (NP (NNP Sirius)))) (, ,)) (VP (VBD vowed) (NP (JJ last) (NNP Wednesday)) (SBAR (SBAR (IN that) (S (NP (NNS prices)) (VP (MD would) (RB not) (VP (AUX be) (VP (VBN raised)))))) (CC and) (SBAR (IN that) (S (NP (NNS listeners)) (VP (MD would) (VP (VB benefit) (ADVP (RB enormously)) (PP (IN by) (S (VP (VBG getting) (NP (NP (DT the) (JJS best) (NN programming)) (PP (IN from) (NP (DT both) (NNS companies))))))))))))) (. .)))
(S1 (S (S (VP (VBG Writing) (PP (IN on) (NP (DT the) (NNP Google) (NN blog))))) (, ,) (NP (NP (NNP Matt) (NNP Cutts)) (, ,) (NP (NP (DT the) (NN head)) (PP (IN of) (NP (NP (DT the) (NNP Google) (POS 's)) (NNP Webspam) (NN team)))) (, ,)) (VP (VBD said) (SBAR (IN that) (S (NP (NNP Google) (NNS bombs)) (VP (AUX had) (ADVP (RB not) ('' '')) (VP (AUX been) (NP (DT a) (ADJP (RB very) (JJ high)) (NN priority)) (PP (IN for) (NP (PRP us)))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP David) (NNP Eun)) (, ,) (NP (NP (NP (NNP Google) (POS 's)) (NN vice) (NN president)) (PP (IN for) (NP (NN content) (NNS partnerships)))) (, ,)) (VP (VBD said) (SBAR (IN that) (S (PP (RB rather) (IN than) (NP (NP (NN dwell)) (PP (IN on) (SBAR (WHNP (WP what)) (S (VP (AUX is) (VP (AUXG being) (VP (VBN left) (PRT (RP behind)))))))))) (, ,) (NP (PRP he)) (VP (VBD preferred) (S (VP (TO to) (VP (VB take) (NP (DT a) (ADJP (RBR more) (JJ optimistic)) (NN view))))))))) (. .) ('' '')))
(S1 (SINV (S (NP (PRP It)) (VP (AUX 's) (NP (NN business)) (PP (IN as) (ADJP (JJ usual))) (PP (IN for) (NP (PRP us))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Jeffrey) (NNP A.) (NNP Citron)) (, ,) (ADVP (RB above)) (, ,) (NP (NP (NP (NNP Vonage) (POS 's)) (NN chairman)) (CC and) (NP (JJ interim) (JJ chief) (NN executive)))) (. .)))
(S1 (S (SBAR (IN As) (S (NP (NP (NNP Amory) (NNPS Lovins)) (PP (IN of) (NP (NP (DT the) (NNP Rocky) (NNP Mountain) (NNP Institute)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX has) (VP (AUX been) (VP (VBG working) (PP (IN with) (NP (DT the) (NNP Pentagon)))))))) (, ,)))) (VP (VBD put) (NP (PRP it)) (PP (TO to) (NP (PRP me)))))) (: :) (NP (DT The) (NNP Iraq) (NN war)) (VP (VBD forced) (S (NP (DT the) (NNP U.S.) (NN military)) (VP (TO to) (VP (VB think) (ADVP (RB much) (RBR more) (RB seriously)) (PP (IN about) (SBAR (WHADVP (WRB how)) (S (VP (TO to) ('' '') (VP (VB eat) (NP (PRP$ its) (NN tail))) ('' '') (: --) (VP (TO to) (VP (VB shorten) (NP (PRP$ its) (NN energy) (NN supply) (NNS lines)) (PP (IN by) (S (VP (VBG becoming) (S (NP (JJR more) (NN energy)) (ADJP (JJ efficient)))))))))))))))) (. .)))
(S1 (SINV (S (NP (PRP We)) (VP (AUX 're) (ADJP (JJ confident) (SBAR (S (NP (PRP we)) (VP (AUX 're) (VP (VBG providing) (NP (NP (DT a) (JJ new) (NN outlet)) (PP (IN for) (NP (PRP them)))) (PP (IN for) (NP (NN distribution)))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Chad) (NNP Hurley)) (, ,) (NP (NP (JJ chief) (NN executive)) (CC and) (NP (NP (NN co-founder)) (PP (IN of) (NP (NP (NNP YouTube)) (, ,) (NP (NP (DT a) (NN division)) (PP (IN of) (NP (NNP Google))))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT A) (NN founder)) (CC and) (NP (NP (NP (NNP YouTube) (POS 's)) (JJ chief) (NN executive)) (NP (NNP Chad) (NNP Hurley)))) (VP (VBD received) (NP (NP (NP (CD 694,087) (NNS shares)) (PP (IN of) (NP (NNP Google)))) (CC and) (NP (NP (DT an) (JJ additional) (CD 41,232)) (PP (IN in) (NP (DT a) (NN trust)))))) (. .)))
(S1 (S (ADVP (NP (QP (RB Only) (CD 18)) (NNS months)) (RB ago)) (, ,) (NP (NP (NNP Alessandro) (NNP Profumo)) (, ,) (NP (NP (NNP UniCredit) (POS 's)) (JJ chief) (NN executive)) (, ,)) (VP (VBD agreed) (S (VP (TO to) (VP (VB spend) (NP (QP ($ $) (CD 21) (CD billion))) (PP (IN for) (NP (NP (NP (DT the) (NNP HVB) (NNP Group)) (PP (IN of) (NP (NNP Germany)))) (, ,) (NP (NP (DT an) (NN acquisition)) (SBAR (WHNP (WDT that)) (S (VP (VBD gave) (NP (NP (JJ UniCredit) (NN access)) (PP (TO to) (NP (NP (DT the) (JJR faster-growing) (NNS markets)) (PP (IN of) (NP (NNP Eastern) (NNP Europe)))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Citigroup)) (, ,) (NP (DT the) (JJ financial) (NNS services) (NN giant)) (, ,)) (VP (AUX has) (VP (VBN spent) (NP (NNS months)) (S (VP (VBG courting) (NP (NP (DT the) (NN executive)) (, ,) (NP (NNP Vikram) (NNP Pandit)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD left) (NP (NNP Morgan) (NNP Stanley)) (PP (IN in) (NP (CD 2005))) (SBAR (IN after) (S (NP (PRP he)) (VP (AUX was) (VP (VBN blocked) (PP (IN for) (NP (NP (DT a) (NN chance)) (PP (IN at) (S (VP (VBG running) (NP (DT the) (NN investment) (NN bank))))))))))))))))))) (. .)))
(S1 (S (NP (CD 11) (NN P.M.) (PRN (-LRB- -LRB-) (NP (CD 13)) (-RRB- -RRB-)) (NNP CHARLIE)) (VP (VBD ROSE) (: --) (SBAR (S (NP (NNP Mr.) (NNP Rose)) (VP (VBZ talks) (PP (IN with) (NP (NP (NNP Warren) (NNP Buffett)) (, ,) (NP (NP (JJ chief) (NN executive)) (PP (IN of) (NP (NNP Berkshire) (NNP Hathaway)))))))))) (. .)))
(S1 (S (S (PP (IN Along) (PP (IN with) (NP (DT the) (NNS deals) (CC and) (NN intrigue)))) (, ,) (NP (NNP Mr.) (NNP Cohan)) (VP (VBZ spends) (NP (JJ considerable) (NN time)) (PP (IN on) (NP (JJ human) (NNS foibles))))) (, ,) (CC and) (S (S (VP (VBG recycling) (NP (NP (NNS rumors)) (PP (IN of) (NP (NP (DT a) (JJ sexual) (NN assignation)) (VP (VBG involving) (NP (NNP Mr.) (NNP Rohatyn)) (PP (IN in) (NP (PRP$ his) (NN office))))))))) (, ,) (NP (NP (NNP Mr.) (NNP Rattner) (POS 's)) (JJ real) (NN estate)) (VP (VBZ maneuverings) (PP (IN in) (NP (NP (NP (NNP Martha) (POS 's)) (NNP Vineyard)) (CONJP (RB as) (RB well) (IN as)) (NP (NP (DT the) (NN tax) (NNS strategies)) (PP (IN of) (NP (NP (DT the) (JJ current) (NNP Lazard) (NN chief) (NN executive)) (, ,) (NP (NNP Bruce) (NNP Wasserstein))))))))) (. .)))
(S1 (S (NP (DT The) (NNP NBC) (NNP News) (NNP anchor) (NNP Brian) (NNP Williams)) (VP (VBD arrived) (PP (IN in) (NP (NNP Baghdad))) (S (NP (NN yesterday)) (, ,) (NP (DT the) (JJ first) (NN network) (NN news)) (VP (VB anchor) (S (VP (TO to) (VP (VB travel) (PP (TO to) (NP (NNP Baghdad))) (SBAR (IN since) (S (NP (NP (NNP Bob) (NNP Woodruff)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (ADVP (RB then)) (NP (NP (DT the) (NN co-anchor)) (PP (IN of) (NP (NNP ABC) (NNP News))))))) (, ,)) (VP (AUX was) (ADVP (RB severely)) (VP (VBN injured) (PP (IN by) (NP (NP (DT a) (JJ roadside) (NN bomb)) (PP (IN in) (NP (NNP January) (CD 2006))))))))))))))) (. .)))
(S1 (S (S (VP (VBG Speaking) (PP (IN at) (NP (NP (DT the) (JJ annual) (NN shareholder) (NN meeting)) (PP (IN on) (NP (NNP Thursday))))))) (, ,) (NP (NP (NNP Eric) (NNP E.) (NNP Schmidt)) (, ,) (NP (DT the) (JJ chief) (NN executive)) (, ,)) (VP (VBD said) (SBAR (S (NP (NP (NP (NNP Google) (POS 's)) (JJ long) (NN array)) (PP (IN of) (NP (NNS initiatives)))) (VP (AUX was) (VP (VBN organized) (PP (IN around) (NP (CD three) (NNS ideas)))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Brett) (NNP Keller)) (, ,) (NP (NP (JJ chief) (NN marketing) (NN officer)) (PP (IN at) (NP (NNP Priceline.com)))) (, ,)) (VP (VBD said) (SBAR (S (NP (NNP Mr.) (NNP Shatner)) (VP (AUX was) (VP (VBN chosen) (PP (IN in) (NP (CD 1997))) (SBAR (IN because) (S (S (NP (PRP it)) (VP (AUX was) (NP (NP (DT the) (NN dawn)) (PP (IN of) (NP (NP (DT the) (JJ online) (NN era)) (CC and) (NP (NP (DT the) (NN actor)) (, ,) (VP (ADVP (RB best)) (VBN known) (PP (IN for) (NP (NP (PRP$ his) ('' '') (NNP Star) (NNP Trek) ('' '') (NN role)) (PP (IN as) (NP (NN Captain) (NNP James) (NNP T.) (NNP Kirk)))))) (, ,) ('' '') (VP (VBN stood) (PP (IN for) (NP (DT the) (NN future)))))))))) (, ,) (CC and) (S (NP (PRP we)) (VP (AUX were) (NP (DT a) (JJ futuristic) (NN brand))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Craig) (NNP Claiborne)) (, ,) (NP (NP (DT a) (NNP Mississippi) (NN native)) (SBAR (WHNP (WP who)) (S (VP (AUX was) (NP (NP (DT a) (NN food) (NN editor) (CC and) (NN restaurant) (NN critic)) (PP (IN for) (NP (DT The) (NNP New) (NNP York) (NNP Times)))))))) (, ,)) (VP (VBD included) (NP (NP (DT a) (JJ red) (NN velvet) (NN recipe)) (PP (IN with) (NP (NP (DT no) (NN cocoa)) (PP (IN in) ('' '') (NP (NP (NNP Craig) (NNP Claiborne) (POS 's)) (NNP Southern) (NN Cooking))) ('' '') (PRN (-LRB- -LRB-) (NP (NNP Times) (NNP Books)) (, ,) (NP (CD 1987)) (-RRB- -RRB-)))))) (. .)))
(S1 (S (NP (NP (NP (NNP Bob) (NNP Woodruff)) (CC and) (NP (NNP Martha) (NNP Raddatz))) (, ,) (NP (NP (DT both)) (PP (IN of) (NP (NNP ABC) (NNP News)))) (, ,)) (VP (AUX have) (VP (NNS stories) (S (VP (TO to) (VP (VB tell) (PP (IN about) (NP (NP (JJ devastating) (NN carnage)) (PP (IN in) (NP (NNP Iraq)))))))))) (. .)))
(S1 (S (NP (NP (NNP Muhammad) (NNP Yunus)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD won) (NP (DT the) (NNP Nobel) (NNP Peace) (NNP Prize)) (NP (JJ last) (NN year))))) (, ,)) (VP (VBD demonstrated) (PP (IN with) (NP (NNP Grameen) (NNP Bank))) (NP (NP (DT the) (NN power)) (PP (IN of) (NP (NN microfinancing))))) (. .)))
(S1 (S (S (NP (NNP Jerome) (NNPS Robbins)) (VP (VBD choreographed) (NP (NP (CD two)) (PP (IN of) (NP (PRP$ his) (JJ late) (NNS ballets)))) (PP (TO to) (NP (NNP Bach))) (PP (IN in) (NP (NP (DT the) (JJ first) (JJ few) (NNS months)) (PP (IN of) (NP (CD 1994))))))) (, ,) (CC and) (S (NP (DT both)) (VP (AUX were) (PP (IN on) (NP (NP (DT the) (JJ third) (VBN themed) (NN program)) (PP (IN of) (NP (NP (DT the) (NNP New) (NNP York) (NNP City) (NNP Ballet) (POS 's)) (NN winter) (NN season))))) (, ,) ('' '') (NP (NP (NNP Jerome) (NNPS Robbins)) (: :) (NP (DT An) (JJ American) (NN Icon))))) (. .) ('' '')))
(S1 (S (PP (IN Except) (PP (IN for) (NP (NNS sociopaths)))) (, ,) (NP (NNS humans)) (VP (AUX are) (VP (VBN built) (S (VP (TO to) (VP (VB feel) (CC and) (VB act) (PP (IN out) (PP (IN of) (NP (NP (NN empathy)) (, ,) (VP (VBD said) (NP (NP (NNP Stephen) (NNP G.) (NNP Post)) (, ,) (NP (NP (NP (DT a) (NN professor)) (PP (IN of) (NP (NNS bioethics))) (PP (IN at) (NP (NP (NNP Case) (NNP Western) (NNP Reserve) (NNP University) (POS 's)) (JJ medical) (NN school)))) (CC and) (NP (NP (NN co-author)) (PP (IN of) ('' '') (SBAR (WHADVP (WRB Why)) (S (NP (JJ Good) (NNS Things)) (VP (VBP Happen) (PP (TO to) (NP (JJ Good) (NNS People))))))))))) (, ,) ('' '') (VP (VBN scheduled) (S (VP (TO to) (VP (AUX be) (VP (VBN published) (PP (IN in) (NP (NNP May)))))))))))))))) (. .)))
(S1 (S (NP (DT Another) (NN case)) (VP (VBD arose) (SBAR (WHADVP (WRB when)) (S (NP (NP (NNP George) (NNP Stephanopoulos)) (PP (IN of) (NP (NNP ABC) (NNP News)))) (VP (VBD asked) (NP (NNP Mr.) (NNP Romney)) (PP (IN about) (NP (DT a) (NNP Mormon) (NN teaching) (SBAR (IN that) (S (NP (NNP Jesus)) (VP (MD will) (VP (VB come) (PP (TO to) (NP (DT the) (NNP United) (NNPS States))) (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (VP (VBZ returns) (PP (TO to) (NP (NN reign))) (PP (IN on) (NP (NN earth)))))))))))))))) (. .)))
(S1 (SINV (S (NP (DT That)) (VP (AUX 's) (NP (DT the) (JJ general) (NN idea)))) (, ,) (VP (VBD said)) (NP (NP (NNP Ian) (NNP Bogost)) (, ,) (NP (NP (NP (DT an) (JJ assistant) (NN professor)) (PP (IN of) (NP (NP (JJ video) (NN game) (NN criticism)) (CC and) (NP (NP (JJ video) (NN game) (NN rhetoric)) (PRN (-LRB- -LRB-) (VP (VB bet) (S (NP (PRP you)) (VP (AUX did) (RB n't) (VP (VB know) (S (NP (EX there)) (VP (AUX was) (NP (PDT such) (DT a) (NN discipline)))))))) (-RRB- -RRB-))))) (PP (IN at) (NP (NP (DT the) (NNP Georgia) (NNP Institute)) (PP (IN of) (NP (NNP Technology)))))) (CC and) (NP (NP (DT a) (VBG founding) (NN partner)) (PP (IN of) (NP (NP (NNP Persuasive) (NNPS Games)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX is) (VP (VBN based) (PP (IN in) (NP (NNP Atlanta)))))))))))) (. .)))
(S1 (SINV (S (NP (NN Today)) (, ,) (NP (NNS customers)) (VP (MD will) (VP (AUX be) (ADJP (JJ able) (S (VP (TO to) (VP (VB touch) (CC and) (VB feel) (NP (NP (DT the) (JJ vast) (NN array)) (PP (IN of) (NP (NP (NP (NNP AT&T) (POS 's)) (JJ full) (NN suite)) (PP (IN of) (NP (NNS services)))))) (PP (IN under) (NP (CD one) (NN roof))) (PP (IN for) (NP (DT the) (JJ first) (NN time)))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Ralph) (FW de) (FW la) (NNP Vega)) (, ,) (NP (NP (NN group) (NN president)) (PP (IN of) (NP (NP (NNP AT&T) (POS 's)) (JJ regional) (JJ wire-line) (NNS operations)))) (, ,) (VP (VBN based) (PP (IN in) (NP (NNP Atlanta))))) (. .)))
(S1 (S (ADVP (RB Similarly)) (, ,) (NP (NP (NNS producers)) (PP (IN for) (NP (NP (NNP Adam) (NNP Carolla)) (, ,) (NP (NP (DT the) (NNP Los) (NNP Angeles) (NN morning) (NN host)) (SBAR (WHNP (WP$ whose) (NN program)) (S (VP (AUX is) (VP (VBN carried) (PP (IN on) (NP (JJ many) (NNP CBS) (NNP Radio) (NNS stations)))))))) (, ,)))) (ADVP (RB regularly)) (VP (VB record) (NP (NP (NP (JJ vérité) (NNS clips)) (VP (VBG featuring) (NP (NNP Mr.) (NNP Carolla)))) (CC and) (NP (NP (DT a) (VB co-host)) (, ,) (NP (NNP Danny) (NNP Bonaduce)) (, ,))) (PP (IN for) (S (VP (VBG posting) (PP (IN on) (NP (DT the) (NNP Web))))))) (. .)))
(S1 (S (PP (IN For) (NP (JJ many) (NNS years))) (, ,) (NP (NP (DT the) (JJ only) (NN business) (NNS leaders)) (VP (ADVP (RB openly)) (VBG calling) (PP (IN for) (NP (JJ universal) (NN coverage))))) (VP (AUX were) (NP (NP (NNS mavericks)) (PP (IN like) (NP (NP (NNP Howard) (NNP Schultz)) (, ,) (NP (NP (DT the) (NN chairman)) (PP (IN of) (NP (NNP Starbucks)))) (, ,))) (SBAR (WHNP (WP who)) (S (VP (AUX has) (ADVP (RB long)) (VP (VBN preached) (NP (DT the) (NN need) (SBAR (IN for) (S (NP (NN business)) (VP (TO to) (VP (VB show) (NP (JJR greater) (JJ social) (NN responsibility))))))))))))) (. .)))
(S1 (S (NP (NP (CD Four) (JJ other) (NNP Google) (NNS executives)) (PRN (: --) (NP (NP (DT the) (JJ chief) (JJ financial) (NN officer)) (, ,) (NP (NP (NNP George) (NNP Reyes)) (NP (NP (DT the) (JJ senior) (NN vice) (NN president)) (PP (IN for) (NP (NP (NN business) (NNS operations)) (, ,) (NP (NP (NP (NNP Shona) (NNP Brown)) (NP (DT the) (JJ chief) (JJ legal) (NN officer))) (, ,) (NP (NNP David) (NNP Drummond)) (CC and) (NP (NP (NP (DT the) (JJ senior) (NN vice) (NN president)) (PP (IN for) (NP (NN product) (NN management)))) (, ,) (NP (NNP Jonathan) (NNP Rosenberg))))))))) (: --))) (VP (VBD earned) (NP (NP (NNS salaries)) (PP (IN of) (NP (NP ($ $) (CD 250,000)) (NP (DT each)))))) (. .)))
(S1 (S (PP (IN For) (NP (NN example))) (, ,) (NP (NNP Mr.) (NNP Ballmer)) (VP (VP (VBD opened) (NP (NP (NN settlement) (NNS talks)) (PP (IN over) (NP (NP (DT a) (NN round)) (PP (IN of) (NP (NN golf))) (PP (IN in) (NP (NNP California))))) (PP (IN with) (NP (NP (NNP Scott) (NNP G.) (NNP McNealy)) (, ,) (NP (NP (NNP Sun) (NNPS Microsystems) (POS ')) (NN chairman)))))) (, ,) (CC and) (VP (VBD addressed) (NP (DT the) (NNP French) (NNP Senate)) (PP (IN in) (NP (JJ fluent) (NNP French))))) (. .)))
(S1 (S (ADVP (RB Recently)) (NP (DT the) (NNP manic)) (VP (VBZ cries) (SBAR (IN of) (S (NP (NP (NNP Jim) (NNP Cramer)) (, ,) (NP (DT the) (JJ financial) (NN commentator)) (, ,)) (VP (AUX had) (NP (NP (DT the) (NN effect)) (PP (IN of) (NP (NP (DT a) (NN lullaby)) (PP (IN on) (NP (NP (NNP Terry) (NNP J.) (NNP Lundgren)) (, ,) (NP (NP (DT the) (JJ chief) (NN executive)) (PP (IN of) (NP (NP (NNP Federated) (NNP Department) (NNPS Stores)) (, ,) (NP (NP (DT the) (NN parent) (NN company)) (PP (IN of) (NP (NNP Macy) (POS 's)))))))))))))))) (. .)))
(S1 (SINV (S (NP (DT The) (NNP Internet)) (VP (AUX is) (ADJP (RB very) (JJ effective)) (PP (IN for) (NP (PRP$ our) (NNS clients))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP David) (NNP Kenny)) (, ,) (NP (NP (JJ chief) (NN executive)) (PP (IN of) (NP (DT the) (JJ online) (NN marketing) (NN agency) (NNP Digitas))))) (. .)))
(S1 (S (S (S (NP (PRP We)) (VP (AUX 've) (VP (VBN studied) (NP (DT this)) (ADVP (RB closely))))) (, ,) (CC and) (S (NP (NP (PRP$ their) (NNS claims)) (, ,) (SBAR (IN as) (S (VP (VBN stated)))) (, ,)) (VP (AUX are) (RB not) (ADJP (JJ true))))) (, ,) ('' '') (NP (NP (NNP Eric) (NNP E.) (NNP Schmidt)) (, ,) (NP (NP (DT the) (JJ chief) (NN executive)) (PP (IN of) (NP (NNP Google)))) (, ,)) (VP (VBD said) (PP (IN in) (NP (DT an) (NN interview))) (NP (JJ last) (NN night))) (. .)))
(S1 (SINV (S (NP (DT This)) (VP (AUX is) (NP (NP (NP (DT the) (JJ first)) (PP (IN of) (NP (NP (JJ many) (NNS products)) (SBAR (WHNP (WDT that)) (S (VP (AUX are) (VP (VBG going) (S (VP (TO to) (VP (VB come) (PP (IN out) (PP (IN of) (NP (DT the) (NNP AT&T)))))))))))))) (: -) (NP (NNP BellSouth) (NN merger))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Ralph) (FW de) (FW la) (NNP Vega)) (, ,) (NP (NP (NN group) (NN president)) (PP (IN of) (NP (JJ regional) (JJ wireline) (NNS operations))) (PP (IN for) (NP (NP (NNP AT&T)) (, ,) (PP (IN of) (NP (NNP San) (NNP Antonio))))))) (. .)))
(S1 (S (S (NP (NNS Subscribers)) (MD will) ('' '') (VP (VBP receive) (NP (DT a) (JJR better) (NN product)) (, ,) (PP (IN with) (NP (ADJP (RBR more) (JJ content) (CC and) (JJR more)) (NNS features))))) (, ,) ('' '') (NP (NP (NNP Chase) (NNP Carey)) (, ,) (NP (NP (DT the) (NN president)) (PP (IN of) (NP (NNP DirecTV)))) (, ,)) (VP (VBD wrote) (PP (IN in) (NP (NP (DT a) (JJ seven-page) (NN letter)) (PP (TO to) (NP (DT the) (NNP Federal) (NNPS Communications) (NNP Commission)))))) (. .)))
(S1 (S (NP (NP (DT Another) (JJ presidential) (NN candidate)) (, ,) (NP (NP (NNP Rudolph) (NNP W.) (NNP Giuliani)) (, ,) (NP (DT a) (NNP Republican))) (, ,)) (VP (VBD sought) (NP (NNP Thursday)) (S (VP (TO to) (VP (ADVP (RB further)) (VB burnish) (NP (PRP$ his) (JJ national) (NN security) (NNS credentials)) (PP (IN by) (S (VP (VBG announcing) (NP (NP (PRP$ his) (NN endorsement)) (PP (IN by) (NP (NP (NNP Louis) (NNP J.) (NNP Freeh)) (, ,) (NP (NP (DT the) (NN director)) (PP (IN of) (NP (NP (DT the) (NNP Federal) (NNP Bureau)) (PP (IN of) (NP (NNP Investigation))) (VP (VBN appointed) (PP (IN by) (NP (NNP President) (NNP Bill) (NNP Clinton))))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Michael) (NNP J.) (NNP Critelli)) (, ,) (NP (NP (NN chairman)) (PP (IN of) (NP (NP (NNP Pitney) (NNP Bowes)) (, ,) (NP (DT the) (NN business) (NNS services) (NN company))))) (, ,)) (VP (VBZ says) (SBAR (S (NP (PRP he)) (VP (VBZ backs) (NP (NP (NNS changes)) (SBAR (WHNP (WDT that)) (S (VP (VB emphasize) (NP (JJ preventive) (NN medicine)))))))))) (. .) ('' '')))
(S1 (SINV (S (NP (PRP It)) (VP (AUX 's) (NP (NP (DT a) (ADJP (RB very) (JJ important)) (, ,) (JJ longer-term) (NN trend)) (PP (IN of) (NP (JJ incremental) (NN innovation)))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP David) (NNP B.) (NNP Yoffie)) (, ,) (NP (NP (DT a) (NN professor)) (PP (IN at) (NP (DT the) (NNP Harvard) (NNP Business) (NNP School))))) (. .)))
(S1 (S (PP (IN In) (NP (DT an) (NN effort) (S (VP (TO to) (VP (VB keep) (NP (PRP him)) (PP (IN at) (NP (NP (DT the) (NN bank)) (PP (IN after) (NP (DT the) (NNP Winterthur) (NN sale)))))))))) (, ,) (NP (NP (NNP Credit) (NNP Suisse)) (PP (IN in) (NP (NNP December)))) (VP (VP (VBD named) (NP (NNP Mr.) (NNP Fischer)) (PP (IN as) (NP (PRP$ its) (NN head))) (PP (IN in) (NP (NNP Europe)))) (, ,) (NP (NP (DT a) (NN step)) (SBAR (WHNP (WDT that)) (S (VP (AUX was) (VP (ADVP (RB widely)) (VBN seen) (PP (IN as) (S (VP (VBG putting) (NP (PRP him)) (PP (IN in) (NP (NN place))) (S (VP (TO to) (VP (VB succeed) (NP (NNP Oswald) (NNP Grübel)) (PP (IN as) (NP (JJ chief) (NN executive))) (PP (IN in) (NP (NNP May))))))))))))))) (. .)))
(S1 (S (CC But) (NP (NP (NNS lawyers)) (PP (IN for) (NP (NP (JJ such) (JJ civil) (NNS defendants)) (PP (IN as) (NP (NP (NP (DT the) (NNP Paramount) (NNP Pictures) (NN chairman)) (, ,) (NP (NP (NNP Brad) (NNP Grey)) (NP (DT the) (NN entertainment) (NN lawyer) (NNP Bertram) (NNP Fields)))) (CC and) (NP (DT the) (NN phone) (NN company))))))) (VP (VBD argued) (SBAR (IN that) (S (NP (PRP they)) (VP (MD would) (VP (AUX be) (ADVP (RB severely)) (VP (VBN hamstrung) (PP (IN in) (S (VP (VBG defending) (NP (PRP themselves)) (PP (IN until) (NP (NP (DT the) (NN conclusion)) (PP (IN of) (NP (DT the) (JJ criminal) (NN trial))) (, ,) (VP (ADVP (RB now)) (VBN set) (S (VP (TO to) (VP (VB begin) (PP (IN on) (NP (NNP Aug.) (CD 22)))))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (JJ recent) (NNS weeks))) (, ,) (NP (NP (NP (NNP Google) (POS 's)) (JJ chief) (NN executive)) (, ,) (NP (NNP Eric) (NNP E.) (NNP Schmidt)) (, ,)) (VP (AUX has) (VP (VBN said) (SBAR (IN that) (S (NP (DT the) (NN company)) (VP (MD will) (ADVP (RB soon)) (VP (VB unveil) (NP (NP (JJ new) (NNS tools)) (SBAR (WHNP (WDT that)) (S (VP (MD will) (VP (VB make) (S (NP (PRP it)) (ADJP (JJR easier)) (SBAR (IN for) (S (NP (NN copyright) (NNS owners)) (VP (TO to) (VP (VB spot) (NP (NP (PRP$ their) (NN content)) (PP (IN on) (NP (NNP YouTube)))))))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NNP January))) (, ,) (NP (NP (NP (NNP YouTube) (POS 's)) (NN co-founder)) (, ,) (NP (NNP Chad) (NNP Hurley)) (, ,)) (VP (VBD said) (SBAR (S (NP (DT the) (NN company)) (VP (MD would) (PP (IN in) (NP (DT the) (VBG coming) (NNS months))) (VP (VB begin) (S (VP (VBG sharing) (NP (NN advertising) (NN revenue)) (PP (IN with) (NP (NNS contributors)))))))))) (. .)))
(S1 (SINV (S (NP (PRP It)) (VP (AUX is) (NP (NP (DT a) (ADJP (ADVP (RB much) (RBR more)) (JJ powerful)) (NN way)) (SBAR (S (VP (TO to) (VP (VB find) (PRT (RP out)) (PP (IN about) (NP (DT this) (NN time) (NN period))) (PP (IN in) (NP (NN history)))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Marissa) (NNP Mayer)) (, ,) (NP (NP (NP (NN vice) (NN president)) (PP (IN for) (NP (NN search) (NNS products)))) (CC and) (NP (NP (NN user) (NN experience)) (PP (IN at) (NP (NNP Google)))))) (. .)))
(S1 (S (NP (NP (DT The) (JJS biggest) (NNP U.S.) (NN investor)) (PP (IN in) (NP (NP (NNP Class) (NNP H) (NNS shares)) (PP (IN of) (NP (NP (NNP PetroChina)) (, ,) (NP (NP (DT a) (JJ Chinese) (NN oil) (NN concern)) (SBAR (WHNP (WP$ whose) (NN parent) (NN company)) (S (VP (AUX is) (ADJP (JJ active)) (PP (IN in) (NP (NNP Sudan))))))) (, ,)))))) (VP (AUX is) (NP (NP (NNP Warren) (NNP Buffett) (POS 's)) (NNP Berkshire) (NNP Hathaway))) (. .)))
(S1 (SINV (S (PP (IN From) (NP (DT a) (NN customer) (NN standpoint))) (, ,) (NP (PRP we)) (VP (MD 'd) (VP (AUX have) (NP (NP (NN nothing)) (ADJP (ADJP (JJR more)) (PP (IN than) (SBAR (WHNP (WP what)) (S (NP (PRP we)) (VP (AUX had) (ADVP (IN before))))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Chase) (NNP Carey)) (, ,) (NP (NP (DT the) (NN president)) (PP (IN of) (NP (NNP DirecTV)))) (, ,) ('' '') (S (CC but) (NP (EX there)) (VP (AUX are) (NP (NP (NN business) (NNS terms)) (SBAR (WHNP (WDT that)) (S (VP (VBP work) (PP (IN for) (NP (PRP us)))))))))) (. .)))
(S1 (S (SBAR (IN Whether) (S (NP (PRP it)) (VP (AUX is) (VP (VBG providing) (NP (NP (DT a) (VBN personalized) (NN video) (NN tribute)) (PRN (: --) (VP (VBN shot) (PP (IN from) (PP (IN inside) (NP (DT the) (NNP CNBC) (NN newsroom))))) (: --)) (PP (TO to) (NP (NP (NNP Stephen) (NNP A.) (NNP Schwarzman)) (, ,) (NP (NP (DT the) (NN chairman)) (PP (IN of) (NP (DT the) (NN buyout) (S (NP (JJ giant) (NNP Blackstone) (NNP Group)) (VP (TO to) (VP (VB celebrate) (NP (PRP$ his) (JJ 60th) (NN birthday) (CC or) (NN mingling)) (PP (IN with) (NP (DT a) (NN source))) (PP (IN at) (NP (NP (DT a) (NN benefit)) (PP (IN for) (NP (DT the) (NNP New) (NNP York) (NNP City) (NNP Ballet))))))))))) (, ,)))) (NP (NP (NNP Ms.) (NNP Bartiromo) (POS 's)) (NN proximity)) (PP (TO to) (NP (DT the) (NNS people))))))) (NP (PRP she)) (VP (VBZ covers) (SBAR (S (VP (AUX has) (VP (VBN created) (NP (NP (DT a) (NN model)) (PP (IN of) (NP (NN journalism))) (SBAR (WHNP (WDT that)) (S (VP (VBZ jibes) (ADVP (RB perfectly)) (PP (IN with) (NP (NP (NNP CNBC) (POS 's)) (NN mandate) (S (VP (TO to) (VP (VB ramp) (PRT (RP up)) (NP (PRP$ its) (NNS ratings)) (PP (IN by) (S (VP (VBG adding) (NP (NN pizzazz) (CC and) (NN drama)) (PP (TO to) (NP (PRP$ its) (NN coverage)))))))))))))))))))) (. .)))
(S1 (SINV (S (NP (PRP We)) (VP (ADVP (RB very) (RB much)) (VBP want) (S (VP (TO to) (VP (VB work) (PP (IN with) (NP (NNP Congress)))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Derrick) (NNP M.) (NNP Kuzak)) (, ,) (NP (NP (NN group) (NN vice) (NN president)) (PP (IN for) (NP (JJ global) (NN product) (NN development))) (PP (IN at) (NP (DT the) (NNP Ford) (NNP Motor) (NNP Company))))) (, ,) (S (VP (VBG echoing) (NP (NP (DT the) (JJ official) (NN stance)) (PP (IN of) (NP (NP (NP (DT the) (NNP Alliance)) (PP (IN of) (NP (NNP Automobile) (NNPS Manufacturers)))) (, ,) (NP (DT an) (NN industry) (NN trade) (NN group))))))) (. .)))
(S1 (S (PP (IN On) (NP (NNP Sunday))) (, ,) (ADVP (RB though)) (, ,) (NP (EX there)) (VP (AUX was) (NP (NP (DT a) (JJ significant) (NN shift)) (PP (IN of) (NP (NP (DT the) (JJ tectonic) (NNS plates)) (PP (IN of) (NP (NNP Bangladeshi) (NNS politics))) (SBAR (IN as) (S (NP (NP (NNP Muhammad) (NNP Yunus)) (, ,) (NP (NP (DT the) (NN founder)) (PP (IN of) (NP (NP (DT a) (JJ microfinance) (NN empire)) (VP (VBN known) (PP (IN as) (NP (NP (DT the) (NNP Grameen) (NNP Bank)) (CC and) (NP (NP (DT the) (NN winner)) (PP (IN of) (NP (DT the) (CD 2006) (NNP Nobel) (NNP Peace) (NNP Prize)))))))))) (, ,)) (VP (VBD announced) (SBAR (IN that) (S (NP (PRP he)) (VP (MD would) (VP (VB start) (NP (DT a) (JJ new) (NN party) (CC and) (NN step)) (PP (IN into) (NP (DT the) (JJ electoral) (NN fray)))))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (CD One) (VBG leading) (NN voice)) (PP (IN in) (NP (DT this) (NN camp)))) (VP (AUX is) (NP (NP (NP (DT the) (NNP University)) (PP (IN of) (NP (NP (NNP Chicago) (POS 's)) (NNP James) (NNP Heckman)))) (, ,) (NP (DT a) (NNP Nobel) (JJ Prize-winning) (NN economist)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBZ contends))))) (, ,) (PP (IN after) (NP (NP (NNS years)) (PP (IN of) (S (VP (VBG studying) (NP (NP (DT the) (NN subject)) (, ,) (SBAR (IN that) (S (NP (NP (PDT all) (DT the) (JJ low-wage) (NNS jobs) (CC and) (NN adult) (NN training) (NNS programs)) (PP (IN on) (NP (DT the) (NN planet)))) (VP (MD wo) (RB n't) (VP (VB succeed) (PP (IN in) (S (VP (VBG eliminating) (NP (NN poverty)) (SBAR (IN unless) (S (NP (NN government)) (VP (VBZ intervenes) (PP (IN in) (NP (NP (DT the) (JJS earliest) (NNS stages)) (PP (IN of) (NP (NP (NN childhood)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (NN tax) (NNS dollars)) (VP (AUX have) (VP (AUX been) (VP (VBN shown) (S (VP (TO to) (VP (VB yield) (NP (DT the) (JJS most) (NN return))))))))))))))))))))))))))))))) (. .) ('' '')))
(S1 (SINV (S (NP (PRP I)) (VP (AUX am) (RB not) (ADJP (JJ apologetic) (PP (IN about) (SBAR (WHADVP (WRB why)) (S (NP (DT the) (NNP Koran)) (VP (VBZ says) (NP (DT this))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Seyyed) (NNP Hossein) (NNP Nasr)) (, ,) (NP (NP (DT an) (JJ Islamic) (NN scholar)) (SBAR (WHNP (WP who)) (S (VP (VBZ teaches) (PP (IN at) (NP (NNP George) (NNP Washington) (NNP University)))))))) (. .)))
(S1 (S (S (PP (IN At) (NP (DT that) (NN time))) (NP (PRP it)) (VP (VBD seemed) (ADJP (JJ crazy)))) (, ,) ('' '') (NP (NP (NP (NNP Eni) (POS 's)) (JJ chief) (NN executive)) (, ,) (NP (NNP Paolo) (NNP Scaroni)) (, ,)) (VP (VBD said)) (. .) ('' '')))
(S1 (S (NP (NNS Speakers)) (VP (VBD included) (NP (NP (NNP David) (NNP Bonderman)) (PP (IN of) (NP (NP (DT the) (NNP Texas) (NNP Pacific) (NNP Group)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD helped) (S (VP (TO to) (VP (VB lead) (NP (NP (NP (NP (NNP Monday) (POS 's)) (ADJP (QP ($ $) (CD 45) (CD billion))) (NNP TXU) (NN takeover) (NNP Todd) (NNP Fisher)) (PP (IN of) (NP (NP (NNP Kohlberg) (NNP Kravis) (NNP Roberts)) (CC &) (NP (NNP Company))))) (, ,) (NP (NP (DT the) (JJ other) (JJ lead) (NN investor)) (PP (IN in) (NP (DT the) (NNP TXU) (NN deal)))) (CC and) (NP (NP (NNP Stephen) (NNP A.) (NNP Schwarzman)) (PP (IN of) (NP (NP (DT the) (NNP Blackstone) (NNP Group)) (, ,) (VP (VBN considered) (S (NP (NP (CD one)) (PP (IN of) (NP (DT the) (ADJP (RBS most) (JJ likely)) (NNS candidates)))) (VP (TO to) (VP (VB try) (S (VP (TO to) (VP (VB crash) (NP (DT the) (NN TXU) (NN sale))))))))))))))))))))))) (. .)))
(S1 (FRAG (NP (NN Correction)) (: :) (S (NP (NP (NNP January) (CD 31)) (, ,) (NP (CD 2007)) (, ,) (NP (NP (NNP Wednesday)) (NP (NP (DT A) (NN picture) (NN caption)) (PP (IN in) (NP (NNP Business) (NNP Day))) (PP (IN on) (NP (NNP Saturday))) (PP (IN with) (NP (NP (DT an) (NN article)) (PP (IN about) (NP (NP (DT the) (JJ extravagant) (JJ 60th-birthday) (NN party)) (VP (VBN planned) (PP (IN for) (NP (NP (NNP Stephen) (NNP A.) (NNP Schwarzman)) (, ,) (NP (NP (DT a) (NN founder)) (PP (IN of) (NP (DT the) (NNP Blackstone) (NNP Group))))))))))))) (, ,)) (VP (VBD referred) (ADVP (RB incorrectly)) (PP (TO to) (NP (NP (NP (NNP Katharine) (NNP Graham) (POS 's)) (NN presence)) (PP (IN at) (NP (NP (NP (NNP Truman) (NNP Capote) (POS 's)) (NNP Black) (CC and) (NNP White) (NNP Ball)) (, ,) (NP (NP (DT the) (NNP New) (NNP York) (JJ social) (NN event)) (PP (IN of) (NP (CD 1966)))))))))) (. .)))
(S1 (S (NP (NP (NN Pressure)) (PP (TO to) (NP (NP (JJ slim) (NNP General) (NNP Electric) (POS 's)) (JJ corporate) (NN portfolio))) (PP (IN at) (NP (NN home)))) (VP (AUX has) (RB not) (VP (VBN stopped) (NP (NP (NP (NNP Jeffrey) (NNP R.) (NNP Immelt) (POS 's)) (JJ aggressive) (NNS plans)) (PP (IN for) (S (VP (VBG expanding) (PP (IN in) (NP (VBG emerging) (NNS markets))))))))) (. .)))
(S1 (S (SBAR (IN Among) (S (NP (NN board) (NNS members)) (ADVP (RB reportedly)) (VP (VBG playing) (NP (DT an) (JJ important) (NN role))))) (VP (AUX is) (NP (NP (NNP Josef) (NNP Ackermann)) (, ,) (NP (NP (DT the) (JJ chief) (NN executive)) (PP (IN of) (NP (NNP Deutsche) (NNP Bank)))))) (. .)))
(S1 (S (NP (NP (NNP Lazard)) (, ,) (NP (NP (DT the) (NN investment) (NN bank)) (VP (VBN run) (PP (IN by) (NP (NNP Bruce) (NNP Wasserstein))))) (, ,)) (VP (VBD said) (NP (NN yesterday)) (SBAR (IN that) (S (NP (NP (NN strength)) (PP (IN in) (NP (PRP$ its) (JJ merger-advisory) (NN business)))) (VP (VBD helped) (S (VP (VB lift) (NP (PRP$ its) (JJ fourth-quarter) (NN profit)) (NP (CD 50) (NN percent)) (, ,) (PP (TO to) (NP (DT a) (NN record) (QP ($ $) (CD 85.8) (CD million)))))))))) (. .)))
(S1 (S (NP (NP (NP (DT The) (NNP New) (NNP York) (NNP City) (NNP Ballet) (POS 's)) (NN revival)) (PP (IN of) (NP (NP (NP (NNP Jerome) (NNP Robbins) (POS 's)) ('' '') (NNP Dybbuk) ('' '')) (PP (IN on) (NP (NNP Friday)))))) (, ,) (PP (IN as) (NP (NP (NN part)) (PP (IN of) (NP (NP (PRP$ its) (JJ new) (NN program) ('' '') (NNP Balanchine) (CC and) (NNPS Robbins)) (: :) (NP (NP (NNS Masters)) (PP (IN at) (NP (NN Work)))))))) (, ,) ('' '') (VP (AUX is) (RB n't) (ADVP (RB necessarily)) (NP (DT a) (JJ good) (NN thing)) (, ,) (ADVP (RB either))) (. .)))
(S1 (FRAG (NP (NP (CD 9) (NN P.M.)) (PRN (-LRB- -LRB-) (NP (NNP Fox)) (-RRB- -RRB-)) (PP (IN ON) (NP (DT THE) (NN LOT)))) (: --) (S (NP (NNP Sixteen)) (VP (VBG aspiring) (SBAR (S (NP (NNS filmmakers)) (VP (VBP compete) (PP (IN for) (NP (NP (PRP$ their) (JJ big) (NN break)) (PRN (: --) (PP (IN in) (NP (NP (DT the) (NN form)) (PP (IN of) (NP (NP (DT a) (ADJP (QP ($ $) (CD 1) (CD million))) (NN development) (NN deal)) (PP (IN with) (NP (NNP DreamWorks))))))) (: --)))) (PP (IN in) (NP (NP (DT this) (JJ new) (NN reality) (NN series)) (PP (IN with) (NP (NP (NNP Mark) (NNP Burnett)) (CC and) (NP (NNP Steven) (NNP Spielberg)))) (PP (IN as) (NP (NN executive) (NNS producers)))))))))) (. .)))
(S1 (S (NP (NNP Bob) (NNP Woodruff)) (VP (VBZ Returns) (PP (IN In) (NP (NP (DT a) (NN Documentary)) (SBAR (S (NP (NP (NNP Bob) (NNP Woodruff)) (, ,) (NP (NP (DT the) (NNP ABC) (NNP News) (NNP anchor)) (SBAR (WHNP (WP who)) (S (VP (AUX was) (ADVP (RB severely)) (VP (VBN injured) (PP (IN by) (NP (DT a) (JJ roadside) (NN bomb))) (SBAR (IN while) (S (VP (VBG covering) (NP (NP (DT the) (NN war)) (PP (IN in) (NP (NNP Iraq)))) (NP (JJ last) (NNP January)))))))))) (, ,)) (VP (MD will) (VP (VB deliver) (NP (NP (PRP$ his) (JJ first) (JJ on-air) (NN report)) (PP (IN since) (NP (RB then)))) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (VP (AUX is) (VP (VBN seen) (PP (IN in) (NP (NP (DT a) (NN documentary)) (SBAR (S (VP (TO to) (VP (AUX be) (VP (VBN broadcast) (PP (IN by) (NP (NNP ABC))) (PP (IN on) (NP (NNP Feb.) (CD 27))))))))))))))))))))) (. .)))
(S1 (S (NP (JJ Other) (NNS members)) (VP (AUX are) (NP (NP (NNP Representative) (NNP Xavier) (NNP Becerra)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NP (NNP California) (NNP L.) (NNP Hardwick) (NNP Caldwell)) (, ,) (NP (NP (NN chairman)) (PP (IN of) (NP (NP (NP (DT the) (NN institution) (POS 's)) (NNP National) (NNP Board) (NNP Anne) (NN d'Harnoncourt)) (, ,) (NP (NP (DT a) (NN regent) (CC and) (NN director)) (PP (IN of) (NP (NP (DT the) (NNP Philadelphia) (NNP Museum)) (PP (IN of) (NP (NP (NNP Art) (NNP Senator) (NNP Patrick) (NNP J.) (NNP Leahy)) (, ,) (NP (NP (NNP Democrat)) (PP (IN of) (NP (NP (NNP Vermont) (NNP Walter) (NNP E.) (NNP Massey)) (, ,) (NP (NP (NN president)) (PP (IN of) (NP (NP (NNP Morehouse) (NNP College)) (PP (IN in) (NP (NP (NNP Atlanta) (NNP Jeffrey) (NNP Minear)) (, ,) (NP (NP (JJ administrative) (NN assistant)) (PP (TO to) (NP (NNP Chief) (NNP Justice) (NNP John) (NNP G.) (NNP Roberts) (NNP Jr.))))))))))))))))))))))))) (. .)))
(S1 (S (NP (PRP It)) (VP (AUX is) (ADJP (JJ hard)) (S (VP (TO to) (VP (VB say) (SBAR (IN whether) (S (NP (NP (DT the) (JJ unusual) (NN heat)) (PP (IN behind) (NP (DT the) (NN evening)))) (VP (VBZ owes) (NP (JJR more)) (PP (TO to) (NP (NN interest)) (PP (IN in) (NP (NNP Mr.) (NNP Obama))) (CC or) (PP (TO to) (NP (NP (DT the) (CD three) (NNS men)) (SBAR (WHNP (WP who)) (S (VP (VBD spearheaded) (NP (NP (DT the) (NN fund-raiser)) (: :) (NP (NP (DT the) (NNP DreamWorks) (NNS co-founders)) (NP (NP (NNP David) (NNP Geffen)) (, ,) (NP (NNP Jeffrey) (NNP Katzenberg)) (CC and) (NP (NNP Steven) (NNP Spielberg)))))))))))))))))) (. .)))
(S1 (S (NP (NN Yesterday)) (, ,) (NP (NNP Mr.) (NNP Sulzberger)) (VP (VBD received) (NP (NN support)) (SBAR (WHADVP (WRB when)) (S (NP (NP (NNP Donald) (NNP E.) (NNP Graham)) (, ,) (NP (NP (DT the) (NX (NX (NN chairman)) (CC and) (NX (JJ chief) (NN executive)))) (PP (IN of) (NP (DT the) (NNP Washington) (NNP Post) (NN Company)))) (, ,)) (VP (VBD urged) (NP (NNS investors)) (S (VP (TO to) (VP (VB support) (NP (DT the) (NNP Times) (NN Company))))))))) (. .)))
(S1 (SINV (S (NP (PRP It)) (VP (AUX 's) (ADJP (RB so) (JJ hypocritical)) (SBAR (IN for) (S (NP (NP (DT any) (NN network)) (PP (IN in) (NP (DT this) (NN culture)))) (VP (TO to) (VP (VB go) (NP (DT all) (JJ puritanical)) (PP (IN on) (NP (NP (DT the) (NN subject)) (PP (IN of) (NP (NN condom) (NN use))))) (SBAR (WHADVP (WRB when)) (S (NP (PRP$ their) (NN programming)) (VP (AUX is) (ADJP (RB so) (JJ salacious))))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Mark) (NNP Crispin) (NNP Miller)) (, ,) (NP (NP (DT a) (NNS media) (NN critic)) (SBAR (WHNP (WP who)) (S (VP (VBZ teaches) (PP (IN at) (NP (NNP New) (NNP York) (NNP University)))))))) (. .) ('' '')))
(S1 (SINV (S (NP (NNS Investors)) (VP (AUX were) (ADJP (JJ unnerved)) (PP (IN by) (NP (DT the) (NN announcement))) (, ,) (PP (IN in) (NP (JJ large) (NN part))) (, ,) (SBAR (IN because) (S ('' '') (NP (PRP it)) (VP (AUX was) (ADJP (RB so) (JJ vague))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Meredith) (NNP Whitney)) (, ,) (NP (NP (DT an) (NN analyst)) (PP (IN with) (NP (NNP CIBC) (NNP World) (NNP Markets))))) (. .) ('' '')))
(S1 (S (S (VP (VBG Writing) (PP (IN on) (NP (DT the) (NNP Google) (NN blog))))) (, ,) (NP (NP (NNP Matt) (NNP Cutts)) (, ,) (NP (NP (DT the) (NN head)) (PP (IN of) (NP (NP (DT the) (NNP Google) (POS 's)) (NNP Webspam) (NN team)))) (, ,)) (VP (VBD said) (SBAR (IN that) (S (NP (NNP Google) (NNS bombs)) (VP (AUX had) (ADVP (RB not) ('' '')) (VP (AUX been) (NP (DT a) (ADJP (RB very) (JJ high)) (NN priority)) (PP (IN for) (NP (PRP us)))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP John) (NNP Logsdon)) (, ,) (NP (NP (NN director)) (PP (IN of) (NP (DT the) (NNP Space) (NNP Policy) (NNP Institute))) (PP (IN at) (NP (NNP George) (NNP Washington) (NNP University)))) (, ,)) (VP (VBD said) (SBAR (S (NP (NNP NASA)) (ADVP (RB now)) (VP (VBZ deals) (PP (IN with) (NP (NN safety) (NNS issues))) (ADVP (ADVP (RB far) (RBR more) (RB thoroughly)) (SBAR (IN than) (S (NP (PRP it)) (VP (AUX did) (PP (IN before) (NP (DT the) (NNP Columbia) (NN disaster))))))))))) (. .)))
(S1 (S (NP (NP (NNP Tracinda)) (, ,) (NP (NP (DT the) (NN investment) (NN vehicle)) (PP (IN of) (NP (DT the) (NN billionaire) (NNP Kirk) (NNP Kerkorian)))) (, ,)) (VP (VBD announced) (NP (NP (DT a) (ADJP (QP ($ $) (CD 4.5) (CD billion))) (NN offer)) (PP (IN for) (NP (NP (NNP Chrysler)) (PP (IN in) (NP (JJ early) (NNP April))))))) (. .)))
(S1 (S (NP (DT The) (NNP Times)) (VP (AUX does) (RB n't) (VP (VB dispute) (NP (DT the) (JJ recent) (NN intimation)) (PP (IN by) (NP (NP (NNP Donald) (NNP E.) (NNP Graham)) (, ,) (NP (NP (NN chairman)) (PP (IN of) (NP (DT the) (NNP Washington) (NNP Post) (NN Company)))) (, ,))) (SBAR (IN that) (S (NP (NP (DT The) (NNP Times) (POS 's)) (JJ yearly) (NN news) (NN budget)) (VP (AUX is) (NP (QP (JJR more) (IN than) ($ $) (CD 200) (CD million))) (, ,) (PP (IN despite) (NP (NP (DT the) (NN cost) (NN cutting)) (PP (IN of) (NP (DT the) (JJ past) (JJ few) (NNS years)))))))))) (. .)))
(S1 (S (NP (NP (DT THE) (NN WAY)) (SBAR (S (NP (PRP WE)) (VP (VBP LIVE) (ADVP (RB NOW)))))) (: :) (NP (NP (JJ 3-18-07) (NNP Kwame) (NNP Anthony) (NNP Appiah)) (, ,) (NP (NP (DT a) (NN philosopher)) (PP (IN at) (NP (NNP Princeton) (NNP University)))) (, ,)) (VP (AUX is) (NP (NP (NP (DT the) (NN editor)) (, ,) (PP (IN with) (NP (NNP Martin) (NNP Bunzl))) (, ,) (PP (IN of) ('' '') (NP (NNP Buying) (NNP Freedom)))) (: :) (NP (NP (DT The) (NNP Ethics) (CC and) (NNP Economics)) (PP (IN of) (NP (NP (NN Slave) (NN Redemption)) (, ,) ('' '') (VP (VBG coming) (NP (DT this) (NN fall)))))))) (. .)))
(S1 (S (S (NP (NNP Jonathan)) (VP (VB Lash))) (, ,) (NP (NP (DT the) (NN president)) (PP (IN of) (NP (DT the) (NNP World) (NNPS Resources) (NNP Institute)))) (, ,) (VP (VBD said) (NP (NNP Thursday)) (SBAR (IN that) (FRAG ('' '') (NP (DT this) (NNS signals) (SBAR (IN that) (S (NP (NP (DT the) (NNS differences)) (PP (IN in) (NP (DT the) (NNS interests))) (PP (PP (IN between) (NP (DT these) (NNS sectors))) (CC and) (PP (IN within) (NP (DT these) (NNS sectors))))) (VP (MD can) (VP (AUX be) (VP (VBN resolved)))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Craig) (NNP Claiborne)) (, ,) (NP (NP (DT a) (NNP Mississippi) (NN native)) (SBAR (WHNP (WP who)) (S (VP (AUX was) (NP (NP (DT a) (NN food) (NN editor) (CC and) (NN restaurant) (NN critic)) (PP (IN for) (NP (DT The) (NNP New) (NNP York) (NNP Times)))))))) (, ,)) (VP (VBD included) (NP (NP (DT a) (JJ red) (NN velvet) (NN recipe)) (PP (IN with) (NP (NP (DT no) (NN cocoa)) (PP (IN in) ('' '') (NP (NP (NNP Craig) (NNP Claiborne) (POS 's)) (NNP Southern) (NN Cooking))) ('' '') (PRN (-LRB- -LRB-) (NP (NNP Times) (NNP Books)) (, ,) (NP (CD 1987)) (-RRB- -RRB-)))))) (. .)))
(S1 (S (NP (NP (DT A) (NN billionaire)) (PP (IN with) (NP (JJ manifest) (NNS interests)))) (, ,) (NP (PRP he)) (VP (AUX has) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NN time)))) (PP (IN on) (NP (PRP$ his) (NNS hands))) (SBAR (RB now) (IN that) (S (NP (NP (NNP DreamWorks)) (, ,) (NP (NP (DT the) (JJ mini-major) (NN studio)) (SBAR (S (NP (PRP he)) (VP (VBD formed) (PP (IN with) (NP (NP (NNP Steven) (NNP Spielberg)) (CC and) (NP (NNP Jeffrey) (NNP Katzenberg)))))))) (, ,)) (VP (AUX has) (VP (AUX been) (VP (VBN bought) (CC and) (VBN folded) (PP (IN into) (NP (NNP Paramount))))))))) (. .)))
(S1 (NP (NP (NNS Outsiders)) (SBAR (WHNP (WP who)) (S (VP (AUX have) (VP (AUX been) (VP (VBN mentioned) (PP (IN as) (S (NP (JJ possible) (NNS candidates)) (VP (VBP include) (NP (NP (NP (NNP Carol) (NNP Bellamy)) (, ,) (NP (NP (JJ former) (NN executive) (NN director)) (PP (IN of) (NP (NN UNICEF))))) (, ,) (NP (NP (DT the) (JJ first) (NN woman)) (VP (VBN elected) (S (NP (NP (NP (NN president)) (PP (IN of) (NP (DT the) (NNP New) (NNP York) (NNP City) (NNP Council)))) (CC and) (NP (NP (DT a) (JJ former) (VBG managing) (NN director)) (PP (IN for) (NP (NP (NNP Bear) (NNP Stearns)) (CC and) (NP (NP (NNP William) (NNP J.) (NNP Mulrow)) (, ,) (NP (NP (DT an) (NN investment) (NN banker)) (ADVP (RB close) (PP (TO to) (NP (NNP Mr.) (NNP Spitzer)))) (SBAR (WHNP (WP who)) (S (VP (VBD ran) (PP (IN for) (NP (NN comptroller))) (PP (IN in) (NP (CD 2002))) (, ,) (PP (IN among) (NP (NNS others)))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Gordon) (NNP M.) (NNP Bethune)) (, ,) (NP (NP (JJ former) (NN chief) (NN executive)) (PP (IN of) (NP (NP (NNP Continental) (NNP Airlines)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (NNP Mr.) (NNP Barger)) (VP (VBD worked) (PP (IN before) (NP (NNP JetBlue))))))))) (, ,)) (VP (VBD said) (SBAR (S (NP (DT the) (JJ new) (NN chief)) (VP (MD would) (VP (VB help) (PP (IN with) (NP (NP (NNP JetBlue) (POS 's)) (NN growing) (NNS pains)))))))) (. .) ('' '')))
(S1 (S (S (NP (DT The) (JJS biggest) (NN growth) (NNS areas)) (VP (AUX are) (ADVP (RB clearly)) (VP (VBG going) (S (VP (TO to) (VP (AUX be) (PP (IN in) (NP (DT the) (JJ mobile) (NN space))))))))) (, ,) ('' '') (NP (NNP Eric) (NNP E.) (NNP Schmidt)) (, ,) (NP (NP (JJ chief) (NN executive)) (PP (IN of) (NP (NNP Google)))) (, ,) (VP (VBD said) (SBAR (WHADVP (WRB when)) (S (VP (VBN asked) (PP (IN about) (NP (JJ new) (NNS opportunities))) (PP (IN at) (NP (NP (DT a) (NN conference)) (ADVP (RB here)) (NP (DT this) (NN week)))))))) (. .)))
(S1 (S (S (VP (VBG Recognizing) (NP (DT that) (NN concern)))) (, ,) (NP (NP (NNP Lawrence) (NNP Lessig)) (, ,) (NP (NP (DT a) (NN professor)) (PP (IN at) (NP (NNP Stanford) (NNP Law) (NNP School))) (SBAR (WHNP (WP who)) (S (VP (ADVP (RB frequently)) (VBZ writes) (PP (IN about) (NP (NN technology))))))) (, ,)) (VP (VBD said) (SBAR (IN that) (S (NP (PRP he)) (VP (VBD favored) (NP (NP (DT a) (NN system)) (SBAR (WHNP (WDT that)) (S (VP (VBZ captures) (PP (IN in) (NP (NN time) (NN online) (NNS sources))) (PP (IN like) (NP (NNP Wikipedia))) (, ,) (SBAR (RB so) (IN that) (S (NP (DT a) (NN reader)) (VP (VBZ sees) (NP (NP (DT the) (JJ same) (NN material)) (SBAR (WHNP (WDT that)) (S (NP (DT the) (NN writer)) (VP (VBD saw)))))))))))))))) (. .)))
(S1 (SINV (S (NP (NP (NNS Hackers)) (PP (IN in) (NP (DT the) (NN past)))) (VP (VBN attacked) (PP (IN for) (NP (RB mainly) (JJ personal) (NN glorification))))) (, ,) (VP (VBD said)) (NP (NP (NNP Ira) (NNP Winkler)) (, ,) (NP (NP (NP (NN vice) (NN president)) (PP (IN for) (NP (DT the) (NNP Information) (NNPS Systems) (NNP Security) (NNP Association)))) (CC and) (NP (NP (DT the) (NN author)) (PP (IN of) (NP (NP (JJ several) (NNS books)) (PP (IN about) (NP (DT the) (NN subject)))))))) (. .) ('' '')))
(S1 (S (NP (DT The) (JJ domestic) (NN doyenne) (NNP Martha) (NNP Stewart)) (VP (VBD rubbed) (SBAR (S (NP (NP (NNS shoulders)) (PP (IN with) (NP (NP (DT the) (NN actor) (NNP Michael) (NNP Douglas) (NNP Stephen) (NNP A.) (NNP Schwarzman)) (PP (IN of) (NP (DT the) (NNP Blackstone) (NNP Group)))))) (VP (VBD donned) (SBAR (S (NP (NP (PRP$ his) (VBD felt) (NNP Robin) (NNP Hood) (NN hat)) (CC and) (NP (NP (NNP Steven) (NNP Tyler)) (PP (IN of) (NP (NNP Aerosmith))))) (VP (VBD rocked) (PRT (RP out)) (PP (IN with) (NP (DT the) (NNS millionaires) (CC and) (NNS billionaires))) (PP (IN for) (NP (QP (JJR more) (IN than) (CD two)) (NNS hours)))))))))) (. .)))
(S1 (S (NP (NP (NNP Martin) (NNP Feldstein)) (, ,) (NP (NP (DT a) (NN professor)) (PP (IN of) (NP (NNS economics))) (PP (IN at) (NP (NP (NNP Harvard)) (CC and) (NP (NP (DT the) (NN president)) (PP (IN of) (NP (NP (DT the) (NNP National) (NNP Bureau)) (PP (IN of) (NP (NNP Economic) (NNP Research))))))))) (, ,)) (VP (VBD said) (SBAR (S (PP (IN in) (NP (NP (DT a) (NN statement)) (VP (VBN issued) (PP (IN by) (NP (NNP Harvard)))))) (, ,) ('' '') (NP (NNP Richard) (NNP Musgrave)) (VP (VBD transformed) (NP (NP (NNS economics)) (PP (IN in) (NP (DT the) (NNS 1950s) (CC and) (NNS 1960s)))) (PP (IN from) (NP (DT a) (ADJP (JJ descriptive) (CC and) (JJ institutional)) (NN subject))) (PP (TO to) (NP (CD one))) (SBAR (IN that) (S (VP (VBD used) (NP (NP (DT the) (NNS tools)) (PP (IN of) (NP (NP (NNS microeconomics)) (CC and) (NP (JJ Keynesian) (NNS macroeconomics))))) (S (VP (TO to) (VP (VB understand) (NP (NP (DT the) (NN effect)) (PP (IN of) (NP (NNS taxes)))))))))))))) (. .) ('' '')))
(S1 (S (CC And) (PP (IN on) (NP (NNP Wednesday))) (, ,) (NP (NP (NP (NNP Google) (POS 's)) (JJ chief) (NN executive)) (, ,) (NP (NNP Eric) (NNP E.) (NNP Schmidt)) (, ,)) (VP (VBD said) (SBAR (S (NP (DT the) (NN company)) (VP (AUX was) (VP (VBG placing) (NP (JJR fewer) (NNS ads)) (PP (IN in) (NP (NP (NN front)) (PP (IN of) (NP (NNS users))))) (, ,) (S (ADVP (RB yet)) (VP (VBG receiving) (NP (JJR more) (NNS clicks))))))))) (. .)))
(S1 (SINV (S (NP (NN Today)) (, ,) (NP (NNS customers)) (VP (MD will) (VP (AUX be) (ADJP (JJ able) (S (VP (TO to) (VP (VB touch) (CC and) (VB feel) (NP (NP (DT the) (JJ vast) (NN array)) (PP (IN of) (NP (NP (NP (NNP AT&T) (POS 's)) (JJ full) (NN suite)) (PP (IN of) (NP (NNS services)))))) (PP (IN under) (NP (CD one) (NN roof))) (PP (IN for) (NP (DT the) (JJ first) (NN time)))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Ralph) (FW de) (FW la) (NNP Vega)) (, ,) (NP (NP (NN group) (NN president)) (PP (IN of) (NP (NP (NNP AT&T) (POS 's)) (JJ regional) (JJ wire-line) (NNS operations)))) (, ,) (VP (VBN based) (PP (IN in) (NP (NNP Atlanta))))) (. .)))
(S1 (S (NP (NP (NNP Mark) (NNP V.) (NNP Hurd)) (, ,) (NP (NP (DT the) (NX (NX (NN chairman)) (CC and) (NX (JJ chief) (NN executive)))) (PP (IN of) (NP (NNP Hewlett-Packard)))) (, ,)) (VP (MD would) (VP (VB prefer) (SBAR (IN that) (S (NP (NP (DT the) (NN discussion)) (PP (IN at) (NP (DT the) (JJ annual) (NN meeting)))) (NP (NP (DT this) (NN afternoon) (NN focus)) (PP (IN on) (NP (NP (NP (DT the) (NN company) (POS 's)) (NN future)) (, ,) (RB not) (NP (PRP$ its) (NN past))))))))) (. .)))
(S1 (S (NP (DT The) (JJ Democratic) (JJ presidential) (NNS contenders)) (VP (AUX are) (VP (VBG appearing) (NP (NNP Wednesday)) (PP (IN in) (NP (NP (NNP Carson) (NNP City)) (, ,) (NP (NNP Nev.)))) (, ,) (SBAR (IN for) (S (NP (NP (DT a) (NN forum)) (VP (VBN sponsored) (PP (IN by) (NP (NP (NP (DT the) (NNP American) (NNP Federation)) (PP (IN of) (NP (NNP State)))) (, ,) (NP (NNP County)) (CC and) (NP (NP (NNP Municipal) (NNP Employees) (NNP George) (NNP Stephanopoulos)) (PP (IN of) (NP (NNP ABC) (NNP News)))))))) (VP (MD will) (VP (AUX be) (VP (VBG asking) (NP (PRP them)) (NP (NNS questions))))))))) (. .)))
(S1 (S (NP (PRP$ Its) (NN chairman)) (, ,) (NP (NP (NNP John) (NNP W.) (NNP Snow)) (, ,) (NP (DT the) (JJ former) (NNP Treasury) (NN secretary)) (, ,)) (VP (VBD spent) (NP (NP (JJ many) (NNS years)) (VP (VBG running) (NP (NP (DT the) (NNP CSX) (NNP Corporation)) (, ,) (NP (DT the) (JJ big) (NN railroad) (NN company)))))) (. .)))
(S1 (SINV (S (NP (DT The) (NN company) (NN president)) (VP (VBZ says) (SBAR (S (NP (PRP I)) (VP (AUX was) (VP (VBN meant) (PP (IN for) (NP (DT this))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Mr.) (NNP Gaskin)) (, ,) (SBAR (WHNP (WP who)) (S (ADVP (RB once)) (VP (VBD worked) (PP (IN with) (NP (NP (NP (NNP Mother) (NNP Teresa) (POS 's)) (NNPS Missionaries)) (PP (IN of) (NP (NN Charity))) (PP (IN in) (NP (NNP Calcutta))))))))) (. .) ('' '')))
(S1 (SINV (PP (IN Within) (NP (NP (DT a) (NN year)) (PP (IN of) (NP (DT that) (NN age))))) (VP (AUX were)) (NP (NP (NP (NNP Google) (POS 's)) (NX (NX (NNP Sergey) (NNP Brin) (CC and) (NNP Larry) (NNP Page)) (, ,) (NX (NNP Apple) (POS 's) (NNP Steve) (NNP Wozniak)) (, ,) (NX (NNP Yahoo) (POS 's) (NNP Jerry) (NNP Yang)) (, ,) (NX (NNP Skype) (POS 's) (NNP Janus) (NNP Friis)) (, ,) (NX (NNP Chad) (NNP Hurley) (IN from) (NNP YouTube)) (, ,) (CC and) (NX (NNP Tom) (NNP Anderson)))) (PP (IN from) (NP (NNP MySpace)))) (. .) ('' '') ('' '')))
(S1 (S (S (NP (NP (DT This) (NN transaction)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX is) (PP (IN in) (NP (NP (DT the) (NN context)) (PP (IN of) (NP (NP (DT a) (ADJP (JJ fruitful) (CC and) (JJ ongoing)) (NN relationship)) (PP (IN between) (NP (NNP Italy) (CC and) (NNP Russia)))))))))) (, ,)) (VP (VBZ underlines) (NP (NP (DT the) (NN value)) (PP (IN of) (NP (NP (PRP$ our) (JJ strategic) (NN partnership)) (PP (IN with) (NP (NNP Gazprom)))))))) (, ,) ('' '') (NP (NP (NNP Paolo) (NNP Scaroni)) (, ,) (NP (NP (DT the) (JJ chief) (NN executive)) (PP (IN of) (NP (NNP Eni)))) (, ,)) (VP (VBD said) (PP (IN in) (NP (DT a) (NN statement)))) (. .)))
(S1 (S (NP (NP (NN Treatment)) (PP (IN of) (NP (JJ wounded) (NNS soldiers)))) (VP (AUX has) (ADVP (RB also)) (VP (AUX been) (VP (VBN spotlighted) (ADVP (RB recently)) (PP (IN in) (NP (NP (DT a) (NN documentary)) (VP (VBG recounting) (NP (NP (DT the) (NN treatment)) (VP (VBN received) (PP (IN by) (NP (NP (DT the) (NNP ABC) (NNP News) (NN anchorman) (NNP Bob) (NNP Woodruff)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN wounded) (PP (IN in) (NP (NNP Iraq))) (NP (JJ last) (NN year)))))))))))))))) (. .)))
(S1 (S (NP (PRP$ Her) (NNS notes)) (VP (VBP show) (SBAR (S (NP (PRP she)) (VP (VBN considered) (NP (NP (NP (NNP David) (NNP E.) (NNP Sanger)) (PP (IN of) (NP (DT The) (NNP New) (NNP York) (NNP Times)))) (, ,) (NP (NP (NNP Walter) (NNP Pincus)) (PP (IN of) (NP (DT The) (NNP Washington) (NNP Post)))) (CC or) (NP (NP (DT a) ('' '') (NN newsmag) ('' '')) (PP (IN like) (NP (NNP Time) (CC or) (NNP Newsweek))))))))) (. .)))
(S1 (S (NP (NP (NNP Barry) (NNP W.) (NNP Lynn)) (, ,) (NP (NP (JJ executive) (NN director)) (PP (IN of) (NP (NP (NP (NNP Americans) (NNP United)) (PP (IN for) (NP (NP (NN Separation)) (PP (IN of) (NP (NNP Church) (CC and) (NNP State)))))) (, ,) (NP (DT a) (JJ nonprofit) (NN group))))) (, ,)) (VP (VBD criticized) (NP (NNP Mr.) (NNP Bush)) (PP (IN as) (S (VP (VBG promoting) (NP (NP (DT an) (ADJP (RB overtly) (JJ Christian)) (NN tale)) (PP (IN in) (NP (DT the) (JJ public) (NN school) (NN system)))))))) (. .) ('' '')))
(S1 (S (SBAR (IN AS) (S (NP (NP (NNP Stephen) (NNP A.) (NNP Schwarzman)) (, ,) (NP (NP (DT the) (NN chairman)) (PP (IN of) (NP (DT the) (NNP Blackstone) (NNP Group)))) (, ,)) (VP (VBD strolled) (PP (IN out) (PP (IN of) (NP (DT a) (NN panel))))))) (, ,) ('' '') (VP (AUX Is) (ADJP (JJR Bigger)) (ADVP (RB Better)) (PP (IN in) (NP (JJ Private) (NN Equity)))) (. ?)))
(S1 (S (PP (RB Instead) (IN of) (NP (DT the) (NNP Tarleton) (NNP twins))) (, ,) (NP (DT the) (NNP Illinois) (NN senator)) (VP (AUX is) (VP (VBG flirting) (PP (IN with) (NP (DT the) (NNP DreamWorks) (NN trio))) (: :) (NP (NP (NP (NNP Mr.) (NNP Geffen)) (, ,) (NP (NNP Steven) (NNP Spielberg)) (CC and) (NP (NNP Jeffrey) (NNP Katzenberg))) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD gave) (NP (PRP him)) (NP (NP (DT a) (NN party) (JJ last) (NN night)) (SBAR (WHNP (WDT that)) (S (VP (VBD raised) (NP (NP (QP ($ $) (CD 1.3) (CD million))) (CC and) (NP (NP (NNP Hillary) (POS 's)) (NNS hackles))))))))))))) (. .)))
(S1 (S (CC And) (NP (JJ last) (NN week)) (, ,) (NP (NP (NNP Jeffrey) (NNP R.) (NNP Immelt)) (, ,) (NP (NP (DT the) (JJ chief) (NN executive)) (PP (IN of) (NP (NP (NNP General) (NNP Electric)) (, ,) (NP (NP (NNP CNBC) (POS 's)) (NN parent))))) (, ,)) (VP (VBD voiced) (NP (NP (PRP$ his) (NN support)) (PP (IN for) (NP (NP (NNP Ms.) (NNP Bartiromo)) (CC and) (NP (DT the) (NN cable) (NN network)))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Chad) (NNP Hurley)) (, ,) (NP (NP (DT the) (NX (NX (NN co-founder)) (CC and) (NX (JJ chief) (NN executive)))) (PP (IN of) (NP (NNP YouTube)))) (, ,)) (VP (VBD said) (SBAR (S (NP (DT the) (NN company)) (VP (AUX was) (ADVP (RB still)) (VP (VBG working) (PP (IN on) (NP (PRP$ its) (VBG filtering) (NN technology)))))))) (. .)))
(S1 (S (NP (NP (DT A) (NN founder)) (CC and) (NP (NP (NP (NNP YouTube) (POS 's)) (JJ chief) (NN executive)) (NP (NNP Chad) (NNP Hurley)))) (VP (VBD received) (NP (NP (NP (CD 694,087) (NNS shares)) (PP (IN of) (NP (NNP Google)))) (CC and) (NP (NP (DT an) (JJ additional) (CD 41,232)) (PP (IN in) (NP (DT a) (NN trust)))))) (. .)))
(S1 (S (NP (EX There)) (VP (AUX was) (ADVP (RB really)) (NP (NP (NP (RB only) (CD one)) (PP (IN of) (NP (DT those)))) (: --) (NP (NP (NNP Jürgen) (NNP Klinsmann)) (, ,) (NP (NP (DT the) (JJ touchy-feely) (NN coach)) (SBAR (WHNP (WP who)) (S (VP (AUX had) (ADVP (RB just)) (VP (VBN coached) (NP (NNP Germany)) (PP (TO to) (NP (DT a) (JJ glorious) (JJ third) (NN place))))))))))) (. .)))
(S1 (SINV (S (NP (PRP He)) (VP (AUX 's) (ADJP (JJ wonderful)))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Charles) (NNP Fefferman)) (PP (IN of) (NP (NP (NP (NNP Princeton) (NNP University)) (, ,) (NP (PRP himself))) (NP (DT a) (JJ former) (NN child) (NN prodigy)) (CC and) (NP (DT a) (NNP Fields) (NNP Medalist))))) (. .) ('' '')))
(S1 (SINV (S (NP (DT This)) (VP (AUX is) (NP (NP (NP (DT the) (JJ first)) (PP (IN of) (NP (NP (JJ many) (NNS products)) (SBAR (WHNP (WDT that)) (S (VP (AUX are) (VP (VBG going) (S (VP (TO to) (VP (VB come) (PP (IN out) (PP (IN of) (NP (DT the) (NNP AT&T)))))))))))))) (: -) (NP (NNP BellSouth) (NN merger))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Ralph) (FW de) (FW la) (NNP Vega)) (, ,) (NP (NP (NN group) (NN president)) (PP (IN of) (NP (JJ regional) (JJ wireline) (NNS operations))) (PP (IN for) (NP (NP (NNP AT&T)) (, ,) (PP (IN of) (NP (NNP San) (NNP Antonio))))))) (. .)))
(S1 (S (NP (PRP It)) (VP (VBZ offers) (NP (NP (NNS views)) (PP (IN of) (NP (NP (NNP Paris) (NNS rooftops)) (, ,) (NP (NNP Montmartre)) (CC and) (NP (NP (NNP Trinité)) (, ,) (NP (NP (DT the) (NN wedding) (NN cake)) (PP (IN of) (NP (NP (DT a) (NN church)) (PP (IN on) (NP (NP (DT the) (NN corner)) (SBAR (WHADVP (WRB where)) (S (NP (DT the) (NNP Métro) (CC and) (NN neighborhood) (NNS cafes)) (VP (AUX are) (VP (VBN located))))))))))))))) (. .)))
(S1 (S (NP (DT The) (NN strategy)) (VP (AUX is) (PP (IN in) (NP (JJ many) (NNS ways))) (NP (DT a) (NN throwback)) (PP (TO to) (NP (NP (NP (NNP New) (NNP York) (NNP City) (POS 's)) ('' '') (NN model) (NN block) ('' '') (NN program)) (, ,) (SBAR (WHNP (WDT which)) (S (NP (NNP Mr.) (NNP McCarthy)) (VP (VBD presided) (PRT (RP over)) (PP (IN in) (NP (DT the) (JJ late) (NNS 1990s))) (PP (IN in) (NP (DT the) (NNP Washington) (NNP Heights) (NN neighborhood))))))))) (. .)))
(S1 (S (NP (NP (NNP Dr.) (NNP Grace) (NNP Sangyun) (NNP Lee)) (, ,) (NP (NP (DT a) (NN daughter)) (PP (IN of) (NP (NP (NNP Dr.) (NNP Hei) (NNP Suk) (NNP Lee)) (CC and) (NP (NP (NNP Dr.) (NNP Jae) (NNP Yoon) (NNP Lee)) (PP (IN of) (NP (NNP Todt) (NNP Hill))))))) (, ,) (NP (NNP Staten) (NNP Island)) (, ,)) (VP (AUX was) (VP (VBN married) (NP (JJ last) (NN evening)) (PP (TO to) (NP (NP (NNP Dr.) (NNP William) (NNP Gee) (NNP Chang)) (, ,) (NP (NP (DT a) (NN son)) (PP (IN of) (NP (NP (NNP Ya-Huey) (NNP Chang)) (CC and) (NP (NP (NNP Dr.) (NNP Ho-Huang) (NNP Chang)) (PP (IN of) (NP (NP (NNP Charleston)) (, ,) (NP (NNP W.) (NNP Va.)))))))))))) (. .)))
(S1 (S (NP (NP (NP (QP ($ $) (CD 300,000) (TO to) ($ $) (CD 599,999)) (NNP Arden) (NNP Heights)) (ADJP (QP ($ $) (CD 355,000) (CD 20))) (NNP Susanna) (NNP Lane)) (, ,) (NP (NP (NNP Staten) (NNP Island) (NN Number)) (PP (IN of) (NP (NP (NP (NNS bedrooms)) (: :) (NP (NP (CD 2) (NN Number)) (PP (IN of) (NP (JJ full) (NNS bathrooms)))) (: :) (NP (NP (CD 1) (NN Number)) (PP (IN of) (NP (DT half) (NNS bathrooms)))) (: :) (NP (NP (CD 1) (NNS Weeks)) (PP (IN on) (NP (NN market)))) (: :) (NP (NP (CD 16) (NNS weeks)) (ADJP (JJ 16-year-old) (JJ aluminum-sided))) (CC and) (NP (NN brick) (NN town) (NN house))) (NP (JJ eat-in) (NN kitchen))))) (, ,)) (VP (VBD finished) (NP (NN basement)) (PP (IN with) (NP (NP (NN family) (NN room)) (, ,) (NP (NN c\/a)) (, ,) (NP (JJ 1-car) (NN garage)) (, ,) (NP (NN 14-by-73-ft))))) (. .)))
(S1 (S (NP (JJ Many) (NNS families)) (VP (VBD wanted) (NP (DT a) (NN cemetery)) (ADVP (RB close) (PP (TO to) (NP (NP (NNP Washington) (NNPS Heights)) (, ,) (NP (NP (DT the) (NN center)) (PP (IN of) (NP (NP (NP (NNP New) (NNP York) (NNP City) (POS 's)) (NNP Dominican) (NN community)) (, ,) (ADVP (RB specifically)) (NP (NNP Trinity)) (, ,))) (PP (IN at) (NP (JJ 153rd) (NNP Street) (CC and) (NNP Riverside) (NNP Drive)))))))) (. .)))
(S1 (S (CC But) (PP (IN on) (NP (DT a) (JJ rainy) (NN winter) (NN afternoon))) (, ,) (SBAR (IN as) (S (NP (DT some) (CD 20) (NNP Google) (NNS employees)) (VP (VBD hopped) (PP (IN onto) (NP (DT the) (CD 4:40) (NN p.m.))) (ADVP (RB back) (PP (TO to) (NP (NP (DT the) (NNP Mission) (CC and) (NNP Noe) (NNP Valley) (NNS districts)) (PP (IN of) (NP (NNP San) (NNP Francisco))))))))) (, ,) (NP (DT those) (NNS concerns)) (VP (VBD seemed) (ADJP (JJ distant))) (. .)))
(S1 (NP (NP (NP (QP ($ $) (CD 300,000) (TO to) ($ $) (CD 599,999)) (NNP Dongan) (NNP Hills)) (ADJP (QP ($ $) (CD 415,000) (CD 91))) (NN Boundary) (NNP Avenue)) (, ,) (NP (NP (NNP Staten) (NNP Island) (NN Number)) (PP (IN of) (NP (NP (NP (NP (NP (NNS bedrooms)) (: :) (NP (NP (CD 3) (NN Number)) (PP (IN of) (NP (JJ full) (NNS bathrooms)))) (: :) (NP (NP (CD 2) (NN Number)) (PP (IN of) (NP (JJ half) (NNS bathrooms)))) (: :) (NP (NP (CD 0) (NNS Weeks)) (PP (IN on) (NP (NN market)))) (: :)) (NP (CD 39) (NNS weeks)) (JJ 6-year-old) (JJ semi-attached) (NN wood) (NN house)) (NN dining) (NN room)) (, ,) (NP (JJ eat-in) (NN kitchen)) (, ,) (NP (NN family) (NN room))))) (. .)))
(S1 (FRAG (X (NNP Boston) (WP WHAT)) (: :) (NP (DT A) (JJ two-bedroom) (NN condo)) (WHADVP (WRB HOW)) (NP (NP (JJ MUCH)) (: :) (NP (NP ($ $) (CD 599,000)) (PP (IN PER) (NP (JJ SQUARE) (NN FOOT)))) (: :) (NP (NP ($ $) (CD 836)) (VP (VBN Located) (PP (IN in) (NP (NP (DT the) (NNP Back) (NNP Bay) (NN area)) (PP (IN of) (NP (DT the) (NN city))))))) (, ,) (SBAR (S (NP (DT this) (JJ 716-square-foot) (NN condo)) (VP (AUX has) (NP (NP (NNS views)) (PP (IN from) (NP (NP (DT the) (NN apartment)) (CC and) (NP (NP (PRP$ its) (JJ private) (NN roof) (NN deck)) (PP (IN of) (NP (DT the) (NNP Charles) (NNP River))) (, ,) (ADVP (NP (CD one) (NN block)) (RB away)))))))))) (. .)))
(S1 (S (NP (NP (NP (DT The) (JJ recent) (JJ fatal) (NNS shootings)) (PP (IN of) (NP (CD two) (JJ auxiliary) (NN police) (NNS officers)))) (CC and) (NP (NP (DT a) (NN restaurant) (NN worker)) (PP (IN in) (NP (NNP Greenwich) (NNP Village))))) (VP (VBP hark) (ADVP (RB back) (PP (TO to) (NP (NP (DT a) (NN time)) (SBAR (WHADVP (WRB when)) (S (NP (NP (NNP New) (NNP York) (NNP City) (POS 's)) (NNS streets)) (VP (AUX were) (ADJP (ADVP (RB far) (RBR more)) (JJ deadly))))))))) (. .)))
(S1 (NP (NP (NN Lot) (NN size)) (: :) (NP (NP (CD 0.21) (NN acre) (NN Date)) (VP (VBN built))) (: :) (S (NP (NP (CD 2006) (NNP This) (JJ new) (NN home)) (PP (IN inside) (NP (DT the) (NNP Dallas) (NNP beltway)))) (VP (AUX is) (VP (VBN located) (PP (IN in) (NP (NP (NNP Preston) (JJ Hollow)) (, ,) (NP (NP (DT a) (JJ small) (NN oasis)) (PP (IN in) (NP (NP (DT an) (ADJP (RB otherwise) (JJ busy)) (JJ urban) (NN area)) (PP (IN near) (NP (DT the) (NNP Love) (NNP Field) (NN airport))))))))))) (. .)))
(S1 (S (NP (DT The) (JJ other) (NN day)) (, ,) (PP (IN over) (NP (NP (NN lunch)) (PP (IN at) (NP (NP (NP (NNP Angelina) (POS 's)) (NNP Ristorante)) (PP (IN in) (NP (NNP Annadale))))))) (, ,) (NP (PRP he)) (VP (VBD described) (NP (NP (NP (DT a) (NN childhood)) (ADJP (JJ familiar) (PP (TO to) (NP (NP (JJ gay) (NNS men)) (PP (IN throughout) (NP (DT the) (NN island))))))) (: :) (NP (NP (NN membership)) (PP (IN in) (NP (DT the) (NN drama) (NN club))) (PP (IN at) (NP (NP (NNP New) (NNP Dorp) (NNP High) (NNP School)) (, ,) (NP (NP (NNS sessions)) (PP (IN with) (NP (NP (DT a) (NN psychotherapist)) (CC and) (NP (NP (JJ clandestine) (NNS visits)) (PP (TO to) (NP (NP (DT the) (NNP Sand) (NNP Castle)) (CC and) (NP (DT the) (NNP Bay) (NNP Club)))))))) (, ,) (NP (CD two) (JJ now-shuttered) (NNP Staten) (NNP Island) (JJ gay) (NNS bars))))))) (. .)))
(S1 (FRAG (NP (NP (NNP Marlene) (NNP Sehestedt)) (CC or) (NP (NNP Rudy) (NNP Stupar))) (, ,) (NP (NNP United) (NNP Country) (NNP South) (NNP Range) (NNP Prime) (NNPS Properties)) (NP (CD -LRB-719-RRB- 948-2802) (NN www.unitedcountry.com\/puebloco)) (X (NNP Seattle) (WP WHAT)) (: :) (NP (NP (JJ Two-bedroom) (NN condominium)) (SBAR (WHADVP (WRB HOW)) (S (NP (NP (NP (JJ MUCH)) (: :) (NP (NP ($ $) (CD 509,000)) (PP (IN PER) (NP (JJ SQUARE) (NN FOOT)))) (: :) (NP (NP ($ $) (CD 596.72)) (PP (IN On) (NP (NP (DT the) (JJ 21st) (NN floor)) (PP (IN of) (NP (DT the) (JJ 111-unit) (NNP Grandview) (NN condominium))))))) (, ,) (NP (NP (DT this) (JJ 853-square-foot) (NN apartment)) (PP (IN in) (NP (JJ downtown) (NNP Seattle))))) (VP (AUX has) (NP (NP (NNS views)) (PP (IN of) (NP (NP (NNP Lake) (NNP Union)) (, ,) (NP (NNP Mount) (NNP Baker)) (, ,) (NP (NNP Mount) (NNP Rainier)) (CC and) (NP (DT the) (NNP Space) (NN Needle))))))))) (. .)))
(S1 (S (PP (IN DESPITE) (NP (NP (DT the) (JJ recent) (NNS killings)) (PP (IN of) (NP (NP (CD two) (JJ auxiliary) (NN police) (NNS officers)) (CC and) (NP (NP (DT a) (NN restaurant) (NN worker)) (PP (IN in) (NP (NNP Greenwich) (NNP Village)))))))) (, ,) (NP (NNP New) (NNP York) (NNP City)) (VP (VBZ continues) (S (VP (TO to) (VP (VB ride) (NP (NP (DT the) (JJS largest) (CC and) (JJS longest) (JJ municipal) (VBG winning) (NN streak)) (PP (IN in) (NP (NP (DT the) (JJ recorded) (NN history)) (PP (IN of) (NP (NP (NN crime) (NN control)) (PP (IN in) (NP (DT the) (NNP United) (NNPS States)))))))))))) (. .)))
(S1 (FRAG (NP (NP (NNP Sunday)) (PP (IN at) (NP (NP (CD 1) (NN p.m.)) (, ,) ('' '') (VP (VBN Made) (PP (IN in) (NP (NNP New) (NNP York))))))) (: :) (NP (NP (NP (DT The) (NNP Archaeology)) (PP (IN of) (NP (NP (NNP New) (NNP York) (NNP City) (POS 's)) (NNP Industrial) (NNP Past)))) (, ,) ('' '') (NP (NP (DT a) (NN conference)) (VP (VBN sponsored) (PP (IN by) (NP (NP (DT the) (NNP Professional) (NNPS Archaeologists)) (PP (IN of) (NP (NNP New) (NNP York) (NNP City))) (SBAR (WHNP (WDT that)) (S (VP (VBZ covers) (NP (NP (DT the) (NN history)) (PP (IN of) (NP (NP (DT a) (JJ Dutch) (NN windmill)) (PP (IN on) (NP (NP (NNP Governors) (NNP Island)) (, ,) (NP (NP (NP (DT an) (JJ 18th-century) (NN tannery)) (PP (IN in) (NP (NNP Lower) (NNP Manhattan)))) (CC and) (NP (NP (DT a) (NN ship) (NN repair) (NN facility)) (PP (IN in) (NP (NNP Brooklyn)))))))))))))))))) (. .)))
(S1 (S (PP (IN Despite) (NP (DT the) (NN property) (NN damage))) (, ,) (NP (DT no) (JJ serious) (NNS injuries)) (VP (AUX were) (VP (VBN reported) (PP (IN in) (NP (DT the) (JJ four-alarm) (NNP Staten) (NNP Island) (NN blaze))) (, ,) (PP (IN in) (NP (NP (DT the) (NNP Midland) (NNP Beach) (NN section)) (PP (IN of) (NP (DT the) (NN island))))))) (. .)))
(S1 (S (S (NP (NP (NNS Cities)) (PP (IN like) (NP (NNP New) (NNP York)))) (VP (VBP grow) (PP (IN in) (NP (PRP$ their) (NN unbuilding))))) (: :) (S (NP (NN demolition)) (VP (VBZ tends) (S (VP (TO to) (VP (VB precede) (NP (NP (NN development)) (, ,) (UCP (ADVP (RBS most) (RB urgently)) (CC and) (PP (ADVP (RB particularly)) (IN in) (NP (NP (NNP Lower) (NNP Manhattan)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (NNP New) (NNP York) (NNP City)) (VP (VBD began))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (NN collaboration)) (PP (IN with) (NP (NP (NNP Assemblyman) (NNP Thomas) (NNP P.) (NNP Giblin)) (, ,) (NP (NP (DT a) (NNP Democrat)) (SBAR (WHNP (WP$ whose) (NN family)) (S (VP (AUX has) (NP (NP (NNS roots)) (PP (IN in) (NP (NP (NNP County) (NNP Roscommon)) (CC and) (NP (NP (DT the) (NNP Vailsburg) (NN section)) (PP (IN of) (NP (NNP Newark))))))))))))))) (, ,) (NP (NP (NNP Mr.) (NNP Cummings)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (NP (NP (DT the) (JJ assistant) (NN director)) (PP (IN for) (NP (JJ special) (NNS collections))) (PP (IN at) (NP (DT the) (NNP Newark) (NNP Public) (NNP Library))))))) (, ,)) (VP (VBD began) (S (VP (VBG searching) (NP (NNS archives)) (PP (IN for) (NP (NP (NNS pieces)) (PP (IN of) (NP (DT the) (NN story)))))))) (. .)))
(S1 (S (S (S (PP (IN At) (NP (NP (DT the) (NNP February) (NN meeting)) (PP (IN of) (NP (NP (DT the) (NNP American) (NNP Association)) (PP (IN for) (NP (NP (DT the) (NNP Advancement)) (PP (IN of) (NP (NNP Science))) (PP (IN in) (NP (NNP San) (NNP Francisco))))))))) (, ,) (NP (JJ myriad) (NNS choices)) (VP (AUX were) (ADJP (JJ available)) (PP (IN at) (NP (NP (DT a) (NN reception)) (: --) (S (NP (JJ dim) (NN sum)) (VP (TO to) (VP (VB celebrate) (NP (DT the) (NNP Chinese) (NNP New) (NNP Year))))))))) (, ,) (NP (JJ Italian) (NNS delicacies)) (VP (TO to) (VP (VB highlight) (NP (NP (DT the) (NN city) (POS 's)) (NNP North) (NNP Beach) (NN area))))) (, ,) (NP (NNS spanakopita)) (, ,) (VP (VB beef) (NP (NNP Wellington))) (: --) (CC but) (S (NP (DT the) (NNS scientists)) (VP (AUX were) (PP (IN on) (NP (PRP$ their) (JJ own))) (PP (IN for) (NP (DT all) (JJ other) (NNS meals))))) (. .)))
(S1 (S (S (NP (NNP New) (NNP York) (NNP City)) (VP (MD will) (VP (VB supply) (NP (JJ bullet-resistant) (NNS vests)) (PP (TO to) (NP (NP (DT all)) (PP (IN of) (NP (PRP$ its) (CD 4,500) (JJ auxiliary) (NN police) (NNS officers)))))))) (, ,) (NP (NN city) (NNS officials)) (VP (VBD announced) (NP (NP (NN yesterday)) (, ,) (NP (QP (JJR less) (IN than) (CD two)) (NNS weeks))) (PP (IN after) (S (NP (NP (NP (CD two)) (PP (IN of) (NP (DT the) (NNS officers)))) (: --) (SBAR (WHNP (WP who)) (S (VP (AUX are) (VP (VBN unarmed) (NP (NNS volunteers)))))) (: --)) (VP (AUX were) (VP (VBN gunned) (PRT (RP down)) (PP (IN in) (NP (NNP Greenwich) (NNP Village)))))))) (. .)))
(S1 (S (NP (PRP They)) (VP (AUX 're) (VP (VP (VBG writing) (PP (IN about) (NP (NP (NNP Jamaica) (NN Plain)) (CC or) (NP (NNP Dorchester)) (CC or) (NP (DT the) (NNP Boston) (NN music) (NN scene))))) (CC or) (VP (VBG windsurfing) (PP (IN on) (NP (NNP Massachusetts) (NNP Bay)))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Peter) (NNP Matthiessen)) (, ,) (NP (DT the) (NN writer)) (, ,)) (VP (VBD recalled) (S (VP (VBG meeting) (NP (NNP Mr.) (NNP Styron)) (PP (IN in) (NP (NNP Montparnasse))) (PP (IN in) (NP (NNP Paris))) (, ,) (ADVP (RB just)) (NP (NNS weeks)) (SBAR (IN before) (S (NP (NP (DT the) (NN publication)) (PP (IN of) ('' ''))) (VP (VBP Lie) (ADVP (RB Down)) (PP (IN in) (NP (NN Darkness))))))))) (. .) ('' '') ('' '')))
(S1 (S (NP (PRP He)) (VP (AUX was) (VP (ADVP (RB best)) (VBN known) (ADVP (RB nationally)) (PP (IN for) (NP (NP (PRP$ his) (JJ pivotal) (NN role)) (PP (IN in) (NP (NP (DT the) (NN revival)) (PP (IN of) (NP (NP (JJ downtown) (NNP Baltimore)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD transformed) (NP (DT a) (JJ moribund) (JJ port) (NN city)) (PP (IN into) (NP (NP (DT a) (NN model)) (PP (IN of) (NP (JJ urban) (NN renaissance))))) (PP (IN through) (NP (NP (NNS projects)) (PP (IN like) (NP (NP (NNP Charles) (NNP Center)) (CC and) (NP (NP (DT the) (NN redevelopment)) (PP (IN of) (NP (DT the) (NNP Inner) (NNP Harbor))))))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (NN addition)) (PP (TO to) (NP (PRP$ its) (JJ natural) (NNS areas))))) (, ,) (NP (NN Gateway)) (VP (AUX is) (ADVP (RB also)) (ADVP (RB home)) (PP (TO to) (NP (NP (NP (DT the) (NN nation) (POS 's)) (ADJP (JJS oldest) (VBG continuing)) (NN operating) (NN lighthouse)) (, ,) (NP (NNP Sandy) (NN Hook) (NNP Lighthouse)) (, ,) (VP (VBN built) (PP (IN in) (NP (NP (CD 1764) (NNP Floyd) (NNP Bennett) (NNP Field)) (PP (IN in) (NP (NNP Brooklyn)))))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX was) (NP (NP (NP (DT the) (NN city) (POS 's)) (JJ first) (JJ municipal) (NN airfield) (NNP Fort) (NNP Wadsworth)) (PP (IN on) (NP (NP (NNP Staten) (NNP Island)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ predates) (NP (NP (DT the) (NNP Revolutionary) (NNP War)) (CC and) (NP (NP (NNP Rockaway) (NNP Point)) (PP (IN in) (NP (NNP Queens))))))))))))))))) (. .)))
(S1 (S (NP (DT Some)) (VP (VBD murmured) (PP (IN about) (NP (NP (DT a) (JJ new) (NN rink)) (SBAR (WHNP (WDT that)) (S (VP (MD may) (VP (VB open) (ADVP (ADVP (RB as) (RB soon)) (PP (IN as) (NP (NP (JJ next) (NN month)) (PP (IN in) (NP (NP (NNP Richmond) (NNP Valley)) (PP (IN on) (NP (NNP Staten) (NNP Island))))))))))))))) (. .)))
(S1 (S (NP (NNP Ellen) (NNP Fuchs)) (ADJP (RB Dear) (JJ Diary)) (: :) (NP (NP (NP (DT A) (NN friend)) (PP (IN of) (NP (NN mine)))) (, ,) (NP (NP (DT a) (JJ transplanted) (NNP New) (NNP Yorker)) (VP (VBG visiting) (PP (IN from) (NP (NNP Swaziland))))) (, ,)) (VP (VBD braved) (NP (NP (NNP New) (NNP York) (NNP City) (NN traffic)) (SBAR (S (VP (TO to) (VP (VP (VB drive) (NP (NP (PRP$ her) (NNS parents) (POS ')) (NN car))) (CC and) (VP (VB meet) (NP (PRP me)) (PP (IN in) (NP (NNP Greenwich) (NNP Village)))))))))) (. .)))
(S1 (S (NP (DT The) (NNP New) (NNP York) (NNP City) (NNP Police) (NNP Pension) (NNP Fund)) (VP (AUX has) (VP (VBN approved) (NP (JJ line-of-duty) (NN death) (NNS benefits)) (PP (IN for) (NP (NP (DT the) (NN family)) (PP (IN of) (NP (NP (NNP Cesar) (NNP A.) (NNP Borja)) (, ,) (NP (NP (DT the) (NN police) (NN officer)) (SBAR (WHNP (WHNP (WP$ whose) (NN death)) (PP (IN in) (NP (NNP January)))) (S (VP (VBD became) (NP (NP (DT a) (NN symbol)) (PP (IN of) (NP (NP (DT the) (NN plight)) (PP (IN of) (NP (NP (DT those)) (SBAR (WHNP (WP who)) (S (VP (VBD worked) (PP (IN in) (NP (NNP Lower) (NNP Manhattan))) (PP (IN after) (NP (CD 9\/11))))))))))))))))))))) (. .)))
(S1 (S (NP (EX There)) (VP (AUX is) (NP (NP (DT a) (NN spot)) (PP (IN in) (NP (NNP New) (NNP York) (NNP City))) (SBAR (WHADVP (WRB where)) (S (NP (PRP you)) (VP (MD can) (VP (VP (VB watch) (NP (DT the) (NN dawn) (NN blush)) (PP (IN over) (NP (NP (NNP Jamaica) (NNP Bay)) (PP (IN in) (NP (NNP Queens)))))) (CC and) (VP (VB slip) (ADVP (RB swiftly)) (PP (IN down) (NP (NP (DT the) (NN shore)) (PP (TO to) (NP (NNP Coney) (NNP Island))) (PP (IN in) (NP (NNP Brooklyn)))))) (, ,) (RB then) (VP (NN hop) (PP (IN across) (NP (NNP New) (NNP York) (NNP Harbor))) (PP (TO to) (NP (NP (JJ suburban) (NNS stretches)) (PP (IN of) (NP (NNP Staten) (NNP Island)))))))))))) (. .)))
(S1 (FRAG (NP (NNP New) (NNP York) (NNP City)) (INTJ (UH BAM)) (NP (NP (NN RHYTHM)) (CC AND) (NP (NP (NNP BLUES) (NNP FESTIVAL) (NNP MetroTech) (NNPS Commons)) (, ,) (NP (NNP Flatbush) (CC and) (NNP Myrtle) (NNS Avenues)) (, ,) (NP (NNP Brooklyn)) (, ,) (NP (NNP June) (NN 7-Aug)))) (. .)))
(S1 (S (NP (NP (QP ($ $) (CD 300,000) (TO to) ($ $) (CD 599,999)) (NNP Eltingville) (NP (QP ($ $) (CD 497,000) (CD 282))) (NNP Thornycroft) (NNP Avenue)) (, ,) (NP (NP (NNP Staten) (NNP Island) (NN Number)) (PP (IN of) (NP (NP (NP (NNS bedrooms)) (: :) (NP (NP (CD 4) (NN Number)) (PP (IN of) (NP (JJ full) (NNS bathrooms)))) (: :) (NP (NP (CD 2) (NN Number)) (PP (IN of) (NP (DT half) (NNS bathrooms)))) (: :) (NP (NP (CD 0) (NNS Weeks)) (PP (IN on) (NP (NN market)))) (: :) (NP (CD 22) (NNS weeks))) (NP (JJ 50-year-old) (NN wood) (NNP Cape) (NNP Cod) (NN dining) (NN area))))) (, ,) (NP (JJ renovated) (NNS baths)) (, ,) (NP (NN family) (NN room)) (, ,)) (VP (VBD finished) (NP (NP (NN basement)) (, ,) (NP (NNP whirlpool)) (, ,) (NP (NN deck)) (, ,) (NP (NN 50-by-100-ft)))) (. .)))
(S1 (S (NP (DT The) (JJ only) (NN way) (S (VP (TO to) (VP (VB reach) (NP (NNP Liberty) (NNP Island)) (PP (IN from) (NP (NNP New) (NNP York) (NNP City))))))) (VP (AUX is) (S (VP (TO to) (VP (VB file) (PP (IN onto) (NP (NP (CD one)) (PP (IN of) (NP (DT the) (JJ old) (NNP Circle) (NNP Line) (NNS boats))))) (, ,) (PP (IN after) (S (VP (VBG enduring) (NP (NP (DT a) (JJ long) (NN wait)) (PP (IN for) (NP (NP (NNS tickets)) (CC and) (NP (NP (DT a) (NN line)) (PP (IN at) (NP (DT the) (NN security) (NN checkpoint))) (SBAR (WHADVP (WRB where)) (S (NP (DT all) (NNS visitors)) (VP (MD must) (VP (VB remove) (NP (PRP$ their) (NNS shoes) (, ,) (NNS jackets) (CC and) (NNS belts))))))))))))))))) (. .)))
(S1 (S (NP (NNP Pat) (NNP Oines)) (VP (VBD discovered) (NP (DT the) (NN theft)) (ADVP (NP (CD three) (NNS weeks)) (RB ago)) (SBAR (WHADVP (WRB when)) (S (NP (PRP she)) (VP (VBD arrived) (PP (IN at) (NP (NP (DT the) (NN mausoleum)) (PP (IN of) (NP (PRP$ her) (NN daughter) (NNP Jennifer))))) (PP (IN at) (NP (NP (DT the) (NNP Moravian) (NNP Cemetery)) (PP (IN near) (NP (NNP Todt) (NNP Hill))) (PP (IN on) (NP (NNP Staten) (NNP Island))))))))) (. .)))
(S1 (FRAG (CC And) (NP (NP (NNP Maria) (NNP Alves)) (, ,) (NP (CD 39)) (, ,) (NP (NP (DT a) (JJ dental) (NN assistant)) (PP (IN from) (NP (NP (DT the) (NNP Dorchester) (NN area)) (PP (IN of) (NP (NNP Boston)))))) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX has) (NP (NP (NP (CD two) (NNS children)) (, ,) (NP (NNS ages) (CD 9) (CC and) (CD 14)) (, ,)) (CC and) (NP (NP (DT a) (NN husband)) (PP (IN on) (NP (NN disability))))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT The) (JJS biggest) (NN festival)) (PP (IN in) (NP (NNP New) (NNP York) (NNP City)))) (VP (AUX is) (ADVP (RB actually)) (NP (NP (QP (RB not) (CD one)) (NN series)) (CC but) (NP (NP (JJ many)) (, ,) (VP (VBN combined) (PP (IN into) (NP (DT a) (JJ single) (NN marketing) (NN umbrella))) (PP (IN after) (NP (CD 9\/11))) (S (VP (TO to) (VP (VB help) (VP (VB revive) (NP (NNP Lower) (NNP Manhattan)))))))))) (. .)))
(S1 (SINV (S (NP (CD Four) (NNP Boroughs) (NNPS Grymes) (NNP Hill)) (NP ($ $) (CD 225,000) (CD 755))) (VP (VBZ Narrows)) (NP (NP (NNP Road)) (, ,) (NP (NP (NNP Staten) (NNP Island)) (QP (CD 1) (CD 1)) (NP (QP (CD 0) (CD 10)) (NNS weeks)) (NN 690-sq))) (. .)))
(S1 (S (ADVP (RBR Closer) (PP (TO to) (NP (NN home)))) (, ,) (SBAR (IN before) (S (NP (DT the) (NNP New) (NNP York) (NNP City) (NNS police)) (VP (VBD locked) (NP (DT the) (NN place)) (ADVP (RB up))))) (, ,) (NP (PRP he)) (VP (VBD transformed) (S (NP (DT a) (JJ ghostly) (JJ turn-of-the-century) (JJ industrial)) (VP (VB shed) (PP (IN on) (NP (NN Pier) (CD 52))))) (, ,) (PP (IN near) (NP (NP (NNP Gansevoort) (NNP Street)) (PP (IN in) (NP (NNP Greenwich) (NNP Village))) (PRN (-LRB- -LRB-) (SBAR (WHADVP (WRB where)) (S (NP (PRP he)) (VP (VBD grew) (PRT (RP up))))) (-RRB- -RRB-)))) (, ,) (PP (IN into) (NP (NP (DT a) (JJ temporary) (NNP cathedral)) (PP (IN of) (NP (NN light)))))) (. .)))
(S1 (S (NP (NP (JJS Most)) (PP (IN of) (NP (PRP them)))) (ADVP (RB also)) (VP (VBD grew) (PRT (RP up)) (PP (IN in) (NP (NP (NNP New) (NNP York) (NNP City) (NNS neighborhoods)) (PP (IN like) (NP (NP (NP (NN Hell) (POS 's)) (NN Kitchen)) (, ,) (NP (NP (NNP Forest) (NNP Hills)) (, ,) (NP (NNP Washington) (NNP Heights)) (CC and) (NP (NNP Kew) (NNPS Gardens))) (, ,) (VP (VBG whiling) (PRT (RP away)) (NP (NP (JJ countless) (NNS hours)) (VP (VBG playing) (NP (DT the) (ADJP (RB quintessentially) (JJ urban)) (NN street) (NN game))) (SBAR (WHNP (WDT that)) (S (VP (VBD consumed) (NP (NN city) (NNS children)) (SBAR (RB long) (IN before) (S (NP (NP (JJ high-pressured) (NNP Little) (NNPS Leagues)) (CC and) (NP (JJ other) (JJ organized) (NNS sports) (NNS programs))) (VP (VBD took) (PRT (RP over)) (NP (DT the) (NNS suburbs))))))))))))))) (. .)))
(S1 (S (NP (NP (PRP$ His) (JJ untimely) (NN passing)) (PP (IN on) (NP (NP (NNP February) (CD 10) (, ,) (CD 2007)) (, ,) (PP (IN at) (NP (DT the) (NN age) (CD 34))) (, ,)))) (VP (VBD occurred) (PP (IN in) (NP (NP (PRP$ his) (JJ beloved) (NN community)) (PP (IN of) (NP (NNP Greenwich) (NNP Village))) (PP (IN in) (NP (NNP New) (NNP York) (NNP City)))))) (. .)))
(S1 (S (NP (DT The) (NN History) (NNP Baychester)) (VP (AUX was) (ADJP (RB largely) (JJ marshland)) (PP (IN until) (NP (NP (DT a) (NN cucumber) (NN farm) (CC and) (NN pickle) (NN factory)) (VP (VBD sprang) (PRT (RP up)) (PP (IN in) (NP (DT the) (JJ late) (JJ 19th) (NN century)))))) (, ,) (PP (VBG according) (PP (TO to) (NP (NP (DT the) (NNP Encyclopedia)) (PP (IN of) (NP (NNP New) (NNP York) (NNP City))))))) (. .)))
(S1 (NP (NP (DT A) (NN search)) (PP (IN by) (NP (DT the) (NN city))) (PP (IN of) (NP (PRP$ its) (NNS files))) (VP (VBG concerning) (NP (NP (NNP Cesar) (NNP A.) (NNP Borja)) (, ,) (NP (NP (DT the) (NNP New) (NNP York) (NNP City) (NN police) (NN officer)) (SBAR (WHNP (WHNP (WP$ whose) (NN death)) (PP (IN from) (NP (NN lung) (NN disease)))) (S (VP (AUX was) (VP (VBN held) (PRT (RP up)) (PP (IN as) (NP (NP (DT an) (NN example)) (PP (IN of) (NP (NP (DT the) (JJ medical) (NNS problems)) (VP (VBG affecting) (NP (NP (NNS thousands)) (PP (IN of) (NP (NN ground) (NN zero) (NNS workers) (CC and) (NNS volunteers))) (, ,) (VP (VBD found) (NP (DT no) (NN record) (SBAR (IN that) (S (NP (PRP he)) (VP (VBD worked) (PP (IN in) (NP (NNP Lower) (NNP Manhattan))) (PP (IN until) (NP (NP (NNP Dec.) (CD 24) (, ,) (CD 2001)) (, ,) (NP (QP (JJR more) (IN than) (CD three)) (NNS months)))) (PP (IN after) (NP (DT the) (CD 9\/11) (NN attack))))))))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NNP New) (NNP York) (NNP City))) (NP (PRP he)) (VP (VBZ rents) (NP (NP (CD 30,000) (JJ square) (NNS feet)) (PRN (: --) (NP (QP (RB about) (CD 80)) (NNS rooms)) (: --)) (PP (IN of) (NP (NP (JJ former) (NN office) (NN space)) (PP (IN in) (NP (NP (DT the) (NNP West) (NNP Village)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ houses) (NP (NP (CD 35) (NNS birds)) (, ,) (NP (JJ tropical) (NNS plants)) (CC and) (NP (ADJP (RB wildly) (VBN colored)) (NNS areas)))))))))))) (. .)))
(S1 (S (S (PP (IN In) (NP (CD 1948))) (, ,) (NP (NNP Rabbi) (NNP Kret)) (VP (VBD came) (PP (TO to) (NP (NNP New) (NNP York) (NNP City))))) (, ,) (CC and) (S (PP (IN with) (NP (NP (DT the) (NN help)) (PP (IN of) (NP (NNP Rabbi) (NNP Yosef) (NNP Eliyahu) (NNP Henkin))) (, ,) (PP (IN of) (NP (VBN blessed) (NN memory))))) (, ,) (NP (PRP he)) (VP (AUX was) (VP (VBN hired) (PP (IN as) (NP (NP (DT the) (NN rabbi)) (PP (IN of) (NP (NP (DT the) (NNP Old) (NNP Broadway) (NNP Synagogue)) (PP (IN in) (NP (NP (DT the) (NNP West) (NNP Harlem) (NN neighborhood)) (PP (IN of) (NP (NNP Manhattanville)))))))))))) (. .)))
(S1 (SINV (S (NP (NP (DT A) (NN survey)) (PP (IN by) (NP (NP (DT the) (NNP Sierra) (NNP Club)) (PP (IN in) (NP (NP (NNS neighborhoods)) (ADJP (JJ southeast) (PP (IN of) (NP (DT the) (NNP Brooklyn) (NNP Bridge)))) (, ,) (PP (VBG including) (NP (NP (JJ Red) (NN Hook)) (, ,) (NP (NNP Brooklyn) (NNPS Heights)) (CC and) (NP (NNP Park) (NN Slope)))) (, ,)))))) (VP (VBD found) (NP (JJ similar) (NNS results)))) (, ,) (VP (VBD said)) (NP (NP (NNP Suzanne) (NNP Y.) (NNP Mattei)) (, ,) (NP (NP (DT the) (NN club) (POS 's)) (JJ New) (NNP York) (NNP City) (NN executive))) (. .) ('' '')))
(S1 (S (NP (NP (DT The) (NN museum)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD opened) (PP (IN in) (NP (NP (DT the) (NNP North) (NNP Beach) (NN neighborhood)) (PP (IN of) (NP (NNP San) (NNP Francisco))))) (NP (JJ last) (NN fall))))) (, ,)) (VP (AUX has) (VP (VBN made) (NP (NNS plans) (S (VP (TO to) (VP (VB sponsor) (NP (NP (DT a) (NN spring) (NN tour)) (PP (IN of) (NP (NP (NP (NNP Mr.) (NNP Morgan) (POS 's)) (NN space) (NN scrap)) (PP (IN in) (NP (DT a) (JJ vintage) (NNP Airstream) (NN trailer)))))) (, ,) (S (VP (VBG creating) (NP (NP (DT a) (NN kind)) (PP (IN of) (NP (NP (JJ Electric) (JJ Kool-Aid) (NN Acid) (NN Test)) (PP (IN for) (NP (DT the) (NNP astronomy) (NN set)))))))))))))) (. .)))
(S1 (S (NP (PRP You)) (VP (MD can) (VP (VB line) (PRT (RP up)) (PP (IN along) (NP (DT the) (NN route))) (S (VP (TO to) (VP (VB cheer) (PP (IN for) (NP (NP (DT the) (CD 32,000) (NNS riders)) (, ,) (SBAR (WHNP (WP$ whose) (JJ 42-mile) (NN trip)) (S (VP (MD will) (VP (VP (VB start) (PP (IN in) (NP (NNP Battery) (NNP Park)))) (CC and) (VP (VB end) (PP (IN with) (NP (NP (DT a) (NN festival)) (PP (IN at) (NP (NNP Fort) (NNP Wadsworth))) (PP (IN on) (NP (NNP Staten) (NNP Island))))))))))))))))) (. .)))
(S1 (S (S (NP (NNS Schoolchildren)) (VP (TO to) (VP (VB Dance) (PP (IN With) (NP (NNP Berlin) (NNP Philharmonic) (NNP One))) (NP (NP (QP (CD hundred) (CD twenty)) (S (NP (NNP New) (NNP York) (NNP City) (JJ public-school) (NNS children)) (VP (MD will) (VP (VB dance) (PP (IN with) (NP (DT the) (NNP Berlin) (NNP Philharmonic))) (SBAR (WHADVP (WRB when)) (S (NP (NNP Simon)) (VP (VB Rattle) (, ,) (ADVP (RB right)) (, ,) (VP (VBZ leads) (NP (DT the) (NN orchestra)) (PP (IN in) (NP (NP (CD two) (NNS performances)) (PP (IN of) (NP (NNP Stravinsky) (POS 's)))))))))))) ('' '') (NN Rite)) (PP (IN of) (NP (NNP Spring)))) ('' '') (PP (IN in) (NP (NP (DT the) (NN fall)) (PP (IN at) (NP (NP (DT the) (NNP United) (NNP Palace) (NNP Theater)) (PP (IN at) (NP (NP (NNP Broadway)) (CC and) (NP (JJ 175th) (NNP Street)))) (PP (IN in) (NP (NNP Washington) (NNPS Heights)))))))))) (, ,) (NP (NNP Carnegie) (NNP Hall)) (VP (VBD said) (NP (NN yesterday))) (. .)))
(S1 (S (NP (NP (DT The) (NN part)) (PP (IN of) (NP (NNP Oak) (NNP Cliff))) (SBAR (WHNP (WDT that)) (S (VP (AUX has) (ADVP (RB best)) (VP (VBN resolved) (NP (DT the) (NNP Dallas\/not) (NNP Dallas) (NN conundrum))))))) (, ,) (ADVP (RB however)) (, ,) (VP (AUX is) (NP (NP (DT the) (NNP Bishop) (NNP Arts) (NNP District)) (, ,) (NP (NP (DT a) (NN collection)) (PP (IN of) (NP (NP (JJ small) (VBN restored) (NNS shops)) (CC and) (NP (NN office) (NNS buildings)))) (PP (IN from) (NP (DT the) (CD 1920s))) (SBAR (WHNP (WDT that)) (S (VP (VBZ includes) (NP (DT the) (NNP Nodding) (NNP Dog)))))))) (. .)))
(S1 (S (NP (NP (NNP Princeton) ('' '') (NNP Kiki) (POS 's)) (NNP Paris)) (, ,) ('' '') (NP (NP (UCP (NN lecture) (CC and) (JJ vintage)) (NNS photographs)) (PP (IN about) (NP (NP (DT the) (NNS artists) (CC and) (NNS writers)) (PP (IN of) (NP (NNP Montparnasse)))))) (VP (VBD presented) (PP (IN by) (NP (NP (DT the) (NNP Alliance) (NNP Française)) (PP (IN of) (NP (NNP Princeton)))))) (. .)))
(S1 (S (NP (NP (NNP J.) (NNP W.) (NNP ROBINSON)) (, ,) (NP (CD 80)) (, ,)) (VP (VBZ remembers) (SBAR (WHADVP (WRB when)) (S (NP (NP (DT the) (JJ Sweet) (NNP Auburn) (NN neighborhood)) (PP (IN in) (NP (NNP Atlanta)))) (VP (AUX was) (NP (NP (DT a) (NN mecca)) (PP (IN for) (NP (NP (JJ aspiring) (JJ African-American) (NNS professionals)) (PP (IN like) (NP (PRP himself)))))))))) (. .)))
(S1 (S (CC And) (NP (NP (NNS meteorologists)) (VP (VBN profiled) (NP (NP (DT an) (JJ astounding) (NN storm)) (: :) (NP (NP (CD 7.57) (NNS inches)) (PP (IN of) (NP (NN rain))))) (PP (IN in) (NP (NNP Central) (NNP Park))) (PP (IN on) (NP (NNP Sunday))))) (VP (VBD made) (NP (PRP it)) (NP (NP (DT the) (NN city) (POS 's)) (JJS second-wettest) (NN day)) (SBAR (IN since) (S (NP (NN recordkeeping)) (VP (VBD began) (PP (IN in) (NP (NP (CD 1869) (JJ other) (NN rain) (NNS records)) (SBAR (S (VP (AUX were) (VP (VBN set) (PP (IN in) (NP (NP (NNP Philadelphia) (, ,) (NNP Newark) (, ,) (NNP Trenton) (, ,) (NNP Baltimore) (, ,) (NNP Washington) (CC and) (NNP Bridgeport)) (, ,) (NP (NNP Conn.)))))))))))))) (. .)))
(S1 (S (S (VP (VBN Situated) (PP (IN on) (NP (NNP Key) (NNP Highway))) (, ,) (PP (IN on) (NP (NP (DT the) (JJ south) (NN side)) (PP (IN of) (NP (NP (NNP Baltimore) (POS 's)) (NNP Inner) (NNP Harbor))))))) (, ,) (NP (DT the) (NN museum)) (VP (AUX has) (NP (JJ fabulous) (NN outsider) (NN art))) (. .)))
(S1 (S (NP (NP (NNP B1) (NNP New) (NNP Restaurant) (NN Rat) (NNP Patrol) (NNP New) (NNP York) (NNP City) (POS 's)) (NN health) (NN department)) (VP (AUX is) (VP (VBG revamping) (SBAR (WHADVP (WRB how)) (S (NP (PRP it)) (VP (VBZ inspects) (NP (NNS restaurants)) (PP (IN for) (NP (NP (JJ potential) (JJ rodent) (NN infestation)) (PP (IN after) (NP (NP (DT a) (NN review)) (VP (VBN prompted) (PP (IN by) (NP (NP (DT a) (ADJP (RB widely) (VBN seen)) (NN news) (NN video)) (PP (IN of) (NP (NP (NNS rats)) (VP (VBG swarming) (PP (IN in) (NP (NP (DT a) (NNP KFC\/Taco) (NNP Bell) (NN restaurant)) (PP (IN in) (NP (NNP Greenwich) (NNP Village)))))))))))))))))))) (. .)))
(S1 (S (S (NP (DT A) (NN burglar)) (VP (AUX has) (VP (VBN struck) (NP (QP (IN at) (JJS least) (CD 13)) (NNS homes)) (PP (IN in) (NP (NP (DT the) (JJ past) (NN month)) (PP (IN in) (NP (DT the) (NNP West) (NNP Brighton) (CC and) (NNP Westerleigh) (NNS areas))) (PP (IN of) (NP (NNP Staten) (NNP Island))) (PP (IN in) (NP (DT the) (JJ past) (NN month)))))))) (, ,) (NP (DT the) (NN police)) (VP (VBD said) (NP (NN yesterday))) (. .)))
(S1 (SINV (S (ADVP (NP (CD Two) (NNS years)) (RB earlier)) (, ,) (NP (NNP Citigroup)) (VP (VP (VBD moved) (NP (CD 1,900) (NNS employees)) (PP (IN out) (PP (IN of) (NP (NP (NNP Lower) (NNP Manhattan)) (, ,) (NP (NP (JJS most)) (PP (IN of) (NP (PRP them))))))) (PP (TO to) (NP (NP (DT a) (JJ corporate) (NN campus)) (PP (IN in) (NP (NNP Warren) (, ,) (NNP N.J.)))))) ('' '') (NP (NP (DT The) (JJ flip) (NN side)) (PP (IN of) (NP (PDT all) (DT this) (NN prosperity)))))) (, ,) ('' '') (VP (VBD said)) (S (NP (NP (NNP Kathryn) (NNP S.) (NNP Wylde)) (, ,) (NP (NP (NN president)) (PP (IN of) (NP (DT the) (NNP Partnership))) (PP (IN for) (NP (NNP New) (NNP York) (NNP City)))) (, ,) ('' '')) (VP (AUX is) (SBAR (IN that) (S (S (NP (ADJP (JJR lower) (: -) (CC and) (JJ middle-income)) (NNS workers)) (VP (AUX are) (VP (AUXG being) (VP (VBN priced) (PRT (RP out)) (PP (IN of) (NP (DT the) (NN housing) (NN market))))))) (CC and) (S (NP (NP (DT the) (ADJP (JJ technical) (CC and) (JJ operational)) (NNS jobs)) (PP (IN at) (NP (PRP$ our) (JJ major) (NNS industries)))) (VP (MD can) (ADVP (RB no) (RB longer)) (VP (VB afford) (NP (DT the) (NNS rents))))))))) (. .) ('' '')))
(S1 (S (ADVP (RB Still)) (, ,) (NP (NNP Mr.) (NNP Elghanayan)) (VP (VBD said) (SBAR (S (NP (NNP Rockrose)) (VP (AUX was) (PP (IN in) (NP (NP (DT the) (NN process)) (PP (IN of) (S (VP (VBG selling) (PRT (RP off)) (NP (NP (DT a) (NN couple)) (PP (IN of) (NP (PRP$ its) (NNS assets)))) (PP (IN in) (NP (NNP Lower) (NNP Manhattan))) (, ,) (SBAR (IN while) (S (PP (IN for) (NP (DT the) (JJ first) (NN time))) (VP (VBG buying) (NP (NN office) (NNS buildings)) (PP (IN outside) (NP (NNP New) (NNP York) (NNP City))))))))))))))) (. .)))
(S1 (S (NP (PRP IT)) (VP (AUX 'S) (ADJP (JJ difficult)) (S (RB not) (VP (TO to) (VP (VB react) (ADVP (RB viscerally)) (PP (TO to) (NP (NP (NP (DT the) (NNS images)) (PRN (: --) (VP (ADVP (RB repeatedly)) (VBN shown) (PP (IN on) (NP (NN television))) (, ,) (PP (PP (IN in) (NP (NNS newspapers))) (CC and) (PP (IN on) (NP (NNP YouTube))))) (: --))) (PP (IN of) (NP (NP (NNS rats)) (VP (VBG scurrying) (PP (IN about) (NP (NP (DT the) (NNP KFC\/Taco) (NNP Bell) (NN restaurant)) (PP (IN in) (NP (NP (NNP New) (NNP York) (NNP City) (POS 's)) (NNP Greenwich) (NNP Village))) (PP (IN at) (NP (NN night))))))))))))) (, ,) (PP (IN like) (NP (NP (NNS villains)) (PP (IN in) (NP (NP (DT a) (JJ twisted) (NNS children) (POS 's)) (NN book)))))) (. .)))
(S1 (S (NP (NNP A1) (NNP Health) (NNP Inspector)) (VP (VBD Removed) (NP (NNP New) (NNP York) (NNP City)) (PP (VBN removed) (PP (IN from) (NP (NP (NN duty)) (NP (NP (DT a) (NN health) (NN inspector)) (SBAR (WHNP (WP who)) (S (VP (VBD gave) (NP (DT a) (VBG passing) (NN grade)) (PP (TO to) (NP (DT a) (NN fast-food) (NN restaurant))) (PP (IN in) (NP (NNP Greenwich) (NNP Village))) (NP (CD one) (NN day)) (PP (IN before) (NP (NP (NN television) (NNS cameras)) (VP (VBN captured) (S (NP (NP (DT a) (NN swarm)) (PP (IN of) (NP (NNS rats)))) (VP (VBG scurrying) (ADVP (RB about) (RB inside))))))))))))))) (. .)))
(S1 (S (NP (JJ Last) (NN year)) (, ,) (NP (NP (NNP Pacific) (NNP Retirement) (NNPS Services)) (, ,) (NP (NP (DT a) (JJ nonprofit) (NN organization)) (VP (VBN based) (PP (IN in) (NP (NP (NNP Medford)) (, ,) (NP (NNP Ore.)))))) (, ,)) (VP (VBD began) (NP (NN construction)) (PP (IN on) (NP (NP (DT the) (NNP Mirabella)) (, ,) (NP (NP (DT a) (JJ continuing-care) (NN community)) (PP (IN in) (NP (NP (DT the) (NNP South) (NNP Lake) (NNP Union) (NN neighborhood)) (PP (IN of) (NP (NNP Seattle))))))))) (. .)))
(S1 (S (S (VP (VBN Named) (PP (IN for) (NP (NP (DT the) (NNP New) (NNP York) (NNP City) (NN youth) (NN program)) (VP (VBN founded) (PP (IN in) (NP (CD 1999))) (PP (IN by) (NP (NP (NNP Chris) (NNP Rolle)) (, ,) (VP (VBN known) (PP (IN as) (NP (NNP Kazi))))))))))) (, ,) (NP (DT a) (JJ Bahamian) (JJ orphan)) (VP (VBD forced) (S (VP (TO to) (VP (VB grow) (PRT (RP up)) (PP (IN on) (NP (NP (DT the) (NNS streets)) (PP (IN of) (NP (NP (NNP Crown) (NNPS Heights)) (, ,) (NP (NNP Brooklyn)) (, ,))) (SBAR (S (NP (DT the) (NN movie)) (VP (VBZ follows) (NP (PRP$ his) (NNS efforts) (S (VP (TO to) (VP (VB encourage) (S (NP (JJ at-risk) (NNS teenagers)) (VP (TO to) (VP (VB express) (NP (PRP themselves)) (PP (IN in) (NP (NP (NN verse)) (CONJP (RB rather) (IN than)) (NP (NN violence)))))))))))))))))))) (. .)))
(S1 (S (ADVP (NP (NNP Sixteen) (NNS months)) (RB ago)) (, ,) (PP (IN in) (NP (NP (DT the) (NN basement)) (PP (IN of) (NP (NP (DT a) (JJ private) (NN home)) (PP (IN in) (NP (NP (DT the) (NNP Dorchester) (NN neighborhood)) (PP (IN of) (NP (NNP Boston))))))))) (, ,) (NP (NP (CD four) (JJ aspiring) (NNS rappers)) (, ,) (VP (VBN aged) (NP (CD 19)) (PP (TO to) (NP (CD 22)))) (, ,)) (VP (AUX were) (ADVP (RB summarily)) (VP (VBN executed) (PP (IN in) (NP (NP (DT a) (NN barrage)) (PP (IN of) (NP (JJ semiautomatic) (NN gunfire))))))) (. .)))
(S1 (S (S (PP (IN In) (NP (CD 1948))) (, ,) (NP (NNP Rabbi) (NNP Kret)) (VP (VBD came) (PP (TO to) (NP (NNP New) (NNP York) (NNP City))))) (, ,) (CC and) (S (PP (IN with) (NP (NP (DT the) (NN help)) (PP (IN of) (NP (NNP Rabbi) (NNP Yosef) (NNP Eliyahu) (NNP Henkin))) (, ,) (PP (IN of) (NP (VBN blessed) (NN memory))))) (, ,) (NP (PRP he)) (VP (AUX was) (VP (VBN hired) (PP (IN as) (NP (NP (DT the) (NN rabbi)) (PP (IN of) (NP (NP (DT the) (NNP Old) (NNP Broadway) (NNP Synagogue)) (PP (IN in) (NP (NP (DT the) (NNP West) (NNP Harlem) (NN neighborhood)) (PP (IN of) (NP (NNP Manhattanville)))))))))))) (. .)))
(S1 (NP (NP (NP (NNP HOME) (NNP ENERGY) (NNP SMART) (NNP FAIR)) (, ,) (NP (NN Gateway) (NNP National) (NNP Recreation) (NNP Area)) (, ,) (NP (NNP Fort) (NNP Wadsworth) (NN Visitor) (NNP Center)) (, ,) (NP (NNP Bay) (NNP Street)) (CC and) (NP (NNP School) (NNP Road))) (, ,) (NP (NNP Staten) (NNP Island)) (. .)))
(S1 (S (NP (NP (PRP$ His) (JJ untimely) (NN passing)) (PP (IN on) (NP (NP (NNP February) (CD 10) (, ,) (CD 2007)) (, ,) (PP (IN at) (NP (DT the) (NN age) (CD 34))) (, ,)))) (VP (VBD occurred) (PP (IN in) (NP (NP (PRP$ his) (JJ beloved) (NN community)) (PP (IN of) (NP (NNP Greenwich) (NNP Village))) (PP (IN in) (NP (NNP New) (NNP York) (NNP City)))))) (. .)))
(S1 (SINV (ADJP (ADVP (RB Far) (RBR more)) (VBG inviting)) (VP (AUX is) (NP (NNP First) (NNP Church)) (PP (IN in) (NP (NNP Boston))) (, ,) (PP (IN in) (NP (NP (NNP Back) (NNP Bay)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD replaced) (NP (NP (DT a) (JJ Gothic) (NN building)) (SBAR (WHNP (WDT that)) (S (VP (VBD burned) (PP (IN in) (NP (CD 1968))))))))))))) (. .)))
(S1 (SINV (S (NP (PRP We)) (VP (VBP get) (VP (VBD cursed) (PRT (RP on)) (PP (IN in) (NP (NP (DT every) (NN language)) (PP (IN in) (NP (NNP New) (NNP York) (NNP City)))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Matthew) (NNP Ancrum)) (, ,) (NP (CD 49)) (, ,) (NP (NP (DT a) (NN production) (NN assistant)) (SBAR (WHNP (WP who)) (S (VP (VBZ lives) (PP (IN in) (NP (NNP Bedford) (NNP Park))) (PP (IN in) (NP (DT the) (NNP Bronx)))))))) (. .)))
(S1 (S (NP (NP (JJ Many)) (PP (IN of) (NP (DT the) (ADJP (JJ black) (CC and) (JJ Hispanic)) (NNS students)))) (VP (VP (VBP live) (PP (IN in) (NP (NP (DT the) (NNP Roxbury) (CC and) (NNP Dorchester) (NNS neighborhoods)) (PP (IN of) (NP (NNP Boston)))))) (, ,) (CC and) (VP (AUX are) (VP (VBN bused) (PRT (RP in)) (PP (IN under) (NP (DT a) (JJ 35-year-old) (JJ voluntary) (NN integration) (NN program)))))) (. .)))
(S1 (FRAG (NP (NP (NNP Sunday)) (PP (IN at) (NP (NP (CD 1) (NN p.m.)) (, ,) ('' '') (VP (VBN Made) (PP (IN in) (NP (NNP New) (NNP York))))))) (: :) (NP (NP (NP (DT The) (NNP Archaeology)) (PP (IN of) (NP (NP (NNP New) (NNP York) (NNP City) (POS 's)) (NNP Industrial) (NNP Past)))) (, ,) ('' '') (NP (NP (DT a) (NN conference)) (VP (VBN sponsored) (PP (IN by) (NP (NP (DT the) (NNP Professional) (NNPS Archaeologists)) (PP (IN of) (NP (NNP New) (NNP York) (NNP City))) (SBAR (WHNP (WDT that)) (S (VP (VBZ covers) (NP (NP (DT the) (NN history)) (PP (IN of) (NP (NP (DT a) (JJ Dutch) (NN windmill)) (PP (IN on) (NP (NP (NNP Governors) (NNP Island)) (, ,) (NP (NP (NP (DT an) (JJ 18th-century) (NN tannery)) (PP (IN in) (NP (NNP Lower) (NNP Manhattan)))) (CC and) (NP (NP (DT a) (NN ship) (NN repair) (NN facility)) (PP (IN in) (NP (NNP Brooklyn)))))))))))))))))) (. .)))
(S1 (S (NP (NP (JJS Most)) (PP (IN of) (NP (PRP them)))) (ADVP (RB also)) (VP (VBD grew) (PRT (RP up)) (PP (IN in) (NP (NP (NNP New) (NNP York) (NNP City) (NNS neighborhoods)) (PP (IN like) (NP (NP (NP (NN Hell) (POS 's)) (NN Kitchen)) (, ,) (NP (NP (NNP Forest) (NNP Hills)) (, ,) (NP (NNP Washington) (NNP Heights)) (CC and) (NP (NNP Kew) (NNPS Gardens))) (, ,) (VP (VBG whiling) (PRT (RP away)) (NP (NP (JJ countless) (NNS hours)) (VP (VBG playing) (NP (DT the) (ADJP (RB quintessentially) (JJ urban)) (NN street) (NN game))) (SBAR (WHNP (WDT that)) (S (VP (VBD consumed) (NP (NN city) (NNS children)) (SBAR (RB long) (IN before) (S (NP (NP (JJ high-pressured) (NNP Little) (NNPS Leagues)) (CC and) (NP (JJ other) (JJ organized) (NNS sports) (NNS programs))) (VP (VBD took) (PRT (RP over)) (NP (DT the) (NNS suburbs))))))))))))))) (. .)))
(S1 (S (ADVP (NP (CD Seven) (NNS years)) (RB ago)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (NP (NNP Nader) (NNP Tehrani)) (CC and) (NP (NP (NNP Monica) (NNP Ponce) (FW de) (NNP Leon)) (, ,) (NP (NP (NNS partners)) (PP (IN at) (NP (NNP Office) (NN dA)))) (, ,) (NP (NP (DT an) (NN architecture) (NN firm)) (PP (IN in) (NP (NNP Boston)))) (, ,))) (VP (AUX were) (VP (VBN asked) (S (VP (TO to) (VP (VB renovate) (NP (NP (DT a) (JJ five-story) (NN town) (NN house)) (PP (IN in) (NP (DT the) (JJ Back) (NNP Bay) (NN neighborhood))))))))))) (, ,) (NP (PRP they)) (VP (VBD faced) (NP (DT a) (JJ singular) (NN design) (NN challenge))) (. .)))
(S1 (S (PP (IN After) (NP (NP (DT the) (NN fall)) (PP (IN of) (NP (NNP France))) (PP (IN in) (NP (CD 1940))))) (, ,) (NP (DT the) (JJ pro-Nazi) (NNP Vichy) (NN regime)) (VP (VBD seized) (NP (NP (DT the) (NN family) (NN bank)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX had) (VP (AUX been) (VP (VBN moved) (PP (IN from) (NP (NNP Paris))) (PP (TO to) (NP (NP (DT the) (JJ small) (JJ southern) (NN town)) (PP (IN of) (NP (NNP La) (NNP Bourboule))) (PP (IN in) (NP (DT the) (NNP Auvergne) (NN region)))))))))))) (. .)))
(S1 (S (S (NP (NP (DT Both)) (PP (IN of) (NP (NP (NNP Mr.) (NNP Hill) (POS 's)) (NNS co-defendants)))) (VP (AUX have) (VP (VBN died) (PP (IN in) (NP (NNP Cuba)))))) (: :) (S (NP (NNP Ralph) (NNP Goodwin)) (VP (VBD drowned) (ADVP (NP (NNS years)) (RB ago)) (PP (IN at) (NP (DT a) (NN beach))) (SBAR (IN outside) (S (NP (NNP Havana) (NNP Michael) (NNP Finney)) (VP (VBD succumbed) (PP (TO to) (NP (NN throat) (NN cancer))) (PP (IN in) (NP (CD 2005)))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT The) (NN government)) (PP (IN in) (NP (NP (DT the) (NN state)) (PP (IN of) (NP (NNP Michoacán)))))) (VP (VBZ promises) (S (VP (TO to) (VP (VB pay) (PP (IN for) (NP (NP (DT the) (NN transport)) (PP (IN of) (NP (NP (VBG returning) (NNS bodies)) (PP (PP (IN from) (NP (NP (DT any) (NN point)) (PP (IN in) (NP (NNP Mexico))))) (PP (TO to) (NP (NP (NP (DT the) (JJ deceased) (POS 's)) (NN hometown)) (PP (IN in) (NP (NNP Michoacán)))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Mr.) (NNP Hernández) (POS 's)) (NN minority) (NNS partners)) (VP (AUX are) (NP (NP (NP (NP (NNP Gian) (NNP Franco) (NNP Brignone)) (CC and) (NP (PRP$ his) (NN son))) (NNP Giorgio) (, ,) (JJ Italian) (JJ real) (NN estate) (NNS magnates)) (SBAR (WHNP (WP who)) (S (VP (VP (VBD relocated) (PP (TO to) (NP (NNP Mexico)))) (CC and) (VP (VBD built) (NP (NP (DT a) (NN series)) (PP (IN of) (NP (NP (JJ sumptuous) (NNS properties)) (PP (IN in) (NP (NP (DT the) (NN state)) (PP (IN of) (NP (NNP Jalisco))))))) (SBAR (WHNP (WDT that)) (S (VP (VBD made) (S (NP (PRP it)) (NP (NP (DT a) (NN magnet)) (PP (IN for) (NP (DT the) (NN super-rich))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NNP South) (NNP Korea))) (, ,) (S (NP (NP (JJ billboards) (NN advertising) (NNS marriages)) (PP (TO to) (NP (NNS foreigners)))) (VP (VBP dot) (NP (DT the) (NN countryside)))) (, ,) (CC and) (S (NP (NNS fliers)) (VP (AUX are) (VP (VBN scattered) (PP (IN on) (NP (DT the) (NNP Seoul) (NN subway)))))) (. .)))
(S1 (S (NP (DT The) (NNS daughters)) (VP (VBD huddled) (PP (IN around) (NP (NP (PRP$ their) (NN mother)) (, ,) (NP (NP (NNP Mr.) (NNP Ramírez) (POS 's)) (JJS oldest) (NN grandchild)) (, ,) (SBAR (IN as) (S (NP (PRP she)) (VP (VBD gazed) (PP (IN at) (NP (DT the) (NN work))) (PP (IN before) (NP (PRP her)))))))) (: :) (NP (NP (DT the) (JJ obsessive) (, ,) (JJ hypnotic) (NNS renderings)) (PP (IN of) (NP (NP (NNS horses) (CC and) (NNS riders)) (, ,) (NP (NNS trains) (CC and) (NNS tunnels)) (, ,) (NP (NNP Madonnas)) (CC and) (NP (NP (DT the) (NN landscape)) (PP (IN of) (NP (NP (DT the) (NNP Jalisco) (NN region)) (PP (IN of) (NP (NNP Mexico)))))))))) (. .)))
(S1 (NP (NP (NN Correction)) (: :) (S (NP (NP (NP (NP (NNP February) (CD 24) (, ,) (CD 2007) (, ,)) (NNP Saturday) (NNP An) (NN article)) (PP (IN in) (NP (DT The) (NNP Arts))) (PP (IN on) (NP (NNP Tuesday))) (PP (IN about) (NP (DT the) (NNP Indian) (NN film) ('' '') (NNP Parzania)))) (, ,) ('' '') (PP (IN about) (NP (NP (DT a) (NN boy)) (SBAR (WHNP (WP who)) (S (VP (VBD disappeared) (PP (IN during) (NP (NN violence))) (PP (IN in) (NP (NNP Gujarat) (NN state)))))))) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (NN theater) (NNS owners)) (VP (AUX have) (VP (VBN refused) (S (VP (TO to) (VP (VB show) (NP (PRP it))))))))) (, ,)) (VP (VBD referred) (ADVP (RB incorrectly)) (PP (TO to) (NP (NP (DT the) (NN reason)) (SBAR (S (NP (DT another) (NN film)) (VP (VBD encountered) (NP (NP (NNS problems)) (VP (AUXG being) (VP (VBN screened) (PP (IN in) (NP (NNP India))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Hincapie)) (, ,) (SBAR (SBAR (WHNP (WP who)) (S (VP (VBD rode) (PP (IN in) (NP (NP (DT all) (CD seven)) (PP (IN of) (NP (NP (NP (NNP Lance) (NNP Armstrong) (POS 's)) (NN Tour)) (PP (IN de) (NP (NNP France) (NNS victories)))))))))) (CC and) (SBAR (WHNP (WP who)) (S (VP (AUX is) (NP (DT the) (JJ current) (NNP American) (JJ road-racing) (NN champion)))))) (, ,)) (VP (MD will) (VP (VB concentrate) (NP (PRP$ his) (NN spring) (NNS efforts)) (PP (IN on) (S (VP (VBG winning) (NP (DT the) (JJ one-day) (NN race)) (PP (PP (IN from) (NP (NNP Paris))) (PP (TO to) (NP (NP (NNP Roubaix)) (, ,) (NP (NNP France)))))))) (, ,) (PP (IN on) (NP (NNP April) (CD 15))))) (. .) ('' '')))
(S1 (S (NP (DT The) (VBN proposed) (NN city)) (VP (AUX has) (NP (NP (PRP$ its) (NN share)) (PP (IN of) (NP (NN crime))) (, ,) (VP (ADVP (RB mostly)) (VBN confined) (PP (TO to) ('' '') (NP (NP (NP (NNP Mafia)) (PRN (-LRB- -LRB-) (CC or) (NP (NP (CD One) (JJ Unopened) (NN Packet)) (PP (IN of) (NP (NNS Cigarettes)))) (-RRB- -RRB-))) (, ,) ('' '') (NP (NP (DT a) (JJ one-room) (NN show)) (VP (VBN imported) (PP (IN from) (NP (NP (NNP Standard)) (PRN (-LRB- -LRB-) (NP (NNP Oslo)) (-RRB- -RRB-)) (, ,) (NP (NP (DT a) (NN gallery)) (PP (IN in) (NP (NNP Norway))))))))))))) (. .)))
(S1 (S (S (VP (VBN Born) (PP (IN on) (NP (NP (NNP Sept.) (CD 27) (, ,) (CD 1907)) (, ,) (PP (IN in) (NP (NNP Kiev))) (, ,) (NP (NNP Ukraine)))))) (, ,) (NP (NNP Mr.) (NNP Maslow)) (VP (AUX was) (NP (NP (DT the) (NN son)) (PP (IN of) (NP (NP (NNP Raeesa)) (CC and) (NP (NNP Saul) (NNP Maslenkov)))))) (. .)))
(S1 (S (S (NP (NNP Pelosi)) (VP (AUX is) (PP (IN in) (NP (NNP Damascus))) (SBAR (SBAR (RB not) (IN because) (S (NP (PRP she)) (VP (VBZ loves) (NP (DT this) (RB dear) (NN city))))) (, ,) (CC but) (SBAR (IN because) (S (NP (PRP she)) (VP (AUX is) (ADJP (JJ aware) (SBAR (IN that) (S (NP (PRP it)) (VP (AUX is) (ADJP (JJ impossible)) (S (VP (TO to) (VP (VB ignore) (NP (NP (NNP Syria) (POS 's)) (NN role))))))))))))))) (, ,) ('' '') (NP (NP (DT an) (NN editorial)) (PP (IN in) (NP (DT the) (JJ daily) (NNP Al) (NNP Thawrah)))) (VP (VBD said)) (. .) ('' '')))
(S1 (S (IN While) (NP (DT the) (CD two)) (VP (AUX have) (VP (VBN met) (ADVP (RB often)) (S (VP (TO to) (VP (VB discuss) (NP (NP (NNP Iran)) (, ,) (S (NP (NP (JJS most)) (PP (IN of) (NP (DT the) (NNS sessions)))) (VP (AUX have) (VP (AUX been) (PP (IN in) (NP (NP (JJ official) (NNS formats)) (PP (VBG including) (NP (NP (DT the) (CD five) (JJ permanent) (NNS members)) (PP (IN of) (NP (NP (DT the) (NNP Security) (NNP Council)) (CC and) (NP (NNP Germany)))))))) (, ,) (PP (IN in) (NP (NP (NN contrast)) (PP (TO to) (NP (NP (DT the) (JJR more) (NN ad)) (PP (FW hoc) (NP (NP (NP (NNP Berlin) (NN session)) (PP (IN with) (NP (NNP Mr.) (NNP Lavrov)))) (CC and) (NP (NP (NNS counterparts)) (PP (IN from) (NP (NP (NNP Germany)) (CC and) (NP (DT the) (NNP European) (NNP Union)))))))))))))))))))) (. .)))
(S1 (S (NP (JJ WHITE) (NNS STRIPES)) (PP (IN After) (S (VP (VBG playing) (NP (NNP Bonnaroo)) (PP (IN on) (NP (NNP June) (CD 24)))))) (, ,) (NP (NP (DT the) (NNP White) (NNP Stripes)) (PRN (: --) (S (NP (NP (WP$ whose) (JJ new) (NN album)) (, ,) ('' '') (NP (NNP Icky) (NNP Thump)) ('' '') (PRN (-LRB- -LRB-) (NP (NNP Warner) (NNPS Brothers)) (-RRB- -RRB-)) (, ,)) (VP (MD will) (VP (AUX be) (VP (VBN released) (NP (NNP June) (CD 19)))))) (: --))) (VP (VBP go) (PP (IN on) (NP (NP (NP (DT a) (ADJP (RB pretty) (JJ thorough)) (NN tour)) (PP (IN of) (NP (NNP Canada) (-LRB- -LRB-) (NNP Moncton)))) (, ,) (NP (NNP New) (NNP Brunswick))))) (. ?)))
(S1 (SINV (S (NP (NNS People)) (VP (AUX are) (ADJP (RB very) (JJ vulgar) (CC and) (JJ like) (S (VP (TO to) (VP (`` `) (VB get) (NP (PRP$ their) (NNS jollies)) ('' ') (PP (IN from) (S (VP (VBG harassing) (S (NP (NP (NNS people)) (, ,) (NP (RB mainly) (NNS girls)) (, ,)) (VP (TO to) (VP (VB take) (PRT (RP off)) (NP (PRP$ their) (NNS clothes)))))))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Chelsey)) (, ,) (NP (NP (DT a) (JJ 17-year-old) (NN user)) (PP (IN from) (NP (NP (NNP Saskatchewan)) (PP (IN in) (NP (NNP Canada)))))) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD signed) (PRT (RP up)) (SBAR (IN after) (S (NP (PRP$ her) (JJ 13-year-old) (NN sister)) (VP (VP (VBD violated) (NP (NP (DT the) (NN site) (POS 's)) (NN age) (NNS rules))) (CC and) (VP (VBD joined) (NP (DT the) (NN service)))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP PAGE) (NNP A10) (NNP An) (NNP American) (NNP Friend)) (PP (IN in) (NP (NP (NNP Paris) (NNP Nicolas) (NNP Sarkozy)) (, ,) (NP (NP (DT the) (NN president-elect)) (PP (IN of) (NP (NNP France)))) (, ,)))) (VP (AUX is) (NP (NP (DT an) (JJ unabashed) (NN admirer)) (PP (IN of) (NP (NNP America))) (SBAR (WHNP (WP who)) (S (VP (VP (VBZ loves) (NP (NP (NNP Hemingway)) (CC and) (NP (NNP Sylvester) (NNP Stallone)))) (CC and) (VP (VBZ wants) (S (VP (TO to) (VP (VB end) (NP (NP (DT the) (NN tension)) (PP (IN with) (NP (NNP Washington))) (SBAR (WHNP (WDT that)) (S (VP (VBD existed) (PP (IN under) (NP (PRP$ his) (NN predecessor)))))))))))))))) (. .)))
(S1 (S (NP (NNS Authorities)) (ADVP (RB there)) (VP (VBD allowed) (S (NP (PRP him)) (VP (TO to) (VP (VB go) (PP (TO to) (NP (NP (NNP Cuba)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (PRP he)) (VP (AUX is) (ADVP (RB still)) (VP (VBN spotted) (PP (IN around) (NP (NNP Havana))))))))))))) (. .)))
(S1 (S (PP (IN On) (NP (NNP Thursday))) (, ,) (NP (QP (JJR more) (IN than) (CD 30)) (NNS people)) (VP (AUX were) (VP (VBN reported) (ADVP (RB dead)) (PP (IN in) (NP (NNP Madhya) (NNP Pradesh))) (, ,) (PP (IN in) (NP (NP (JJ central) (NNP India)) (, ,) (CC and) (NP (NP (QP (IN at) (JJS least) (CD 20))) (PP (IN in) (NP (NNP Bihar)))))) (, ,) (PP (IN in) (NP (JJ northeastern) (NNP India))) (, ,) (PP (IN because) (IN of) (NP (DT a) (JJ severe) (JJ cold) (NN snap))))) (. .) ('' '')))
(S1 (S (S (PP (IN For) (NP (NNP Germany))) (, ,) (NP (DT the) (NN move)) (ADVP (RB not) (RB only)) (VP (VBN symbolized) (S (NP (NP (DT a) (NNP German) (NNP Jew) (POS 's)) (NN willingness)) (VP (TO to) (VP (VB turn) (NP (DT the) (NN page)) (PP (IN on) (NP (DT the) (NN past)))))))) (, ,) (CC but) (S (NP (PRP it)) (ADVP (RB also)) (VP (VBD filled) (NP (NP (DT a) (NN hole)) (PP (IN in) (NP (NP (NNP Berlin) (POS 's)) (NN art) (NNS collections))) (SBAR (WHNP (WDT which)) (S (VP (AUX had) (VP (AUX been) (ADVP (RB largely)) (VP (VBN stripped) (PP (IN of) (NP (JJ so-called) (VB degenerate) (JJ modern) (NN art))) (PP (IN by) (NP (DT the) (NNP Nazi) (NN regime))))))))))) (. .)))
(S1 (S (NP (NNP Eugen) (NNP Joseph) (NNP Weber)) (VP (AUX was) (VP (VBN born) (PP (IN in) (NP (NP (NNP Bucharest)) (, ,) (NP (NNP Romania)) (, ,))) (PP (IN on) (NP (NP (NNP April) (CD 24) (, ,) (CD 1925)) (, ,) (NP (NP (DT the) (NN son)) (PP (IN of) (NP (NNP Sonia)))) (CC and) (NP (NP (NNP Emmanuel) (NNP Weber)) (, ,) (NP (DT an) (NN industrialist))))))) (. .)))
(S1 (S (NP (NP (NNP Shonali) (NNP Bose) (POS 's)) (NN film)) (VP (AUX was) (VP (VBN censored) (PP (IN in) (NP (NNP India))) (PP (IN for) (NP (JJ daring))) (S (VP (TO to) (VP (VB refer) (PP (TO to) (NP (NP (DT the) (NNS riots)) (PP (IN in) (NP (NNP Delhi))) (SBAR (WHNP (WDT that)) (S (VP (VBD followed) (NP (NP (DT the) (NN assassination)) (PP (IN of) (NP (NNP Indira) (NNP Gandhi))) (PP (IN in) (NP (CD 1984)))))))))))))) (. .)))
(S1 (S (NP (NP (NP (DT A) (JJ planned) (NN visit)) (PP (TO to) (NP (NNP Syria)))) (NP (JJ next) (NN week)) (PP (IN by) (NP (NNP House) (NNP Speaker) (NNP Nancy) (NNP Pelosi)))) (VP (VBD drew) (NP (NN criticism)) (PP (IN on) (NP (NNP Friday))) (PP (IN from) (NP (NP (DT the) (NNP White) (NNP House)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD accused) (NP (DT the) (JJ Democratic) (JJ Congressional) (NN leader)) (PP (IN of) (S (VP (VBG failing) (S (VP (TO to) (VP (VB heed) (NP (NP (NP (DT the) (NN administration) (POS 's)) (NNS admonitions)) (PP (IN against) (NP (NP (NN travel)) (PP (TO to) (NP (NNP Damascus)))))))))))))))))) (. .)))
(S1 (S (PP (IN Over) (NP (DT the) (JJ last) (CD five) (NNS years))) (, ,) (ADVP (RB however)) (, ,) (NP (NNP Iranian) (NNS donors)) (VP (AUX have) (VP (VP (VBN financed) (NP (NP (DT the) (NN restoration)) (PP (IN of) (NP (NP (PDT half) (DT a) (NN dozen) (JJ Shiite) (NNS tombs) (CC and) (NNS shrines)) (PP (IN in) (NP (NNP Syria))))))) (CC and) (VP (VBN built) (NP (NP (QP (IN at) (JJS least) (CD one)) (NNP Shiite) (JJ religious) (NN school)) (PP (IN near) (NP (NNP Damascus))) (SBAR (S (NP (DT the) (NN school)) (VP (AUX is) (VP (VBN named) (PP (IN after) (NP (NP (NP (NNP Iran) (POS 's)) (JJ supreme) (NN leader)) (, ,) (NP (NNP Ali) (NNP Khamenei)))))))))))) (. .)))
(S1 (S (NP (DT The) (NN announcement)) (VP (VBD came) (SBAR (IN after) (S (NP (NP (NNS gunmen)) (PP (IN from) (NP (DT a) (VBN suspected) (NN drug) (NN gang)))) (VP (VBD killed) (NP (CD four) (NNS bodyguards)) (PP (IN for) (NP (NP (NN family) (NNS members)) (PP (IN of) (NP (NP (NNP Gov.) (NNP Enrique) (NNP Peña) (NNP Nieto)) (PP (IN of) (NP (NNP Mexico) (NNP State))))) (VP (VBG vacationing) (PP (IN in) (NP (NNP Veracruz)))))))))) (. .)))
(S1 (S (NP (NP (DT A) (NN recruiter)) (SBAR (S (NP (PRP he)) (VP (VBD found) (PP (IN on) (NP (DT the) (NNP Internet))))))) (VP (VBD arranged) (S (VP (TO to) (VP (VB meet) (NP (PRP him)) (PP (IN on) (NP (NP (DT a) (NN bridge)) (PP (IN in) (NP (NP (NNP Damascus)) (, ,) (NP (NNP Syria)))))))))) (. .)))
(S1 (S (S (NP (NN Housing)) (VP (AUX was) (ADVP (RB then)) (NP (NP (NNP France) (POS 's)) (ADJP (RBS most) (JJ urgent)) (NN need)))) (: :) (S (NP (QP (JJR more) (IN than) (CD 2,000)) (NNS people)) (VP (VBD slept) (NP (DT each) (NN night)) (PP (IN on) (NP (NP (DT the) (NNP Paris) (NNS streets)) (CC and) (NP (NP (QP (CD one) (IN in) (CD five)) (JJ French) (NNS people)) (VP (VBN lived) (PP (IN in) (SBAR (WHNP (WP what)) (S (NP (DT a) (NN government) (NN report)) (VP (VBD called) ('' '') (ADVP (RB inadmissible)) ('' '') (NP (NN living) (NNS conditions)))))))))))) (. .)))
(S1 (S (S (NP (NP (NNP France) (POS 's)) (JJ numerous) (JJ vacant) (NN investment) (NNS lodgings) ('' '')) (VP (MD will) (VP (AUX have) (S (VP (TO to) (VP (AUX be) (VP (VBN rented)))))))) (, ,) ('' '') (NP (NNP Ms.) (NNP Royal)) (VP (VBD said) (PRT (RP in)) (NP (NP (PRP$ her) (JJ New) (NN Year) (POS 's)) (NN speech) (NN yesterday)) (PP (IN in) (NP (NP (NNP Paris)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX was) (VP (VBN broadcast) (PP (IN on) (NP (JJ national) (NN television)))))))))) (. .) ('' '')))
(S1 (S (ADVP (RB Additionally)) (, ,) (NP (PRP he)) (VP (VBD built) (NP (DT a) (NN memorial)) (PP (IN in) (NP (DT the) (NNP Rumbula) (NNP Forest))) (PP (IN outside) (NP (NP (NNP Riga)) (, ,) (NP (NNP Latvia)))) (S (VP (TO to) (VP (VB honor) (NP (NP (DT the) (CD 27,000) (NNPS Jews)) (SBAR (WHNP (WP who)) (S (VP (AUX had) (VP (AUX been) (VP (VBN mass-murdered) (PP (IN at) (NP (DT the) (NN site))))))))))))) (. .)))
(S1 (NP (NP (NNP Brothers) (NNP Ron)) (PRN (-LRB- -LRB-) (NP (NNP Toronto)) (, ,) (NP (NNP Canada)) (-RRB- -RRB-)) (, ,) (NP (NNP Wayne)) (PRN (-LRB- -LRB-) (NP (NNP Hull) (, ,) (NNP Quebec) (, ,) (NNP Canada)) (-RRB- -RRB-)) (, ,) (NP (NNP George)) (PRN (-LRB- -LRB-) (NP (NNP California)) (-RRB- -RRB-)) (, ,) (CC and) (NP (NP (PRP$ his) (NN Sister)) (, ,) (NP (NP (NNP Helen) (PRN (-LRB- -LRB-) (NP (NNP Katsikaris)) (-RRB- -RRB-)) (NNP Beck)) (PRN (-LRB- -LRB-) (NP (NNP Texas)) (-RRB- -RRB-)))) (. .)))
(S1 (S (S (NP (NP (DT An) (NN acquaintance)) (PP (IN of) (NP (NN mine))) (PP (IN in) (NP (NNP Delhi))) (SBAR (WHNP (WP who)) (S (VP (VBZ owns) (NP (NP (DT a) (NN house)) (PP (IN in) (NP (NNP Goa)))))))) (VP (VB put) (NP (PRP it)) (ADVP (RB bluntly)))) (: :) (S (SBAR (IN If) (S (NP (PRP you)) (VP (VBP want) (S (VP (TO to) (VP (VB get) (PRT (RP out)) (PP (IN of) (NP (NNP India))))))))) (, ,) (VP (VB come) (PP (TO to) (NP (NNP Goa))))) (. .)))
(S1 (S (NP (NP (DT The) (CD 2007) (NNP Michelin) (NNP Red) (NNPS Guides)) (PP (PP (IN for) (NP (NNP France))) (CC and) (PP (IN for) (NP (NNP Paris))))) (VP (VBP go) (PP (IN on) (NP (NN sale))) (NP (NN today))) (. .)))
(S1 (S (NP (NP (DT The) (JJ educational) (NN system)) (, ,) (NP (NNS politics)) (, ,) (NP (NN health) (NN care)) (, ,) (NP (NN child) (NN rearing)) (CC and) (NP (DT the) (JJ national) (NN character))) (VP (AUX are) (VP (VBN dealt) (PP (IN with) (PP (IN in) (NP (NP (JJ well-organized) (NNS chapters)) (SBAR (WHNP (WDT that)) (S (VP (VBP move) (NP (DT the) (NN reader)) (ADVP (RB briskly) (RB along) (PP (IN from) (NP (NP (NP (NP (DT the) (NNP Basque) (NN country)) (PP (TO to) (NP (NNP Catalonia))) (, ,) (PP (PP (IN from) (NP (NP (JJ flamenco) (NNS bars)) (PP (TO to) (NP (JJ neon-lighted) (NN roadside) (NNS whorehouses))) (, ,) (PP (IN from) (NP (NP (DT the) (JJ ghastly) (NN tourist) (NNS traps)) (PP (IN of) (NP (DT the) (NNP Costa) (FW del) (NNP Sol))))))) (PP (TO to) (NP (NP (DT the) (NNP Galician) (NN clothing) (NNS factories)) (PP (IN of) (NP (NNP Amancio) (NNP Ortega)))))) (, ,)) (NNP Spain) (POS 's)) (ADJP (JJS richest) (CC and) (ADJP (RBS most) (JJ reclusive))) (NN tycoon)))))))))))) (. .)))
(S1 (S (NP (DT The) (NN decision)) (VP (VBZ follows) (NP (NP (DT a) (JJ similar) (NN move)) (PP (PP (IN by) (NP (NNP Australia))) (CC and) (PP (IN by) (NP (NP (NP (NNP Canada) (POS 's)) (ADJP (RBS most) (JJ populous)) (NN province)) (, ,) (NP (NNP Ontario))))))) (. .)))
(S1 (NP (NNP XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)))
(S1 (S (SBAR (IN If) (S (NP (NP (DT the) (NN breath)) (PP (IN of) (NP (NN spring)))) (VP (MD could) (VP (AUX be) (VP (VBN bottled) (PP (IN as) (NP (DT a) (JJ dry) (NN wine)))))))) (, ,) (NP (PRP it)) (VP (MD might) (VP (VB resemble) (NP (NP (NP (NNP Pierre) (NNP Boniface) (POS 's)) (CD 2006) (NNP Apremont)) (, ,) (NP (NP (DT a) (NN low-alcohol)) (ADJP (NNP Alpine) (JJ white) (PP (IN from) (NP (NP (NNP Savoie)) (PP (IN in) (NP (JJ eastern) (NNP France)))))))))) (. .)))
(S1 (S (PP (IN In) (NP (DT the) (NNPS Philippines))) (, ,) (NP (NP (DT the) (NNP Asian) (NNP Development) (NNP Bank)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ lends) (NP (NN money)) (PP (IN at) (NP (NP (JJ low) (NN interest) (NNS rates)) (PP (TO to) (NP (JJ poor) (NNS countries)))))))) (, ,)) (VP (AUX had) (VP (VBN agreed) (S (VP (TO to) (VP (VB finance) (NP (NP (NNP Manila) (POS 's)) (JJ new) (NN aqueduct))))))) (. .)))
(S1 (S (NP (NP (NNP Mr.) (NNP Posada)) (, ,) (NP (DT a) (JJ former) (NNP C.I.A.) (NN operative)) (, ,)) (VP (VBZ denies) (S (NP (NP (NN involvement)) (PP (IN in) (NP (NNP downing)))) (NP (NP (DT the) (NN airliner)) (, ,) (CONJP (RB as) (RB well) (IN as)) (NP (NP (NNP Cuba) (POS 's)) (NNS claims) (SBAR (IN that) (S (NP (PRP he)) (VP (AUX is) (ADJP (JJ responsible) (PP (IN for) (NP (NP (DT a) (NN string)) (PP (IN of) (NP (NP (NNS bombings)) (PP (IN at) (NP (NNP Havana) (NNS hotels) (CC and) (NNS nightclubs))))))))))))))) (. .)))
(S1 (S (NP (NP (NNS Moves)) (PP (TO to) (NP (NP (NP (NNP Minsk)) (, ,) (NP (NNP Belarus)) (, ,) (PP (IN in) (NP (CD 1939)))) (CC and) (NP (NP (NNP Tashkent)) (, ,) (NP (NNP Uzbekistan)) (, ,)))) (PP (IN in) (NP (CD 1941)))) (DT both) (VP (VP (VBD saved) (NP (PRP$ his) (NN life))) (PRN (-LRB- -LRB-) (S (NP (NP (PRP$ his) (NN family)) (PP (IN in) (NP (NNP Warsaw)))) (VP (AUX was) (VP (VBN killed) (PP (IN in) (NP (DT the) (NNP Holocaust)))))) (-RRB- -RRB-)) (CC and) (VP (VBD resulted) (PP (IN in) (NP (NP (DT a) (JJ lifelong) (NN friendship)) (PP (IN with) (NP (NNP Shostakovich))))))) (. .)))
(S1 (S (NP (NP (NP (CD 8) (NN P.M.)) (PRN (-LRB- -LRB-) (NP (NNP Fox)) (-RRB- -RRB-)) (NP (NNP AMERICAN) (NNP IDOL))) (: --) (NP (NP (NNP Southern) (NN discomfort)) (SBAR (IN as) (S (NP (NNP Week) (CD 3) (NNS auditions)) (VP (VBP begin) (PP (IN in) (NP (NP (NAC (NNP Birmingham) (, ,) (NNP Ala.) (CD 9)) (NN P.M.)) (PRN (-LRB- -LRB-) (NP (CD 13)) (-RRB- -RRB-)))) (NP (NP (DT THE) (NN CELL) (JJ NEXT) (NN DOOR)) (: --) (NP (NP (JJ Last) (NN summer)) (, ,) (NP (NP (CD 18) (JJ young) (NNS men)) (PP (IN in) (NP (NNP Toronto)))) (CC and) (NP (NP (CD two)) (PP (IN in) (NP (NNP Atlanta)))))))))) (: --) (NP (NP (JJS most)) (PP (IN of) (SBAR (WHNP (WP whom)) (S (VP (AUX had) (VP (VBN grown) (PRT (RP up)) (PP (IN in) (NP (NP (JJ moderate) (, ,) (JJ middle-class) (NNS homes)) (PP (IN in) (NP (NP (NNP Canada)) (CC and) (NP (DT the) (NNP United) (NNPS States)))))))))))) (: --)) (VP (AUX were) (VP (VBN arrested) (PP (IN on) (NP (NN terrorism) (NNS charges))) (PP (IN after) (S (VP (AUXG being) (VP (VBN accused) (PP (IN of) (S (VP (VBG plotting) (S (VP (TO to) (VP (VP (VB blow) (PRT (RP up)) (NP (NP (NNS buildings)) (CC and) (NP (NP (JJ behead) (NNS members)) (PP (IN of) (NP (DT the) (NNP Canadian) (NN parliament)))))) (CC and) (VP (VBG attending) (NP (NP (DT a) (JJ terrortraining) (NN camp)) (PP (IN in) (NP (NNP Ontario))))))))))))))))) (. .)))
(S1 (S (NP (NP (RB Even) (NNS officials)) (PP (IN in) (NP (NP (NNP South) (NNP Korea)) (CC and) (NP (NNP Japan))))) (VP (AUX have) (VP (AUX been) (ADJP (JJ wary) (PP (IN of) (S (VP (VBG assailing) (NP (DT an) (ADJP (RB increasingly) (JJ assertive)) (NNP China)) (PP (IN for) (NP (NP (DT the) (JJ periodic) (NNS clouds)) (PP (IN of) (NP (NP (NN pollution)) (SBAR (WHNP (WDT that)) (S (VP (VB drift) (PP (IN over) (NP (NNP Seoul) (CC and) (NNP Tokyo)))))))))))))))) (. .)))
(S1 (S (S (INTJ (UH Well)) (, ,) (VP (VB let) (S (NP (PRP me)) (VP (VB tell) (NP (PRP you)) (PP (IN about) (NP (DT the) (NN food))))))) (: :) (S (NP (NP (NNP Inopia)) (PRN (-LRB- -LRB-) (NP (NNP Tamarit)) (, ,) (NP (CD 104) (CD 34-93-424-52-31)) (-RRB- -RRB-))) (VP (VBZ offers) (NP (NP (NP (DT the) (JJ classic) (NN stuff)) (PP (IN of) (NP (NNP Spain)))) (PRN (: --) (ADVP (RB especially)) (, ,) (CC but) (ADVP (RB not) (RB exclusively))) (, ,) (NP (NNP Catalonia))))) (. .)))
(S1 (S (NP (NNP Thailand)) (VP (VBD warned) (NP (NN yesterday)) (SBAR (IN that) (S (NP (PRP it)) (VP (MD might) (VP (VB add) (NP (JJ further) (NNS restrictions)) (PP (TO to) (NP (JJ foreign) (NNS investors))) (, ,) (S (VP (VP (VBG ignoring) (NP (NNS warnings) (SBAR (IN that) (S (NP (DT the) (NN move)) (VP (AUX was) (ADVP (RB ill)) (VP (VBN timed))))))) (CC and) (VP (VBG damaging) (PP (IN for) (NP (NP (DT a) (JJ fragile) (NN economy)) (VP (ADVP (RB already)) (VBG struggling) (S (VP (TO to) (VP (VB overcome) (NP (NP (DT the) (NN stigma)) (PP (IN of) (NP (NP (DT a) (JJ military) (NN coup)) (CC and) (NP (NP (DT the) (NN instability)) (VP (VBN caused) (PP (IN by) (NP (NP (JJ recent) (NNS bombings)) (PP (IN in) (NP (NNP Bangkok)))))))))))))))))))))))) (. .)))
(S1 (S (CC And) (NP (NP (JJR bawdier) (NN radio) (NNS shows)) (, ,) (PP (IN like) (NP (NNP Piolin) (POS 's))) (, ,)) (ADVP (RB also)) (VP (AUX do) (RB n't) (ADVP (RB necessarily)) (VP (VB appeal) (PP (TO to) (NP (NP (DT all)) (PP (IN of) (NP (NP (NP (NNP New) (NNP York) (POS 's)) (NNPS Mexicans)) (, ,) (NP (NP (QP (RB almost) (NN half))) (PP (IN of) (SBAR (WHNP (WP whom)) (S (VP (VBD come) (PP (IN from) (NP (NP (DT the) (NN state)) (PP (IN of) (NP (NP (NNP Puebla)) (, ,) (NP (NP (DT a) (ADJP (RB socially) (JJ conservative)) (NN area)) (PP (IN of) (NP (NNP Mexico))))))))))))))))))) (. .)))
(S1 (FRAG (NP (NP (NNP Andy) (NNP England)) (, ,) (NP (CD 39)) (, ,) (NP (NP (DT a) (NN jewelry) (NN seller)) (PP (IN from) (NP (NNP Portsmouth))))) (, ,) (NP (NNP England)) (, ,) (PP (IN near) (NP (NP (DT the) (NNS remains)) (PP (IN of) (NP (NP (DT a) (NN capital) (NN city)) (SBAR (WHNP (WDT that)) (S (VP (AUX was) (VP (VBN pillaged) (PP (IN in) (NP (CD 1565))))))))))) (: :) (S (S ('' '') (NP (PRP I)) (VP (VBD went) (PP (IN with) (NP (DT some) (NNS friends))) (PP (IN through) (NP (NNP Goa))) (PP (IN for) (NP (DT a) (JJ three-week) (NN getaway))))) (, ,) (CC but) (S (NP (PRP we)) (VP (VBD wanted) (S (VP (TO to) (VP (VB get) (NP (NP (DT a) (NN bit) (JJR more)) (PP (IN of) (NP (NP (DT the) (JJ cultural) (NN flavor)) (PP (IN of) (NP (NNP India))))))))) (, ,) (SBAR (IN so) (S (NP (PRP we)) (VP (VBD drove) (NP (PRP$ our) (JJ small) (JJ rental) (NN car)) (ADVP (RB inland)) (PP (TO to) (NP (NP (NP (DT the) (JJ modern) (NN city)) (PP (IN of) (NP (NNP Hampi)))) (CC and) (NP (NP (DT the) (NNS ruins)) (PP (IN of) (NP (NNP Vijayanagar)))))))))))) (. .)))
(S1 (S (NP (JJ First)) (ADVP (RB up)) (VP (AUX is) (NP (DT the) (NNP TGV) (NNP Est)) (, ,) (S (VP (VBN set) (S (VP (TO to) (VP (VB begin) (NP (NN service)) (PP (IN in) (NP (NP (NNP June)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VP (MD will) (RB not) (ADVP (RB only)) (VP (VB cut) (NP (DT the) (NN travel) (NN time)) (PP (IN from) (NP (NNP Paris))) (PP (TO to) (NP (NNP Strasbourg))) (PP (ADVP (RB nearly)) (IN in) (NP (NP (NN half)) (PRN (-LRB- -LRB-) (PP (TO to) (NP (NP (CD 2) (NNS hours)) (CC and) (NP (CD 20) (NNS minutes)))) (-RRB- -RRB-)))))) (, ,) (CC but) (VP (MD will) (RB also) (VP (VB open) (PRT (RP up)) (NP (NP (JJ fast) (NNS routes)) (PP (IN between) (NP (NP (NNP Paris)) (CC and) (NP (NP (NNS cities)) (PP (IN in) (NP (NP (JJ eastern) (NNP France)) (CC and) (NP (NNP Luxembourg) (, ,) (NNP Germany) (CC and) (NNP Switzerland))))))))))))))))))))) (. .)))
(S1 (S (PP (IN At) (NP (NP (DT an) (JJ opening) (NN reception)) (PP (IN in) (NP (NNP December))))) (, ,) (NP (NP (NNP Los) (NNP Palalia)) (, ,) (NP (NP (DT a) (NN band)) (PP (IN from) (NP (NP (NNP Veracruz)) (, ,) (NP (NNP Mexico))))) (, ,)) (VP (VBD performed) (SBAR (IN while) (S (NP (NNS partygoers)) (VP (VBN noshed) (PP (IN on) (NP (NP (NNP Indian) (NNS samosas)) (CC and) (NP (JJ Chinese) (NN pork) (NNS dumplings)))))))) (. .)))
(S1 (S (PP (IN In) (NP (DT the) (JJ early) (CD 1980s))) (, ,) (S (VP (VBG reacting) (PP (IN against) (NP (NP (DT the) (NN concentration)) (PP (IN of) (NP (JJ cultural) (NNS institutions))) (PP (IN in) (NP (JJ central) (NNP Paris))))))) (, ,) (NP (NP (NP (NNP France) (POS 's)) (NN government)) (, ,) (VP (ADVP (RB then)) (VBN led) (PP (IN by) (NP (DT the) (NNPS Socialists)))) (, ,)) (VP (VBD decided) (S (VP (TO to) (VP (VB turn) (NP (NP (DT this) (NN area)) (, ,) (VP (ADVP (RB once)) (VBN crowded) (PP (IN with) (NP (NNS slaughterhouses)))) (, ,)) (PP (IN into) (NP (NP (DT a) (JJ new) (JJ cultural) (NN district)) (PP (IN within) (NP (NP (JJ easy) (NN reach)) (PP (IN of) (NP (NP (JJ low-income) (NNS suburbs)) (PP (TO to) (NP (DT the) (JJ east))))))))))))) (. .)))
(S1 (SINV (S (NP (PRP It)) (VP (AUX 's) (ADJP (RB very) (JJ hard)) (SBAR (IN for) (S (NP (PRP us)) (VP (TO to) (VP (VB prove) (SBAR (IN that) (S (NP (DT a) (NN person)) (VP (AUX is) (ADVP (RB actually)) (VP (VBG doing) (NP (DT that)))))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Ellis) (NNP Jacob)) (, ,) (NP (NP (NP (DT the) (NN president)) (CC and) (NP (JJ chief) (NN executive))) (PP (IN of) (NP (NP (NNP Cineplex) (NNP Entertainment)) (, ,) (NP (NP (NNP Canada) (POS 's)) (JJ dominant) (NN theater) (NN chain)) (, ,))) (VP (VBG speaking) (PP (IN from) (NP (NNP Toronto)))))) (. .) ('' '')))
(S1 (S (SBAR (IN If) (S (NP (PRP they)) (VP (AUX have) (NP (NP (DT a) (NN residence)) (PP (IN in) (NP (NNP Canada))))))) (, ,) (NP (PRP they)) (VP (MD can) (VP (VB buy) (NP (NN farmland)) (PP (IN in) (NP (NNP Saskatchewan))) (PP (IN through) (NP (NP (DT the) (NNP Agriculture) (NNP Development) (NNP Corporation)) (, ,) (NP (DT a) (JJ private) (NN company)) (, ,))) (PP (IN for) (NP (NP (DT a) (JJ minimum) (NN buy-in)) (PP (IN of) (NP ($ $) (CD 20,000))))))) (. .)))
(S1 (S (NP (NNP America)) (ADVP (RB still)) (VP (AUX has) (NP (NP (JJ diplomatic) (NNS relations)) (PP (IN with) (NP (NNP Syria))) (, ,) (PP (VBG including) (NP (NP (DT a) (JJ chargé) (NNS d'affaires)) (PP (IN at) (NP (NP (DT the) (NNP American) (NNP Embassy)) (PP (IN in) (NP (NNP Damascus))))))))) (. .)))
(S1 (S (NP (PRP It)) (VP (AUX was) (NP (NP (NP (NN midnight)) (ADVP (RB here)) (PP (IN in) (NP (NNP Hanoi)))) (, ,) (CC or) (RB already) (NP (NP (CD 2) (NN a.m.)) (ADVP (RB back) (PP (IN in) (NP (NP (NNP Seoul)) (, ,) (NP (NNP South) (NNP Korea)))))))) (. .)))
(S1 (S (NP (NN PAGE) (NN A18) (NNP Baron) (NNP Guy) (FW de) (NNP Rothschild)) (VP (VBZ Dies) (SBAR (S (NP (NP (DT The) (NN heir)) (PP (TO to) (NP (NP (DT the) (NNP House)) (PP (IN of) (NP (NNP Rothschild) (NN banking) (NN family))))) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBN rebuilt) (NP (PRP$ its) (NNP Paris) (NN bank)) (SBAR (IN after) (S (NP (PRP it)) (VP (AUX was) (VP (VBN seized) (PP (IN by) (NP (NNP France))) (PP (IN during) (NP (NNP World) (NNP War) (NNP II)))))))))) (, ,)) (VP (AUX was) (NP (CD 98)))))) (. .)))
(S1 (S (NP (PRP He)) (VP (VBD served) (PP (IN in) (NP (NP (NNP Washington) (NNP DC) (CC and) (NNP Germany)) (PRN (, ,) (-LRB- -LRB-) (NP (NNP Berlin)) (, ,) (NP (NNP Frankfurt) (CC and) (NNP Bonn)) (-RRB- -RRB-)) (, ,) (NP (NNP Vienna)) (, ,) (NP (NNP Geneva) (, ,) (NNP New) (NNP York) (, ,) (NNP Moscow) (CC and) (NNP Brasilia))))) (. .)))
(S1 (NP (NP (NNP STADELMAN)) (: --) (NP (NP (NNP Egon) (, ,) (NNP P.)) (NP (NP (DT A) (NN native)) (PP (IN of) (NP (NP (NP (NNP Berlin)) (, ,) (NP (NNP Germany))) (, ,) (NP (NP (JJ adored) (NN husband)) (PP (IN of) (NP (NP (NNP Marian)) (PRN (-LRB- -LRB-) (NP (JJ nee) (NNP Stern)) (-RRB- -RRB-)))) (VP (VBN passed) (PRT (RP away)) (ADVP (RB peacefully)) (PP (IN in) (NP (NP (PRP$ his) (NN home)) (PP (IN in) (NP (NNP Riverdale))))) (PP (IN at) (NP (NN age) (CD 96))) (PP (IN on) (NP (NNP May) (CD 27) (, ,) (CD 2007))) (PP (IN after) (S (VP (VBG suffering) (NP (NP (DT a) (NN stroke) (CD four)) (CC and) (NP (DT a) (JJ half) (NNS years) (RB ago)))))))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Meshal)) (VP (VBZ lives) (PP (IN in) (NP (NN exile))) (PP (IN in) (NP (NP (NNP Damascus)) (, ,) (NP (NNP Syria)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (DT the) (NN government)) (VP (AUX has) (VP (VBN rebuffed) (NP (DT all) (NNP Western) (NNS requests)) (S (VP (TO to) (VP (VB close) (NP (PRP$ his) (NN office)))))))))))) (. .) ('' '')))
(S1 (S (CC But) (NP (DT the) (NNS accusations)) (VP (VBD prompted) (S (NP (NNP Ms.) (NNP Royal)) (VP (TO to) (VP (VB disclose) (SBAR (IN that) (S (NP (PRP they)) (VP (VP (AUX had) (NP (JJ taxable) (NNS assets)) (PP (IN worth) (NP (QP (RB about) ($ $) (CD 435,000))))) (CC and) (VP (VBN owned) (NP (NP (NP (DT an) (NN apartment)) (PP (IN in) (NP (NNP Paris)))) (CC and) (NP (NP (NNS houses)) (PP (PP (IN in) (NP (JJ western) (NNP France))) (CC and) (PP (IN in) (NP (DT the) (NNP Alps)))))))))))))) (. .)))
(S1 (S (NP (PRP He)) (VP (AUX was) (VP (VBG referring) (PP (TO to) (NP (NP (NN coverage)) (PP (IN in) (NP (NP (DT the) (NN mainstream) (NN newspaper) (NN Hurriyet)) (SBAR (WHNP (WDT that)) (S (VP (VBD said) (SBAR (S (NP (NNP Mr.) (NNP Asgari)) (VP (VBD arrived) (PP (IN at) (NP (DT the) (NNP Istanbul) (NN airport))) (PP (IN on) (NP (NNP Feb.) (CD 7))) (PP (IN after) (S (VP (VBG moving) (NP (PRP$ his) (NN family)) (PP (TO to) (NP (NN safety))) (PP (IN in) (NP (NP (NNP Damascus)) (, ,) (NP (NNP Syria))))))))))))))))))) (. .)))
(S1 (SINV (S (NP (NNP Germany)) (VP (AUX is) (ADVP (RB still)) (VP (VBG trying) (S (VP (TO to) (VP (VB salvage) (NP (NP (DT some) (NN kind)) (PP (IN of) (NP (NP (DT a) (JJ strategic) (NN partnership)) (PP (IN with) (NP (NNP Russia)))))) (, ,) (SBAR (IN while) (S (NP (NP (DT a) (NN majority)) (PP (IN of) (NP (JJ European) (NNS countries)))) (VP (VBP question) (SBAR (IN whether) (S (NP (DT that)) (ADVP (RB even)) (VP (VBZ makes) (NP (NN sense)) (ADVP (RB anymore)))))))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Alexander) (NNP Rahr)) (, ,) (NP (NP (DT an) (NN expert)) (PP (IN on) (NP (NNP Russia))) (PP (IN at) (NP (NP (DT the) (JJ German) (NNP Council)) (PP (IN on) (NP (NP (NNP Foreign) (NNP Relations)) (PP (IN in) (NP (NNP Berlin))))))))) (. .) ('' '')))
(S1 (S (NP (NNP Henry) (NNP Louis) (NNP Gates) (NNP Jr.)) (, ,) (NP (PRP she)) (VP (VBD said) (, ,) ('' '') (S (VP (VBD turned) (NP (PRP me)) (PRT (RP on)) (PP (TO to) (NP (NNP Josephine) (NNP Baker))) (, ,) (SBAR (IN so) (S (NP (PRP I)) (VP (VBD headed) (ADVP (RB off)) (PP (TO to) (NP (NNP France))) (PP (IN with) (NP (NP (DT the) (NN intention)) (PP (IN of) (S (VP (VBG reading) (NP (NP (PRP$ her) (NN reception)) (PP (IN in) (NP (NNP Paris)))) (PP (IN as) (NP (DT a) (JJ cultural) (NN text)))))))))))))) (. .) ('' '')))
(S1 (SINV (ADVP (RB Here)) (AUX are) (NP (NP (DT the) (ADJP (ADJP (JJ familiar)) (CC and) (PRN (, ,) (ADVP (RBR more) (RB interestingly)) (, ,)) (ADJP (DT some) (RBR less) (JJ familiar)) (, ,)) (NNS shots)) (PP (IN of) (NP (NP (NNS crowds)) (PP (IN in) (NP (NP (NNP Hyde) (NNP Park)) (PP (IN in) (NP (NNP London))))) (PP (IN at) (NP (NP (NNP George) (NNP VI) (POS 's)) (NN coronation))))) (, ,) (PP (IN of) (NP (NP (NNS picnickers)) (PP (IN on) (NP (NP (NP (DT the) (NNS banks)) (PP (IN of) (NP (NP (DT the) (NNP Marne)) (PP (IN in) (NP (NNP France)))))) (CC and) (NP (NP (NNS whores)) (PP (IN in) (NP (NP (NNP Valencia)) (, ,) (NP (NNP Spain)))))))))) (. .)))
(S1 (S (S (NP (NP (DT An) (NN acquaintance)) (PP (IN of) (NP (NN mine))) (PP (IN in) (NP (NNP Delhi))) (SBAR (WHNP (WP who)) (S (VP (VBZ owns) (NP (NP (DT a) (NN house)) (PP (IN in) (NP (NNP Goa)))))))) (VP (VB put) (NP (PRP it)) (ADVP (RB bluntly)))) (: :) (S (SBAR (IN If) (S (NP (PRP you)) (VP (VBP want) (S (VP (TO to) (VP (VB get) (PRT (RP out)) (PP (IN of) (NP (NNP India))))))))) (, ,) (VP (VB come) (PP (TO to) (NP (NNP Goa))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Williams)) (VP (VP (VBD went) (PP (TO to) (NP (NNP Paris))) (NP (DT that) (JJ same) (NN year)) (PP (IN for) (NP (PRP$ his) (NN honeymoon)))) (CC and) (VP (VBD decided) (S (VP (TO to) (VP (VB live) (PP (IN in) (NP (NP (NNP France)) (CC and) (NP (JJ later) (NNP Switzerland))))))))) (. .)))
(S1 (S (NP (CD One)) (VP (AUX is) (NP (NP (DT a) (JJ four-week) ('' '') (NN explorer)) (SBAR (S (VP (AUX 's) (NP (NP (NN trip)) ('' '') (PP (TO to) (NP (NNP France)))) (, ,) (PP (IN with) (NP (NP (NP (DT a) (NN hike)) (PP (IN in) (NP (NP (DT the) (NNP Alps)) (PP (IN of) (NP (NNP Chamonix)))))) (, ,) (NP (NP (DT a) (NN river) (NN trip)) (PP (IN between) (NP (NP (NNP Switzerland)) (CC and) (NP (NNP France))))) (, ,) (NP (NP (NNS visits)) (PP (TO to) (NP (NP (JJ D-Day) (NNS sites)) (PP (IN in) (NP (NNP Normandy)))))) (, ,) (CC and) (NP (NP (NN sightseeing)) (PP (IN in) (NP (NNP Paris))))))))))) (. .)))
(S1 (SINV (S (PP (IN Despite) (NP (PDT all) (NP (DT the) (NNP Western) (NN donor) (NN money)) (CC and) (NP (NP (JJ American-financed) (NNS projects)) (VP (VBN aimed) (PP (IN at) (S (VP (VBG reforming) (NP (NP (DT the) (NNS judiciaries)) (ADVP (RB here)))))))))) (, ,) (NP (DT this)) (VP (AUX is) (NP (NP (DT all) (NN part)) (PP (IN of) (NP (NP (DT a) (JJR bigger) (NNP Central) (NNP Asian) (NN trend)) (SBAR (S (VP (TO to) (VP (VB make) (S (NP (PRP$ their) (JJ judicial) (NNS systems)) (ADJP (JJ subordinate) (PP (TO to) (NP (PRP$ their) (NNS presidents)))))))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Michael) (NNP Hall)) (, ,) (NP (NP (DT an) (NN analyst)) (PP (IN in) (NP (NP (NNP Bishkek)) (, ,) (NP (NNP Kyrgyzstan)) (, ,))) (PP (IN with) (NP (NP (DT the) (NNP International) (NN Crisis) (NNP Group)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ seeks) (S (VP (TO to) (VP (VB prevent) (NP (JJ violent) (NN conflict)))))))))))) (. .) ('' '')))
(S1 (S (SBAR (IN As) (S (NP (NP (NNP Maritza) (NNP Corrales)) (, ,) (NP (NP (NP (DT a) (JJ Cuban) (NN historian)) (SBAR (WHNP (WP who)) (S (VP (VBZ lives) (PP (IN in) (NP (NP (NNP Havana)) (CC and) (NP (NP (DT the) (NN author)) (PP (IN of) ('' '') (NP (DT The) (NNP Chosen) (NNP Island)))))))))) (: :) (NP (NP (NNPS Jews)) (PP (IN in) (NP (NNP Cuba))))) (, ,) ('' '')) (VP (VBD remarked)))) (, ,) ('' '') (VP (TO To) (VP (AUX be) (ADJP (JJ Cuban) (CC and) (JJ Jewish)))) (VP (AUX is) (S (VP (TO to) (VP (AUX be) (NP (RB twice) (NNS survivors)))))) (. .) ('' '')))
(S1 (S (NP (JJ Many) (JJ foreign) (NNS investors)) (VP (VBP say) (SBAR (S (NP (DT the) (NN investigation)) (VP (AUX is) (ADJP (JJ emblematic) (PP (IN of) (NP (NP (DT the) (JJ political) (NN uncertainty)) (SBAR (S (NP (PRP they)) (VP (VBP face) (PP (IN in) (S (VP (VBG investing) (PP (IN in) (NP (NP (NNP South) (NNP Korea)) (, ,) (NP (NP (DT a) (NN concern)) (SBAR (WHNP (WDT that)) (S (VP (VBZ looms) (ADJP (JJ large)) (SBAR (IN as) (S (NP (NNP Washington) (CC and) (NNP Seoul)) (VP (AUX are) (VP (VBG negotiating) (NP (DT a) (JJ free) (NN trade) (NN agreement))))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (CD ONE)) (PP (IN of) (NP (NP (DT the) (ADJP (JJS biggest) (CC and) (JJS best) (VBN known)) (NNP North) (NNP American) (NN winter) (NNS festivals)) (, ,) (NP (NP (DT the) (NNP Winterlude)) (PP (IN in) (NP (NNP Ottawa)))) (CC and) (PP (IN across) (NP (DT the) (NNP Ottawa) (NNP River))) (PP (IN in) (NP (NP (NNP Gatineau)) (, ,) (NP (NNP Quebec)) (, ,)))))) (VP (VBZ draws) (NP (CD 650,000) (NNS people)) (, ,) (PP (VBG including) (NP (NP (JJ many)) (PP (IN from) (PP (IN outside) (NP (NNP Canada))))))) (. .)))
(S1 (S (S (NP (PRP He)) (VP (AUX had) (VP (AUX been) (PP (IN in) (NP (DT the) (NNP United) (NNPS States))) (PP (IN for) (NP (CD 15) (NNS days)))))) (: --) (S (NP (PRP$ his) (NN home)) (VP (AUX is) (PP (IN in) (NP (NP (NNP Guanajuato)) (, ,) (NP (NNP Mexico)))))) (: --) (CC and) (S (NP (PRP he)) (VP (VBD wanted) (S (VP (TO to) (VP (VB spend) (NP (NP (DT the) (JJ last)) (PP (IN of) (NP (PRP$ his) (JJ Mexican) (NN currency))))))))) (. .) ('' '')))
(S1 (S (PP (IN At) (NP (NP (DT an) (JJ opening) (NN reception)) (PP (IN in) (NP (NNP December))))) (, ,) (NP (NP (NNP Los) (NNP Palalia)) (, ,) (NP (NP (DT a) (NN band)) (PP (IN from) (NP (NP (NNP Veracruz)) (, ,) (NP (NNP Mexico))))) (, ,)) (VP (VBD performed) (SBAR (IN while) (S (NP (NNS partygoers)) (VP (VBN noshed) (PP (IN on) (NP (NP (NNP Indian) (NNS samosas)) (CC and) (NP (JJ Chinese) (NN pork) (NNS dumplings)))))))) (. .)))
(S1 (S (NP (PRP They)) (VP (VBD married) (PP (IN in) (NP (CD 1965))) (PP (IN in) (NP (NP (NNP Juárez)) (, ,) (NP (NNP Mexico)))) (, ,) (S (VP (VBG coinciding) (PP (IN with) (NP (NP (NP (NNP Coltrane) (POS 's)) (NN divorce)) (PP (IN from) (NP (NP (PRP$ his) (JJ first) (NN wife)) (, ,) (NP (NNP Naima) (NNP Grubbs))))))))) (. .)))
(S1 (S (CC But) (PP (ADVP (RB here)) (IN in) (NP (NP (JJ rural) (JJ Bihar) (NN state)) (PP (IN in) (NP (JJ northern) (NNP India))))) (, ,) (NP (EX there)) (VP (AUX 's) (NP (NP (DT no) (JJ economic) (NN miracle)) (SBAR (S (VP (TO to) (VP (AUX be) (VP (VBN seen)))))))) (. .)))
(S1 (S (PP (IN On) (NP (NNP May) (CD 8))) (, ,) (NP (NP (NNP Representative) (NNP Marcy) (NNP Kaptur)) (, ,) (NP (DT an) (NNP Ohio) (NNP Democrat)) (, ,) (CC and) (NP (DT a) (NN dozen) (JJ other) (NNS legislators))) (VP (VBD wrote) (PP (TO to) (NP (NP (NNP President) (NNP Felipe) (NNP Calderón)) (PP (IN of) (NP (NP (NNP Mexico)) (CC and) (NP (NP (DT the) (NN governor)) (PP (IN of) (NP (NP (DT the) (NN state)) (PP (IN of) (S (NP (NP (NNP Nuevo) (NNP León)) (, ,) (SBAR (WHPP (IN of) (WHNP (WDT which))) (S (NP (NNP Monterrey)) (VP (AUX is) (NP (DT the) (NN capital))))) (, ,)) (VP (VBG urging) (NP (PRP them)) (S (VP (TO to) (VP (VP (ADVP (RB thoroughly)) (VB investigate) (NP (DT the) (NN killing))) (CC and) (VP (VB provide) (NP (NN protection)) (PP (IN for) (NP (NP (DT the) (NN rest)) (PP (IN of) (NP (DT the) (NNP Mexico) (NN staff)))))))))))) (PP (IN of) (NP (NP (DT the) (NN farm) (NNS workers) (POS ')) (NN union))))))))))) (. .)))
(S1 (S (NP (NP (NNP Grant) (NNP Strate)) (, ,) (NP (NP (DT a) (VBG founding) (NN member)) (PP (IN of) (NP (DT the) (NNP National) (NNP Ballet))) (SBAR (WHNP (WP who)) (S (VP (VBD became) (NP (DT a) (JJ successful) (NN choreographer)))))) (, ,)) (VP (VBD recalled) (PP (IN in) (NP (NP (PRP$ his) (NN autobiography)) (, ,) ('' '') (NP (NNP Grant) (NNP Strate)))) (: :) (NP (NP (DT A) (NN Memoir)) ('' '') (PRN (-LRB- -LRB-) (NP (NNP Toronto)) (: :) (NP (NP (NNP Dance) (NN Collection) (NNP Danse)) (, ,) (NP (CD 2002))) (-RRB- -RRB-)) (SBAR (IN that) (S (SBAR (WHADVP (WRB when)) (S (NP (NNP Miss) (NNP Franca)) (VP (AUX was) (VP (VBN invited) (PP (TO to) (NP (DT a) (NN gathering))) (PP (IN during) (NP (NP (PRP$ her) (JJ early) (NNS days)) (PP (IN in) (NP (NNP Canada))))))))) (, ,) (NP (PRP she)) ('' '') (VP (ADVP (RB effortlessly)) (VBD cut) (NP (DT a) (NN swath)) (PP (IN through) (NP (DT the) (NN room))) (, ,) (S (VP (VBG exuding) (NP (NN poise) (CC and) (NN sophistication))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NP (NNP Eastern) (NNP Germany) (POS 's)) (CD three) (JJS southernmost) (NNS states)) (: --) (NP (NNP Saxony) (, ,) (NNP Thuringia) (CC and) (NNP Saxony-Anhalt)) (: --)) (VP (AUX are) (VP (VBG growing) (ADVP (RBR faster) (PP (IN than) (NP (NNP Germany)))) (PP (IN as) (NP (DT a) (NN whole))) (, ,) (SBAR (IN while) (S (NP (NP (DT the) (JJ northern) (NNS states)) (PP (IN in) (NP (DT the) (JJ east)))) (VP (AUX are) (VP (VBG languishing))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Taylor)) (VP (VBZ begins) (, ,) (ADVP (RB therefore)) (, ,) (PP (IN with) (NP (NP (NP (DT the) (JJ awkward)) (, ,) (VP (ADVP (RB hastily)) (VBD improvised) (NP (NP (NN partition)) (PP (IN of) (NP (NNP Germany) (CC and) (NNP Berlin)))) (PP (IN after) (NP (DT the) (NN war)))) (, ,)) (CC and) (NP (NP (DT the) (JJ irreconcilable) (NNS differences)) (SBAR (WHNP (WDT that)) (S (VP (MD would) (VP (VB make) (S (NP (NNP Berlin)) (NP (NP (DT a) (NN trigger)) (PP (IN for) (NP (NP (JJ potential) (NNP East-West) (NN conflict)) (, ,) (CC and) (NP (NP (DT an) (JJ insoluble) (NN problem)) (PP (IN for) (NP (NP (DT both) (NNS adversaries)) (, ,) (PP (ADVP (RB especially)) (IN as) (NP (NP (JJ German) (NNS leaders)) (, ,) (NP (NNP East) (CC and) (NNP West)) (, ,) (VP (VBN learned) (SBAR (WHADVP (WRB how)) (S (VP (TO to) (VP (VB manipulate) (NP (PRP$ their) (NNS masters)))))))))))))))))))))))) (. .)))
(S1 (NP (NNP XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)))
(S1 (S (NP (DT The) (NNP White) (NNP House)) (PP (IN in) (NP (NNP April))) (VP (ADVP (RB sharply)) (VBD criticized) (NP (NP (NP (DT the) (NNP Speaker)) (PP (IN of) (NP (DT the) (NNP House)))) (, ,) (NP (NNP Nancy) (NNP Pelosi)) (, ,)) (PP (IN for) (S (VP (VP (VBG visiting) (NP (NP (NP (NNP Syria) (POS 's)) (NN capital)) (, ,) (NP (NNP Damascus)) (, ,))) (CC and) (VP (VBG meeting) (PP (PP (IN with) (NP (NNP President) (NNP Bashar) (NN al-Assad))) (, ,) (RB even) (S (VP (VBG going) (ADVP (RB so) (RB far)) (PP (IN as) (S (VP (VBG calling) (NP (DT the) (NN trip))))) ('' '') (NP (JJ bad) (NN behavior)) (, ,) ('' '') (PP (IN in) (NP (NP (DT the) (NNS words)) (PP (IN of) (NP (NNP Vice) (NNP President) (NNP Dick) (NNP Cheney))))))))))))) (. .)))
(S1 (S (PP (IN During) (NP (PRP$ her) (NN lifetime))) (, ,) (NP (NNP Miss) (NNP Shelton)) (VP (VBD performed) (PP (IN in) (NP (NNS recitals))) (PP (PP (IN in) (NP (NNP New) (NNP York) (NNP City))) (, ,) (PP (IN in) (NP (NP (NNP Toronto)) (, ,) (NP (NNP Canada)))) (, ,) (CC and) (PP (IN throughout) (NP (NNP Florida))))) (. .)))
(S1 (S (SBAR (WHADVP (WRB When)) (S (NP (NP (NNP Julian) (NNP Resuello)) (, ,) (NP (NP (DT the) (NN mayor)) (PP (IN of) (NP (NP (NNP San) (NNP Carlos) (NNP City)) (PP (IN in) (NP (DT the) (JJ northern) (NNP Philippines)))))) (, ,)) (VP (AUX was) (VP (VBN killed) (PP (IN by) (NP (NNS gunmen))) (PP (IN at) (NP (NP (DT a) (NN campaign) (NN rally)) (PP (IN on) (NP (NNP April) (CD 28))))))))) (, ,) (NP (PRP$ his) (NN brother)) (VP (ADVP (RB quickly)) (VBN stepped) (PP (IN into) (NP (PRP$ his) (NNS shoes)))) (. .)))
(S1 (S (S (NP (NP (NNP Boquete)) (PRN (-LRB- -LRB-) (NP (JJ pronounced) (NN bo-KETT-eh)) (-RRB- -RRB-))) (VP (VBD boarded) (NP (NP (DT a) (JJ shrimp) (NN boat)) (PP (IN in) (NP (NP (DT the) (NN port)) (PP (IN of) (NP (NP (NNP Mariel) (, ,) (NNP Cuba) (, ,)) (PP (IN in) (NP (NP (CD 1980)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (VP (AUX was) (NP (CD 25)) (, ,) (S (VP (VBG leaving) (PP (IN behind) (NP (NP (CD one) (NN son)) (, ,) (NP (CD two) (NNS marriages)) (, ,))) (NP (NP (DT a) (NN career)) (PP (IN as) (NP (NP (DT a) (JJ diesel) (NN mechanic)) (PP (IN in) (NP (NP (NNP Havana)) (CC and) (NP (NP (DT a) (NN jail) (NN record)) (PP (IN as) (NP (DT a) (NNP Cuban) (NNP Army) (NN deserter))))))))))))))))))))) (: --) (S (NP (DT this) (JJ last) (NN credential)) (ADJP (JJ essential))))) (, ,) (NP (PRP he)) (VP (VBD believed) (, ,) (PP (TO to) (S (VP (VBG helping) (S (NP (PRP him)) (VP (VB clear) (NP (JJ bureaucratic) (NNS hurdles)) (PP (IN for) (S (VP (VBG departing) (NP (NNP Cuba))))))))))) (. .)))
(S1 (SINV (S (S (S (NP (DT The) (NNP Pixar) (NN crew)) (VP (VP (VBD took) (NP (NN cooking) (NNS classes))) (, ,) (VP (VBD ate) (PP (IN at) (NP (JJ notable) (NNS restaurants))) (PP (IN in) (NP (NNP Paris)))) (CC and) (VP (VBD worked) (PP (IN alongside) (NP (NNP Mr.) (NNP Keller))) (PP (IN at) (NP (NP (DT the) (JJ French) (NN Laundry)) (PP (IN in) (NP (NNP Yountville) (, ,) (NNP Calif.))) ('' '') (PP (IN As) (NP (NP (DT a) (JJ former) (NN actor)) (CC and) (NP (NN dancer))))))))) (, ,) (NP (PRP I)) (VP (AUX have) (VP (VBN spent) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NN time)))) (PP (IN in) (NP (NNS restaurants)))))) (, ,) (CC but) (S (NP (PRP I)) (VP (AUX had) (NP (NP (NP (DT no) (NN idea)) (PP (IN of) (NP (NP (DT that) (JJ vast) (NN difference)) (PP (IN between) (NP (NNP France) (CC and) (NNP America)))))) (, ,) (CC and) (NP (RB especially) (DT the) (JJ three-star) (NNS restaurants))) (PP (IN in) (NP (NNP Paris)))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Brad) (NNP Lewis)) (, ,) (NP (DT the) (NN director))) (. .)))
(S1 (S (NP (NNS Curators)) (VP (AUX have) (VP (AUX been) (VP (VBG snapping) (PRT (RP up)) (NP (NP (NNP Mexico) (NNP City) (NN artwork)) (PP (IN in) (NP (NP (NNS places)) (PP (IN like) (NP (NNP Basel)))))) (ADVP (RB now)) (SBAR (S (NP (PRP they)) (VP (MD will) (VP (VB descend) (PP (IN on) (NP (DT the) (NN city))) (NP (DT this) (NNP April)) (PP (IN for) (NP (NP (NNP Mexico) (NNP Arte) (NNP Contemporáneo)) (, ,) (NP (PRP$ its) (JJ fledging) (JJ contemporary) (NN art) (NN fair))))))))))) (. .)))
(S1 (S (NP (PRP He)) (VP (AUX is) (VP (VBN survived) (PP (IN by) (NP (NP (NN daughter) (NNP Diana)) (CC and) (NP (NP (PRP$ her) (NN partner) (NNP Ted) (NNP Rabinowitch)) (, ,) (PP (IN of) (NP (NP (NNP Fort) (NNP Bragg)) (, ,) (NP (NNP California)) (, ,) (NP (NP (NN son) (NNP David)) (PP (IN of) (NP (NAC (NNP Brooklyn) (, ,) (NNP NY) (, ,)) (NN son) (NNP Sebastian)))) (CC and) (NP (PRP$ his) (NN partner) (NNP Stephen) (NNP McCauley)))) (, ,) (PP (IN of) (NP (NP (NP (NAC (NNP Cambridge) (, ,) (NNP Massachusetts) (, ,)) (NN daughter) (NNP Rebecca)) (PP (IN of) (NP (NNP Berlin)))) (, ,) (NP (NNP Germany)) (, ,) (NP (CD three) (NNS grandchildren)) (CC and) (NP (CD three) (NNS great-grandchildren))))))))) (. .)))
(S1 (S (NP (NP (NNP Nelly) (NNP Furtado) (POS 's)) (NNP Weekend) (NNP The) (NN pop) (NN singer) (NNP Nelly) (NNP Furtado)) (VP (AUX was) (NP (NP (DT the) (JJ big) (NN winner)) (PRN (-LRB- -LRB-) (CC and) (NP (DT the) (NN host)) (-RRB- -RRB-)) (SBAR (WHNP (WRB when)) (S (S (NP (NP (DT the) (NNPS Junos)) (, ,) (NP (NP (NP (NNP Canada) (POS 's)) (NN equivalent)) (PP (IN of) (NP (DT the) (NNPS Grammys)))) (, ,)) (VP (AUX were) (VP (VBN awarded) (PP (IN in) (NP (NNP Toronto))) (PP (IN on) (NP (NNP Sunday)))))) (, ,) (S (NP (NNP Reuters)) (VP (VBN reported))))))) (. .)))
(S1 (S (PP (IN In) (NP (NNP Damascus))) (, ,) (NP (NP (NNP Mounir) (NNP Ali)) (, ,) (NP (DT a) (NAC (NNP Ministry) (PP (IN of) (NP (NNP Information)))) (NN spokesman)) (, ,)) (VP (VBD conceded) (SBAR (IN that) (S (S (VP (VBG controlling) (NP (NP (NP (NNP Syria) (POS 's)) (JJ long) (NN border)) (PP (IN with) (NP (NNP Iraq)))))) (VP (VP (AUX was) (ADJP (JJ difficult))) (CC and) (VP (VBD blamed) (NP (DT the) (NNPS Americans)) (PP (IN for) (S (RB not) (VP (VBG supplying) (NP (JJ border-control) (NN technology)))))))))) (. .)))
(S1 (S (NP (NP (NNP Catalan) (NNP Spring)) (PP (IN In) (NP (NN spring))) (NP (NP (DT the) (NNP Catalonia) (NN region)) (PP (IN of) (NP (NNP Spain))))) (VP (AUX is) (VP (VBN filled) (PP (IN with) (NP (NP (DT the) (NN aroma)) (PP (IN of) (S (VP (VBG grilling) (NP (NP (JJ green) (NNS onions)) (SBAR (WHNP (WDT that)) (S (VP (VP (AUX are) (PP (IN like) (NP (NNS leeks)))) (, ,) (NP (NP (DT a) (NN tradition)) (VP (VBN called) (S (NP (DT the) (NNP calçotada)))))))))))))))) (. .)))
(S1 (S (NP (JJ Such)) (VP (AUX is) (NP (DT the) (NN case)) (PP (IN with) (NP (NP (NNP Navarre)) (, ,) (NP (NP (DT a) (JJ historic) (NN region)) (PP (IN in) (NP (JJ northern) (NNP Spain))) (, ,) (ADVP (RB just) (RB south) (PP (IN of) (NP (NP (NP (DT the) (NN city)) (PP (IN of) (NP (NNP Pamplona)))) (CC and) (NP (NP (DT a) (JJ little) (NN northeast)) (PP (IN of) (NP (NNP Rioja))))))))))) (. .)))
(S1 (S (S (NP (NP (NN BUSINESS) (NN DAY)) (, ,) (NP (NP (NNP PAGE) (NNP C1) (NNP Castro)) (VP (VBG Missing) (PP (IN on) (NP (NNP May) (NNP Day))) (NP (DT The) (NNS throngs))))) (VP (AUX were) (ADJP (RP out)) (PP (IN in) (NP (NP (DT the) (NNS streets)) (PP (IN of) (NP (NNP Havana))))) (SBAR (IN as) (S (NP (PRP they)) (ADVP (RB always)) (VP (AUX are) (PP (IN on) (NP (NNP May) (NNP Day)))))))) (, ,) (CC but) (S (NP (NP (NNP Cuba) (POS 's)) (NN holiday) (VBG honoring) (NNS workers)) (VP (VBD came) (CC and) (VBD went) (PP (IN without) (NP (NNP Fidel) (NNP Castro))))) (. .)))
(S1 (S (NP (DT The) (NNS filmmakers)) (VP (VBP cite) (NP (NP (DT the) (NN interpretation)) (PP (IN of) (NP (NP (DT a) (NNP Harvard) (NN professor)) (, ,) (NP (NNP François) (NNP Bovon)) (, ,) (UCP (PP (IN of) (NP (NP (DT the) ('' '') (NNS Acts)) (PP (IN of) (NP (NNP Phillip))))) (, ,) ('' '') (NP (NP (DT a) (NN text)) (PP (IN from) (NP (DT the) (JJ fourth) (CC or) (JJ fifth) (NN century)))) (CC and) (VP (ADVP (RB recently)) (VBN recovered) (PP (IN from) (NP (NP (DT a) (NN monastery)) (PP (IN at) (NP (NP (NNP Mount) (NNP Athos)) (PP (IN in) (NP (NNP Greece))))))))))))) (. .)))
(S1 (S (S (NP (PRP He)) (VP (AUX was) (VP (VBN born) (PP (IN in) (NP (NP (NNP Athens)) (, ,) (NP (NNP Greece))))))) (, ,) (VP (VBD studied) (NP (NN art)) (PP (PP (IN at) (NP (NP (DT the) (NNP Ecoles) (FW des) (NNP Beaux) (NNP Arts)) (PP (IN in) (NP (NNP Paris) (, ,) (NNP France))))) (CC and) (PP (IN at) (NP (NNP Yale)))) (PP (IN with) (NP (NNP Josef) (NNPS Albers)))) (. .)))
(S1 (S (NP (NP (NP (NP (NNP Spencer) (POS 's)) (NNP Mercantile)) (PRN (-LRB- -LRB-) (NP (CD 905-525-6303) (CC or) (NN mrsmcleans.com)) (-RRB- -RRB-))) (, ,) (NP (NP (DT a) (NN company)) (PP (IN in) (NP (NP (NNP Hamilton)) (, ,) (NP (NNP Ontario)) (, ,) (NP (NNP Canada))))) (, ,)) (VP (VBZ sells) (NP (NP (JJ handcrafted) (NNS replicas)) (PP (IN of) (NP (JJ historic) (NNS drums))))) (. .)))
(S1 (S (PP (IN On) (NP (NNP Thursday))) (, ,) (NP (QP (JJR more) (IN than) (CD 30)) (NNS people)) (VP (AUX were) (VP (VBN reported) (ADVP (RB dead)) (PP (IN in) (NP (NNP Madhya) (NNP Pradesh))) (, ,) (PP (IN in) (NP (NP (JJ central) (NNP India)) (, ,) (CC and) (NP (NP (QP (IN at) (JJS least) (CD 20))) (PP (IN in) (NP (NNP Bihar)))))) (, ,) (PP (IN in) (NP (JJ northeastern) (NNP India))) (, ,) (PP (IN because) (IN of) (NP (DT a) (JJ severe) (JJ cold) (NN snap))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP A6) (NNP Pelosi) (VBZ Meets)) (PP (IN With) (NP (NP (NNP Syria) (NNP Leader) (NNP Nancy) (NNP Pelosi)) (, ,) (NP (NP (DT the) (NN speaker)) (PP (IN of) (NP (DT the) (NNP House)))) (, ,)))) (VP (VBD said) (SBAR (S (NP (PRP she)) (VP (AUX had) (NP (NP (JJ frank) (NNS words)) (PP (IN with) (NP (NP (NNP President) (NNP Bashar) (NNP al-Assad)) (CC and) (NP (JJ other) (JJ Syrian) (NNS officials))))) (PP (IN in) (NP (NNP Damascus))) (, ,) (S (VP (VP (VBG pressing) (NP (DT the) (NN president)) (PP (IN over) (NP (NP (NP (NNP Syria) (POS 's)) (NN support)) (PP (IN for) (NP (JJ militant) (NNS groups)))))) (CC and) (VP (VBG insisting) (SBAR (IN that) (S (NP (PRP$ his) (NN government)) (VP (VB block) (NP (NP (NNS militants)) (VP (VBG seeking) (S (VP (TO to) (VP (VB cross) (PP (IN into) (NP (NNP Iraq)))))))))))))))))) (. .)))
(S1 (S (NP (JJ Last) (NN week)) (NP (NP (DT a) (JJ 24-member) (NN jury)) (SBAR (WHNP (WDT that)) (S (VP (VBD included) (SBAR (S (NP (NP (NP (NNP France) (POS 's)) (NN culture) (NN minister)) (CC and) (NP (NP (DT the) (NN mayor)) (PP (IN of) (NP (NNP Paris))))) (VP (VBD picked) (NP (NP (NNP Mr.) (NNP Nouvel) (POS 's)) (NN design)) (PP (IN over) (NP (NP (DT those)) (PP (IN of) (NP (NP (NNP Mr.) (NNP Portzamparc)) (, ,) (NP (NNP Francis) (NNP Soler)) (, ,) (NP (NNP Zaha) (NNP Hadid)) (, ,) (NP (NP (DT the) (JJ Vienna-based) (NN firm) (NNP Coop) (NNP Himmelb)) (-LRB- -LRB-) (NP (NNP l)) (-RRB- -RRB-) (FW au)) (CC and) (NP (DT the) (NNP Dutch) (NN firm))))))))))))) (VP (VBD MVRDV)) (. .)))
(S1 (S (NP (NP (DT The) (NNP Eastern) (NNP Arc) (NNPS Mountains)) (PP (IN of) (NP (NNP Tanzania)))) (VP (MD may) (RB not) (VP (AUX be) (ADJP (RB terribly) (JJ tall)) (: --) (NP (NP (QP (RB only) (PDT half)) (DT the) (NN height)) (PP (IN of) (NP (NP (PRP$ their) (JJ famous) (NN neighbor)) (, ,) (NP (NNP Mount) (NNP Kilimanjaro))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Skovmand)) (VP (VP (AUX was) (VP (VBN born) (PP (IN in) (NP (NP (NNP Frederiksberg)) (, ,) (NP (NNP Denmark)))))) (, ,) (CC and) (VP (AUX was) (NP (DT a) (JJ Danish) (NN citizen)))) (. .)))
(S1 (S (NP (NP (NP (NNP Yun) (NNP Zhao)) (, ,) (NP (CD 31))) (, ,) (NP (NP (DT a) (JJ bright) (NN woman)) (SBAR (WHNP (WP who)) (S (VP (VBZ works) (PP (IN in) (NP (DT a) (JJ large) (NN insurance) (NN company))) (ADVP (RB here)))))) (, ,)) (VP (AUX was) (VP (VBN drawn) (PRT (RP back)) (ADVP (RB here)) (PP (IN after) (S (VP (VP (VBG studying) (PP (IN in) (NP (NNP Toronto)))) (CC and) (VP (VBG becoming) (NP (NP (DT a) (JJ legal) (NN resident)) (PP (IN of) (NP (NP (NNP Canada)) (, ,) (NP (NP (NN something)) (SBAR (WHNP (WDT that)) (S (VP (AUX has) (ADVP (RB long)) (VP (AUX been) (ADJP (JJ close) (PP (TO to) (NP (NP (DT an) (JJ irresistible) (NN dream)) (PP (IN for) (NP (JJ many) (NNPS Chinese)))))))))))))))))))) (. .) ('' '')))
(S1 (S (ADVP (RB Elsewhere) (PP (IN in) (NP (NNP Havana)))) (, ,) (NP (EX there)) (VP (AUX is) (NP (NP (NP (DT the) (NNP Sephardic) (NNP Hebrew) (NNP Center)) (PP (IN of) (NP (NNP Cuba)))) (, ,) (CC and) (NP (NP (DT the) (JJ Conservative) (NNP Beth) (FW Shalom) (NN synagogue)) (, ,) (NP (NP (JJS largest)) (PP (IN of) (NP (DT the) (CD three) (NNS synagogues)))) (, ,) (PP (IN with) (NP (QP (JJR more) (IN than) (CD 500)) (NNS members)))))) (. .)))
(S1 (S (S (NP (PRP We)) (VP (AUX are) (ADJP (RB very) (JJ happy) (S (VP (TO to) (VP (AUX have) (NP (NNP China)) (PP (IN as) (NP (NP (PRP$ our) (JJ big) (NN brother)) (PP (IN in) (NP (DT this) (NN region))))))))))) (, ,) ('' '') (NP (NP (NNP President) (NNP Gloria) (NNP Macapagal) (NNP Arroyo)) (PP (IN of) (NP (DT the) (NNP Philippines)))) (VP (VBD said) (PP (IN at) (NP (NP (DT the) (NN opening) (NN ceremony)) (PP (IN of) (NP (NP (DT the) (JJ one-day) (NN meeting)) (PP (IN in) (NP (NP (NNP Cebu)) (, ,) (NP (DT a) (JJ central) (NNP Philippine) (NN province))))))))) (. .)))
(S1 (S (NP (NP (NNP Alliance) (NNP Atlantis)) (, ,) (VP (VBN based) (PP (IN in) (NP (NNP Toronto)))) (, ,)) (VP (AUX is) (PP (IN in) (NP (NP (DT a) (NN dispute)) (PP (IN with) (NP (NP (NNP Canada) (POS 's)) (NN broadcast) (NN regulator))) (PP (IN over) (NP (NP (DT the) (JJ true) (NN nature)) (PP (IN of) ('' '') (NP (NNP CSI))))))) (: :) (NP (NP (NNP NY)) (, ,) ('' '') (SBAR (WHNP (WDT which)) (S (VP (AUX is) (VP (AUXG being) (VP (VBN broadcast) (NP (NP (QP (CD two) (CC or) (CD three)) (NNS times)) (NP (DT a) (NN day))) (PP (IN on) (NP (NN History) (NN Television)))))))) (, ,) (NP (NP (DT a) (NN cable) (NN channel)) (VP (ADVP (RB also)) (VBN owned) (PP (IN by) (NP (NNP Alliance) (NNP Atlantis))))))) (. .)))
(S1 (S (NP (NP (NP (NNP Aimee)) (, ,) (VP (VBN born) (PP (IN in) (NP (NNP Paris)))) (, ,)) (CC and) (NP (PRP$ her) (NNS parents))) (VP (VP (VBD fled) (NP (NNP France)) (PP (IN in) (NP (CD 1942)))) (, ,) (CC and) (VP (VBD made) (NP (DT a) (ADJP (JJ new) (CC and) (JJ happy)) (NN life)) (PP (IN in) (NP (DT the) (NNP United) (NNPS States))))) (. .)))
(S1 (S (NP (PRP$ His) (ADJP (RBS most) (JJ recent)) (NN book)) (VP (AUX is) (UCP ('' '') (NP (NP (NP (NN Murder)) (PP (IN in) (NP (NNP Amsterdam)))) (: :) (NP (NP (NP (NNP The) (NNP Death)) (PP (IN of) (NP (NNP Theo) (NNP van) (NNP Gogh)))) (CC and) (NP (NP (DT the) (NNS Limits)) (PP (IN of) (NP (NN Tolerance)))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Senator) (NNP Craig) (NNP Thomas)) (, ,) (NP (NP (DT a) (NNP Wyoming) (NNP Republican)) (SBAR (WHNP (WP who)) (S (VP (VBD combined) (NP (NP (DT a) (JJ deep) (NN love)) (PP (IN of) (NP (JJ Western) (JJ rural) (NN life)))) (PP (IN with) (NP (NP (DT a) (JJ 23-year) (JJ public) (NN career)) (PP (IN in) (NP (NP (PRP$ his) (NN home) (NN state)) (CC and) (NP (NNP Washington)))))))))) (, ,)) (VP (VBD died) (NP (NNP Monday) (NN evening)) (PP (IN in) (NP (NP (NNP Bethesda)) (, ,) (NP (NNP Md.))))) (. .)))
(S1 (S (NP (NP (NNP Edgar) (NNP Allan) (NNP Poe)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD lived) (ADVP (RP on) (CC and) (RP off)) (PP (IN in) (NP (DT the) (NN city)))))) (, ,)) (VP (VBD died) (PP (IN in) (NP (NNP Baltimore))) (PP (IN in) (NP (NP (CD 1849)) (PP (IN of) (NP (JJ mysterious) (NNS causes)))))) (. .)))
(S1 (S (SBAR (RB Even) (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBD visited) (NP (NP (PRP$ my) (JJ upscale) (NN cousin)) (PRN (-LRB- -LRB-) (S (NP (PRP he)) (VP (AUX 's) (NP (DT a) (NN psychiatrist)))) (-RRB- -RRB-)) (PP (IN in) (NP (NP (NNP Westport)) (, ,) (NP (NNP Conn.)) (, ,)))) (PP (IN down) (NP (DT the) (NN road))) (PP (IN from) (NP (NP (NNP Paul) (NNP Newman) (POS 's)) (NN place)))))) (, ,) (NP (PRP I)) (VP (VBD felt) (SBAR (S (NP (PRP I)) (VP (VBD belonged))))) (. .)))
(S1 (S (NP (NNP Rudolf) (NNP Arnheim)) (, ,) (NP (NP (DT a) (JJ distinguished) (NN psychologist) (, ,) (NN philosopher) (CC and) (NN critic)) (SBAR (WHNP (WP$ whose) (NN work)) (S (VP (VBD explored) (NP (NP (DT the) (JJ cognitive) (NN basis)) (PP (IN of) (NP (NN art))))))) (PRN (: --) (SBAR (WHADVP (WRB how)) (S (NP (PRP we)) (VP (VB interpret) (NP (NP (PRP it)) (CC and) (PRN (, ,) (PP (IN by) (NP (NN extension))) (, ,)) (NP (DT the) (NN world)))))) (: --))) (VP (VBD died) (PP (IN on) (NP (NNP Saturday))) (PP (IN at) (NP (NP (PRP$ his) (NN home)) (PP (IN in) (NP (NP (NNP Ann) (NNP Arbor)) (, ,) (NP (NNP Mich.))))))) (. .)))
(S1 (S (NP (NP (VBG A1) (NN Tension)) (PP (IN as) (NP (NP (NP (NNP Beirut) (NNP Honors) (NNP Hariri)) (NP (NP (DT A) (NN ceremony)) (PP (IN in) (NP (NNP Beirut))) (VP (VBG honoring) (NP (NP (DT the) (JJ second) (NN anniversary)) (PP (IN of) (NP (NP (DT the) (NN assassination)) (PP (IN of) (NP (DT the) (JJ former) (JJ prime) (NN minister))))))))) (, ,) (NP (NNP Rafik) (NNP Hariri)) (, ,)))) (VP (VBD concluded) (PP (IN without) (NP (NN violence)))) (. .)))
(S1 (S (S (NP (NNP Charlize) (NNP Theron)) (VP (VP (VBD packed) (PP (IN on) (NP (CD 30) (NNS pounds)))) (CC and) (VP (VBD wore) (NP (JJ gnarly) (JJ false) (NNS teeth)) (S (VP (TO to) (VP (VB become) (NP (NNP Aileen) (NNP Wuornos)))))))) (, ,) (NP (DT the) (NNP Florida) (NN prostitute)) (VP (VBD turned) (NP (NP (JJ serial) (NN killer)) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN put) (PP (TO to) (NP (NN death))) (PP (IN via) (NP (JJ lethal) (NN injection))) (PP (IN in) (NP (CD 2002))) (PP (IN for) (S (VP (VBG murdering) (NP (CD six) (NNS men))))))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Wenner)) (VP (VBD said) (SBAR (IN that) (S (NP (NNP Mr.) (NNP Ertegun)) (VP (AUX had) (VP (VBN insisted) (PP (IN on) (S (VP (VBG taking) (NP (NP (NP (NP (DT the) (NNP Hall)) (PP (IN of) (NP (NNP Fame))) (POS 's)) (NN architect)) (, ,) (NP (NNP I.M.) (NNP Pei)) (, ,)) (S (VP (TO to) (VP (VB visit) (NP (NP (NNP Graceland)) (, ,) (NP (NP (NP (NNP Elvis) (NNP Presley) (POS 's)) (NN mansion)) (PP (IN in) (NP (NNP Memphis)))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NN court) (NNS documents))) (, ,) (NP (NNS prosecutors)) (VP (VBD said) (SBAR (S (NP (NNP Atlanta) (NN police) (NNS officers)) (ADVP (RB regularly)) (VP (VBD lied) (S (VP (TO to) (VP (VB obtain) (NP (NP (NN search) (NNS warrants)) (CC and) (NP (NP (VBN fabricated) (NN documentation)) (PP (IN of) (NP (NN drug) (NNS purchases)))))))) (, ,) (SBAR (IN as) (S (NP (PRP they)) (VP (AUX had) (SBAR (WHADVP (WRB when)) (S (NP (PRP they)) (VP (VBD raided) (NP (NP (NP (DT the) (NN home)) (PP (IN of) (NP (DT the) (NN woman)))) (, ,) (NP (NNP Kathryn) (NNP Johnston)) (, ,)) (PP (IN in) (NP (NNP November))) (, ,) (S (VP (VBG killing) (NP (PRP her)) (PP (IN in) (NP (NP (DT a) (NN hail)) (PP (IN of) (NP (NNS bullets))))))))))))))))) (. .)))
(S1 (S (SBAR (IN As) (S (VP (VBN detailed) (PP (IN in) (NP (NP (NP (NNP Susan) (NNP Quinn) (POS 's)) (NN biography)) (, ,) ('' '') (NP (NNP Marie) (NNP Curie)))) (: :) (NP (DT A) (NNP Life))))) (, ,) ('' '') (NP (PRP she)) (VP (AUX was) (ADVP (RB nearly)) (VP (VBD hounded) (PP (IN out) (PP (IN of) (NP (NNP Paris)))) (PP (IN in) (NP (NP (CD 1911)) (SBAR (WHADVP (WRB when)) (S (NP (PRP it)) (VP (AUX was) (VP (VBN discovered) (SBAR (IN that) (S (NP (PRP she)) (VP (AUX was) (VP (AUXG having) (NP (NP (DT an) (NN affair)) (PP (IN with) (NP (NP (NNP Paul) (NNP Langevin)) (, ,) (NP (NP (CD one)) (PP (IN of) (NP (NP (NNP Pierre) (POS 's)) (NNS students)))) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN married) (PP (IN with) (NP (CD four) (NNS children)))))))))))))))))))))) (. .)))
(S1 (S (ADVP (RB However)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (NNP Paul) (NNP Poiret)) (VP (VBN reintroduced) (NP (PRP them)) (PP (IN in) (NP (CD 1911)))))) (, ,) (NP (FW le)) (VP (VB tout) (SBAR (S (NP (NNP Paris)) (VP (AUX was) (PP (IN in) (NP (NP (NP (DT the) (NN thrall)) (PP (IN of) (NP (DT the) (NNPS Ballets) (NNPS Russes)))) (, ,) (NP (NP (DT a) (JJ decadent) (NN fantasy)) (PP (IN of) (NP (DT the) (NNP East)))) (, ,) (PP (IN with) (NP (NP (NNS sets) (CC and) (NNS costumes)) (PP (IN by) (NP (NNP Léon) (NNP Bakst))))))))))) (. .)))
(S1 (S (S (NP (NP (NP (NN Prison) (NNS Sentences)) (PP (IN in) (NP (NNP Munch) (NNS Thefts) (NNS Sentences))) (PP (IN from) (NP (NP (CD five)) (CC and) (NP (DT a) (NN half)))) (PP (TO to) (NP (CD nine)))) (CC and) (NP (DT a) (JJ half) (NNS years))) (VP (AUX were) (VP (VP (VBN imposed) (NP (NN yesterday)) (PP (IN by) (NP (NP (DT an) (NNS appeals) (NN court)) (PP (IN in) (NP (NNP Oslo))))) (PP (IN on) (NP (NP (DT the) (NN gunman)) (, ,) (NP (DT the) (NN mastermind)) (CC and) (NP (NP (DT the) (JJ getaway) (NN driver)) (PP (IN in) (NP (NP (DT the) (NN theft)) (PP (IN of) (NP (DT the) (NNP Edvard) (NNP Munch) (NNS masterpieces)))))) ('' '') (NP (DT The) (NN Scream)) (, ,) ('' '') (PP (IN above) (NP (NN left)))))) (, ,) (CC and) ('' '') (NP (NNP Madonna))))) (, ,) ('' '') (ADVP (RB right)) (, ,) (NP (DT The) (NNP Associated) (NNP Press)) (VP (VBD reported)) (. .)))
(S1 (S (VP (VB Let) (NP (PRP us)) (RB not) (VP (VB stop) (NP (NP (NN boasting)) (PP (IN of) (NP (NP (NNP Eli) (NNP Whitney)) (CC and) (NP (NP (PRP$ his) (NN cotton) (NN gin)) (, ,) (PP (PP (IN of) (NP (NP (NNP A.) (NNP C.) (NNP Gilbert)) (CC and) (NP (PRP$ his) (NNP Erector) (NN Set)))) (, ,) (CC or) (PP (IN of) (SBAR (WHADVP (WRB how)) (S (NP (NNP Buffalo) (NNP Bill) (NNP Cody)) (VP (VBD carried) (NP (DT a) (NNP Winchester) (NNP rifle))))))) (, ,) (VP (VBN built) (PP (IN with) (NP (NP (NN pride)) (PP (IN in) (NP (NNP New) (NNP Haven)))))))))))) (. .)))
(S1 (SINV (S (NP (DT The) (NN competition)) (VP (VBZ demonstrates) (NP (NP ('' '') (NN nothing)) (ADJP (ADJP (JJR less)) (PP (IN than) (NP (NP (DT the) (NN digitalization)) (PP (IN of) (NP (DT an) (JJ entire) (JJ major) (NN industry))) (, ,) (VP (VBG replacing) (NP (JJ archaic) (JJ mechanical) (NN illumination)) (PP (IN with) (NP (RBR smarter) (NN lighting)))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP William) (NNP Sims)) (, ,) (NP (NP (NN president)) (PP (IN of) (NP (NP (NNP Color) (NNPS Kinetics) (NNP Inc.)) (PP (IN of) (NP (NNP Boston))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX has) (VP (VBN lighted) (NP (NP (DT the) (NNP Hollywood) (NNP Bowl)) (, ,) (NP (NNP Los) (NNP Angeles) (NNP International) (NNP Airport)) (CC and) (NP (NP (DT the) (NNP Broadway)) (ADJP (JJ musical) ('' '') (JJ Wicked)))))))))))) (. .) ('' '')))
(S1 (S (NP (DT The) (NN challenge)) (VP (AUX has) (VP (AUX been) (VP (VBG avoiding) (SBAR (WHNP (WP what)) (S (NP (NP (NNP Peter) (NNP Guralnick)) (, ,) (NP (NP (DT the) (NN author)) (PP (IN of) (NP (DT the) (NNP Elvis) (NNP Presley) (NN biography) ('' '') (JJ Last) (NNP Train))) (PP (TO to) (NP (NNP Memphis)))) (, ,) ('' '')) (VP (VBZ calls)))) ('' '') (NP (DT the) (JJ whole) (JJ hagiographic) (NN approach))) ('' '') (: :) (VP (VBG stringing) (PRT (RP together)) (NP (DT the) (JJ best-known) (NNS moments)) (PP (IN from) (NP (NP (NP (DT an) (NN artist) (POS 's)) (NN career)) (PP (IN like) (NP (ADJP (RB so) (JJ many)) (NNP Life) (NN magazine) (NNS snapshots)))))))) (. .) ('' '')))
(S1 (S (SBAR (RB Even) (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBD visited) (NP (NP (PRP$ my) (JJ upscale) (NN cousin)) (PRN (-LRB- -LRB-) (S (NP (PRP he)) (VP (AUX 's) (NP (DT a) (NN psychiatrist)))) (-RRB- -RRB-))) (PP (IN in) (NP (NNP Westport)))))) (, ,) (PP (RB just) (IN down) (NP (NP (DT the) (NN road)) (PP (IN from) (NP (NP (NNP Paul) (NNP Newman) (POS 's)) (NN place))))) (, ,) (NP (PRP I)) (VP (VBD felt) (SBAR (S (NP (PRP I)) (VP (VBD belonged))))) (. .)))
(S1 (S (NP (NNP Miguel) (NNP Terrazas)) (, ,) (VP (VBD said) (SBAR (S (NP (PRP$ his) (NN platoon)) (VP (AUX had) (VP (AUX been) (VP (VBN told) (SBAR (IN that) (S (NP (NNP Haditha)) (VP (AUX was) (VP ('' '') (NP (DT an) (JJ insurgent-controlled-and-occupied) (NN city)))))))))))) (. .) ('' '')))
(S1 (S (NP (NNS Bombs)) (VP (VB Kill) (NP (NP (CD 3)) (PP (IN in) (NP (NNP Lebanon)))) (PP (IN on) (NP (NNP Day))) (PP (IN Before) (NP (NNP Memorial))) (SBAR (NP (DT A) (NN day)) (IN before) (S (NP (NNP Lebanon)) (VP (AUX was) (VP (VBN set) (S (VP (TO to) (VP (VB mark) (NP (NP (DT the) (JJ second) (NN anniversary)) (PP (IN of) (NP (NP (DT the) (NN assassination)) (PP (IN of) (NP (NP (PRP$ its) (JJ former) (JJ prime) (NN minister)) (, ,) (NP (NNP Rafik) (NNP Hariri)) (, ,) (SBAR (S (NP (CD three) (NNS people)) (VP (AUX were) (VP (VP (VBN killed)) (CC and) (VP (NP (QP (IN about) (CD 23)) (NNS others)) (VBN wounded) (SBAR (WHADVP (WRB when)) (S (NP (CD two) (NNS minibuses)) (VP (AUX were) (VP (VBN bombed) (SBAR (IN as) (S (NP (PRP they)) (VP (VBD took) (NP (NNS passengers)) (PP (TO to) (NP (NNP Beirut)))))))))))))))))))))))))))) (. .)))
(S1 (S (NP (NNP Lima)) (VP (VP (VBZ goes) (PP (TO to) (NP (NNP Nicaragua)))) (, ,) (CC and) (VP (VBZ disappears) (S (ADVP (NP (RB there) (CD two) (NNS years)) (RB later)) (NP (PRP he)) (VP (VP (AUX has) (VP (VBN returned) (PP (TO to) (NP (NNP Mexico) (NNP City))))) (, ,) (CC and) (VP (AUX is) (VP (VBN glimpsed) (PP (IN by) (NP (NP (DT the) (NN secretary)) (PP (IN of) (NP (NNP Octavio) (NNP Paz))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (CD 1944))) (, ,) (NP (PRP they)) (VP (VBD reunited) (SBAR (S (CC and) (, ,) (PP (IN after) (NP (NP (DT some) (NN work)) (PP (IN in) (NP (NNP New) (NNP York))))) (, ,) (PP (VBG including) (S (VP (VBG writing) (NP (NP (JJ special) (NN material)) (PP (IN for) (NP (NP (DT the) (NN comedy) (NN team)) (PP (IN of) (NP (NNP Olsen) (CC and) (NNP Johnson))))))))) (, ,) (NP (PRP they)) (VP (VBD attracted) (NP (NP (DT the) (NN attention)) (PP (IN of) (NP (NP (NNP Johnny) (NNP Mercer)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VP (VBD liked) (NP (PRP$ their) (NN work))) (CC and) (VP (VBD opened) (NP (NNS doors)) (PP (IN for) (NP (PRP them))) (PP (IN in) (NP (NNP Hollywood)))))))))))))) (. .)))
(S1 (S (NP (NNP Q.)) (VP (AUX Are) (ADVP (RB there)) (NP (NP (NNS buildings)) (ADJP (JJ extant) (PP (IN in) (NP (NNP New) (NNP York) (NNP City)))) (VP (VBN associated) (PP (IN with) (NP (NP (DT the) (NN life)) (PP (IN of) (NP (DT the) (NN ragtime) (NN composer) (NNP Scott) (NNP Joplin)))))))) (. ?)))
(S1 (S (NP (NP (DT The) (JJ French) (NN critic) (CC and) (JJ provocateur) (NNP Jean) (NNP Baudrillard)) (, ,) (SBAR (WHNP (WHNP (WP$ whose) (NNS theories)) (PP (IN about) (NP (NP (NN consumer) (NN culture)) (CC and) (NP (NP (DT the) (VBN manufactured) (NN nature)) (PP (IN of) (NP (NN reality))))))) (S (VP (AUX were) (ADVP (RB intensely)) (VP (VBN discussed) (PP (DT both) (PP (IN in) (NP (JJ rarefied) (JJ philosophical) (NNS circles))) (CC and) (PP (IN in) (NP (NP (JJ blockbuster) (NNS movies)) (PP (IN like) ('' '') (NP (DT The) (NNP Matrix)))))))))) (, ,) ('' '')) (VP (VBD died) (NP (NN yesterday)) (PP (IN in) (NP (NNP Paris)))) (. .)))
(S1 (S (NP (NP (NNP Ian) (NNP Stevenson)) (, ,) (NP (NP (DT an) (JJ academic) (NN psychiatrist)) (SBAR (WHNP (WP who)) (S (VP (VP (ADVP (NP (CD 45) (NNS years)) (RB ago)) (VBD abandoned) (NP (NNP Freud)) (PP (IN as) (ADJP (RB too) (JJ unscientific)))) (CC and) (VP (VBD turned) (PP (TO to) (NP (DT the) (NNP paranormal))) (PP (IN as) (NP (NP (DT a) (NN tool)) (SBAR (WHPP (IN with) (WHNP (WDT which))) (S (VP (TO to) (VP (VB plumb) (NP (DT the) (JJ human) (NN psyche))))))))))))) (, ,)) (VP (VBD died) (PP (IN on) (NP (NNP Feb.) (CD 8))) (PP (IN in) (NP (NP (NNP Charlottesville)) (, ,) (NP (NNP Va.))))) (. .)))
(S1 (S (NP (NP (DT The) (JJ unlikely) (NN story)) (PP (IN of) (NP (NNP Scranton))) (PP (IN as) (NP (NN film) (NN center)))) (VP (VBZ begins) (ADVP (NP (CD 25) (NNS years)) (RB ago)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (NP (NP (DT the) (NN town) (POS 's)) (ADJP (RBS most) (JJ famous)) (JJ native) (NN son)) (, ,) (NP (DT the) (NN actor) (CC and) (NN playwright) (NNP Jason) (NNP Miller)) (, ,)) (VP (VBD hired) (NP (NNP Mr.) (NNP Sorvino)) (PP (IN for) (NP (NP (NP (DT a) (NN role)) (PP (IN in) (NP (NP (DT the) (NN feature) (NN film) (NN adaptation)) (PP (IN of) (NP (PRP$ his) (NNP Pulitzer) (NNP Prize)))))) (: -) (CC and) (NP (JJ Tony) (JJ Award-winning) (NN drama)) (, ,) ('' '') (NP (DT That) (NN Championship) (NN Season)))))))) (. .) ('' '')))
(S1 (S (S (NP (NP (DT The) (NN theme)) (PP (IN of) (NP (NP (DT this) (NN year) (POS 's)) (NN issue)))) (VP (AUX is) (NP (NN music)))) (, ,) (CC and) (S (NP (DT this) (NN special)) (VP (VBZ goes) (PP (IN behind) (NP (DT the) (NNS scenes))) (PP (IN with) (NP (NP (DT the) (NNS models)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD shimmied) (PP (IN at) (NP (NP (NNS locations)) (PP (IN like) (NP (NP (NP (DT the) (NNP Rock) (CC and) (NNP Roll) (NNP Hall)) (PP (IN of) (NP (NNP Fame))) (PP (IN in) (NP (NNP Cleveland)))) (CC and) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NNP Elvis) (NNP Presley) (NN mansion)) (PP (IN in) (NP (NNP Memphis)))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Coco) (NNP Chanel)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD returned) (PP (TO to) (NP (NNP Paris))) (PP (IN with) (NP (NP (DT a) (JJ dramatic) (NN suntan)) (VP (VBN acquired) (PP (IN during) (NP (NP (DT a) (NN holiday)) (PP (IN on) (NP (DT the) (NNP Riviera))) (PP (IN in) (NP (DT the) (CD 1920s))))))))))) (, ,)) (VP (AUX is) (VP (VBN credited) (PP (IN with) (S (VP (VBG initiating) (NP (DT the) (NN vogue)) (PP (IN for) (NP (NN sunbathing)))))))) (. .)))
(S1 (S (SBAR (WHNP (WP Whoever)) (S (VP (AUX is) (NP (DT the) (NN nominee))))) (VP (AUX is) (VP (VBG going) (S (VP (TO to) (VP (VB win) (, ,) (SBAR (RB so) (SINV (S (NP (DT the) (NNS stakes)) (VP (AUX are) (ADJP (RB very) (JJ high)))) (, ,) ('' '') (VP (VBZ says)) (NP (NP (NNP Mr.) (NNP Geffen)) (, ,) (NP (NP (DT the) (NNP Hollywood) (NN mogul) (CC and) (NN sultan)) (PP (IN of) ('' '') (NP (NP (NNPS Dreamgirls)) (, ,) ('' '') (SBAR (IN as) (S (NP (PRP he)) (VP (VBZ sits) (PP (IN by) (NP (DT a) (JJ crackling) (NN fire))) (PP (IN beneath) (NP (NP (DT a) (NNP Jasper) (NNP Johns) (NN flag)) (CC and) (NP (NP (DT a) (VBN matched) (NN pair)) (PP (IN of) (IN de) (NP (NP (NNPS Koonings)) (PP (IN in) (NP (DT the) (NN house))) (PP (IN that) (NP (NNP Jack) (NNP Warner))))) (VP (VBN built) (PRN (-LRB- -LRB-) (SBAR (WHNP (WDT which)) (S (NP (NP (JJ old-time) (NNP Hollywood) (NNS stars)) (VP (VBN joked) (S (VP (AUX was) (NP (NP (DT the) (NN house)) (PP (IN that) (NP (NNP God)))))))) (VP (MD would) (VP (AUX have) (VP (VBN built)))))) (-RRB- -RRB-)))))))))))))))))))) (. .) ('' '')))
(S1 (S (S (VP (VB FOLLOW) (NP (DT the) (NNP Danube) (NN northwest)) (PP (IN out) (PP (IN of) (NP (NNP Vienna)))) (PP (IN by) (NP (NN car) (, ,) (NN train) (CC or) (NN bicycle))))) (, ,) (CC and) (S (NP (DT the) (NN cityscape)) (VP (VBN shaped) (PP (IN by) (NP (DT the) (NNPS Hapsburgs))))) (CC and) (S (NP (DT the) (NNP Secessionist) (NN architect) (NNP Otto) (NNP Wagner)) (ADVP (RB quickly)) (VP (NNS slides) (PP (RB away) (IN into) (NP (JJ verdant) (NN countryside))))) (. .)))
(S1 (S (NP (NP (DT A) (NAC (NNP Hunka) (, ,) (NNP Hunka) (DT An)) (NN exhibition)) (PP (IN of) (NP (NP (NP (NNP Elvis) (NNP Presley) (POS 's)) (NN stage) (NNS costumes)) (PP (IN from) (NP (NP (CD 1969)) (PP (TO to) (NP (CD 1977)))))))) (VP (VBD opened) (PP (IN on) (NP (NNP Thursday))) (PP (IN in) (NP (NP (DT the) (NN visitor) (NN center)) (PP (IN at) (NP (NNP Graceland) (NN mansion))) (PP (IN in) (NP (NNP Memphis)))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Rezko)) (VP (VBD got) (NP (NP (PRP$ his) (NN start)) (PP (IN in) (NP (NN business) (CC and) (NNS politics)))) (PP (IN after) (S (VP (VBG graduating) (PP (IN from) (NP (NN college))) (PP (IN in) (NP (NNP Chicago))) (PP (IN in) (NP (NP (DT the) (JJ late) (NNS 1970s)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (VP (VBD met) (NP (NP (DT a) (NN son)) (PP (IN of) (NP (NP (DT the) (JJ late) (NN Nation)) (PP (IN of) (NP (NP (NNP Islam) (NN leader)) (, ,) (NP (NNP Elijah) (NNP Muhammad)))))))))))))))) (. .)))
(S1 (S (SBAR (WHNP (WP Whoever)) (S (VP (AUX is) (NP (DT the) (NN nominee))))) (VP (AUX is) (VP (VBG going) (S (VP (TO to) (VP (VB win) (, ,) (SBAR (RB so) (SINV (S (NP (DT the) (NNS stakes)) (VP (AUX are) (ADJP (RB very) (JJ high)))) (, ,) ('' '') (VP (VBZ says)) (NP (NP (NNP Mr.) (NNP Geffen)) (, ,) (NP (NP (DT the) (NNP Hollywood) (NN mogul) (CC and) (NN sultan)) (PP (IN of) ('' '') (NP (NP (NNPS Dreamgirls)) (, ,) ('' '') (SBAR (IN as) (S (NP (PRP he)) (VP (VBZ sits) (PP (IN by) (NP (DT a) (JJ crackling) (NN fire))) (PP (IN beneath) (NP (NP (DT a) (NNP Jasper) (NNP Johns) (NN flag)) (CC and) (NP (NP (DT a) (VBN matched) (NN pair)) (PP (IN of) (IN de) (NP (NP (NNPS Koonings)) (PP (IN in) (NP (DT the) (NN house))) (PP (IN that) (NP (NNP Jack) (NNP Warner))))) (VP (VBN built) (PRN (-LRB- -LRB-) (SBAR (WHNP (WDT which)) (S (NP (NP (JJ old-time) (NNP Hollywood) (NNS stars)) (VP (VBN joked) (S (VP (AUX was) (NP (NP (DT the) (NN house)) (PP (IN that) (NP (NNP God)))))))) (VP (MD would) (VP (AUX have) (VP (VBN built)))))) (-RRB- -RRB-)))))))))))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Ethan) (NNP Kostbar)) (, ,) (NP (NP (DT the) (NN chef)) (PP (IN at) (NP (NP (NNP Rose) (NNP Water)) (PP (IN in) (NP (NNP Park) (NN Slope)))))) (, ,) (NP (NNP Brooklyn)) (, ,)) (VP (AUX is) (VP (VBG leaving) (PP (IN in) (NP (DT a) (JJ few) (NNS weeks))) (S (VP (TO to) (VP (VB become) (NP (NP (NP (DT the) (NN chef)) (PP (IN de) (NP (NN cuisine))) (PP (IN at) (NP (DT the) (VBG Dressing) (NN Room)))) (, ,) (NP (NP (DT the) (NN restaurant)) (PP (IN in) (NP (NP (NNP Westport)) (, ,) (NP (NNP Conn.)) (, ,))) (VP (VBN owned) (PP (IN in) (NP (NN part))) (PP (IN by) (NP (NNP Paul) (NNP Newman))))))))))) (. .)))
(S1 (S (NP (DT The) (CD six) (NNS children)) (NP (NNP Mr.) (NNP Brown)) (VP (VBD acknowledged) (SBAR (IN in) (S (NP (PRP$ his)) (VP (MD will) (VP (VB want) (S (NP (PRP$ his) (NN body)) (VP (VBN placed) (PP (IN in) (NP (NP (DT a) (NN mausoleum)) (PP (IN on) (NP (PRP$ his) (JJ 60-acre) (NN property))))) (PP (ADVP (RB just)) (IN across) (NP (NP (DT the) (NNP South) (NNP Carolina) (NN state) (NN line)) (PP (IN near) (NP (DT the) (NNP Savannah) (NNP River))))) (, ,) (NP (NP (DT an) (NN estate)) (SBAR (S (NP (PRP they)) (VP (VBP hope) (SBAR (S (VP (MD will) (VP (VB become) (NP (NP (DT a) (NN museum) (CC and) (NN memorial) (NN park)) (ADJP (JJ akin) (PP (TO to) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NN home)) (PP (IN of) (NP (NNP Elvis) (NNP Presley))) (PP (IN in) (NP (NNP Memphis)))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX has) (ADVP (RB long)) (VP (AUX been) (NP (DT a) (JJ lucrative) (NN tourist) (NN attraction))))))))))))))))))))))))) (. .)))
(S1 (S (NP (PRP They)) (VP (MD will) (VP (VB face) (NP (JJ third-seeded) (NNP Johns) (NNP Hopkins)) (PP (IN on) (NP (NNP Saturday))) (PP (IN in) (NP (NNP Baltimore))))) (. .)))
(S1 (S (NP (NN Everyone)) (VP (VBZ knows) (SBAR (SBAR (IN that) (S (NP (NP (NNP Jim) (NNP Morrison) (POS 's)) (NN grave)) (VP (AUX is) (PP (IN in) (NP (NNP Paris)))))) (, ,) (CC but) (SBAR (WHNP (WP who)) (S (VP (VBD knew) (SBAR (IN that) (S (NP (NP (JJ Dusty) (NNP Springfield) (POS 's)) (NN grave)) (, ,) (PP (IN above) (ADVP (RB right))) (, ,) (VP (AUX is) (UCP (PP (IN in) (NP (NNP Henley-on-Thames))) (CC or) (SBAR (IN that) (S (NP (NP (DT the) (NN grave)) (PP (IN of) (NP (NP (DT the) (JJ former) (NNP Rolling) (NNP Stone) (NNP Brian) (NNP Jones)) (, ,) (VP (ADVP (RB above)) (VBN left)) (, ,)))) (VP (AUX is) (PP (IN in) (NP (NNP Cheltenham))))))))))))))) (. ?)))
(S1 (S (SBAR (RB Even) (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBD visited) (NP (NP (PRP$ my) (JJ upscale) (NN cousin)) (PRN (-LRB- -LRB-) (S (NP (PRP he)) (VP (AUX 's) (NP (DT a) (NN psychiatrist)))) (-RRB- -RRB-)) (PP (IN in) (NP (NP (NNP Westport)) (, ,) (NP (NNP Conn.)))))))) (, ,) (PP (RB just) (IN down) (NP (NP (DT the) (NN road)) (PP (IN from) (NP (NP (NNP Paul) (NNP Newman) (POS 's)) (NN place))))) (, ,) (NP (PRP I)) (VP (VBD felt) (SBAR (S (NP (PRP I)) (VP (VBD belonged))))) (. .)))
(S1 (S (NP (PRP He)) (VP (AUX is) (NP (NP (NNP Samuel) (NNP Adams)) (: --) (RB not) (NP (NNP John) (NNP Adams)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX is) (VP (VBN buried) (PP (IN at) (NP (NNP United) (NNP First) (NNP Parish) (NNP Church))) (PP (IN in) (NP (NP (NNP Quincy)) (, ,) (NP (NNP Mass.)))))))))) (. .)))
(S1 (S (NP (NP (NNP Zalmay) (NNP Khalilzad)) (, ,) (NP (NP (DT the) (NNP American) (NN ambassador)) (PP (TO to) (NP (DT the) (NNP United) (NNPS Nations)))) (, ,)) (VP (VBD said) (SBAR (S (NP (DT a) (NN resolution)) (VP (MD would) (VP (AUX be) (VP (VBN introduced) (NP (DT this) (NN week)) (S (VP (VBG calling) (PP (IN on) (NP (DT the) (NNP Security) (NNP Council))) (S (VP (TO to) (VP (VB create) (NP (NP (DT a) (NN tribunal)) (SBAR (S (VP (TO to) (VP (VB judge) (NP (NP (DT the) (NNS killers)) (PP (IN of) (NP (NP (NNP Rafik) (NNP Hariri)) (, ,) (NP (NP (DT the) (JJ former) (JJ prime) (NN minister)) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN assassinated) (PP (IN in) (NP (DT a) (NNP Beirut) (NN car) (NN bombing))) (PP (IN in) (NP (CD 2005))))))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Michael) (NNP Smuin)) (, ,) (NP (NP (DT a) (NN choreographer)) (SBAR (WHNP (WP who)) (S (VP (VP (VBD worked) (PP (IN for) (NP (JJ major) (NN ballet) (NNS companies)))) (CC and) (VP (VBD led) (NP (PRP$ his) (JJ own))) (, ,) (S (VP (VBG marshaling) (NP (NP (JJ eclectic) (NN dance) (NNS forms)) (, ,) (NP (JJ robust) (NN athleticism)) (CC and) (NP (JJ striking) (NN theatricality))) (S (VP (TO to) (VP (VB create) (NP (NP (NNS works)) (SBAR (WHNP (WDT that)) (S (VP (VBD appealed) (PP (TO to) (NP (JJ broad) (NNS audiences)))))))))))))))) (, ,)) (VP (VBD died) (NP (NN yesterday)) (PP (IN in) (NP (NNP San) (NNP Francisco)))) (. .)))
(S1 (S (NP (NP (NNP Lloyd) (NNP Alexander)) (, ,) (NP (NP (DT a) (NNP National) (NNP Book) (JJ Award-winning) (NN author)) (PP (IN of) (NP (NP (NN fantasy) (NNS novels)) (PP (IN for) (NP (NP (JJ young) (NNS people)) (SBAR (WHNP (WP$ whose) (NN work)) (S (VP (AUX was) (VP (VBN noted) (PP (IN for) (NP (NP (PRP$ its) (JJ romantic) (NNS locales)) (, ,) (NP (JJ complex) (NNS characters)) (CC and) (NP (NP (ADJP (RB barely) (VBN concealed)) (JJ allegorical) (NNS depictions)) (PP (IN of) (NP (NP (DT the) (NN struggle)) (PP (IN against) (NP (NN tyranny))))))))))))))))) (, ,)) (VP (VBD died) (PP (IN on) (NP (NNP Thursday))) (PP (IN at) (NP (NP (PRP$ his) (NN home)) (PP (IN in) (NP (NP (NNP Drexel) (NNP Hill)) (, ,) (NP (NNP Pa.))))))) (. .)))
(S1 (S (NP (PRP He)) (VP (AUX is) (NP (NP (NNP Samuel) (NNP Adams)) (: --) (RB not) (NP (NNP John) (NNP Adams)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX is) (VP (VBN buried) (PP (IN at) (NP (NNP United) (NNP First) (NNP Parish) (NNP Church))) (PP (IN in) (NP (NP (NNP Quincy)) (, ,) (NP (NNP Mass.)))))))))) (. .)))
(S1 (SINV (S (NP (PRP$ My) (NN role)) (VP (AUX is) (S (VP (TO to) (VP (VB protect) (NP (NP (DT the) (NN client)) (, ,) (ADVP (RB particularly)) (NP (NP (DT the) (NN client)) (SBAR (WHNP (WP who)) (S (VP (VBZ wants) (NP (NP (RB only) (DT the) (JJS best)) (PP (IN of) (NP (DT the) (JJS best)))))))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Jacques) (NNP Grange)) (, ,) (NP (NP (DT a) (NNP Paris) (NN designer)) (SBAR (WHNP (WP who)) (S (VP (AUX has) (VP (AUX done) (NP (NP (NNS projects)) (PP (IN with) (NP (NP (NNP Philippe) (NNP Niarchos)) (, ,) (NP (NNP Yves) (NNP Saint-Laurent)) (, ,) (NP (NNP Ronald) (NNP Lauder)) (CC and) (NP (DT the) (NN financier) (NNP Leon) (NNP Black))))))))))) (. .) ('' '')))
(S1 (S (NP (PRP They)) (VP (VBP plan) (S (VP (TO to) (VP (VB consult) (PP (IN with) (NP (NP (DT the) (NN family)) (PP (IN of) (NP (NNP Elvis) (NNP Presley))))) (PP (IN on) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NNP Presley) (NN mansion)) (PP (IN in) (NP (NP (NNP Memphis)) (, ,) (NP (NNP Tenn.)) (, ,))) (SBAR (WHNP (WDT which)) (S (VP (VBZ draws) (NP (CD 600,000) (NNS visitors)) (ADVP (RB annually)))))))))))) (. .)))
(S1 (S (S (NP (NP (DT The) (NN theme)) (PP (IN of) (NP (NP (DT this) (NN year) (POS 's)) (NN issue)))) (VP (AUX is) (NP (NN music)))) (, ,) (CC and) (S (NP (DT this) (NN special)) (VP (VBZ goes) (PP (IN behind) (NP (DT the) (NNS scenes))) (PP (IN with) (NP (NP (DT the) (NNS models)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD shimmied) (PP (IN at) (NP (NP (NNS locations)) (PP (IN like) (NP (NP (NP (DT the) (NNP Rock) (CC and) (NNP Roll) (NNP Hall)) (PP (IN of) (NP (NNP Fame))) (PP (IN in) (NP (NNP Cleveland)))) (CC and) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NNP Elvis) (NNP Presley) (NN mansion)) (PP (IN in) (NP (NNP Memphis)))))))))))))))) (. .)))
(S1 (SINV (S (NP (PRP I)) (ADVP (RB just)) (VP (VBP know) (SBAR (S (NP (EX there)) (VP (AUX are) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NNS restaurants)))) (, ,) (SBAR (IN if) (S (NP (EX there)) (VP (AUX was) (NP (NP (DT a) (NN mechanism)) (PP (IN in) (NP (NN place)))) (S (VP (TO to) (VP (VP (VB deliver) (PP (TO to) (NP (PRP$ their) (NN door)))) (CC or) (VP (AUX have) (NP (NP (DT a) (NN place)) (SBAR (S (VP (TO to) (VP (VB pick) (PRT (RP up)) (PP (IN at) (NP (NP (DT a) (NN time)) (SBAR (S (ADVP (JJ convenient) (PP (TO to) (NP (PRP them)))) (, ,) (NP (PRP they)) (VP (MD would) (VP (AUX be) (VP (VBG buying) (ADJP (RBR more) (JJ local)))))))))))))))))))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Michel) (NNP Nischan)) (, ,) (NP (NP (NP (DT the) (NN chef) (CC and) (NN co-owner)) (, ,) (PP (IN with) (NP (DT the) (NN actor) (NNP Paul) (NNP Newman))) (, ,)) (PP (IN of) (S (VP (VBG Dressing) (NP (NP (NN Room)) (PP (IN in) (NP (NNP Westport))))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Iribe)) (VP (VBD became) (ADJP (JJ famous)) (PP (IN for) (NP (NP (NNS illustrations)) (SBAR (S (NP (PRP he)) (VP (AUX did) (PP (IN for) (NP (DT the) (NNP Paris) (NN couturier) (NNP Paul) (NNP Poiret))))))))) (. .)))
(S1 (S (NP (NP (NNP Kurt) (NNP Waldheim)) (, ,) (NP (NP (NP (DT the) (JJ former) (NNP United) (NNPS Nations) (NN secretary) (NN general)) (CC and) (NP (NP (NN president)) (PP (IN of) (NP (NNP Austria))))) (SBAR (WHNP (WHNP (WP$ whose) (JJ hidden) (NNS ties)) (PP (TO to) (NP (NP (NNP Nazi) (NNS organizations)) (CC and) (NP (NN war) (NNS crimes))))) (S (VP (AUX were) (VP (VBN exposed) (ADVP (RB late) (PP (IN in) (NP (PRP$ his) (NN career))))))))) (, ,)) (VP (VBD died) (NP (NN yesterday)) (PP (IN at) (NP (NP (PRP$ his) (NN home)) (PP (IN in) (NP (NNP Vienna)))))) (. .)))
(S1 (FRAG (NP (NP (NP (CD 9) (NN P.M.)) (PRN (-LRB- -LRB-) (NP (NNP NBC)) (-RRB- -RRB-))) (NP (NN LAW) (CC &) (NN ORDER)) (: :) (NP (JJ CRIMINAL) (NN INTENT))) (: --) (S (SBAR (WHADVP (WRB When)) (S (NP (DT a) (JJ respected) (NN judge)) (VP (AUX is) (VP (VBN killed) (PP (IN during) (NP (NP (DT a) (NN re-creation)) (PP (IN of) (NP (NP (DT the) (NN duel)) (PP (IN between) (NP (NP (NNP Alexander) (NNP Hamilton)) (CC and) (NP (NNP Aaron) (NNP Burr)))))))))))) (, ,) (NP (NNS Detectives) (NNP Goren) (CC and) (NNPS Eames)) (VP (VBP question) (NP (NP (PRP$ his) (VBG gunslinging) (NN partner)) (PRN (-LRB- -LRB-) (NP (NNP Xander) (NNP Berkeley)) (-RRB- -RRB-)) (, ,) (NP (NP (DT the) (NN husband)) (PP (IN of) (NP (NP (NNP Maureen) (NNP Pagonis)) (PRN (-LRB- -LRB-) (NP (NNP Donna) (NNP Murphy)) (-RRB- -RRB-))))) (, ,) (NP (NP (DT a) (NN candidate)) (PP (IN for) (NP (NP (NN mayor)) (PP (IN of) (NP (NNP New) (NNP York) (NNP City))))))))) (. .)))
(S1 (S (NP (PRP It)) (VP (AUX 's) (ADJP (JJ enough) (S (VP (TO to) (VP (VB say) (NP (NP (DT that)) (SBAR (S ('' '') (NP (NNP Hugo) (NNP Cabret)) ('' '') (VP (VP (VBZ sits) (PP (IN at) (NP (NP (DT the) (NN nexus)) (PP (IN of) (NP (NN magic) (CC and) (NN storytelling) (CC and) (NN film)))))) (, ,) (CC and) (SBAR (IN that) (S (NP (NP (NNP Brian) (NNP Selznick)) (PRN (: --) (SBAR (WHNP (WP who)) (PRN (, ,) (ADVP (RB perhaps) (RB not) (RB so) (RB coincidentally)) (, ,)) (S (VP (AUX has) (NP (NP (NP (DT the) (NNP Hollywood) (NN legend)) (NP (NNP David) (NNP O.) (NNP Selznick))) (PP (IN in) (NP (PRP$ his) (NN family) (NN tree))))))) (: --))) (VP (VBZ shows) (NP (PRP us)) (NP (NP (DT a) (JJ little) (NN magic)) (PP (IN of) (NP (PRP$ his) (JJ own)))))))))))))))) (. .)))
(S1 (S (NP (PRP$ Her) (NN father)) (VP (VP (AUX was) (NP (NP (DT the) (NNP Arthur) (NNP O.) (NNP Lovejoy) (NN professor)) (PP (IN of) (NP (JJ American) (NN history))) (PP (IN at) (NP (NP (NNP Johns) (NNP Hopkins)) (PP (IN in) (NP (NNP Baltimore))))))) (, ,) (CC and) (VP (AUX was) (ADVP (RB also)) (NP (NP (DT a) (NN biographer)) (PP (IN of) (NP (NP (NNP Ernest) (NNP Hemingway)) (CC and) (NP (NNP Charlie) (NNP Chaplin))))))) (. .)))
(S1 (S (NP (NP (NNP Ernst) (NNP Haefliger)) (, ,) (NP (NP (DT a) (JJ Swiss) (NN tenor)) (SBAR (WHNP (WP who)) (S (VP (AUX was) (ADJP (RBS most) (JJ renowned)) (PP (IN as) (NP (NP (DT an) (NN interpreter)) (PP (IN of) (NP (NNP German) (NN art) (NN song) (CC and) (NN oratorio) (NNS roles))))))))) (, ,)) (VP (VBD died) (PP (IN on) (NP (NNP Saturday))) (PP (IN in) (NP (NP (NNP Davos)) (, ,) (NP (NNP Switzerland)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (PRP he)) (VP (VBD maintained) (NP (DT a) (JJ second) (NN home)))))))) (. .)))
(S1 (S (NP (NP (NNP Charles) (NNP Lee) (NNP Remington)) (, ,) (NP (NP (DT the) (JJ intellectual) (NN patriarch)) (PP (IN of) (NP (NP (JJ modern) (NNP American) (NN lepidopterology)) (, ,) (NP (NP (DT the) (JJ scientific) (NN study)) (PP (IN of) (NP (NNS butterflies) (CC and) (NNS moths))))))) (, ,)) (VP (VBD died) (PP (IN on) (NP (NNP May) (CD 31))) (PP (IN in) (NP (NP (NNP Hamden)) (, ,) (NP (NNP Conn.))))) (. .)))
(S1 (S (NP (NP (NNP Michael) (NNP Dibdin)) (, ,) (NP (NP (DT an) (ADJP (RB internationally) (JJ acclaimed)) (JJ British) (NN crime) (NN novelist)) (SBAR (WHNP (WP$ whose) (JJ best-known) (NNS books)) (S (VP (VBP feature) (NP (DT the) (JJ brooding) (NNP Italian) (NN police) (NN detective) (NNP Aurelio) (NNP Zen)))))) (, ,)) (VP (VBD died) (PP (IN on) (NP (NNP March) (CD 30))) (PP (IN in) (NP (NNP Seattle)))) (. .)))
(S1 (S (SBAR (RB Even) (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBD visited) (NP (NP (PRP$ my) (JJ upscale) (NN cousin)) (PRN (-LRB- -LRB-) (S (NP (PRP he)) (VP (AUX 's) (NP (DT a) (NN psychiatrist)))) (-RRB- -RRB-)) (PP (IN in) (NP (NP (NNP Westport)) (, ,) (NP (NNP Conn.)))))))) (, ,) (PP (RB just) (IN down) (NP (NP (DT the) (NN road)) (PP (IN from) (NP (NP (NNP Paul) (NNP Newman) (POS 's)) (NN place))))) (, ,) (NP (PRP I)) (VP (VBD felt) (SBAR (S (NP (PRP I)) (VP (VBD belonged))))) (. .)))
(S1 (S (NP (NP (DT The) (NN lack)) (PP (IN of) (NP (NP (DT a) (NN pipe) (NN organ)) (PP (IN in) (NP (NP (NNP New) (NNP York) (NNP City) (POS 's)) (NN concert) (NNS halls)))))) (VP (AUX is) (NP (NP (DT a) (JJ sore) (NN point)) (PP (IN for) (NP (NP (NNP Mr.) (NNP Jacobs)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBZ points) (PRT (RP out)) (SBAR (IN that) (S (NP (NNP Avery) (NNP Fisher)) (VP (AUX is) (NP (NP (DT the) (JJ only) (NN home)) (PP (IN of) (NP (NP (DT a) (JJ major) (NNP symphony) (NN orchestra)) (PP (IN in) (NP (DT the) (NNP United) (NNPS States))) (PP (IN without) (NP (PDT such) (DT an) (NN instrument)))))))))))))))) (. .)))
(S1 (S (NP (NNP Gauguin)) (VP (AUX was) (NP (NP (NP (DT the) (NNP paragon) (NNP Émile) (NNP Zola) (POS 's)) (CD 1886) (NN novel)) ('' '') (SBAR (S (NP (NP (DT The) (NNP Masterpiece)) (, ,) ('' '') (VP (VBN based) (PP (IN on) (NP (NP (NNP Cézanne) (POS 's)) (JJ early) (NNS days))) (PP (IN in) (NP (NNP Paris)))) (, ,)) (VP (VBZ offers) (NP (JJR further) (NN confirmation))))))) (. .)))
(S1 (S (NP (NP (VBG A1) (NN Tension)) (PP (IN as) (NP (NP (NP (NNP Beirut) (NNP Honors) (NNP Hariri)) (NP (NP (DT A) (NN ceremony)) (PP (IN in) (NP (NNP Beirut))) (VP (VBG honoring) (NP (NP (DT the) (JJ second) (NN anniversary)) (PP (IN of) (NP (NP (DT the) (NN assassination)) (PP (IN of) (NP (DT the) (JJ former) (JJ prime) (NN minister))))))))) (, ,) (NP (NNP Rafik) (NNP Hariri)) (, ,)))) (VP (VBD concluded) (PP (IN without) (NP (NN violence)))) (. .)))
(S1 (S (NP (NP (NNP Ernst) (NNP Haefliger)) (PRN (-LRB- -LRB-) (NP (JJ pronounced) (NN HEFF-ligger)) (-RRB- -RRB-))) (VP (VP (AUX was) (VP (VBN born) (PP (IN in) (NP (NNP Davos))) (PP (IN on) (NP (NNP July) (CD 6) (, ,) (CD 1919))))) (, ,) (CC and) (VP (VBD studied) (PP (IN at) (NP (NP (DT the) (NNP Wettinger) (NNP Seminary)) (CC and) (NP (DT the) (NNP Zurich) (NNP Conservatory)))) (PP (IN before) (S (VP (VBG moving) (PP (TO to) (NP (NP (NNP Vienna)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (PRP he)) (VP (VBD became) (NP (NP (DT a) (NN student)) (PP (IN of) (NP (DT the) (NN tenor) (NNP Julius) (NNP Patzak)))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Big) ('' '') (NNP Jim) (NNP Thompson)) (, ,) (NP (DT the) (NNP Chicago) (JJ federal) (NN prosecutor)) (, ,)) (VP (VBD claimed) (NP (NP (JJ many) (JJ political) (NNS scalps)) (PP (IN in) (NP (NP (DT the) (NNS 1970s)) (, ,) (ADJP (RB not) (JJS least) (IN that) (PP (IN of) (NP (JJ former) (NNP Gov.) (NNP Otto) (NNP Kerner) (NNP Jr.)))))))) (. .)))
(S1 (S (ADVP (RB Further)) (, ,) (NP (NP (NP (DT the) (NN author) (POS 's)) (NN meditation)) (PP (IN on) (NP (NP (DT the) (JJ sordid) (NN underbelly)) (PP (IN of) (NP (JJ classical-age) (NNP Paris)))))) (VP (MD would) (VP (AUX have) (VP (VBN benefited) (PP (IN from) (NP (NP (DT a) (NN mention)) (PP (IN of) (NP (NP (NP (NNP Michel) (NNP Foucault) (POS 's)) ('' '') (NN Madness) (CC and) (NN Civilization)) (, ,) ('' '') (SBAR (WHNP (WDT which)) (S (ADVP (RB famously)) (VP (VBD showed) (NP (IN that)) (PP (IN by) (NP (CD 1656) (CD one))) (PP (IN in) (NP (NP (DT a) (CD hundred)) (PP (IN of) (NP (NP (NP (DT the) (NN city) (POS 's)) (NNS inhabitants)) (VP (VBN languished) (PP (IN in) (NP (JJ mental) (NNS asylums)))))))))))))))))) (. .)))
(S1 (S (SBAR (RB Even) (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBD visited) (NP (NP (PRP$ my) (JJ upscale) (NN cousin)) (PRN (-LRB- -LRB-) (S (NP (PRP he)) (VP (AUX 's) (NP (DT a) (NN psychiatrist)))) (-RRB- -RRB-)) (PP (IN in) (NP (NP (NNP Westport)) (, ,) (NP (NNP Conn.)))))))) (, ,) (PP (RB just) (IN down) (NP (NP (DT the) (NN road)) (PP (IN from) (NP (NP (NNP Paul) (NNP Newman) (POS 's)) (NN place))))) (, ,) (NP (PRP I)) (VP (VBD felt) (SBAR (S (NP (PRP I)) (VP (VBD belonged))))) (. .)))
(S1 (S (PP (IN Among) (NP (NP (DT the) (ADJP (RBR more) (JJ macabre)) (NNS relics)) (SBAR (WHNP (WDT that)) (S (NP (NNP Dr.) (NNP Lattimer)) (VP (VBD collected)))))) (, ,) (PP (IN in) (NP (NP (DT this) (NN case)) (PP (IN from) (NP (NP (PRP$ his) (NN service)) (PP (IN at) (NP (NNP Nuremberg))))))) (, ,) (VP (AUX is) (NP (NP (DT a) (NN glass) (NN ampoule)) (SBAR (WHNP (WDT that)) (S (VP (VBD contained) (NP (NP (DT the) (NN dose)) (PP (IN of) (NP (NP (NN cyanide)) (VP (VBN taken) (PP (IN by) (NP (NP (NNP Hermann) (NNP Göring)) (, ,) (NP (DT the) (NNP Luftwaffe) (NN commander)) (, ,))) (S (VP (TO to) (VP (VB commit) (S (VP (NN suicide) (CONJP (RB rather) (IN than)) (VB go) (PP (TO to) (NP (DT the) (NNS gallows))))))))))))))))) (. .)))
(S1 (S (NP (EX There)) (VP (AUX is) (NP (NNP Golgotha)) (PP (IN in) (NP (NP (DT the) (NNP Holy) (NNP Land)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (PRP$ our) (NNP Lord) (NNP Jesus) (NNP Christ)) (VP (VBD suffered) (PP (IN for) (NP (PRP$ our) (NNS sins))))))))) (. .)))
(S1 (S (NP (NNP Kurt) (NNP Waldheim)) (VP (AUX was) (VP (VBN born) (PP (IN on) (NP (NNP Dec.) (CD 21) (, ,) (CD 1918))) (, ,) (PP (IN in) (NP (NNP St.) (NNP Andrä))) (: -) (NP (NP (NNP Wördern)) (, ,) (NP (NP (DT a) (NN village)) (PP (IN near) (NP (NNP Vienna))))))) (. .)))
(S1 (S (NP (NP (NNP George) (NNP Becker)) (, ,) (SBAR (WHNP (WP who)) (S (PP (IN at) (NP (CD 15))) (VP (VP (ADVP (RB literally)) (VBD followed) (NP (NP (PRP$ his) (NN father) (POS 's)) (NNS footsteps)) (PP (IN into) (NP (NP (DT a) (NN steel) (NN mill)) (PP (IN in) (NP (PRP$ his) (NNP Illinois) (NN hometown)))))) (CC and) (VP (VBD rose) (S (VP (TO to) (VP (VB become) (NP (NP (DT the) (JJ sixth) (NN president)) (PP (IN of) (NP (DT the) (NNP United) (NNPS Steelworkers) (NN union))))))))))) (, ,)) (VP (VBD died) (PP (IN on) (NP (NNP Saturday))) (PP (IN at) (NP (NP (PRP$ his) (NN home)) (PP (IN in) (NP (NP (NNP Gibsonia)) (, ,) (NP (NNP Pa.))))))) (. .)))
(S1 (S (S (NP (NP (NNP Poe) (, ,) (NNP Evermore)) (NP (DT A) (NN mystery) (NN man))) (VP (VBD arrived) (PP (IN at) (NP (NP (NNP Edgar) (NNP Allan) (NNP Poe) (POS 's)) (NN grave))) (PP (IN at) (NP (NP (DT the) (NNP Westminster) (NN Burial) (NNPS Grounds)) (PP (IN in) (NP (NNP Baltimore))) (PP (IN on) (NP (NNP Friday) (NN morning))))) (, ,) (SBAR (IN as) (S (NP (PRP he)) (VP (AUX has) (PP (IN on) (NP (NP (NP (NNP Poe) (POS 's)) (NN birthday)) (PRN (-LRB- -LRB-) (NP (NNP Jan.) (CD 19)) (-RRB- -RRB-)) (NP (NP (DT every) (NN year)) (PP (IN since) (NP (CD 1949)))) (, ,) (VP (VBN watched) (PP (IN by) (NP (NP (DT the) (JJS largest) (NN group)) (PP (IN of) (NP (NNS onlookers)))))))) (ADVP (RB ever))))))) (, ,) (NP (DT The) (NNP Associated) (NNP Press)) (VP (VBD reported)) (. .)))
(S1 (S (NP (NP (NNP Stuart) (NNP Rosenberg)) (, ,) (NP (NP (DT a) (JJ hard-working) (NN director)) (PP (IN of) (NP (NP (NN series) (NN television)) (CC and) (NP (JJ theatrical) (NNS films)))) (SBAR (WHNP (WP who)) (S (VP (VBD captured) (NP (NP (DT the) (VBG simmering) (NN anti-authoritarianism)) (PP (IN of) (NP (DT the) (JJ late) (NNS 1960s))) (PP (IN in) (NP (DT the) (ADJP (RB widely) (JJ popular)) (NNP Paul) (NNP Newman) (NN prison) (NN drama) ('' '') (JJ Cool) (NN Hand) (NNP Luke)))))))) (, ,) ('' '')) (VP (VBD died) (PP (IN on) (NP (NNP Thursday))) (PP (IN at) (NP (NP (PRP$ his) (NN home)) (PP (IN in) (NP (NP (NNP Beverly) (NNP Hills)) (, ,) (NP (NNP Calif.))))))) (. .)))
(S1 (S (SBAR (IN For) (S (NP (PDT all) (DT that) (NN Nicolson)) (VP (VBZ delves) (PP (IN into) (NP (NP (DT the) (NNS conditions)) (PP (IN of) (NP (DT the) (JJ poor)))))))) (, ,) (NP (PRP it)) (VP (AUX is) (NP (NP (DT the) (NNS follies) (CC and) (NNS yearnings)) (PP (IN of) (NP (NP (NP (DT the) (JJ upper) (NNS classes)) (SBAR (WHNP (WDT that)) (S (ADVP (RBR more) (RB naturally)) (VP (VBP call) (PRT (RP out)) (NP (NP (DT the) (NNS talents)) (PP (IN of) (NP (DT this) (NN author)))))))) (, ,) (NP (NP (DT the) (NN granddaughter)) (PP (IN of) (NP (NP (NNP Harold) (NNP Nicolson)) (CC and) (NP (NP (NNP Vita) (NNP Sackville-West)) (, ,) (NP (NP (NN mistress)) (PP (IN of) (NP (NNP Sissinghurst) (NNP Castle)))))))))))) (. .)))
(S1 (S (NP (DT The) (NN proposal)) (VP (AUX has) (NP (NP (NP (PRP$ its) (NNS critics)) (, ,) (SBAR (WHNP (NP (DT many)) (WHPP (IN of) (WHNP (WP whom)))) (S (VP (VBP call) (NP (NP (PRP it) (NN nothing)) (ADJP (ADJP (JJR less)) (PP (IN than) (NP (JJ modern-day) (NNP Prohibition)))))))) (, ,)) (CC and) (NP (NP (DT an) (NN assault)) (PP (IN on) (NP (NP (JJ personal) (NN freedom)) (CC and) (NP (NP (DT the) (JJ free) (NN market)) (SBAR (WHNP (WDT that)) (S (VP (VBZ flies) (PP (IN in) (NP (NP (DT the) (NN face)) (PP (IN of) (NP (NP (NP (NNP Madison) (POS 's)) (JJ traditional) (NN liberalism)) (CC and) (NP (NP (NNP Wisconsin) (POS 's)) (JJ entrenched) (NN drinking) (NN culture))))))))))))))) (. .)))
(S1 (NP (NP (JJ Same) (NN weekend) (, ,) (JJ different) (NN state)) (: :) (S (NP (NP (NNP Rudolph) (NNP W.) (NNP Giuliani)) (, ,) (NP (NP (DT the) (JJ former) (NN mayor)) (PP (IN of) (NP (NNP New) (NNP York)))) (, ,)) (VP (VBZ addresses) (NP (DT the) (NNP California) (NNP Republican) (NNP Convention)) (PP (IN in) (NP (NNP Sacramento))))) (. .)))
(S1 (S (NP (DT A) (NN memorial) (NN service)) (VP (MD will) (VP (AUX be) (VP (VBN held) (PP (IN in) (NP (NP (NNP Annapolis)) (, ,) (NP (NNP Maryland)) (, ,))) (PP (IN on) (NP (NP (DT a) (NN date)) (SBAR (S (VP (TO to) (VP (AUX be) (VP (VBN announced))))))))))) (. .)))
(S1 (S (NP (NNP Martin) (NNP J.) (NNP O'Malley)) (VP (AUX was) (VP (VBN sworn) (PRT (RP in)) (PP (IN as) (NP (NN governor))) (PP (IN in) (NP (NP (DT a) (NN ceremony)) (PP (IN in) (NP (NNP Annapolis))) (SBAR (WHNP (WDT that)) (S (VP (VBD included) (NP (NP (DT a) (JJ surprise) (NN guest)) (, ,) (NP (NP (NP (NNP Speaker) (NNP Nancy) (NNP Pelosi)) (PP (IN of) (NP (NNP California)))) (, ,) (NP (DT a) (NNP Maryland) (NN native))))))))))) (. .)))
(S1 (S (SBAR (WHADVP (WRB When)) (S (NP (NNP Gov.) (NNP Arnold) (NNP Schwarzenegger)) (VP (VBD took) (NP (NP (DT the) (NN oath)) (PP (IN of) (NP (NN office)))) (NP (JJ last) (NNP Friday))))) (, ,) (NP (PRP he)) (VP (VBD called) (PP (IN on) (NP (NP (NNS legislators)) (PP (IN in) (NP (NNP Sacramento))))) (S (VP (TO to) (VP (VB set) (PRT (RP aside)) (NP (NN party) (NN loyalty)) (PP (IN in) (NP (NP (NN favor)) (PP (IN of) ('' '') (NP (NP (DT the) (NNP Party)) (PP (IN of) (NP (NNP California))))))))))) (. .) ('' '')))
(S1 (S (NP (DT That)) (VP (MD could) (VP (VB allow) (S (NP (PRP them)) (VP (TO to) (VP (VB reach) (NP (DT the) (JJ Final) (NNP Four)) (PP (IN in) (NP (NNP Atlanta))) (PP (IN without) (S (VP (VBG leaving) (NP (NNP California))))) (, ,) (S (VP (VBG playing) (NP (NP (NP (DT the) (JJ first) (CD two) (NNS rounds)) (PP (IN in) (NP (NNP Sacramento)))) (CC and) (NP (NP (PRP$ their) (JJ regional) (NNS games)) (PP (IN in) (NP (NNP San) (NNP Jose)))))))))))) (. .)))
(S1 (S (ADVP (RB Meanwhile)) (, ,) (NP (NP (NNP Gov.) (NNP Martin) (NNP O'Malley)) (PP (IN of) (NP (NNP Maryland)))) (VP (AUX was) (VP (VBN expected) (S (VP (TO to) (VP (VB endorse) (NP (NNP Mrs.) (NNP Clinton)) (PP (IN in) (NP (NNP Annapolis) (NNP Wednesday) (NN morning)))))) (, ,) (PP (VBG according) (PP (TO to) (NP (NP (DT a) (NNP Democrat) (NN close)) (PP (TO to) (NP (NNP Mrs.) (NNP Clinton)))))))) (. .)))
(S1 (S (NP (PRP He)) (VP (AUX is) (VP (VBN survived) (PP (IN by) (NP (NP (NP (PRP$ his) (NN wife)) (, ,) (NP (NP (NP (NNP Gloria)) (NP (DT a) (NN daughter))) (, ,) (NP (NNP Oriana))) (, ,)) (CC and) (NP (NP (DT a) (NN son)) (, ,) (NP (NP (NNP Pascal)) (, ,) (NP (NP (DT both)) (PP (IN of) (NP (NP (NNP Concord)) (, ,) (NP (NNP Calif.))))))))))) (. .)))
(S1 (S (NP (NP (NNP Nelnet)) (, ,) (VP (VBN based) (PP (IN in) (NP (NP (NNP Lincoln)) (, ,) (NP (NNP Neb.)) (, ,))) (PP (IN with) (NP (NP (QP ($ $) (CD 23.8) (CD billion))) (PP (IN in) (NP (NN student) (NN loan) (NNS assets)))))) (, ,)) (VP (VBN forged) (NP (DT the) (NN agreement)) (PP (IN with) (NP (NP (DT the) (NNP Nebraska) (NN attorney) (NN general)) (, ,) (NP (NNP Jon) (NNP Bruning))))) (. .)))
(S1 (S (NP (NP (NNP Representative) (NNP Vicki) (NNP Berger)) (, ,) (NP (NP (DT a) (NNP Republican)) (PP (IN from) (NP (NNP Salem)))) (, ,)) (VP (VBD introduced) (NP (PRP herself)) (PP (IN as) ('' '') (NP (NP (DT the) (JJ only) (VBG living) (NN witness)) (PP (TO to) (NP (NP (DT the) (JJ actual) (NN birth)) (PP (IN of) (NP (DT the) (NNP Oregon) (NN bottle) (NN bill)))))))) (. .) ('' '')))
(S1 (S (NP (NP (JJ Several) (NNS times)) (NP (DT this) (NN week))) (: --) (SBAR (IN while) (S (VP (VBG wrapping) (PRT (RP up)) (NP (NP (NP (DT a) (NN town) (NN hall) (NN meeting)) (PP (IN in) (NP (NNP Des) (NNP Moines)))) (, ,) (CC or) (NP (NP (DT a) (NN conference) (NN call)) (PP (IN with) (NP (NP (NNS bloggers)) (PP (IN from) (NP (NP (NNP Sioux) (NNP City)) (, ,) (NP (NNP Iowa))))))))))) (: --) (NP (NP (NNP Senator) (NNP John) (NNP McCain)) (CC and) (NP (PRP$ his) (NNS listeners))) (VP (AUX were) (VP (VBN told) (SBAR (IN that) (S (NP (EX there)) (VP (AUX was) (NP (NP (NN time)) (PP (IN for) (NP (QP (RB just) (CD one)) (JJR more) (NN question))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP NHPF)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX has) (NP (NP (PRP$ its) (NNP Louisiana) (NN office)) (PP (IN in) (NP (NNP Baton) (NNP Rouge))))))) (, ,)) (VP (VBZ gets) (NP (DT the) (NNS funds)) (S (VP (TO to) (VP (VB build) (PP (IN from) (NP (NP (NP (NN government) (NNS grants)) (, ,) (NP (NN tax) (NNS credits)) (CC and) (NP (JJ low-interest) (NNS loans))) (, ,) (CONJP (RB as) (RB well) (IN as)) (NP (JJ conventional) (NN financing)))))))) (. .)))
(S1 (S (PP (IN With) (NP (NP (NP (JJ strong) (NN family) (NNS ties)) (PP (IN in) (NP (NNP Annapolis)))) (CC and) (NP (NP (DT the) (VBG surrounding) (NN area)) (PRN (: --) (S (NP (PRP they)) (VP (VBD raised) (NP (NP (PRP$ their) (NN family)) (PP (IN of) (NP (CD nine) (NNS children))) (PP (IN in) (NP (JJ nearby) (NNP Dunkirk)))))) (: --))))) (NP (PRP they)) (VP (AUX had) (VP (VBN wanted) (NP (DT a) (NN home) (NN base)) (PP (IN in) (NP (NNP Maryland))))) (. .) ('' '')))
(S1 (NP (NP (NNP BARNARD)) (: --) (S (NP (NP (NNP Allan)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN born) (PP (IN in) (NP (NP (NNP Madison)) (, ,) (NP (NP (NNP Wisconsin)) (PP (IN on) (NP (NNP August) (JJ 8th)))) (, ,) (NP (CD 1918)))))))) (, ,)) (VP (VBD died) (PP (IN on) (NP (NP (NNP Monday)) (, ,) (NP (NNP January) (CD 22nd)) (, ,) (PP (IN of) (NP (NP (NNS complications)) (PP (IN from) (NP (NP (NP (NNP Parkinson) (POS 's)) (NN disease)) (PP (IN in) (NP (NP (NNP Forest) (NNP Hills)) (, ,) (NP (NNP New) (NNP York)))))))))))) (. .)))
(S1 (SINV (S (NP (PRP They)) (VP (AUX 're) (NP (DT a) (JJ real) (NN gimmick)))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP State) (NNP Senator) (NNP DiAnna) (NNP Schimek)) (, ,) (NP (NP (DT a) (NNP Democrat)) (SBAR (SBAR (WHNP (WP who)) (S (VP (VBZ represents) (NP (NNP Lincoln))))) (CC and) (SBAR (WHNP (WP who)) (S (VP (VBD wrote) (NP (DT the) (NNP Nebraska) (NN legislation)))))))) (. .)))
(S1 (S (S (NP (NP (DT The) (NN state) (NN tournament)) (PP (IN at) (NP (NP (DT the) (NNP Veterans) (NNP Memorial) (NNP Auditorium)) (PP (IN in) (NP (NNP Des) (NNP Moines)))))) (VP (AUX was) (NP (NP (DT the) (JJ ultimate) (NN event)) (PP (IN for) (NP (NNP Iowa) (NNS schoolgirls)))))) (, ,) (CC and) (S (NP (DT the) (NN championship) (NN game)) (ADVP (RB frequently)) (VP (VBN sold) (PRT (RP out)))) (. .)))
(S1 (S (NP (PRP He)) (VP (AUX was) (VP (VBG leaving) (NP (NP (NNP Nevada)) (, ,) (NP (NNP Iowa))) (, ,) (S (VP (VBG heading) (PP (IN for) (NP (NP (DT a) (NN meeting)) (PP (IN with) (NP (NP (JJ Democratic) (NNS legislators)) (PP (IN in) (NP (NP (NP (NNP Des) (NNP Moines)) (CC and) (NP (NP (DT a) (NN meeting)) (PP (IN in) (NP (NNP Altoona))))) (SBAR (WHADVP (WRB when)) (S (NP (PRP$ his) (NN wife)) (VP (VBD called) (S (NP (PRP him)) (VP (TO to) (VP (VB tell) (SBAR (IN that) (S (NP (NNS doctors)) (VP (VP (AUX had) (VP (VBN found) ('' '') (NP (NP (NN something)) (SBAR (WHNP (WDT that)) (S (VP (VBD looked) (ADJP (JJ suspicious)) (PP (IN in) (NP (NP (DT a) (NN rib)) ('' '') (PP (IN in) (NP (PRP$ her) (NN visit))))))))) (PP (IN on) (NP (NNP Monday))))) (CC and) (VP (VBD wanted) (NP (PRP her)) (S (VP (TO to) (VP (VB return) (PP (IN on) (NP (NNP Wednesday))) (PP (IN for) (NP (JJR more) (NNS tests)))))))))))))))))))))))))) (. .)))
(S1 (S (PP (IN Among) (NP (DT the) (NNP California) (NN drop-off) (NNS locations))) (VP (AUX are) (NP (NP (NNS airports)) (PP (IN in) (NP (NP (NNP Burbank)) (, ,) (NP (NNP Long) (NNP Beach)) (, ,) (NP (NNP Los) (NNP Angeles)) (, ,) (NP (NNP Sacramento)) (CC and) (NP (NNP San) (NNP Francisco)))))) (. .)))
(S1 (S (NP (JJ Last) (NN fall)) (, ,) (NP (NP (NNP Senator) (NNP Barbara) (NN Boxer)) (PP (IN of) (NP (NNP California)))) (VP (VBD issued) (NP (NP (DT a) (JJ routine) (NN Certificate)) (PP (IN of) (NP (NN Appreciation)))) (PP (TO to) (NP (DT the) (NN organization) (NN representative))) (PP (IN in) (NP (NNP Sacramento))) (, ,) (S (CC but) (NP (PRP she)) (ADVP (RB quickly)) (VP (VBN revoked) (NP (PRP it)) (SBAR (WHADVP (WRB when)) (S (NP (NNS critics)) (VP (VBD assailed) (NP (PRP her)) (PP (IN on) (NP (DT the) (NNP Web))) (PP (IN under) (NP (NP (NNS headlines)) (PP (IN like) (NP ('' '') (NNPS Senators))))) (PP (IN for) (NP (NN Terror))))))))) (. .) ('' '') ('' '')))
(S1 (S (S (NP (NP (PRP$ Her) (NN mother)) (, ,) (VP (VB Sue) (NP (NNP Bachman))) (, ,) (ADVP (RB formerly)) (NP (DT a) (NN nurse)) (, ,)) (VP (AUX is) (ADVP (RB now)) (NP (NP (NNP Ms.) (NNP Mazzo) (POS 's)) (NN assistant)))) (, ,) (CC and) (S (NP (NP (PRP$ her) (NN father)) (, ,) (NP (NP (NNP Dan) (NNP Bachman)) (, ,) (NP (NP (DT a) (JJ financial) (NN planner)) (PP (IN in) (NP (NNP Iowa))))) (, ,)) (VP (VBZ divides) (NP (PRP$ his) (NN time)) (PRN (, ,) (PP (IN in) (NP (JJ two-week) (NNS increments))) (, ,)) (PP (IN between) (NP (NP (NNP New) (NNP York)) (CC and) (NP (NNP Des) (NNP Moines)))))) (. .) ('' '')))
(S1 (S (S (NP (DT A) (NAC (NNP goodbye) (PP (TO to) (NP (NP (NNP Susan)) (, ,) (NP (DT a) (NN pocket))))) (NNP pat)) (VP (TO to) (VP (VB jingle) (NP (DT those) (NNS keys))))) (, ,) (CC and) (S (ADVP (RB out)) (NP (PRP he)) (VP (VBZ goes) (PP (IN into) (NP (NP (DT the) (JJ wintry) (NAC (NNP Wisconsin) (NNP sunset) (, ,) (NNP Roy) (NNP Ratcliff) (, ,)) (NN minister)) (PP (IN of) (NP (NP (DT the) (NNP Mandrake) (NNP Road) (NNP Church)) (PP (IN of) (NP (NNP Christ))) (PP (IN in) (NP (NNP Madison))))))))) (. .)))
(S1 (NP (NP (NN RINEHART)) (: --) (S (NP (NP (NNP George) (NNP Henry) (NNP Doran)) (, ,) (PP (IN of) (NP (NP (NNP Annapolis)) (, ,) (NP (NNP Maryland)))) (, ,)) (VP (VBD died) (NP (NP (NNP Tuesday)) (, ,) (NP (NNP April) (CD 10)) (, ,)) (PP (IN at) (NP (NN age) (CD 78))))) (. .)))
(S1 (S (NP (DT This) (NN difference)) (VP (AUX is) (ADJP (JJ evident)) (PP (IN at) (NP (NP (DT the) (NN Picket) (NN Fence) (NNP Creamery)) (, ,) (NP (NP (DT a) (JJ grass-based) (NN cow) (NN dairy)) (PP (IN in) (NP (NP (NNP Woodward)) (, ,) (NP (NNP Iowa)) (, ,))) (PP (ADVP (NP (QP (RB about) (CD 30)) (NNS miles)) (RB northwest)) (IN of) (NP (NNP Des) (NNP Moines))))))) (. .)))
(S1 (S (NP (NNP Ryan)) (VP (AUX has) (VP (VBN coached) (PP (IN at) (NP (NP (NP (NNP Wisconsin) (POS 's)) (JJ main) (NN campus)) (PP (IN in) (NP (NNP Madison))))) (PP (IN since) (NP (CD 2001))))) (. .)))
(S1 (S (NP (NP (NNP Maryland) (NN Seafood) (NNS Festivals)) (NP (DT A) (NN directory)) (PP (IN of) (NP (NN spring) (CC and) (NN summer) (NN seafood) (NNS festivals))) (PP (IN in) (NP (NNP Maryland)))) (VP (AUX is) (UCP (ADJP (JJ available) (PP (IN at) (NP (NN marylandseafood.org)))) (CC or) (PP (IN by) (S (VP (VBG sending) (NP (DT a) (JJ stamped) (, ,) (JJ self-addressed) (NN envelope)) (PP (TO to) (NP (NP (CD 2007) (NN Seafood) (NN Festival) (NN List)) (, ,) (NP (NP (NP (NNP Maryland) (NNP Department)) (PP (IN of) (NP (NNP Agriculture)))) (, ,) (NP (NN Seafood) (NNP Marketing) (NNP Program)) (, ,) (NP (CD 50) (NNP Harry) (NNP S.) (NNP Truman) (NNP Parkway)) (, ,) (NP (NP (NNP Annapolis)) (, ,) (NP (NNP Md.) (CD 21401))))))))))) (. .)))
(S1 (S (NP (DT The) (NN report)) (, ,) (S (VP (VBG citing) (NP (NP (DT a) (NN lawyer)) (PP (IN in) (NP (DT the) (NNP Sacramento) (NN office)))))) (, ,) (VP (VBD noted) (SBAR (IN that) (S (NP (NNP Ms.) (NNP MacDonald)) (VP (VBD lobbied) (PP (IN for) (NP (DT a) (NN decision) (S (VP (TO to) (VP (VB combine) (NP (NP (CD three) (JJ different) (NNS populations)) (PP (IN of) (NP (DT the) (NNP California) (NNP tiger) (NN salamander)))) (PP (IN into) (NP (CD one))) (, ,) (S (ADVP (RB thus)) (VP (VP (VBG excluding) (NP (PRP it)) (PP (IN from) (NP (DT the) (NNS endangered-species) (NN list)))) (, ,) (CC and) (VP (VBG making) (S (NP (DT the) (NN decision)) (ADJP (RB legally) (JJ vulnerable))))))))))))))) (. .)))
(S1 (S (S (VP (VBG According) (NP (NP (DT a) (NN source)) (ADVP (RB close) (PP (TO to) (NP (DT the) (NN campaign))))))) (, ,) (NP (DT the) (NN itinerary)) (VP (VBZ includes) (NP (NP (NNS fund-raisers)) (PP (IN in) (NP (NNP Florida))) (PP (IN on) (NP (NNP Tuesday))) (VP (VBD followed) (PP (IN by) (NP (NP (JJR more) (NNS stops)) (PP (IN across) (NP (DT the) (NN country))))) (PP (IN before) (S (VP (VBG appearing) (PP (IN as) (NP (NP (DT the) (JJ keynote) (NN speaker)) (PP (IN at) (NP (DT the) (NNP California) (NNP Republican) (NNP Convention))))) (PP (IN in) (NP (NNP Sacramento))) (PP (IN on) (NP (NNP Saturday))))))))) (. .)))
(S1 (SINV (S (VP (VB Raise) (NP (PRP$ your) (NN hand)) (SBAR (IN if) (S (NP (DT this)) (VP (AUX is) (NP (NP (DT the) (JJ first) (JJ political) (NN rally)) (SBAR (S (NP (PRP you)) (VP (AUX 've) (ADVP (RB ever)) (VP (VBN attended))))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Andrew) (NNP Rice)) (, ,) (NP (DT an) (NNP Oklahoma) (NN state) (NN senator))) (, ,) (S (VP (VBG warming) (PRT (RP up)) (NP (DT a) (NN crowd)) (PP (IN at) (NP (NP (DT a) (ADJP ($ $) (JJ 25-a-head)) (NNP Obama) (NN fund-raiser)) (PP (IN in) (NP (NNP Oklahoma) (NNP City))) (NP (JJ last) (NN week)))))) (. .)))
(S1 (S (PP (IN Under) (NP (NP (DT the) (NNS Articles)) (PP (IN of) (NP (NNP Confederation))))) (, ,) (NP (NP (NNP Annapolis)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX is) (NP (NP (NNP Maryland) (POS 's)) (NN capital))))) (, ,)) (VP (AUX was) (ADVP (RB once)) (ADVP (RB also)) (NP (NP (DT the) (NN nation) (POS 's)) (NN capital))) (. .)))
(S1 (S (NP (PRP He)) (VP (AUX is) (VP (VBN survived) (PP (IN by) (NP (NP (PRP$ his) (NN wife)) (, ,) (NP (NNP Kathrine) (NNP Kristine) (NNP Beck)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBZ writes) (S (NP (NP (NN crime) (NNS novels)) (PP (IN under) (NP (NP (DT the) (NN name)) (NP (NNP K.) (NNP K.) (NNP Beck))))) (NP (NP (PRP$ his) (NN father)) (, ,) (NP (NNP John)) (, ,) (PP (IN of) (NP (NP (NNP Chichester)) (, ,) (NP (NP (NNP England) (CD two) (NNS daughters)) (PP (IN from) (NP (PRP$ his) (JJR earlier) (NNS marriages)))) (, ,) (NP (NP (NNP Moselle) (NNP Kennedy)) (PP (IN of) (NP (NP (NNP Vancouver)) (, ,) (NP (NNP Canada)) (, ,) (CC and) (NP (NNP Emma) (NNP Dibdin))))) (, ,) (NP (NP (DT a) (NN student)) (PP (IN at) (NP (NNP Cambridge) (NNP University)))) (CC and) (NP (NP (CD three) (NN stepchildren)) (, ,) (NP (NP (NNP Emma) (NNP Marris)) (PP (IN of) (NP (NP (NNP Washington) (NNP Andrew) (NNP Marris)) (PP (IN of) (NP (NP (NP (NNP Seattle)) (CC and) (NP (NNP Alexander) (NNP Marris))) (, ,) (NP (NP (DT a) (NN student)) (PP (IN at) (NP (NP (NNP Evergreen) (NNP State) (NNP College)) (PP (IN in) (NP (NP (NNP Olympia)) (, ,) (NP (NNP Wash.)))))))))))))))))))))))) (. .)))
(S1 (S (NP (DT The) (JJ essential) (NN question)) (PRN (, ,) (S (NP (PRP it)) (VP (VBZ seems))) (, ,)) (VP (AUX is) (SBAR (IN whether) (S (NP (NP (NP (NNP Mr.) (NNP Schwarzenegger) (POS 's)) (JJ proclaimed) (NN era)) (PP (IN of) (NP (NP (NN postpartisanship)) (PP (IN in) (NP (NNP California) (NNS triumphs))) (PP (IN over) (NP (NN gridlock)))))) (VP (TO to) (VP (VB bring) (NP (NP (DT the) (NN sort)) (PP (IN of) (NP (JJ trend-setting) (NN legislation))) (SBAR (IN that) (S (NP (DT the) (NN state)) (VP (VP (AUX has) (VP (AUX been) (VP (VBN known) (PP (IN for))))) (, ,) (CC or) (VP (ADVP (RB instead)) (VBZ results) (PP (IN in) (NP (NP (JJ watered-down) (NNS compromises)) (VP (VBN hammered) (PRT (RP out)) (PP (IN with) (NP (NP (JJ equal) (NNS parts) (NN threat)) (CC and) (NP (NN capitulation)))) (PP (IN in) (NP (DT a) (NNP Sacramento) (NN back) (NN room)))))))))))))))) (. .) ('' '')))
(S1 (S (NP (DT The) (NN decision) (S (VP (TO to) (VP (NN award) (NP (DT the) (NN contract))))) (PRN (: --) (NP (DT the) (JJ supposed) (NN crime)) (: --))) (VP (VBD occurred) (PP (IN in) (NP (NNP Madison))) (, ,) (PP (IN in) (NP (NP (DT the) (NN jurisdiction)) (PP (IN of) (NP (NP (NNP Wisconsin) (POS 's)) (JJ other) (NNP United) (NNP States) (NN attorney)))))) (. .)))
(S1 (NP (NP (RB Dear) (NN father)) (PP (IN of) (NP (NP (NNP Leslie) (NNP M.) (NNP Cross)) (PP (IN of) (NP (NP (NNP Long) (NNP Island)) (, ,) (NP (NNP NY)) (, ,) (NP (NP (NNP Barbara) (NNP Cross)) (PRN (-LRB- -LRB-) (NP (NNP Roy) (NNP Call)) (-RRB- -RRB-)) (PP (IN of) (NP (NNP Cleveland) (NNPS Heights)))) (, ,) (INTJ (UH OH)) (, ,) (NP (NNP Laurie) (NNP Cross)) (PRN (-LRB- -LRB-) (NP (NNP Gerald) (NNP Knorr)) (-RRB- -RRB-)) (PP (IN of) (NP (NP (NNP Seattle)) (, ,) (NP (NNP Washington)) (, ,) (NP (NP (NNP Steven) (NNP Frederick) (NNP Cross)) (PP (IN of) (NP (NP (NNP Olympia)) (, ,) (NP (NNP Washington)) (, ,) (CC and) (NP (NNP David) (NNP Brian) (NNP Cross)) (PRN (-LRB- -LRB-) (NP (NNP Lucia) (NNP Bowen) (NNP Cross)) (-RRB- -RRB-)) (PP (IN of) (NP (NNP Wilton)))))) (, ,) (NP (NNP CT)))))))) (. .)))
(S1 (NP (NP (NNP TIMBERLAKE)) (: --) (NP (NP (NP (NP (NNP Craig) (NNP Allison)) (, ,) (PP (IN of) (NP (NP (NNP Ogunquit) (NNP Maine)) (PRN (-LRB- -LRB-) (PP (RB formerly) (IN of) (NP (NNP New) (NNP York) (NNP City))) (-RRB- -RRB-)))) (, ,) (VP (VBD passed) (PRT (RP away)) (NP (NNP December) (CD 31) (, ,) (CD 2006)) (, ,) (PP (IN at) (NP (NP (DT the) (NN age)) (PP (IN of) (NP (CD 86))))) (, ,) (PP (IN at) (NP (NN Mercy))) (NP (NNP Hospital)))) (, ,) (NP (NNP Oklahoma) (NNP City)) (, ,) (NP (NNP Oklahoma)) (SBAR (IN while) (S (VP (VBG visiting) (NP (PRP$ his) (NN sister) (CC and) (NN brother-in-law)))))) (, ,) (NP (NNP Dodee)) (CC and) (NP (NNP Jack) (NNP Moncrief))) (. .)))
(S1 (S (S (VP (VBG Speaking) (PP (IN outside) (NP (NP (DT the) (NNP Stanford) (NNP Mansion)) (PP (IN in) (NP (NNP Sacramento))) (PRN (: --) (NP (NP (DT the) (NN site)) (PP (IN of) (NP (NP (DT the) (JJ first) (JJ presidential) (NN visit)) (PP (TO to) (NP (NNP California))) (, ,) (PP (IN by) (NP (NNP Rutherford) (NNP Hayes))) (, ,))) (PP (IN in) (NP (CD 1880)))) (: --)))))) (NP (NP (NNP Mr.) (NNP Schwarzenegger)) (, ,) (NP (DT a) (NNP Republican)) (, ,)) (VP (VBD noted) (SBAR (IN that) (S (NP (JJ presidential) (NNS candidates)) (VP (AUX had) (ADVP (RB already)) (VP (VBN come) (PP (TO to) (NP (DT the) (NN state))) (S (VP (TO to) (VP (VB woo) (NP (NNS voters)) (SBAR (IN as) (S (NP (DT the) (JJ new) (JJ primary) (NN date)) (VP (AUX was) (VP (AUXG being) (VP (VBN talked) (PP (IN about))))))))))))))) (. .) ('' '')))
(S1 (S (S (NP (PRP She)) (VP (AUX is) (ADVP (RB always)) (VP (VBG nodding) (, ,) (PP (IN in) (NP (NP (DT an) (NN array)) (PP (IN of) (NP (JJ distinctive) (NNS flavors)))))))) (: :) (S (NP (NP (DT the) (JJ stern) (, ,) (JJ deferential) (NN nod)) (PRN (-LRB- -LRB-) (PP (IN at) (NP (NP (DT a) (NNP Senate) (NN news) (NN conference)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP$ her) (NN colleague) (NNP Evan) (NNP Bayh)) (VP (VBD described) (NP (NNS conditions)) (PP (IN in) (NP (NNP Afghanistan)))))))) (-RRB- -RRB-))) (NP (NP (DT the) (JJ empathetic) (, ,) (JJ lips-pursed) (NN nod)) (PRN (-LRB- -LRB-) (SBAR (WHADVP (WRB when)) (S (NP (NP (NP (DT a) (NN man)) (PP (IN in) (NP (NNP Cedar) (NNPS Rapids)))) (, ,) (NP (NNP Iowa)) (, ,)) (VP (VBZ tells) (NP (PRP her)) (PP (IN about) (S (NP (NP (PRP$ his) (NN son) (POS 's)) (NN epilepsy)) (-RRB- -RRB-) (NP (NP (DT the) (NN squinty)) (, ,) (VP (VBG disbelieving) (NP (NP (NP (NN nod)) (PRN (-LRB- -LRB-) (SBAR (WHADVP (WRB when)) (S (NP (DT a) (NN general)) (VP (VBZ testifies) (PP (IN on) (NP (NNP Iraq))) (PP (IN before) (NP (DT the) (NNP Senate) (NNP Armed) (NNPS Services) (NNP Committee)))))) (-RRB- -RRB-)) (NP (DT the) (JJ dutiful) (NN acknowledgment) (NN nod)) (PRN (-LRB- -LRB-) (SBAR (WHADVP (WRB when)) (S (VP (AUXG being) (VP (VBD applauded))))) (-RRB- -RRB-))) (CC and) (NP (DT the) (VBG blushing) (NN nod))) (-LRB- -LRB-) (SBAR (WHADVP (WRB when)) (S (NP (NP (DT a) (NN veteran)) (PP (IN in) (NP (NNP Des) (NNP Moines)))) (VP (VBZ tells) (NP (PRP her))))))) ('' ''))) (S (NP (PRP I)) (VP (VBP think) (S (NP (PRP you)) (VP (VB look) (ADJP (RB very) (JJ nice))))))))) ('' '') (-RRB- -RRB-)))) (. .)))
(S1 (NP (NNP XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)))
(S1 (S (S (NP (PRP We)) (VP (AUX do) (RB n't) (VP (VB think) (SBAR (S (NP (JJ taxing) (NNS folks)) (VP (AUX is) (NP (NP (NN something)) (SBAR (WHNP (WDT that)) (S (VP (AUX is) (ADJP (JJ popular)) (PP (IN in) (NP (NNP California))))))))))))) (, ,) ('' '') (NP (PRP he)) (VP (VBD said) (PP (IN in) (NP (NP (DT a) (NN telephone) (NN interview)) (PP (IN from) (NP (NNP Sacramento)))))) (. .) ('' '')))
(S1 (NP (NP (RB Dear) (NN father)) (PP (IN of) (NP (NP (NNP Leslie) (NNP M.) (NNP Cross)) (PP (IN of) (NP (NP (NNP Long) (NNP Island)) (, ,) (NP (NNP NY)) (, ,) (NP (NP (NNP Barbara) (NNP Cross)) (PRN (-LRB- -LRB-) (NP (NNP Roy) (NNP Call)) (-RRB- -RRB-)) (PP (IN of) (NP (NNP Cleveland) (NNPS Heights)))) (, ,) (INTJ (UH OH)) (, ,) (NP (NNP Laurie) (NNP Cross)) (PRN (-LRB- -LRB-) (NP (NNP Gerald) (NNP Knorr)) (-RRB- -RRB-)) (PP (IN of) (NP (NP (NNP Seattle)) (, ,) (NP (NNP Washington)) (, ,) (NP (NP (NNP Steven) (NNP Frederick) (NNP Cross)) (PP (IN of) (NP (NP (NNP Olympia)) (, ,) (NP (NNP Washington)) (, ,) (CC and) (NP (NNP David) (NNP Brian) (NNP Cross)) (PRN (-LRB- -LRB-) (NP (NNP Lucia) (NNP Bowen) (NNP Cross)) (-RRB- -RRB-)) (PP (IN of) (NP (NNP Wilton)))))) (, ,) (NP (NNP CT)))))))) (. .)))
(S1 (S (PP (IN In) (NP (CD 2006))) (, ,) (NP (DT the) (JJ annual) (NN meeting)) (VP (VBD morphed) (PP (IN into) (NP (NP (DT a) (CD three)) (CC and) (NP (NP (DT a) (JJ half) (NN hour) (NN celebration)) (PP (IN of) (NP (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,) (NP (NP (NNP Citigroup) (POS 's)) (VBG departing) (NN chairman)))))))) (. .)))
(S1 (S (VP (VBN Built) (PP (IN from) (NP (NP (DT a) (NN series)) (PP (IN of) (NP (NP (NNS acquisitions)) (PP (IN by) (NP (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,) (NP (NP (DT the) (NN company) (POS 's)) (JJ former) (NN chairman)) (, ,) (SBAR (S (NP (NNP Citigroup)) (VP (AUX has) (ADVP (RB since)) (VP (VBD encompassed) (NP (NP (DT both) (JJ retail) (CC and) (NN investment) (NN banking) (NNS operations)) (, ,) (NP (NN credit) (NN card) (NNS businesses)) (, ,) (NP (NN wealth) (NN management)) (CC and) (NP (NP (DT a) (NN host)) (PP (IN of) (NP (JJ other) (NNS services)))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (CD 2002))) (, ,) (NP (DT a) (NN government) (NN investigation)) (VP (VBD found) (SBAR (IN that) (S (NP (NP (NNP Jack) (NNP B.) (NNP Grubman)) (, ,) (ADVP (RB then)) (NP (NP (DT an) (NN analyst)) (PP (IN with) (NP (NNP Citigroup)))) (, ,)) (VP (AUX had) (VP (VBN bragged) (PP (IN in) (NP (NP (DT an) (NN e-mail) (NN message)) (SBAR (WHNP (WDT that)) (S (NP (NP (PRP$ his) (NN boss)) (, ,) (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,)) (VP (AUX had) (VP (VBN helped) (S (VP (VB get) (NP (PRP$ his) (NNP twins)) (PP (IN into) (NP (NP (NP (DT the) (NNP Y) (POS 's)) (NN nursery) (NN school)) (SBAR (IN after) (S (NP (NNP Mr.) (NNP Grubman)) (VP (VBD upgraded) (NP (NP (PRP$ his) (NN rating)) (PP (IN on) (NP (DT a) (NN stock)))) (PP (IN as) (NP (NP (DT a) (NN favor)) (PP (TO to) (NP (NNP Mr.) (NNP Weill))))))))))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (CD 2003))) (, ,) (NP (PRP she)) (VP (VBD disclosed) (PP (IN during) (NP (NP (DT an) (NN interview)) (PP (IN with) (NP (NP (NP (NNP Citigroup) (POS 's)) (JJ chief) (NN executive)) (, ,) (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,))))) (SBAR (IN that) (S (NP (PRP she)) (VP (VBD owned) (NP (NP (CD 1,000) (NNS shares)) (PP (IN of) (NP (NN stock)))) (PP (IN in) (NP (PRP$ his) (NN company))))))) (. .)))
(S1 (S (NP (DT Those) (VBN invited)) (VP (VBD included) (NP (NP (DT the) (NNP Republican) (NN fund-raiser) (NNP Georgette) (NNP Mosbacher)) (CC and) (NP (DT the) (JJ former) (JJ chief) (NNS executives))) (NP (NP (NP (NNP Leonard) (NNP A.) (NNP Lauder)) (PRN (-LRB- -LRB-) (NP (NNP Estée) (NNP Lauder) (NNPS Companies)) (-RRB- -RRB-))) (CC and) (NP (NP (NNP Sanford) (NNP I.) (NNP Weill)) (PRN (-LRB- -LRB-) (NP (NNP Citigroup)) (-RRB- -RRB-)))) (, ,) (SBAR (IN though) (S (NP (PRP it)) (VP (AUX was) (ADJP (RB not) (JJ clear)) (SBAR (IN if) (S (NP (PDT all) (DT those)) (VP (VBN invited) (S (VP (VBN attended)))))))))) (. .) ('' '')))
(S1 (S (NP (DT Both)) (VP (VP (AUX were) (ADJP (JJ young) (, ,) (JJ talented) (CC and) (JJ ambitious))) (CC both) (VP (AUX were) (VP (ADVP (RB personally)) (VBN recruited) (PP (TO to) (NP (NNP Citigroup))) (PP (IN by) (NP (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,) (NP (NP (NNP Mr.) (NNP Prince) (POS 's)) (NN predecessor))))))) (. .)))
(S1 (S (SBAR (RB Ever) (IN since) (S (NP (NNP Sanford) (NNP I.) (NNP Weill)) (VP (VBD orchestrated) (NP (NP (DT the) (CD 1998) (NN merger)) (PP (IN of) (NP (NNP Travelers) (CC and) (NNP Citicorp))) (S (VP (TO to) (VP (VB form) (NP (DT the) (NN company))))))))) (, ,) (NP (NNP Citigroup)) (VP (AUX had) (VP (VBN managed) (NP (NNS expenses)) (PP (IN in) (NP (DT an) (ADJP (JJ episodic) (CC and) (JJ decentralized)) (NN manner))))) (. .)))
(S1 (S (CC But) (NP (PRP he)) (VP (VBD said) (SBAR (S (NP (PRP he)) ('' '') (VP (MD would) (RB not) (VP (AUX have) (VP (VBN taken) (NP (DT the) (NN job)) ('' '') (PP (IN without) (NP (DT a) (JJ severance) (NN plan))) (, ,) (SBAR (ADVP (RB especially)) (IN since) (S (NP (PRP he)) (VP (AUX had) (VP (VBN spent) (NP (CD six) (NNS months)) (S (VP (VBG negotiating) (NP (NP (PRP$ his) (NN exit)) (PP (IN at) (NP (NNP Citigroup)))) (PP (IN after) (NP (NP (DT a) (VBG falling) (RP out)) (PP (IN with) (NP (NP (NNP Sanford) (NNP I.) (NNP Weill)) (, ,) (NP (PRP$ his) (JJ former) (NN mentor) (CC and) (NN boss)))))))))))))))))) (. .)))
(S1 (S (CC But) (ADVP (NP (DT a) (NN week)) (RB later)) (, ,) (NP (NP (JJ several) (NNS miles)) (PP (TO to) (NP (DT the) (NN north))) (PP (IN in) (NP (NP (NNP Hamden)) (, ,) (NP (NP (DT a) (JJ new) (NN chapter)) (PP (IN in) (NP (NP (NNP Connecticut) (POS 's)) (NN hockey) (NN history))))))) (VP (AUX is) (VP (AUXG being) (VP (VBN written)))) (. .)))
(S1 (S (NP (PRP It)) (VP (AUX was) (NP (NP (NP (NN midnight)) (ADVP (RB here)) (PP (IN in) (NP (NNP Hanoi)))) (, ,) (CC or) (RB already) (NP (NP (CD 2) (NN a.m.)) (ADVP (RB back) (PP (IN in) (NP (NP (NNP Seoul)) (, ,) (NP (NNP South) (NNP Korea)))))))) (. .)))
(S1 (S (PP (IN In) (NP (NNP Israel))) (, ,) (NP (NNS officials)) (VP (AUX are) (VP (VBG mulling) (NP (DT all) (NNS alternatives)) (: --) (PP (IN from) (NP (NP (DT the) (NNP Saudi) (NN peace) (NN initiative)) (PP (TO to) (S (VP (VBG negotiating) (PP (IN with) (NP (NNP Hamas))) (PP (TO to) (NP (NP (VBG opening) (NNS talks)) (PP (IN with) (NP (NP (S (NP (NNP Syria)) (VP (TO to) (VP (VBG reoccupying) (S (NP (NNP Gaza)) (VP (TO to) (VP (VBG looking) (PP (IN for) (NP (DT a))))))))) ('' '') (NN trustee) ('' '')) (PP (IN for) (NP (DT the) (NNP West) (NNP Bank)))))))))))) (: --) (SBAR (IN because) (S (NP (DT no) (NN one)) (VP (AUX is) (ADVP (RB sure) (RB anymore)) (SBAR (WHNP (WP what)) (S (VP (TO to) (VP (AUX do)))))))))) (. .)))
(S1 (S (NP (NNP Stone) (NNP Harbor)) (VP (VBZ shares) (NP (NP (DT a) (JJ seven-mile-long) (NN barrier) (NN island)) (PP (IN in) (NP (NNP Cape) (NNP May) (NNP County)))) (PP (IN with) (NP (NP (NNP Avalon)) (, ,) (NP (NP (DT a) (ADJP (RB slightly) (JJR less)) (JJ manicured) (NN town)) (PP (TO to) (NP (DT the) (NN north))))))) (. .)))
(S1 (S (NP (NP (NNP LUCIFER) (NNP CHU)) (, ,) (NP (NP (DT a) (JJ 31-year-old)) (PP (IN from) (NP (NP (NNP Taipei)) (, ,) (NP (NNP Taiwan))))) (, ,)) (VP (AUX is) (NP (NP (ADJP (RB as) (JJ good)) (DT an) (NN example)) (PP (IN as) (NP (NP (DT any)) (PP (IN of) (NP (NP (DT the) (VBG shrinking) (NNS distances)) (PP (IN between) (NP (NNP East) (CC and) (NNP West))))))))) (. .)))
(S1 (S (S (NP (PRP It)) (VP (VBZ remains) (ADJP (RB especially) (JJ popular)) (PP (IN in) (NP (NNP Italy) (, ,) (NNP France) (, ,) (NNP Spain) (, ,) (NNP Hungary) (, ,) (NNP Poland) (, ,) (NNP Romania) (CC and) (NNP Russia))))) (, ,) (CC and) (S (NP (PRP it)) (VP (AUX has) (ADVP (RB lately)) (VP (AUX been) (VP (VBG catching) (PRT (RP on)) (PP (IN in) (NP (NP (NNP China)) (CC and) (NP (NP (JJ other) (NNS parts)) (PP (IN of) (NP (NNP Asia)))))))))) (. .)))
(S1 (S (NP (NP (DT The) (NN dining) (NNS halls)) (PP (IN at) (NP (NNP Furman) (NNP University))) (PP (IN in) (NP (NP (NNP Greenville)) (, ,) (NP (NNP S.C.)) (, ,)))) (VP (AUX are) (VP (VBG offering) (NP (NP (JJR more) (JJ fresh) (NN produce)) (PP (IN from) (NP (JJ local) (NNS farms)))))) (. .)))
(S1 (S (NP (PRP He)) (VP (VBD received) (NP (PRP$ his) (NNP Medical) (NN Degree)) (PP (IN from) (NP (NNP Queens) (NNP University))) (PP (IN in) (NP (NP (NNP Kingston)) (, ,) (NP (NNP Ontario))))) (. .)))
(S1 (S (NP (DT THE) (NNP Ferrari) (NN mystique)) (VP (VBZ exerts) (NP (DT a) (JJ powerful) (NN draw)) (, ,) (S (VP (VBG reaching) (PP (ADVP (RB well)) (IN beyond) (NP (NP (DT those) (JJ fortunate) (NNS drivers)) (SBAR (WHNP (WP who)) (S (VP (AUX have) (VP (VBN experienced) (NP (NP (DT the) (JJ sublime) (NNS sports) (NNS cars)) (VP (VP (VBN made) (PP (IN in) (NP (NP (NNP Maranello)) (, ,) (NP (NNP Italy)) (, ,)))) (CC and) (VP (VBG extending) (PP (IN beyond) (NP (NP (DT the) (JJ devoted) (NNS fans)) (PP (IN of) (NP (PRP$ its) (NN Formula) (CD One) (NN racing) (NN team))))))))))))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Bolaño)) (VP (VP (VBD grew) (PRT (RP up)) (PP (IN in) (NP (NNP Mexico)))) (CC and) (VP (VBD returned) (PP (TO to) (NP (NNP Chile))) (PP (IN out) (PP (IN of) (NP (NP (NN enthusiasm)) (PP (IN for) (NP (DT the) (NNP Allende) (NN government)))))) (, ,) (S (ADVP (RB only)) (VP (TO to) (VP (AUX be) (VP (ADVP (RB briefly)) (VBN imprisoned) (SBAR (IN after) (S (NP (PRP it)) (VP (AUX was) (VP (VBN overthrown))))))))))) (. .)))
(S1 (S (NP (NP (NNP PAGE) (NNP A10) (NNP An) (NNP American) (NNP Friend)) (PP (IN in) (NP (NP (NNP Paris) (NNP Nicolas) (NNP Sarkozy)) (, ,) (NP (NP (DT the) (NN president-elect)) (PP (IN of) (NP (NNP France)))) (, ,)))) (VP (AUX is) (NP (NP (DT an) (JJ unabashed) (NN admirer)) (PP (IN of) (NP (NNP America))) (SBAR (WHNP (WP who)) (S (VP (VP (VBZ loves) (NP (NP (NNP Hemingway)) (CC and) (NP (NNP Sylvester) (NNP Stallone)))) (CC and) (VP (VBZ wants) (S (VP (TO to) (VP (VB end) (NP (NP (DT the) (NN tension)) (PP (IN with) (NP (NNP Washington))) (SBAR (WHNP (WDT that)) (S (VP (VBD existed) (PP (IN under) (NP (PRP$ his) (NN predecessor)))))))))))))))) (. .)))
(S1 (S (SBAR (RB Ever) (IN since) (S (NP (DT the) (NNP Verrazano-Narrows) (NN bridge)) (VP (AUX was) (VP (VBN completed) (PP (IN in) (NP (CD 1964))))))) (, ,) (S (S (VP (VBG linking) (NP (NNP Staten) (NNP Island)) (PP (TO to) (NP (NP (DT the) (NN rest)) (PP (IN of) (NP (NNP New) (NNP York) (NNP City))))))) (, ,) (NP (NNS people)) (VP (AUX have) (VP (VBN flocked) (PP (TO to) (NP (DT the) (NN island)))))) (, ,) (S (NP (NNS developers)) (VP (AUX have) (VP (VBN worked) (ADVP (RB frenetically)) (S (VP (TO to) (VP (VB accommodate) (NP (PRP them)))))))) (, ,) (CC and) (S (NP (JJ longtime) (NNS residents)) (VP (AUX have) (VP (VBN bemoaned) (NP (NP (NP (DT the) (NN disappearance)) (PP (IN of) (NP (JJ open) (NN space)))) (CC and) (NP (NP (DT the) (NN strain)) (PP (IN on) (NP (NP (DT the) (NN island) (POS 's)) (NN infrastructure)))))))) (. .)))
(S1 (S (PP (IN In) (NP (DT a) (JJ weird) (NN twist))) (, ,) (NP (NP (DT the) (NN model)) (ADJP (ADJP (RB not) (JJ tall) (CC or) (JJ white) (CC or) (JJ Asian) (JJ enough)) (PP (IN for) (NP (NNP Asia))))) (VP (VBD appeared) (NP (JJ last) (NN year)) (PP (IN on) (S (NP (DT the)) (VP (VBZ covers) (PP (IN of) (NP (NP (NP (NNP Harper) (POS 's)) (NNP Bazaar)) (PP (IN in) (NP (NP (NNP Malaysia) (, ,) (NNP Singapore)) (, ,) (NP (NNP Hong) (NNP Kong)) (CC and) (NP (NNP Kazakhstan)))))) (: --) (SBAR (RB not) (IN because) (S (NP (NP (NNS tastes)) (PP (IN in) (NP (NNS models)))) (VP (VP (AUX have) (VP (VBN changed) (ADVP (RB so) (RB drastically)))) (, ,) (CC but) (SBAR (IN because) (S (NP (PRP she)) (VP (AUX had) (NP (NP (NP (DT a) (NN part)) (PP (IN in) (NP (NP (NP (CD one)) (PP (IN of) (NP (DT the) (JJS biggest) (NNP Hollywood) (NNS movies))) (PP (IN of) (NP (DT that) (NN summer)))) (, ,) ('' '') (NP (NNP Mission))))) (: :) (NP (JJ Impossible) (NNP III))))))))))))) (. .) ('' '')))
(S1 (S (PP (IN For) (NP (NP (NNP Research)) (PP (IN in) (NP (NNP Motion))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX is) (VP (VBN based) (PP (IN in) (NP (NP (NNP Waterloo)) (, ,) (NP (NNP Ontario)))))))))) (, ,) (NP (NP (DT the) (NN arrival)) (PP (IN of) (NP (NP (NP (NNP Gameloft) (POS 's)) (NNS titles)) (CC and) (NP (JJ other) (JJ mass-market) (NN software))))) (VP (MD could) (VP (VB help) (S (NP (PRP it)) (VP (VB win) (PRT (RP over)) (NP (NP (JJR more)) (PP (IN of) (NP (DT the) (JJ coveted) (NN consumer) (NN market)))))))) (. .)))
(S1 (S (NP (NNP Vallabhaneni)) (VP (AUX is) (NP (NP (DT a) (JJ tall) (, ,) (JJ distinguished-looking) (NN woman)) (SBAR (WHNP (WP who)) (S (VP (VBD came) (PP (TO to) (NP (DT the) (NNP U.S.))) (PP (IN from) (NP (NP (NNP Hyderabad)) (, ,) (NP (NNP India)))) (, ,) (PP (IN in) (NP (NNP March) (CD 1997))) (PP (IN on) (NP (DT a) (NN tourist) (NN visa)))))))) (. .)))
(S1 (S (NP (NP (NNP Aug.) (CD 31) (NNP Bordertown) (NNP The) (NN director) (NNP Gregory) (NNP Nava)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD nudged) (NP (NNP Jennifer) (NNP Lopez)) (PP (IN toward) (NP (NN stardom))) (PP (IN with) ('' '') (NP (NNP Selena)))))) (, ,) ('' '')) (VP (VBZ reunites) (PP (IN with) (NP (PRP her))) (PP (IN for) (NP (NP (DT a) (JJ fictionalized) (NN treatment)) (PP (IN of) (NP (NP (DT the) (VB plague)) (PP (IN of) (NP (NP (NNP unsolved) (NNS murders)) (PP (IN of) (NP (NP (NNS women)) (PP (IN in) (NP (NP (NNP Ciudad) (NNP Juárez)) (, ,) (NP (NNP Mexico))))))))))))) (. .)))
(S1 (S (NP (NNP India)) (VP (AUX has) (VP (AUX been) (VP (VBG trying) (S (VP (TO to) (VP (VB become) (NP (NP (NNP Asia) (POS 's)) (JJ low-cost) (NN car) (NN manufacturing) (NN center))))) (, ,) (S (VP (VBG offering) (NP (NP (NN tax) (NNS breaks)) (CC and) (NP (JJ other) (NNS incentives)))))))) (. .)))
(S1 (S (S (S (NP (NNP A1) (NNP Ahmadinejad)) (VP (TO to) (VP (VB Visit) (NP (NP (NNP Saudi) (NNP King) (NNP President) (NNP Mahmoud) (NNP Ahmadinejad)) (PP (IN of) (NP (NNP Iran))))))) (VP (MD will) (VP (VB visit) (NP (NNP Saudi) (NNP Arabia)) (PP (IN for) (NP (NP (DT a) (JJ landmark) (NN meeting)) (PP (IN with) (NP (NNP King) (NNP Abdullah))) (VP (VBN intended) (S (VP (TO to) (VP (VB tackle) (NP (NP (DT the) (VBG growing) (ADJP (JJ sectarian) (CC and) (JJ political)) (NNS crises)) (VP (VBG wracking) (NP (DT the) (NNP Middle) (NNP East))))))))))))) (, ,) (NP (NNP Iranian) (NNS officials)) (VP (VBD said)) (. .)))
(S1 (S (NP (DT The) (NN bride)) (VP (AUX is) (NP (NP (DT a) (JJ second-year) (NN resident)) (PP (IN of) (NP (JJ internal) (NN medicine))) (PP (IN at) (NP (NP (NNP Beth) (NNP Israel) (NNP Deaconess) (NNP Medical) (NNP Center)) (PP (IN in) (NP (NNP Boston))))))) (. .)))
(S1 (S (S (NP (PRP He)) (VP (VBZ owns) (NP (NP (DT an) (JJ off-road) (NN race) (NN team)) (CC and) (NP (NP (DT a) (NN shop)) (PP (IN in) (NP (NP (NNP Anaheim)) (, ,) (NP (NNP Calif.)))))))) (, ,) (CC and) (S (NP (PRP he)) (ADVP (RB still)) (VP (VBZ competes) (PP (IN in) (NP (NP (DT the) (NNP Baja) (CD 1000)) (, ,) (NP (NP (DT an) (JJ off-road) (NN race)) (PP (IN on) (NP (NP (DT a) (NN course)) (PP (IN through) (NP (NP (DT the) (NNP Baja) (NNP California) (NNP Peninsula)) (PP (IN in) (NP (NNP Mexico)))))))))))) (. .)))
(S1 (S (NP (DT The) (JJ false) (NNS statements)) (VP (VBD included) (NP (DT a) (NN claim) (S (VP (TO to) (VP (AUX have) (NP (NP (DT a) (JJ medical) (NN degree)) (PP (IN from) (NP (NP (DT the) (NNP State) (NNP University)) (PP (IN of) (NP (NNP New) (NNP York))) (PP (IN at) (NP (NP (NNP Stony) (NNP Brook)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (ADVP (RB actually)) (VP (VBD attended) (NP (JJ medical) (NN school)) (PP (IN in) (NP (NP (NNP Guadalajara)) (, ,) (NP (NP (NNP Mexico)) (NP (NP (DT a) (NN claim)) (SBAR (S (NP (PRP he)) (VP (AUX was) (NP (NP (NP (DT an) (JJ associate) (JJ clinical) (NN professor)) (PP (IN at) (NP (NP (DT the) (NNP Albert) (NNP Einstein) (NNP College)) (PP (IN of) (NP (NNP Medicine))) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (ADVP (RB actually)) (VP (VP (AUX was) (NP (NP (DT an) (JJ assistant) (JJ clinical) (NN professor)) (, ,) (NP (DT a) (NN lower-ranking)) (CC and) (NP (JJ honorary) (NN position)))) (, ,) (CC and) (VP (AUX did) (RB not) (VP (VB teach))))))))) (CC and) (NP (DT a) (NN claim) (SBAR (IN that) (S (NP (PRP he)) (VP (AUX was) (NP (NP (DT a) (NN fellow)) (PP (IN of) (NP (NP (DT the) (NNP American) (NNP College)) (PP (IN of) (NP (NNP Physicians)))))) (, ,) (SBAR (IN although) (S (NP (PRP he)) (VP (AUX had) (VP (VBN lost) (NP (DT that) (NN title)) (ADVP (NP (CD six) (NNS years)) (RB earlier)) (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (VP (VBD stopped) (S (VP (VP (VBG paying) (NP (NNS dues))) (CC and) (VP (AUX was) (ADVP (RB no) (RB longer)) (NP (NP (DT a) (NN member)) (PP (IN of) (NP (DT the) (NN group))))))))))))))))))))))))))))))))))))))) (. .)))
(S1 (NP (NP (DT A) (NN map)) (PP (IN on) (NP (NNP Monday))) (PP (IN with) (NP (NP (DT an) (NN article)) (PP (IN about) (NP (NNS fears) (SBAR (IN that) (S (NP (NP (NN tourism)) (PP (IN in) (NP (DT the) (NNP Niagara) (NNP Falls) (NN area)))) (VP (MD will) (VP (VB suffer) (SBAR (WHADVP (WRB when)) (S (NP (JJR tighter) (NN border) (NNS restrictions)) (VP (VBP take) (NP (NP (NN effect)) (VP (VBN mislabeled) (NP (NP (DT an) (NN island)) (PP (IN in) (NP (DT the) (NNP Niagara) (NNP River))) (PP (IN between) (NP (NP (NNP New) (NNP York)) (CC and) (NP (NNP Ontario)))))))))))))))))) (. .)))
(S1 (S (NP (PRP She)) (ADVP (RB currently)) (VP (VBZ serves) (PP (IN on) (NP (NP (DT the) (NN board)) (PP (IN of) (NP (NNS trustees))) (PP (IN at) (NP (NP (NNP Lesley) (NNP University)) (PP (IN in) (NP (NP (NNP Cambridge)) (, ,) (NP (NNP Mass.))))))))) (. .)))
(S1 (S (NP (NNS Curators)) (VP (AUX have) (VP (AUX been) (VP (VBG snapping) (PRT (RP up)) (NP (NP (NNP Mexico) (NNP City) (NN artwork)) (PP (IN in) (NP (NP (NNS places)) (PP (IN like) (NP (NNP Basel)))))) (ADVP (RB now)) (SBAR (S (NP (PRP they)) (VP (MD will) (VP (VB descend) (PP (IN on) (NP (DT the) (NN city))) (NP (DT this) (NNP April)) (PP (IN for) (NP (NP (NNP Mexico) (NNP Arte) (NNP Contemporáneo)) (, ,) (NP (PRP$ its) (JJ fledging) (JJ contemporary) (NN art) (NN fair))))))))))) (. .)))
(S1 (S (S (NP (DT A) ('' '') (NNP West) (NNP Bank) (JJ first) ('' '') (NN strategy)) (VP (MD would) (VP (VB mean) (S (VP (VBG leaning) (PP (IN on) (NP (DT the) (JJ Israeli) (NN government))) (S (VP (TO to) (VP (VP (VB dismantle) (NP (NNS settlements))) (, ,) (VP (VB ease) (PRT (RP up)) (PP (IN on) (NP (NP (NN travel) (NNS restrictions)) (PP (IN for) (NP (NP (NNPS Palestinians)) (VP (VBG moving) (PP (IN around) (NP (DT the) (NNP West) (NNP Bank))))))))) (, ,) (CC and) (VP (VB release) (NP (NP (DT a) (JJ substantial) (NN number)) (PP (IN of) (NP (NP (JJ Palestinian) (NNS prisoners)) (VP (AUXG being) (VP (VBN held) (PP (IN by) (NP (NNP Israel))))))))))))))))) (, ,) (NP (NNP Middle) (NNP East) (NNS experts)) (VP (VBD said)) (. .)))
(S1 (S (NP (NP (DT The) (NN fossil)) (, ,) (VP (VBN found) (PP (IN in) (NP (NNP Slovenia))) (ADVP (NP (DT a) (NN century)) (RB ago))) (, ,)) (VP (AUX is) (VP (VBN described) (PP (IN in) (NP (NP (DT The) (NNP Journal)) (PP (IN of) (NP (NNP Vertebrate) (NNP Paelontology))))) (PP (IN by) (NP (NP (NNP Alessandro) (NNP Palci)) (PP (IN of) (NP (NP (DT the) (NNP University)) (PP (IN of) (NP (NNP Modena) (CC and) (NNP Reggio) (NNP Emilia))) (PP (IN in) (NP (NP (NNP Italy)) (CC and) (NP (NP (NNP Michael) (NNP W.) (NNP Caldwell)) (PP (IN of) (NP (NP (DT the) (NNP University)) (PP (IN of) (NP (NNP Alberta))) (PP (IN in) (NP (NNP Canada)))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Isaac) (NNP Reed)) (, ,) (NP (NP (DT a) (NN friend)) (PP (IN of) (NP (NP (DT the) (NN couple)) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN named) (NP (NP (DT a) (NN deputy) (NN marriage) (NN commissioner)) (PP (IN by) (NP (NNP Los) (NNP Angeles) (NNP County))) (PP (IN for) (NP (DT this) (NN event))))))))))) (, ,)) (VP (VBD officiated) (PP (IN at) (NP (NNP Saddlerock) (NNP Ranch))) (PP (IN in) (NP (NP (NNP Malibu)) (, ,) (NP (NNP Calif.))))) (. .)))
(S1 (S (NP (NNP Senator) (NNP Lieberman)) (VP (AUX was) (NP (NP (DT the) (JJ first) (NN Jew)) (PP (IN on) (NP (NP (DT a) (JJ major) (NN party) (POS 's)) (JJ presidential) (NN ticket)))) (, ,) (S (VP (VBG losing) (PP (IN in) (NP (CD 2000))) (PP (TO to) (NP (NP (DT the) (JJ first) (NNP Connecticut) (NN native) (S (VP (TO to) (VP (AUX be) (VP (VBN elected) (NP (NN president))))))) (: :) (NP (NNP George) (NNP W.) (NNP Bush)) (, ,) (VP (VBN born) (PP (IN in) (NP (NNP New) (NNP Haven))) (PP (IN on) (NP (NNP July) (CD 6) (, ,) (CD 1946))))))))) (. .)))
(S1 (NP (NP (NP (NNP Services) (NNP Raymond) (NN Funeral) (NNP Home)) (, ,) (ADJP (NNP March) (JJ 5th)) (, ,) (CD 12PM) (, ,) (CD 5)) (NP (NP (NNP East) (NNP Wall) (NNP St)) (, ,) (NP (NNP Norwalk)) (, ,) (NP (NNP CT)) (, ,) (NP (NN burial) (NNP Atchison)) (, ,) (NP (NNP Kansas))) (. .)))
(S1 (S (NP (NP (DT The) (NN man)) (, ,) (NP (NP (NP (NNP David) (NNP Wayne)) (, ,) (NP (CD 48)) (, ,)) (PP (IN of) (NP (NNP Croton-on-Hudson)))) (, ,)) (VP (VBD admitted) (PP (IN in) (NP (NNP State) (NNP Supreme) (NNP Court))) (SBAR (IN that) (S (NP (PRP he)) (VP (AUX had) (VP (VBN claimed) (S (VP (TO to) (VP (AUX be) (VP (VBN wrapped) (PP (IN in) (NP (NN dynamite))) (SBAR (IN while) (S (VP (VBG robbing) (NP (NNP Westchester) (NNP County) (NNS stores) (CC and) (NNS hotels)) (NP (JJ last) (NN year)))))))))))))) (. .)))
(S1 (S (NP (JJ WHITE) (NNS STRIPES)) (PP (IN After) (S (VP (VBG playing) (NP (NNP Bonnaroo)) (PP (IN on) (NP (NNP June) (CD 24)))))) (, ,) (NP (NP (DT the) (NNP White) (NNP Stripes)) (PRN (: --) (S (NP (NP (WP$ whose) (JJ new) (NN album)) (, ,) ('' '') (NP (NNP Icky) (NNP Thump)) ('' '') (PRN (-LRB- -LRB-) (NP (NNP Warner) (NNPS Brothers)) (-RRB- -RRB-)) (, ,)) (VP (MD will) (VP (AUX be) (VP (VBN released) (NP (NNP June) (CD 19)))))) (: --))) (VP (VBP go) (PP (IN on) (NP (NP (NP (DT a) (ADJP (RB pretty) (JJ thorough)) (NN tour)) (PP (IN of) (NP (NNP Canada) (-LRB- -LRB-) (NNP Moncton)))) (, ,) (NP (NNP New) (NNP Brunswick))))) (. ?)))
(S1 (NP (NP (NNP SORKIN)) (: --) (NP (NP (NNP Rosalie)) (, ,) (NP (CD 92)) (, ,) (PP (IN of) (NP (NP (NNP Boca) (NNP Raton)) (, ,) (NP (NNP Florida))))) (. .)))
(S1 (S (NP (NN Intelligence) (NNS analysts)) (VP (AUX have) (VP (AUX been) (VP (VBN divided) (PP (IN over) (SBAR (IN whether) (S (NP (PRP it)) (VP (AUX is) (NP (NP (DT the) (NN policy)) (PP (IN of) (NP (NP (DT the) (NN government)) (PP (IN in) (NP (NNP Damascus)))))) (S (VP (TO to) (VP (VB aid) (NP (NP (DT the) (NN flow)) (PP (IN of) (NP (NP (JJ foreign) (NNS fighters)) (SBAR (SBAR (WHNP (WP who)) (S (VP (VBP enter) (NP (NNP Iraq)) (PP (IN from) (NP (NNP Syria)))))) (, ,) (CC or) (SBAR (IN whether) (S (NP (DT that) (NN assistance)) (VP (AUX is) (NP (NP (DT the) (NN work)) (PP (IN of) (NP (NP (JJ lower-level) (JJ Syrian) (NNS officials)) (VP (VBG acting) (PP (IN on) (NP (PRP$ their) (JJ own)))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP DREXLER)) (: --) (NP (NP (NNP Beatrice) (NNP C.)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD ran) (NP (NP (NP (NN Candy) (NNP Mountain) (NNP Day) (NNP Camp)) (PP (IN in) (NP (NNP New) (NNP City)))) (, ,) (NP (NNP Rockland) (NNP County)) (, ,) (NP (NP (NNP New) (NNP York)) (PP (IN for) (NP (QP (JJR more) (IN than) (CD 30)) (NNS years))))) (PP (IN before) (NP (NP (PRP$ her) (NN retirement)) (, ,) (VP (VBD died) (NP (NNP April) (CD 16))) (, ,))) (PP (IN at) (NP (NP (DT the) (NN age)) (PP (IN of) (NP (CD 92))))))))) (, ,) (NP (PRP$ Her) (NN husband)) (, ,) (NP (DT the) (JJ late) (NNP Elias) (NNP J.) (NNP Drexler)) (, ,)) (VP (AUX was) (NP (NP (DT the) (JJ senior) (NN vice) (NN president)) (PP (IN in) (NP (NP (DT the) (NNP U.S.)) (PP (IN of) (NP (NNP FujFilm))))))) (. .)))
(S1 (S (NP (DT Those) (NNS salaries)) (VP (AUX were) (VP (VBN paid) (PP (IN despite) (NP (NP (NNP Israel) (POS 's)) (NN decision) (PRN (: --) (PP (VBG beginning) (PP (IN in) (NP (NP (NNP March) (CD 2006)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (NNP Hamas)) (VP (VBD took) (NP (NN office)))))))) (: --)) (S (VP (TO to) (VP (VB withhold) (PP (IN from) (NP (DT the) (NNP Palestinian) (NNP Authority))) (NP (NP (DT some) (ADJP (QP ($ $) (CD 50) (CD million))) (DT a) (NN month)) (SBAR (S (NP (PRP it)) (VP (VBZ collects) (PP (IN for) (NP (DT the) (NNPS Palestinians))) (PP (IN in) (NP (NNS duties) (CC and) (NNS taxes))) (, ,) (SBAR (IN after) (S (NP (PRP it)) (VP (VBZ deducts) (NP (NP (DT the) (NN cost)) (PP (IN of) (NP (NN electricity) (CC and) (NN water))) (SBAR (WHNP (WDT that)) (S (NP (PRP it)) (VP (VBZ supplies) (PP (TO to) (NP (DT the) (NNP West) (NNP Bank) (CC and) (NNP Gaza))))))))))))))))))))) (. .)))
(S1 (S (PP (IN At) (NP (NP (DT a) (NNP September) (JJ Congressional) (NN hearing)) (PP (IN into) (NP (NP (DT the) (NN failure)) (PP (IN of) (NP (DT a) (NNP BP) (NN feeder) (NN line))) (PP (IN in) (NP (DT the) (NNP Prudhoe) (NNP Bay) (NN area))))))) (, ,) (NP (DT both) (NNP Republican) (CC and) (NNP Democratic) (NNS lawmakers)) (VP (VBD held) (PRT (RP up)) (NP (NP (NNP Alyeska) (POS 's)) (NN maintenance) (NN program)) (PP (IN as) (NP (NP (DT an) (NN object) (NN lesson)) (PP (TO to) (NP (NNP BP))))) (, ,) (S (VP (VBG asking) (SBAR (WHADVP (WRB why)) (, ,) (S (SBAR (IN if) (S (NP (NNS pigs)) (VP (MD can) (VP (AUX be) (VP (VBN run) (PP (IN through) (NP (DT the) (JJ 48-inch) (NNP Alaska) (NN pipeline))) (NP (DT every) (CD two) (NNS weeks))))))) (, ,) (NP (NNP BP)) (VP (AUX had) (VP (VBN waited) (NP (NNS years)) (S (VP (TO to) (VP (VB perform) (NP (JJ similar) (NN maintenance)) (, ,) (S (VP (VP (VBG allowing) (S (NP (NN sludge) (CC and) (NN sediment)) (VP (TO to) (VP (VB build) (PRT (RP up)))))) (CC and) (VP (VBG hastening) (NP (NN corrosion))))))))))))))) (. .)))
(S1 (S (NP (DT The) (NN report)) (, ,) (S (VP (VBG citing) (NP (NP (DT a) (NN lawyer)) (PP (IN in) (NP (DT the) (NNP Sacramento) (NN office)))))) (, ,) (VP (VBD noted) (SBAR (IN that) (S (NP (NNP Ms.) (NNP MacDonald)) (VP (VBD lobbied) (PP (IN for) (NP (DT a) (NN decision) (S (VP (TO to) (VP (VB combine) (NP (NP (CD three) (JJ different) (NNS populations)) (PP (IN of) (NP (DT the) (NNP California) (NNP tiger) (NN salamander)))) (PP (IN into) (NP (CD one))) (, ,) (S (ADVP (RB thus)) (VP (VP (VBG excluding) (NP (PRP it)) (PP (IN from) (NP (DT the) (NNS endangered-species) (NN list)))) (, ,) (CC and) (VP (VBG making) (S (NP (DT the) (NN decision)) (ADJP (RB legally) (JJ vulnerable))))))))))))))) (. .)))
(S1 (S (S (VP (VP (VBN Born) (PP (IN in) (NP (NNP Calgary) (, ,) (NNP Canada)))) (CC and) (VP (VBN raised) (PP (IN in) (NP (NP (NNP Portland)) (, ,) (NP (NNP Oregon))))))) (, ,) (NP (NNP Jean)) (VP (VBD died) (ADVP (RB peacefully)) (PP (IN at) (NP (NN home))) (NP (NNP June) (CD 6) (, ,) (CD 2007))) (. .)))
(S1 (S (S (VP (TO To) (VP (VB make) (NP (NNS matters)) (ADVP (RBR worse))))) (, ,) (NP (NNP Iran)) (VP (AUX has) (VP (VBN taken) (NP (NNP British) (NNS sailors) (CC and) (NNS marines)) (ADVP (JJ captive)) (, ,) (S (VP (VBG making) (NP (DT the) (NNP Middle) (NNP East)) (ADVP (RB even) (RBR more) (JJ tense)))))) (. .)))
(S1 (S (NP (PRP It)) (VP (AUX is) (NP (NP (NP (NNP Wartburg) (NNP College)) (PP (IN in) (NP (NNP Waverly)))) (, ,) (NP (NNP Iowa)) (, ,) (RB not) (NP (NP (DT the) (NNP University)) (PP (IN of) (NP (NNP Wisconsin-River) (NNP Falls)))))) (. .)))
(S1 (S (-LRB- -LRB-) (NP (RB Just) (CD one)) (VP (AUX is) (PP (IN within) (NP (NP (DT the) (NNP New) (NNP York) (NNP City) (NNS limits)) (: :) (NP (NP (NP (NNP Goethals) (NNP Garden) (NNPS Homes) (NNP Community)) (PP (IN in) (NP (NNP Staten) (NNP Island)))) (, ,) (NP (NP (DT a) (NN clutch)) (PP (IN of) (NP (NP (CD 130) (NNS trailers)) (PP (IN between) (NP (DT a) (NNP marsh)))))) (CC and) (NP (NP (DT the) (NNP Staten) (NNP Island) (NNP Expressway)) (PP (IN near) (NP (DT the) (NNP Goethals) (NNP Bridge)))))))) (. .) (-RRB- -RRB-)))
(S1 (S (S (NP (NN Papa) (NNP Abe)) (VP (AUX is) (VP (ADVP (RB also)) (VBN survived) (PP (IN by) (NP (NP (PRP$ his) (JJ extended) (NN family) (NNP Adam) (, ,) (NNP Susan) (, ,) (NNP Andrew) (, ,) (NNP Max) (CC and) (NNP Jordan) (NNP Sahn)) (PP (IN of) (NP (NNP New) (NNP City)))))))) (, ,) (S (NP (NNP NY) (, ,) (NNP Jonathan) (, ,) (NNP Kathy) (, ,) (NNP Samantha) (, ,) (CC and) (NP (NP (NNP Erin) (NNP Sahn)) (PP (IN of) (NP (NP (NNP Boca) (NNP Raton)) (, ,) (NP (NNP Florida)) (, ,) (CC and) (NP (NP (NNP Eric) (, ,) (NNP Amy) (, ,) (NNP Zach) (CC and) (NNP Lucas)) (PP (IN of) (NP (NNP Redwood) (NNP City))))))) (, ,)) (VP (MD CA))) (. .)))
(S1 (S (PP (IN In) (NP (NNP New) (NNP York))) (, ,) (NP (NNP Mr.) (NNP Paulison)) (VP (VBD began) (NP (NP (PRP$ his) (NN tour)) (PP (IN of) (NP (DT the) (JJ flood-ravaged) (NNS areas)))) (PP (IN on) (NP (NNP Monday))) (PP (IN in) (NP (NNP Mamaroneck))) (, ,) (PP (IN in) (NP (NP (NNP Westchester) (NNP County)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (PRP he)) (VP (VBD met) (PP (IN with) (NP (NP (NNP Senator) (NNP Hillary) (NNP Rodham) (NNP Clinton)) (, ,) (NP (NNS homeowners)) (CC and) (NP (NP (DT the) (NN minister)) (PP (IN of) (NP (NP (DT the) (NNP First) (NNP Baptist) (NNP Church)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX was) (VP (ADVP (RB heavily)) (VBN damaged) (PP (IN by) (NP (NNS floodwaters)))))))))))))))))) (. .)))
(S1 (S (PP (IN Except) (PP (IN for) (NP (NP (DT the) (ADJP (RB recently) (VBN developed)) (NN technology) (NNS hubs)) (PP (IN of) (NP (NNP Bangalore) (CC and) (NNP Hyderabad)))))) (, ,) (NP (NNP India)) (VP (AUX has) (RB not) (VP (VBD added) (NP (JJ cosmopolitan) (, ,) (ADJP (RB globally) (VBN connected)) (NNS metropolises)) (PP (TO to) (NP (NP (PRP$ its) (JJ old) (NNS ones)) (: :) (NP (NNP Calcutta) (, ,) (NNP Delhi) (, ,) (NNP Madras) (CC and) (NNP Mumbai)))))) (. .)))
(S1 (S (NP (PRP He)) (VP (VBD went) (PP (TO to) (NP (NP (NNP Westfield) (NNP High) (NNP School)) (, ,) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (JJS largest) (NNS schools)) (PP (IN in) (NP (NNP Fairfax) (NNP County))))))))) (. .)))
(S1 (S (NP (NNP Geneviève) (NNP McMillan)) (VP (AUX was) (VP (VP (VBN born) (PP (IN in) (NP (NNP France)))) (CC and) (VP (VBN educated) (PP (IN in) (NP (NP (NNP Paris)) (, ,) (SBAR (SBAR (WHADVP (WRB where)) (S (NP (PRP she)) (VP (VBD developed) (NP (NP (DT an) (NN interest)) (PP (IN in) (NP (JJ African) (NN culture))))))) (CC and) (SBAR (WHADVP (WRB where)) (S (NP (PRP she)) (VP (AUX did) (NP (DT a) (JJ little) (NN buying))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (CD 2004))) (, ,) (NP (DT the) (JJ last) (JJ major) (NN flood)) (, ,) (NP (DT the) (NN death) (NN toll)) (VP (VBD stood) (PP (IN at) (NP (CD 351))) (PP (IN in) (NP (NP (JJ Bihar) (NN state)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX is) (ADVP (RB home)) (PP (TO to) (NP (NP (DT this) (NN village)) (CC and) (NP (NP (JJ many) (NNS others)) (VP (VBG sitting) (PP (IN on) (NP (NP (DT some)) (PP (IN of) (NP (NP (DT the) (ADJP (RBS most) (JJ vulnerable)) (NNS floodplains)) (PP (IN in) (NP (NNP India))))))))))))))))) (. .)))
(S1 (S (NP (DT A) (NN memorial) (NN service)) (VP (MD will) (VP (AUX be) (VP (VBN held) (PP (IN in) (NP (NP (NNP Annapolis)) (, ,) (NP (NNP Maryland)) (, ,))) (PP (IN on) (NP (NP (DT a) (NN date)) (SBAR (S (VP (TO to) (VP (AUX be) (VP (VBN announced))))))))))) (. .)))
(S1 (S (S (NP (NNP Cuyahoga) (NNP County)) (, ,) (PP (VBG including) (NP (NP (NNP Cleveland)) (CC and) (NP (CD 58) (NNS suburbs)))) (, ,) (VP (AUX has) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (NN country) (POS 's)) (JJS highest) (NN foreclosure) (NNS rates)))))) (, ,) (CC and) (S (NP (NNS officials)) (VP (VBP say) (SBAR (S (NP (DT the) (JJS worst)) (VP (AUX is) (ADVP (RB yet)) (S (VP (TO to) (VP (VB come))))))))) (. .)))
(S1 (SINV (PP (IN Among) (NP (NP (DT the) (CD 52)) (SBAR (WHNP (WP who)) (S (VP (VBD attended)))))) (AUX were) (NP (NP (DT the) (NNS mayors)) (PP (IN of) (NP (NNP Newark) (, ,) (NNP Buffalo) (, ,) (NNP Los) (NNP Angeles) (, ,) (NNP Chicago) (, ,) (NNP Philadelphia) (, ,) (NNP Baltimore) (, ,) (NNP Washington) (, ,) (NNP Milwaukee) (, ,) (NNP Seattle) (, ,) (NNP Denver) (, ,) (NNP Atlanta) (, ,) (NNP Miami) (, ,) (NNP Minneapolis) (CC and) (NNP St.) (NNP Louis)))) (. .) ('' '')))
(S1 (S (S (SBAR (WHADVP (WRB When)) (S (NP (NNP Mr.) (NN van) (NNP Agtmael)) (ADVP (RB first)) (VP (VBD visited) (NP (NNP South) (NNP Korea)) (PP (IN for) (NP (NNP Bankers))) (PP (IN in) (NP (CD 1971)))))) (, ,) ('' '') (NP (NNP Seoul)) (VP (VBD looked) (PP (IN like) (NP (NP (DT a) (NN city)) (PP (IN in) (NP (DT the) (NNP Soviet) (NNP Union))) (, ,) (SBAR (WHNP (WDT which)) (S (NP (PRP I)) (VP (AUX had) (ADVP (RB just)) (VP (VBN crossed) (PP (IN on) (NP (DT the) (NNP Trans-Siberian) (NN Railroad))))))))))) (, ,) ('' '') (NP (PRP he)) (VP (VBZ writes)) (. .) ('' '')))
(S1 (S (PP (IN Since) (NP (CD 2005))) (, ,) (NP (NP (NNP New) (NNP York) (NNP City) (POS 's)) (NN population)) (ADVP (RB barely)) (VP (VBD recorded) (NP (NP (DT any) (NN gain)) (: --) (NP (NP (QP (DT a) (RB statistically) (JJ insignificant) (CD 587)) (NNS people)) (, ,) (PP (IN with) (NP (NP (NP (DT a) (JJ steady) (NN influx)) (PP (IN of) (NP (NNS immigrants)))) (CC and) (NP (NP (NN growth)) (PP (IN in) (NP (NP (NNP Manhattan)) (CC and) (NP (NNP Staten) (NNP Island)))))))))) (. .)))
(S1 (S (NP (NP (DT A) (NN graduate)) (PP (IN of) (NP (NP (DT both) (NNP Virginia) (POS 's)) (NN undergraduate) (NN college) (CC and) (NN law) (NN school)))) (, ,) (NP (NNP Mr.) (NNP Middleditch)) (VP (VP (AUX has) (VP (VBN practiced) (NP (NN law)) (PP (IN for) (NP (NP (CD 50) (NNS years)) (PP (IN in) (NP (NNP Charlottesville))))))) (CC and) (VP (AUX has) (VP (AUX been) (ADJP (JJ active)) (PP (IN with) (NP (DT the) (NN university))) (PP (IN as) (NP (NP (DT a) (NN lawyer)) (, ,) (NP (JJ adjunct) (NN professor)) (CC and) (NP (NN trustee))))))) (. .)))
(S1 (S (NP (NP (NNS Northwoods)) (PP (IN of) (NP (NNP Wisconsin)))) (NP (NP (DT The) (NN area)) (PP (IN along) (NP (NP (NNP Wisconsin) (POS 's)) (JJ northern) (NN border)))) (VP (AUX is) (VP (VBN called) (S (NP (NP (DT the) (NNP Northwoods) (NN region)) (, ,) (VP (VBN known) (PP (IN for) (NP (NP (NP (PRP$ its) (NN abundance)) (PP (IN of) (NP (NNS lakes)))) (CC and) (NP (NP (ADJP (RBR more) (JJ affordable)) (NN property)) (, ,) (PP (ADVP (IN at) (JJS least)) (VBN compared) (PP (IN with) (NP (NP (NNS places)) (PP (IN like) (NP (NP (NNP Lake) (NNP Geneva)) (CC or) (NP (NNP Door) (NNP County))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Ms.) (NNS Crews)) (, ,) (NP (NP (DT a) (NN resident)) (PP (IN of) (NP (NNP Woodbridge)))) (, ,)) (VP (AUX has) (ADVP (RB previously)) (VP (VBN worked) (PP (IN in) (NP (NN radio) (CC and) (NN television))) (PP (IN in) (NP (NNP Virginia) (, ,) (NNP Connecticut) (, ,) (NNP Massachusetts) (, ,) (NNP Florida) (, ,) (NNP Pennsylvania) (CC and) (NNP West) (NNP Virginia))))) (. .)))
(S1 (FRAG (ADVP (RB Now)) (NP (NP (DT this) (JJ same) (NN penchant)) (PP (IN for) (S (VP (VBG working) (PP (IN on) (NP (DT a) (JJ monumental) (NN scale) (S (VP (AUX has) (VP (VBN made) (S (NP (NNP Mr.) (NNP Kiefer)) (NP (DT the) (JJ ideal) (NN artist) (S (VP (TO to) (VP (VB inaugurate) (NP (NP (DT an) (JJ annual) (NN solo) (NN show)) (PRN (: --) (VP (VBD called) (, ,) (ADVP (RB appropriately)) (, ,) (NP (NNP Monumenta))) (: --)) (SBAR (WHNP (WDT that)) (S (VP (VBD opened) (PP (IN on) (NP (NNP Wednesday))) (PP (IN in) (NP (NP (DT the) (JJ cavernous) (NN space)) (PP (IN of) (NP (NP (DT the) (NNP Grand) (NNPS Palais)) (PP (IN in) (NP (NNP Paris))))))))))))))))))))))))) (. .)))
(S1 (S (NP (DT These) (CD two) (NNP Bay) (NNP Area) (NNS restaurants)) (VP (AUX were) (ADVP (RB pretty) (RB much) (RB alone)) (PP (IN in) (S (VP (VBG kicking) (NP (DT the) (NN bottle) (NN habit)) (PP (IN until) (NP (NP (NNP Alice) (NNP Waters)) (, ,) (NP (NP (DT the) (NN godmother)) (PP (IN of) (NP (NP (NNS things)) (ADJP (JJ organic) (, ,) (JJ sustainable) (CC and) (JJ local)) (, ,) (VP (VP (VBN banned) (NP (JJ bottled) (RB still) (NN water)) (PP (IN at) (NP (NNP Chez) (NNP Panisse))) (PP (IN in) (NP (NNP Berkeley) (JJ last) (NN year)))) (CC and) (VP (VBD started) (VP (VBG serving) (NP (RB only) (JJ house-made) (JJ sparkling) (NN water)) (NP (DT this) (NN year)))))))))))))) (. .)))
(S1 (S (PP (IN Since) (NP (CD 1999))) (, ,) (NP (PRP I)) (, ,) (ADVP (IN along) (PP (IN with) (NP (NP (NP (DT a) (NN team)) (PP (IN of) (NP (NNS educators)))) (CC and) (NP (NN school) (NN policy) (NNS experts))))) (, ,) (VP (AUX have) (VP (AUX been) (VP (VBG studying) (NP (DT the) (NN adoption)) (PP (IN of) (NP (NN equity) (, ,) (NN empowerment) (CC and) (NN choice))) (PP (IN in) (NP (NP (NN school) (NNS districts)) (PP (IN in) (NP (NP (NNP Boston) (, ,) (NNP California) (PRN (-LRB- -LRB-) (ADVP (RB namely)) (NP (NNP Oakland) (CC and) (NNP San) (NNP Francisco)) (-RRB- -RRB-)) (, ,) (NNP Chicago) (, ,) (NNP Houston) (, ,) (NNP New) (NNP York) (NNP City) (, ,) (NNP St.) (NNP Paul) (, ,) (NNP Seattle) (CC and) (NNP Edmonton)) (, ,) (NP (NNP Alberta))))))))) (. .)))
(S1 (S (PP (IN In) (NP (DT the) (CD 1950s))) (NP (PRP he)) (VP (VBD served) (PP (IN as) (NP (NP (NP (JJ assistant) (JJ technical) (NN director)) (PP (IN at) (NP (NP (DT the) (JJ old) (NNP Globe) (NNP Theater)) (PP (IN in) (NP (NNP San) (NNP Diego)))))) (CC and) (NP (NP (DT the) (NNP Berkeley) (NNP Shakespeare) (NNP Festival)) (PRN (-LRB- -LRB-) (SBAR (WHNP (WDT which)) (S (ADVP (RB later)) (VP (VBD became) (NP (DT the) (NNP California) (NNP Shakespeare) (NNP Festival))))) (-RRB- -RRB-)))))) (. .)))
(S1 (S (NP (DT The) (JJ SunCal) (NN site)) (VP (AUX is) (PP (IN about) (NP (NP (DT a) (NN mile)) (PP (IN from) (NP (NP (DT the) (NNP Magic) (NNP Kingdom)) (CC and) (NP (NP (NP (PDT half) (DT a) (NN mile)) (PP (IN from) (NP (NP (DT the) (NN company) (POS 's)) (JJ second) (NNP Anaheim) (NN theme) (NN park)))) (, ,) (NP (NP (NNP Disney) (POS 's)) (NNP California) (NN Adventure)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD opened) (PP (IN in) (NP (CD 2001)))))))))))) (. .)))
(S1 (FRAG (NP (NP (NNP Sunday)) (PP (IN at) (NP (NP (CD 1) (NN p.m.)) (, ,) ('' '') (VP (VBN Made) (PP (IN in) (NP (NNP New) (NNP York))))))) (: :) (NP (NP (NP (DT The) (NNP Archaeology)) (PP (IN of) (NP (NP (NNP New) (NNP York) (NNP City) (POS 's)) (NNP Industrial) (NNP Past)))) (, ,) ('' '') (NP (NP (DT a) (NN conference)) (VP (VBN sponsored) (PP (IN by) (NP (NP (DT the) (NNP Professional) (NNPS Archaeologists)) (PP (IN of) (NP (NNP New) (NNP York) (NNP City))) (SBAR (WHNP (WDT that)) (S (VP (VBZ covers) (NP (NP (DT the) (NN history)) (PP (IN of) (NP (NP (DT a) (JJ Dutch) (NN windmill)) (PP (IN on) (NP (NP (NNP Governors) (NNP Island)) (, ,) (NP (NP (NP (DT an) (JJ 18th-century) (NN tannery)) (PP (IN in) (NP (NNP Lower) (NNP Manhattan)))) (CC and) (NP (NP (DT a) (NN ship) (NN repair) (NN facility)) (PP (IN in) (NP (NNP Brooklyn)))))))))))))))))) (. .)))
(S1 (NP (NP (DT A) (NN search)) (PP (IN by) (NP (DT the) (NN city))) (PP (IN of) (NP (PRP$ its) (NNS files))) (VP (VBG concerning) (NP (NP (NNP Cesar) (NNP A.) (NNP Borja)) (, ,) (NP (NP (DT the) (NNP New) (NNP York) (NNP City) (NN police) (NN officer)) (SBAR (WHNP (WHNP (WP$ whose) (NN death)) (PP (IN from) (NP (NN lung) (NN disease)))) (S (VP (AUX was) (VP (VBN held) (PRT (RP up)) (PP (IN as) (NP (NP (DT an) (NN example)) (PP (IN of) (NP (NP (DT the) (JJ medical) (NNS problems)) (VP (VBG affecting) (NP (NP (NNS thousands)) (PP (IN of) (NP (NN ground) (NN zero) (NNS workers) (CC and) (NNS volunteers))) (, ,) (VP (VBD found) (NP (DT no) (NN record) (SBAR (IN that) (S (NP (PRP he)) (VP (VBD worked) (PP (IN in) (NP (NNP Lower) (NNP Manhattan))) (PP (IN until) (NP (NP (NNP Dec.) (CD 24) (, ,) (CD 2001)) (, ,) (NP (QP (JJR more) (IN than) (CD three)) (NNS months)))) (PP (IN after) (NP (DT the) (CD 9\/11) (NN attack))))))))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (DT a) (NN series)) (PP (IN of) (NP (NP (NNS visits)) (PP (TO to) (NP (NNP China) (, ,) (NNP India) (, ,) (NNP Singapore) (CC and) (NNP Hong) (NNP Kong))))) (PP (IN since) (NP (JJ early) (CD 2006))))) (, ,) (NP (NNP Mr.) (NNS Summers)) (VP (VP (AUX has) (VP (VBD reiterated) (NP (JJ several) (NNS themes)) (SBAR (WHNP (WDT that)) (S (VP (AUX have) (NP (JJ special) (NN resonance)) (PP (IN in) (NP (NNP Asia)))))))) (, ,) (CC but) (VP (AUX have) (ADVP (RB yet)) (S (VP (TO to) (VP (AUX be) (VP (ADVP (RB widely)) (VBN accepted) (PP (IN in) (NP (DT the) (NNP United) (NNPS States))))))))) (. .)))
(S1 (S (ADVP (RB Also)) (PP (IN on) (NP (NNP Friday))) (, ,) (PP (IN in) (NP (NP (NNP Ra'anana)) (, ,) (NP (NNP Israel)))) (, ,) (NP (NN family) (NNS members)) (VP (VBD attended) (NP (NP (DT the) (NN burial)) (PP (IN of) (NP (NP (NNP Liviu) (NNP Librescu)) (, ,) (NP (DT a) (JJ 76-year-old) (NX (NX (NN engineering) (NN lecturer)) (CC and) (NX (NNP Holocaust) (NN survivor)))) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN shot) (SBAR (IN while) (S (VP (VBG trying) (S (VP (TO to) (VP (VB protect) (NP (NP (NNS students)) (PP (IN in) (NP (DT a) (NN classroom)))))))))))))))))) (. .) ('' '')))
(S1 (S (S (ADVP (RB However)) (, ,) (NP (NNP Israel)) (VP (AUX has) (VP (VBN maintained) (NP (NP (JJ tight) (NNS restrictions)) (PP (IN on) (NP (DT both) (NNS places))))))) (, ,) (CC and) (S (NP (NP (DT the) (JJ last) (NNP West) (NNP Bank) (NN suicide) (NN bomber)) (PP (TO to) (NP (NN strike))) (PP (IN in) (NP (NNP Israel)))) (VP (AUX was) (PP (IN in) (NP (NNP April) (CD 2006))))) (. .)))
(S1 (S (SBAR (RB Just) (IN as) (S (NP (DT the) (NNP JAMA) (NN article)) (VP (AUX was) (VP (AUXG being) (VP (VBN published)))))) (, ,) (NP (CD three) (NN dozen) (NNS children)) (VP (VBD began) (S (VP (VBG dying) (PP (IN of) (NP (NP (JJ acute) (JJ renal) (NN failure)) (PP (IN at) (NP (NP (CD two) (NNS hospitals)) (PP (IN in) (NP (NP (NNP Delhi)) (, ,) (NP (NNP India))))))))))) (. .)))
(S1 (S (NP (PRP He)) (VP (VP (VBD traveled) (PP (TO to) (NP (NNP Jerusalem))) (PP (IN in) (NP (CD 2003))) (S (VP (TO to) (VP (VB dedicate) (NP (NP (DT a) (NN health) (NN center)) (PP (IN at) (NP (NNP Hadassah) (NNP University) (NNP Medical) (NNP Center)))) (PP (TO to) (NP (PRP$ his) (NN mother))))))) (, ,) (CC and) (RB then) (VP (VBD began) (S (VP (VBG thinking) (PP (IN about) (SBAR (WHNP (WP what)) (S (NP (PRP he)) (VP (MD could) (VP (AUX do) (S (VP (TO to) (VP (VB honor) (NP (NP (PRP$ his) (NN father)) (PP (IN in) (NP (NNP Israel)))) (ADVP (RB as) (RB well)))))))))))))) (. .)))
(S1 (SINV (S (SBAR (IN If) (S (NP (DT this)) (VP (AUX were) (NP (QP (DT all) (CD one)) (NN community))))) (, ,) (NP (PRP they)) (VP (MD would) (VP (AUX do) (NP (PRP it)) (PP (IN by) (NP (DT an) (NN assessment)))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Michael) (NNP J.) (NNP Graessle)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VP (AUX was) (NP (NP (NNP Port) (NNP Chester) (POS 's)) (NN village) (NN manager)) (PP (IN from) (NP (CD 1993))) (PP (IN through) (NP (CD 1997)))) (CC and) (VP (AUX has) (VP (VBD worked) (PP (IN in) (NP (JJ municipal) (NN government))) (PP (IN in) (NP (NNP Westchester) (NNP County))) (PP (IN for) (NP (QP (JJR more) (IN than) (CD 36)) (NNS years))))))))) (. .)))
(S1 (S (NP (NP (NNP Gloria) (NNP A.) (NNP Haskins)) (, ,) (NP (NP (DT a) (NN state) (NN representative)) (PP (IN from) (NP (NNP South) (NNP Carolina))) (SBAR (WHNP (WP who)) (S (VP (AUX is) (VP (VBG supporting) (NP (NNP Senator) (NNP John) (NNP McCain)) (PP (IN for) (NP (DT the) (NNP Republican) (NN nomination)))))))) (, ,)) (VP (VBD said) (NP (NP (NNS discussions)) (PP (IN with) (NP (PRP$ her) (NNS constituents)))) (PP (IN in) (NP (NP (NNP Greenville)) (, ,) (NP (DT an) (JJ evangelical) (NN stronghold)))) (, ,) (VP (VBN convinced) (NP (PRP her)) (SBAR (IN that) (S (NP (NP (DT a) (NNP Mormon)) (PP (IN like) (NP (NNP Mr.) (NNP Romney)))) (VP (MD could) (RB not) (VP (VB win) (NP (DT a) (NNP Republican) (NN primary)) (PP (IN in) (NP (PRP$ her) (NN state))))))))) (. .)))
(S1 (S (NP (NP (JJ Many) (NNS thousands)) (PP (IN of) (NP (NNS juleps)))) (VP (MD will) (VP (AUX be) (VP (VBN poured) (PP (IN at) (NP (NNP Churchill) (NNS Downs))) (PP (IN during) (NP (DT the) (NNP Kentucky) (NNP Derby) (DT this) (NN weekend)))))) (. .)))
(S1 (S (NP (NNP Mack) (NNP Louden)) (VP (VBZ worries) (SBAR (IN that) (S (NP (PRP$ his) (JJ 30,000-acre) (NN ranch)) (VP (VBZ sits) (PP (IN in) (NP (NP (DT the) (JJ cross) (NNS hairs)) (PP (IN of) (NP (NP (DT the) (NNP Army) (POS 's)) (NNS plans) (S (VP (TO to) (VP (VB expand) (NP (PRP$ its) (NNP Piñon) (NNP Canyon) (NN Maneuver) (NN Site)) (SBAR (IN at) (S (NP (NP (NNP Fort) (NNP Carson)) (, ,) (CC and) (NP (PRP he)) (, ,) (PP (IN along) (PP (IN with) (NP (JJ other) (NNP Colorado) (NNS ranchers)))) (, ,)) (VP (AUX are) (ADJP (RB increasingly) (JJ upset) (PP (IN about) (NP (DT the) (NN idea)))))))))))))))))) (. .) ('' '')))
(S1 (FRAG (X (NNP Boston) (WP WHAT)) (: :) (NP (DT A) (JJ two-bedroom) (NN condo)) (WHADVP (WRB HOW)) (NP (NP (JJ MUCH)) (: :) (NP (NP ($ $) (CD 599,000)) (PP (IN PER) (NP (JJ SQUARE) (NN FOOT)))) (: :) (NP (NP ($ $) (CD 836)) (VP (VBN Located) (PP (IN in) (NP (NP (DT the) (NNP Back) (NNP Bay) (NN area)) (PP (IN of) (NP (DT the) (NN city))))))) (, ,) (SBAR (S (NP (DT this) (JJ 716-square-foot) (NN condo)) (VP (AUX has) (NP (NP (NNS views)) (PP (IN from) (NP (NP (DT the) (NN apartment)) (CC and) (NP (NP (PRP$ its) (JJ private) (NN roof) (NN deck)) (PP (IN of) (NP (DT the) (NNP Charles) (NNP River))) (, ,) (ADVP (NP (CD one) (NN block)) (RB away)))))))))) (. .)))
(S1 (SINV (S (NP (NNP Iran)) (VP (AUX is) (NP (NP (DT the) (JJ only) (NNP Muslim) (NN country)) (PP (IN in) (NP (DT the) (NNP Middle) (NNP East))) (SBAR (WHADVP (WRB where)) (S (NP (NN photography)) (VP (VBD developed) (PP (IN in) (NP (DT a) (JJ natural) (NN environment))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Mohammad) (NNP Reza) (NNP Tahmasebpour)) (, ,) (NP (NP (DT a) (NN photographer) (CC and) (NN researcher)) (PP (IN on) (NP (DT the) (NN topic))))) (. .) ('' '')))
(S1 (S (PP (IN For) (NP (NP (NNS families)) (PP (IN with) (NP (NP (NNS children)) (ADJP (CD 12) (CC and) (JJR older)))))) (, ,) (NP (NNP Echo) (NNP River) (NNS Trips)) (VP (AUX is) (VP (VBG launching) (NP (NP (DT a) (JJ new) (JJ six-day) (NN duckie) (NN expedition)) (PRN (-LRB- -LRB-) (VP (VBG using) (NP (JJ inflatable) (NNS kayaks))) (-RRB- -RRB-))) (PP (IN down) (NP (NP (DT the) (NNP Middle) (NNP Fork)) (PP (IN of) (NP (NP (NP (DT the) (NN Salmon)) (NNP River)) (PP (IN in) (NP (NP (NNP Idaho)) (, ,) (CC and) (NP (NP (DT a) (JJ four-day) (NN trip)) (PP (IN down) (NP (DT the) (NNP Rogue) (NNP River))) (PP (IN in) (NP (NNP Oregon) (CD -LRB-800-RRB- 652-3246) (NN www.echotrips.com)))))))))))) (. .)))
(S1 (S (NP (PRP He)) (VP (VP (VBD settled) (PP (IN in) (NP (NNP Spain)))) (, ,) (VP (VBD criticized) (NP (DT the) (NNP Castro) (NN government)) (ADVP (ADVP (RB as) (RB tirelessly)) (SBAR (IN as) (S (NP (PRP he)) (VP (AUX had) (ADVP (RB once)) (VP (VBD hounded) (NP (PRP$ its) (NNS enemies)))))))) (, ,) (CC and) (VP (VBD founded) (NP (NP (DT the) (NN exile) (NN journal) (NNP Encuentro) (: --)) (SBAR (WHNP (WDT which)) (S (VP (VBZ remains) (ADVP (RB widely)) (VP (VBN read) (NP (QP (RB nearly) (CD five)) (NNS years)) (PP (IN after) (NP (PRP$ his) (JJ sudden) (NN death))) (, ,) (PP (IN at) (NP (CD 60))) (, ,) (PP (IN in) (NP (NNP Madrid)))))))))) (. .)))
(S1 (S (NP (PRP I)) (VP (AUX had) (NP (NP (DT a) (NN job)) (VP (VBN lined) (PRT (RP up)) (PP (IN as) (NP (NP (DT a) (NN river) (NN guide)) (PP (IN on) (NP (NP (DT the) (NN Salmon) (NNP River)) (PP (IN in) (NP (NNP Idaho))) (PP (IN for) (NP (DT the) (NN off-season)))))))))) (. .)))
(S1 (S (NP (NP (NNP Georgia) (NNP Powers)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (NP (NP (NP (NNP Kentucky) (POS 's)) (JJ first) (JJ black) (NN state) (NN senator)) (CC and) (NP (NP (DT a) (NN champion)) (PP (IN of) (NP (NP (JJ open-housing) (NNS laws)) (SBAR (WHNP (WDT that)) (S (VP (VBD enacted) (ADVP (RB here)) (PP (IN in) (NP (DT the) (NNS 1960s))))))))))))) (, ,)) (VP (VBD said) (SBAR (S (NP (NNP Louisville)) (VP (AUX was) (ADVP (RB finally)) (ADJP (JJ ready) (S (VP (TO to) (VP (VB welcome) (NP (NNP Muhammad) (NNP Ali) (NN home)))))))))) (. .) ('' '')))
(S1 (S (S (NP (EX There)) (VP (AUX was) (NP (JJ general) (NN agreement) (SBAR (IN that) (S (NP (PRP it)) (VP (MD would) (VP (AUX be) (PP (TO to) (NP (NP (NNP Israel) (POS 's)) (NN advantage))) (SBAR (IN for) (S (NP (NP (NNP King) (NNP Hussein)) (PP (IN of) (NP (NNP Jordan))) (, ,) (SBAR (WHNP (WP$ whose) (NN country)) (S (VP (VBD controlled) (NP (DT the) (NNP West) (NNP Bank))))) (, ,)) (VP (TO to) (VP (VB remain) (PP (IN in) (NP (NN power)))))))))))))) (: :) (S (S (NP (PRP he)) (VP (AUX had) (, ,) (PP (IN in) (NP (NN effect))) (, ,) (VP (VBN accepted) (NP (NP (NNP Israel) (POS 's)) (NN existence))))) (, ,) (CC so) (S (NP (NNP Israel)) (ADVP (RB naturally)) (VP (AUX had) (NP (NP (DT an) (NN interest)) (PP (IN in) (S (VP (VBG strengthening) (NP (PRP$ his) (NN regime))))))))) (. .)))
(S1 (S (NP (NP (NNS DETAILS)) (PP (IN In) (NP (NP (DT the) (NNP Green) (NNPS Mountains)) (PP (IN of) (NP (JJ north-central) (NNP Vermont)))))) (, ,) (NP (DT this) (NN project)) (VP (AUX is) (NP (NP (DT the) (JJ first) (JJ slopeside) (NN development)) (PP (IN in) (NP (NP (NNP Stowe)) (, ,) (NP (NP (DT the) (NN center)) (PP (IN of) (NP (NP (DT a) (NN resort) (NN area)) (ADJP (RB long) (JJ popular) (PP (IN with) (NP (NNS weekenders)))))))))) (: --) (PP (ADVP (RB especially)) (IN in) (NP (NN winter)))) (. .)))
(S1 (S (NP (NP (DT The) (NN museum)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD opened) (PP (IN in) (NP (NP (DT the) (NNP North) (NNP Beach) (NN neighborhood)) (PP (IN of) (NP (NNP San) (NNP Francisco))))) (NP (JJ last) (NN fall))))) (, ,)) (VP (AUX has) (VP (VBN made) (NP (NNS plans) (S (VP (TO to) (VP (VB sponsor) (NP (NP (DT a) (NN spring) (NN tour)) (PP (IN of) (NP (NP (NP (NNP Mr.) (NNP Morgan) (POS 's)) (NN space) (NN scrap)) (PP (IN in) (NP (DT a) (JJ vintage) (NNP Airstream) (NN trailer)))))) (, ,) (S (VP (VBG creating) (NP (NP (DT a) (NN kind)) (PP (IN of) (NP (NP (JJ Electric) (JJ Kool-Aid) (NN Acid) (NN Test)) (PP (IN for) (NP (DT the) (NNP astronomy) (NN set)))))))))))))) (. .)))
(S1 (S (PP (IN At) (NP (NP (DT a) (NN news) (NN conference)) (NP (DT this) (NN week)) (PP (IN in) (NP (NP (NNP Stuttgart)) (, ,) (NP (NNP Germany)))))) (, ,) (NP (NP (DT the) (ADJP (RB usually) (JJ secretive)) (JJ private) (NN equity) (NN firm)) (NP (NNP Cerberus) (NNP Capital) (NNP Management))) (VP (AUX was) (PP (IN in) (NP (DT the) (NN spotlight))) (, ,) (S (VP (VBG announcing) (NP (DT an) (NN agreement) (S (VP (TO to) (VP (VB take) (NP (NP (NN control)) (PP (IN of) (NP (NNP Chrysler))))))))))) (. .)))
(S1 (S (CC But) (NP (DT the) (NNS Shins)) (VP (AUX were) (RB n't) (ADVP (RB actually)) (VP (VBG playing) (PP (IN at) (NP (DT the) (NNP Garden))) (PP (IN on) (NP (NNP Wednesday))) (SBAR (IN that) (S (NP (NN distinction)) (VP (VBD went) (PP (TO to) (NP (NP (NNP Maná)) (, ,) (NP (NP (DT a) (NNP Latin) (NN rock) (NN band)) (PP (IN from) (NP (NP (NNP Guadalajara)) (, ,) (NP (NNP Mexico)))))))))))) (. .)))
(S1 (S (SBAR (WHADVP (WRB When)) (S (VP (VBN seen) (PP (IN at) (NP (NNP Legends) (NNP Field))) (PP (IN in) (NP (NP (NNP Tampa)) (, ,) (NP (NNP Fla.)) (, ,))) (PP (IN for) (NP (NP (NP (NNP Roger) (NNP Clemens) (POS 's)) (JJ first) (JJ minor) (NN league) (NN start)) (PP (IN since) (S (VP (VBG re-signing) (PP (IN with) (NP (DT the) (NNPS Yankees))))))))))) (, ,) (NP (NNP Steinbrenner)) (VP (VP (VBD looked) (NP (NNS ashen))) (CC and) (VP (VBD shuffled) (NP (NP (PRP$ his) (NNS feet)) (, ,) (ADVP (RB perhaps)) (NP (NP (DT the) (NN result)) (PP (IN of) (NP (DT a) (JJ bad) (NN knee))))))) (. .)))
(S1 (S (S (PP (IN On) (NP (NNP Jan.) (CD 24))) (, ,) (NP (NP (DT the) (NNP Bar) (NNP Association)) (PP (IN of) (NP (NNP San) (NNP Francisco)))) (VP (VBD requested) (SBAR (IN that) (S (NP (NP (DT the) (NNP State) (NNP Bar)) (PP (IN of) (NP (NNP California)))) (VP (VB investigate) (NP (NNP Mr.) (NNP Stimson)) (PP (IN for) (NP (NP (JJ possible) (NNS violations)) (PP (IN of) (NP (NNP California) (NNS ethics) (NNS rules)))))))))) (, ,) (NP (NP (DT the) (NNP San) (NNP Francisco) (NN group) (POS 's)) (NNP Web) (NN site)) (VP (VBZ says)) (. .)))
(S1 (S (S (SBAR (IN If) (S (NP (EX there)) (VP (VBZ seems) (S (VP (TO to) (VP (AUX be) (NP (DT no) (JJ published) (NN playbook)))))))) (, ,) (NP (EX there)) (VP (AUX are) (NP (JJ informal) (NNS rules)))) (, ,) (CC and) (S (NP (DT these)) (VP (AUX were) (VP (VBN gathered) (PP (IN by) (S (VP (VBG interviewing) (NP (NP (NP (NNS militants)) (CC and) (NP (PRP$ their) (NNS leaders))) (, ,) (NP (NP (JJ Islamic) (NNS clerics) (CC and) (NNS scholars)) (PP (IN in) (NP (NNP Jordan) (, ,) (NNP Syria) (, ,) (NNP Lebanon) (CC and) (NNP England)))) (, ,)) (PP (IN along) (PP (IN with) (NP (NP (NN government) (NN intelligence) (NNS officials)) (PP (IN in) (NP (NP (DT the) (NNP Middle) (NNP East)) (, ,) (NP (NNP Europe)) (CC and) (NP (DT the) (NNP United) (NNPS States))))))))))))) (. .)))
(S1 (S (NP (NNPS Palestinians)) (VP (AUX have) (VP (AUX been) (VP (VBG calling) (PP (IN for) (NP (NP (DT an) (NN extension)) (PP (IN of) (NP (NP (DT a) (NNP Gaza) (NN truce)) (PP (IN with) (NP (NNP Israel))) (PP (TO to) (NP (DT the) (NNP West) (NNP Bank)))))))))) (. .) ('' '')))
(S1 (S (S (NP (PRP We)) (VP (AUX do) (RB n't) (VP (VB think) (SBAR (S (NP (JJ taxing) (NNS folks)) (VP (AUX is) (NP (NP (NN something)) (SBAR (WHNP (WDT that)) (S (VP (AUX is) (ADJP (JJ popular)) (PP (IN in) (NP (NNP California))))))))))))) (, ,) ('' '') (NP (PRP he)) (VP (VBD said) (PP (IN in) (NP (NP (DT a) (NN telephone) (NN interview)) (PP (IN from) (NP (NNP Sacramento)))))) (. .) ('' '')))
(S1 (S (NP (PRP She)) (VP (VBD held) (NP (NP (NNS talks)) (PP (IN with) (NP (NP (NNP Prime) (NNP Minister) (NNP Ehud) (NNP Olmert)) (PP (IN of) (NP (NNP Israel)))))) (NP (JJ early) (NNP Monday)) (PP (IN in) (NP (NP (NNP Jerusalem)) (, ,) (NP (NP (DT a) (NN day)) (PP (IN after) (NP (NP (DT a) (NN session)) (PP (IN with) (NP (NP (DT the) (NNP Palestinian) (NNP Authority) (NN president)) (, ,) (NP (NNP Mahmoud) (NNP Abbas)) (, ,) (PP (IN in) (NP (NP (DT the) (NNP West) (NNP Bank) (NN city)) (PP (IN of) (NP (NNP Ramallah))))))))))))) (. .) ('' '')))
(S1 (SINV (S (NP (NNP Germany)) (VP (AUX is) (ADVP (RB still)) (VP (VBG trying) (S (VP (TO to) (VP (VB salvage) (NP (NP (DT some) (NN kind)) (PP (IN of) (NP (NP (DT a) (JJ strategic) (NN partnership)) (PP (IN with) (NP (NNP Russia)))))) (, ,) (SBAR (IN while) (S (NP (NP (DT a) (NN majority)) (PP (IN of) (NP (JJ European) (NNS countries)))) (VP (VBP question) (SBAR (IN whether) (S (NP (DT that)) (ADVP (RB even)) (VP (VBZ makes) (NP (NN sense)) (ADVP (RB anymore)))))))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Alexander) (NNP Rahr)) (, ,) (NP (NP (DT an) (NN expert)) (PP (IN on) (NP (NNP Russia))) (PP (IN at) (NP (NP (DT the) (JJ German) (NNP Council)) (PP (IN on) (NP (NP (NNP Foreign) (NNP Relations)) (PP (IN in) (NP (NNP Berlin))))))))) (. .) ('' '')))
(S1 (S (NP (PRP IT)) (VP (AUX 'S) (ADJP (JJ difficult)) (S (RB not) (VP (TO to) (VP (VB react) (ADVP (RB viscerally)) (PP (TO to) (NP (NP (NP (DT the) (NNS images)) (PRN (: --) (VP (ADVP (RB repeatedly)) (VBN shown) (PP (IN on) (NP (NN television))) (, ,) (PP (PP (IN in) (NP (NNS newspapers))) (CC and) (PP (IN on) (NP (NNP YouTube))))) (: --))) (PP (IN of) (NP (NP (NNS rats)) (VP (VBG scurrying) (PP (IN about) (NP (NP (DT the) (NNP KFC\/Taco) (NNP Bell) (NN restaurant)) (PP (IN in) (NP (NP (NNP New) (NNP York) (NNP City) (POS 's)) (NNP Greenwich) (NNP Village))) (PP (IN at) (NP (NN night))))))))))))) (, ,) (PP (IN like) (NP (NP (NNS villains)) (PP (IN in) (NP (NP (DT a) (JJ twisted) (NNS children) (POS 's)) (NN book)))))) (. .)))
(S1 (NP (NP (NNP WEINGRAD)) (: --) (NP (NP (NNP Irving)) (, ,) (NP (CD 90)) (, ,) (PP (IN of) (NP (NP (NNP Lake) (NNP Worth)) (, ,) (NP (NP (NNP Florida)) (VP (VBN passed) (PRT (RP away)) (ADVP (RB peacefully)) (PP (IN at) (NP (NN home))) (PP (IN on) (NP (NNP April) (CD 10) (, ,) (CD 2007)))))))) (. .)))
(S1 (S (SBAR (IN If) (S (NP (PRP we)) (VP (MD can) (VP (VB make) (NP (NN progress)) (PP (IN on) (NP (DT the) (JJ Palestinian) (NN front))) (PP (IN before) (S (VP (VBG adding) (NP (NNP Syria)) (PP (TO to) (NP (DT the) (NN mix)))))))))) (, ,) (NP (PRP it)) (VP (MD would) (DT both) (VP (VP (VB avoid) (S (VP (VBG overloading) (NP (NP (NNP Israel) (POS 's)) (NN negotiating) (NN capacity))))) (CC and) (VP (VB increase) (NP (NP (DT the) (NNS incentives)) (SBAR (IN for) (S (NP (NNP Damascus)) (VP (TO to) (VP (VB negotiate) (ADVP (RB seriously)))))))))) (. .)))
(S1 (S (NP (NP (DT The) (NNP Muqata)) (, ,) (NP (NP (DT the) (NNP Ramallah) (NN compound)) (SBAR (WHNP (WDT that)) (S (VP (AUX is) (NP (NP (DT the) (NNP West) (NNP Bank) (NN headquarters)) (PP (IN of) (NP (DT the) (NNP Palestinian) (NN president)))))))) (, ,) (NP (NNP Mahmoud) (NNP Abbas)) (, ,)) (VP (AUX is) (PP (IN among) (NP (NP (DT the) (JJ Palestinian) (NNP Authority) (NNS structures)) (SBAR (WHADVP (WRB where)) (S (NP (NNP Israel)) (VP (VBZ says) (S (NP (NNS militants)) (VP (VB hide))))))))) (. .)))
(S1 (S (NP (NP (NNP NHPF)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX has) (NP (NP (PRP$ its) (NNP Louisiana) (NN office)) (PP (IN in) (NP (NNP Baton) (NNP Rouge))))))) (, ,)) (VP (VBZ gets) (NP (DT the) (NNS funds)) (S (VP (TO to) (VP (VB build) (PP (IN from) (NP (NP (NP (NN government) (NNS grants)) (, ,) (NP (NN tax) (NNS credits)) (CC and) (NP (JJ low-interest) (NNS loans))) (, ,) (CONJP (RB as) (RB well) (IN as)) (NP (JJ conventional) (NN financing)))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Hawass)) (VP (VBD said) (SBAR (S (NP (PRP he)) (VP (AUX was) (ADVP (RB also)) (VP (VBG seeking) (NP (NP (DT the) (JJ zodiac) (NN ceiling)) (VP (VBG painting) (PP (IN from) (NP (NP (DT the) (NNP Dendera) (NNP Temple)) (, ,) (RRC (ADVP (RB now)) (PP (IN in) (NP (DT the) (NNP Louvre))) (NP (NP (DT the) (NN statue)) (PP (IN of) (NP (NNP Hemiunu))) (PP (IN in) (NP (NP (DT the) (NNP Roemer) (CC and) (NNP Pelizaeus) (NNP Museum)) (PP (IN in) (NP (NNP Hildesheim))) (, ,) (PP (IN near) (NP (NP (NNP Hanover)) (, ,) (NP (NNP Germany)) (CC and) (NP (NP (DT the) (NN bust)) (PP (IN of) (NP (NNP Anchhaf))) (PP (IN at) (NP (NP (DT the) (NNP Museum)) (PP (IN of) (NP (NNP Fine) (NNP Arts))) (PP (IN in) (NP (NNP Boston))))))))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (NNP California)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (NNS parents)) (ADVP (RB first)) (VP (VBD started) (NP (JJ educational) (NNS foundations)) (PP (IN in) (NP (NP (NN response)) (PP (TO to) (NP (NP (DT a) (JJ statewide) (NN law)) (VP (VBG capping) (NP (NN property) (NNS taxes)))))))))))) (, ,) (NP (NP (DT the) (VBN combined) (NN district)) (PP (IN of) (NP (NP (NNP Santa) (NNP Monica)) (CC and) (NP (NNP Malibu))))) (VP (VBZ requires) (SBAR (IN that) (S (NP (NP (CD 15) (NN percent)) (PP (IN of) (NP (NP (DT the) (NNS gifts)) (PP (IN from) (NP (NP (NNS parents)) (PP (TO to) (NP (JJ individual) (NNS schools)))))))) (VP (MD must) (VP (VB go) (PP (IN in) (NP (NP (DT an) ('' '') (NN equity) (NN fund) ('' '')) (SBAR (WHNP (WDT that)) (S (VP (AUX is) (VP (VBN administered) (PP (IN by) (NP (DT an) (JJ independent) (NN foundation)))))))))))))) (. .)))
(S1 (S (ADVP (RB Still)) (, ,) (NP (NNP Mr.) (NNP Elghanayan)) (VP (VBD said) (SBAR (S (NP (NNP Rockrose)) (VP (AUX was) (PP (IN in) (NP (NP (DT the) (NN process)) (PP (IN of) (S (VP (VBG selling) (PRT (RP off)) (NP (NP (DT a) (NN couple)) (PP (IN of) (NP (PRP$ its) (NNS assets)))) (PP (IN in) (NP (NNP Lower) (NNP Manhattan))) (, ,) (SBAR (IN while) (S (PP (IN for) (NP (DT the) (JJ first) (NN time))) (VP (VBG buying) (NP (NN office) (NNS buildings)) (PP (IN outside) (NP (NNP New) (NNP York) (NNP City))))))))))))))) (. .)))
(S1 (S (NP (DT The) (NN bridegroom)) (VP (AUX is) (NP (NP (DT a) (JJ second-year) (NN fellow)) (PP (IN in) (NP (JJ infectious) (NN disease))) (PP (IN at) (NP (NP (NNP Massachusetts) (NNP General) (NNP Hospital)) (CC and) (NP (NP (NP (NNP Brigham) (CC and) (NNP Women) (POS 's)) (NNP Hospital)) (PP (IN in) (NP (NNP Boston)))))))) (. .)))
(S1 (S (NP (DT The) (NN issue)) (PRN (, ,) (S (NP (NNP Mr.) (NNP Marissen)) (VP (VBZ suggests))) (, ,)) (VP (AUX is) (RB not) (NP (NP (CD one)) (PP (IN of) (NP (NP (NNP anti-Semitism) (FW per) (FW se)) (CC but) (NP (NP (NP (CD one)) (PP (IN of) (NP (NN triumphalism)))) (, ,) (NP (NP (DT a) (NN rejoicing)) (PP (IN in) (NP (NP (DT the) (NN misfortune)) (PP (IN of) (NP (DT the) (NNPS Jews)))))) (, ,) (ADVP (RB specifically) (PP (IN with) (NP (NP (DT the) (NN destruction)) (PP (IN of) (NP (NP (DT the) (NNP Second) (NNP Temple)) (PP (IN in) (NP (NNP Jerusalem))))) (PP (IN by) (NP (NP (DT the) (NNPS Romans)) (PP (IN in) (NP (NNP A.D.) (CD 70))))))))))))) (. .)))
(S1 (S (NP (NP (JJ Other) (NN fire) (NNS departments)) (PP (IN in) (NP (NNP Connecticut))) (, ,) (PP (IN from) (NP (NP (NNP Hartford)) (, ,) (NP (NNP New) (NNP Haven)) (CC and) (NP (NNP Waterbury)))) (, ,)) (VP (AUX have) (VP (VBN sponsored) (NP (JJ similar) (NNS drives)) (, ,) (PP (VBG according) (PP (TO to) (NP (NP (NNP Gigi) (NNP Aguero)) (, ,) (NP (NP (DT a) (NN recruitment) (NN specialist)) (PP (IN for) (NP (DT the) (NNP New) (NNP England) (NN donor) (NN program))))))))) (. .)))
(S1 (S (NP (NP (NNP Edwin) (NNP J.) (NNP Day)) (, ,) (NP (NP (DT the) (NNP Rockland) (NNP County) (NN legislator)) (SBAR (WHNP (WP$ whose) (NN district)) (S (VP (VBZ includes) (NP (NNP New) (NNP City)))))) (, ,)) (VP (VBD said) (SBAR (S (NP (PRP he)) (VP (VP (VBD heard) (NP (NP (DT the) (JJ same) (NN thought)) (PP (IN over) (CC and) (IN over) (PP (IN from) (NP (PRP$ his) (NNS constituents)))))) (CC and) (VP (AUX did) (RB not) (VP (VB disagree) (PP (IN with) (NP (PRP it))))))))) (. .) ('' '')))
(S1 (S (ADVP (RB Now)) (, ,) (NP (DT the) (NN state)) (VP (AUX is) (VP (VBG retooling) (NP (DT the) (NN program)) (S (VP (TO to) (VP (VB include) (NP (NP (DT all)) (PP (IN of) (NP (NP (NNP Cook) (NNP County)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ encompasses) (NP (NP (NNP Chicago)) (CC and) (NP (NP (DT many)) (PP (IN of) (NP (PRP$ its) (NNS suburbs)))))))))))))))) (. .)))
(S1 (FRAG (NP (NP (DT A) (JJ few) (NNS years)) (PP (IN after) (NP (NP (DT the) (NN funeral)) (, ,) (NP (NP (DT a) (JJ young) (NNP Scranton) (NN lawyer)) (SBAR (WHNP (WP who)) (S (VP (AUX had) (VP (AUX been) (VP (VBN elected) (S (NP (NP (CD one)) (PP (IN of) (NP (NP (CD three) (NNS commissioners)) (PP (IN of) (NP (NNP Lackawanna) (NNP County)))))) (VP (AUX was) (VP (VBN introduced) (PP (TO to) (NP (NNP Mr.) (NNP Sorvino))))))))))))))) (. .) ('' '')))
(S1 (S (PP (IN For) (NP (NP (DT a) (NN change)) (PP (IN of) (NP (NN scenery))))) (, ,) (NP (NNP Mr.) (NNP Vallebuona)) (VP (VP (VBD sold) (NP (PRP$ his) (NN house)) (PP (IN on) (NP (NNP Staten) (NNP Island)))) (CC and) (VP (VBD moved) (PP (TO to) (NP (NNP New) (NNP City))) (PP (IN in) (NP (NNP Rockland) (NNP County))))) (. .)))
(S1 (S (S (NP (NNP Texas)) (VP (VBZ conducts) (NP (NP (QP (RB nearly) (CD 40)) (NN percent)) (PP (IN of) (NP (NP (DT the) (NN nation) (POS 's)) (NNS executions)))))) (, ,) (CC and) (S (NP (NP (DT a) (JJ third)) (PP (IN of) (NP (NP (NNP Texas) (POS 's)) (NN death) (NNS verdicts)))) (VP (VBD come) (ADVP (RB solely)) (PP (IN from) (NP (NP (NNP Harris) (NNP County)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ includes) (NP (NNP Houston))))))))) (. .)))
(S1 (S (NP (NP (NNP Speaker) (NNP Sheldon) (NNP Silver)) (CC and) (NP (NP (DT the) (NNS members)) (PP (IN of) (NP (DT the) (NNP New) (NNP York) (NNP State) (NNP Assembly))))) (VP (VBP offer) (NP (NP (PRP$ our) (NN sympathy)) (CC and) (NP (NP (PRP$ our) (NNS prayers)) (PP (PP (TO to) (NP (DT the) (NNP Zebrowski) (NN family))) (, ,) (PP (TO to) (NP (NP (NNP Assembly) (NNP Member) (NNP Ken) (NNP Zebrowski) (POS 's)) (JJ many) (NNS friends))) (, ,) (CC and) (PP (TO to) (NP (NP (DT the) (NNS citizens)) (PP (IN of) (NP (NP (NP (NNP New) (NNP City)) (, ,) (NP (NNP Haverstraw)) (, ,)) (CC and) (NP (NP (DT all)) (PP (IN of) (NP (NNP Rockland) (NNP County)))))))))))) (. .)))
(S1 (S (NP (PRP He)) (VP (AUX has) (ADVP (RB already)) (VP (VBN convinced) (NP (NP (DT the) (NN government)) (PP (IN of) (NP (NP (NNP Lackawanna) (NNP County)) (, ,) (NP (NP (NN home)) (PP (TO to) (NP (NNP Scranton)))) (, ,)))) (S (VP (TO to) (VP (VB supply) (NP (NP (QP (JJR more) (IN than) (PDT half))) (PP (IN of) (NP (DT the) (ADJP ($ $) (CD 820,000)) (NN shooting) (NN budget)))) (PP (IN for) ('' '') (NP (NP (DT The) (NN Trouble)) (PP (IN With) (NP (NNP Cali)))))))))) (. .) ('' '')))
(S1 (S (NP (DT The) (NN man)) (, ,) (NP (NP (NNP Dean) (NNP Arthur) (NNP Schwartzmiller)) (, ,) (NP (CD 65)) (, ,)) (VP (AUX was) (VP (VBN convicted) (PP (IN by) (NP (DT a) (NNP Santa) (NNP Clara) (NNP County) (NN jury))) (NP (JJ last) (NN year)) (PP (IN for) (S (VP (ADVP (RB sexually)) (VBG abusing) (NP (NP (DT the) (CD two) (NNS boys)) (PP (IN at) (NP (PRP$ his) (NNP San) (NNP Jose) (NN home))) (PP (PP (IN from) (NP (CD 2002))) (PP (TO to) (NP (CD 2005)))))))))) (. .)))
(S1 (S (NP (NP (NP (DT The) (NN bride) (POS 's)) (NN father)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN designated) (NP (NP (DT a) (NN deputy) (NN marriage) (NN commissioner)) (PP (IN for) (NP (DT the) (NN occasion)))) (PP (IN by) (NP (NP (DT the) (NNP Alameda) (NNP County) (NN commissioner)) (PP (IN of) (NP (JJ civil) (NNS marriages))))))))) (, ,)) (VP (VBD officiated) (PP (IN at) (NP (NP (NP (DT the) (NN couple) (POS 's)) (NN home)) (PP (IN in) (NP (NP (NNP Oakland)) (, ,) (NP (NNP Calif.))))))) (. .)))
(S1 (S (PP (IN For) (NP (NP (DT a) (NN change)) (PP (IN of) (NP (NN scenery))))) (, ,) (NP (NNP Mr.) (NNP Vallebuona)) (VP (VP (VBD sold) (NP (PRP$ his) (NN house)) (PP (IN on) (NP (NNP Staten) (NNP Island)))) (CC and) (VP (VBD moved) (PP (TO to) (NP (NNP New) (NNP City))) (PP (IN in) (NP (NNP Rockland) (NNP County))))) (. .)))
(S1 (S (CC Or) (, ,) (SBAR (IN as) (S (NP (NP (NNP Charles) (NNP A.) (NNP Rosenthal) (NNP Jr.)) (, ,) (NP (NP (DT the) (NN district) (NN attorney)) (PP (IN of) (NP (NP (NNP Harris) (NNP County)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ includes) (NP (NNP Houston)))))))) (, ,)) (VP (VBD argued)))) (, ,) ('' '') (NP (NP (DT The) (NN presumption)) (PP (IN of) (NP (NN innocence)))) (VP (AUX does) (RB not) (VP (VB make) (S (NP (DT the) (NN person)) (ADJP (JJ innocent))))) (. .) ('' '')))
(S1 (S (PP (IN For) (NP (NP (DT the) (NN area)) (PP (IN of) (NP (NP (NNP King) (NNP County) (NNS east)) (PP (IN of) (NP (NP (NNP Lake) (NNP Washington)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (NNP Bellevue)) (VP (AUX is) (VP (VBN located))))))))))) (, ,) (NP (DT the) (JJ median) (NN household) (NN income)) (VP (AUX was) (NP (NP (NP ($ $) (CD 82,228)) (NP (JJ last) (NN year))) (, ,) (CC versus) (NP (NP ($ $) (CD 57,378)) (PP (IN in) (NP (NNP Seattle))))) (, ,) (PP (VBG according) (PP (TO to) (NP (NP (NNP Scarborough) (NNP Research)) (, ,) (NP (DT a) (NN consumer) (NN research) (NN firm)))))) (. .)))
(S1 (S (S (VP (VBG Responding) (PP (TO to) (NP (NP (DT a) (NN series)) (PP (IN of) (NP (NNS scandals))))))) (, ,) (NP (NP (NP (NNP Ohio) (POS 's)) (JJ new) (NN secretary)) (PP (IN of) (NP (NN state)))) (VP (VBD said) (NP (NNP Monday)) (SBAR (IN that) (S (NP (PRP she)) (VP (AUX had) (VP (VBN demanded) (NP (NP (DT the) (NN resignation)) (PP (IN of) (NP (NP (DT the) (JJ entire) (JJ four-member) (NNS Elections) (NN Board)) (PP (IN of) (NP (NP (NNP Cuyahoga) (NNP County)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ includes) (NP (NNP Cleveland))))))))))))))) (. .)))
(S1 (S (NP (NP (DT The) (NN curator)) (, ,) (NP (NNP Susan) (NNP Piedmont-Palladino)) (, ,)) (VP (VBD wrote) (NP (DT a) (NN letter)) (ADVP (RB recently)) (PP (TO to) (NP (NP (DT the) (NNP Board)) (PP (IN of) (NP (NP (NNS Commissioners)) (PP (IN in) (NP (NP (NNP Cuyahoga) (NNP County)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ includes) (NP (NNP Cleveland)) (, ,) (S (VP (VBG comparing) (NP (NP (DT the) (JJ possible) (NN destruction)) (PP (IN of) (NP (DT the) (NN tower))) (PP (TO to) (NP (NP (DT the) (VBG razing)) (PP (IN in) (NP (NP (DT the) (NNS 1950s)) (PP (IN of) (NP (NP (JJ Victorian) (NNS masterpieces)) (CC and) (NP (JJ several) (JJ major) (NNS buildings)))))) (PP (IN by) (NP (NNP Frank) (NNP Lloyd) (NNP Wright)))))))))))))))))) (. .) ('' '')))
(S1 (S (NP (PRP He)) (VP (VBZ lives) (PP (IN in) (NP (NP (NNP New) (NNP City)) (, ,) (NP (NNP Rockland) (NNP County)) (, ,))) (PP (IN with) (NP (NP (PRP$ his) (NN wife)) (, ,) (NP (NNP Joan)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD joined) (NP (PRP him)) (PP (IN at) (NP (DT the) (NN news) (NN conference))) (, ,) (ADVP (IN along) (PP (IN with) (NP (NP (PRP$ their) (CD two) (NN adult) (NNS sons)) (, ,) (NP (NNP Theodore) (NNP III) (CC and) (NNP Wesley)) (, ,) (CC and) (NP (JJ other) (NNS relatives))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (DT a) (NN state)) (SBAR (WHNP (WDT that)) (S (VP (AUX was) (ADJP (JJ pivotal) (PP (TO to) (NP (NP (NNP President) (NNP Bush) (POS 's)) (NN election) (CC and) (NN re-election))))))))) (, ,) (NP (NP (NNP Cuyahoga) (NNP County)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ includes) (NP (NNP Cleveland))))) (, ,)) (VP (AUX has) (VP (VBN seen) (NP (NP (JJR more)) (PP (IN than) (NP (NP (PRP$ its) (NN share)) (PP (IN of) (NP (JJ recent) (NN election) (NNS troubles)))))))) (. .)))
(S1 (S (NP (NP (DT The) (NN decision)) (PP (IN by) (NP (NNP Lackawanna) (NNP County))) (S (VP (TO to) (VP (VB funnel) (NP (NP (DT a) (JJ half) (CD million) (NNS dollars)) (PP (IN of) (NP (PRP$ its) (NNS arts) (CC and) (NN culture) (NN budget)))) (PP (IN into) (NP (DT a) (JJ low-budget) (NN film))) (PP (IN by) (NP (DT a) (JJ first-time) (NN feature) (NN director))))))) (VP (AUX is) (RB not) (PP (IN without) (NP (NP (NNS critics)) (PP (IN in) (NP (NNP Scranton)))))) (. .) ('' '')))
(S1 (S (S (NP (NNP Cuyahoga) (NNP County)) (, ,) (PP (VBG including) (NP (NP (NNP Cleveland)) (CC and) (NP (CD 58) (NNS suburbs)))) (, ,) (VP (AUX has) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (NN country) (POS 's)) (JJS highest) (NN foreclosure) (NNS rates)))))) (, ,) (CC and) (S (NP (NNS officials)) (VP (VBP say) (SBAR (S (NP (DT the) (JJS worst)) (VP (AUX is) (ADVP (RB yet)) (S (VP (TO to) (VP (VB come))))))))) (. .)))
(S1 (S (NP (NP (NNP DREXLER)) (: --) (NP (NP (NNP Beatrice) (NNP C.)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD ran) (NP (NP (NP (NN Candy) (NNP Mountain) (NNP Day) (NNP Camp)) (PP (IN in) (NP (NNP New) (NNP City)))) (, ,) (NP (NNP Rockland) (NNP County)) (, ,) (NP (NP (NNP New) (NNP York)) (PP (IN for) (NP (QP (JJR more) (IN than) (CD 30)) (NNS years))))) (PP (IN before) (NP (NP (PRP$ her) (NN retirement)) (, ,) (VP (VBD died) (NP (NNP April) (CD 16))) (, ,))) (PP (IN at) (NP (NP (DT the) (NN age)) (PP (IN of) (NP (CD 92))))))))) (, ,) (NP (PRP$ Her) (NN husband)) (, ,) (NP (DT the) (JJ late) (NNP Elias) (NNP J.) (NNP Drexler)) (, ,)) (VP (AUX was) (NP (NP (DT the) (JJ senior) (NN vice) (NN president)) (PP (IN in) (NP (NP (DT the) (NNP U.S.)) (PP (IN of) (NP (NNP FujFilm))))))) (. .)))
(S1 (S (PP (IN For) (NP (NP (DT a) (NN change)) (PP (IN of) (NP (NN scenery))))) (, ,) (NP (NNP Mr.) (NNP Vallebuona)) (VP (VP (VBD sold) (NP (PRP$ his) (NN house)) (PP (IN on) (NP (NNP Staten) (NNP Island)))) (CC and) (VP (VBD moved) (PP (TO to) (NP (NNP New) (NNP City))) (PP (IN in) (NP (NNP Rockland) (NNP County))))) (. .)))
(S1 (S (NP (DT The) (NNP New) (NNP York) (NNP Post)) (VP (VBD reported) (NP (JJ last) (NN year)) (SBAR (IN that) (S (NP (NNP Ms.) (NNP Sandow)) (VP (VBD voted) (PP (IN in) (NP (DT the) (NNP Bronx))) (PP (IN in) (NP (CD 2004))) (SBAR (IN while) (S (VP (VBG receiving) (NP (NN mail)) (PP (IN at) (NP (NP (DT an) (NN address)) (PP (IN in) (NP (NP (NNP New) (NNP City)) (, ,) (NP (NNP N.Y.)) (, ,))))) (PP (IN about) (NP (NP (CD 30) (NNS miles)) (PP (TO to) (NP (DT the) (NN north))))) (, ,) (PP (IN in) (NP (NNP Rockland) (NNP County)))))))))) (. .)))
(S1 (S (PP (IN On) (NP (DT the) (JJ same) (NN program))) (, ,) (NP (NP (NP (NNP Andrew) (NNP Speaker) (POS 's)) (NN father)) (, ,) (NP (NNP Ted)) (, ,)) (VP (VBD said) (SBAR (IN that) (S (NP (PRP he)) (, ,) (S (NP (NNP Andrew) (CC and) (NNS others)) (VP (VBD met) (PP (IN with) (NP (NNP Fulton) (NNP County) (NN health) (NNS officials))) (PP (IN in) (NP (NNP Atlanta))) (PP (IN on) (NP (NNP May) (CD 10))))) (, ,) (NP (NP (CD four) (NNS days)) (PP (IN before) (NP (NNP Andrew)))) (VP (AUX was) (VP (VBG planning) (S (VP (TO to) (VP (VB leave) (PP (IN for) (NP (NNP Europe))))))))))) (. .)))
(S1 (S (PP (IN For) (NP (NP (DT a) (NN change)) (PP (IN of) (NP (NN scenery))))) (, ,) (NP (NNP Mr.) (NNP Vallebuona)) (VP (VP (VBD sold) (NP (PRP$ his) (NN house)) (PP (IN on) (NP (NNP Staten) (NNP Island)))) (CC and) (VP (VBD moved) (PP (TO to) (NP (NNP New) (NNP City))) (PP (IN in) (NP (NNP Rockland) (NNP County))))) (. .)))
(S1 (S (NP (NP (NP (CD 6) (NN A.M.)) (PRN (-LRB- -LRB-) (NP (NNP TCM)) (-RRB- -RRB-))) (NP (NN COMMAND) (NN DECISION)) (: --) (NP (PRN (-LRB- -LRB-) (NP (CD 1948)) (-RRB- -RRB-)) (NNP Turner) (NNP Classic) (NNS Movies))) (VP (VBZ salutes) (NP (DT the) (JJ armed) (NNS forces)) (PP (IN with) (NP (NP (DT a) (NNP Memorial) (NNP Day) (NN marathon)) (VP (VBG starring) (NP (DT some) (JJ A-list) (NNS heroes))))) (, ,) (S (VP (VBG beginning) (PP (IN with) (NP (NNP Clark) (NNP Gable))) (PP (IN in) (NP (NP (DT this) (JJ colorized) (NNP World) (NNP War) (NNP II) (NN drama)) (PP (IN about) (NP (NP (DT a) (NN general)) (SBAR (WHNP (WP who)) (S (VP (MD must) (VP (VB battle) (S (NP (PRP$ his) (JJ own) (NN government)) (VP (TO to) (VP (VB send) (NP (PRP$ his) (NNS planes)) (ADVP (RBR deeper)) (PP (IN into) (NP (NNP Germany))))))))))))))))) (. .)))
(S1 (S (NP (NP (NNS Songs)) (PP (IN From) (`` `) (S (VP (ADVP (RB Here)) (VBZ Lies) (NP (NNP Love)))) ('' '')) ('' ')) (VP (VBD offered) (NP (CD 20) (NNS selections)) (PP (IN from) (NP (NP (PRP$ his) (JJ forthcoming) (NNS multimedia) (NN production)) (PP (IN about) (NP (NP (NNP Imelda) (NNP Marcos)) (, ,) (NP (NP (DT the) (JJ former) (JJ first) (NN lady)) (PP (IN of) (NP (DT the) (NNPS Philippines)))) (CC and) (NP (NP (DT an) (VBG enduring) (NN symbol)) (PP (IN of) (NP (NP (JJ despotic) (NN extravagance)) (CC and) (NP (NN shoe) (NN love)))))))))) (. .)))
(S1 (S (NP (DT The) (NN roster)) (VP (VBZ includes) (NP (NP (NP (NNP Vladimir) (NNP Kramnik)) (PP (IN of) (NP (NNP Russia)))) (, ,) (NP (NP (DT the) (NN world) (NN champion) (NNP Viswanathan) (NNP Anand)) (PP (IN of) (NP (NNP India)))) (, ,) (NP (NP (NNP No.) (CD 1)) (PP (IN in) (NP (NP (DT the) (NN world) (NNP Alexander) (NNP Morozevich)) (PP (IN of) (NP (NNP Russia)))))) (, ,) (NP (NNP No.) (CD 4)) (CC and) (NP (NP (NP (NNP Peter) (NNP Svidler)) (PP (IN of) (NP (NNP Russia)))) (, ,) (NP (NNP No.) (CD 9))))) (. .)))
(S1 (S (NP (NP (NNP Ms.) (NNP Pelosi)) (CC and) (NP (NP (DT the) (CD five) (NNPS Democrats)) (CC and) (NP (NP (CD one) (NNP Republican)) (SBAR (WHNP (WP who)) (S (VP (VBD accompanied) (NP (PRP her)))))))) (VP (AUX are) (ADVP (RB scarcely)) (NP (DT the) (JJ first)) (S (VP (TO to) (VP (VB raise) (NP (JJ such) (NNS questions)) (PP (IN during) (NP (NP (DT the) (CD three) (NNS years)) (SBAR (WHNP (WDT that)) (S (NP (NNP Mr.) (NNP Bush)) (VP (AUX has) (VP (VBN instructed) (NP (NP (PRP$ his) (JJ top) (NNS envoys)) (PRN (: --) (CC and) (ADVP (RB reportedly)) (NP (NP (NNP Israel)) (ADVP (RB as) (RB well))) (: --))) (S (VP (TO to) (VP (VB avoid) (NP (NNS negotiations)) (PP (IN with) (NP (NP (NP (NNP Syria) (POS 's)) (NN president)) (, ,) (NP (JJ Bashar) (NN al-Assad))))))))))))))))) (. .)))
(S1 (S (NP (NP (NN BUSINESS) (NN DAY)) (, ,) (NP (NP (NNP PAGE) (NNP C1) (NNP The) (NNP Grandmaster) (CC vs.) (NNP Putin)) (NP (NP (DT A) (NN protest)) (PP (IN in) (NP (NNP St.) (NNP Petersburg)))))) (VP (VBZ shows) (NP (NP (DT the) (NN commitment)) (PP (IN of) (NP (NP (NNP Garry) (NNP Kasparov)) (, ,) (NP (DT the) (JJ ex-chess) (NN champion)) (, ,))) (PP (TO to) (S (VP (VBG dismantling) (NP (NP (DT the) (NN system)) (VP (VBN built) (PP (IN by) (NP (NP (NP (NNP Russia) (POS 's)) (NN president)) (, ,) (NP (NNP Vladimir) (NNP V.) (NNP Putin))))))))))) (. .)))
(S1 (S (NP (NP (NNP Mexico) (POS 's)) (JJ national) (NN team)) (, ,) (S (VP (VBN led) (PP (IN by) (NP (NP (PRP$ its) (JJ new) (NN coach)) (, ,) (NP (NNP Hugo) (NNP Sánchez)) (, ,))))) (VP (MD will) (VP (VB play) (NP (NP (CD five) (NNS games)) (PP (IN in) (NP (DT the) (NNP United) (NNPS States)))) (NP (DT this) (NN year)) (, ,) (PP (IN in) (NP (NP (NN addition)) (PP (TO to) (NP (NP (NP (JJ next) (NN month) (POS 's)) (NN match)) (PP (IN against) (NP (DT the) (NNP United) (NNPS States))) (PP (IN on) (NP (NNP Feb.) (CD 7))) (PP (IN in) (NP (NP (NNP Glendale)) (, ,) (NP (NNP Ariz.)))))))))) (. .)))
(S1 (S (NP (NNP Hitler) (NNP Comedy)) (VP (AUX Is) (NP (NP (DT the) (JJ Top) (NN Draw)) (PP (IN in) (NP (NNP Germany)))) (S (NP (NP (DT A) (JJ Jewish) (NN filmmaker) (POS 's)) (NN comedy)) (VP (VBG depicting) (NP (NP (NNP Hitler)) (PRN (-LRB- -LRB-) (NP (NP (NP (NNP Helge) (NNP Schneider)) (, ,) (NP (NN right)) (, ,)) (PP (IN with) (NP (NNP Ulrich) (NNP Mühe)))) (-RRB- -RRB-))) (SBAR (IN as) (S (NP (DT an) (JJ impotent) (, ,) (JJ bed-wetting) (NN drug) (NN addict)) (VP (VBD became) (NP (NP (DT the) (ADJP (RBS most) (JJ popular)) (NN film)) (PP (IN in) (NP (NNP Germany)))) (PP (IN in) (NP (PRP$ its) (JJ first) (NN week))) (PP (IN in) (NP (NNS theaters))) (PRN (, ,) (S (NP (NNP Agence) (NNP France-Presse)) (VP (VBD reported))) (, ,)) (S (VP (VBG citing) (NP (NP (NNP CinemaxX)) (, ,) (NP (NP (DT the) (NN country) (POS 's)) (JJS biggest) (NN theater) (NN chain))))))))))) (. .)))
(S1 (S (S (NP (NP (NNP France) (NNP Honors) (NNP Clint) (NNP Eastwood) (NNP Clint) (NNP Eastwood)) (, ,) (NP (NP (CD 76)) (, ,) (ADVP (RB below))) (, ,)) (VP (AUX had) (NP (NP (DT a) (JJ good) (NN day)) (PP (IN at) (NP (DT the) (JJ Élysée) (NNP Palace)))) (PP (IN in) (NP (NNP Paris))) (PP (IN on) (NP (NNP Saturday))) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (NP (NNP President) (NNP Jacques) (NNP Chirac)) (PP (IN of) (NP (NNP France)))) (VP (VBD inducted) (NP (PRP him)) (PP (IN as) (NP (NP (DT a) (NN knight)) (PP (IN in) (NP (NP (DT the) (NNP Legion)) (PP (IN of) (NP (NN Honor)))))))))))) (, ,) (NP (DT The) (NNP Associated) (NNP Press)) (VP (VBD reported)) (. .)))
(S1 (SQ (MD Can) (NP (NP (NP (NNP Israel) (POS 's)) (JJ prime) (NN minister)) (, ,) (NP (NNP Ehud) (NNP Olmert)) (, ,)) (VP (VB tell) (NP (PRP$ his) (NN public)) (SBAR (IN that) (S (NP (NN demography) (CC and) (NN practicality)) (VP (VBP mean) (SBAR (IN that) (S (NP (NP (DT the) (JJ Arab) (NNS neighborhoods)) (PP (IN of) (NP (NNP East) (NNP Jerusalem)))) (VP (MD will) (VP (AUX have) (NP (ADJP (ADJP (JJ Palestinian)) (CC and) (ADJP (RB not) (JJ Israeli))) (NN sovereignty)))))))))) (. ?)))
(S1 (S (NP (NP (DT The) (NN vote)) (PP (IN on) (NP (NNP Sunday)))) (VP (VBZ allows) (S (NP (DT the) (NNP British) (CC and) (NNP Irish) (NNS governments)) (VP (TO to) (VP (VB move) (ADVP (RB ahead)) (PP (IN in) (NP (JJ coming) (NNS days))) (PP (IN with) (NP (NNS plans) (S (VP (TO to) (VP (VB persuade) (NP (NP (DT the) (NNP Northern) (NNP Ireland) (NNPS Protestants)) (, ,) (VP (VBN led) (PP (IN by) (NP (NP (DT the) (NNP Rev.) (NNP Ian) (NNP Paisley) (POS 's)) (NNP Democratic) (NNP Unionist) (NNP Party)))) (, ,)) (S (VP (TO to) (VP (VB share) (NP (NN power)) (PP (IN with) (NP (NNP Sinn) (NNP Fein) (NNPS Catholics))) (PP (IN in) (NP (DT a) (JJ Belfast-based) (NN government))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NNP December))) (, ,) (NP (DT the) (NNS authorities)) (VP (VBD refused) (S (VP (TO to) (VP (VB grant) (NP (NP (DT a) (NN permit)) (PP (IN for) (NP (NP (DT a) (NN march)) (VP (VBN organized) (PP (IN by) (NP (NP (NNP Other) (NNP Russia)) (, ,) (NP (NP (DT an) (NN amalgam)) (PP (IN of) (NP (NP (JJ disaffected) (JJ political) (NNS organizations)) (, ,) (PP (VBG including) (NP (NP (NP (CD one)) (VP (VBN created) (PP (IN by) (NP (NNP Garry) (NNP Kasparov))))) (, ,) (NP (NP (DT the) (JJ former) (NN chess) (NN champion)) (SBAR (WHNP (WP who)) (S (VP (VBD retired) (PP (IN in) (NP (CD 2005))) (S (VP (TO to) (VP (VB wage) (NP (DT a) (JJ lonely) (NN campaign)) (S (VP (TO to) (VP (VB make) (S (NP (NNP Russia)) (ADJP (RB politically) (JJ free)))))))))))))))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (DT a) (ADJP (RBR less) (JJ important) (CC but) (JJ symbolic)) (NN defeat)) (PP (IN for) (NP (DT the) (NNS conservatives))))) (, ,) (NP (NP (NNP Jean-Louis) (NNP Bruguière)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX had) (VP (VBN earned) (NP (NP (DT a) (JJ global) (NN reputation)) (PP (IN as) (NP (NP (NNP France) (POS 's)) (VBG leading) (JJ antiterrorist) (JJ investigative) (NN magistrate)))))))) (, ,)) (ADVP (RB also)) (VP (VBD lost) (PP (TO to) (NP (DT a) (NNP Socialist)))) (. .)))
(S1 (S (CC But) (NP (NP (NP (NNP André) (NNP Boisclair)) (, ,) (ADVP (RB above))) (, ,) (NP (NP (DT the) (NN leader)) (PP (IN of) (NP (DT the) (JJ separatist) (NNP Parti) (NNPS Québécois)))) (, ,)) (VP (AUX has) (VP (VBN promised) (S (VP (TO to) (VP (VB hold) (NP (NP (DT a) (NN referendum)) (PP (IN on) (S (VP (VBG taking) (NP (DT the) (NN province)) (PP (IN out) (PP (IN of) (NP (NNP Canada)))))))) (SBAR (IN if) (S (NP (PRP he)) (VP (AUX is) (VP (VBN elected)))))))))) (. .)))
(S1 (S (NP (EX There)) (VP (AUX was) (ADJP (JJ good) (JJ old)) (NP (NP (NP (NNP Sanath) (NNP Jayasuriya)) (, ,) (NP (NP (DT the) (JJ 37-year-old) (JJ left-handed) (NN batsman)) (PP (IN for) (NP (NNP Sri) (NNP Lanka)))) (, ,)) (NN walloping)) (S (NP (DT the) (JJ hard) (NN ball)) (VP (VP (VBG rising) (PRT (RP off)) (NP (DT the) (JJ slippery) (NN grass))) (, ,) (VP (VBG sending) (NP (CD seven) (NNS shots)) (PP (IN over) (NP (DT the) (NNS fences)))) (, ,) (NP (NP (NP (DT a) (NN home)) (VP (VBN run) (PP (TO to) (NP (PRP us))))) (, ,) (NP (NP (DT a) (CD six)) (PP (TO to) (NP (NN cricket) (NNS fans)))))))) (. .)))
(S1 (S (NP (DT Some)) (VP (AUX were) (NP (NP (JJ familiar) (NNS names)) (: --) (NP (NP (NNP Hermann) (NNP Göring)) (, ,) (NP (NP (NP (NNP Hitler) (POS 's)) (ADJP (JJ second) (PP (IN in) (NP (NN command)))) (NNP Albert) (NNP Speer)) (, ,) (NP (NP (DT the) (NN architect)) (SBAR (WHNP (WP who)) (S (VP (VBD ran) (NP (NP (NP (NNP Germany) (POS 's)) (NN war) (NN production) (NN operation)) (NP (NP (NNP Joachim) (NNP von) (NNP Ribbentrop)) (, ,) (NP (NP (DT the) (JJ onetime) (NN Champagne) (NN salesman)) (SBAR (WHNP (WP who)) (S (VP (VBD became) (NP (NP (NNP Hitler) (POS 's)) (JJ foreign) (NN minister)) (NP (NP (NNP Julius) (NNP Streicher)) (, ,) (NP (NP (NN publisher)) (PP (IN of) (NP (DT the) (ADJP (RB fanatically) (JJ anti-Semitic)) (NNP Nazi) (NN newspaper) (NNP Der) (NNP Sturmer))))))))))))))))))) (. .)))
(S1 (S ('' '') (NP (NP (NN Rise) (CC and) (NN Fall)) (PP (IN of) (NP (NP (DT the) (NNP City)) (PP (IN of) (NP (NNP Mahagonny))))) (, ,) ('' '') (VP (ADVP (RB first)) (VBN presented) (PP (IN in) (NP (NP (NNP Leipzig)) (, ,) (NP (NNP Germany)) (, ,))) (PP (IN in) (NP (CD 1930)))) (, ,)) (VP (AUX is) (NP (NP (DT the) (ADJP (RBS most) (JJ ambitious)) (NN product)) (PP (IN of) (NP (NP (DT the) (ADJP (JJ brief) (CC but) (JJ dynamic)) (NN collaboration)) (PP (IN between) (NP (NP (NNP Bertolt) (NNP Brecht)) (CC and) (NP (NNP Kurt) (NNP Weill)))))))) (. .)))
(S1 (S (NP (NP (JJ Op-Ed) (NN Contributor) (NNP Shashi) (NNP Tharoor)) (, ,) (NP (NP (DT a) (VBG departing) (JJ under) (NN secretary) (NN general)) (PP (IN of) (NP (DT the) (NNP United) (NNPS Nations)))) (, ,)) (VP (AUX is) (NP (NP (NP (DT the) (NN author)) (PP (IN of) ('' '') (NP (DT The) (NNP Great) (NNP Indian) (NN Novel)))) ('' '') (CC and) (NP (DT the) (JJ forthcoming) ('' '') (NP (DT The) (NN Elephant)) (, ,) (NP (NP (DT the) (NNP Tiger)) (CC and) (NP (DT the) (NNP Cellphone)) (: :) (NP (NP (NNP India)) (, ,) (NP (DT The) (NNP Emerging) (CD 21st) (NNP Century) (NNP Power))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT The) (JJ Israeli) (JJ prime) (NN minister)) (, ,) (NP (NNP Ehud) (NNP Olmert)) (, ,)) (VP (VBD said) (NP (NNP Sunday)) (SBAR (IN that) (S (NP (NP (NP (NNP Israel) (POS 's)) (JJ military) (NN activity)) (PP (IN in) (NP (NNP Gaza) ('' '')))) (VP (MD will) (VP (VB continue) (PP (IN for)) (ADVP (ADVP (RB as) (RB long)) (SBAR (IN as) (FRAG (ADJP (JJ necessary))))))))) (, ,) ('' '') (PP (IN in) (NP (NN order) ('' '') (S (VP (TO to) (VP (VB prevent) (NP (NP (JJ terrorist) (NNS acts)) (, ,) (NP (NP (NNS attempts)) (VP (TO to) (VP (VB infiltrate) (NP (NNP Israel))))) (, ,) (CC and) (NP (NP (DT the) (NN firing)) (PP (IN of) (NP (NNP Qassam) (NNS rockets))))))))))) (. .) ('' '')))
(S1 (S (NP (NNP Mr.) (NNP Hosseini)) (VP (VBD said) (SBAR (IN that) (S (NP (NNP Iran)) (VP (AUX was) (ADJP (JJ surprised) (SBAR (IN that) (S (NP (NNP European) (NNS leaders)) (VP (AUX had) (VP (VBN ignored) (NP (NP (NNS comments)) (PP (IN by) (NP (NP (NP (NNP Israel) (POS 's)) (JJ prime) (NN minister)) (, ,) (NP (NNP Ehud) (NNP Olmert)) (, ,)))) (ADVP (RB recently)) (SBAR (WHNP (WDT that)) (S (VP (VBD seemed) (S (VP (TO to) (VP (VB confirm) (SBAR (IN that) (S (NP (NNP Israel)) (VP (VBN possessed) (NP (JJ nuclear) (NNS weapons)))))))))))))))))))) (. .)))
(S1 (S (PP (VBG Persuading) (NP (NP (NP (NNP North) (NNP Korea) (POS 's)) (NN leader)) (, ,) (NP (NNP Kim) (NNP Jong-il)))) (, ,) (S (VP (TO to) (VP (VB abandon) (NP (PRP$ his) (JJ nuclear) (NNS ambitions))))) (VP (AUX has) (VP (VBN seemed) (NP (DT an) (ADJP (RB increasingly) (JJ hopeless)) (NN exercise)) (PP (IN since) (NP (NP (NNP October)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (NNP North) (NNP Korea)) (VP (VP (VBD tested) (NP (DT a) (JJ nuclear) (NN device))) (CC and) (VP (VBD declared) (S (NP (PRP itself)) (NP (DT a) (JJ nuclear) (NN state))))))))))) (. .)))
(S1 (S (PP (IN At) (NP (NP (DT the) (NN center)) (PP (IN of) (NP (DT this) (JJ manufactured) (NN maelstrom))))) (VP (AUX is) (NP (NP (NP (DT the) (ADJP (RB preternaturally) (JJ beauteous)) (NN figure)) (PP (IN of) (NP (NP (NNP Shilpa) (NNP Shetty)) (, ,) (NP (CD 31))))) (, ,) (NP (NP (DT a) (NNP Bollywood) (NN movie) (NN star)) (PP (IN from) (NP (NNP India))) (SBAR (WHNP (WHNP (WP$ whose) (NN treatment)) (PP (IN by) (NP (NP (JJ British) (NNS contestants)) (PP (IN in) (NP (NP (DT the) (JJ so-called) (NN reality) (NN show)) (PP (IN on) (NP (NN television))) (ADVP (RB here))))))) (S (VP (AUX has) (VP (VBN provoked) (NP (QP (JJR more) (IN than) (CD 16,000)) (NNS viewers)) (S (VP (TO to) (VP (VB complain) (PP (TO to) (NP (NNS regulators))) (SBAR (IN that) (S (NP (PRP she)) (VP (AUX is) (NP (NP (DT the) (NN victim)) (PP (IN of) (NP (JJ racist) (NN bullying))))))))))))))))) (. .)))
(S1 (S (ADVP (RB Elsewhere)) (NP (NP (NP (DT the) (NNS costumes) (POS ')) (JJ main) (NN color) (NN scheme)) (PRN (: --) (S (NP (NNP Tybalt)) (VP (AUX is) (ADJP (JJ yellow) (, ,) (NNP Romeo) (JJ blue) (, ,) (NNP Mercutio) (JJ purple)))) (: --))) (VP (VBD reminded) (NP (PRP me)) (PP (IN of) (NP (NP (DT the) (JJ old) (NNP National) (NNP Ballet)) (PP (IN of) (NP (NP (NNP Cuba) (NN production)) (PP (IN of) ('' '') (NP (NP (NNP Giselle)) (, ,) ('' '') (SBAR (WHNP (WDT which)) (S (VP (AUX was) (VP (VBN arranged) (PP (IN around) (NP (NP (DT the) (JJ fading) (NN eyesight)) (PP (IN of) (NP (NP (PRP$ its) (NN prima) (NN ballerina)) (, ,) (NP (NNP Alicia) (NNP Alonso)) (, ,))))) (PP (IN with) (NP (NP (PDT all) (DT the) (JJ key) (NNS characters)) (PP (IN in) (NP (NP (NNP Giselle) (POS 's)) (NN life) (S (VP (VBN dressed) (PP (IN in) (NP (RB individually) (JJ bright) (NNS colors))) (, ,) (SBAR (RB so) (IN that) (S (NP (PRP she)) (VP (VBD knew) (SBAR (WHNP (WP what)) (S (VP (TO to) (VP (AUX do) (PP (IN with) (NP (DT the) (NN dancer) (VBG wearing) (NN orange))) (SBAR (IN as) (S (VP (VBN opposed) (PP (TO to) (NP (NP (DT the) (NN one)) (PP (IN in) (NP (NN mauve)))))))))))))))))))))))))))))))) (. .)))
(S1 (S (NP (FW Bono)) (VP (VBD said) (SBAR (IN that) (S (NP (NP (NNP President) (NNP Jacques) (NNP Chirac)) (PP (IN of) (NP (NNP France)))) (VP (AUX had) (VP (VBN spoken) (ADVP (RB eloquently) (PP (IN of) (NP (DT the) (NN need)))) (S (VP (TO to) (VP (VB support) (NP (NNP Africa))))) (, ,) (SBAR (IN though) (S (NP (PRP he)) (VP (VBD added) (SBAR (IN that) (S (NP (NNP France)) (VP (AUX had) (RB not) (ADVP (RB yet)) (VP (VBN come) (PRT (RP through)) (PP (IN with) (NP (DT the) (NNS resources))))))))))))))) (. .)))
(S1 (FRAG (NP (NP (CD 10) (NN P.M.)) (PRN (-LRB- -LRB-) (NP (NNP Sundance) (NNP Channel)) (-RRB- -RRB-)) (NP (NP (DT THE) (NN DAY)) (PP (IN OF) (NP (NP (DT THE) (NN JACKAL)) (PRN (-LRB- -LRB-) (NP (CD 1973)) (-RRB- -RRB-)) (SBAR (S (NP (DT An) (NNP English)) (VP (VBD hit) (NP (NP (NP (NN man)) (PRN (-LRB- -LRB-) (NP (NNP Edward) (NNP Fox)) (-RRB- -RRB-))) (: --) (NP (NN code) (NN name))) (NP (DT the) (NNP Jackal))))))))) (: --) (S (VP (VBZ agrees) (S (VP (TO to) (VP (VB kill) (NP (NP (NNP Charles) (FW de) (NNP Gaulle)) (, ,) (NP (NP (DT the) (NN president)) (PP (IN of) (NP (NNP France)))) (, ,)) (PP (IN for) (NP (NP (PDT half) (DT a) (CD million) (NNS dollars)) (PP (IN in) (NP (NP (DT this) (NN espionage) (NN thriller)) (PP (IN by) (NP (NP (NNP Fred) (NNP Zinnemann)) (, ,) (VP (VBN adapted) (PP (IN from) (NP (NP (DT the) (NN novel)) (PP (IN by) (NP (NNP Frederick) (NNP Forsyth))))))))))))))))) (. .)))
(S1 (S (NP (NNP André) (NNP Desmarais)) (VP (AUX is) (NP (NP (NP (DT the) (NN paper) (POS 's)) (NN chairman) (CC and) (NN president)) (SBAR (S (NP (NP (DT the) (NN editor)) (, ,) (SBAR (WHNP (WP whom)) (S (NP (DT the) (NN family)) (VP (VBZ appoints)))) (, ,)) (VP (AUX is) (ADVP (RB always)) (NP (NP (DT a) (NN supporter)) (PP (IN of) (NP (DT a) (VBN united) (NNP Canada))))))))) (. .)))
(S1 (S (NP (PRP He)) (VP (VBD praised) (NP (NNP Israel)) (PP (IN for) (S (VP (VBG conducting) (NP (NP (DT an) (NN inquiry)) (PP (IN into) (NP (NP (NP (NP (JJ last) (NN year) (POS 's)) (NN war)) (PP (IN with) (NP (NNP Hezbollah)))) (: --) (NP (NP (DT an) (NN inquiry)) (SBAR (WHNP (WDT that)) (S (VP (VBD accused) (NP (NNP Prime) (NNP Minister) (NNP Ehud) (NNP Olmert)) (PP (IN of) ('' '') (NP (NP (JJ serious) (NN failure)) (PP (IN in) (S (VP (VBG exercising) (NP (NN judgment) (, ,) (NN responsibility) (CC and) (NN prudence)))))))))))))))))) (. .) ('' '')))
(S1 (S (S (NP (NP (DT A) (NN nostalgia)) (PP (IN for) (NP (NNP Gandhian) (NNS ideals)))) (VP (VBZ hovers) (PRT (RP over)) ('' '') (NP (NP (NNP Parzania)) (, ,) ('' '') (SBAR (WHNP (WDT which)) (S (VP (VP (VBZ begins) (PP (IN with) (NP (NP (DT a) (JJ schoolroom) (NN lesson)) (PP (IN about) (NP (NP (DT the) ('' '') (JJ great) (JJ secular) (NN democracy)) (PP (IN of) (NP (NNP India)))))))) ('' '') (CC and) (VP (VBZ ends) (PP (IN with) (NP (NP (DT the) (JJ anguished) (NN testimony)) (PP (IN of) (NP (NP (DT the) (VBN lost) (NN boy) (POS 's)) (NN mother))))) (PRN (-LRB- -LRB-) (NP (DT a) (JJ wonderful) (, ,) (VBN understated) (NNP Sarika)) (-RRB- -RRB-)) (S (VP (VBG calling) (S (NP (DT the) (NN government)) (VP (TO to) (VP (VB account))))))))))))) (: :) (S (S (NP (PRP We)) (VP (AUX were) (S (NP (JJ middle-class) (NNS people)) (VP (VBG waiting) (SBAR (IN for) (S (NP (DT the) (NN police)) (VP (TO to) (VP (VB protect) (NP (PRP us)))))))))) (, ,) (NP (PRP she)) (VP (VBZ says) (SBAR (S (VP (AUX is) (S (ADVP (RB n't)) (NP (PRP it)) (NP (NP (DT the) (NN government) (POS 's)) (NN duty)) (VP (TO to) (VP (VB provide) (NP (NN safety) (CC and) (NN security)) (PP (IN for) (NP (PRP$ its) (NNS citizens))))))))))) (. ?)))
(S1 (S (NP (NNP A8)) (VP (VBZ Calls) (PP (IN for) (NP (NP (NNP Australian) (POS 's)) (NN Return) (SBAR (S (NP (NP (NNP John) (NNP Howard)) (, ,) (NP (NP (DT the) (JJ prime) (NN minister)) (PP (IN of) (NP (NNP Australia)))) (, ,)) (VP (AUX is) (PP (IN under) (NP (JJ mounting) (NN pressure))) (S (VP (TO to) (VP (AUX have) (NP (NP (NNP David) (NNP Hicks)) (, ,) (NP (NP (DT an) (JJ Australian) (NN citizen)) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VP (VBN charged) (PP (IN by) (NP (DT the) (JJ American) (NN military))) (PP (IN with) (NP (DT a) (JJ terrorism-related) (NN offense)))) (, ,) (VP (VBN tried)) (CC and) (VP (VBD returned) (ADVP (RB home)))))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (DT another) (NN development)) (PP (IN on) (NP (NNP Thursday))))) (, ,) (NP (NNP Prime) (NNP Minister) (NNP Ehud) (NNP Olmert)) (VP (VBD testified) (PP (IN for) (NP (CD five) (NNS hours))) (PP (IN before) (NP (NP (DT a) (NN commission)) (VP (VBG investigating) (SBAR (WHADVP (WRB how)) (S (NP (NNP Israel)) (VP (VBD conducted) (NP (PRP$ its) (NN war) (JJ last) (NN summer)) (PP (IN against) (NP (NNP Hezbollah))) (PP (IN in) (NP (NNP Lebanon)))))))))) (. .)))
(S1 (S (ADVP (RB Back) (PP (IN in) (NP (NNP France)))) (, ,) (NP (DT the) (JJ final) (NN round)) (VP (AUX has) (VP (AUX been) (VP (VBN viewed) (PP (IN as) (NP (NP (DT a) (NN contest)) (SBAR (S (VP (TO to) (VP (VB capture) (NP (NP (DT the) (JJ middle-ground) (NN electorate)) (SBAR (WHNP (WDT that)) (S (VP (VBD supported) (NP (NP (NNP François) (NNP Bayrou)) (, ,) (NP (DT the) (JJ centrist) (NN candidate)) (, ,)) (PP (IN in) (NP (DT the) (JJ first) (NN round)))))))))))))))) (. .)))
(S1 (S (S (NP (DT THE) (NNP Bush) (NN administration)) (VP (MD can) (VP (VB point) (PP (TO to) (NP (NP (JJ precious) (JJ few) (NNS successes)) (PP (IN in) (NP (PRP$ its) (NNS efforts) (S (VP (TO to) (VP (VB curb) (NP (NP (NNP North) (NNP Korea) (POS 's)) (VBG mounting) (NN menace)))))))))))) (: --) (S (NP (RB even) (JJ last) (NN week)) (VP (AUX 's) (VP (VBD celebrated) (SBAR (S (NP (NP (JJ nuclear) (NN deal)) (PP (IN with) (NP (NP (NNP Kim) (NNP Jong-il) (POS 's)) (NN government)))) (VP (AUX is) (, ,) (PP (IN for) (NP (DT the) (NN moment))) (, ,) (NP (NP (RB little) (JJR more)) (PP (IN than) (NP (NP (DT a) (VBN written) (NN promise)) (PP (IN from) (NP (DT a) (ADJP (RB highly) (JJ unreliable)) (NN negotiating) (NN partner)))))))))))) (. .)))
(S1 (S (NP (NP (NP (NNP South) (NNP Africa) (POS 's)) (JJ deputy) (JJ foreign) (NN minister)) (, ,) (NP (NNP Aziz) (NNP Pahad)) (, ,)) (VP (VBD urged) (NP (NNP Zimbabwe) ('' '')) (S (VP (TO to) (VP (VB ensure) (SBAR (IN that) (S (NP (NP (DT the) (NN rule)) (PP (IN of) (NP (NN law))) (, ,) (PP (VBG including) (NP (NP (NP (NN respect)) (PP (IN for) (NP (NP (DT the) (NNS rights)) (PP (IN of) (NP (DT all) (NNPS Zimbabweans)))))) (CC and) (NP (NP (NNS leaders)) (PP (IN of) (NP (JJ various) (JJ political) (NNS parties)))))) (, ,)) (VP (AUX is) (ADJP (JJ respected)) (, ,) ('' '') (PP (VBG according) (PP (TO to) (NP (NP (DT a) (NN statement)) (VP (VBN issued) (PP (IN in) (NP (PRP$ his) (NN name)))))))))))))) (. .)))
(S1 (S (NP (NNP Science) (CC and) (NNP Technology) (NNP Minister) (NNP Mohammad) (NNP Soleimani)) (VP (VBD said) (SBAR (S (NP (NNP Iran)) (VP (VBD planned) (S (VP (TO to) (VP (VB accelerate) (NP (NP (PRP$ its) (NN space) (NN program)) (, ,) (NP (NP (DT the) (NNS students) (NN news) (NN agency)) (VP (VBN reported))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Dibaba) (POS 's)) (NN performance)) (VP (VBD shared) (NP (DT the) (NN spotlight)) (PP (IN with) (NP (NP (NP (NNP Bernard) (NNP Lagat) (POS 's)) (NN triumph)) (PP (IN in) (NP (DT the) (NNP Wanamaker) (NNP Mile))))) (S (NP (NP (DT a) (JJ huge) (JJ pole) (NN vault)) (PP (IN by) (NP (NP (NP (DT the) (NNS women) (POS 's)) (JJ world-record) (NN holder)) (, ,) (NP (NP (NNP Yelena) (NNP Isinbayeva)) (PP (IN of) (NP (NNP Russia))))))) (NP (NP (NP (DT a) (NN victory)) (PP (IN in) (NP (NP (DT the) (CD 60) (NNS hurdles)) (PP (IN by) (NP (DT the) (JJ 40-year-old) (NNP Gail) (NNP Devers)))))) (CC and) (NP (NP (DT a) (NN spill)) (PP (IN in) (NP (NP (DT the) (CD 60) (NN dash)) (PP (IN by) (NP (NP (NNP Maurice) (NNP Greene)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBZ holds) (SBAR (S (NP (DT the)) (VP (VBP meet) (NP (NP (NN record)) (PP (IN in) (NP (DT that) (NN race)))))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP House) (NNP Speaker) (NNP Nancy) (NNP Pelosi)) (CC and) (NP (PRP$ her) (NN delegation))) (VP (VBD said) (SBAR (S (NP (PRP they)) (VP (AUX had) (NP (NP (JJ frank) (NNS words)) (PP (IN with) (NP (NP (NNP President) (NNP Bashar) (NN al-Assad)) (CC and) (NP (JJ other) (JJ senior) (JJ Syrian) (NNS officials))))) (ADVP (RB here)) (PP (IN on) (NP (NNP Wednesday))) (, ,) (S (VP (VP (VBG pressing) (NP (DT the) (NN president)) (PP (IN over) (NP (NP (NP (NNP Syria) (POS 's)) (NN support)) (PP (IN for) (NP (JJ militant) (NNS groups)))))) (CC and) (VP (VBG insisting) (SBAR (IN that) (S (NP (PRP$ his) (NN government)) (VP (VB block) (NP (NP (NNS militants)) (VP (VBG seeking) (S (VP (TO to) (VP (VP (VB cross) (PP (IN into) (NP (NNP Iraq)))) (CC and) (VP (VB join) (NP (NNS insurgents)) (ADVP (RB there)))))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Mr.) (NNP Sarkozy)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBG campaigning) (PP (IN on) (NP (NNP Saturday))) (PP (IN with) (NP (NNP Labor) (NNP Minister) (NNP Jean-Louis) (NNP Borloo))) (PP (IN in) (NP (JJ northern) (NNP France))))))) (, ,)) (VP (VBN mocked) (NP (DT the) (NNP Royal-Bayrou) (NN debate))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Mr.) (NNP Berggruen)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD fled) (NP (NP (NNP Hitler) (POS 's)) (NNP Germany)) (PP (IN for) (NP (DT the) (NNP United) (NNPS States))) (PP (IN in) (NP (CD 1936)))))) (, ,)) (VP (VBD made) (NP (PRP$ his) (NN name)) (PP (IN in) (NP (JJ postwar) (NNP Paris))) (PP (IN as) (NP (NP (DT a) (NN gallery) (NN owner)) (SBAR (WHNP (WP who)) (S (VP (VP (VBD enjoyed) (NP (NP (DT a) (JJ close) (NN relationship)) (PP (IN with) (NP (NNP Picasso))))) (CC and) (VP (AUX was) (ADVP (RB also)) (VP (VBN considered) (S (NP (NP (DT a) (NN specialist)) (PP (IN in) (NP (NP (DT the) (NNS works)) (PP (IN of) (NP (NP (NNP Van) (NNP Gogh)) (, ,) (NP (NNP Cézanne)) (, ,) (NP (NNP Matisse)) (, ,) (NP (NNP Paul) (NNP Klee)) (, ,) (NP (NNP Hans) (NNP Arp)) (CC and) (NP (NNP Giacometti)))))))))))))))) (. .)))
(S1 (S (S (VP (VB Let) (S (NP (PRP 's)) (VP (VB see))))) (, ,) (NP (NNP Syria)) (VP (AUX is) (VP (AUXG being) (VP (VBN investigated) (PP (IN by) (NP (DT the) (NNP United) (NNPS Nations))) (PP (IN for) (S (VP (VBG murdering) (NP (NP (NP (NNP Lebanon) (POS 's)) (JJ former) (JJ prime) (NN minister)) (, ,) (NP (NNP Rafik) (NNP Hariri))))))))) (. .)))
(S1 (S (NP (NP (NNP Prime) (NNP Minister) (NNP Ehud) (NNP Olmert)) (PP (IN of) (NP (NNP Israel)))) (VP (AUX has) (VP (VBN rejected) (NP (NP (NNP Mr.) (NNP Assad) (POS 's)) (JJ recent) (NN peace) (NNS overtures)) (, ,) (S (VP (VBG saying) (SBAR (IN that) (S (NP (NNP Damascus)) (VP (MD must) (ADVP (RB first)) (VP (VP (VB stop) (S (VP (VBG giving) (NP (NP (NN support)) (CC and) (NP (JJ safe) (NN haven))) (PP (TO to) (NP (JJ terrorist) (NNS organizations)))))) (, ,) (CC and) (VP (VB prevent) (NP (NP (DT the) (NN flow)) (PP (IN of) (NP (NNS weapons)))) (PP (IN across) (NP (NP (DT the) (JJ Syrian) (NN border)) (PP (TO to) (NP (NP (DT the) (JJ Lebanese) (JJ militant) (NN organization)) (, ,) (NP (NNP Hezbollah))))))))))))))) (. .)))
(S1 (S (NP (NNP Roddick)) (VP (VP (VBD played) (PP (IN through) (NP (DT the) (NN injury)))) (CC and) (VP (VBD won) (S (NP (PRP$ his) (NNS singles)) (VP (VB match) (PP (IN against) (NP (NNP Fernando) (NNP Verdasco))) (PP (IN on) (NP (NNP Friday))) (S (VP (TO to) (VP (VB help) (NP (DT the) (NNP United) (NNPS States)) (PP (TO to) (NP (NP (NP (DT a) (CD 4-1) (NN victory)) (PP (IN against) (NP (NNP Spain)))) (CC and) (NP (NP (DT a) (NN berth)) (PP (IN in) (NP (NP (DT the) (NNS semifinals)) (PP (IN against) (NP (NNP Sweden)))))))) (PP (IN in) (NP (NNP September)))))))))) (. .)))
(S1 (S (CC And) (NP (PRP it)) (VP (AUX 's) (RB not) (PP (IN as) (SBAR (IN if) (S (NP (NNP Israel)) (VP (AUX has) (RB n't) (VP (VBN produced) (NP (NP (JJ worthy) (NNS composers)) (: :) (S (S (VP (VBZ works) (PP (IN by) (NP (NP (NNP Paul) (NNP Ben-Haim)) (CC and) (NP (NNP Noam) (NNP Sheriff)))) (PP (IN among) (NP (DT the) (JJR older) (NN generation))))) (, ,) (CC or) (S (NP (NP (NNP Oded) (NNP Zehavi)) (CC and) (NP (NNP Avner) (NNP Dorman))) (, ,) (PP (IN among) (NP (DT the) (JJR younger))) (, ,) (VP (MD would) (VP (AUX have) (VP (AUX been) (ADJP (JJ welcome)))))))))))))) (. .)))
(S1 (S (NP (NP (DT The) (NNP Court)) (PP (IN of) (NP (NN Appeal)))) (VP (VBD ruled) (SBAR (IN that) (S (NP (NP (NP (NNP Nigeria) (POS 's)) (NN president)) (, ,) (NP (NNP Olusegun) (NNP Obasanjo)) (, ,)) (VP (MD may) (RB not) (VP (VB unseat) (NP (NP (PRP$ his) (VBN estranged) (NN vice) (NN president)) (, ,) (NP (NNP Atiku) (NNP Abubakar)) (, ,)) (SBAR (IN because) (S (NP (NNP Mr.) (NNP Abubakar)) (VP (AUX had) (VP (VBD defected) (PP (IN from) (NP (NP (DT the) (NN president) (POS 's)) (NN party))) (S (VP (TO to) (VP (VB become) (NP (NP (DT a) (JJ presidential) (NN candidate)) (PP (IN for) (NP (DT another) (NN party)))))))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NNP New) (NNP York))) (, ,) (NP (DT these) (VBZ Spurs)) (VP (MD would) (VP (AUX have) (VP (VBN become) (NP (NP (DT the) (NN toast)) (PP (IN of) (NP (DT the) (NNP United) (NNPS Nations)))) (PP (IN with) (NP (PRP$ their) (JJ rich) (S (VP (VB blend) (PP (IN of) (NP (NP (JJ international) (NNS stars)) (, ,) (VP (VBG beginning) (CC but) (RB not) (VBG ending) (PP (IN with) (NP (NP (NP (NNP Duncan)) (PP (IN of) (NP (DT the) (NNP United) (NNPS States) (NNP Virgin) (NNP Islands)))) (, ,) (NP (NP (NNP Ginóbili)) (PP (IN of) (NP (NNP Argentina)))) (CC and) (NP (NP (NNP Tony) (NNP Parker)) (PP (IN of) (NP (NNP France)))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Hugo) (NNP Sánchez)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD replaced) (NP (DT the) (JJ Argentine) (NNP Ricardo) (NNP La) (NNP volpe)) (PP (IN as) (NP (NP (NN coach)) (PP (IN of) (NP (NP (NNP Mexico) (POS 's)) (JJ national) (NN team)))))))) (, ,)) (VP (MD will) (VP (AUX be) (PP (IN on) (NP (DT the) (NN sideline))) (PP (IN in) (NP (NP (PRP$ his) (JJ new) (NN position)) (PP (IN for) (NP (DT the) (JJ first) (NN time) (RB tonight))))))) (. .)))
(S1 (S (NP (NP (NN Peer) (NNP Steinbrück)) (, ,) (NP (NP (NP (DT the) (NN finance) (NN minister)) (PP (IN of) (NP (NNP Germany)))) (CC and) (NP (JJ current) (NNP G-7) (NN chairman))) (, ,)) (VP (AUX is) (VP (VBN expected) (S (VP (TO to) (VP (VB introduce) (NP (NNS proposals)) (PP (IN at) (NP (DT that) (NN meeting))) (S (VP (TO to) (VP (VB increase) (NP (NN transparency)) (PP (IN in) (NP (NP (DT the) (JJ multitrillion-dollar) (JJ hedge) (NN fund) (NN industry)) (, ,) (NP (NP (DT a) (NN measure)) (SBAR (S (NP (PRP$ its) (NNS advocates)) (VP (VBP hope) (SBAR (S (VP (MD could) (NP (CD one) (NN day)) (VP (VB help) (S (VP (VB prevent) (NP (DT a) (JJ serious) (JJ financial) (NN crisis)))))))))))))))))))))) (. .)))
(S1 (S (PP (TO To) (NP (NP (DT the) (NN surprise)) (PP (IN of) (NP (DT some))))) (, ,) (NP (NP (DT the) (JJS most)) (VP (VB articulate) (NP (NN speaker)) (PP (IN at) (NP (DT the) (NAC (NNP Council) (PP (IN of) (NP (NNP Fashion)))) (NNS Designers) (NN symposium))))) (VP (AUX was) (NP (NP (DT the) (NN model) (NNP Natalia) (NNP Vodianova)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD talked) (PP (IN about) (SBAR (SBAR (WHNP (WP what)) (S (NP (NN food)) (VP (VBN meant) (PP (TO to) (NP (NP (PRP her)) (VP (VBG growing) (PRT (RP up)) (NP (NP (JJ poor)) (PP (IN in) (NP (NNP Russia)))))))))) (CC and) (SBAR (WHNP (WP what)) (S (NP (PRP it)) (VP (VBD meant) (SBAR (IN once) (S (NP (PRP she)) (VP (VP (VBD became) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (NN world) (AUX 's)) (VP (ADVP (RBS most)) (VBN sought) (PP (IN after) (NP (NNS models)))))))) (, ,) (VP (AUX had) (NP (DT a) (NN child))) (CC and) (VP (VBD gained) (NP (CD 15) (NNS pounds)))))))))))))))) (. .)))
(S1 (S (NP (NP (DT An) (NN article)) (PP (IN on) (NP (NNP June) (CD 9))) (PP (IN about) (NP (NP (NNS preparations)) (PP (IN for) (NP (NP (NP (NNP President) (NNP Bush) (POS 's)) (NN visit)) (PP (TO to) (NP (NNP Albania)))))))) (VP (VBD misstated) (NP (NP (DT the) (NN position)) (PP (IN of) (NP (NP (NNP Bernard) (NNP Kouchner)) (, ,) (NP (NP (DT the) (JJ new) (JJ foreign) (NN minister)) (PP (IN of) (NP (NNP France)))) (, ,)))) (PP (IN before) (NP (NP (DT the) (JJ American-led) (NN invasion)) (PP (IN of) (NP (NNP Iraq))) (PP (IN in) (NP (CD 2003)))))) (. .)))
(S1 (S (NP (DT The) (NNP European) (NNP Union)) (ADVP (RB similarly)) (VP (VBD announced) (NP (NNS plans) (S (VP (TO to) (VP (VB resume) (NP (NP (JJ direct) (NN aid)) (PP (TO to) (NP (DT the) (NNPS Palestinians)))) (, ,) (SBAR (IN while) (S (NP (NNP Prime) (NNP Minister) (NNP Ehud) (NNP Olmert)) (VP (VBD said) (SBAR (S (NP (NNP Israel)) (VP (MD would) (VP (VB release) (PP (TO to) (NP (NNP Mr.) (NNP Abbas))) (NP (NP (JJ Palestinian) (NN tax) (NNS revenues)) (SBAR (WHNP (WDT that)) (S (NP (NNP Israel)) (VP (AUX has) (VP (VBN withheld) (SBAR (IN since) (S (NP (NNP Hamas)) (VP (VBD took) (NP (NP (NN control)) (PP (IN of) (NP (DT the) (JJ Palestinian) (NN parliament)))))))))))))))))))))))) (. .)))
(S1 (S (NP (NNP A12) (NNP Deputy)) (VP (VBZ Asks) (NP (NNP Olmert)) (S (VP (TO to) (VP (VB Resign) (S (NP (NP (NP (NNP Foreign) (NNP Minister) (NNP Tzipi) (NNP Livni)) (PP (IN of) (NP (NNP Israel)))) (, ,) (NP (NP (NNP Prime) (NNP Minister) (NNP Ehud) (NNP Olmert) (POS 's)) (NN deputy)) (, ,)) (VP (VBD called) (PP (IN on) (NP (PRP him))) (S (VP (TO to) (VP (VB resign) (PP (IN after) (NP (NP (DT a) (JJ critical) (NN government) (NN report)) (PP (IN about) (NP (NP (PRP$ his) (NN management)) (PP (IN of) (NP (NP (DT the) (NN war)) (PP (IN with) (NP (NNP Hezbollah) (JJ last) (NN summer)))))))))))))))))) (. .)))
(S1 (S (NP (NP (NN Arrest) (NN Warrant)) (VP (VBN Issued) (PP (IN for) (NP (NP (NNP Richard) (NNP Gere)) (PP (IN in) (NP (NNP India) (NNP Richard) (NNP Gere))))))) (VP (AUX was) (NP (DT a) (JJ wanted) (NN man) (NN yesterday)) (SBAR (IN after) (S (NP (NP (DT a) (NN judge)) (PP (IN in) (NP (NNP India)))) (VP (VBD issued) (NP (NP (NN arrest) (NNS warrants)) (PP (IN for) (NP (NP (PRP him)) (CC and) (NP (NP (DT the) (NNP Bollywood) (NN star) (NNP Shilpa) (NNP Shetty)) (, ,) (VP (VBG saying) (NP (PRP$ their) (VB kiss)) (PP (IN at) (NP (DT a) (JJ public) (NN function)) (, ,) (ADVP (RB right)))) (, ,) ('' '') (VP (VBN transgressed) (NP (NP (DT all) (NNS limits)) (PP (IN of) (NP (NN vulgarity)))))))))))) (, ,) ('' '') (PP (VBG according) (PP (TO to) (NP (NP (NN news) (NNS media) (NNS reports)) (VP (VBN cited) (PP (IN by) (NP (NNP The) (NNP Associated) (NNP Press)))))))) (. .)))
(S1 (S (NP (NP (NNP Prime) (NNP Minister) (NNP Ehud) (NNP Olmert)) (PP (IN of) (NP (NNP Israel)))) (VP (AUX has) (VP (VBD said) (SBAR (S (NP (DT the) (NN work)) (VP (MD will) (VP (VB continue) (, ,) (SBAR (RB even) (IN after) (S (NP (NP (PRP$ his) (NN rival) (CC and) (NN defense) (NN minister)) (, ,) (NP (NNP Amir) (NNP Peretz)) (, ,)) (ADVP (RB simultaneously)) (VP (VBD gave) (NP (NP (PRP him)) (CC and) (NP (JJ Israeli) (NNS newspapers))) (NP (NP (DT a) (NN letter)) (VP (VBG warning) (S (NP (PRP him)) (VP (TO to) (VP (VB stop) (NP (DT the) (NN work)) (S (VP (TO to) (VP (VB avoid) (NP (NN security) (NNS problems))))))))))))))))))) (. .)))
(S1 (S (NP (FW Bono)) (VP (VBD said) (SBAR (IN that) (S (NP (NP (NNP President) (NNP Jacques) (NNP Chirac)) (PP (IN of) (NP (NNP France)))) (VP (AUX had) (VP (VBN spoken) (ADVP (RB eloquently) (PP (IN of) (NP (DT the) (NN need)))) (S (VP (TO to) (VP (VB support) (NP (NNP Africa))))) (, ,) (SBAR (IN though) (S (NP (PRP he)) (VP (VBD added) (SBAR (IN that) (S (NP (NNP France)) (VP (AUX had) (RB not) (ADVP (RB yet)) (VP (VBN come) (PRT (RP through)) (PP (IN with) (NP (DT the) (NNS resources))))))))))))))) (. .)))
(S1 (S (NP (NP (NP (NP (NNP Jules) (NNP Verne) (POS 's)) ('' '') (NN Journey)) (PP (TO to) (NP (NP (DT the) (NNP Center)) (PP (IN of) (NP (DT the) (NNP Earth)))))) (, ,) ('' '') (NP (NP (DT a) (NN survey)) (PP (IN of) (NP (NP (JJ mid-19th) (: -) (NN century) (NN geological) (NNS controversies)) (VP (ADVP (RB thinly)) (VBN disguised) (PP (IN as) (NP (NP (DT a) (JJ ripping) (NN yarn)) (VP (VBN set) (PP (IN in) (NP (DT a) (JJ dinosaur-inhabited) (JJ subterranean) (NN realm)))))))))) (, ,)) (VP (AUX was) (NP (NP (DT a) (JJS best) (NN seller)) (SBAR (WHADVP (WRB when)) (S (NP (PRP it)) (VP (AUX was) (ADVP (RB first)) (VP (VBN published) (PP (IN in) (NP (NNP France))) (PP (IN in) (NP (CD 1864))))))))) (. .)))
(S1 (S (NP (NP (NP (NNP Isabel) (NNP Hoving)) (PP (IN of) (NP (DT the) (NNP Netherlands)))) (, ,) (NP (NP (NNP Rita) (NNP Williams-Garcia)) (PP (IN of) (NP (DT the) (NNP United) (NNPS States)))) (CC and) (NP (NP (NNP Markus) (NNP Zusak)) (PP (IN of) (NP (NNP Australia))))) (VP (MD will) (VP (VB participate))) (. .)))
(S1 (S (S (NP (NP (NP (NNP Mahmoud) (NNP Abbas)) (, ,) (NP (DT the) (JJ Palestinian) (NN president)) (, ,)) (CC and) (NP (NP (NNP Prime) (NNP Minister) (NNP Ehud) (NNP Olmert)) (PP (IN of) (NP (NNP Israel))))) (VP (VBD held) (NP (PRP$ their) (JJ second) (NN meeting)) (PP (IN in) (NP (DT a) (NN month))) (PP (IN on) (NP (NNP Sunday) (NN night))))) (, ,) (CC but) (S (NP (NNS aides)) (VP (VBD said) (ADVP (RB afterward)) (SBAR (IN that) (S (NP (EX there)) (VP (AUX was) (NP (NP (JJ little) (JJ concrete) (NN progress)) (PP (TO to) (NP (NN report))))))))) (. .)))
(S1 (S (NP (DT The) (NNS bishops)) (VP (AUX were) (VP (VBN met) (PP (IN by) (NP (NP (NP (NNP Israel) (POS 's)) (JJ deputy) (JJ prime) (NN minister)) (, ,) (NP (NNP Shimon) (NNP Peres)))))) (. .)))
(S1 (S (NP (NNP King) (NNP Abdullah)) (VP (AUX is) (VP (VBN scheduled) (S (VP (TO to) (VP (VB meet) (NP (NNP Tuesday)) (PP (IN with) (NP (NP (NNP Prime) (NNP Minister) (NNP Ehud) (NNP Olmert)) (PP (IN of) (NP (NNP Israel))) (PP (IN on) (NP (NP (DT the) (NNS sidelines)) (PP (IN of) (NP (NP (DT a) (NN conference)) (PP (IN in) (NP (NP (NNP Petra)) (, ,) (NP (NNP Jordan))))))))))))))) (. .)))
(S1 (S (ADVP (RB Indeed)) (, ,) (NP (JJ last) (NN year)) (, ,) (NP (DT the) (NN conference)) (VP (AUX was) (ADVP (RB perhaps)) (VP (ADVP (RB better)) (VBN known) (PP (IN for) (NP (NP (NNS sightings)) (PP (IN of) (NP (NP (NNP Ms.) (NNP Jolie)) (CC and) (NP (NP (PRP$ her) (NN boyfriend)) (, ,) (NP (NNP Brad) (NNP Pitt)) (, ,)))))) (SBAR (ADVP (IN than) (PP (IN for) (NP (NP (DT the) (NNS comments)) (PP (IN of) (NP (NP (NNP Shimon) (NNP Peres)) (PP (IN of) (NP (NNP Israel))))) (PP (IN on) (NP (DT the) (NN day)))))) (IN that) (S (NP (NNP Hamas)) (VP (AUX was) (VP (VBN elected))))))) (. .)))
(S1 (S (S (S (NP (NNP Gere) (POS 's)) (VP (VB Kiss) (NP (NNP Ignites) (NNS Protests)))) (NP (NNP Richard) (NNP Gere)) (VP (VP (VBD touched) (PRT (RP off)) (NP (NNS demonstrations) (CC and) (NNS protests)) (PP (IN in) (NP (NNP India))) (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (VP (VBD planted) (NP (JJ several) (NNS kisses)) (PP (IN on) (NP (NP (DT the) (NN face)) (PP (IN of) (NP (DT the) (NN actress))))))))) (CC and) (VP ('' '') (NP (NP (NNP Celebrity) (NNP Big) (NN Brother) ('' '') (NN winner) (NNP Shilpa) (NNP Shetty)) (, ,) (ADVP (RB right)) (, ,) (PP (IN at) (NP (NP (DT an) (NNP AIDS) (NN awareness) (NN rally)) (PP (IN in) (NP (NNP New) (NNP Delhi))))))))) (, ,) (NP (DT the) (NNP BBC)) (VP (VBD reported)) (. .)))
(S1 (S (NP (PRP I)) (VP (VBD mentioned) (PP (TO to) (NP (PRP him))) (SBAR (IN that) (S (NP (RB surely) (DT the) (NNP Soviet) (NNP Union)) (VP (VBD died) (SBAR (IN because) (S (NP (NN oil)) (VP (VBD fell) (PP (TO to) (NP ($ $) (CD 10))) (NP (DT a) (NN barrel)) (SBAR (ADVP (RB shortly)) (IN after) (S (NP (NNP Mikhail) (NNP Gorbachev)) (VP (VBD took) (NP (NN office)) (, ,) (PP (RB not) (IN because) (IN of) (NP (NP (NN anything)) (SBAR (S (NP (NNP Ronald) (NNP Reagan)) (VP (AUX did)))))))))))))))) (. .)))
(S1 (S (S (NP (PRP We)) (VP (MD shall) (VP (VP (VB draw) (NP (DT the) (NNS conclusions))) (CC and) (VP (VB learn) (NP (DT the) (NNS lessons))) (, ,) (CC and) (VP (VB instruct) (NP (PRP$ our) (NN security) (NNS people)) (S (VP (TO to) (VP (VB continue) (NP (NP (PRP$ their) (ADJP (JJ ongoing) (CC and) (JJ never-ending)) (NN struggle)) (PP (IN against) (NP (NP (NNS terrorists)) (CC and) (NP (NP (DT those)) (SBAR (WHNP (WP who)) (S (VP (VBP send) (NP (PRP them)))))))))))))))) (, ,) ('' '') (NP (NP (NP (NNP Israel) (POS 's)) (JJ prime) (NN minister)) (, ,) (NP (NNP Ehud) (NNP Olmert)) (, ,)) (VP (VBD said) (PP (IN after) (NP (DT the) (NN bombing)))) (. .)))
(S1 (S (NP (NNP Prime) (NNP Minister) (NNP Ehud) (NNP Olmert)) (VP (VBD said) (PP (IN in) (NP (NP (NNS interviews)) (VP (VBN published) (NP (NNP Friday))))) (SBAR (IN that) (S (NP (NNP Israel)) (VP (MD would) (RB not) (VP (VB allow) (S (NP (DT a) (JJ single) (JJ Palestinian) (NN refugee)) (VP (TO to) (VP (VB return) (PP (TO to) (SBAR (WHNP (WP what)) (S (VP (AUX is) (ADVP (RB now)) (NP (NNP Israel)) (, ,) (CC and) (SBAR (IN that) (S (NP (DT the) (NN country)) (VP (VBD bore) (NP (NP (DT no) (NN responsibility)) (PP (IN for) (NP (DT the) (NNS refugees)))) (SBAR (IN because) (S (NP (PRP$ their) (NN plight)) (VP (VBD resulted) (PP (IN from) (NP (NP (DT an) (NN attack)) (PP (IN by) (NP (NP (JJ Arab) (NNS nations)) (PP (IN on) (NP (NNP Israel))))) (SBAR (WHADVP (WRB when)) (S (NP (PRP it)) (VP (AUX was) (NP (DT a) (JJ fledgling) (NN state))))))))))))))))))))))))) (. .)))
(S1 (S (NP (NNP Colangelo)) (VP (VBZ credits) (NP (DT the) (JJ former) (NNS Raptors) (NN general) (NN manager) (NNP Rob) (NNP Babcock)) (PP (IN for) (S (VP (VBG signing) (NP (NN point) (NN guard) (NNP José) (NNP Calderón)) (PP (IN from) (NP (NNP Spain))))))) (. .)))
(S1 (S (PP (IN In) (NP (DT an) (NN interview))) (, ,) (NP (NNP Antonino-Custodio)) (VP (VBD said) (SBAR (S (NP (PRP she)) (VP (VBD felt) (SBAR (IN that) (S (NP (NNP Pacquiao)) (VP (AUX was) (VP (VBN pressured) (PP (IN into) (S (VP (VBG running) (PP (IN by) (NP (NP (DT the) (NN administration)) (PP (IN of) (NP (NP (NNP Gloria) (NNP Macapagal-Arroyo)) (, ,) (NP (NP (DT the) (NN president)) (PP (IN of) (NP (DT the) (NNPS Philippines)))) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX has) (VP (VBN faced) (NP (NP (NNS accusations)) (PP (IN of) (NP (NN corruption))) (, ,) (PP (VBG including) (NP (NP (DT the) (NN allegation)) (SBAR (WHNP (IN that)) (S (NP (PRP she)) (VP (VBN fixed) (NP (PRP$ her) (NN victory)) (PP (IN in) (NP (DT the) (CD 2004) (NN election)))))))))))))))))))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP A7) (NNP Turkey)) (CC and) (NP (NNP Armenia) (NNP Reach))) (PP (IN Out) (NP (NP (NP (DT The) (NN killing)) (PP (IN of) (NP (NP (NNP Hrant) (NNP Dink)) (, ,) (NP (DT an) (JJ Armenian-Turkish) (NN editor)) (, ,)))) (CC and) (NP (DT the) (NN sorrow)))) (NP (PRP it)) (VP (AUX has) (VP (VBN generated) (S (VP (AUX are) (VP (VBG leading) (PP (TO to) (NP (NP (JJ rare) (NNS gestures)) (PP (IN between) (NP (NP (NNP Turkey)) (CC and) (NP (NP (NNP Armenia)) (, ,) (NP (JJ historic) (NNS enemies)))))))))))) (. .)))
(S1 (S (NP (NNP Hitler) (NNP Comedy)) (VP (AUX Is) (NP (NP (DT the) (JJ Top) (NN Draw)) (PP (IN in) (NP (NNP Germany)))) (S (NP (NP (DT A) (JJ Jewish) (NN filmmaker) (POS 's)) (NN comedy)) (VP (VBG depicting) (NP (NP (NNP Hitler)) (PRN (-LRB- -LRB-) (NP (NP (NP (NNP Helge) (NNP Schneider)) (, ,) (NP (NN right)) (, ,)) (PP (IN with) (NP (NNP Ulrich) (NNP Mühe)))) (-RRB- -RRB-))) (SBAR (IN as) (S (NP (DT an) (JJ impotent) (, ,) (JJ bed-wetting) (NN drug) (NN addict)) (VP (VBD became) (NP (NP (DT the) (ADJP (RBS most) (JJ popular)) (NN film)) (PP (IN in) (NP (NNP Germany)))) (PP (IN in) (NP (PRP$ its) (JJ first) (NN week))) (PP (IN in) (NP (NNS theaters))) (PRN (, ,) (S (NP (NNP Agence) (NNP France-Presse)) (VP (VBD reported))) (, ,)) (S (VP (VBG citing) (NP (NP (NNP CinemaxX)) (, ,) (NP (NP (DT the) (NN country) (POS 's)) (JJS biggest) (NN theater) (NN chain))))))))))) (. .)))
(S1 (S (PP (IN With) (NP (NP (DT a) (JJ final) (NN stop)) (PP (IN in) (NP (NNP Lisbon))) (PP (IN on) (NP (NNP Friday))))) (, ,) (NP (NNP House) (NNP Speaker) (NNP Nancy) (NNP Pelosi)) (VP (VBD headed) (NP (NN home)) (PP (TO to) (NP (NP (DT a) (NNP Washington)) (SBAR (WHNP (WDT that)) (S (VP (AUX is) (ADVP (RB still)) (VP (VBG ringing) (PP (IN with) (NP (NP (NNS complaints)) (PP (IN from) (NP (JJ senior) (NNP Bush) (NNS officials))) (SBAR (IN that) (S (NP (NP (PRP$ her) (NN stop)) (PP (IN in) (NP (NNP Damascus)))) (VP (TO to) (VP (VB visit) (PP (IN with) (NP (NP (NNP Bashar) (NN al-Assad)) (, ,) (NP (DT the) (JJ Syrian) (NN president)) (, ,) (VP (VBN bolstered) (NP (NP (DT the) (NN image)) (PP (IN of) (NP (NNP Syria)))) (PP (IN at) (NP (NP (DT a) (NN time)) (SBAR (WHADVP (WRB when)) (S (NP (NNP United) (NNPS States) (NN policy)) (VP (AUX is) (S (VP (TO to) (VP (VB isolate) (NP (PRP it)))))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (DT The) (JJ next) (NN match) (RP up)) (, ,) (PP (IN between) (NP (NP (NP (NNP Chris) (NNP Guccione)) (PP (IN of) (NP (NNP Australia)))) (CC and) (NP (NP (NNP Rochus) (POS 's)) (NN brother) (NNP Olivier)))) (, ,)) (VP (AUX was) (VP (VBN played) (PP (IN under) (NP (DT a) (JJ closed) (NN roof))))) (. .)))
(S1 (S (CC Yet) (NP (NNP Foreign) (NNP Minister) (NNP Luís) (NNP Amado)) (VP (AUX has) (VP (VBN said) (SBAR (IN that) (S (NP (DT the) (NNS authorities)) (VP (AUX have) (RB not) (VP (VP (VBD found) (NP (NP (DT any) (NN evidence)) (PP (IN of) (NP (NNP C.I.A.) (NN wrongdoing))))) (CC and) (VP (VBD contested) (NP (NP (DT a) (NNP European) (NNP Parliament) (NN committee) (NN report)) (SBAR (WHNP (WDT that)) (S (VP (VBD said) (SBAR (S (NP (CD 91) (NNP C.I.A.) (NNS flights)) (VP (AUX had) (VP (VBN made) (NP (NNS stopovers)) (PP (IN in) (NP (NNP Portugal)))))))))))))))))) (. .)))
(S1 (S (NP (DT Those) (NNS visitors)) (VP (MD can) (VP (VP (VB pass) (NP (NP (DT a) (NN barbershop)) (PP (IN on) (NP (JJ 181st) (NNP Street))))) (CC and) (VP (VB see) (NP (NP (DT a) (NN customer)) (SBAR (WHNP (WP who)) (S (VP (VBZ happens) (S (VP (TO to) (VP (AUX be) (NP (NP (DT the) (NN nephew)) (PP (IN of) (NP (NP (NNP Joaquín) (NNP Balaguer)) (, ,) (NP (NP (DT a) (JJ former) (NN president)) (PP (IN of) (NP (DT the) (NNP Dominican) (NNP Republic))))))))))))))))) (. .)))
(S1 (SINV (S (PP (IN In) (NP (DT the) (NN end))) (, ,) (NP (PRP she)) (VP (VBD gave) (NP (DT a) (JJ nice) (NN speech)) (PP (IN for) (NP (NP (DT a) (NN minister)) (PP (IN of) (NP (JJ social) (NNS affairs))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Alain) (NNP Duhamel)) (, ,) (NP (NP (DT a) (JJ leading) (JJ political) (NN analyst)) (CC and) (NP (NP (DT the) (NN author)) (PP (IN of) ('' '') (NP (NP (DT The) (CD 2007) (NNPS Pretenders)) (, ,) ('' '') (NP (NP (DT a) (NN book)) (VP (VBN published) (PP (IN in) (NP (CD 2006))) (PP (IN about) (NP (NP (NP (NNP France) (POS 's)) (JJ presidential) (NNS candidates)) (SBAR (WHNP (WP$ whose) (JJ first) (NN edition)) (S (VP (VBD failed) (S (VP (TO to) (VP (VB include) (NP (NNP Ms.) (NNP Royal)) (PP (IN at) (NP (DT all)))))) (SBAR (IN because) (S (NP (NNP Mr.) (NNP Duhamel)) (VP (AUX did) (RB not) (VP (VB take) (NP (PRP her)) (ADVP (RB seriously)))))))))))))))))) (. .)))
(S1 (S (NP (NNP Venezuela)) (VP (VBD shut) (NP (NP (DT an) (NN aluminum) (NN plant)) (PP (IN in) (NP (NNP Costa) (NNP Rica)))) (PP (IN with) (NP (CD 400) (NNS employees))) (NP (JJ last) (NN week)) (SBAR (IN after) (S (NP (NP (JJ Óscar) (NNP Arias)) (, ,) (NP (NP (NNP Costa) (NNP Rica) (POS 's)) (NN president)) (, ,)) (VP (VBD criticized) (NP (NP (NNP Mr.) (NNP Chávez) (POS 's)) (ADJP (RB recently) (VBN acquired)) (NN power) (S (VP (TO to) (VP (VB govern) (PP (IN by) (NP (NN decree))))))))))) (. .)))
(S1 (S (NP (PRP They)) (VP (VBP include) (NP (NP (NNP Ivan) (NNP Basso)) (, ,) (SBAR (SBAR (WHNP (WP who)) (S (VP (MD will) (VP (VB defend) (NP (PRP$ his) (NN title)) (PP (IN at) (NP (NP (DT the) (NN Tour)) (PP (IN of) (NP (NNP Italy))))) (NP (DT this) (NN year)))))) (CC and) (SBAR (WHNP (WP who)) (S (VP (AUX has) (ADVP (RB previously)) (VP (VBN finished) (ADJP (JJ second) (CC and) (JJ third)) (PP (IN in) (NP (NP (DT the) (NN Tour)) (PP (FW de) (NP (NNP France)))))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NP (DT the) (NN wake)) (PP (IN of) (NP (DT the) (NNP Shin) (NN Bet) (NN statement))))) (, ,) (NP (NP (NNP David) (NNP Baker)) (, ,) (NP (NP (DT an) (NN official)) (PP (IN in) (NP (NP (DT the) (NN office)) (PP (IN of) (NP (NP (NP (NNP Israel) (POS 's)) (JJ prime) (NN minister)) (, ,) (NP (NNP Ehud) (NNP Olmert))))))) (, ,)) (VP (VBD said) (SBAR (S (NP (NNP Hamas)) ('' '') (VP (VBZ continues) (S (VP (TO to) (VP (VB target) (NP (NNP Israeli) (NNS civilians))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Klaus) (NNP Kleinfeld)) (, ,) (NP (NP (JJ chief) (NN executive)) (PP (IN of) (NP (NP (NNP Siemens)) (, ,) (NP (DT the) (NN engineering) (NN conglomerate))))) (, ,)) (VP (VBD said) (SBAR (IN that) (S (NP (PRP it)) (VP (AUX had) (ADJP (NP (CD 2,500) (NNS positions)) (JJ open)) (PP (IN in) (NP (NNP Germany))) (ADVP (RB alone)))))) (. .)))
(S1 (S (NP (NP (NNP François) (NNP Bayrou)) (, ,) (NP (DT the) (JJ centrist)) (, ,)) (VP (VBD declared) (SBAR (IN that) (S (NP (PRP he)) (VP (VBD loved) (NP (NNP France)) (ADVP (ADVP (RBR more)) (SBAR (IN than) (S (NP (PRP he)) (VP (VBD loved) (NP (NN power)))))))))) (. .)))
(S1 (S (NP (NP (NP (DT The) (NNP European) (NNP Union) (POS 's)) (NN trade) (NN commissioner)) (, ,) (NP (NNP Peter) (NNP Mandelson)) (, ,)) (VP (VBD telephoned) (NP (NP (DT the) (NNP Indian) (NNP commerce) (NN minister)) (, ,) (NP (NNP Kamal) (NNP Nath)) (, ,)) (PP (IN on) (NP (NNP Sunday) (NN evening))) (S (VP (TO to) (VP (VB emphasize) (NP (PRP$ its) (NN wish) (SBAR (IN that) (S (NP (NNP India)) (VP (AUX be) (ADJP (JJ open) (PP (TO to) (NP (NP (JJ foreign) (NNS bids)) (PP (IN for) (NP (NNP Hutchison) (NNP Essar)))))))))))))) (. .)))
(S1 (SINV (S (NP (NNP Tinku)) (VP (AUX is) (NP (DT a) (JJ sublime) (, ,) (JJ beautiful) (NN act)))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Wilson) (NNP Araoz)) (, ,) (NP (NP (NP (DT the) (NN mayor)) (PP (IN of) (NP (NNP Sacaca)))) (CC and) (NP (NP (DT a) (VBG leading) (NN official)) (PP (IN in) (NP (NP (DT the) (NNP Popular) (NNP Indigenous) (NNP Movement)) (, ,) (NP (NP (DT a) (NN party)) (SBAR (WHNP (WDT that)) (S (VP (AUX is) (NP (NP (NN part)) (PP (IN of) (NP (NP (DT the) (NN coalition)) (VP (VBG supporting) (NP (NP (NNP Evo) (NNP Morales)) (, ,) (NP (NP (NNP Bolivia) (POS 's)) (JJ first) (NN indigenous) (NN president)))))))))))))))) (. .)))
(S1 (SINV (PP (IN At) (NP (NP (DT the) (NN forefront)) (PP (IN of) (NP (DT the) (NNS acquirers))))) (VP (AUX is)) (NP (NP (NNP Alessandro) (NNP Profumo)) (, ,) (NP (NP (JJ chief) (NN executive)) (PP (IN of) (NP (NP (NNP UniCredit)) (, ,) (NP (NP (NNP Italy) (POS 's)) (JJS largest) (NN bank)) (, ,) (SBAR (WHNP (WDT which)) (S (NP (JJ last) (NN week)) (VP (VBD agreed) (S (VP (TO to) (VP (VB buy) (NP (NP (DT a) (NN rival)) (, ,) (NP (NNP Capitalia)) (, ,)) (PP (IN for) (NP (NP (QP (CD 21.8) (CD billion)) (NNS euros)) (PRN (-LRB- -LRB-) (NP (QP ($ $) (CD 29) (CD billion))) (-RRB- -RRB-)))))))))))))) (. .)))
(S1 (S (PP (IN On) (NP (NNP March) (CD 10) (, ,) (CD 2004))) (, ,) (NP (NP (DT the) (VBG departing) (JJ prime) (NN minister)) (, ,) (NP (NP (NNP José) (NNP María) (NNP Aznar)) (PP (IN of) (NP (DT the) (NNP Popular) (NNP Party)))) (, ,)) (VP (VBD boasted) (PP (IN in) (NP (DT an) (NN interview))) (PP (IN that) (S (S (NP (NNP Spain)) (VP (AUX had) (VP (VBN enjoyed) (NP (NP (CD eight) (NNS years)) (PP (IN of) ('' '') (NP (JJ spectacular) (JJ economic) (NN growth) ('' '')))) (PP (IN under) (NP (PRP$ his) (NN leadership)))))) (CC and) (S (NP (DT that) (NN terrorism)) ('' '') (VP (AUX is) (ADJP (ADJP (NP (DT a) (NN lot)) (JJR weaker)) (SBAR (IN than) (S (NP (PRP it)) (VP (AUX was) ('' '') (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (VP (VBD took) (NP (NN office)))))))))))))) (. .)))
(S1 (S (CC But) (NP (PRP it)) (VP (AUX is) (ADVP (RB far) (PP (IN from) (NP (NP (DT the) (JJ happy) (NN ending)) (VP (VBD predicted) (ADVP (NP (CD six) (NNS months)) (RB ago)) (PP (IN by) (NP (NP (NNP Prime) (NNP Minister) (NNP José) (NNP Luis) (NNP Rodríguez) (NNP Zapatero)) (PP (IN of) (NP (NNP Spain))) (, ,) (SBAR (WHNP (WP$ whose) (NN government)) (S (VP (VBD fought) (S (VP (TO to) (VP (VB keep) (NP (NNP Endesa)) (PP (IN out) (PP (IN of) (NP (NP (NNP E.) (NNP On) (POS 's)) (NNS hands)))) (, ,) (S (ADVP (RB only)) (VP (TO to) (ADVP (RB now)) (VP (VB see) (NP (NP (DT a) (NN proposal)) (PP (IN for) (NP (DT the) (NN company))) (S (VP (TO to) (VP (AUX be) (VP (VP (VBN carved) (PRT (RP up))) (CC and) (VP (VBN shared) (PRT (RP out)))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (DT A) (NN meeting)) (VP (VBN scheduled) (PP (IN for) (NP (NNP Thursday))) (PP (IN between) (NP (NP (NP (NP (DT the) (JJ prime) (NN minister)) (PP (IN of) (NP (NNP Israel)))) (, ,) (NP (NNP Ehud) (NNP Olmert)) (, ,)) (CC and) (NP (NP (DT the) (JJ Palestinian) (NN president)) (, ,) (NP (NNP Mahmoud) (NNP Abbas)) (, ,)))))) (VP (AUX has) (VP (AUX been) (VP (VBN postponed) (, ,) (PP (ADVP (RB largely)) (IN over) (SBAR (WHNP (WP what)) (S (VP (VBD appeared) (S (VP (TO to) (VP (AUX be) (NP (NP (DT the) (NN issue)) (PP (IN of) (NP (NP (DT the) (NNS conditions)) (SBAR (WHPP (IN under) (WHNP (WDT which))) (S (NP (NNP Israel)) (VP (MD would) (VP (VB turn) (PRT (RP over)) (NP (NP (NN tax) (NNS revenues)) (SBAR (S (NP (PRP it)) (VP (VBZ collects) (PP (IN for) (NP (DT the) (NNPS Palestinians)))))))))))))))))))))))) (. .)))
(S1 (SINV (PP (IN Among) (NP (NP (DT those)) (VP (VBN detained) (PP (IN at) (NP (DT a) (NNP Moscow) (NN airport)))))) (VP (AUX was)) (NP (NP (NNP Garry) (NNP Kasparov)) (, ,) (NP (DT the) (JJ former) (NN chess) (NN champion)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (PP (IN on) (NP (NP (PRP$ his) (NN way)) (PP (TO to) (NP (NP (DT the) (JJS latest)) (PP (IN in) (NP (NP (DT a) (NN series)) (PP (IN of) (NP (NP (NNS protests)) (VP (VBN organized) (PP (IN by) (NP (NP (NNP Other) (NNP Russia)) (, ,) (NP (NP (DT a) (JJ loose) (NN opposition) (NN coalition)) (SBAR (S (NP (PRP he)) (VP (VBZ leads)))))))))))))))))))) (. .)))
(S1 (S (NP (NP (DT The) (NN ascension)) (PP (IN in) (NP (NNP January) (CD 2006))) (PP (TO to) (NP (NP (NP (NNP Bolivia) (POS 's)) (NN presidency)) (PP (IN of) (NP (NP (NNP Evo) (NNPS Morales)) (, ,) (NP (NP (DT an) (NNP Aymara) (NNP Indian)) (SBAR (WHNP (WP who)) (S (ADVP (RB previously)) (VP (VBD served) (PP (IN as) (NP (NP (DT the) (NN head)) (PP (IN of) (NP (NP (DT a) (JJ coca-growing) (NN syndicate)) (PP (IN in) (NP (NP (DT the) (NN country) (POS 's)) (NNP Chapare) (NN region))))))))))) (, ,)))))) (VP (AUX has) (ADVP (RB dramatically)) (VP (VBN boosted) (NP (NP (NP (NNP Mr.) (NNP Ugalde) (POS 's)) (NN profile)) (CC and) (NP (PRP$ his) (NNS fortunes))))) (. .)))
(S1 (SINV (ADVP (RB Nowhere)) (AUX have) (NP (PRP I)) (VP (VBD found) (ADJP (DT this) (RBR more) (JJ true)) (, ,) (ADVP (RB though)) (, ,) (PP (IN than) (PP (IN in) (NP (NNP Australia)))) (, ,) (INTJ (WRB where)) ('' '') (SBAR (S (NP (NP (DT the) (JJ big) (JJ dry)) (, ,) ('' '') (NP (DT a) (JJ six-year) (NN record) (NN drought)) (, ,)) (VP (AUX has) (VP (JJ parched) (NP (DT the) (NNP Aussie) (NN breadbasket)) (ADVP (ADVP (RB so) (RB severely)) (SBAR (IN that) (S (PP (IN on) (NP (NNP April) (CD 19))) (, ,) (NP (NNP Prime) (NNP Minister) (NNP John) (NNP Howard)) (ADVP (RB actually)) (VP (VBD asked) (NP (DT the) (JJ whole) (NN country)) (S (VP (TO to) (VP (VB pray) (PP (IN for) (NP (NN rain))))))))))))))) (. .) ('' '')))
(S1 (S (S (NP (NP (DT An) (JJ Israeli) (NN man)) (VP (VBN died) (PP (IN from) (NP (DT a) (NNP Qassam) (NN rocket))))) (VP (VBD launched) (PP (IN from) (NP (NNP Gaza))) (PP (IN on) (NP (NNP Sunday))))) (, ,) (CC and) (S (NP (NNP Prime) (NNP Minister) (NNP Ehud) (NNP Olmert)) (VP (VBD vowed) (S (VP (TO to) (VP (VB continue) (NP (NP (NP (NNP Israel) (POS 's)) (JJ military) (NN assault)) (PP (IN on) (NP (NNP Hamas)))) (PP (IN as) (NP (DT an) (NN effort) (S (VP (TO to) (VP (VB stop) (NP (DT the) (NN rocket) (NN fire))))))) (, ,) (S (VP (VBG warning) (SBAR (IN that) (S ('' '') (NP (NP (DT no) (NN one)) (VP (VBN involved) (PP (IN in) (NP (NN terror))))) (VP (AUX is) (ADJP (JJ immune)))))))))))) (. .) ('' '')))
(S1 (S (PP (IN On) (NP (NP (DT a) (NN Wing)) (CC and) (NP (DT a) (NN Prayer) (NNP Leonardo) (NN da)))) (NP (NP (NNP Vinci) (POS 's)) ('' '') (NNP Annunciation)) (, ,) ('' '') (S (NP (NP (DT the) (JJ 15th-century) (NN masterpiece)) (SBAR (WHNP (WDT that)) (S (ADVP (RB almost) (RB never)) (VP (VBZ leaves) (NP (NP (PRP$ its) (NN home)) (PP (IN in) (NP (NP (DT the) (NNP Uffizi) (NNP Gallery)) (PP (IN in) (NP (NP (NNP Florence)) (, ,) (NP (NNP Italy)) (, ,)))))))))) (ADVP (RB safely)) (VP (VBN reached) (NP (NP (DT the) (NNP National) (NNP Museum)) (PP (IN in) (NP (NNP Tokyo)))) (NP (NN yesterday)))) (, ,) (NP (DT the) (NNP Associated) (NNP Press)) (VP (VBD reported)) (. .)))
(S1 (S (PP (IN In) (NP (NP (NN addition)) (PP (TO to) (NP (NP (DT the) (NN prospect)) (PP (IN of) (S (NP (NNP Mr.) (NNP Trump)) (VP (AUXG being) (ADJP (JJ cross-examined) (PP (IN about) (NP (DT the) (CD 2003) (NN shareholder) (NN meeting))))))))))) (, ,) (NP (EX there)) (VP (AUX was) (NP (NN concern) (SBAR (IN that) (S (NP (NNP Mr.) (NNP Black)) (VP (MD would) (VP (VB attempt) (S (VP (TO to) (VP (VB exchange) (NP (NP (NNS pleasantries)) (PP (IN with) (NP (NNP Mr.) (NNP Trump)))) (PP (IN in) (NP (NN court))) (, ,) (SBAR (IN as) (S (NP (PRP he)) (VP (AUX did) (NP (JJ last) (NN week)) (PP (IN with) (NP (NP (NNP Kenneth) (NNP Whyte)) (, ,) (NP (NP (DT a) (NN witness)) (PP (IN for) (NP (PRP him))) (SBAR (WHNP (WP who)) (S (VP (VBD used) (S (VP (TO to) (VP (VB work) (PP (IN for) (NP (PRP him)))))) (PP (IN as) (NP (NP (DT an) (NN editor)) (PP (IN in) (NP (NNP Canada))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (DT The) (NNS charges)) (, ,) (VP (VBN brought) (PP (IN by) (NP (NP (DT the) (NNP Paris) (NNP Mosque)) (CC and) (NP (NP (DT the) (NNP Union)) (PP (IN of) (NP (NP (NNP Islamic) (NNPS Organizations)) (PP (IN of) (NP (NNP France))))))))) (, ,)) (VP (VBD accused) (NP (NP (DT the) (NN newspaper)) (, ,) (NP (NNP Charlie) (NNP Hebdo)) (, ,) (CC and) (NP (NP (PRP$ its) (NN editor)) (, ,) (NP (NNP Philippe) (NNP Val)) (, ,))) (PP (IN of) (S ('' '') (ADVP (RB publicly)) (VP (VBG abusing) (NP (NP (DT a) (NN group)) (PP (IN of) (NP (NNS people)))) (PP (IN because) (IN of) (NP (PRP$ their) (NN religion))))))) (. .) ('' '')))
(S1 (S (PP (IN In) (NP (NNP Bolivia))) (, ,) (NP (NNP President) (NNP Evo) (NNP Morales)) (VP (AUX is) (VP (VBG trying) (S (VP (TO to) (VP (VB use) (NP (NP (PRP$ his) (NN country) (POS 's)) (NN gas) (NNP reservoirs)) (S (VP (TO to) (VP (VB force) (S (NP (JJ neighboring) (NNP Chile)) (VP (TO to) (VP (VB give) (NP (PRP$ his) (JJ landlocked) (NN country)) (NP (NP (DT a) (NN corridor)) (PP (TO to) (NP (DT the) (NN sea))))))))))))))) (. .)))
(S1 (S (PP (IN Since) (NP (NP (DT the) (NN war)) (PP (IN in) (NP (NNP Lebanon))) (NP (JJ last) (NN summer)))) (, ,) (NP (NP (NNS newspapers)) (, ,) (NP (NN TV) (NN news) (NNS channels)) (CC and) (NP (NP (NNP Web) (NNS sites)) (PP (IN in) (NP (NP (NNP Egypt)) (, ,) (NP (NNP Saudi) (NNP Arabia)) (CC and) (RB elsewhere))))) (VP (AUX have) (VP (VBN reported) (SBAR (IN that) (S (NP (NP (NNP Sunnis)) (, ,) (VP (VBN taken) (PP (IN with) (NP (NP (NP (NNP Hezbollah) (POS 's)) (JJ charismatic) (NNP Shiite) (NN leader) (NNP Hassan) (NNP Nasrallah)) (CC and) (NP (NP (NP (PRP$ his) (NN group) (POS 's)) ('' '') (NN resistance) ('' '')) (PP (TO to) (NP (NNP Israel))))))) (, ,)) (VP (AUX were) (VP (VBG converting) (PP (TO to) (NP (NNP Shiite) (NNP Islam))))))))) (. .)))
(S1 (S (PP (TO To) (NP (NP (DT those)) (SBAR (WHNP (WP who)) (S (VP (VBP say) (SBAR (IN that) (S (, ,) (PP (IN at) (NP (NP (NNP Israel) (POS 's)) (NN creation))) (, ,) (NP (DT no) (NNP Palestinian)) (VP (AUX was) (VP (VBN forced) (PRT (RP out))))))))))) (, ,) (NP (NNP Mr.) (NNP Nusseibeh)) (VP (MD can) (VP (VB note) (SBAR (IN that) (S (NP (PRP$ his) (JJ pregnant) (NN mother) (CC and) (NN grandmother)) (VP (AUX were) (VP (VBN expelled) (PP (IN from) (NP (NP (PRP$ their) (NN home)) (PP (IN in) (NP (NNP Ramle))))) (PP (IN by) (NP (NP (NNS soldiers)) (VP (VP (VBN led) (PP (IN by) (NP (NNP Yitzhak) (NNP Rabin)))) (CC and) (VP (VBN obliged) (S (VP (TO to) (VP (VB walk) (PP (IN into) (NP (NNP Jordan-controlled) (NNP East) (NNP Jerusalem)))))))))))))))) (. .)))
(S1 (S (NP (NP (DT The) (JJ 100-minute) (NN encounter)) (PP (IN between) (NP (NP (NP (NNP Ms.) (NNP Royal)) (, ,) (NP (NP (DT the) (NN candidate)) (PP (IN of) (NP (DT the) (NN left)))) (, ,)) (CC and) (NP (NP (NNP François) (NNP Bayrou)) (, ,) (NP (NP (DT the) (JJ centrist) (NN candidate)) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN knocked) (PRT (RP out)) (PP (IN of) (NP (DT the) (NN race))) (PP (IN in) (NP (DT the) (JJ first) (NN round)))))))) (, ,))))) (VP (AUX was) (NP (NP (DT a) (JJ first)) (SBAR (IN since) (S (NP (JJ presidential) (NNS debates)) (VP (VBD began) (PP (IN in) (NP (NNP France))) (PP (IN in) (NP (DT the) (CD 1974) (NN race)))))))) (. .)))
(S1 (S (S (NP (DT The) (NNP Popular) (NNP Party)) (VP (AUX is) (, ,) (ADVP (RB once) (RB again)) (, ,) (NP (NP (NNP Spain) (POS 's)) (NNP No.) (CD 1) (NN party)))) (, ,) ('' '') (NP (NP (NNP Mariano) (NNP Rajoy)) (, ,) (NP (DT the) (NNP Popular) (NNP Party) (NN leader)) (, ,)) (VP (VBD told) (NP (NP (NNS supporters)) (PP (IN in) (NP (NNP Madrid))))) (. .)))
(S1 (S (NP (DT The) (NNP United) (NNPS Nations) (NNP Development) (NNP Program)) (VP (VBD announced) (NP (NNP Monday)) (SBAR (IN that) (S (NP (PRP it)) (VP (AUX was) (VP (VBG suspending) (NP (NP (NN work)) (PP (IN in) (NP (NNP North) (NNP Korea)))) (SBAR (IN because) (S (NP (DT the) (NN country)) (VP (AUX had) (VP (VBN failed) (S (VP (TO to) (VP (VB meet) (NP (NP (NNS conditions)) (VP (VBN set) (PRT (RP up)) (PP (IN in) (NP (NP (NN response)) (PP (TO to) (NP (NP (NNP American) (NNS complaints)) (SBAR (WHNP (WDT that)) (S (NP (NNP United) (NNPS Nations) (NN money)) (VP (AUX was) (VP (AUXG being) (VP (VBN diverted) (PP (TO to) (NP (NP (DT the) (NN government)) (PP (IN of) (NP (NNP Kim) (NNP Jong-il)))))))))))))))))))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT The) (JJ upbeat) (NN sprinter) (NNP Libby) (NNP Lenton)) (PP (IN of) (NP (NNP Australia)))) (VP (VP (AUX is) (VP (VBN entered) (PP (IN in) (NP (NP (CD seven) (NNS events)) (ADVP (RB here)))))) (CC and) (VP (ADVP (RB already)) (AUX has) (NP (JJ gold) (NNS medals)) (PP (IN in) (NP (NP (DT the) (CD 4-by-100) (JJ freestyle) (NN relay)) (CC and) (NP (DT the) (CD 100) (NN butterfly)))))) (. .)))
(S1 (S (NP (NNP Gianni) (NNP Agnelli)) (VP (AUX is) (NP (NP (NP (DT a) (JJ near) (JJ mythic) (NN figure)) (PP (IN in) (NP (NNP Italy)))) (: :) (NP (NP (DT A) (JJ fabled) (NN industrialist)) (SBAR (WHNP (WP who)) (S (VP (VBD turned) (NP (NP (PRP$ his) (NN family) (POS 's)) (NN car) (NN company)) (PP (IN into) (NP (NP (NP (DT the) (ADJP (RBS most) (JJ important)) (NN company)) (PP (IN in) (NP (NNP Italy)))) (CC and) (NP (NP (CD one)) (PP (IN of) (NP (DT the) (JJ major) (NNP European) (NN car) (NNS builders)))))))))))) (. .)))
(S1 (S (NP (NP (NNP Viswanathan) (NNP Anand)) (PP (IN of) (NP (NNP India))) (, ,) (VP (VP (VBN poised) (S (VP (TO to) (VP (VB become) (NP (NP (DT the) (NN world) (POS 's)) (JJ top-ranked) (NN player)))))) (CC and) (VP (ADVP (RB generally)) (VBN acknowledged) (PP (IN as) (NP (DT the) (JJS best) (JJ rapid) (NN player))))) (, ,)) (VP (AUX has) (VP (VP (VBN won)) (CC or) (VP (VBN tied) (PP (IN for) (NP (JJ first) (CD six) (NNS times)))))) (. .)))
(S1 (S (NP (NNP Ratan) (NNP Tata)) (VP (VBD washed) (NP (NNS dishes)) (PP (IN as) (NP (NP (DT a) (NN college) (NN student)) (PP (IN at) (NP (NNP Cornell) (NNP University))))) (SBAR (IN because) (S (SBAR (WHNP (WP what)) (S (VP (AUX was) (ADVP (RB perhaps)) (NP (NP (NNP India) (POS 's)) (JJS richest) (NN family))))) (VP (MD could) (RB not) (ADVP (RB legally)) (VP (VB wire) (NP (PRP him)) (NP (NN money)) (PP (IN for) (NP (NN food)))))))) (. .)))
(S1 (S (-LRB- -LRB-) (NP (NNS Pareles)) (-RRB- -RRB-) (NP (PRP YOU)) (VP (AUX AM) (NP (NP (PRP I)) (PRN (-LRB- -LRB-) (NP (NNP Sunday)) (-RRB- -RRB-)) (PP (IN With) (NP (NP (PRP$ its) (JJ exhilarating) (NNS rave-ups)) (CC and) (NP (NP (NNP Tim) (NNP Rogers) (POS 's)) (JJ windmill) (JJ guitar) (NNS slashes))))) (: --) (CC both) (VP (VBG recalling) (NP (NP (DT the) (JJS best)) (PP (IN of) (NP (NP (DT the)) (SBAR (WHNP (WP Who)) (S (: --) (NP (PRP You)) (VP (AUX Am) (SBAR (S (NP (PRP I)) (VP (AUX is) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (ADJP (RBS most) (JJ exciting)) (NNS bands)) (SBAR (S (VP (TO to) (VP (VB come) (PRT (RP out)) (PP (IN of) (NP (NNP Australia))) (PP (IN in) (NP (DT a) (NN decade))) (, ,) (SBAR (IN though) (S (NP (PRP it)) (NP (NNP h))))))))))))))))))))))))
(S1 (S (ADVP (RB Then)) (, ,) (PP (IN on) (NP (NNP Sunday))) (, ,) (NP (NP (DT The) (NNP Star-Ledger)) (PP (IN of) (NP (NNP Newark)))) (VP (VBD reported) (SBAR (IN that) (S (NP (NP (NNP Christopher) (NNP J.) (NNP Christie)) (, ,) (NP (NP (DT the) (NNP United) (NNP States) (NN attorney)) (PP (IN for) (NP (NNP New) (NNP Jersey)))) (, ,)) (VP (AUX had) (VP (VBN issued) (NP (NP (DT a) (JJ broad) (NN subpoena)) (PP (TO to) (NP (NP (NP (DT the) (NN state) (POS 's)) (NNP Office)) (PP (IN of) (NP (NP (JJ Legislative) (NNPS Services)) (, ,) (SBAR (WHNP (WDT which) (NNS functions)) (S (PP (IN as) (NP (NP (NP (DT the) (NNP Legislature) (POS 's)) (NN counsel)) (CC and) (NP (JJ administrative) (NN arm)))) (, ,) (NP (VBG seeking) (NNS records)) (VP (VBD related) (PP (TO to) (NP (NP (NNS millions)) (PP (IN of) (NP (NNS dollars))) (PP (IN in) (NP (NN state) (NNS grants)))))))))))))))))) (. .)))
(S1 (S (PP (IN At) (NP (NP (DT the) (NN world) (NN championship) (NN tournament)) (PP (IN under) (NP (NN way))) (PP (IN in) (NP (DT the) (NNP Moscow) (NNS suburbs))))) (, ,) (NP (NP (NP (DT the) (NNP United) (NNPS States)) (JJ national) (NN team) (POS 's)) (VBG leading) (NN scorer)) (VP (AUX is) (NP (NP (NP (NNP Lee) (NNP Stempniak)) (PP (IN of) (NP (DT the) (NNPS Blues)))) (, ,) (NP (NP (DT a) (NN native)) (PP (IN of) (NP (NP (DT the) (NNP Buffalo) (NN suburb)) (PP (IN of) (NP (NNP West) (NNP Seneca)))))))) (. .)))
(S1 (NP (NNP XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)))
(S1 (S (NP (NNP Carl) (NNP Friedrich) (NNP von) (NNP Weizsäcker)) (VP (AUX was) (VP (VBN born) (PP (IN in) (NP (NP (NNP Kiel)) (, ,) (NP (NNP Germany)) (, ,))) (PP (IN on) (NP (NNP June) (CD 28) (, ,) (CD 1912))))) (. .)))
(S1 (S (NP (NP (NNP Lisa) (NNP Ray)) (, ,) (NP (NP (DT the) (NN actress)) (SBAR (SBAR (WHNP (WP who)) (S (VP (VBD said) (SBAR (S (NP (PRP she)) (VP (VBD wept) (ADVP (RB unabashedly)) (PP (IN after) (S (ADVP (RB first)) (VP (VBG reading) (NP (DT the) (NN script))))))))))) (CC and) (SBAR (WHNP (WP who)) (S (VP (VBD played) (NP (NP (CD one)) (PP (IN of) (NP (DT the) (JJ lead) (NNS roles))))))))) (, ,)) (VP (AUX was) (PP (IN at) (NP (NP (NP (PRP$ her) (NNS parents) (POS ')) (NN home)) (PP (IN in) (NP (NNP Toronto))))) (SBAR (WHADVP (WRB when)) (S (NP (PRP she)) (VP (VBD heard) (NP (DT the) (NN news)))))) (. .) ('' '')))
(S1 (S (NP (NP (NP (CD One)) (PP (IN of) (NP (PRP$ his) (NNS friends)))) (, ,) (NP (NP (DT the) (JJ saxophonist) (NNP Joe) (NNP Lovano)) (PRN (: --) (SBAR (WHNP (WP who)) (S (VP (AUX is) (NP (CD 54)) (ADVP (RB now))))) (: --)))) (VP (VBD spoke) (PP (IN of) (SBAR (WHADVP (WRB how)) (S (NP (NP (PRP$ his) (NN father)) (, ,) (NP (DT the) (NN bop-era) (NNP Cleveland) (NN saxophonist) (NNP Tony) (NNP Lovano)) (, ,)) (VP (VBD adored) (NP (NP (DT the) (ADJP (RB fairly) (JJ far-out)) (NNP Ornette) (NNP Coleman) (NN record)) ('' '') (SBAR (S (NP (NNP New) (NNP York)) (VP (AUX Is) (ADVP (RB Now))))))))))) (. !) ('' '')))
(S1 (S (ADVP (RB Already)) (NP (NP (DT a) (NN favorite)) (PP (IN of) (NP (NP (NNP Latin) (NNP American) (NNS actors) (, ,) (NNS models) (CC and) (NNS rockers)) (, ,) (PP (JJ such) (IN as) (NP (DT the)))))) ('' '') (NP (NNP Y) (NNP Tu) (NNP Mamá) (NNP También)) ('' '') (VP (VBZ stars) (SBAR (S (NP (NP (NP (NP (NNP Gael) (NNP García) (NNP Bernal)) (CC and) (NP (NNP Diego) (NNP Luna))) (PRN (-LRB- -LRB-) (S (NP (NNP Mr.) (NNP Luna)) (VP (AUX is) (NP (DT an) (NN investor)))) (-RRB- -RRB-))) (, ,) (NP (NP (NNP NaCo) (POS 's)) (NNP Mexico) (NNP City) (NN flagship) (NN store))) (VP (AUX is) (VP (VBG emerging) (PP (IN as) (NP (NP (DT a) (JJ sartorial) (NN pilgrimage) (NN site)) (PP (IN for) (NP (NP (DT the) (NN brand) (POS 's)) (JJ early) (NNS adopters)))))))))) (. .)))
(S1 (S (S (NP (NN EX-GOVERNOR)) (VP (VBZ TESTIFIES) (S (NP (NP (NNP Conrad) (NNP M.) (NNP Black)) (CC and) (NP (JJ other) (NNP Hollinger) (NNP International) (NNS executives))) (VP (ADVP (RB improperly)) (VBN diverted) (NP (QP (JJR more) (IN than) ($ $) (CD 15) (CD million))) (PP (TO to) (NP (NP (DT a) (VBG holding) (NN company)) (SBAR (S (NP (NNP Mr.) (NNP Black)) (VP (VBD controlled)))))))))) (, ,) (NP (NP (JJ former) (NNP Gov.) (NNP James) (NNP R.) (NNP Thompson)) (PP (IN of) (NP (NNP Illinois)))) (VP (VBD told) (NP (NNS jurors)) (PP (IN in) (NP (NNP Chicago)))) (. .)))
(S1 (S (NP (PRP He)) (VP (AUX is) (NP (NP (NNP Samuel) (NNP Adams)) (: --) (RB not) (NP (NNP John) (NNP Adams)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX is) (VP (VBN buried) (PP (IN at) (NP (NNP United) (NNP First) (NNP Parish) (NNP Church))) (PP (IN in) (NP (NP (NNP Quincy)) (, ,) (NP (NNP Mass.)))))))))) (. .)))
(S1 (S (SBAR (IN With) (S (NP (DT each) (NN team)) (ADJP (JJ able) (S (VP (TO to) (VP (VB call) (NP (DT a) (NN recruit)) (ADVP (RB only) (RB once)) (PP (IN from) (NP (NNP April) (CD 15))) (PP (PP (TO to) (NP (NNP May) (CD 31))) (CC and) (RB not) (PP (ADVP (RB again)) (IN until) (NP (NNP Sept.) (CD 1)))))))))) (, ,) (NP (DT the) (NNS coaches)) (VP (VBD jostled) (S (VP (TO to) (VP (AUX be) (VP (VBN seen) (PP (IN by) (S (NP (NNP Brown)) (, ,) (ADVP (RB possibly)) (NP (NP (DT the) (JJS best) (NN player)) (PP (IN from) (NP (NNP Wichita))) (PP (IN since) (NP (NP (DT the) (NNP Hall)) (PP (IN of) (NP (NNP Fame)))))) (VP (VBG running) (PRT (RP back)) (NP (NNP Barry) (NNP Sanders)))))))))) (. .) ('' '')))
(S1 (S (S (NP (NP (NNP Timbaland)) (, ,) (NP (CD 35)) (, ,)) (VP (AUX was) (VP (VBN born) (NP (NNP Timothy) (NNP Mosley)) (PP (IN in) (NP (NP (NNP Norfolk)) (, ,) (NP (NNP Va.))))))) (, ,) (CC and) (S (NP (PRP he)) (VP (VBD spent) (PP (IN about) (NP (DT a) (NN decade))) (PP (IN as) (NP (DT a) (NNP D.J.) (CC and) (NN fledgling) (NN producer))))) (. .)))
(S1 (S (NP (NP (NNP Michael) (NNP Smuin)) (, ,) (NP (NP (DT the) (NN son)) (PP (IN of) (NP (DT a) (NNP Safeway) (NN butcher)))) (, ,)) (VP (AUX was) (VP (VBN born) (PP (IN in) (NP (NP (NNP Missoula)) (, ,) (NP (NNP Mont.)) (, ,))) (PP (IN on) (NP (NNP Oct.) (CD 13) (, ,) (CD 1938))))) (. .)))
(S1 (S (NP (NP (NP (NNP Myanmar) (POS 's)) (JJ deputy) (JJ foreign) (NN minister)) (, ,) (NP (NNP Kyaw) (NNP Thu)) (, ,)) (VP (VBD said) (SBAR (S (NP (PRP it)) (VP (MD would) (VP (AUX be) (ADVP (RB up) (PP (TO to) (NP (DT the) (NNP North) (NNPS Koreans)))) (S (VP (TO to) (VP (VB decide) (SBAR (IN whether) (S (VP (TO to) (VP (VB open) (NP (DT a) (JJ diplomatic) (NN mission)) (PP (IN in) (NP (NP (DT the) (JJ remote) (JJ new) (NN capital)) (, ,) (NP (NNP Naypyidaw)) (, ,))) (ADVP (NP (CD 200) (NNS miles)) (RB north) (PP (IN of) (NP (NP (NNP Yangon)) (, ,) (NP (DT the) (NX (NX (JJS largest) (NN city)) (CC and) (NX (JJ former) (NN capital))))))))))))))))))) (. .)))
(S1 (S (SBAR (IN If) (S (NP (NP (NNP Brandan) (NNP Wright)) (, ,) (NP (NP (DT a) (JJ 6-foot-9) (NN freshman)) (PP (IN from) (NP (NNP Nashville)))) (, ,)) (VP (AUX had) (VP (AUX been) (NP (DT a) (JJ senior)) (PP (IN in) (NP (NP (JJ high) (NN school)) (ADVP (NP (DT a) (NN year)) (RBR earlier)))))))) (, ,) (NP (PRP he)) (ADVP (RBS most) (RB likely)) (VP (MD would) (VP (AUX have) (VP (VBN entered) (NP (DT the) (NNP N.B.A.) (NN draft))))) (. .)))
(S1 (S (PP (IN From) (NP (DT the) (NN start))) (NP (DT the) (NN season)) (VP (AUX had) (NP (NP (DT an) (JJ official) (NN governing) (NN body)) (, ,) (NP (NP (NP (DT the) (NNP Council)) (PP (IN for) (NP (NP (DT the) (NN Summer)) (PP (IN of) (NP (NNP Love))) (NP (DT a) (NN hit) (NN theme) (NN song))))) (, ,) (NP (NP (NNP Scott) (NNP McKenzie) (POS 's)) ('' '') (SBAR (S (NP (NNP San) (NNP Francisco)) (VP (-LRB- -LRB-) (AUX Be) (ADJP (JJ Sure) (S (VP (TO to) (VP (VB Wear) (NP (NP (NNS Flowers)) (PP (IN in) (NP (PRP$ Your) (NN Hair)))) (-RRB- -RRB-) ('' '') (VP (, ,) (VBN written) (CC and) (VBN produced) (PP (IN by) (NP (NP (NP (DT the) (NNS organizers)) (PP (IN of) (NP (DT the) (NNP Monterey) (NN festival)))) (CC and) (NP (DT a) (NN television) (NN deal)))) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (DT a) (JJ young) (NNP ABC) (NN executive)) (VP (VBN named) (SBAR (S (NP (NNP Barry) (NNP Diller)) (VP (VBD bought) (NP (DT the) (NNS rights)) (PP (TO to) (NP (NNP Monterey))) (PP (IN for) (NP (NP (DT a) (JJ never-realized) (NN Movie)) (PP (IN of) (NP (DT the) (NN Week))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Brian) (NNP Gionta)) (, ,) (NP (DT another) (NNP Rochester) (NN native)) (, ,)) (VP (VBD led) (NP (DT the) (NNS Devils)) (PP (IN in) (NP (NNS goals))) (PP (IN with) (NP (DT an) (JJ impressive) (CD eight))) (PP (IN in) (NP (CD 11) (NNS games)))) (. .)))
(S1 (S (NP (NP (NNP Ryan) (NNP Callahan)) (, ,) (NP (NP (DT a) (NN rookie)) (PP (IN from) (NP (NNP Rochester)))) (, ,)) (VP (AUX has) (VP (VBN emerged) (PP (IN as) (NP (NP (DT an) (JJ inspirational) (NN player)) (PP (IN for) (NP (DT the) (NNPS Rangers))))) (NP (DT this) (NN postseason)))) (. .)))
(S1 (S (PP (IN On) (NP (NNP Vienna))) (, ,) (NP (EX there)) (VP (AUX is) (ADJP (NP (NNP Carl) (NNP E.) (NNP Schorske) (POS 's)) (JJ classic)) ('' '') (NP (NP (NNP Fin-de-Si) (FW ècle) (NNP Vienna)) ('' '') (CC and) (NP (NP (NP (NNP Stefan) (NNP Zweig) (POS 's)) ('' '') (NN World)) (PP (IN of) (NP (NP (NNP Yesterday)) (, ,) ('' '') (CONJP (RB as) (RB well) (IN as)) (NP (NP (JJ lesser-known) (NNS works)) (PP (IN like) (NP (NP (NNP Friedrich) (NNP Torberg) (POS 's)) (NN memoir) ('' '') (S (VP (VB Die) (NP (NP (NNP Tante) (NNP Jolesch)) ('' '') (CC and) (NP (NNP George) (NNP Clare) (POS 's))) ('' '') (NP (JJ Last) (NNP Waltz)) (PP (IN in) (NP (NNP Vienna))))))))))))) (. .) ('' '')))
(S1 (S (PP (IN In) (NP (NP (DT another)) (PP (IN on) (NP (NNP Staten) (NNP Island))))) (, ,) (PP (IN on) (NP (DT the) (JJ south) (NN shore))) (, ,) (NP (NP (NNP Louis) (NNP Tobacco)) (, ,) (NP (DT a) (NNP Republican)) (, ,)) (VP (AUX was) (VP (VBN elected) (S (VP (TO to) (VP (VB complete) (NP (NP (DT the) (NN term)) (PP (IN of) (NP (NP (JJ former) (NNP Assemblyman) (NNP Vincent) (NNP M.) (NNP Ignizio)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN elected) (PP (TO to) (NP (DT the) (NNP City) (NNP Council))) (PP (IN in) (NP (NP (DT a) (JJ special) (NN election)) (PP (IN on) (NP (NNP Feb.) (CD 20))))))))))))))))) (. .)))
(S1 (S (PP (VBG According) (PP (TO to) (NP (NP (DT the) (NNP N.H.L.)) (, ,) (NP (NNP Dowd)) (CC and) (NP (DT the) (NNP Boston) (NN defenseman) (NNP Paul) (NNP Mara))))) (, ,) (PP (IN from) (NP (NNP Ridgewood))) (, ,) (VP (AUX are) (NP (NP (DT the) (ADJP (RB only) (JJ active)) (JJ New) (JJ Jersey-born) (NNS players)) (PP (IN in) (NP (DT the) (NN league))))) (. .)))
(S1 (S (PP (IN For) (NP (NN example))) (, ,) (NP (NP (NNP Representative) (NNP Peter) (NNP T.) (NNP King)) (, ,) (NP (NP (DT a) (NNP Republican)) (PP (IN from) (NP (NNP Long) (NNP Island)))) (, ,)) (VP (AUX is) (VP (VBG losing) (NP (NP (DT the) (NN chairmanship)) (PP (IN of) (NP (NP (DT the) (NNP Committee)) (PP (IN on) (NP (NN Homeland) (NN Security)))))) (, ,) (NP (NP (DT a) (NN position)) (SBAR (WHNP (IN that)) (S (NP (PRP he)) (VP (VBD used) (S (VP (TO to) (VP (VB steer) (NP (JJR more) (NN money)) (PP (TO to) (NP (NP (NNP New) (NNP York) (NNP City)) (CC and) (NP (NP (JJ other) (NN area) (NNS localities)) (VP (VBN considered) (PP (IN at) (NP (NP (JJ high) (NN risk)) (PP (IN of) (NP (JJ terrorist) (NN attack)))))))))))))))))) (. .)))
(S1 (SINV (S (NP (DT This)) (VP (AUX is) (NP (NP (DT a) (JJ first)) (SBAR (S (VP (VBP sift) (PP (IN through) (NP (DT these) (NNS images))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Werner) (NNP Vogels)) (, ,) (NP (NP (JJ chief) (NN technology) (NN officer)) (PP (IN at) (NP (NNP Amazon)))) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX had) (NP (NNP Dr.) (NNP Gray)) (PP (IN on) (NP (PRP$ his) (NNP Ph.))))))) (. .)))
(S1 (S (NP (NN Sex)) (NP (NP (NNP Mob) (POS 's)) ('' '') (NP (NNP Sexotica)) ('' '') (PRN (-LRB- -LRB-) (NP (JJ Thirsty) (NN Ear)) (-RRB- -RRB-))) (VP (AUX is) (NP (NP (NP (NP (DT the) (JJ avant-gutbucket) (NNP New) (NNP York) (NNP City)) (JJ brass-and-saxophone) (NN band) (POS 's)) (NN tribute)) (PP (TO to) (NP (NP (NNP Martin) (NNP Denny)) (, ,) (NP (NP (DT a) (NN purveyor)) (PP (IN of) (NP (NP (JJ lounge-music) (NN exotica)) (PP (IN in) (NP (DT the) (NNS 1950s) (CC and) (NNS 1960s)))))))))) (. .)))
(S1 (S (SBAR (IN As) (S (VP (VBN detailed) (PP (IN in) (NP (NP (NP (NNP Susan) (NNP Quinn) (POS 's)) (NN biography)) (, ,) ('' '') (NP (NNP Marie) (NNP Curie)))) (: :) (NP (DT A) (NNP Life))))) (, ,) ('' '') (NP (PRP she)) (VP (AUX was) (ADVP (RB nearly)) (VP (VBD hounded) (PP (IN out) (PP (IN of) (NP (NNP Paris)))) (PP (IN in) (NP (NP (CD 1911)) (SBAR (WHADVP (WRB when)) (S (NP (PRP it)) (VP (AUX was) (VP (VBN discovered) (SBAR (IN that) (S (NP (PRP she)) (VP (AUX was) (VP (AUXG having) (NP (NP (DT an) (NN affair)) (PP (IN with) (NP (NP (NNP Paul) (NNP Langevin)) (, ,) (NP (NP (CD one)) (PP (IN of) (NP (NP (NNP Pierre) (POS 's)) (NNS students)))) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN married) (PP (IN with) (NP (CD four) (NNS children)))))))))))))))))))))) (. .)))
(S1 (S (S (NP (NNP Gov.) (NNP Jon) (NNP S.) (NNP Corzine)) (VP (MD may) (VP (VB dream)))) (, ,) (CC but) (S (ADVP (RB short) (PP (IN of) (NP (DT a) (JJ fiscal) (NN miracle)))) (, ,) (NP (DT the) (JJ best-positioned) (NN candidate)) (VP (MD might) (VP (AUX be) (S (NP (NN someone)) (VP (VBG running) (UCP (PP (IN against) (NP (NP (NP (DT the) (NN state) (POS 's)) (NN image)) (PRN (-LRB- -LRB-) (ADVP (RB hypothetically)) (, ,) (NP (NP (NN someone)) (PP (IN like) (NP (NNP United) (NNP States) (NNP Attorney) (NNP Christopher) (NNP J.) (NNP Christie)))) (-RRB- -RRB-)))) (CC or) (ADVP (RB apart) (PP (IN from) (NP (NP (PRP it)) (PRN (-LRB- -LRB-) (ADVP (RB equally) (RB hypothetically)) (, ,) (NP (NP (NNP Mayor) (NNP Cory) (NNP A.) (NNP Booker)) (PP (IN of) (NP (NNP Newark)))) (-RRB- -RRB-))))))))))) (. .)))
(S1 (S (PP (IN On) (NP (DT a) (JJ journalistic) (NN quest))) (, ,) (NP (PRP I)) (ADVP (RB once)) (VP (VBD visited) (NP (NNP Jaffa)) (S (VP (VP (VBG looking) (PP (IN for) (NP (NP (DT the) (NN childhood) (NN home)) (PP (IN of) (NP (NNP Sabri) (NNS al-Banna)))))) (: --) (NP (NP (DT a) (NNP k) (NNP a) (NNP Abu) (NNP Nidal)) (, ,) (NP (NP (DT the) (ADJP (RBS most) (JJ infamous))) (PP (IN of) (NP (JJ Palestinian) (NNS terrorists)))))))) (. .)))
(S1 (S (NP (NP (NNP Mr.) (NNP Romney) (POS 's)) ('' '') (NN Turnaround)) ('' '') (VP (VBZ touts) (NP (NP (PRP$ his) (JJ successful) (NN stewardship)) (PP (IN of) (NP (NP (DT the) (CD 2002) (NNPS Olympics)) (SBAR (S (NP (NP (NNP Mr.) (NNP Giuliani) (POS 's)) ('' '') (NN Leadership)) ('' '') (VP (VBZ dwells) (PP (IN on) (NP (PRP$ his) (JJ successful) (NNS efforts) (S (VP (TO to) (VP (VB cut) (NP (NP (NN crime)) (PP (IN in) (NP (NP (NNP New) (NNP York) (NNP City)) (CC and) (NP (PRP$ his) (CD 9\/11) (NNS heroics) (NP (NNP Mr.) (NNP Richardson) (POS 's)) ('' '') (PP (IN Between) (NP (NP (NNS Worlds)) ('' '') (SBAR (S (VP (AUX is) (VP (VBN filled) (SBAR (IN with) (S (VP (VBZ boasts) (, ,) (PP (IN from) (NP (NP (PRP$ his) (NN description)) (PP (IN of) (NP (NP (DT a) (ADJP (CD 1995) (NN negotiation)) (NN session)) (PP (IN with) (NP (NNP Saddam) (NNP Hussein))))) (PP (IN as) ('' '') (NP (NP (NP (DT a) (JJ typical) (NN adventure)) (PP (IN for) (NP (PRP me))) (PP (IN in) (NP (NP (QP (JJR more) (IN than) (CD 30)) (NNS years)) (PP (IN of) (NP (JJ public) (NN service))))) ('' '') (PP (TO to) (NP (PRP$ his) (NN assertion)))) (IN that) (NP (PRP he)))) ('' '') (VP (VBD shattered) (NP (NP (NNP Theodore) (NNP Roosevelt) (POS 's)) (JJ long-standing) (NN record)) (PP (IN for) (S (VP (VBG handshaking) (CC and) (VP (VBN made) (NP (PRP it)) (PP (IN into) (NP (NP (DT the) (`` `) (NNP Guinness) (NNP Book)) (PP (IN of) (NP (NNP World) (NNPS Records))))))))))))))))))))))))))))))))))))) (. .) ('' '') ('' ')))
(S1 (S (NP (NP (NNP Sheik) (NNP Sharif) (NNP Ahmed)) (, ,) (NP (NP (DT the) (NN head)) (PP (IN of) (NP (DT the) (NNP Islamic) (NNPS Courts) (NNP Union) (NN executive) (NN council)))) (, ,)) (VP (AUX was) (NP (NP (NN part)) (PP (IN of) (NP (NP (DT a) (NN group)) (PP (IN of) (NP (NP (JJ Islamist) (NNS leaders)) (VP (AUXG being) (VP (VBN hunted) (PRT (RP down)) (PP (IN by) (NP (JJ American) (CC and) (JJ Ethiopian) (NNS troops))) (PP (IN in) (NP (JJ southern) (NNP Somalia))))))))))) (. .)))
(S1 (S (NP (NP (DT The) (NNS charges)) (PP (IN against) (NP (DT the) (NNS defendants)))) (VP (AUX were) (VP (VBN brought) (PP (IN by) (NP (NP (DT the) (JJ former) (NN attorney) (NN general)) (, ,) (NP (NNP Bill) (NNP Lockyer)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX was) (VP (VBN elected) (NP (NNP California) (NN state) (NN treasurer)) (PP (IN in) (NP (NNP November))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT A) (NN poet) (, ,) (NN novelist) (CC and) (NN playwright)) (PP (IN of) (NP (NNS sorts)))) (, ,) (NP (NNP Mr.) (NNP Kirstein)) (VP (AUX was) (ADVP (RB also)) (NP (NP (DT an) (NN essayist)) (SBAR (WHNP (WP who)) (S (VP (VBD wrote) (PP (IN about) (NP (NP (NN everyone)) (PP (PP (IN from) (NP (NP (NNP James) (NNP Cagney)) (, ,) (NP (NNP Marilyn) (NNP Monroe)) (CC and) (NP (NNP Ernest) (NNP Hemingway)))) (PP (TO to) (NP (NP (NNP Robert) (NNP Gould) (NNP Shaw)) (, ,) (NP (NP (DT the) (NNP Boston) (NN blueblood)) (SBAR (WHNP (WP who)) (S (VP (VBD commanded) (NP (NP (DT a) (NN regiment)) (PP (IN of) (NP (JJ black) (NNS soldiers)))) (PP (IN in) (NP (DT the) (NNP Civil) (NNP War))))))))))))))))) (. .)))
(S1 (S (ADVP (RB Then)) (NP (PRP he)) (VP (VBD flew) (PP (TO to) (NP (NNP Paris))) (S (VP (TO to) (VP (VB meet) (PP (IN with) (NP (NP (NNP President) (NNP Jacques) (NNP Chirac)) (CC and) (NP (NP (NN President-elect) (NNP Nicolas) (NNP Sarkozy)) (PP (IN in) (NP (NNP Paris)))))))))) (. .)))
(S1 (S (NP (PRP He)) (VP (AUX is) (NP (NP (NNP Samuel) (NNP Adams)) (: --) (RB not) (NP (NNP John) (NNP Adams)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX is) (VP (VBN buried) (PP (IN at) (NP (NNP United) (NNP First) (NNP Parish) (NNP Church))) (PP (IN in) (NP (NP (NNP Quincy)) (, ,) (NP (NNP Mass.)))))))))) (. .)))
(S1 (S (S (VP (VP (VBN Directed)) (CC and) (VP (VBD shot) (PP (IN with) (NP (JJ sensitive) (NN attention))) (PP (TO to) (NP (NN detail))) (PP (IN by) (NP (NNP Juan) (NNP Carlos) (NNP Rulfo)))))) (, ,) (NP (DT the) (NN film)) (VP (VBZ takes) (NP (PRP us)) (PP (IN into) (NP (DT a) (NN world))) (ADVP (RB apart)) (, ,) (S (VP (VBN populated) (PP (IN by) (NP (NP (NNS members)) (PP (IN of) (NP (NP (DT the) (NN construction) (NN crew)) (VP (VBG building) (NP (NP (DT the) (JJ second) (NN deck)) (PP (IN of) (NP (NP (DT the) (NNP Periférico) (NNP beltway)) (PP (IN in) (NP (NNP Mexico) (NNP City)))))))))))))) (. .)))
(S1 (S (PP (IN On) (NP (NN paper))) (NP (NP (NNP Mr.) (NNP Hou) (POS 's)) (NN film)) (VP (VBZ sounds) (ADJP (JJ unfortunate)) (ADVP (IN at) (JJS best)) (: :) (NP (NP (DT a) (NN tribute)) (, ,) (VP (VP (VBN set) (PP (IN in) (NP (NNP Paris)))) (CC and) (VP (VBG starring) (NP (NNP Juliette) (NNP Binoche)))) (, ,) (PP (TO to) (NP (NP (NP (NNP Albert) (NNP Lamorisse) (POS 's)) (VBG enchanting) ('' '') (NNP Red) (NNP Balloon)) (, ,) ('' '') (SBAR (WHNP (WDT which)) (S (VP (VP (VBD won) (NP (DT the) (NNP Palme)) (PP (IN for) (NP (NNS shorts))) (PP (IN in) (NP (CD 1956)))) (CC and) (VP (AUX has) (ADVP (RB since)) (VP (VBN inspired) (S (NP (NP (NNS generations)) (PP (IN of) (NP (NNS children)))) (VP (TO to) (VP (VB look) (PP (IN toward) (NP (DT the) (NN sky))))))))))))))) (. .)))
(S1 (S (NP (NNP Roscoe) (NNP Lee) (NNP Browne)) (VP (AUX was) (VP (VBN born) (PP (IN on) (NP (NNP May) (CD 2) (, ,) (CD 1925))) (, ,) (PP (IN in) (NP (NP (NNP Woodbury)) (, ,) (NP (NNP N.J.)))) (, ,) (NP (NP (DT the) (NN son)) (PP (IN of) (NP (DT a) (NNP Baptist) (NN preacher)))))) (. .)))
(S1 (S (ADVP (NP (CD Twenty) (NNS years)) (RB ago)) (, ,) (NP (NP (DT another) (NNP Augusta) (NN native)) (, ,) (NP (NNP Larry) (NNP Mize)) (, ,)) (VP (VBN shocked) (NP (NNP Greg) (NNP Norman)) (PP (IN in) (NP (DT a) (NN playoff))) (PP (IN by) (S (VP (VBG holing) (NP (NP (DT a) (JJ 140-foot) (NN chip)) (PP (IN for) (NP (NN birdie)))) (PP (IN on) (NP (DT the) (JJ 11th) (NN hole))) (S (VP (TO to) (VP (VB win) (NP (DT the) (NNS Masters)) (PP (IN in) (NP (DT a) (NN playoff)))))))))) (. .)))
(S1 (S (NP (NP (NNP Ernst) (NNP Haefliger)) (, ,) (NP (NP (DT a) (JJ Swiss) (NN tenor)) (SBAR (WHNP (WP who)) (S (VP (AUX was) (ADJP (RBS most) (JJ renowned)) (PP (IN as) (NP (NP (DT an) (NN interpreter)) (PP (IN of) (NP (NNP German) (NN art) (NN song) (CC and) (NN oratorio) (NNS roles))))))))) (, ,)) (VP (VBD died) (PP (IN on) (NP (NNP Saturday))) (PP (IN in) (NP (NP (NNP Davos)) (, ,) (NP (NNP Switzerland)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (PRP he)) (VP (VBD maintained) (NP (DT a) (JJ second) (NN home)))))))) (. .)))
(S1 (S (NP (NNP Gauguin)) (VP (AUX was) (NP (NP (NP (DT the) (NNP paragon) (NNP Émile) (NNP Zola) (POS 's)) (CD 1886) (NN novel)) ('' '') (SBAR (S (NP (NP (DT The) (NNP Masterpiece)) (, ,) ('' '') (VP (VBN based) (PP (IN on) (NP (NP (NNP Cézanne) (POS 's)) (JJ early) (NNS days))) (PP (IN in) (NP (NNP Paris)))) (, ,)) (VP (VBZ offers) (NP (JJR further) (NN confirmation))))))) (. .)))
(S1 (S (S (NP (DT The) (NNPS Paynes)) (VP (AUX are) (VP (VBN considered) (NP (JJ political) (NN royalty)) (PP (IN in) (NP (NNP Newark))) (, ,) (S (VP (VBG holding) (NP (NP (NNS seats)) (UCP (CONJP (RB not) (RB only)) (PP (IN in) (NP (NNP Congress))) (CC but) (ADVP (RB also)))) (PP (IN in) (NP (DT the) (NNP State) (NNP Legislature)))))))) (: :) (S (S (NP (NP (NNP Donald) (NNP Payne) (NNP Jr.)) (, ,) (NP (NP (DT the) (NN son)) (PP (IN of) (NP (NNP Donald) (NNP M.) (NNP Payne)))) (, ,)) (VP (VBZ sits) (PP (IN on) (NP (NP (NP (NNP Newark) (POS 's)) (NNP Municipal) (NNP Council)) (CC and) (NP (NP (DT a) (NN cousin)) (, ,) (NP (NNP Phil) (NNP Thigpen)) (, ,)))))) (VP (AUX is) (NP (DT the) (NNP Essex) (NNP County) (NNP Democratic) (NN chairman)))) (. .)))
(S1 (S (NP (DT The) (NN company)) (VP (VBD said) (SBAR (IN that) (S (NP (PRP it)) (VP (AUX has) (VP (AUX been) (VP (VBN informed) (PP (IN by) (NP (DT the) (NNP United) (NNP States) (NN attorney))) (PP (IN in) (NP (NP (NNP Newark)) (, ,) (NP (NNP Christopher) (NNP J.) (NNP Christie)) (, ,))) (SBAR (IN that) (S (NP (DT a) (NN review)) (VP (VBD found) (NP (NP (DT no) (NN violation)) (PP (IN of) (NP (NP (NNS securities) (NNS laws)) (CC or) (NP (NP (NN breach)) (PP (IN of) (NP (NP (DT an) (JJR earlier) (NN consent) (NN order)) (SBAR (S (NP (DT the) (NN company)) (VP (AUX had) (VP (VBN signed) (PP (IN with) (NP (DT the) (NNPS Securities) (CC and) (NNP Exchange) (NNP Commission)))))))))))))))))))))) (. .)))
(S1 (S (CC But) (NP (DT the) (NN judge)) (, ,) (NP (NP (NNP Charles) (NNP R.) (NNP Breyer)) (PP (IN of) (NP (NP (NNP Federal) (NNP District) (NNP Court)) (PP (IN in) (NP (NNP San) (NNP Francisco))))) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX is) (NP (NP (DT the) (JJR younger) (NN brother)) (PP (IN of) (NP (NP (NNP Justice) (NNP Stephen) (NNP G.) (NNP Breyer)) (PP (IN of) (NP (DT the) (NNP United) (NNPS States) (NNP Supreme) (NNP Court))))))))) (, ,)) (VP (VBD rejected) (NP (DT this) (NN request))) (. .) ('' '')))
(S1 (S (NP (NP (NNP Representative) (NNP Vicki) (NNP Berger)) (, ,) (NP (NP (DT a) (NNP Republican)) (PP (IN from) (NP (NNP Salem)))) (, ,)) (VP (VBD introduced) (NP (PRP herself)) (PP (IN as) ('' '') (NP (NP (DT the) (JJ only) (VBG living) (NN witness)) (PP (TO to) (NP (NP (DT the) (JJ actual) (NN birth)) (PP (IN of) (NP (DT the) (NNP Oregon) (NN bottle) (NN bill)))))))) (. .) ('' '')))
(S1 (S (PP (IN With) (NP (NP (DT a) (JJ final) (NN stop)) (PP (IN in) (NP (NNP Lisbon))) (PP (IN on) (NP (NNP Friday))))) (, ,) (NP (NNP House) (NNP Speaker) (NNP Nancy) (NNP Pelosi)) (VP (VBD headed) (NP (NN home)) (PP (TO to) (NP (NP (DT a) (NNP Washington)) (SBAR (WHNP (WDT that)) (S (VP (AUX is) (ADVP (RB still)) (VP (VBG ringing) (PP (IN with) (NP (NP (NNS complaints)) (PP (IN from) (NP (JJ senior) (NNP Bush) (NNS officials))) (SBAR (IN that) (S (NP (NP (PRP$ her) (NN stop)) (PP (IN in) (NP (NNP Damascus)))) (VP (TO to) (VP (VB visit) (PP (IN with) (NP (NP (NNP Bashar) (NN al-Assad)) (, ,) (NP (DT the) (JJ Syrian) (NN president)) (, ,) (VP (VBN bolstered) (NP (NP (DT the) (NN image)) (PP (IN of) (NP (NNP Syria)))) (PP (IN at) (NP (NP (DT a) (NN time)) (SBAR (WHADVP (WRB when)) (S (NP (NNP United) (NNPS States) (NN policy)) (VP (AUX is) (S (VP (TO to) (VP (VB isolate) (NP (PRP it)))))))))))))))))))))))))) (. .)))
(S1 (FRAG (PP (IN Among) (S (NP (DT those)) (VP (VBG joining) (NP (NP (NP (NNP Petty)) (SBAR (IN in) (S (NP (DT that) (NN criticism)) (VP (AUX is) (NP (DT another) (JJ former) (NN champion)))))) (, ,) (NP (NNP Bill) (NNP Elliott)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD accused) (NP (NNP Nascar)) (PP (IN in) (NP (PRP$ his) (ADJP (RB recently) (VBN released)) (NN book)))))) (, ,) ('' '') (NP (JJ Awesome) (NN Bill))) (PP (IN From) (NP (NNP Dawsonville)))))) (: :) (NP (NP (NNP My) (NNP Life)) (PP (IN in) (NP (NNP Nascar)))) (. .) ('' '') ('' '')))
(S1 (S (SBAR (IN After) (S (NP (NNP Greg)) (VP (VBD nixed) (NP (NP (DT a) (NN variety)) (PP (IN of) (NP (NNP Wamsutta) (NNS offerings))))))) (PRN (: --) (VP (VBG terming) (NP (PRP them)) ('' '') (PP (RB not) (ADJP (JJ nice) (RB enough) (PP (IN for) (NP (PRP$ our) (JJ symbolic) (NN relationship) (NNS towels)))) ('' ''))) (: --)) (CC and) (S (NP (PRP I)) (VP (VBD clucked) (PP (IN in) (NP (NN disapproval))) (PP (IN at) (NP (NP (DT some) (ADJP (RB slightly) (JJ wanton)) (NNP Nicole) (NNP Miller) (NNS numbers)) (PP (IN with) (NP (JJ sparkly) (NN silver) (NNS threads))))) (PP (IN in) (NP (PRP them))))) (, ,) (S (NP (PRP we)) (ADVP (RB finally)) (VP (VBD bought) (NP (NP (DT some) (JJ fluffy) (JJ white) (NNP Lenox) (NNS towels)) (, ,) (NP (CD 70) (NN percent) (NN cotton)) (CC and) (NP (CD 30) (NN percent) (NN bamboo))))) (. .)))
(S1 (S (ADVP (RB As) (RB recently) (PP (IN as) (NP (CD 2004)))) (, ,) (SBAR (IN as) (S (NP (NNP American) (NNS officials)) (VP (VBD made) (NP (NP (NNS plans)) (PP (IN for) (NP (NP (DT the) (NN arrival)) (PP (IN of) (NP (CD 15,000) (JJ new) (NNPS Hmong)))))) (NP (NNS refugees))))) (, ,) (NP (NNP Gen.) (NNP Vang) (NNP Pao)) (VP (VBD said) (PP (IN in) (NP (DT an) (NN interview))) (SBAR (IN that) (S (NP (PRP he)) (ADVP (RB still)) (VP (VBD longed) (PP (IN for) (NP (NP (DT a) (NN day)) (SBAR (WHADVP (WRB when)) (S (NP (NP (DT all) (NNPS Hmong)) (PRN (: --) (S (NP (DT those)) (ADVP (RB still)) (VP (VP (VBG hiding) (PP (IN in) (NP (NNP Laos)))) (CC or) (VP (VBG living) (PP (IN on) (NP (PRP$ their) (JJ own))) (ADVP (RB somewhere)) (PP (IN in) (NP (NNP Thailand)))))) (: --))) (VP (MD might) (VP (VB return) (PP (IN in) (NP (NN safety))) (PP (TO to) (NP (NNP Laos))))))))))))) (. .) ('' '')))
(S1 (S (SBAR (IN As) (S (NP (DT the) (NN rancor)) (VP (VBD grew)))) (, ,) (NP (NP (DT the) (NN office)) (PP (IN of) (NP (NP (NNP Lt.) (NNP Gov.) (NNP David) (NNP Dewhurst)) (, ,) (NP (DT a) (NNP Republican)) (, ,)))) (VP (VBD released) (NP (DT an) (JJ open) (NN letter)) (PP (JJ insulting) (NP (NP (NP (DT the) (NN dean)) (PP (IN of) (NP (NP (DT the) (NNP Senate)) (, ,) (NP (NNP John) (NNP Whitmire)) (, ,) (NP (DT a) (NNP Houston) (NNP Democrat))))) (-LRB- -LRB-) (CC and) (NP (NP (DT a) (NN hunting) (NN buddy)) (PP (IN of) (NP (NNP Mr.) (NNP Dewhurst))))))) (. .) (-RRB- -RRB-)))
(S1 (S (S (ADVP (RB Sometimes)) (NP (PRP I)) (VP (VB rattle) (PRT (RP off)) (NP (NP (NP (DT the) (NNS names)) (PP (IN of) (NP (NN movie) (NNS stars))) (PP (IN from) (NP (NNP Omaha)))) (: :) (NP (NP (NNP Fred) (NNP Astaire)) (, ,) (NP (NNP Henry) (NNP Fonda)) (, ,) (NP (NNP Marlon) (NNP Brando)) (, ,) (NP (NNP Nick) (NNP Nolte)))))) (: ...) (S (PP (IN Of) (NP (NN course))) (, ,) (NP (DT this) (NNP pantheon)) (ADVP (RB also)) (VP (VBZ implies) (SBAR (IN that) (S (NP (PRP it)) (VP (AUX is) (NP (NP (DT a) (NN place)) (SBAR (WHNP (WDT that)) (S (VP (VBZ requires) (S (NP (PRP$ its) (ADJP (RBS most) (JJ exciting)) (NNS citizens)) (VP (TO to) (VP (VB move) (PP (IN on)))))))))))))) (. .)))
(S1 (S (NP (NP (NNP A1) (NNP Somali) (NNP Islamist) (NNP Surrenders) (NNP Sheik) (NNP Sharif) (NNP Ahmed)) (, ,) (NP (NP (NP (DT the) (NN head)) (PP (IN of) (NP (DT the) (NNP Islamist) (NNPS Courts) (NNP Union) (NN executive) (NN council)))) (CC and) (NP (NP (DT the) (JJ second)) (PP (IN in) (NP (NP (NN command)) (PP (IN of) (NP (NP (NNP Somalia) (POS 's)) (VBN defeated) (NNP Islamist) (NNS forces))))))) (, ,)) (VP (VP (AUX has) (VP (VBN surrendered) (PP (TO to) (NP (DT the) (NNP Kenyan) (NNS authorities))))) (CC and) (VP (AUX is) (VP (VBG staying) (PP (IN at) (NP (NP (DT a) (NN hotel)) (PP (IN in) (NP (NNP Nairobi)))))))) (. .)))
(S1 (SINV (S (NP (DT This)) (VP (AUX is) (ADVP (RB still)) (ADVP (RB essentially)) (NP (NP (DT a) (NN man) (POS 's)) (NN town)))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Susan) (NNP Molinari)) (, ,) (NP (NP (DT a) (NNP Republican)) (CC and) (NP (NP (DT the) (JJ former) (NN representative)) (PP (IN from) (NP (NNP Staten) (NNP Island))) (SBAR (WHNP (WP who)) (S (VP (VBZ runs) (NP (NP (DT the) (NNP Washington) (NNP Group)) (, ,) (NP (DT a) (NN government) (NNS relations) (CC and) (NN lobbying) (NN firm))))))))) (. .) ('' '')))
(S1 (S (NP (NP (NP (NNP Next)) (PP (IN up) (PP (IN for) (NP (DT the) (JJ documentary) (NN series))))) (, ,) (NP (NP (NN tomorrow)) (PP (IN at) (NP (CD 7) (NN p.m.)))) (, ,)) (VP (MD will) (VP (AUX be) ('' '') (NP (NP (CD 51) (NNP Birch) (NNP Street)) (, ,) ('' '') (NP (NP (DT the) (JJ much-admired) (NN memoir)) (PP (IN by) (NP (NNP Doug) (NNP Block)))) (, ,) (SBAR (WHNP (WP who)) (S (VP (MD will) (VP (AUX be) (PP (IN on) (NP (NN hand))) (S (VP (TO to) (VP (VB talk) (PP (IN about) (NP (NP (NP (DT the) (NNP Port) (NNP Washington) (NN house)) (SBAR (WHADVP (WRB where)) (S (NP (PRP he)) (VP (VBD grew) (PRT (RP up)))))) (CC and) (NP (NP (DT the) (NN family)) (PP (IN within) (NP (PRP it)))))))))))))))) (. .)))
(S1 (S (NP (NP (DT A) (JJ Political) (NN Memo) (NN article)) (PP (IN on) (NP (NNP Thursday))) (, ,) (PP (IN about) (NP (NP (DT the) (NNS challenges)) (SBAR (S (NP (NNP Rudolph) (NNP W.) (NNP Giuliani)) (VP (VBZ faces) (PP (IN in) (S (VP (VBG running) (PP (IN for) (NP (NN president))) (PP (IN as) (NP (DT a) (JJ former) (NNP New) (NNP York) (NNP City) (NN mayor))))))))))) (, ,)) (VP (VBD referred) (ADVP (RB incorrectly)) (PP (TO to) (NP (NP (DT the) (NN timing)) (PP (IN of) (NP (NP (DT the) (JJ two-term) (NN presidency)) (PP (IN of) (NP (NP (DT another) (NNP New) (NNP Yorker)) (, ,) (NP (NNP Theodore) (NNP Roosevelt))))))))) (. .)))
(S1 (NP (NP (NNP Kristian) (NNP Menchaca)) (PP (IN of) (NP (NNP Houston) (CC and) (NNP Pfc.)))))
(S1 (S (SBAR (IN Though) (S (NP (NNP Lucia)) (VP (AUX has) (VP (VBN signed) (NP (NNS players)) (PP (IN from) (NP (RB elsewhere))) (, ,) (PP (IN like) (NP (NP (NP (DT the) (JJ Austrian) (NN wing) (NNP Thomas) (NNP Vanek)) (PRN (-LRB- -LRB-) (PP (ADVP (RB now)) (IN of) (NP (DT the) (NNP Buffalo) (NNPS Sabres))) (-RRB- -RRB-))) (, ,) (CC and) (NP (NP (NNP Grant) (CC and) (NNP Ryan) (NNP Potulny)) (, ,) (PP (IN from) (NP (NNP North) (NNP Dakota)))))))))) (, ,) (NP (NP (DT all)) (PP (IN of) (NP (PRP$ his) (JJ current) (NNS players)))) (VP (AUX are) (NP (NNPS Minnesotans)) (: --) (PP (IN except) (NP (NP (JJ goalie) (NNP Kellen) (NNP Briggs)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX is) (PP (IN from) (NP (NNP Colorado) (NNP Springs))))))))) (. .)))
(S1 (S (`` `) (NP (NN OPENING) (NNS DOORS)) (: :) (S (NP (NP (DT A) (NN JOURNEY)) (PP (IN IN) (NP (NP (JJ MUSICAL) (NN THEATER) (POS ')) (PRN (-LRB- -LRB-) (NP (NNP Tomorrow) (CC and) (NNP Sunday)) (-RRB- -RRB-))))) (VP (VP (VB Take) (NP (NP (NP (DT the) (NNS songs)) (PP (IN of) (NP (NNP Stephen) (NNP Sondheim)))) (, ,) (NP (NNP Cy) (NNP Coleman)) (CC and) (NP (JJ other) (JJ modern) (NNS composers)))) (CC and) (VP (VB combine) (NP (PRP them)) (PP (IN with) (NP (NP (DT the) (NNS talents)) (PP (IN of) (NP (JJ selected) (NNP New) (NNP York) (NNP City) (NN middle) (CC and) (JJ high) (NN school) (NNS students)))))))) (, ,) (CC and) (S (NP (PRP you)) (VP (AUX have) (NP (NP (DT this) (JJ cabaret) (NN show)) (, ,) (VP (VBN presented) (PP (IN by) (NP (NNP Wingspan) (NNP Arts))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Greenspan)) (VP (VBD agreed) (S (VP (TO to) (VP (VB take) (PRT (RP on)) (NP (DT the) (NN case)) (SBAR (RB only) (IN because) (S (NP (PRP he)) (VP (VBD knew) (SBAR (S (NP (PRP he)) (VP (MD would) (VP (AUX be) (VP (VBN paired) (PP (IN with) (NP (NP (NNP Edward) (NNP Genson)) (, ,) (NP (NP (DT a) (JJ criminal) (NN lawyer)) (PP (IN in) (NP (NNP Chicago))) (SBAR (WHNP (WP who)) (S (VP (VBZ shares) (NP (NP (DT a) (NN propensity)) (PP (IN for) (S (VP (VBG defending) (NP (NP (JJ high-profile) (NNS people)) (VP (VBN caught) (PRT (RP up)) (PP (IN in) (NP (DT a) (NN scandal)))) (, ,) (PP (IN like) (NP (NP (DT the) (NN singer) (NNP R.) (NNP Kelly)) (CC and) (NP (NP (DT a) (JJ former) (NN governor)) (, ,) (NP (NNP George) (NNP H.) (NNP Ryan)))))))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (NNP A6) (NNP Pelosi) (VBZ Meets)) (PP (IN With) (NP (NP (NNP Syria) (NNP Leader) (NNP Nancy) (NNP Pelosi)) (, ,) (NP (NP (DT the) (NN speaker)) (PP (IN of) (NP (DT the) (NNP House)))) (, ,)))) (VP (VBD said) (SBAR (S (NP (PRP she)) (VP (AUX had) (NP (NP (JJ frank) (NNS words)) (PP (IN with) (NP (NP (NNP President) (NNP Bashar) (NNP al-Assad)) (CC and) (NP (JJ other) (JJ Syrian) (NNS officials))))) (PP (IN in) (NP (NNP Damascus))) (, ,) (S (VP (VP (VBG pressing) (NP (DT the) (NN president)) (PP (IN over) (NP (NP (NP (NNP Syria) (POS 's)) (NN support)) (PP (IN for) (NP (JJ militant) (NNS groups)))))) (CC and) (VP (VBG insisting) (SBAR (IN that) (S (NP (PRP$ his) (NN government)) (VP (VB block) (NP (NP (NNS militants)) (VP (VBG seeking) (S (VP (TO to) (VP (VB cross) (PP (IN into) (NP (NNP Iraq)))))))))))))))))) (. .)))
(S1 (S (NP (NNP Carlo) (NNP Ponti)) (VP (AUX was) (VP (VBN born) (PP (IN on) (NP (NNP Dec.) (CD 11) (, ,) (CD 1912))) (, ,) (PP (IN in) (NP (NP (DT the) (NNP Milan) (NN suburb)) (PP (IN of) (NP (NNP Magenta))))) (, ,) (PP (TO to) (NP (NP (NP (NNP Leone) (NNP Ponti)) (, ,) (NP (DT a) (NN music) (NN printing) (NN shop) (NN owner)) (, ,)) (CC and) (NP (DT the) (JJ former) (NNP Maria) (NNP Zardone)))))) (. .)))
(S1 (S (NP (DT That) (JJ same) (NN night)) (, ,) (NP (NP (NNP Nate) (NNP Robertson)) (PP (IN of) (NP (NNP Detroit)))) (VP (VBD threw) (NP (NP (CD 115) (NNS pitches)) (PP (IN in) (NP (CD five) (NN innings))) (, ,) (NP (NP (NP (NNP Dan) (NNP Haren)) (PP (IN of) (NP (NNP Oakland) (CD 117))) (PP (IN in) (NP (CD eight) (NN innings)))) (, ,) (NP (NP (NNP Dontrelle) (NNP Willis)) (PP (IN of) (NP (NNP Florida) (CD 95))) (PP (IN in) (NP (CD six)))) (, ,) (NP (NP (NNP Tomo) (NNP Ohka)) (PP (IN of) (NP (NNP Toronto) (CD 91))) (PP (IN in) (NP (CD five)))) (, ,) (NP (NP (NNP Matt) (NNP Belisle)) (PP (IN of) (NP (NNP Cincinnati) (CD 81))) (PP (IN in) (NP (CD five)))) (, ,) (NP (NP (NNP Brett) (NNP Tomko)) (PP (IN of) (NP (NP (NNP Los) (NNP Angeles) (CD 56)) (PP (IN in) (NP (NP (NP (CD two)) (CC and) (NP (NP (NP (DT a) (JJ third)) (CC and) (NP (NNP Kevin) (NNP Millwood))) (PP (IN of) (NP (NNP Texas) (CD 45))))) (PP (IN in) (NP (CD one)))))))) (CC and) (NP (NNS two-thirds))))) (. .)))
(S1 (S (S (NP (`` `) (NNP Idol) ('' ') (NNP Finalist)) (VP (VBN Arrested) (SBAR (S (NP (NP (NNP Jessica) (NNP Sierra)) (, ,) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (JJ Top) (CD 10) (NNS finalists)) (PP (IN on) ('' '') (NP (NNP American) (NNP Idol)) ('' '')) (PP (IN in) (NP (CD 2005)))))) (, ,)) (VP (AUX was) (VP (VBN arrested) (NP (JJ early) (NN yesterday)) (PP (IN in) (NP (NP (NNP Tampa)) (, ,) (NP (NNP Fla.)) (, ,))) (PP (IN on) (NP (DT a) (NN felony) (NN battery) (NN charge))))))))) (, ,) (NP (DT The) (NNP Associated) (NNP Press)) (VP (VBD reported)) (. .)))
(S1 (S (NP (NP (NN Study)) (PP (IN Of) (NP (NP (DT the) (CD 2,114) (NN sex) (NNS offenders)) (SBAR (WHNP (WP who)) (S (VP (VP (VBP live) (PP (IN in) (NP (NNP New) (NNP York) (NNP City)))) (CC and) (VP (AUX are) (VP (VBN listed) (PP (IN in) (NP (NP (NP (DT the) (NN state) (POS 's)) (ADJP (RB publicly) (JJ available)) (NN database)) (, ,) (NP (CD 85) (NN percent)))))))))))) (VP (VBP live) (PP (IN within) (NP (NP (NP (CD five) (NNS blocks)) (PP (IN of) (NP (DT a) (NN school)))) (CC and) (NP (NP (CD 32) (NN percent)) (PP (IN within) (NP (NP (CD two) (NNS blocks)) (PP (IN of) (NP (DT a) (NN school)))))))) (, ,) (PP (VBG according) (PP (TO to) (NP (NP (DT a) (NN report)) (VP (VBN released) (NP (NN yesterday)) (PP (IN by) (NP (NP (NNP Representative) (NNP Anthony) (NNP D.) (NNP Weiner)) (, ,) (NP (NP (DT a) (NNP Democrat)) (SBAR (WHNP (WP who)) (S (VP (VBZ represents) (NP (NP (NNS parts)) (PP (IN of) (NP (NNP Queens) (CC and) (NNP Brooklyn))))))))))))))) (. .)))
(S1 (S (PP (IN For) (NP (NN example))) (, ,) (NP (NP (NNP Representative) (NNP Peter) (NNP T.) (NNP King)) (, ,) (NP (NP (DT a) (NNP Republican)) (PP (IN from) (NP (NNP Long) (NNP Island)))) (, ,)) (VP (AUX is) (VP (VBG losing) (NP (NP (DT the) (NN chairmanship)) (PP (IN of) (NP (NP (DT the) (NNP Committee)) (PP (IN on) (NP (NN Homeland) (NN Security)))))) (, ,) (NP (NP (DT a) (NN position)) (SBAR (WHNP (IN that)) (S (NP (PRP he)) (VP (VBD used) (S (VP (TO to) (VP (VB steer) (NP (JJR more) (NN money)) (PP (TO to) (NP (NP (NNP New) (NNP York) (NNP City)) (CC and) (NP (NP (JJ other) (NN area) (NNS localities)) (VP (VBN considered) (PP (IN at) (NP (NP (JJ high) (NN risk)) (PP (IN of) (NP (JJ terrorist) (NN attack)))))))))))))))))) (. .)))
(S1 (S (NP (NP (DT A) (JJ Political) (NN Memo) (NN article)) (PP (IN on) (NP (NNP Thursday))) (PP (IN about) (NP (DT the) (NNS challenges) (NNP Rudolph) (NNP W.) (NNP Giuliani)))) (VP (VBZ faces) (PP (IN in) (S (VP (VBG running) (PP (IN for) (NP (NN president))) (PP (IN as) (NP (NP (DT a) (JJ former) (NNP New) (NNP York) (NNP City) (NN mayor)) (VP (VBD referred) (ADVP (RB incorrectly)) (PP (TO to) (NP (NP (DT the) (NN presidency)) (PP (IN of) (NP (NP (NNP Theodore) (NNP Roosevelt)) (, ,) (ADVP (RB also)) (NP (DT a) (NNP New) (NNP York) (NNP City) (NN mayor))))))))))))) (. .)))
(S1 (S (NP (DT The) (NNP White) (NNP House)) (PP (IN in) (NP (NNP April))) (VP (ADVP (RB sharply)) (VBD criticized) (NP (NP (NP (DT the) (NNP Speaker)) (PP (IN of) (NP (DT the) (NNP House)))) (, ,) (NP (NNP Nancy) (NNP Pelosi)) (, ,)) (PP (IN for) (S (VP (VP (VBG visiting) (NP (NP (NP (NNP Syria) (POS 's)) (NN capital)) (, ,) (NP (NNP Damascus)) (, ,))) (CC and) (VP (VBG meeting) (PP (PP (IN with) (NP (NNP President) (NNP Bashar) (NN al-Assad))) (, ,) (RB even) (S (VP (VBG going) (ADVP (RB so) (RB far)) (PP (IN as) (S (VP (VBG calling) (NP (DT the) (NN trip))))) ('' '') (NP (JJ bad) (NN behavior)) (, ,) ('' '') (PP (IN in) (NP (NP (DT the) (NNS words)) (PP (IN of) (NP (NNP Vice) (NNP President) (NNP Dick) (NNP Cheney))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Big) ('' '') (NNP Jim) (NNP Thompson)) (, ,) (NP (DT the) (NNP Chicago) (JJ federal) (NN prosecutor)) (, ,)) (VP (VBD claimed) (NP (NP (JJ many) (JJ political) (NNS scalps)) (PP (IN in) (NP (NP (DT the) (NNS 1970s)) (, ,) (ADJP (RB not) (JJS least) (IN that) (PP (IN of) (NP (JJ former) (NNP Gov.) (NNP Otto) (NNP Kerner) (NNP Jr.)))))))) (. .)))
(S1 (S (S (NP (NP (NNP France) (NNP Honors) (NNP Clint) (NNP Eastwood) (NNP Clint) (NNP Eastwood)) (, ,) (NP (NP (CD 76)) (, ,) (ADVP (RB below))) (, ,)) (VP (AUX had) (NP (NP (DT a) (JJ good) (NN day)) (PP (IN at) (NP (DT the) (JJ Élysée) (NNP Palace)))) (PP (IN in) (NP (NNP Paris))) (PP (IN on) (NP (NNP Saturday))) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (NP (NNP President) (NNP Jacques) (NNP Chirac)) (PP (IN of) (NP (NNP France)))) (VP (VBD inducted) (NP (PRP him)) (PP (IN as) (NP (NP (DT a) (NN knight)) (PP (IN in) (NP (NP (DT the) (NNP Legion)) (PP (IN of) (NP (NN Honor)))))))))))) (, ,) (NP (DT The) (NNP Associated) (NNP Press)) (VP (VBD reported)) (. .)))
(S1 (S (NP (NP (NNP Darryl) (NNP Stingley)) (, ,) (NP (NP (DT a) (NN receiver)) (PP (IN for) (NP (NP (DT the) (NNP New) (NNP England) (NNPS Patriots)) (SBAR (WHNP (WP who)) (S (VP (VBD became) (NP (DT a) (NN quadriplegic)) (PP (IN after) (NP (NP (DT an) (ADJP (RB intentionally) (JJ violent)) (NN hit)) (PP (IN in) (NP (DT a) (CD 1978) (NN preseason) (NN game))))))))))) (, ,)) (VP (VBD died) (NP (NN yesterday)) (PP (IN in) (NP (NNP Chicago)))) (. .)))
(S1 (S (S (NP (DT The) (NNPS Paynes)) (VP (AUX are) (VP (VBN considered) (NP (JJ political) (NN royalty)) (PP (IN in) (NP (NNP Newark))) (, ,) (S (VP (VBG holding) (NP (NP (NNS seats)) (UCP (CONJP (RB not) (RB only)) (PP (IN in) (NP (NNP Congress))) (CC but) (ADVP (RB also)))) (PP (IN in) (NP (DT the) (NNP State) (NNP Legislature)))))))) (: :) (S (S (NP (NP (NNP Donald) (NNP Payne) (NNP Jr.)) (, ,) (NP (NP (DT the) (NN son)) (PP (IN of) (NP (NNP Donald) (NNP M.) (NNP Payne)))) (, ,)) (VP (VBZ sits) (PP (IN on) (NP (NP (NP (NNP Newark) (POS 's)) (NNP Municipal) (NNP Council)) (CC and) (NP (NP (DT a) (NN cousin)) (, ,) (NP (NNP Phil) (NNP Thigpen)) (, ,)))))) (VP (AUX is) (NP (DT the) (NNP Essex) (NNP County) (NNP Democratic) (NN chairman)))) (. .)))
(S1 (S (NP (DT The) (NN restaurant)) (VP (AUX is) (PP (IN across) (NP (DT the) (NN street))) (PP (IN from) (NP (NP (NP (NNP Atlanta) (POS 's)) (ADJP (JJS oldest) (CC and) (JJS loveliest)) (NN cemetery)) (, ,) (NP (NP (NNP Oakland) (NNP Cemetery)) (PRN (-LRB- -LRB-) (NP (CD 404-688-2107) (NN www.oaklandcemetery.com)) (-RRB- -RRB-)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (NP (NNP Margaret) (NNP Mitchell)) (, ,) (NP (CD 25) (NNS mayors)) (CC and) (NP (NP (NNS thousands)) (PP (IN of) (NP (JJ unidentified) (NNP Confederate) (NNS soldiers))))) (VP (AUX are) (VP (VBN buried))))))))) (. .)))
(S1 (S (NP (NP (NNP Nate) (NNP Robinson) (POS 's)) (NN suspension)) (VP (NNS ends) (PP (IN after) (NP (NP (NP (NNP Friday) (POS 's)) (NN game)) (PP (IN in) (NP (NNP Seattle)))))) (. .)))
(S1 (S (ADVP (RB Then)) (NP (PRP he)) (VP (VBD flew) (PP (TO to) (NP (NNP Paris))) (S (VP (TO to) (VP (VB meet) (PP (IN with) (NP (NP (NNP President) (NNP Jacques) (NNP Chirac)) (CC and) (NP (NP (NN President-elect) (NNP Nicolas) (NNP Sarkozy)) (PP (IN in) (NP (NNP Paris)))))))))) (. .)))
(S1 (S (NP (NP (NNP Reverend) (NNP Run)) (, ,) (NP (NP (DT a) (NNP k) (NNP a) (NNP Joseph) (NNP Simmons)) (, ,) (NP (NP (DT a) (JJ former) (NN member)) (PP (IN of) (NP (DT the) (NNP Hollis) (NN rap) (NN group) (NNP Run-DMC))))) (, ,)) (VP (VBD threw) (NP (PRP$ his) (NN hat)) (PP (IN into) (NP (DT the) (NN ring))) (, ,) (SBAR (IN though) (S (NP (PRP he)) (VP (VBD lost) (PRT (RP out)) (PP (TO to) (NP (NP (NNP Ishle) (NNP Yi) (NNP Park)) (, ,) (NP (NP (DT a) (NNP Whitestone) (NN native)) (SBAR (WHNP (WP who)) (S (VP (VP (AUX had) (VP (VBN won) (NP (DT a) (NN PEN) (NNP American) (NNP Center) (NN award)) (PP (IN for) (NP (NP (JJ outstanding) (NNS writers)) (PP (IN of) (NP (NN color))))))) (CC and) (VP (AUX was) (NP (NP (DT a) (JJ frequent) (NN guest)) (PP (IN on) (NP (DT the) (NNP HBO) (NN program) ('' '') (JJ Def) (NNP Poetry) (NN Jam))))))))))))))) (. .) ('' '')))
(S1 (NP (NNP XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)))
(S1 (S (NP (NP (NNP Vang) (NNP Pao)) (, ,) (NP (NP (DT a) (JJ military) (NN general)) (PP (IN in) (NP (NNP Laos)))) (, ,)) (VP (VP (AUX was) (VP (VBN lauded) (PP (IN for) (NP (NP (VBG leading) (NNS forces)) (VP (VBN backed) (PP (IN by) (NP (DT the) (NNP Central) (NNP Intelligence) (NNP Agency))) (PP (IN in) (NP (NP (DT the) ('' '') (JJ secret) (NN war)) ('' '') (PP (IN against) (NP (NNS communists)))))))) (PP (ADVP (RB there)) (IN during) (NP (DT the) (NNP Vietnam) (NNP War))))) (CC and) (VP (AUX had) (, ,) (PP (IN for) (ADVP (NP (CD 30) (NNS years)) (IN since))) (, ,) (VP (VBN made) (NP (NP (DT no) (NN secret)) (PP (IN of) (NP (NP (PRP$ his) (NNS hopes)) (PP (IN for) (NP (DT a) (JJ democratic) (NNP Laos))))))))) (. .)))
(S1 (S (ADVP (RB However)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (NNP Paul) (NNP Poiret)) (VP (VBN reintroduced) (NP (PRP them)) (PP (IN in) (NP (CD 1911)))))) (, ,) (NP (FW le)) (VP (VB tout) (SBAR (S (NP (NNP Paris)) (VP (AUX was) (PP (IN in) (NP (NP (NP (DT the) (NN thrall)) (PP (IN of) (NP (DT the) (NNPS Ballets) (NNPS Russes)))) (, ,) (NP (NP (DT a) (JJ decadent) (NN fantasy)) (PP (IN of) (NP (DT the) (NNP East)))) (, ,) (PP (IN with) (NP (NP (NNS sets) (CC and) (NNS costumes)) (PP (IN by) (NP (NNP Léon) (NNP Bakst))))))))))) (. .)))
(S1 (S (NP (NP (NNP Ernst) (NNP Haefliger)) (PRN (-LRB- -LRB-) (NP (JJ pronounced) (NN HEFF-ligger)) (-RRB- -RRB-))) (VP (VP (AUX was) (VP (VBN born) (PP (IN in) (NP (NNP Davos))) (PP (IN on) (NP (NNP July) (CD 6) (, ,) (CD 1919))))) (, ,) (CC and) (VP (VBD studied) (PP (IN at) (NP (NP (DT the) (NNP Wettinger) (NNP Seminary)) (CC and) (NP (DT the) (NNP Zurich) (NNP Conservatory)))) (PP (IN before) (S (VP (VBG moving) (PP (TO to) (NP (NP (NNP Vienna)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (PRP he)) (VP (VBD became) (NP (NP (DT a) (NN student)) (PP (IN of) (NP (DT the) (NN tenor) (NNP Julius) (NNP Patzak)))))))))))))) (. .)))
(S1 (S (ADVP (RB As) (RB recently) (PP (IN as) (NP (CD 2004)))) (, ,) (SBAR (IN as) (S (NP (NNP American) (NNS officials)) (VP (VBD made) (NP (NP (NNS plans)) (PP (IN for) (NP (NP (DT the) (NN arrival)) (PP (IN of) (NP (CD 15,000) (JJ new) (NNPS Hmong)))))) (NP (NNS refugees))))) (, ,) (NP (NNP Gen.) (NNP Vang) (NNP Pao)) (VP (VBD said) (PP (IN in) (NP (DT an) (NN interview))) (SBAR (IN that) (S (NP (PRP he)) (ADVP (RB still)) (VP (VBD longed) (PP (IN for) (NP (NP (DT a) (NN day)) (SBAR (WHADVP (WRB when)) (S (NP (NP (DT all) (NNPS Hmong)) (PRN (: --) (S (NP (DT those)) (ADVP (RB still)) (VP (VP (VBG hiding) (PP (IN in) (NP (NNP Laos)))) (CC or) (VP (VBG living) (PP (IN on) (NP (PRP$ their) (JJ own))) (ADVP (RB somewhere)) (PP (IN in) (NP (NNP Thailand)))))) (: --))) (VP (MD might) (VP (VB return) (PP (IN in) (NP (NN safety))) (PP (TO to) (NP (NNP Laos))))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT The) (JJ Little) (NN Comedy)) (, ,) ('' '') (NP (NP (DT a) (JJ mannered) (NN operetta)) (VP (VBN based) (PP (IN on) (NP (NP (DT a) (JJ short) (NN story)) (PP (IN by) (NP (NNP Arthur) (NNP Schnitzler))) (VP (VBN set) (PP (IN in) (NP (JJ fin-de-si) (JJ ècle) (NNP Vienna)))))))) (, ,)) (VP (VBZ opens) (NP (DT the) (NN evening))) (. .)))
(S1 (S (NP (NP (DT The) (NN racketeering) (NN case)) (PP (IN against) (NP (DT the) (NNS men)))) (, ,) (NP (NP (NNP Muhammad) (NNP Salah)) (, ,) (NP (CD 53)) (, ,) (NP (NP (DT a) (JJ onetime) (NN grocer)) (PP (IN from) (NP (JJ suburban) (NNP Chicago)))) (, ,) (CC and) (NP (NNP Abdelhaleem) (NNP Ashqar)) (, ,) (NP (CD 48)) (, ,) (NP (NP (DT a) (JJ former) (NN university) (NN professor)) (PP (IN from) (NP (JJ suburban) (NNP Washington)))) (, ,)) (VP (AUX was) (VP (VBN announced) (PP (IN with) (NP (JJ much) (NN fanfare))) (PP (IN in) (NP (CD 2004))) (PP (IN by) (NP (NP (NP (DT the) (NNP United) (NNP States) (NN attorney) (NN general)) (PP (IN at) (NP (DT the) (NN time)))) (, ,) (NP (NNP John) (NNP Ashcroft)) (, ,))) (PP (IN as) (NP (NP (DT an) (JJ important) (NN part)) (PP (IN of) (NP (NP (NP (DT the) (NN government) (POS 's)) (NN fight)) (PP (IN against) (NP (NN terrorism))))))))) (. .)))
(S1 (S (PP (IN In) (NP (NNP March))) (, ,) (NP (NN Amnesty) (NNP International)) (VP (VBD reported) (SBAR (IN that) (S (NP (NP (NNS thousands)) (PP (IN of) (NP (NNPS Hmong) (NNS people)))) (VP (VBP remain) (PP (IN in) (NP (NP (NP (DT the) (JJ mountainous) (NNS jungles)) (PP (IN of) (NP (NNP Laos)))) (, ,) (NP (NP (DT the) (JJ last) (NNS remnants) (CC and) (NNS descendants)) (PP (IN of) (NP (NP (DT the) (JJ C.I.A.-financed) (JJ secret) (NN army)) (SBAR (WHNP (WDT that)) (S (NP (NNP Gen.) (NNP Vang) (NNP Pao)) (VP (VBD led))))))))))))) (. .)))
(S1 (S (PP (IN After) (NP (NP (JJ several) (NNS years)) (PP (IN of) (NP (NP (VBG shuttling)) (PP (IN between) (NP (NNP California) (CC and) (NNP Poland))))))) (, ,) (NP (PRP he)) (ADVP (RB finally)) (VP (VP (VBD settled) (PP (IN in) (NP (NNP Warsaw)))) (CC and) (VP (VBD married) (NP (NP (NNP Katarzyna) (NNP Figura)) (, ,) (NP (DT a) (JJ Polish) (NN actress))))) (. .)))
(S1 (S (S (NP (CD A18) (NNP Baltimore)) (VP (TO to) (VP (VB Track) (NP (NNS Guns)) (PP (IN With) (S (NP (JJ violent) (NN crime)) (VP (VBG rising) (ADVP (RB sharply)) (PP (IN in) (NP (NNP Baltimore))))))))) (, ,) (NP (NNP Mayor) (NNP Sheila) (NNP Dixon)) (VP (VBD announced) (NP (NNS plans) (S (VP (TO to) (VP (VP (VB form) (NP (NP (DT a) (NN task) (NN force)) (PP (IN on) (NP (JJ illegal) (NNS guns))))) (CC and) (VP (VB start) (NP (NP (DT a) (NN system)) (SBAR (S (VP (TO to) (VP (VB track) (SBAR (WHADVP (WRB where) (CC and) (WRB when)) (S (NP (NNS guns)) (VP (AUX have) (VP (AUX been) (VP (VBN used) (PP (IN in) (NP (NNS crimes))))))))))))))))))) (. .)))
(S1 (S (NP (NNP Truex)) (VP (VBD became) (NP (DT the) (JJ first) (NNP New) (NNP Jersey) (NN native)) (S (VP (TO to) (VP (VB win) (NP (NP (DT a) (JJ top-series) (NNP Nascar) (NN race)) (SBAR (IN since) (S (NP (NP (NNP Frankie) (NNP Schneider)) (, ,) (PP (IN of) (NP (NNP Lambertville))) (, ,)) (VP (VBD won) (PP (IN at) (NP (NNP Old) (NNP Dominion) (NNP Speedway))) (PP (IN on) (NP (NNP April) (CD 25) (, ,) (CD 1958))))))))))) (. .)))
(S1 (S (S (S (NP (PRP$ His) (NN teammate) (NNP Andres) (NNP Nocioni)) (VP (VBD barreled) (ADVP (RB straight)) (PP (TO to) (NP (DT the) (NN basket))))) (, ,) (CC and) (S (NP (DT the) (NNP Chicago) (NN rookie) (NNP Thabo) (NNP Sefolosha)) (VP (AUX did) (RB not) (ADVP (RB merely)) (VP (VB defend) (NP (NP (NNP Miami) (POS 's)) (NNP Dwyane) (NNP Wade)))))) (, ,) (NP (PRP he)) (VP (VBD gift-wrapped) (NP (NNP Wade)) (ADVP (RB early))) (. .)))
(S1 (S (NP (NP (PRP$ His) (JJ distant) (NN relative)) (, ,) (NP (NNP President) (NNP Franklin) (NNP D.) (NNP Roosevelt)) (, ,)) (VP (AUX was) (VP (VBN born) (CC and) (VBN raised) (PP (IN in) (NP (NP (NNP Hyde) (NNP Park)) (, ,) (NP (NNP N.Y.) (NN Correction)))) (: :) (NP (NP (NP (NNP March) (CD 13)) (, ,) (NP (CD 2007))) (, ,) (NP (NP (NNP Tuesday)) (NP (NP (DT A) (JJ Political) (NN Memo) (NN article)) (PP (IN on) (NP (NNP Thursday))) (, ,) (PP (IN about) (NP (NP (DT the) (NNS challenges)) (SBAR (S (NP (NNP Rudolph) (NNP W.) (NNP Giuliani)) (VP (VBZ faces) (PP (IN in) (S (VP (VBG running) (PP (IN for) (NP (NN president))) (PP (IN as) (NP (NP (DT a) (JJ former) (NNP New) (NNP York) (NNP City) (NN mayor)) (, ,) (VP (VBD referred) (ADVP (RB incorrectly)) (PP (TO to) (NP (NP (DT the) (NN timing)) (PP (IN of) (NP (NP (DT the) (JJ two-term) (NN presidency)) (PP (IN of) (NP (NP (DT another) (NNP New) (NNP Yorker)) (, ,) (NP (NNP Theodore) (NNP Roosevelt)))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (DT A) (JJ Political) (NN Memo) (NN article)) (PP (IN on) (NP (NNP Thursday))) (PP (IN about) (NP (DT the) (NNS challenges) (NNP Rudolph) (NNP W.) (NNP Giuliani)))) (VP (VBZ faces) (PP (IN in) (S (VP (VBG running) (PP (IN for) (NP (NN president))) (PP (IN as) (NP (NP (DT a) (JJ former) (NNP New) (NNP York) (NNP City) (NN mayor)) (VP (VBD referred) (ADVP (RB incorrectly)) (PP (TO to) (NP (NP (DT the) (NN presidency)) (PP (IN of) (NP (NP (NNP Theodore) (NNP Roosevelt)) (, ,) (ADVP (RB also)) (NP (DT a) (NNP New) (NNP York) (NNP City) (NN mayor))))))))))))) (. .)))
(S1 (S (S (NP (PRP We)) (VP (VBD saw) (NP (PRP$ our) (NN justice) (NN system)) (PP (IN at) (NP (NN work) (NN today))) (SBAR (IN as) (S (NP (NNP John) (NNP Couey)) (VP (AUX was) (VP (VBN convicted) (PP (IN for) (NP (PRP$ his) (JJ heinous) (NNS crimes))) (PP (IN against) (NP (NP (CD one)) (PP (IN of) (NP (NP (NNP Florida) (POS 's)) (NNS children))))))))))) (, ,) ('' '') (NP (NNP Mr.) (NNP Crist)) (VP (VBD said) (PP (IN in) (NP (DT a) (NN statement)))) (. .)))
(S1 (S (PP (IN In) (NP (NNP December))) (, ,) (NP (NP (NNP Bill) (NNP Lockyer)) (, ,) (ADVP (RB then)) (NP (NP (NNP California) (POS 's)) (NN attorney) (NN general)) (, ,)) (VP (VBD met) (PP (IN with) (NP (NP (DT a) (NN majority)) (PP (IN of) (NP (DT the) (CD nine) (NNS journalists))))) (PP (IN in) (NP (DT an) (NN attempt) (S (VP (TO to) (VP (VB get) (S (NP (NN settlement) (NNS talks)) (VP (VBD started) (SBAR (S (NP (NP (DT the) (NNS journalists) (POS ')) (NNS lawyers)) (VP (AUX were) (PP (IN at) (NP (DT the) (NN meeting))) (, ,) (SBAR (IN as) (S (VP (AUX were) (NP (NP (NNS lawyers)) (PP (IN for) (NP (NP (DT some)) (PP (IN of) (NP (NP (DT the) (NN news) (NNS organizations)) (SBAR (S (NP (PRP they)) (VP (VBN represented))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (NP (CD One)) (PP (IN of) (NP (NP (DT those)) (VP (VBN arrested))))) (, ,) (NP (NNP Gen.) (NNP Vang) (NNP Pao)) (, ,)) (VP (AUX is) (NP (NP (DT a) (JJ prominent) (NNPS Hmong) (NN fighter)) (CC and) (NP (NP (DT a) (NN leader)) (PP (IN in) (NP (NN exile))) (PP (IN in) (NP (DT the) (NNP United) (NNPS States))) (PP (IN since) (NP (NP (DT the) (NNP Communist) (NN takeover)) (PP (IN of) (NP (NNP Laos))) (PP (IN in) (NP (CD 1975)))))))) (. .)))
(S1 (S (S (VP (VBN Created) (PP (IN in) (NP (CD 1978))) (PP (IN by) (S (NP (NNP Valéry) (NNP Giscard)) (VP (VBG d'Estaing) (PP (IN during) (NP (PRP$ his) (NN presidency)))))))) (, ,) (NP (PRP it)) (VP (VP (VBN united) (NP (NP (NNP Christian) (NNPS Democrats)) (CC and) (NP (NNS liberals)))) (, ,) (CC and) (VP (AUX was) (VP (VBN meant) (S (VP (TO to) (VP (VB serve) (PP (IN as) (NP (NP (DT an) (NN alternative)) (PP (TO to) (NP (NP (DT the) (NN Rally)) (PP (IN for) (NP (DT the) (NNP Republic) (NN party))) (SBAR (WHNP (WDT that)) (S (NP (NNP Jacques) (NNP Chirac)) (VP (VBD founded) (ADVP (NP (CD two) (NNS years)) (RB earlier)) (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (VP (AUX was) (VP (VBG running) (PP (IN for) (NP (NP (NN mayor)) (PP (IN of) (NP (NNP Paris)))))))))))))))))))))) (. .)))
(S1 (S (S (NP (NNP Houston)) (VP (VBD hoped) (SBAR (S (NP (NNP Carr)) (VP (MD would) (VP (VB flourish) (PP (IN under) (NP (NP (NNP Gary) (NNP Kubiak)) (, ,) (NP (NP (DT the) (NNPS Texans) (POS ')) (JJ new) (NN coach) (JJ last) (NN season)))))))))) (, ,) (CC but) (S (NP (NNP Houston)) (VP (VBD went) (NP (CD 6-10)))) (. .)))
(S1 (S (NP (NNP Tuesday)) (VP (VBZ brings) (NP (NP (CD two) (JJ weighty) (NNS films)) (PP (IN for) (NP (NP (DT the) (JJ strong)) (PP (IN of) (NP (NN heart)))))) (PRN (: :) (S (NP (NNP Jacques) (NNP Rivette)) (VP (AUX 's) (NP (CD 1982)))) ('' '') (NP (NP (NP (NNP Le) (NNP Pont) (NNP du) (NNP Nord)) (, ,) ('' '') (SBAR (WHPP (IN in) (WHNP (WDT which))) (S (NP (NP (DT a) (CD '60s) (JJ radical)) (PRN (-LRB- -LRB-) (NP (NNP Bulle) (NNP Ogier)) (-RRB- -RRB-))) (VP (AUX is) (VP (VBN released) (PP (IN from) (NP (NN prison))) (PP (IN into) (NP (DT an) (JJ unrecognizable) (CD 1980s))) (NP (NNP Paris))))))) (, ,) (CC and) (NP (NP (NNP Jean) (NNP Eustache) (POS 's)) (JJ essential) (CD 1973) (NN work))) ('' '') (S (NP (NP (NNP La) (NNP Maman) (FW et) (FW la) (FW Putain) ('' '') (PRN (-LRB- -LRB-) (FRAG ('' '') (NP (NP (DT The) (NN Mother)) (CC and) (NP (DT the) (NNP Whore))) ('' '')) (-RRB- -RRB-)) (, ,) (SBAR (WHPP (IN in) (WHNP (WDT which))) (S (NP (DT the) (NNP New) (NNP Wave) (NN aesthetic)) (VP (VBZ reaches) (NP (NP (DT some) (NN sort)) (PP (IN of) (NP (NN terminal) (NN point))))))) (, ,)) (PP (IN as) (NP (NP (NNP Jean-Pierre) (NNP Léaud)) (, ,) (NP (NNP Bernadette) (NNP Lafont)) (CC and) (NP (NNP Françoise) (NNP Lebrun))))) (VP (VB discuss) (NP (NP (DT the) (NNS intricacies)) (PP (IN of) (NP (JJ male-female) (NNS relationships)))) (PP (IN for) (NP (CD 215) (JJ fascinating) (NNS minutes))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Iribe)) (VP (VBD became) (ADJP (JJ famous)) (PP (IN for) (NP (NP (NNS illustrations)) (SBAR (S (NP (PRP he)) (VP (AUX did) (PP (IN for) (NP (DT the) (NNP Paris) (NN couturier) (NNP Paul) (NNP Poiret))))))))) (. .)))
(S1 (S (S (NP (NNP Houston)) (VP (VBD hoped) (SBAR (S (NP (NNP Carr)) (VP (MD would) (VP (VB flourish) (PP (IN under) (NP (NP (NNP Gary) (NNP Kubiak)) (, ,) (NP (NP (DT the) (NNPS Texans) (POS ')) (JJ new) (NN coach) (JJ last) (NN season)))))))))) (, ,) (CC but) (S (NP (NNP Houston)) (VP (VBD went) (NP (CD 6-10)))) (. .)))
(S1 (SINV (ADVP (RB Here)) (VP (VBZ Lies)) (NP (NP (NNP Love)) ('' '') (VP (VBN wasinspired) (PP (IN by) (NP (NP (NP (NNP Imelda) (NNP Marcos) (POS 's)) (NN love)) (PP (IN of) (NP (NN disco))))) (, ,) (ADJP (RB so) (JJ great) (SBAR (IN that) (S (NP (PRP she)) (VP (VBD installed) (NP (NP (DT a) (NN dance) (NN floor)) (, ,) (ADJP (JJ complete) (PP (IN with) (NP (NN mirror) (NN ball)))) (, ,) (PP (IN on) (NP (NP (DT the) (NN roof)) (PP (IN of) (NP (NP (DT the) (JJ presidential) (NN palace)) (PP (IN in) (NP (NNP Manila)))))))))))))) (. .)))
(S1 (S (PP (IN After) (S (VP (VBG releasing) (NP (NP (NP (DT a) (NN collection)) (PP (IN of) (NP (NNS standards)))) (, ,) ('' '') (NP (NNP Moonlight) (NNP Serenade)) (, ,) ('' '') (VP (VBN made) (PP (IN in) (NP (DT the) (NNP Rod) (NNP Stewart) (NN mode)))))))) (PRN (, ,) (S (NP (NNP Ms.) (NNP Simon)) (VP (VBD said))) (, ,)) (NP (CD 61)) (, ,) (NP (PRP she)) (VP (VBD longed) (S (VP (TO to) (VP (VP (VB cut) (ADJP (JJ loose))) (CC and) (VP (VB make) (NP (DT a) (NN rock) (CC 'n') (NN roll) (NN album)) (PP (IN with) (NP (NP (NNP Booker) (NNP T.) (NNP Jones)) (, ,) (NP (NP (DT the) (JJ legendary) (NN keyboardist) (, ,) (NN producer) (, ,) (CC and) (NN architect)) (PP (IN of) (NP (NNP Memphis) (NN soul))))))))))) (. .)))
(S1 (S (PP (IN For) (NP (CD two) (NNS years))) (NP (NP (NNP M\/M)) (PRN (-LRB- -LRB-) (NP (NNP Paris)) (-RRB- -RRB-))) (VP (VBD served) (PP (IN as) (NP (NP (DT the) (NN art) (NNS directors)) (PP (IN for) (NP (JJ French) (NN Vogue))))) (, ,) (S (VP (VBG redesigning) (NP (NP (DT the) (NN magazine)) (PP (IN for) (NP (NP (DT the) (JJ current) (NN editor)) (, ,) (NP (NNP Carine) (NNP Roitfeld)))))))) (. .)))
(S1 (S (NP (NP (DT The) (NN restoration)) (PP (IN of) (NP (NNP West) (NNP Baden) (NNP Springs)))) (VP (AUX is) (NP (NP (DT the) (JJ last) (JJ major) (NN piece)) (PP (IN of) (NP (DT a) (NN plan) (S (VP (TO to) (VP (VB return) (NP (NP (JJ tiny) (NNP French) (NNP Lick)) (, ,) (VP (ADVP (RB also)) (VBN known) (PP (IN as) (NP (NP (DT the) (NN hometown)) (PP (IN of) (NP (DT the) (NN basketball) (NN star) (NNP Larry) (NN Bird)))))) (, ,)) (PP (TO to) (NP (NP (PRP$ its) (JJ long-lost) (NN status)) (PP (IN as) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (NNP Midwest) (POS 's)) (JJS biggest) (NN resort) (NNS destinations)))))))))))))) (. .)))
(S1 (S (NP (NP (NNP Christopher) (NNP J.) (NNP Christie)) (, ,) (NP (NP (DT the) (NNP United) (NNP States) (NN attorney)) (PP (IN in) (NP (NNP Newark)))) (, ,)) (VP (VBD said) (SBAR (S (NP (CD 13) (NNS people)) (VP (AUX were) (VP (VBN charged) (PP (IN with) (S (VP (VBG running) (NP (DT a) (NN gun) (CC and) (NN drug) (NN business)) (PP (IN from) (NP (CD two) (NNP Newark) (NN housing) (NNS projects))))))))))) (. .)))
(S1 (S (NP (CD 10) (NN P.M.) (PRN (-LRB- -LRB-) (NP (NNP Comedy) (NNP Central)) (-RRB- -RRB-)) (NNP COMEDY) (NNP CENTRAL)) (VP (VBZ PRESENTS) (SBAR (S (NP (NP (NNP Chelsea) (NNP Handler)) (, ,) (NP (NP (DT the) (JJS youngest)) (PP (IN of) (NP (CD six) (NNS children)))) (, ,)) (VP (AUX was) (VP (VBN born) (PP (IN in) (NP (NP (NNP Livingston)) (, ,) (NP (NNP N.J.)) (, ,))) (PP (TO to) (NP (NP (DT a) (JJ Jewish) (NN father)) (CC and) (NP (DT a) (NNP Mormon) (NN mother))))))))) (. .)))
(S1 (S (NP (JJ Other) (NNS films)) (VP (VBP include) (NP (NP ('' '') (NP (DT The) (JJ Unknown) (NNP Woman)) ('' '') (PRN (-LRB- -LRB-) ('' '') (NNP La) (NNP Sconosciuta) ('' '') (-RRB- -RRB-))) (, ,) (NP (NP (DT a) (NN thriller)) (PP (IN about) (NP (DT a) (JJ Ukrainian) (ADJP (JJ immigrant) (PP (TO to) (NP (NP (NNP Italy)) (VP (VBN directed) (PP (IN by) (NP (NP (NNP Giuseppe) (NNP Tornatore) (PRN (-LRB- -LRB-) ('' '') (NNP Cinema) (NNP Paradiso) ('' '') (-RRB- -RRB-)) (NNP Angelo)) (NP (NNP Longoni) (POS 's)))))))) (JJ biopic) ('' '') (NNP Caravaggio)))) (, ,) ('' '') (VP (VP (VBN photographed) (PP (IN by) (NP (DT the) (JJ great) (NNP Vittorio) (NNP Storaro)))) (CC and) (VP (VBG starring) (NP (NP (NNP Alessio) (NNP Boni)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VP (VBD played) (NP (DT the) (JJR younger) (NN brother)) (PP (IN in) ('' '') (NP (NP (DT The) (JJS Best)) (PP (IN of) (NP (NN Youth)))))) ('' '') (CC and) (VP ('' '') (NP (NP (NP (NNP Primo) (NNP Levi) (POS 's)) (NN Journey)) ('' '') (PRN (-LRB- -LRB-) ('' '') (NP (NNP La) (NNP Strada) (FW di) (NNP Levi)) ('' '') (-RRB- -RRB-)) (, ,) (NP (NP (DT a) (NN documentary)) (SBAR (WHNP (WDT that)) (S (VP (VBZ retraces) (NP (NP (DT the) (JJ tortuous) (NN route)) (SBAR (S (NP (NNP Levi)) (VP (AUX had) (S (VP (TO to) (VP (VB take) (S (VP (TO to) (VP (VB return) (NP (NN home)) (PP (IN from) (NP (NNP Auschwitz))) (PP (IN in) (NP (CD 1945))))))))))))))))))))))))))) (. .)))
(S1 (S (CC But) (NP (PRP it)) (VP (AUX 's) (NP (DT a) (JJ good) (NN bet) (SBAR (IN that) (S (NP (NP (NNP Fidel) (NNP Castro) (POS 's)) (NN government)) (VP (MD will) (VP (VB turn) (NP (NP (DT a) (JJ blind) (NN eye)) (PP (TO to) (NP (NP (JJ bootleg) (NNS copies)) (PP (IN of) (NP (NP ('' '') (NNP Sicko)) (, ,) ('' '') (NP (NP (NNP Michael) (NNP Moore) (POS 's)) (JJS newest) (NN movie)) (, ,)))))) (SBAR (IN if) (S (NP (PRP they)) (VP (VBP show) (PRT (RP up)) (PP (IN on) (NP (NP (DT the) (NNS streets)) (PP (IN of) (NP (NNP Havana)))))))))))))) (. .) ('' '')))
(S1 (S (NP (NP (DT A) (NAC (NNP Hunka) (, ,) (NNP Hunka) (DT An)) (NN exhibition)) (PP (IN of) (NP (NP (NP (NNP Elvis) (NNP Presley) (POS 's)) (NN stage) (NNS costumes)) (PP (IN from) (NP (NP (CD 1969)) (PP (TO to) (NP (CD 1977)))))))) (VP (VBD opened) (PP (IN on) (NP (NNP Thursday))) (PP (IN in) (NP (NP (DT the) (NN visitor) (NN center)) (PP (IN at) (NP (NNP Graceland) (NN mansion))) (PP (IN in) (NP (NNP Memphis)))))) (. .)))
(S1 (S (NP (DT The) (CD six) (NNS children)) (NP (NNP Mr.) (NNP Brown)) (VP (VBD acknowledged) (SBAR (IN in) (S (NP (PRP$ his)) (VP (MD will) (VP (VB want) (S (NP (PRP$ his) (NN body)) (VP (VBN placed) (PP (IN in) (NP (NP (DT a) (NN mausoleum)) (PP (IN on) (NP (PRP$ his) (JJ 60-acre) (NN property))))) (PP (ADVP (RB just)) (IN across) (NP (NP (DT the) (NNP South) (NNP Carolina) (NN state) (NN line)) (PP (IN near) (NP (DT the) (NNP Savannah) (NNP River))))) (, ,) (NP (NP (DT an) (NN estate)) (SBAR (S (NP (PRP they)) (VP (VBP hope) (SBAR (S (VP (MD will) (VP (VB become) (NP (NP (DT a) (NN museum) (CC and) (NN memorial) (NN park)) (ADJP (JJ akin) (PP (TO to) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NN home)) (PP (IN of) (NP (NNP Elvis) (NNP Presley))) (PP (IN in) (NP (NNP Memphis)))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX has) (ADVP (RB long)) (VP (AUX been) (NP (DT a) (JJ lucrative) (NN tourist) (NN attraction))))))))))))))))))))))))) (. .)))
(S1 (S (ADVP (NP (DT A) (JJ few) (NNS years)) (RB later)) (, ,) (PP (IN in) (NP (NNP Iran))) (, ,) (NP (NNP Reza) (NN Shah)) (VP (MD would) (VP (VB copy) (S (NP (NP (NNP Ataturk) (POS 's)) (NN approach)) (ADJP (JJ wholesale))))) (. .)))
(S1 (S (NP (DT The) (JJ whole) (NN experience)) (VP (AUX is) (PP (IN like) (NP (NP (DT a) (JJ corporate) (NN version)) (PP (IN of) (NP (NP (NNP Graceland)) (, ,) (NP (NP (NNP Elvis) (NNP Presley) (POS 's)) (JJ former) (NN home)))))) (: :) (NP (NP (DT the) (JJ same) (JJ fresh-faced) (NNS docents)) (, ,) (NP (DT the) (JJ same) (NN reverent) (NNS fans)) (, ,) (NP (DT the) (JJ same) (JJ relentless) (NN merchandising)))) (. .)))
(S1 (S (NP (DT The) (JJ late) (NNP Yitzhak) (NNP Rabin)) (VP (VBD called) (S (NP (PRP him)) (NP (NP (DT the) (JJS greatest) (NN builder)) (PP (IN of) (NP (NNP Jerusalem))) (PP (IN since) (NP (NNP Herod) (NP (DT the) (NNP Great))))))) (. .)))
(S1 (S (S (NP (NP (DT The) (NN theme)) (PP (IN of) (NP (NP (DT this) (NN year) (POS 's)) (NN issue)))) (VP (AUX is) (NP (NN music)))) (, ,) (CC and) (S (NP (DT this) (NN special)) (VP (VBZ goes) (PP (IN behind) (NP (DT the) (NNS scenes))) (PP (IN with) (NP (NP (DT the) (NNS models)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD shimmied) (PP (IN at) (NP (NP (NNS locations)) (PP (IN like) (NP (NP (NP (DT the) (NNP Rock) (CC and) (NNP Roll) (NNP Hall)) (PP (IN of) (NP (NNP Fame))) (PP (IN in) (NP (NNP Cleveland)))) (CC and) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NNP Elvis) (NNP Presley) (NN mansion)) (PP (IN in) (NP (NNP Memphis)))))))))))))))) (. .)))
(S1 (S (NP (PRP They)) (VP (VBP plan) (S (VP (TO to) (VP (VB consult) (PP (IN with) (NP (NP (DT the) (NN family)) (PP (IN of) (NP (NNP Elvis) (NNP Presley))))) (PP (IN on) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NNP Presley) (NN mansion)) (PP (IN in) (NP (NP (NNP Memphis)) (, ,) (NP (NNP Tenn.)) (, ,))) (SBAR (WHNP (WDT which)) (S (VP (VBZ draws) (NP (CD 600,000) (NNS visitors)) (ADVP (RB annually)))))))))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Wenner)) (VP (VBD said) (SBAR (IN that) (S (NP (NNP Mr.) (NNP Ertegun)) (VP (AUX had) (VP (VBN insisted) (PP (IN on) (S (VP (VBG taking) (NP (NP (NP (NP (DT the) (NNP Hall)) (PP (IN of) (NP (NNP Fame))) (POS 's)) (NN architect)) (, ,) (NP (NNP I.M.) (NNP Pei)) (, ,)) (S (VP (TO to) (VP (VB visit) (NP (NP (NNP Graceland)) (, ,) (NP (NP (NP (NNP Elvis) (NNP Presley) (POS 's)) (NN mansion)) (PP (IN in) (NP (NNP Memphis)))))))))))))))) (. .)))
(S1 (S (S (NP (NP (DT The) (NN theme)) (PP (IN of) (NP (NP (DT this) (NN year) (POS 's)) (NN issue)))) (VP (AUX is) (NP (NN music)))) (, ,) (CC and) (S (NP (DT this) (NN special)) (VP (VBZ goes) (PP (IN behind) (NP (DT the) (NNS scenes))) (PP (IN with) (NP (NP (DT the) (NNS models)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD shimmied) (PP (IN at) (NP (NP (NNS locations)) (PP (IN like) (NP (NP (NP (DT the) (NNP Rock) (CC and) (NNP Roll) (NNP Hall)) (PP (IN of) (NP (NNP Fame))) (PP (IN in) (NP (NNP Cleveland)))) (CC and) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NNP Elvis) (NNP Presley) (NN mansion)) (PP (IN in) (NP (NNP Memphis)))))))))))))))) (. .)))
(S1 (S (NP (DT The) (JJ late) (NNP Yitzhak) (NNP Rabin)) (VP (VBD called) (S (NP (PRP him)) (NP (NP (DT the) (JJS greatest) (NN builder)) (PP (IN of) (NP (NNP Jerusalem))) (PP (IN since) (NP (NNP Herod) (NP (DT the) (NNP Great))))))) (. .)))
(S1 (S (S (NP (NP (DT The) (NN theme)) (PP (IN of) (NP (NP (DT this) (NN year) (POS 's)) (NN issue)))) (VP (AUX is) (NP (NN music)))) (, ,) (CC and) (S (NP (DT this) (NN special)) (VP (VBZ goes) (PP (IN behind) (NP (DT the) (NNS scenes))) (PP (IN with) (NP (NP (DT the) (NNS models)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD shimmied) (PP (IN at) (NP (NP (NNS locations)) (PP (IN like) (NP (NP (NP (DT the) (NNP Rock) (CC and) (NNP Roll) (NNP Hall)) (PP (IN of) (NP (NNP Fame))) (PP (IN in) (NP (NNP Cleveland)))) (CC and) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NNP Elvis) (NNP Presley) (NN mansion)) (PP (IN in) (NP (NNP Memphis)))))))))))))))) (. .)))
(S1 (S (NP (DT The) (CD six) (NNS children)) (NP (NNP Mr.) (NNP Brown)) (VP (VBD acknowledged) (SBAR (IN in) (S (NP (PRP$ his)) (VP (MD will) (VP (VB want) (S (NP (PRP$ his) (NN body)) (VP (VBN placed) (PP (IN in) (NP (NP (DT a) (NN mausoleum)) (PP (IN on) (NP (PRP$ his) (JJ 60-acre) (NN property))))) (PP (ADVP (RB just)) (IN across) (NP (NP (DT the) (NNP South) (NNP Carolina) (NN state) (NN line)) (PP (IN near) (NP (DT the) (NNP Savannah) (NNP River))))) (, ,) (NP (NP (DT an) (NN estate)) (SBAR (S (NP (PRP they)) (VP (VBP hope) (SBAR (S (VP (MD will) (VP (VB become) (NP (NP (DT a) (NN museum) (CC and) (NN memorial) (NN park)) (ADJP (JJ akin) (PP (TO to) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NN home)) (PP (IN of) (NP (NNP Elvis) (NNP Presley))) (PP (IN in) (NP (NNP Memphis)))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX has) (ADVP (RB long)) (VP (AUX been) (NP (DT a) (JJ lucrative) (NN tourist) (NN attraction))))))))))))))))))))))))) (. .)))
(S1 (S (ADVP (NP (DT A) (JJ few) (NNS years)) (RB later)) (, ,) (PP (IN in) (NP (NNP Iran))) (, ,) (NP (NNP Reza) (NN Shah)) (VP (MD would) (VP (VB copy) (S (NP (NP (NNP Ataturk) (POS 's)) (NN approach)) (ADJP (JJ wholesale))))) (. .)))
(S1 (S (NP (NNP Mr.) (NNP Wenner)) (VP (VBD said) (SBAR (IN that) (S (NP (NNP Mr.) (NNP Ertegun)) (VP (AUX had) (VP (VBN insisted) (PP (IN on) (S (VP (VBG taking) (NP (NP (NP (NP (DT the) (NNP Hall)) (PP (IN of) (NP (NNP Fame))) (POS 's)) (NN architect)) (, ,) (NP (NNP I.M.) (NNP Pei)) (, ,)) (S (VP (TO to) (VP (VB visit) (NP (NP (NNP Graceland)) (, ,) (NP (NP (NP (NNP Elvis) (NNP Presley) (POS 's)) (NN mansion)) (PP (IN in) (NP (NNP Memphis)))))))))))))))) (. .)))
(S1 (S (NP (NP (DT A) (NAC (NNP Hunka) (, ,) (NNP Hunka) (DT An)) (NN exhibition)) (PP (IN of) (NP (NP (NP (NNP Elvis) (NNP Presley) (POS 's)) (NN stage) (NNS costumes)) (PP (IN from) (NP (NP (CD 1969)) (PP (TO to) (NP (CD 1977)))))))) (VP (VBD opened) (PP (IN on) (NP (NNP Thursday))) (PP (IN in) (NP (NP (DT the) (NN visitor) (NN center)) (PP (IN at) (NP (NNP Graceland) (NN mansion))) (PP (IN in) (NP (NNP Memphis)))))) (. .)))
(S1 (S (NP (DT The) (JJ whole) (NN experience)) (VP (AUX is) (PP (IN like) (NP (NP (DT a) (JJ corporate) (NN version)) (PP (IN of) (NP (NP (NNP Graceland)) (, ,) (NP (NP (NNP Elvis) (NNP Presley) (POS 's)) (JJ former) (NN home)))))) (: :) (NP (NP (DT the) (JJ same) (JJ fresh-faced) (NNS docents)) (, ,) (NP (DT the) (JJ same) (NN reverent) (NNS fans)) (, ,) (NP (DT the) (JJ same) (JJ relentless) (NN merchandising)))) (. .)))
(S1 (S (S (NP (NP (DT The) (NN theme)) (PP (IN of) (NP (NP (DT this) (NN year) (POS 's)) (NN issue)))) (VP (AUX is) (NP (NN music)))) (, ,) (CC and) (S (NP (DT this) (NN special)) (VP (VBZ goes) (PP (IN behind) (NP (DT the) (NNS scenes))) (PP (IN with) (NP (NP (DT the) (NNS models)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD shimmied) (PP (IN at) (NP (NP (NNS locations)) (PP (IN like) (NP (NP (NP (DT the) (NNP Rock) (CC and) (NNP Roll) (NNP Hall)) (PP (IN of) (NP (NNP Fame))) (PP (IN in) (NP (NNP Cleveland)))) (CC and) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NNP Elvis) (NNP Presley) (NN mansion)) (PP (IN in) (NP (NNP Memphis)))))))))))))))) (. .)))
(S1 (S (NP (PRP They)) (VP (VBP plan) (S (VP (TO to) (VP (VB consult) (PP (IN with) (NP (NP (DT the) (NN family)) (PP (IN of) (NP (NNP Elvis) (NNP Presley))))) (PP (IN on) (NP (NP (NNP Graceland)) (, ,) (NP (NP (DT the) (NNP Presley) (NN mansion)) (PP (IN in) (NP (NP (NNP Memphis)) (, ,) (NP (NNP Tenn.)) (, ,))) (SBAR (WHNP (WDT which)) (S (VP (VBZ draws) (NP (CD 600,000) (NNS visitors)) (ADVP (RB annually)))))))))))) (. .)))
(S1 (S (ADVP (RB Meanwhile)) (NP (DT some) (NNP Muslim) (NNS leaders)) (VP (AUX are) (ADJP (JJ unhappy) (PP (IN about) ('' '') (NP (NP (NN Faith)) (PP (IN Without) (NP (NP (NN Fear)) (, ,) ('' '') (SBAR (WHPP (IN in) (WHNP (WDT which))) (S (NP (NP (DT a) (NNP Canadian) (NN journalist)) (, ,) (NP (NNP Irshad) (NNP Manji)) (, ,)) (VP (VBZ gets) (NP (DT an) (NN hour)) (S (VP (TO to) (VP (VB outline) (NP (NP (PRP$ her) (NN call)) (PP (IN for) (NP (NP (NNS changes)) (PP (IN in) (SBAR (WHNP (WP what)) (S (NP (PRP she)) (VP (VBZ sees) (PP (IN as) (NP (ADJP (RB overly) (JJ monolithic)) (NNP Muslim) (NNS societies)))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (JJ Other) (NNS films)) (SBAR (WHNP (WDT that)) (S (VP (VBD made) (NP (DT the) (NN cut)))))) (VP (VBP include) (NP (NP (DT a) (NN portrait)) (PP (IN of) (NP (NP (NNP Richard) (NNP N.) (NNP Perle)) (, ,) (NP (NP (DT the) (JJ former) (NNP Bush) (NN administration) (NN adviser)) (CC and) (NP (NNP Iraq) (NN war) (NN advocate))) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBZ narrates) (NP (NP (DT a) (NN documentary)) (SBAR (WHPP (IN in) (WHNP (WDT which))) (S (NP (PRP he)) (VP (VBZ confronts) (NP (NP (PRP$ his) (NNS critics)) (, ,) (CONJP (RB as) (RB well) (IN as)) (NP (NP (DT a) ('' '') (NNP Frontline) ('' '') (NN co-production)) (SBAR (WHNP (WDT that)) (S (VP (VBZ takes) (NP (NP (DT a) (JJ critical) (NN look)) (PP (IN at) (NP (DT the) (NN effort) (S (VP (TO to) (VP (VB train) (NP (JJ Iraqi) (NNS forces)) (NP (NP (DT a) (NN profile)) (PP (IN of) (NP (NP (DT the) (NNP Muslim) (NN dissident) (NNP Irshad) (NNP Manji)) (CC and) (NP (NP (DT an) (NN examination)) (PP (IN of) (NP (NNP Islam))) (PP (IN in) (NP (NNP Indonesia))) (, ,) (VP (VBN produced) (PP (IN by) (NP (NNP New) (NNP York) (NNP Times) (NNP Television)))))))))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (DT A) (JJ former) (JJ military) (NN ruler)) (, ,) (NP (NNP Muhammadu) (NNP Buhari)) (, ,) (RRC (ADVP (RB also)) (NP (DT a) (JJ northern) (NNP Muslim))) (, ,)) (VP (AUX is) (NP (NP (DT a) (JJ leading) (NN candidate)) (, ,) (VP (VBG representing) (NP (NP (DT the) (NNP All) (NNP Nigeria) (NNP People) (POS 's)) (NN Party))))) (. .)))
(S1 (S (SBAR (IN Although) (S (NP (NP (DT the) (NN regime)) (PP (IN of) (NP (NNP President) (NNP Bashar) (NN al-Assad)))) (VP (VBZ hails) (PP (IN from) (NP (NP (DT an) (JJ obscure) (NN offshoot)) (PP (IN of) (NP (NNP Shiism)))))))) (PRN (: --) (NP (DT the) (NNPS Alawites)) (: --)) (NP (NNP Syria)) (VP (AUX is) (ADVP (RB nearly)) (NP (NNS three-quarters)) (NP (NNP Sunni)) (, ,) (PP (IN with) (NP (NP (NNP Alawites)) (, ,) (NP (NP (NNS members)) (PP (IN of) (NP (JJ other) (NNP Muslim) (NNS sects)))) (CC and) (NP (NP (DT a) (JJ considerable) (NN number)) (PP (IN of) (NP (NP (NNS Christians)) (VP (VBG making) (PRT (RP up)) (NP (DT the) (NN rest))))))))) (. .)))
(S1 (FRAG (NP (NP (CD 9) (NN P.M.)) (NP (NP (PRN (-LRB- -LRB-) (NP (CD 13)) (, ,) (NP (CD 49)) (-RRB- -RRB-)) (NN FAITH)) (PP (IN WITHOUT) (NP (NN FEAR))))) (: --) (S (NP (DT This) ('' '') (NAC (NNP America) (PP (IN at) (NP (DT a) (NNS Crossroads)))) ('' '') (NN documentary)) (VP (VBZ follows) (NP (NP (DT the) (NN journey)) (PP (IN of) (NP (NP (DT the) (NNP Muslim) (NN dissident) (NNP Irshad) (NNP Manji)) (, ,) (VP (VBN left) (, ,) (SBAR (IN as) (S (NP (PRP she)) (VP (VBZ travels) (PP (IN through) (NP (NP (NNP Yemen)) (, ,) (NP (NNP Europe)) (CC and) (NP (NNP North) (NNP America)))) (PP (IN on) (SBAR (WHNP (WP what)) (S (NP (PRP she)) (VP (VBZ sees) (PP (IN as) (NP (DT a) (NN quest) (S (VP (TO to) (VP (VB restore) (NP (NN humanity) (CC and) (NN reason)) (PP (TO to) (NP (NNP Islam))))))))))))))))))))) (. .) ('' '')))
(S1 (S (ADVP (RB Meanwhile)) (NP (DT some) (NNP Muslim) (NNS leaders)) (VP (AUX are) (ADJP (JJ unhappy) (PP (IN about) ('' '') (NP (NP (NN Faith)) (PP (IN Without) (NP (NP (NN Fear)) (, ,) ('' '') (SBAR (WHPP (IN in) (WHNP (WDT which))) (S (NP (NP (DT a) (NNP Canadian) (NN journalist)) (, ,) (NP (NNP Irshad) (NNP Manji)) (, ,)) (VP (VBZ gets) (NP (DT an) (NN hour)) (S (VP (TO to) (VP (VB outline) (NP (NP (PRP$ her) (NN call)) (PP (IN for) (NP (NP (NNS changes)) (PP (IN in) (SBAR (WHNP (WP what)) (S (NP (PRP she)) (VP (VBZ sees) (PP (IN as) (NP (ADJP (RB overly) (JJ monolithic)) (NNP Muslim) (NNS societies)))))))))))))))))))))) (. .)))
(S1 (S (CC But) (NP (PRP it)) (VP (AUX 's) (NP (DT a) (JJ good) (NN bet) (SBAR (IN that) (S (NP (NP (NNP Fidel) (NNP Castro) (POS 's)) (NN government)) (VP (MD will) (VP (VB turn) (NP (NP (DT a) (JJ blind) (NN eye)) (PP (TO to) (NP (NP (JJ bootleg) (NNS copies)) (PP (IN of) (NP (NP ('' '') (NNP Sicko)) (, ,) ('' '') (NP (NP (NNP Michael) (NNP Moore) (POS 's)) (JJS newest) (NN movie)) (, ,)))))) (SBAR (IN if) (S (NP (PRP they)) (VP (VBP show) (PRT (RP up)) (PP (IN on) (NP (NP (DT the) (NNS streets)) (PP (IN of) (NP (NNP Havana)))))))))))))) (. .) ('' '')))
(S1 (S (NP (JJ Other) (NNS films)) (VP (VBP include) (NP (NP ('' '') (NP (DT The) (JJ Unknown) (NNP Woman)) ('' '') (PRN (-LRB- -LRB-) ('' '') (NNP La) (NNP Sconosciuta) ('' '') (-RRB- -RRB-))) (, ,) (NP (NP (DT a) (NN thriller)) (PP (IN about) (NP (DT a) (JJ Ukrainian) (ADJP (JJ immigrant) (PP (TO to) (NP (NP (NNP Italy)) (VP (VBN directed) (PP (IN by) (NP (NP (NNP Giuseppe) (NNP Tornatore) (PRN (-LRB- -LRB-) ('' '') (NNP Cinema) (NNP Paradiso) ('' '') (-RRB- -RRB-)) (NNP Angelo)) (NP (NNP Longoni) (POS 's)))))))) (JJ biopic) ('' '') (NNP Caravaggio)))) (, ,) ('' '') (VP (VP (VBN photographed) (PP (IN by) (NP (DT the) (JJ great) (NNP Vittorio) (NNP Storaro)))) (CC and) (VP (VBG starring) (NP (NP (NNP Alessio) (NNP Boni)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VP (VBD played) (NP (DT the) (JJR younger) (NN brother)) (PP (IN in) ('' '') (NP (NP (DT The) (JJS Best)) (PP (IN of) (NP (NN Youth)))))) ('' '') (CC and) (VP ('' '') (NP (NP (NP (NNP Primo) (NNP Levi) (POS 's)) (NN Journey)) ('' '') (PRN (-LRB- -LRB-) ('' '') (NP (NNP La) (NNP Strada) (FW di) (NNP Levi)) ('' '') (-RRB- -RRB-)) (, ,) (NP (NP (DT a) (NN documentary)) (SBAR (WHNP (WDT that)) (S (VP (VBZ retraces) (NP (NP (DT the) (JJ tortuous) (NN route)) (SBAR (S (NP (NNP Levi)) (VP (AUX had) (S (VP (TO to) (VP (VB take) (S (VP (TO to) (VP (VB return) (NP (NN home)) (PP (IN from) (NP (NNP Auschwitz))) (PP (IN in) (NP (CD 1945))))))))))))))))))))))))))) (. .)))
(S1 (S (NP (NP (PRP$ His) (NN idea)) (PRN (: --) (NP (NP (CD one)) (SBAR (WHNP (WDT that)) (S (VP (AUX has) (RB rarely) (, ,) (ADVP (IN if) (RB ever)) (, ,) (VP (AUX been) (VP (VBN tried) (PP (IN on) (NP (DT a) (JJ large) (NN scale))) (PP (IN by) (NP (DT a) (JJ major) (NN museum))))))))) (: --))) (VP (AUX is) (S (VP (VP (TO to) (VP (VB collect) (NP (NP (JJ significant) (NNS pieces)) (PP (IN of) (NP (JJ midcentury) (JJ residential) (NN architecture)))))) (, ,) (VP (VBG including) (NP (NP (NNS houses)) (PP (IN by) (NP (NP (NNP Rudolf) (NNP M.) (NNP Schindler)) (, ,) (NP (NNP Richard) (NNP Neutra)) (, ,) (NP (NNP Frank) (NNP Lloyd) (NNP Wright)) (CC and) (NP (NP (PRP$ his) (NN son)) (NP (NNP Lloyd) (NNP Wright))))))) (, ,) (CC and) (VP (TO to) (VP (VB treat) (NP (PRP them)) (PP (IN as) (NP (DT both) (NN museum) (NNS objects))) (CC and) (PP (IN as) (NP (NNS residences))) (PP (IN for) (NP (NNS curators)))))))) (. .)))
(S1 (S (NP (JJ Next) (NN year)) (NP (PRP he)) (VP (AUX is) (VP (VBG planning) (S (VP (VP (TO to) (VP (VB publish) (NP (NP (DT the) (NN poetry)) (PP (IN of) (NP (NP (NNP Aeronwy) (NNP Thomas)) (, ,) (NP (NP (NNP Dylan) (NNP Thomas) (POS 's)) (NN daughter)) (, ,)))))) (CC and) (VP (TO to) (VP (VB bring) (NP (PRP her)) (PP (TO to) (NP (DT the) (NNP United) (NNPS States))) (PP (IN for) (NP (NP (DT a) (NN book) (NN tour)) (PP (IN along) (PP (IN with) (NP (DT the) (NNP Welsh) (NN poet) (CC and) (NN publisher) (NNP Peter) (NNP Thabit) (NNP Jones)))))))))))) (. .)))
(S1 (S (-LRB- -LRB-) (NP (PRP$ His) (NNS parents)) (VP (AUX are) (NP (NP (DT the) (NNS folkies) (NNP Kate) (NNP McGarrigle) (CC and) (NNP Loudon) (NNP Wainwright) (NNP III)) (SBAR (S (NP (NP (PRP$ his) (NNS sisters)) (, ,) (NP (NP (NNP Martha) (NNP Wainwright)) (CC and) (NP (NNP Lucy) (NNP Wainwright) (NNP Roche))) (, ,)) (ADVP (RB often)) (VP (VB join) (NP (PRP$ his) (NNS tours))))))) (. .) (-RRB- -RRB-)))
(S1 (NP (NP (ADJP (JJ Joyful) (CC and) (JJ doting)) (NN grandfather)) (PP (IN of) (NP (NNP Amanda) (, ,) (NNP Lindsay) (, ,) (NNP David) (, ,) (NNP Alexa) (, ,) (NNP Reese) (, ,) (NNP Paige) (CC and) (NNP Nathan))) (. .)))
(S1 (S (-LRB- -LRB-) (NP (PRP$ His) (NNS parents)) (VP (AUX are) (NP (NP (DT the) (NNS folkies) (NNP Kate) (NNP McGarrigle) (CC and) (NNP Loudon) (NNP Wainwright) (NNP III)) (SBAR (S (NP (NP (PRP$ his) (NNS sisters)) (, ,) (NP (NP (NNP Martha) (NNP Wainwright)) (CC and) (NP (NNP Lucy) (NNP Wainwright) (NNP Roche))) (, ,)) (ADVP (RB often)) (VP (VB join) (NP (PRP$ his) (NNS tours))))))) (. .) (-RRB- -RRB-)))
(S1 (S (-LRB- -LRB-) (NP (PRP$ His) (NNS parents)) (VP (AUX are) (NP (NP (DT the) (NNS folkies) (NNP Kate) (NNP McGarrigle) (CC and) (NNP Loudon) (NNP Wainwright) (NNP III)) (SBAR (S (NP (NP (PRP$ his) (NNS sisters)) (, ,) (NP (NP (NNP Martha) (NNP Wainwright)) (CC and) (NP (NNP Lucy) (NNP Wainwright) (NNP Roche))) (, ,)) (ADVP (RB often)) (VP (VB join) (NP (PRP$ his) (NNS tours))))))) (. .) (-RRB- -RRB-)))
(S1 (S (NP (NP (PRP$ Their) (NN son)) (, ,) (NP (NNP Cyril)) (, ,)) (VP (VBD used) (S (VP (TO to) (VP (VB share) (NP (DT a) (NN baby) (NN sitter)) (PP (IN with) (NP (NP (NNP Rebecca) (NNP Miller)) (, ,) (NP (NP (DT the) (NN child)) (PP (IN of) (NP (NP (DT the) (NN playwright) (NNP Arthur) (NNP Miller)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD lived) (PP (IN at) (NP (DT the) (NN hotel))) (ADVP (IN off) (CC and) (IN on)) (PP (IN throughout) (NP (PRP$ her) (NN childhood))))))))))))))) (. .)))
(S1 (FRAG (PP (IN WITH) (NP (NP (: :) (NNP Abhishek) (NNP Bachchan)) (PRN (-LRB- -LRB-) (NP (NNP Rikki) (NNP Thukral)) (-RRB- -RRB-)) (, ,) (NP (NNP Preity) (NNP Zinta)) (PRN (-LRB- -LRB-) (NP (NNP Alvira) (NNP Khan)) (-RRB- -RRB-)) (, ,) (NP (NP (NNP Lara) (NNP Dutta)) (PRN (-LRB- -LRB-) (NP (NNP Anaida)) (-RRB- -RRB-))) (, ,) (NP (NP (NNP Bobby) (NNP Deol)) (PRN (-LRB- -LRB-) (NP (NNP Steve)) (-RRB- -RRB-))) (CC and) (PP (IN in) (NP (DT a) (JJ special) (NN appearance))) (, ,) (NP (NNP Amitabh) (NNP Bachchan)))) (. .)))
(S1 (S (PP (IN In) (NP (NNP Egypt))) (, ,) (NP (NP (NNP Gamal) (NNP Mubarak)) (, ,) (NP (NP (NP (NN son)) (PP (IN of) (NP (NNP President) (NNP Hosni) (NNP Mubarak)))) (CC and) (NP (NP (JJ assistant) (NN secretary) (NN general)) (PP (IN of) (NP (DT the) (JJ ruling) (NNP National) (NNP Democratic) (NNP Party))))) (, ,)) (VP (VBD announced) (NP (JJ last) (NNP September)) (NP (NP (DT the) (NN country) (POS 's)) (NN intention) (S (VP (TO to) (VP (VB resume) (NP (NP (PRP$ its) (JJ nuclear) (NN energy) (NN program)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (AUX was) (VP (VBN frozen) (PP (IN after) (NP (DT the) (NX (NX (NNP Chernobyl) (NN explosion)) (CC and) (NX (NN fire))))) (PP (IN in) (NP (CD 1986))))))))))))) (. .)))
(S1 (S (S (NP (NP (NNP Woody) (NNP Harrelson) (POS 's)) (NN Father)) (VP (VBZ Dies) (SBAR (IN in) (S (NP (NP (NP (NNP Prison) (NNP Woody) (NNP Harrelson) (POS 's)) (NN father)) (, ,) (NP (NP (NNP Charles) (NNP Harrelson)) (, ,) (NP (CD 68))) (, ,)) (VP (AUX has) (VP (VBN died) (PP (IN in) (NP (NP (DT the) (JJ high-security) (JJ federal) (NN prison)) (PP (IN in) (NP (NP (NNP Florence)) (, ,) (NP (NNP Colo.)) (, ,))) (SBAR (WHADVP (WRB where)) (S (NP (PRP he)) (VP (AUX was) (VP (VBG serving) (NP (CD two) (NN life) (NNS sentences)) (PP (IN for) (NP (NP (DT the) (NN murder)) (PP (IN of) (NP (DT a) (JJ federal) (NN judge))))))))))))))))) (, ,) (NP (DT The) (NNP Associated) (NNP Press)) (VP (VBD reported) (NP (NN yesterday))) (. .)))
(S1 (S (NP (NP (NNS REBOUNDS)) (PP (IN At) (NP (NP (NP (CD 12:51) (RB a.m.) (NNP Thursday)) (, ,) (NP (NP (NNP LeBron) (NNP James) (POS 's)) (NN girlfriend))) (, ,) (NP (NNP Savannah) (NNP Brinson)) (, ,)))) (VP (VBD delivered) (NP (NP (PRP$ their) (JJ second) (NN son)) (, ,) (NP (NNP Bryce) (NNP Maximus) (NNP James)))) (. .)))
(S1 (S (CC But) (NP (PRP it)) (VP (AUX 's) (ADVP (RB also)) (NP (NN something)) (UCP (ADJP (ADVP (RB much) (RBR more)) (JJ unusual)) (: :) (NP (NP (DT a) (JJ quiet) (, ,) (VBN understated) (, ,) (ADJP (RB resolutely) (JJ noncartoonish)) (JJ African-American) (NN family) (NN drama)) (, ,) (PP (IN with) (NP (NP (DT a) (JJ winning) (NN cast)) (SBAR (WHNP (WDT that)) (S (VP (VBZ includes) (NP (NP (NP (NNP Queen) (NNP Latifah)) (, ,) (NP (NNP Wendell) (NNP Pierce)) (PRN (-LRB- -LRB-) (FRAG ('' '') (NP (DT The) (NN Wire)) ('' '')) (-RRB- -RRB-))) (, ,) (NP (NNP Anna) (NNP Deavere) (NNP Smith)) (, ,) (NP (NNP Tony) (NNP Rock)) (CC and) (NP (NP (CD two)) (PP (IN of) (NP (NP (DT the) (JJ talented) (NN offspring)) (PP (IN of) (NP (NP (NNP Diana) (NNP Ross)) (, ,) (NP (NNP Tracee) (NNP Ellis) (NNP Ross)) (CC and) (NP (DT the) (JJ teenage) (NN actor) (NNP Evan) (NNP Ross)))))))))))))))) (. .)))
(S1 (S (CC And) (NP (NP (NNP Joshua) (NNP Redman)) (, ,) (NP (NP (NNP Dewey) (NNP Redman) (POS 's)) (NN son)) (, ,)) (VP (VBD played) (NP (NP (DT a) (JJ startling) (NN piece)) (PP (IN on) (NP (NN tenor) (NN saxophone)))) (, ,) (S (VP (VBN unaccompanied) (PRN (, ,) (CC and) (ADVP (RB very)) (PP (IN unlike) (NP (NP (DT the) (NN rest)) (PP (IN of) (NP (PRP$ his) (NN music))))) (: :)) (SBAR (S (NP (PRP it)) (VP (AUX was) (ADJP (JJ slow) (CC and) (JJ minor) (CC and) (JJ wary))))))) (, ,) (S (VP (VBG using) (NP (NP (DT the) (NN horn) (POS 's)) (JJ full) (NN range)))) (, ,) (S (VP (VBG putting) (NP (NN space)) (PP (IN between) (NP (JJ short) (NNS phrases)))))) (. .)))
(S1 (S (NP (PRP We)) (ADVP (RB also)) (VP (AUX had) (NP (NP (NP (DT a) (NN son)) (CC and) (NP (PRP$ his) (NN father))) (: :) (NP (NP (NP (NNP Jeff) (NNP Bridges)) (PP (IN in) ('' '') (NP (DT The) (NN Contender)) ('' ''))) (CC and) (NP (NP (NNP Lloyd) (NNPS Bridges)) (PP (IN in) ('' '') (NP (JJ Hot) (NNS Shots))))))) (. !)))
(S1 (S (S (NP (NP (NNP Robyn) (NNP Asimov)) (, ,) (NP (NP (DT the) (NN daughter)) (PP (IN of) (NP (DT the) (JJ science-fiction) (NN master) (NNP Isaac) (NNP Asimov)))) (, ,)) (VP (AUX has) (VP (VBN become) (NP (NP (DT a) (NN friend)) (PP (IN of) (NP (DT the) (NNP SETI) (NNP Institute)))) (PP (IN despite) (NP (PRP$ her) (NN upbringing)))))) (: :) (S (NP (NNP Dad)) (VP (AUX was) (ADJP (ADJP (JJR more) (PP (IN of) (NP (DT a) (NN robot) (NN guy))) (PP (IN than) (NP (DT an) (JJ alien) (NN guy)))) (, ,) (CC and) (ADJP (JJ agnostic) (PP (IN on) (NP (NP (DT the) (NN subject)) (PP (IN of) (NP (JJ extraterrestrial) (NN intelligence)))))) (, ,)) (PP (IN except) (PP (IN for) (NP (CD one) (NN instance)))) (SBAR (WHADVP (WRB when)) (S (NP (NN father) (CC and) (NN daughter)) (VP (VBD mistook) (NP (DT the) (NNP Goodyear) (NN blimp)) (PP (IN for) (NP (DT a) (NNP U.F.O.))) (PRN (-LRB- -LRB-) ('' '') (S (S (NP (PRP He)) (ADVP (RB nearly)) (VP (AUX had) (NP (DT a) (NN heart) (NN attack)))) (, ,) ('' '') (NP (PRP she)) (VP (VBD told) (NP (PRP me)) (PP (IN in) (NP (DT a) (NN telephone) (NN interview))))))))))) (. .) ('' '')))
(S1 (S (PP (IN In) ('' '')) (NP (NP (NNP Life) (NN Support) (, ,) ('' '') (NP (NNP Queen) (NNP Latifah)) (CC and) (NP (DT a) (JJ first-rate) (NN cast))) (PRN (: --) (PP (VBG including) (NP (NP (NNP Anna) (NNP Deavere) (NNP Smith)) (CC and) (NP (NP (CD two) (NNS children)) (PP (IN of) (NP (NP (NNP Diana) (NNP Ross)) (, ,) (NP (NNP Evan) (NNP Ross)) (CC and) (NP (NNP Tracee) (NNP Ellis) (NNP Ross))))))) (: --))) (VP (VB collaborate) (PP (IN on) (NP (NP (DT a) (ADJP (RB glamorously) (VBN produced)) (JJ neo-after-school) (NN special)) (PP (IN about) (NP (NP (DT the) (NN way)) (SBAR (S (NP (DT the) (NN virus)) (VP (AUX has) (VP (VBN hit) (NP (NNS women)) (, ,) (NP (NP (JJ many)) (PP (IN of) (NP (PRP them))) (ADJP (JJ married) (CC and) (JJ monogamous)))))))))))) (. .)))
(S1 (S (S (NP (NP (NNP Woody) (NNP Harrelson) (POS 's)) (NN Father)) (VP (VBZ Dies) (SBAR (IN in) (S (NP (NP (NP (NNP Prison) (NNP Woody) (NNP Harrelson) (POS 's)) (NN father)) (, ,) (NP (NP (NNP Charles) (NNP Harrelson)) (, ,) (NP (CD 68))) (, ,)) (VP (AUX has) (VP (VBN died) (PP (IN in) (NP (NP (DT the) (JJ high-security) (JJ federal) (NN prison)) (PP (IN in) (NP (NP (NNP Florence)) (, ,) (NP (NNP Colo.)) (, ,))) (SBAR (WHADVP (WRB where)) (S (NP (PRP he)) (VP (AUX was) (VP (VBG serving) (NP (CD two) (NN life) (NNS sentences)) (PP (IN for) (NP (NP (DT the) (NN murder)) (PP (IN of) (NP (DT a) (JJ federal) (NN judge))))))))))))))))) (, ,) (NP (DT The) (NNP Associated) (NNP Press)) (VP (VBD reported) (NP (NN yesterday))) (. .)))
(S1 (S (NP (NP (NNP Rebecca) (NNP Miller)) (, ,) (NP (NP (NP (NN daughter)) (PP (IN of) (NP (DT the) (NN playwright) (NNP Arthur) (NNP Miller)))) (CC and) (NP (NP (NN wife)) (PP (IN of) (NP (DT the) (NN actor) (NNP Daniel) (NNP Day-Lewis))))) (, ,)) (VP (VBD wrote) (CC and) (VBD directed) (NP (NP (DT this) (JJ intimate) (NN yarn)) (PP (IN about) (NP (NP (CD three) (NNS women)) (VP (VBG trying) (S (VP (TO to) (VP (VB escape) (NP (NP (DT the) (NN oppression)) (VP (VBN inflicted) (PP (IN by) (NP (NP (DT the) (NNS men)) (PP (IN in) (NP (PRP$ their) (NNS lives))))))))))))))) (. .)))
(S1 (NP (NP (ADJP (JJ Joyful) (CC and) (JJ doting)) (NN grandfather)) (PP (IN of) (NP (NNP Amanda) (, ,) (NNP Lindsay) (, ,) (NNP David) (, ,) (NNP Alexa) (, ,) (NNP Reese) (, ,) (NNP Paige) (CC and) (NNP Nathan))) (. .)))
(S1 (FRAG (-LRB- -LRB-) (SBAR (WHNP (WDT That)) (S (VP (AUX is) (NP (NP (DT a) (NN race)) (SBAR (WHNP (WDT that)) (S (VP (MD could) (ADVP (RB well)) (VP (VB place) (NP (PRP him)) (PP (IN in) (NP (JJ direct) (NN rivalry))) (PP (IN with) (NP (NP (DT another) (JJ young) (NNP Bronx) (NN official)) (: :) (NP (NP (NNP City) (NN Councilman) (NNP Joel) (NNP Rivera)) (, ,) (SBAR (WHNP (WP who)) (S (VP (AUX is) (NP (NP (DT the) (NN son)) (PP (IN of) (NP (NP (NNP Jose) (NNP Rivera)) (, ,) (NP (DT an) (NNP assemblyman)) (CC and) (NP (DT the) (NNP Bronx) (NNP Democratic) (NN leader))))))))))))))))))) (. .) (-RRB- -RRB-)))
(S1 (SINV (S (NP (PRP We)) (VP (MD will) (RB not) (VP (VB fear) (PP (IN for) (NP (NP (PRP$ our) (NN future)) (CC and) (NP (NP (DT that)) (PP (IN of) (NP (PRP$ our) (NNS children)))))) (SBAR (RB anymore) (S (NP (PRP we)) (VP (MD can) (VP (VB relax) (PP (IN at) (NP (JJ last)))))))))) (, ,) ('' '') (VP (VBD said)) (NP (NP (NNP Rana) (NNP Ramadan)) (, ,) (NP (CD 24)) (, ,) (NP (NP (DT a) (NN member)) (PP (IN of) (NP (NP (DT the) (JJ Future) (NNP Movement)) (, ,) (VP (VBN led) (PP (IN by) (NP (NP (NNP Saad) (NNP Hariri)) (, ,) (NP (NP (NP (NNP Rafik) (NNP Hariri) (POS 's)) (NN son)) (CC and) (NP (JJ political) (NN heir)))))))))) (, ,) (S (VP (VBG speaking) (PP (IN on) (NP (NNP Thursday))))) (. .) ('' '')))
(S1 (S (NP (NP (NNP David) (CC and) (NNP Jody) (NNP Smith)) (CC and) (NP (NP (NP (PRP$ their) (NN son) (NNP Nathan)) (, ,) (PP (IN of) (NP (NP (NNP Ankeny)) (, ,) (NP (NNP Iowa)))) (, ,) (VP (VP (VBD stayed) (PP (IN at) (NP (NP (DT the) (NN hotel)) (, ,) (NP (DT the) (NNP Doubletree) (NNP Grand) (NNP Key) (NNP Resort)) (, ,)))) (CC and) (VP (AUX were) (VP (VBN treated) (PP (IN at) (NP (NP (DT a) (JJ local) (NN hospital)) (PP (IN on) (NP (NNP Dec.) (CD 21))))))))) (, ,) (NP (NP (JJR less)) (PP (IN than) (NP (NP (DT a) (NN week)) (PP (IN before) (NP (NNP Thomas) (NNP Lueders)))))) (, ,) (NP (CD 26)) (, ,))) (VP (VBD died) (PP (IN from) (S (VP (VBG inhaling) (NP (NP (NN carbon) (NN monoxide) (NNS fumes)) (SBAR (WHNP (WDT that)) (S (VP (VBD came) (PP (IN from) (NP (NP (DT a) (NN boiler)) (ADJP (JJ adjacent) (PP (TO to) (NP (PRP$ his) (NN room)))))))))))))) (. .)))
(S1 (NP (NP (ADJP (JJ Joyful) (CC and) (JJ doting)) (NN grandfather)) (PP (IN of) (NP (NNP Amanda) (, ,) (NNP Lindsay) (, ,) (NNP David) (, ,) (NNP Alexa) (, ,) (NNP Reese) (, ,) (NNP Paige) (CC and) (NNP Nathan))) (. .)))
(S1 (S (PP (IN Like) (NP (DT the) (NN prince))) (, ,) (NP (NP (NNP Nell) (NNP Newman)) (, ,) (NP (NP (DT the) (NN actor) (NNP Paul) (NNP Newman) (POS 's)) (NN daughter)) (, ,)) (VP (VBZ runs) (NP (NP (DT an) (JJ organic) (NN food) (NN company)) (SBAR (WHNP (WP$ whose) (NNS profits)) (S (VP (VBP go) (PP (TO to) (NP (NN charity)))))))) (. .)))