-
Notifications
You must be signed in to change notification settings - Fork 0
/
output_2.txt
1530 lines (510 loc) · 217 KB
/
output_2.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
[['.', '.'], ['place', 'nn'], ['took', 'vbd'], ['irregularities', 'nns'], ['any', 'dti'], ['that', 'cs'], ["''", "''"], ['evidence', 'nn'], ['no', 'at'], ['``', '``'], ['produced', 'vbn'], ['election', 'nn'], ['primary', 'jj'], ['recent', 'jj'], ["Atlanta's", 'np$'], ['of', 'in'], ['investigation', 'nn'], ['an', 'at'], ['Friday', 'nr'], ['said', 'vbd'], ['Jury', 'nn-tl'], ['Grand', 'jj-tl'], ['County', 'nn-tl'], ['Fulton', 'np'], ['The', 'at']]
[['.', '.'], ['conducted', 'vbn'], ['was', 'bedz'], ['election', 'nn'], ['the', 'at'], ['which', 'wdt'], ['in', 'in'], ['manner', 'nn'], ['the', 'at'], ['for', 'in'], ["''", "''"], ['Atlanta', 'np'], ['of', 'in'], ['City', 'nn'], ['the', 'at'], ['of', 'in'], ['thanks', 'nns'], ['and', 'cc'], ['praise', 'nn'], ['the', 'at'], ['deserves', 'vbz'], ['``', '``'], [',', ','], ['election', 'nn'], ['the', 'at'], ['of', 'in'], ['charge', 'nn'], ['over-all', 'jj'], ['had', 'hvd'], ['which', 'wdt'], [',', ','], ['Committee', 'nn-tl'], ['Executive', 'nn-tl'], ['City', 'nn-tl'], ['the', 'at'], ['that', 'cs'], ['presentments', 'nn'], ['term-end', 'at'], ['in', 'in'], ['said', 'vbd'], ['further', 'rbr'], ['jury', 'nn'], ['The', 'at']]
[['.', '.'], ['Jr.', 'np'], ['Allen', 'np'], ['Ivan', 'np'], ['Mayor-nominate', 'at'], ['by', 'in'], ['won', 'vbn'], ['was', 'bedz'], ['which', 'wdt'], ['primary', 'nn'], ['hard-fought', 'jj'], ['the', 'at'], ['in', 'in'], ["''", "''"], ['irregularities', 'nns'], ['``', '``'], ['possible', 'jj'], ['of', 'in'], ['reports', 'nns'], ['investigate', 'vb'], ['to', 'to'], ['Pye', 'vbd'], ['Durwood', 'nn-tl'], ['Judge', 'nn-tl'], ['Court', 'nn-tl'], ['Superior', 'jj-tl'], ['Fulton', 'np'], ['by', 'in'], ['charged', 'vbn'], ['been', 'ben'], ['had', 'hvd'], ['jury', 'nn'], ['term', 'nn'], ['September-October', 'jj'], ['The', 'at']]
[['.', '.'], ["''", "''"], ['city', 'nn'], ['this', 'dt'], ['of', 'in'], ['size', 'nn'], ['the', 'at'], ['and', 'cc'], ['voters', 'nns'], ['of', 'in'], ['number', 'nn'], ['the', 'at'], [',', ','], ['election', 'nn'], ['the', 'at'], ['in', 'in'], ['interest', 'nn'], ['widespread', 'jj'], ['the', 'at'], ['considering', 'in'], ['``', '``'], [',', ','], ['said', 'vbd'], ['jury', 'nn'], ['the', 'at'], [',', ','], ["''", "''"], ['received', 'vbn'], ['was', 'bedz'], ['reports', 'nns'], ['such', 'jj'], ['of', 'in'], ['handful', 'nn'], ['relative', 'jj'], ['a', 'at'], ['Only', 'rb'], ['``', '``']]
[['.', '.'], ["''", "''"], ['ambiguous', 'jj'], ['often', 'rb'], ['and', 'cc'], ['inadequate', 'jj'], ['or', 'cc'], ['outmoded', 'jj'], ['are', 'ber'], ['``', '``'], ['laws', 'nns'], ['election', 'nn'], ['and', 'cc'], ['registration', 'nn'], ["Georgia's", 'np$'], ['of', 'in'], ['many', 'ap'], ['that', 'cs'], ['find', 'vb'], ['did', 'dod'], ['it', 'pps'], ['said', 'vbd'], ['jury', 'nn'], ['The', 'at']]
[['.', '.'], ["''", "''"], ['them', 'ppo'], ['improving', 'vbg'], ['and', 'cc'], ['modernizing', 'nn'], ['of', 'in'], ['end', 'nn'], ['the', 'at'], ['to', 'in'], ['revised', 'vbn'], ['and', 'cc'], ['studied', 'vbn'], ['laws', 'nns'], ['these', 'dts'], ['have', 'hv'], ['to', 'to'], ['``', '``'], ['act', 'vb'], ['legislators', 'nns'], ['Fulton', 'np'], ['that', 'cs'], ['recommended', 'vbd'], ['It', 'pps']]
[['.', '.'], ["''", "''"], ['governments', 'nns'], ['both', 'abx'], ['of', 'in'], ['interest', 'nn'], ['best', 'jjt'], ['the', 'at'], ['to', 'in'], ['inure', 'vb'], ['which', 'wdt'], ['practices', 'nns'], ['accepted', 'vbn'], ['generally', 'rb'], ['follow', 'vb'], ['and', 'cc'], ['operated', 'vbn'], ['well', 'rb'], ['are', 'ber'], ['``', '``'], ['said', 'vbd'], ['it', 'pps'], ['which', 'wdt'], ['departments', 'nns'], ['purchasing', 'vbg'], ['County', 'nn-tl'], ['Fulton', 'np'], ['and', 'cc'], ['Atlanta', 'np'], ['the', 'at'], ['them', 'ppo'], ['among', 'in'], [',', ','], ['topics', 'nns'], ['other', 'ap'], ['of', 'in'], ['number', 'nn'], ['a', 'at'], ['on', 'in'], ['commented', 'vbd'], ['jury', 'nn'], ['grand', 'jj'], ['The', 'at']]
[['.', '.'], ["''", "''"], ['administration', 'nn'], ['of', 'in'], ['cost', 'nn'], ['the', 'at'], ['reduce', 'vb'], ['and', 'cc'], ['efficiency', 'nn'], ['greater', 'jjr'], ['achieve', 'vb'], ['to', 'to'], ['combined', 'vbn'], ['be', 'be'], ['should', 'md'], ['offices', 'nns'], ['two', 'cd'], ['these', 'dts'], ['``', '``'], ['believes', 'vbz'], ['it', 'pps'], ['said', 'vbd'], ['jury', 'nn'], ['the', 'at'], [',', ','], ['However', 'rb']]
[['.', '.'], ["''", "''"], ['policies', 'nns'], ['personnel', 'nns'], ['city', 'nn'], ['of', 'in'], ['result', 'nn'], ['a', 'at'], ['as', 'cs'], ['personnel', 'nns'], ['clerical', 'jj'], ['experienced', 'vbn'], ['in', 'in'], ['lacking', 'vbg'], ['is', 'bez'], ['``', '``'], [',', ','], ['said', 'vbd'], ['jury', 'nn'], ['the', 'at'], [',', ','], ['Department', 'nn-tl'], ['Purchasing', 'nn-tl'], ['City', 'nn-tl'], ['The', 'at']]
[['.', '.'], ['problem', 'nn'], ['this', 'dt'], ["''", "''"], ['remedy', 'nn'], ['to', 'in'], ['steps', 'nns'], ['take', 'vb'], ['``', '``'], ['city', 'nn'], ['the', 'at'], ['that', 'cs'], ['urged', 'vbd'], ['It', 'pps']]
[['.', '.'], ['jury', 'nn'], ['outgoing', 'jj'], ['the', 'at'], ['by', 'in'], ['recommended', 'vbn'], ['also', 'rb'], ['was', 'bedz'], ['law', 'nn'], ['title', 'nn'], ['automobile', 'nn'], ["Georgia's", 'np$'], ['of', 'in'], ['Implementation', 'nn']]
[['.', '.'], ["''", "''"], ['effected', 'vbn'], ['be', 'be'], ['may', 'md'], ['law', 'nn'], ['the', 'at'], ['of', 'in'], ['implementation', 'nn'], ['orderly', 'jj'], ['an', 'at'], ['that', 'cs'], ['so', 'rb'], ['date', 'nn'], ['effective', 'jj'], ['the', 'at'], ['re-set', 'vbd'], ['and', 'cc'], ['funds', 'nns'], ['enabling', 'vbg'], ['provide', 'vb'], ['``', '``'], ['Legislature', 'nn-tl'], ['next', 'ap'], ['the', 'at'], ['that', 'cs'], ['urged', 'vbd'], ['It', 'pps']]
[['.', '.'], ['homes', 'nns'], ['foster', 'jj'], ['in', 'in'], ['services', 'nns'], ['welfare', 'nn'], ['child', 'nn'], ['for', 'in'], ['granted', 'vbn'], ['funds', 'nns'], ['federal', 'jj'], ['of', 'in'], ['handling', 'nn'], ["Department's", 'nn$-tl'], ['Welfare', 'nn-tl'], ['State', 'nn-tl'], ['the', 'at'], ['at', 'in'], ['swipe', 'nn'], ['a', 'at'], ['took', 'vbd'], ['jury', 'nn'], ['grand', 'jj'], ['The', 'at']]
[['.', '.'], ['money', 'nn'], ['this', 'dt'], ['of', 'in'], ['none', 'pn'], ['receives', 'vbz'], ['which', 'wdt'], [',', ','], ['County', 'nn-tl'], ['Fulton', 'np'], ['of', 'in'], ['exception', 'nn'], ['the', 'at'], ['with', 'in'], ['state', 'nn'], ['the', 'at'], ['in', 'in'], ['counties', 'nns'], ['the', 'at'], ['all', 'abn'], ['of', 'in'], ['departments', 'nns'], ['welfare', 'nn'], ['the', 'at'], ['through', 'in'], ['funds', 'nns'], ['these', 'dts'], ['distribute', 'vb'], ['to', 'to'], ['fit', 'nn'], ['seen', 'vbn'], ['has', 'hvz'], ['``', '``'], ['Department', 'nn-tl'], ['Welfare', 'nn-tl'], ['State', 'nn-tl'], ['the', 'at'], ['but', 'cc'], [',', ','], ['said', 'vbd'], ['jury', 'nn'], ['the', 'at'], [',', ','], ["''", "''"], ['program', 'nn'], ['assistance', 'nn'], ['general', 'jj'], ['County', 'nn-tl'], ['Fulton', 'np'], ['the', 'at'], ['in', 'in'], ['items', 'nns'], ['major', 'jj'], ['the', 'at'], ['of', 'in'], ['one', 'cd'], ['is', 'bez'], ['This', 'dt'], ['``', '``']]
[['.', '.'], ["''", "''"], ['counties', 'nns'], ['populous', 'jj'], ['less', 'ql'], ['our', 'pp$'], ['in', 'in'], ['program', 'nn'], ['this', 'dt'], ['disable', 'vb'], ['might', 'md'], ['funds', 'nns'], ['these', 'dts'], ['of', 'in'], ['distribution', 'nn'], ['proportionate', 'jj'], ['a', 'at'], ['``', '``'], ['realize', 'vb'], ['they', 'ppss'], ['said', 'vbd'], ['jurors', 'nns'], ['The', 'at']]
[['.', '.'], ['said', 'vbd'], ['jurors', 'nns'], ['the', 'at'], [',', ','], ["''", "''"], ['funds', 'nns'], ['available', 'jj'], ['these', 'dts'], ['of', 'in'], ['portion', 'nn'], ['some', 'dti'], ['receive', 'vb'], ['should', 'md'], ['County', 'nn-tl'], ['Fulton', 'np'], ['future', 'nn'], ['the', 'at'], ['in', 'in'], ['that', 'cs'], ['feel', 'vb'], ['we', 'ppss'], ['``', '``'], [',', ','], ['Nevertheless', 'rb']]
[['.', '.'], ['taxpayers', 'nns'], ['Fulton', 'np'], ['on', 'in'], ["''", "''"], ['burden', 'nn'], ['disproportionate', 'jj'], ['a', 'at'], ['place', 'vb'], ['to', 'to'], ['continue', 'vb'], ['will', 'md'], ['this', 'dt'], ['do', 'do'], ['to', 'to'], ['Failure', 'nn'], ['``', '``']]
[['.', '.'], ['compensation', 'nn'], ['and', 'cc'], ['fees', 'nns'], ['of', 'in'], ['awarding', 'vbg'], ['the', 'at'], ['and', 'cc'], ['administrators', 'nns'], ['and', 'cc'], ['guardians', 'nns'], [',', ','], ['appraisers', 'nn'], ['of', 'in'], ['appointment', 'nn'], ['the', 'at'], ['in', 'in'], ['practices', 'nns'], ['its', 'pp$'], ['for', 'in'], ['fire', 'nn'], ['under', 'in'], ['been', 'ben'], ['has', 'hvz'], ['which', 'wdt'], ['court', 'nn'], ["ordinary's", 'np'], ['Fulton', 'np'], ['the', 'at'], ['on', 'in'], ['commented', 'vbd'], ['also', 'rb'], ['jury', 'nn'], ['The', 'at']]
[['.', '.'], ['committee', 'nn'], ['citizens', 'nns'], ['interim', 'jj'], ['an', 'at'], ['and', 'cc'], ['Association', 'nn-tl'], ['Bar', 'nn-tl'], ['Atlanta', 'np-tl'], ['the', 'at'], [',', ','], ['juries', 'nn'], ['grand', 'jj'], ['previous', 'jj'], ['two', 'cd'], ['of', 'in'], ["''", "''"], ['recommendations', 'nns'], ['the', 'at'], ['procedures', 'nns'], ['operating', 'vbg'], ['its', 'pp$'], ['into', 'in'], ['incorporated', 'vbn'], ['has', 'hvz'], ['``', '``'], ['court', 'nn'], ['the', 'at'], ['found', 'vbd'], ['it', 'pps'], ['said', 'vbd'], ['jury', 'nn'], ['The', 'at']]
[['.', '.'], ['said', 'vbd'], ['jury', 'nn'], ['the', 'at'], [',', ','], ["''", "''"], ['criticisms', 'nns'], ['unmeritorious', 'at'], ['from', 'in'], ['servants', 'nns'], ['elected', 'vbn'], ['and', 'cc'], ['appointed', 'vbn'], ['its', 'pp$'], ['and', 'cc'], ['costs', 'nns'], ['undue', 'jj'], ['from', 'in'], ['wards', 'nns'], ["court's", 'nn$'], ['the', 'at'], ['effect', 'nn'], ['in', 'in'], ['and', 'cc'], ['fact', 'nn'], ['in', 'in'], ['protect', 'vb'], ['to', 'to'], ['serve', 'vb'], ['should', 'md'], ['actions', 'nns'], ['These', 'dts'], ['``', '``']]
[['.', '.'], ["''", "''"], ['influences', 'nns'], ['political', 'jj'], ['eliminate', 'vb'], ['will', 'md'], ['that', 'wps'], ['manner', 'nn'], ['a', 'at'], ['in', 'in'], ['operated', 'vbn'], ['be', 'be'], ['airport', 'nn'], ['the', 'at'], ['1', 'cd'], ['Jan.', 'np'], ['charge', 'nn'], ['takes', 'vbz'], ['management', 'nn'], ['new', 'jj'], ['the', 'at'], ['when', 'wrb'], ['that', 'cs'], ['``', '``'], ['recommended', 'vbn'], ['jury', 'nn'], ['the', 'at'], [',', ','], ['airport', 'nn'], ['multi-million-dollar', 'jj'], ['new', 'jj'], ["Atlanta's", 'np$'], ['Regarding', 'np']]
[['.', '.'], ["''", "''"], ['reasonable', 'jj'], ['prices', 'nns'], ['the', 'at'], ['keeping', 'vbg'], ['of', 'in'], ['purpose', 'nn'], ['the', 'at'], ['for', 'in'], ['concessionaires', 'nns'], ['the', 'at'], ['of', 'in'], ['practices', 'nns'], ['pricing', 'nn'], ['the', 'at'], ['of', 'in'], ['surveillance', 'nn'], ['periodic', 'jj'], ['be', 'be'], ['should', 'md'], ['there', 'ex'], ['``', '``'], ['that', 'cs'], ['added', 'vbd'], ['it', 'pps'], ['but', 'cc'], [',', ','], ['elaborate', 'jj'], ['not', '*'], ['did', 'dod'], ['jury', 'nn'], ['The', 'at']]
[[')', ')'], ['1', 'cd'], ['(', '('], [':', ':'], ['that', 'cs'], ['recommended', 'vbn'], ['jury', 'nn'], ['the', 'at'], [',', ','], ['matters', 'nns'], ['other', 'ap'], ['On', 'in']]
[['.', '.'], ["''", "''"], ['jail', 'nn'], ['the', 'at'], ['at', 'in'], ['duty', 'nn'], ['weekend', 'nn'], ['and', 'cc'], ['night', 'nn'], ['for', 'in'], ['employed', 'vbn'], ['be', 'be'], ['extern', 'md'], ['or', 'cc'], ['intern', 'nn'], ['medical', 'jj'], [',', ','], ['doctor', 'nn'], ['a', 'at'], ['``', '``'], ['and', 'cc'], ['Jail', 'nn-tl'], ['County', 'nn-tl'], ['Fulton', 'np'], ['the', 'at'], ['at', 'in'], ['employed', 'vbn'], ['be', 'be'], ['deputies', 'nns'], ['additional', 'jj'], ['Four', 'cd']]
[['.', '.'], ['employes', 'nns'], ['city', 'nn'], ['for', 'in'], ['plan', 'nn'], ['pension', 'nn'], ["''", "''"], ['equitable', 'jj'], ['and', 'cc'], ['fair', 'jj'], ['a', 'at'], ['of', 'in'], ['establishment', 'nn'], ['the', 'at'], ['permit', 'vb'], ['will', 'md'], ['that', 'wps'], ['legislation', 'nn'], ['enabling', 'vbg'], ['pass', 'vb'], ['to', 'to'], ['officials', 'nns'], ['city', 'nn'], ['with', 'in'], ['work', 'nn'], ['``', '``'], ['legislators', 'nns'], ['Fulton', 'np']]
[['.', '.'], ['Department', 'nn-tl'], ['Health', 'nn-tl'], ['Fulton', 'np'], ['the', 'at'], ['and', 'cc'], ['Hospital', 'nn-tl'], ['Grady', 'np-tl'], [',', ','], ['farms', 'nns'], ['prison', 'nn'], ['Alpharetta', 'at'], ['and', 'cc'], ['Bellwood', 'nn'], ['the', 'at'], [',', ','], ['Office', 'nn-tl'], ["Commissioner's", 'in-tl'], ['Tax', 'nn-tl'], ['Fulton', 'np'], ['the', 'at'], [',', ','], ['Department', 'nn-tl'], ['Police', 'nns-tl'], ['Atlanta', 'np-tl'], ['the', 'at'], ['of', 'in'], ['operation', 'nn'], ['and', 'cc'], ['administration', 'nn'], ['the', 'at'], ['praised', 'vbd'], ['jury', 'nn'], ['The', 'at']]
[['.', '.'], ['Friday', 'nr'], ['Court', 'nn-tl'], ['Superior', 'jj-tl'], ['Fulton', 'np'], ['in', 'in'], [',', ','], ['Hartsfield', 'np'], ['Williams', 'np'], ['Pearl', 'nn-tl'], [',', ','], ['wife', 'nn'], ['his', 'pp$'], ['from', 'in'], ['divorce', 'nn'], ['for', 'in'], ['suit', 'nn'], ['filed', 'vbn'], ['Hartsfield', 'hvd'], ['B.', 'np'], ['William', 'np'], ['Mayor', 'nn-tl']]
[['.', '.'], ['cruelty', 'nn'], ['mental', 'jj'], ['charged', 'vbn'], ['petition', 'nn'], ['His', 'pp$']]
[['.', '.'], ['1913', 'cd'], [',', ','], ['2', 'cd'], ['Aug.', 'np'], ['married', 'vbn'], ['was', 'bedz'], ['couple', 'nn'], ['The', 'at']]
[['.', '.'], ['Griffin', 'np'], ['of', 'in'], ['Cheshire', 'vbd'], ['M.', 'np'], ['J.', 'np'], ['Mrs.', 'np'], [',', ','], ['daughter', 'nn'], ['a', 'at'], ['and', 'cc'], [',', ','], ['Jr.', 'np'], ['Berry', 'np'], ['William', 'np'], [',', ','], ['son', 'nn'], ['a', 'at'], ['have', 'hv'], ['They', 'ppss']]
[['.', '.'], ['upon', 'in'], ['agreed', 'vbn'], ['been', 'ben'], ['has', 'hvz'], ['settlement', 'nn'], ['property', 'nn'], ['amicable', 'jj'], ['an', 'at'], ['that', 'cs'], ['said', 'vbd'], ['mayor', 'nn'], ['the', 'at'], ['for', 'in'], ['Attorneys', 'nns']]
[['.', '.'], ['71', 'cd'], ['as', 'cs'], ['age', 'nn'], ['his', 'pp$'], ['and', 'cc'], ["''", "''"], ['attorney', 'nn'], ['``', '``'], ['as', 'cs'], ['occupation', 'nn'], ["mayor's", 'nn$'], ['the', 'at'], ['listed', 'vbd'], ['petition', 'nn'], ['The', 'at']]
[['.', '.'], ['Ala.', 'np'], [',', ','], ['Opelika', 'np'], ['as', 'cs'], ['birth', 'nn'], ['of', 'in'], ['place', 'nn'], ['and', 'cc'], ['74', 'cd'], ['as', 'cs'], ['age', 'nn'], ["wife's", 'nn$'], ['his', 'pp$'], ['listed', 'vbd'], ['It', 'pps']]
[['.', '.'], ['year', 'nn'], ['a', 'at'], ['than', 'in'], ['more', 'ap'], ['for', 'in'], ['wife', 'nn'], ['and', 'cc'], ['man', 'nn'], ['as', 'cs'], ['together', 'rb'], ['lived', 'vbn'], ['not', '*'], ['has', 'hvz'], ['couple', 'nn'], ['the', 'at'], ['that', 'cs'], ['said', 'vbd'], ['petition', 'nn'], ['The', 'at']]
[['.', '.'], ['Aj', 'nn'], ['Rd.', 'nn-tl'], ['Pelham', 'np'], ['E.', 'np'], ['637', 'at'], ['at', 'in'], ['is', 'bez'], ['home', 'nn'], ['Hartsfield', 'jj'], ['The', 'at']]
[['.', '.'], ['attorney', 'nn'], ["mayor's", 'nn$'], ['the', 'at'], ['as', 'cs'], ['petition', 'nn'], ['the', 'at'], ['on', 'in'], ['listed', 'vbn'], ['was', 'bedz'], ['Bowden', 'np'], ['L.', 'np'], ['Henry', 'np']]
[['.', '.'], ['1937', 'cd'], ['since', 'in'], [',', ','], ['interlude', 'nn'], ['brief', 'jj'], ['one', 'cd'], ['of', 'in'], ['exception', 'nn'], ['with', 'in'], [',', ','], ['Atlanta', 'np'], ['of', 'in'], ['mayor', 'nn'], ['been', 'ben'], ['has', 'hvz'], ['Hartsfield', 'pps']]
[['.', '.'], ['1923', 'cd'], ['in', 'in'], ['council', 'nn'], ['city', 'nn'], ['to', 'in'], ['election', 'nn'], ['his', 'pp$'], ['to', 'in'], ['back', 'rb'], ['goes', 'vbz'], ['career', 'nn'], ['political', 'jj'], ['His', 'pp$']]
[['.', '.'], ['1', 'cd'], ['Jan.', 'np'], ['expires', 'in'], ['office', 'nn'], ['of', 'in'], ['term', 'nn'], ['present', 'jj'], ["mayor's", 'nn$'], ['The', 'at']]
[['.', '.'], ['reelection', 'nn'], ['for', 'in'], ['run', 'vb'], ['not', '*'], ['would', 'md'], ['he', 'pps'], ['that', 'cs'], ['announced', 'vbd'], ['Hartsfield', 'nn-tl'], ['Mayor', 'nn-tl'], ['after', 'in'], ['primary', 'jj'], ['13', 'cd'], ['Sept.', 'np'], ['the', 'at'], ['in', 'in'], ['candidate', 'nn'], ['a', 'at'], ['became', 'vbd'], ['who', 'wps'], [',', ','], ['Jr.', 'np'], ['Allen', 'np'], ['Ivan', 'np'], ['by', 'in'], ['succeeded', 'vbn'], ['be', 'be'], ['will', 'md'], ['He', 'pps']]
[['.', '.'], ['Wednesday', 'nr'], ['said', 'vbd'], ['official', 'nn'], ['top', 'nn'], ['a', 'at'], [',', ','], ['race', 'nn'], ["governor's", 'nn$'], ['1962', 'cd'], ['the', 'at'], ['in', 'in'], ['candidate', 'nn'], ['a', 'at'], ['enter', 'vb'], ['to', 'to'], ['encouragement', 'nn'], ['strong', 'jj'], ['getting', 'vbg'], ['are', 'ber'], ['Republicans', 'nps'], ['Georgia', 'np']]
[['.', '.'], ['audience', 'nn'], ['the', 'at'], ['from', 'in'], ['responses', 'nns'], ['enthusiastic', 'jj'], ['brought', 'vbd'], ['Ridge', 'nn-tl'], ['Blue', 'jj-tl'], ['in', 'in'], ['night', 'nn'], ['Tuesday', 'nr'], ['held', 'vbd'], ['meeting', 'nn'], ['a', 'at'], ['said', 'vbd'], [',', ','], ['chairman', 'nn'], ['GOP', 'nn'], ['state', 'nn'], [',', ','], ['Snodgrass', 'np'], ['Robert', 'np']]
[['.', '.'], ['speaker', 'nn'], ['featured', 'vbn'], ['the', 'at'], ['be', 'be'], ['will', 'md'], ['Tower', 'np'], ['John', 'np'], ['Sen.', 'nn-tl'], ['Texas', 'np-tl'], ['elected', 'vbn'], ['newly', 'rb'], ['which', 'wdt'], ['at', 'in'], ['Savannah', 'np'], ['in', 'in'], ['8', 'cd'], ['Sept.', 'np'], ['held', 'vbn'], ['be', 'be'], ['to', 'to'], ['rally', 'nn'], ['state', 'nn'], ['a', 'at'], ['for', 'in'], ['up', 'rp'], ['picking', 'vbg'], ['was', 'bedz'], ['enthusiasm', 'nn'], ['that', 'cs'], ['added', 'vbd'], ['Dorsey', 'np'], ['W.', 'np'], ['James', 'np'], ['Chairman', 'nn-tl'], ['Party', 'nn-tl'], ['State', 'nn-tl']]
[['.', '.'], ['voters', 'nns'], ['registered', 'vbn'], ['of', 'in'], ['signatures', 'nn'], ['the', 'at'], ['obtain', 'vb'], ['to', 'to'], ['precincts', 'nns'], ['voting', 'vbg'], ['into', 'in'], ['out', 'in'], ['petitions', 'nns'], ['take', 'vb'], ['to', 'to'], ['it', 'ppo'], ['force', 'vb'], ['would', 'md'], ['governor', 'nn'], ['for', 'in'], ['candidate', 'nn'], ['a', 'at'], ['entering', 'vbg'], ['that', 'cs'], ['warned', 'vbn'], ['was', 'bedz'], ['audience', 'nn'], ['the', 'at'], [',', ','], ['meeting', 'nn'], ['Ridge', 'nn-tl'], ['Blue', 'jj-tl'], ['the', 'at'], ['In', 'in']]
[['.', '.'], ['attended', 'vbd'], ['who', 'wps'], ['Republicans', 'nps'], ['to', 'in'], ['according', 'rb'], [',', ','], ['candidate', 'nn'], ['a', 'at'], ['enter', 'vb'], ['to', 'to'], ['vote', 'nn'], ['unanimous', 'jj'], ['a', 'at'], ['was', 'bedz'], ['there', 'ex'], [',', ','], ['warning', 'nn'], ['the', 'at'], ['Despite', 'in']]
[['.', '.'], ['dissents', 'nns'], ['no', 'at'], ['were', 'bed'], ['there', 'ex'], ['and', 'cc'], ['--', '--'], ['no', 'rb'], ['voted', 'vbd'], ['it', 'pps'], [',', ','], ['race', 'nn'], ['the', 'at'], ['make', 'vb'], ['to', 'to'], ['term', 'nn'], ['more', 'ap'], ['one', 'cd'], ['wait', 'vb'], ['to', 'to'], ['wanted', 'vbd'], ['it', 'pps'], ['whether', 'cs'], ['asked', 'vbn'], ['was', 'bedz'], ['crowd', 'nn'], ['the', 'at'], ['When', 'wrb']]
[['1', 'cd-hl'], [':', ':'], ['taken', 'vbn'], ['be', 'be'], ['must', 'md'], ['courses', 'nns'], ['alternative', 'nn'], ['two', 'cd'], ['of', 'in'], ['one', 'cd'], [',', ','], ['race', 'nn'], ['first', 'od'], ['a', 'at'], ['making', 'vbg'], ['before', 'in'], ['that', 'cs'], ['says', 'vbz'], ['which', 'wdt'], ['law', 'nn'], ['state', 'nn'], ['a', 'at'], ['is', 'bez'], ['face', 'nn'], ['to', 'in'], ['have', 'hv'], ['would', 'md'], ['Republicans', 'nps'], ['the', 'at'], ['hurdle', 'nn'], ['largest', 'jjt'], ['The', 'at']]
[['.', '.'], ['platform', 'nn'], ['its', 'pp$'], ['in', 'in'], ['opposes', 'vbz'], ['party', 'nn'], ['the', 'at'], ['which', 'wdt'], ['system', 'nn'], ['a', 'at'], ['--', '--'], ['system', 'nn'], ['unit', 'nn'], ['county', 'nn'], ['the', 'at'], ['under', 'in'], ['primary', 'jj'], ['a', 'at'], ['hold', 'vb'], ['must', 'md'], ['Republicans', 'nps'], ['The', 'at']]
[['.', '.'], ['campaign', 'nn'], ["Byrd's", 'np$'], ['Garland', 'np'], ['Gov.', 'nn-tl'], ['Lt.', 'nn-tl'], ['for', 'in'], ['work', 'nn'], ['to', 'in'], ['Tuesday', 'nr'], ['resigned', 'vbd'], [',', ','], ['director', 'nn'], ['relations', 'nns'], ['public', 'nn'], ['Department', 'nn-tl'], ['Highway', 'nn-tl'], ['State', 'nn-tl'], [',', ','], ['Caldwell', 'np'], ['Sam', 'np']]
[['.', '.'], ['time', 'nn'], ['some', 'dti'], ['for', 'in'], ['expected', 'vbn'], ['been', 'ben'], ['had', 'hvd'], ['resignation', 'nn'], ["Caldwell's", 'np$']]
[['.', '.'], ['years', 'nns'], ['three', 'cd'], ['than', 'in'], ['more', 'ap'], ['assistant', 'nn'], ['an', 'at'], ['been', 'ben'], ['has', 'hvz'], ['who', 'wps'], [',', ','], ['Gainesville', 'nn'], ['of', 'in'], ['Ledford', 'vbd'], ['Rob', 'np'], ['by', 'in'], ['succeeded', 'vbn'], ['be', 'be'], ['will', 'md'], ['He', 'pps']]
[['.', '.'], ['Byrd', 'np'], ['for', 'in'], ['coordinator', 'nn'], ['campaign', 'nn'], ['a', 'at'], ['become', 'vb'], ['to', 'to'], ['expected', 'vbn'], ['is', 'bez'], ['Caldwell', 'np'], [',', ','], ['starts', 'nns'], ['campaign', 'nn'], ['gubernatorial', 'jj'], ['the', 'at'], ['When', 'wrb']]
[['.', '.'], ['shortly', 'rb'], ['follow', 'vb'], ['will', 'md'], ['approved', 'vbd'], ['it', 'pps'], ['money', 'nn'], ['bond', 'nn'], ['highway', 'nn'], ['the', 'at'], ['of', 'in'], ['some', 'dti'], ['where', 'wrb'], ['--', '--'], ['home', 'nn'], ['for', 'in'], ['head', 'nn'], ['and', 'cc'], ['Monday', 'nr'], ['session', 'nn'], ['1961', 'cd'], ['its', 'pp$'], ['up', 'rp'], ['wind', 'vb'], ['will', 'md'], ['Legislature', 'nn-tl'], ['Georgia', 'np-tl'], ['The', 'at']]
[['.', '.'], ['made', 'vbn'], ['be', 'be'], ['should', 'md'], ['adjustments', 'nns'], ['what', 'wdt'], ['determine', 'vb'], ['to', 'to'], ['areas', 'nns'], ['urban', 'jj'], ['and', 'cc'], ['rural', 'jj'], ['to', 'in'], ['allotted', 'vbn'], ['legislators', 'nns'], ['of', 'in'], ['number', 'nn'], ['the', 'at'], ['of', 'in'], ['study', 'nn'], ['a', 'at'], ['approve', 'vb'], ['to', 'to'], ['expected', 'vbn'], ['is', 'bez'], ['Senate', 'nn-tl'], ['the', 'at'], [',', ','], ['afternoon', 'nn'], ['Monday', 'nr'], ['adjournment', 'nn'], ['Before', 'in']]
[['.', '.'], ['adjournment', 'nn'], ['toward', 'in'], ['work', 'vb'], ['they', 'ppss'], ['as', 'cs'], ['chambers', 'nns'], ['both', 'abx'], ['to', 'in'], ['visit', 'nn'], ['traditional', 'jj'], ['the', 'at'], ['make', 'vb'], ['to', 'to'], ['expected', 'vbn'], ['is', 'bez'], ['Vandiver', 'np'], ['Gov.', 'nn-tl']]
[['.', '.'], ['item', 'nn'], ['priority', 'nn'], ['first', 'od'], ['his', 'pp$'], ['as', 'cs'], ['session', 'nn'], ['the', 'at'], ['in', 'in'], ['earlier', 'rbr'], ['approved', 'vbn'], ['issue', 'nn'], ['bond', 'nn'], ['highway', 'nn'], ['million', 'cd'], ['$100', 'nns'], ['the', 'at'], ['mention', 'vb'], ['will', 'md'], ['likely', 'rb'], ['Vandiver', 'np']]
[['.', '.'], ['bonds', 'nns'], ['reconstruction', 'nn'], ['highway', 'nn'], ['of', 'in'], ['worth', 'nn'], ['million', 'cd'], ['$30', 'nns'], ['first', 'od'], ['the', 'at'], ['issue', 'vb'], ['to', 'to'], ['ready', 'jj'], ['being', 'nn'], ['near', 'jj'], ['very', 'ql'], ['is', 'bez'], ['Department', 'nn-tl'], ['Highway', 'nn-tl'], ['State', 'nn-tl'], ['the', 'at'], ['learned', 'vbn'], ['was', 'bedz'], ['it', 'pps'], [',', ','], ['Meanwhile', 'rb']]
[['.', '.'], ['highways', 'nns'], ['traveled', 'vbn'], ['heavily', 'rb'], ['most', 'ql'], ["Georgia's", 'np$'], ['of', 'in'], ['some', 'dti'], ['on', 'in'], ['work', 'nn'], ['repair', 'nn'], ['for', 'in'], ['let', 'vb'], ['contracts', 'nns'], ['and', 'cc'], ['begin', 'vb'], ['will', 'md'], ['sales', 'nns'], ['the', 'at'], ['then', 'rb'], ['and', 'cc'], [',', ','], ['act', 'nn'], ['the', 'at'], ['of', 'in'], ['validity', 'nn'], ['the', 'at'], ['test', 'vb'], ['to', 'to'], ['suit', 'nn'], ['test', 'nn'], ['friendly', 'jj'], ['a', 'at'], ['for', 'in'], ['courts', 'nns'], ['state', 'nn'], ['the', 'at'], ['to', 'in'], ['go', 'vb'], ['will', 'md'], ['issue', 'nn'], ['bond', 'nn'], ['The', 'at']]
[['.', '.'], ['work', 'nn'], ['construction', 'nn'], ['road', 'nn'], ['rural', 'jj'], ['for', 'in'], ['bonds', 'nns'], ['Authority', 'nn-tl'], ['Roads', 'nns-tl'], ['Rural', 'jj-tl'], ['of', 'in'], ['worth', 'nn'], ['million', 'cd'], ['$4', 'nns'], ['to', 'in'], ['million', 'cd'], ['$3', 'nn'], ['some', 'dti'], ['issue', 'vb'], ['to', 'to'], ['there', 'rb'], ['plan', 'nn'], ['a', 'at'], ['is', 'bez'], ['also', 'rb'], ['there', 'rb'], ['said', 'vbd'], ['source', 'nn'], ['Department', 'nn-tl'], ['Highway', 'nn-tl'], ['A', 'at']]
[['.', '.'], ['authorities', 'nns'], ['tax', 'nn'], ['by', 'in'], ['off', 'rp'], ['paid', 'vbn'], ['are', 'ber'], ['ones', 'nns'], ['old', 'jj'], ['the', 'at'], ['of', 'in'], ['portion', 'nn'], ['a', 'at'], ['time', 'nn'], ['every', 'at'], ['issued', 'vbn'], ['be', 'be'], ['would', 'md'], ['bonds', 'nns'], ['new', 'jj'], ['which', 'wdt'], ['under', 'in'], ['fund', 'nn'], ['revolving', 'vbg'], ['a', 'at'], ['Authority', 'nn-tl'], ['Roads', 'nns-tl'], ['Rural', 'jj-tl'], ['the', 'at'], ['make', 'vb'], ['to', 'to'], ['intends', 'vbz'], ['apparently', 'rb'], ['department', 'nn'], ['The', 'at']]
[['.', '.'], ['Griffin', 'np'], ['Marvin', 'np'], ['Gov.', 'nn-tl'], ['then', 'rb'], ['by', 'in'], ['proposed', 'vbn'], ['bonds', 'nns'], ['roads', 'nns'], ['rural', 'jj'], ['additional', 'jj'], ['of', 'in'], ['worth', 'nn'], ['million', 'cd'], ['$50', 'nns'], ['of', 'in'], ['issuance', 'nn'], ['the', 'at'], ['against', 'in'], ['Legislature', 'nn-tl'], ['the', 'at'], ['in', 'in'], ['battle', 'nn'], ['a', 'at'], ['with', 'in'], ['1958', 'cd'], ['in', 'in'], ['governor', 'nn'], ['for', 'in'], ['race', 'nn'], ['his', 'pp$'], ['opened', 'vbd'], ['Vandiver', 'np']]
[['.', '.'], ['bonds', 'nns'], ['roads', 'nns'], ['rural', 'jj'], ['new', 'jj'], ['the', 'at'], ['issue', 'vb'], ['to', 'to'], ['plans', 'nns'], ['the', 'at'], ['about', 'in'], ['yet', 'rb'], ['consulted', 'vbn'], ['been', 'ben'], ['not', '*'], ['has', 'hvz'], ['Vandiver', 'np'], ['that', 'cs'], [',', ','], ['however', 'rb'], [',', ','], ['Constitution', 'nn-tl'], ['The', 'at'], ['told', 'vbd'], ['source', 'nn'], ['Department', 'nn-tl'], ['Highway', 'nn-tl'], ['The', 'at']]
[['.', '.'], ['allowances', 'nns'], ['expense', 'nn'], ['in', 'in'], ['increase', 'nn'], ['day', 'nn'], ['per', 'in'], ['$10', 'nns'], ['a', 'at'], ['itself', 'ppl'], ['voting', 'vbg'], ['in', 'in'], ['Friday', 'nr'], ['of', 'in'], ['action', 'nn'], ["body's", 'nn$'], ['the', 'at'], ['rescind', 'vb'], ['to', 'to'], ['House', 'nn-tl'], ['the', 'at'], ['in', 'in'], ['Monday', 'nr'], ['resolution', 'nn'], ['a', 'at'], ['offer', 'vb'], ['will', 'md'], ['Pelham', 'np'], ['D.', 'np'], ['B.', 'np'], ['Rep.', 'nn-tl'], ['County', 'nn-tl'], ['Schley', '``']]
[['.', '.'], ['sought', 'vbn'], ['be', 'be'], ['would', 'md'], ['action', 'nn'], ['the', 'at'], ['of', 'in'], ['reconsideration', 'nn'], ['that', 'cs'], ['given', 'vbn'], ['be', 'be'], ['first', 'rb'], ['to', 'to'], ['have', 'hv'], ['would', 'md'], ['notice', 'nn'], ['whether', 'cs'], ['or', 'cc'], ['outright', 'jj'], ['repealed', 'vbn'], ['be', 'be'], ['can', 'md'], ['increase', 'nn'], ['the', 'at'], ['on', 'in'], ['vote', 'nn'], ["''", "''"], ['quickie', 'nn'], ['``', '``'], ['the', 'at'], ['whether', 'cs'], ['on', 'in'], ['done', 'vbn'], ['being', 'beg'], ['research', 'nn'], ['was', 'bedz'], ['there', 'ex'], ['night', 'nn'], ['Sunday', 'nr'], ['said', 'vbd'], ['Pelham', 'pps']]
[['.', '.'], ['87-31', 'ppo'], ['through', 'in'], ['voted', 'vbd'], ['House', 'nn-tl'], ['the', 'at'], ['which', 'wdt'], ['resolution', 'nn'], ['privilege', 'nn'], ['the', 'at'], ['aside', 'rb'], ['set', 'vb'], ['to', 'to'], ['seek', 'vb'], ['would', 'md'], ['resolution', 'nn'], ['his', 'pp$'], ['said', 'vbd'], ['Pelham', 'pps'], [',', ','], ['out', 'rp'], ['worked', 'vbd'], ['fully', 'rb'], ['not', '*'], ['were', 'bed'], ['details', 'nns'], ['technical', 'jj'], ['that', 'cs'], ['emphasizing', 'vbg'], ['While', 'cs']]
[['.', '.'], ['29-5', 'ppo'], ['of', 'in'], ['vote', 'nn'], ['a', 'at'], ['by', 'in'], ['Senate', 'nn-tl'], ['the', 'at'], ['in', 'in'], ['passed', 'vbd'], ['resolution', 'nn'], ['similar', 'jj'], ['A', 'at']]
[['.', '.'], ['action', 'nn'], ['the', 'at'], ['rescind', 'vb'], ['to', 'to'], ['there', 'rb'], ['offered', 'vbn'], ['being', 'beg'], ['resolution', 'nn'], ['a', 'at'], ['of', 'in'], ['word', 'nn'], ['no', 'at'], ['was', 'bedz'], ['there', 'ex'], [',', ','], ['night', 'nn'], ['Sunday', 'nr'], ['of', 'in'], ['As', 'cs']]
[['.', '.'], ['sessions', 'nns'], ['Legislature', 'nn-tl'], ['future', 'jj'], ['for', 'in'], ['raises', 'vbz'], ['pay', 'nn'], ['on', 'in'], ['vote', 'nn'], ['to', 'in'], ['legislators', 'nns'], ['allow', 'vb'], ['to', 'to'], ['amendment', 'nn'], ['constitutional', 'jj'], ['a', 'at'], ['rejected', 'vbd'], ['November', 'np'], ['last', 'vb'], ['voters', 'nns'], ['Georgia', 'np'], ['that', 'cs'], ['out', 'rp'], ['pointed', 'vbd'], ['Pelham', 'pps']]
[['.', '.'], ['past', 'nn'], ['the', 'at'], ['in', 'in'], ['opposed', 'vbn'], ['consistently', 'rb'], ['has', 'hvz'], ['it', 'pps'], ['something', 'pn'], [',', ','], ['education', 'nn'], ['to', 'in'], ['aid', 'nn'], ['federal', 'jj'], ['back', 'rb'], ['to', 'in'], ['Monday', 'nr'], ['House', 'nn-tl'], ['Georgia', 'np-tl'], ['the', 'at'], ['ask', 'vb'], ['will', 'md'], ['legislator', 'nn'], ['County', 'nn-tl'], ['Jackson', 'np'], ['veteran', 'nn'], ['A', 'at']]
[['.', '.'], ['funds', 'nns'], ['state', 'nn'], ['as', 'cs'], ["''", "''"], ['expended', 'vbn'], ['and', 'cc'], ['received', 'vbn'], ['be', 'be'], ['funds', 'nns'], ['such', 'jj'], ['that', 'cs'], ['provided', 'vbn'], [',', ','], ['education', 'nn'], ['public', 'jj'], ['for', 'in'], ['support', 'nn'], ['federal', 'jj'], ['increased', 'vbn'], ['endorse', 'vb'], ['``', '``'], ['to', 'in'], ['resolution', 'nn'], ['privilege', 'nn'], ['a', 'at'], ['in', 'in'], ['House', 'nn-tl'], ['the', 'at'], ['asking', 'vbg'], ['is', 'bez'], ['Commerce', 'nn-tl'], ['of', 'in'], ['Barber', 'np'], ['Mac', 'nn-tl'], ['Rep.', 'nn-tl']]
[['.', '.'], ["''", "''"], ['passed', 'vbn'], [')', ')'], ['resolution', 'nn'], ['the', 'at'], ['(', '('], ['it', 'ppo'], ['see', 'vb'], ['to', 'to'], ['like', 'vb'], ['would', 'md'], ['who', 'wps'], ['Washington', 'np'], ['in', 'in'], ['delegation', 'nn'], ['congressional', 'jj'], ['our', 'pp$'], ['of', 'in'], ['members', 'nns'], ['some', 'dti'], ['are', 'ber'], ['``', '``'], ['there', 'rb'], ['said', 'vbd'], [',', ','], ['legislator', 'nn'], ['a', 'at'], ['as', 'cs'], ['year', 'nn'], ['13th', 'od'], ['his', 'pp$'], ['in', 'in'], ['is', 'bez'], ['who', 'wps'], [',', ','], ['Barber', 'np']]
[['.', '.'], ['resolution', 'nn'], ['the', 'at'], ['offer', 'vb'], ['to', 'to'], ['him', 'ppo'], ['asked', 'vbd'], ['specifically', 'rb'], ['congressmen', 'nns'], ["Georgia's", 'np$'], ['of', 'in'], ['none', 'pn'], ['that', 'cs'], ['added', 'vbd'], ['he', 'pps'], ['But', 'cc']]
[['.', '.'], ['Monday', 'nr'], ['read', 'vb'], ['formally', 'rb'], ['be', 'be'], ['will', 'md'], [',', ','], ['Friday', 'nr'], ['hopper', 'nn'], ['House', 'nn-tl'], ['the', 'at'], ['into', 'in'], ['tossed', 'vbd'], ['Barber', 'np'], ['which', 'wdt'], [',', ','], ['resolution', 'nn'], ['The', 'at']]
[['.', '.'], ['raises', 'vbz'], ['pay', 'nn'], ['teacher', 'nn'], ['to', 'in'], ["''", "''"], ['priority', 'nn'], ['give', 'vb'], ['``', '``'], ['to', 'in'], ['directed', 'vbn'], ['be', 'be'], ['should', 'md'], ['Education', 'nn'], ['of', 'in'], ['Board', 'nn-tl'], ['State', 'nn-tl'], ['the', 'at'], [',', ','], ["''", "''"], ['funds', 'nns'], ['federal', 'jj'], ['in', 'in'], ['increase', 'nn'], ['this', 'dt'], ['provide', 'vb'], ['does', 'doz'], ['Congress', 'np'], ['event', 'nn'], ['the', 'at'], ['in', 'in'], ['``', '``'], ['that', 'cs'], ['says', 'vbz'], ['It', 'pps']]
[['.', '.'], ["''", "''"], ['county', 'nn'], ['this', 'dt'], ['in', 'in'], ['saw', 'vbd'], ['ever', 'rb'], ['I', 'ppss'], ['election', 'nn'], ['coolest', 'jjt'], ['``', '``'], ['the', 'at'], ['in', 'in'], [',', ','], ['it', 'ppo'], ['put', 'vbd'], ['policeman', 'nn'], ['a', 'at'], ['as', 'cs'], [',', ','], ['elected', 'vbn'], [',', ','], ['superintendent', 'nn'], ['school', 'nn'], ['new', 'jj'], ['a', 'at'], ['has', 'hvz'], ['County', 'nn-tl'], ['Miller', 'np'], [',', ','], ['controversy', 'nn'], ['hot', 'jj'], [',', ','], ['long', 'jj'], ['a', 'at'], ['After', 'in'], ['--', '--']]
[['.', '.'], ['Committee', 'nn-tl'], ['Executive', 'nn-tl'], ['Democratic', 'jj-tl'], ['County', 'nn-tl'], ['Miller', 'np'], ['the', 'at'], ['of', 'in'], ['chairman', 'nn'], ['and', 'cc'], ['principal', 'nn'], ['school', 'nn'], ['a', 'at'], [',', ','], ['Bush', 'np'], ['Felix', 'np'], ['defeated', 'vbd'], ['who', 'wps'], [',', ','], ['teacher', 'nn'], ['agriculture', 'nn'], ['veteran', 'nn'], ['a', 'at'], [',', ','], ['Davis', 'np'], ['Harry', 'np'], ['is', 'bez'], ['superintendent', 'nn'], ['school', 'nn'], ['new', 'jj'], ['The', 'at']]
[['.', '.'], ['402', 'ppo'], ['got', 'vbd'], ['Bush', 'np'], ['and', 'cc'], [',', ','], ['election', 'nn'], ["Saturday's", 'nr$'], ['in', 'in'], ['votes', 'nns'], ['1,119', 'pp$'], ['received', 'vbd'], ['Davis', 'np']]
[['.', '.'], ['order', 'nn'], ['insure', 'vb'], ['to', 'to'], ['polls', 'nns'], ['the', 'at'], ['at', 'in'], ['by', 'in'], ['stood', 'vbd'], [',', ','], ['pistol', 'nn'], ['a', 'at'], ['with', 'in'], ['armed', 'vbn'], [',', ','], ['Williams', 'np'], ['Carey', 'np'], ['Ordinary', 'jj']]
[['.', '.'], ['said', 'vbd'], ['Williams', 'np'], ['Tom', 'np'], ['Policeman', 'nn-tl'], ['Colquitt', 'cc'], [',', ','], ["''", "''"], ['saw', 'vbd'], ['ever', 'rb'], ['I', 'ppss'], ['election', 'nn'], ['calmest', 'cc'], [',', ','], ['coolest', 'jjt'], ['the', 'at'], ['was', 'bedz'], ['This', 'dt'], ['``', '``']]
[['.', '.'], ['church', 'nn'], ['at', 'in'], ['being', 'nn'], ['like', 'cs'], ['just', 'rb'], ['was', 'bedz'], ['polls', 'nns'], ['the', 'at'], ['at', 'in'], ['Being', 'nn-tl'], ['``', '``']]
[['.', '.'], ["''", "''"], ['trouble', 'nn'], ['of', 'in'], ['bit', 'nn'], ['a', 'at'], ['have', 'hv'], ["didn't", 'dod*'], ['we', 'ppss'], ['and', 'cc'], [',', ','], ['liquor', 'nn'], ['of', 'in'], ['drop', 'nn'], ['a', 'at'], ['smell', 'vb'], ["didn't", 'dod*'], ['I', 'ppss']]
[['.', '.'], ['however', 'rb'], [',', ','], ['quiet', 'jj'], ['so', 'ql'], ['not', '*'], ['was', 'bedz'], ['election', 'nn'], ['the', 'at'], ['to', 'in'], ['leading', 'vbg'], ['campaign', 'nn'], ['The', 'at']]
[['.', '.'], ['violence', 'nn'], ['of', 'in'], ['threats', 'nns'], ['veiled', 'vbn'], ['and', 'cc'], ['calls', 'nns'], ['phone', 'nn'], ['midnight', 'nn'], ['anonymous', 'jj'], [',', ','], ['controversy', 'nn'], ['by', 'in'], ['marked', 'vbn'], ['was', 'bedz'], ['It', 'pps']]
[['.', '.'], ['board', 'nn'], ['school', 'nn'], ['county', 'nn'], ['the', 'at'], ['with', 'in'], ['dispute', 'nn'], ['a', 'at'], ['in', 'in'], ['post', 'nn'], ['his', 'pp$'], ['resigned', 'vbd'], ['he', 'pps'], ['after', 'cs'], ['days', 'nns'], ['four', 'cd'], [',', ','], ['18', 'cd'], ['March', 'np'], ['death', 'nn'], ['to', 'in'], ['himself', 'ppl'], ['shot', 'vbd'], [',', ','], ['Callan', 'np'], ['P.', 'np'], ['George', 'np'], [',', ','], ['superintendent', 'nn'], ['school', 'nn'], ['county', 'nn'], ['former', 'ap'], ['The', 'at']]
[['.', '.'], ['calls', 'nns'], ['telephone', 'nn'], ['anonymous', 'jj'], ['received', 'vbn'], ['reportedly', 'rb'], [',', ','], ['Bush', 'np'], ['and', 'cc'], ['Davis', 'np'], [',', ','], ['candidates', 'nns'], ['both', 'abx'], [',', ','], ['campaign', 'nn'], ['election', 'nn'], ['the', 'at'], ['During', 'in']]
[['.', '.'], ['election', 'nn'], ['the', 'at'], ['scheduled', 'vbd'], ['he', 'pps'], ['after', 'cs'], ['soon', 'rb'], ['calls', 'nns'], ['anonymous', 'jj'], ['to', 'in'], ['subjected', 'vbn'], ['was', 'bedz'], [',', ','], ['too', 'rb'], [',', ','], ['he', 'pps'], ['said', 'vbd'], ['Williams', 'np'], ['Ordinary', 'jj']]
[['.', '.'], ['election', 'nn'], ['orderly', 'jj'], ['an', 'at'], ['promised', 'vbd'], ['and', 'cc'], ['gun', 'nn'], ['a', 'at'], ['carry', 'vb'], ['to', 'to'], ['permit', 'nn'], ['a', 'at'], ['himself', 'ppl'], ['got', 'vbd'], ['Williams', 'np'], ['and', 'cc'], [',', ','], ['polls', 'nns'], ['the', 'at'], ['at', 'in'], ['irregularities', 'nns'], ['be', 'be'], ['would', 'md'], ['there', 'ex'], ['that', 'cs'], ['feared', 'vbd'], ['citizens', 'nns'], ['local', 'jj'], ['Many', 'ap']]
[['.', '.'], ['promise', 'nn'], ['his', 'pp$'], ['good', 'jj'], ['made', 'vbn'], ['apparently', 'rb'], ['ordinary', 'jj'], ['the', 'at'], ['said', 'vbd'], ['Tabb', 'np'], ['Felix', 'np'], ['Sheriff', 'nn-tl']]
[['.', '.'], ['said', 'vbd'], ['sheriff', 'nn'], ['the', 'at'], [',', ','], ["''", "''"], ['smooth', 'jj'], ['real', 'jj'], ['went', 'vbd'], ['Everything', 'pn'], ['``', '``']]
[['.', '.'], ["''", "''"], ['trouble', 'nn'], ['of', 'in'], ['bit', 'nn'], ['a', 'at'], ["wasn't", 'bedz*'], ['There', 'ex'], ['``', '``']]
[['.', '.'], ['bankers', 'nns'], ['Texas', 'np'], ['of', 'in'], ['protests', 'nns'], ['adamant', 'jj'], ['the', 'at'], ['despite', 'in'], ['Thursday', 'nr'], ['certain', 'jj'], ['seemed', 'vbd'], ['act', 'nn'], ["''", "''"], ['property', 'nn'], ['abandoned', 'vbn'], ['``', '``'], ["Daniel's", ','], ['Price', 'nn-tl'], ['Gov.', 'nn-tl'], ['of', 'in'], ['approval', 'nn'], ['Committee', 'nn-tl'], ['--', '--']]
[['.', '.'], ['Taxation', 'nn'], ['and', 'cc'], ['Revenue', 'nn-tl'], ['on', 'in'], ['Committee', 'nn-tl'], ['House', 'nn-tl'], ['the', 'at'], ['before', 'in'], ['hearing', 'nn'], ['public', 'jj'], ['a', 'at'], ['in', 'in'], [',', ','], ['Legislatures', 'nn'], ['previous', 'jj'], ['two', 'cd'], ['by', 'in'], ['rejection', 'nn'], ['its', 'pp$'], ['since', 'in'], ['considerably', 'rb'], ['down', 'rp'], ['watered', 'vbn'], ['had', 'hvd'], ['he', 'pps'], ['which', 'wdt'], [',', ','], ['measure', 'nn'], ['the', 'at'], ['for', 'in'], ['fight', 'nn'], ['the', 'at'], ['led', 'vbd'], ['personally', 'rb'], ['Daniel', 'np']]
[['.', '.'], ['week', 'nn'], ['one', 'cd'], ['for', 'in'], ['subcommittee', 'nn'], ['a', 'at'], ['to', 'in'], ['automatically', 'rb'], ['went', 'vbd'], ['it', 'pps'], [',', ','], ['rules', 'nns'], ['committee', 'nn'], ['Under', 'in']]
[['.', '.'], ['it', 'ppo'], ['of', 'in'], ['passage', 'nn'], ['recommend', 'vb'], ['will', 'md'], ['they', 'ppss'], ['that', 'cs'], ['doubt', 'nn'], ['little', 'jj'], ['left', 'vbd'], ['witnesses', 'nns'], ['as', 'cs'], ['appearing', 'vbg'], ['bankers', 'nns'], ['taunted', 'vbn'], ['members', 'nns'], ['committee', 'nn'], ['which', 'wdt'], ['with', 'in'], ['questions', 'nns'], ['But', 'cc']]
[['.', '.'], ['31', 'cd'], ['Aug.', 'np'], ['next', 'in'], ['year', 'nn'], ['fiscal', 'jj'], ['current', 'jj'], ['the', 'at'], ['of', 'in'], ['end', 'nn'], ['the', 'at'], ['at', 'in'], ['dollars', 'nns'], ['million', 'cd'], ['63', 'cd'], ['of', 'in'], ['deficit', 'nn'], ['anticipated', 'vbn'], ['an', 'at'], ['erase', 'in'], ['help', 'nn'], ['to', 'in'], ['dollars', 'nns'], ['million', 'cd'], ['17', 'cd'], ['produce', 'vb'], ['would', 'md'], ['it', 'pps'], ['that', 'cs'], ['estimate', 'nn'], ['his', 'pp$'], ["''", "''"], ['conservative', 'jj'], ['extremely', 'ql'], ['``', '``'], ['termed', 'vbd'], ['Daniel', 'np']]
[['.', '.'], ["''", "''"], ['republic', 'nn'], ['a', 'at'], ['was', 'bedz'], ['Texas', 'np'], ['since', 'cs'], ['``', '``'], ['books', 'nns'], ['the', 'at'], ['on', 'in'], ['been', 'ben'], ['has', 'hvz'], ['which', 'wdt'], ['law', 'nn'], ['escheat', 'jj'], ['the', 'at'], ['enforcing', 'vbg'], ['of', 'in'], ['means', 'nn'], ['provide', 'vb'], ['merely', 'rb'], ['would', 'md'], ['measure', 'nn'], ['the', 'at'], ['committee', 'nn'], ['the', 'at'], ['told', 'vbd'], ['He', 'pps']]
[['.', '.'], ['more', 'ap'], ['or', 'cc'], ['years', 'nns'], ['seven', 'cd'], ['for', 'in'], ['missing', 'vbg'], ['persons', 'nns'], ['of', 'in'], ['property', 'nn'], ['personal', 'jj'], ['other', 'ap'], ['and', 'cc'], ['stocks', 'nns'], [',', ','], ['accounts', 'nns'], ['bank', 'nn'], ['over', 'in'], ['take', 'vb'], ['to', 'to'], ['state', 'nn'], ['the', 'at'], ['permits', 'vbz'], ['It', 'pps']]
[['.', '.'], ['treasurer', 'nn'], ['state', 'nn'], ['the', 'at'], ['to', 'in'], ['property', 'nn'], ['such', 'jj'], ['report', 'nn'], ['to', 'in'], ['corporations', 'nns'], ['other', 'ap'], ['and', 'cc'], ['companies', 'nns'], ['pipeline', 'nn'], [',', ','], ['firms', 'nns'], ['insurance', 'nn'], [',', ','], ['banks', 'nns'], ['force', 'vb'], ['would', 'md'], [',', ','], ['personally', 'rb'], ['drafted', 'vbd'], ['he', 'pps'], ['said', 'vbd'], ['Daniel', 'np'], ['which', 'wdt'], [',', ','], ['bill', 'nn'], ['The', 'at']]
[['.', '.'], ['declared', 'vbd'], ['Daniel', 'np'], [',', ','], ['property', 'nn'], ['such', 'jj'], ['locate', 'vb'], ['to', 'to'], ['impossible', 'jj'], ['almost', 'ql'], ['is', 'bez'], ['it', 'pps'], ['because', 'cs'], ['now', 'rb'], ['enforced', 'vbn'], ['be', 'be'], ['cannot', 'md*'], ['law', 'nn'], ['escheat', 'jj'], ['The', 'at']]
[['.', '.'], ['customers', 'nns'], ['bank', 'nn'], ['of', 'in'], ['confidence', 'nn'], ['the', 'at'], ['undermine', 'vb'], ['and', 'cc'], ['depositors', 'nn'], ['with', 'in'], ['obligations', 'nns'], ['contractual', 'jj'], ['their', 'pp$'], ['violate', 'vb'], ['to', 'to'], ['banks', 'nns'], ['force', 'vb'], ['would', 'md'], ['it', 'pps'], ['said', 'vbd'], ['he', 'pps'], ['when', 'wrb'], ['keynote', 'vb'], ['opposition', 'nn'], ['the', 'at'], ['sounded', 'vbd'], [',', ','], ['Association', 'nn-tl'], ['Bankers', 'nns-tl'], ['Texas', 'np-tl'], ['the', 'at'], ['representing', 'vbg'], ['lawyer', 'nn'], ['Tyler', 'np'], ['a', 'at'], [',', ','], ['Lawrence', 'np'], ['Dewey', 'np']]
[['.', '.'], ['said', 'vbd'], ['he', 'pps'], [',', ','], ["''", "''"], ['economy', 'nn'], ['the', 'at'], ['to', 'in'], ['something', 'pn'], ['do', 'do'], ['you', 'ppss'], [',', ','], ['banks', 'nns'], ['in', 'in'], ['confidence', 'nn'], ['destroy', 'vb'], ['you', 'ppss'], ['If', 'cs'], ['``', '``']]
[['.', '.'], ["''", "''"], ['dollars', 'nns'], ['of', 'in'], ['millions', 'nns'], ['many', 'ap'], ['circulation', 'nn'], ['of', 'in'], ['out', 'rp'], ['take', 'vb'], ['You', 'ppss'], ['``', '``']]
[['.', '.'], ["''", "''"], ['companies', 'nns'], ['pipeline', 'nn'], ['and', 'cc'], ['insurance', 'nn'], [',', ','], ['banks', 'nns'], ['to', 'in'], ['pockets', 'nns'], ["taxpayers'", 'jj'], ['the', 'at'], ['of', 'in'], ['out', 'in'], ['gift', 'nn'], ['a', 'at'], ['making', 'vbg'], ['to', 'in'], ['``', '``'], ['amount', 'vb'], ['would', 'md'], ['it', 'pps'], ['enact', 'vb'], ['to', 'to'], ['failure', 'nn'], ['a', 'at'], ['said', 'vbd'], [',', ','], ['bill', 'nn'], ['the', 'at'], ['of', 'in'], ['sponsor', 'nn'], [',', ','], ['Sherman', 'np'], ['of', 'in'], ['Hughes', 'np'], ['E.', 'np'], ['Charles', 'np'], ['Rep.', 'nn-tl']]
[['.', '.'], ['Austin', 'np'], ['of', 'in'], ['Cox', 'np'], ['Howard', 'np'], ['and', 'cc'], ['Harlingen', 'nn'], ['of', 'in'], ['Brady', 'vbd'], ['B.', 'np'], ['J.', 'np'], [',', ','], ['Houston', 'np'], ['of', 'in'], ['Jones', 'np'], ['B.', 'np'], ['Gaynor', 'cc'], [',', ','], ['Sherman', 'np'], ['of', 'in'], ['Hudson', 'np'], ['Scott', 'np'], ['including', 'in'], [',', ','], ['bankers', 'nns'], ['several', 'ap'], ['by', 'in'], ['denied', 'vbn'], ['was', 'bedz'], ['contention', 'nn'], ['His', 'pp$']]
[['.', '.'], ['contracts', 'nns'], ['impair', 'vb'], ['would', 'md'], ['it', 'pps'], [',', ','], ['said', 'vbd'], ['he', 'pps'], [',', ','], ['since', 'rb'], ["''", "''"], ['unconstitutional', 'jj'], ['probably', 'rb'], ['``', '``'], ['is', 'bez'], ['bill', 'nn'], ['the', 'at'], ['that', 'cs'], ['argued', 'vbd'], ['Cox', 'np']]
[['.', '.'], ['Monday', 'nr'], ['last', 'ap'], ['only', 'rb'], ['introduced', 'vbn'], ['was', 'bedz'], ['bill', 'nn'], ['the', 'at'], ['since', 'in'], [',', ','], ['hearing', 'nn'], ['the', 'at'], ['on', 'in'], ['given', 'vbn'], ['was', 'bedz'], ['notice', 'nn'], ['enough', 'ap'], ['not', '*'], ['that', 'cs'], ['complained', 'vbd'], ['also', 'rb'], ['He', 'pps']]
[['.', '.'], ['counties', 'nns'], ['largest', 'jjt'], ['other', 'ap'], ['four', 'cd'], ['the', 'at'], ['and', 'cc'], ['Dallas', 'np'], ['in', 'in'], ['deaf', 'jj'], ['the', 'at'], ['for', 'in'], ['schools', 'nns'], ['day', 'nn'], ['of', 'in'], ['establishment', 'nn'], ['authorizing', 'vbg'], ['Dallas', 'np'], ['of', 'in'], ['Parkhouse', 'vbd'], ['George', 'np'], ['Sen.', 'nn-tl'], ['of', 'in'], ['bill', 'nn'], ['the', 'at'], ['Thursday', 'nr'], ['approved', 'vbn'], ['unanimously', 'rb'], ['Senators', 'nns-tl'], ['--', '--']]
[['.', '.'], ['state', 'nn'], ['the', 'at'], ['to', 'in'], ['cost', 'nn'], ['reduced', 'vbn'], ['a', 'at'], ['at', 'in'], ['age', 'nn'], ['scholastic', 'jj'], ['the', 'at'], ['in', 'in'], ['students', 'nns'], ['deaf', 'jj'], ['more', 'ql'], ['for', 'in'], ['schooling', 'nn'], ['special', 'jj'], ['provide', 'vb'], ['to', 'to'], ['designed', 'vbn'], ['is', 'bez'], ['bill', 'nn'], ['The', 'at']]
[['.', '.'], ['House', 'nn-tl'], ['the', 'at'], ['to', 'in'], ['on', 'in'], ['bill', 'nn'], ['the', 'at'], ['passed', 'vbd'], ['Senate', 'nn-tl'], ['the', 'at'], ['as', 'cs'], ['debate', 'nn'], ['no', 'at'], ['was', 'bedz'], ['There', 'ex']]
[['.', '.'], ['here', 'rb'], ['Deaf', 'nn-tl'], ['the', 'at'], ['for', 'in'], ['School', 'nn'], ['Texas', 'np'], ['residential', 'jj'], ['the', 'at'], ['attend', 'vb'], ['to', 'to'], ['ones', 'nns'], ['older', 'jjr'], ['permitting', 'vbg'], [',', ','], ['schools', 'nns'], ['day', 'nn'], ['the', 'at'], ['attend', 'vb'], ['to', 'to'], ['age', 'nn'], ['of', 'in'], ['years', 'nns'], ['13', 'cd'], ['and', 'cc'], ['6', 'cd'], ['between', 'in'], ['children', 'nns'], ['deaf', 'jj'], ['require', 'vb'], [',', ','], ['population', 'nn'], ['more', 'ap'], ['or', 'cc'], ['300,000', 'cd'], ['of', 'in'], ['counties', 'nns'], ['in', 'in'], ['deaf', 'jj'], ['the', 'at'], ['for', 'in'], ['schools', 'nns'], ['day', 'nn'], ['county-wide', 'jj'], ['establish', 'vb'], ['to', 'to'], ['Agency', 'nn-tl'], ['Education', 'nn-tl'], ['Texas', 'np-tl'], ['the', 'at'], ['authorize', 'vb'], ['would', 'md'], ['It', 'pps']]
[['.', '.'], ['Senate', 'nn-tl'], ['the', 'at'], ['told', 'vbd'], ['Parkhouse', 'pps'], [',', ','], ['absorbed', 'vbn'], ['was', 'bedz'], ['$88,000', 'dt'], ['of', 'in'], ['outlay', 'nn'], ['capital', 'nn'], ["year's", 'nn$'], ['first', 'od'], ['the', 'at'], ['after', 'in'], ['yearly', 'jj'], ['$157,460', 'at'], ['of', 'in'], ['savings', 'nns'], ['a', 'at'], ['be', 'be'], ['would', 'md'], ['which', 'wdt'], [',', ','], ['$451,500', 'vbn'], ['be', 'be'], ['would', 'md'], ['Paso', 'np'], ['El', 'np'], ['and', 'cc'], ['Tarrant', 'np'], [',', ','], ['Bexar', 'np'], [',', ','], ['Harris', 'np'], [',', ','], ['Dallas', 'np'], ['of', 'in'], ['counties', 'nns'], ['five', 'cd'], ['the', 'at'], ['in', 'in'], ['schools', 'nns'], ['day', 'nn'], ['the', 'at'], ['for', 'in'], ['budget', 'nn'], ['Operating', 'vbg']]
[['.', '.'], ['school', 'nn'], ['deaf', 'jj'], ['state', 'nn'], ['the', 'at'], ['in', 'in'], ['live', 'vb'], ['to', 'to'], ['Austin', 'np'], ['to', 'in'], ['coming', 'vbg'], ['from', 'in'], ['them', 'ppo'], ['saving', 'vbg'], [',', ','], ['County', 'nn-tl'], ['Dallas', 'np-tl'], ['in', 'in'], ['school', 'nn'], ['day', 'nn'], ['the', 'at'], ['attend', 'vb'], ['to', 'to'], ['scholastics', 'nns'], ['182', 'vbn'], ['be', 'be'], ['would', 'md'], ['there', 'rb'], ['estimated', 'vbn'], ['TEA', 'nn'], ['The', 'at']]
[['.', '.'], ['Ratcliff', 'np'], ['Joe', 'np'], ['and', 'cc'], ['Berry', 'np'], [')', ')'], ['Red', 'np'], ['(', '('], ['E.', 'np'], ['V.', 'np'], ['Reps.', 'nns-tl'], ['between', 'in'], ['soon', 'rb'], ['parimutuels', ','], ['race', 'nn'], ['horse', 'nn'], ['on', 'in'], ['debate', 'nn'], ['a', 'at'], ['hear', 'vb'], ['to', 'to'], ['get', 'vb'], ['may', 'md'], ['Dallas', 'np']]
[['.', '.'], ['rejected', 'vbn'], ['be', 'be'], ['should', 'md'], ['amendment', 'nn'], ['constitutional', 'jj'], ['proposed', 'vbn'], ["Berry's", 'at'], ['thinks', 'vbz'], ['he', 'pps'], ['why', 'wrb'], ['Dallas', 'np'], ['in', 'in'], ['folks', 'nns'], ['home', 'nn'], ['tell', 'vb'], ['to', 'to'], ['expects', 'vbz'], ['he', 'pps'], ['said', 'vbd'], ['Ratcliff', 'pps'], [',', ','], ['out', 'rp'], ['worked', 'vbn'], ['be', 'be'], ['to', 'to'], ['still', 'rb'], ['are', 'ber'], ['details', 'nns'], ['While', 'cs']]
[['.', '.'], ['Ratcliff', 'ppo'], ['said', 'vbd'], [',', ','], ["''", "''"], ['betting', 'vbg'], ['race', 'nn'], ['horse', 'nn'], ['on', 'in'], ["'", "'"], ['con', 'nn'], ["'", "'"], ['than', 'in'], ['letters', 'nns'], ["'", "'"], ['pro', 'nn'], ["'", "'"], ['more', 'ql'], ['getting', 'vbg'], ["We're", 'ppss+ber'], ['``', '``']]
[['.', '.'], ['also', 'rb'], ['it', 'ppo'], ['oppose', 'vb'], ['would', 'md'], ['them', 'ppo'], ['of', 'in'], ['most', 'ap'], [',', ','], ['question', 'nn'], ['this', 'dt'], ['on', 'in'], ['informed', 'vbn'], ['better', 'rbr'], ['were', 'bed'], ['people', 'nns'], ['if', 'cs'], ['believe', 'vb'], ['I', 'ppss'], ['But', 'cc'], ['``', '``']]
[['.', '.'], ["''", "''"], ['it', 'ppo'], ['on', 'in'], ['career', 'nn'], ['political', 'jj'], ['my', 'pp$'], ['stake', 'nn'], ['to', 'in'], ['willing', 'jj'], ["I'm", 'ppss+bem']]
[['.', '.'], ['ponies', 'nns'], ['the', 'at'], ['on', 'in'], ['betting', 'vbg'], ['of', 'in'], ['advocacy', 'nn'], ['his', 'pp$'], ['on', 'in'], ['elected', 'vbn'], ['got', 'vbd'], [',', ','], ['Antonio', 'np'], ['San', 'np'], ['from', 'in'], ['ex-gambler', 'nn'], ['an', 'at'], [',', ','], ['Berry', 'np'], ['Rep.', 'nn-tl']]
[['.', '.'], ['later', 'rbr'], ['sledding', 'nn'], ['hard', 'jj'], ['faces', 'nns'], ['resolution', 'nn'], ['the', 'at'], ['although', 'cs'], [',', ','], ['report', 'nn'], ['favorable', 'jj'], ['a', 'at'], ['it', 'ppo'], ['give', 'vb'], ['to', 'to'], ['expected', 'vbn'], ['is', 'bez'], ['proposal', 'nn'], ['option', 'nn'], ['local', 'jj'], ['his', 'pp$'], ['heard', 'vbd'], ['which', 'wdt'], ['committee', 'nn'], ['House', 'nn-tl'], ['A', 'at']]
[['.', '.'], ['cities', 'nns'], ['to', 'in'], ['assistance', 'nn'], ['planning', 'nn'], ['give', 'vb'], ['to', 'to'], ['authority', 'nn'], ["Department's", 'nn$-tl'], ['Health', 'nn-tl'], ['State', 'nn-tl'], ['the', 'at'], ['extending', 'vbg'], ['bill', 'nn'], ['a', 'at'], [',', ','], ['Senate', 'nn-tl'], ['the', 'at'], ['to', 'in'], ['sent', 'vbn'], ['and', 'cc'], [',', ','], ['finally', 'rb'], ['passed', 'vbd'], ['house', 'nn'], ['The', 'at']]
[['.', '.'], ['calendar', 'nn'], ['the', 'at'], ['on', 'in'], ['three', 'cd'], ['the', 'at'], ['passing', 'vbg'], [',', ','], ['committees', 'nns'], ['by', 'in'], ['approved', 'vbn'], ['bills', 'nns'], ['House', 'nn-tl'], ['of', 'in'], ['fare', 'nn'], ['meager', 'jj'], ['its', 'pp$'], ['through', 'in'], ['whipped', 'vbn'], ['quickly', 'rb'], ['senate', 'nn'], ['The', 'at']]
[['.', '.'], ['districts', 'nns'], ['school', 'nn'], ['of', 'in'], ['acts', 'nns'], ['validated', 'dt$'], ['One', 'cd']]
[['.', '.'], ['District', 'nn-tl'], ['Navigation', 'nn-tl'], ['Beaumont', 'np'], ['the', 'at'], ['of', 'in'], ['authority', 'nn'], ['enlarged', 'vbn'], ['Another', 'dt']]
[['.', '.'], ['adopted', 'vbn'], ['was', 'bedz'], ['previously', 'rb'], ['amendment', 'nn'], ['constitutional', 'jj'], ['special', 'jj'], ['a', 'at'], ['which', 'wdt'], ['for', 'in'], [',', ','], ['District', 'nn-tl'], ['Hospital', 'nn-tl'], ['county', 'nn'], ['Lamar', 'np'], ['the', 'at'], ['of', 'in'], ['creation', 'nn'], ['for', 'in'], ['act', 'nn'], ['enabling', 'vbg'], ['the', 'at'], ['amended', 'vbd'], ['third', 'nn'], ['The', 'at']]
[['.', '.'], ['district', 'nn'], ['Coast', 'nn-tl'], ['Gulf', 'nn-tl'], ['the', 'at'], ['in', 'in'], ['retarded', 'vbn'], ['mentally', 'rb'], ['the', 'at'], ['for', 'in'], ['school', 'nn'], ['a', 'at'], ['of', 'in'], ['future', 'nn'], ['the', 'at'], ['in', 'in'], ['establishment', 'nn'], ['authorizing', 'vbg'], ['Galveston', 'np'], ['of', 'in'], ['Schwartz', 'np'], ['R.', 'np'], ['A.', 'np'], ['Sen.', 'nn-tl'], ['by', 'in'], ['bill', 'nn'], ['a', 'at'], ['passed', 'vbd'], ['senators', 'nns'], [',', ','], ['dissent', 'nn'], ['Without', 'in']]
[['.', '.'], ['site', 'nn'], ['a', 'at'], ['of', 'in'], ['donations', 'nns'], ['and', 'cc'], ['gifts', 'nns'], ['accept', 'vb'], ['can', 'md'], ['board', 'nn'], ['Hospital', 'nn-tl'], ['State', 'nn-tl'], ['the', 'at'], ['meantime', 'nn'], ['the', 'at'], ['in', 'in'], ['but', 'cc'], ['on', 'in'], ['later', 'rbr'], ['sought', 'vbn'], ['be', 'be'], ['will', 'md'], ['construction', 'nn'], ['its', 'pp$'], ['for', 'in'], ['Money', 'nn']]
[['.', '.'], ['passed', 'vbn'], ['were', 'bed'], ['bills', 'nns'], ['revision', 'nn'], ['tax', 'nn'], ['Two', 'cd']]
[['.', '.'], ['notarized', 'vbn'], ['be', 'be'], ['return', 'nn'], ['each', 'dt'], ['that', 'cs'], ['requirement', 'nn'], ['the', 'at'], ['eliminating', 'vbg'], ['by', 'in'], ['taxes', 'nns'], ['excise', 'nn'], ['miscellaneous', 'jj'], ['of', 'in'], ['group', 'nn'], ['a', 'at'], ['pay', 'vb'], ['who', 'wps'], ['retailers', 'nns'], ['17,000', 'at'], ['than', 'in'], ['more', 'ap'], ['aid', 'vb'], ['would', 'md'], [',', ','], ['Saba', 'np'], ['San', 'np'], ['of', 'in'], ['Crump', 'vbd'], ['Louis', 'np'], ['Sen.', 'nn-tl'], ['by', 'in'], [',', ','], ['One', 'cd']]
[['.', '.'], ['fine', 'jj'], ['$1,000', 'nns'], ['a', 'at'], ['plus', 'cc'], [',', ','], ['prison', 'nn'], ['in', 'in'], ['years', 'nns'], ['five', 'cd'], ['to', 'in'], ['one', 'cd'], ['of', 'in'], ['penalty', 'nn'], ['a', 'at'], ['carry', 'vb'], ['would', 'md'], ['which', 'wdt'], ['of', 'in'], ['violation', 'nn'], [',', ','], ['correctness', 'nn'], ['of', 'in'], ['certificate', 'nn'], ['a', 'at'], ['sign', 'vb'], ['would', 'md'], ['retailers', 'nns'], [',', ','], ['Instead', 'rb']]
[['.', '.'], ['League', 'nn-tl'], ['Research', 'nn-tl'], ['Texas', 'np-tl'], ['the', 'at'], ['by', 'in'], ['recommendations', 'nns'], ['of', 'in'], ['series', 'nn'], ['a', 'at'], ['of', 'in'], ['one', 'cd'], ['was', 'bedz'], ['It', 'pps']]
[['.', '.'], ['bonds', 'nns'], ['and', 'cc'], ['stocks', 'nns'], ['as', 'cs'], ['such', 'jj'], ['in', 'in'], ['brokers', 'nns'], ['on', 'in'], ['license', 'nn'], ['occupation', 'nn'], ['annual', 'jj'], ['$12', 'jj'], ['the', 'at'], ['from', 'in'], [',', ','], ['fee', 'nn'], ['licensing', 'nn'], ['annual', 'jj'], ['own', 'jj'], ['their', 'pp$'], ['pay', 'vb'], ['who', 'wps'], [',', ','], ['brokers', 'nns'], ['estate', 'nn'], ['real', 'jj'], ['relieve', 'vb'], ['would', 'md'], [',', ','], ['Paris', 'np'], ['of', 'in'], ['Jr.', 'np'], ['Aikin', 'np'], ['M.', 'np'], ['A.', 'np'], ['Sen.', 'nn-tl'], ['by', 'in'], [',', ','], ['bill', 'nn'], ['other', 'ap'], ['The', 'at']]
[['.', '.'], ['gas', 'nn'], ['for', 'in'], ['reservoirs', 'nns'], ['storage', 'nn'], ['underground', 'jj'], ['for', 'in'], ['sites', 'nns'], ['acquire', 'vb'], ['to', 'to'], [',', ','], ['Paso', 'np'], ['El', 'np'], ['of', 'in'], [',', ','], ['3', 'cd'], ['Owen', 'np'], ['Frank', 'np'], ['Sen.', 'nn-tl'], ['by', 'in'], ['bill', 'nn'], ['a', 'at'], ['under', 'in'], [',', ','], ['domain', 'nn'], ['eminent', 'jj'], ['of', 'in'], ['right', 'nn'], ['the', 'at'], ['given', 'vbn'], ['be', 'be'], ['would', 'md'], ['companies', 'nns'], ['utility', 'nn'], ['public', 'nn'], ['gas', 'nn'], ['Natural', 'jj']]
[['.', '.'], ['elections', 'nns'], ['special', 'jj'], ['costly', 'jj'], ['for', 'in'], ['need', 'nn'], ['the', 'at'], ['eliminating', 'vbg'], [',', ','], ['Congress', 'np'], ['and', 'cc'], ['Legislature', 'nn-tl'], ['the', 'at'], ['in', 'in'], ['vacancies', 'nns'], ['future', 'nn'], ['appointment', 'nn'], ['by', 'in'], ['fill', 'vb'], ['to', 'to'], ['plan', 'nn'], ['a', 'at'], ['suggested', 'vbd'], [',', ','], ['Commission', 'nn-tl'], ['Highway', 'nn-tl'], ['Texas', 'np-tl'], ['the', 'at'], ['of', 'in'], ['chairman', 'nn'], ['former', 'ap'], [',', ','], ['Plainview', 'nn'], ['of', 'in'], ['Formby', 'vbd'], ['Marshall', 'np']]
[['.', '.'], ['Court', 'nn-tl'], ['Supreme', 'jj-tl'], ['Texas', 'np-tl'], ['the', 'at'], ['of', 'in'], ['justice', 'nn'], ['chief', 'nn'], ['and', 'cc'], ['general', 'nn'], ['attorney', 'nn'], [',', ','], ['House', 'nn-tl'], ['the', 'at'], ['of', 'in'], ['speaker', 'nn'], [',', ','], ['governor', 'nn'], ['lieutenant', 'nn'], [',', ','], ['governor', 'nn'], ['the', 'at'], ['of', 'in'], ['composed', 'vbn'], ['board', 'nn'], ['a', 'at'], ['by', 'in'], ['selected', 'vbn'], ['be', 'be'], ['would', 'md'], ['appointee', 'nn'], ['an', 'at'], [',', ','], ['plan', 'nn'], ["Formby's", 'at'], ['Under', 'in']]
[['.', 'pps'], ['pay', 'pps'], ['to', 'pps'], ['prefer', 'pps'], ['would', 'pps'], ['Texans', 'pps'], ['taxes', 'pps'], ['of', 'pps'], ['kind', 'pps'], ['what', 'pps'], ['on', 'pps'], ['poll', 'pps'], ['a', 'pps'], ['taking', 'pps'], ['against', 'pps'], ['Thursday', 'pps'], ['decided', 'pps'], ['representatives', 'pps'], ['State', 'pps'], ['--', 'pps']]
[['.', '.'], ['senator', 'np'], ['U.S.', 'np'], ['a', 'at'], ['on', 'in'], ['votes', 'nns'], ['Texas', 'np'], ['when', 'wrb'], [',', ','], ['ballot', 'nn'], ['4', 'cd'], ['April', 'np'], ['the', 'at'], ['on', 'in'], ['referendum', 'nn'], ['the', 'at'], ['order', 'vb'], ['would', 'md'], ['which', 'wdt'], ['bill', 'nn'], ['a', 'at'], ['Committee', 'nn-tl'], ['Affairs', 'nns-tl'], ['State', 'nn-tl'], ['the', 'at'], ['in', 'in'], ['kept', 'vbn'], ['65', 'cd'], ['to', 'in'], ['81', 'cd'], ['of', 'in'], ['vote', 'nn'], ['adverse', 'jj'], ['An', 'at']]
[['.', '.'], ['bill', 'nn'], ['the', 'at'], ['kill', 'vb'], ['can', 'md'], ['committee', 'nn'], ['the', 'at'], ['in', 'in'], ['delay', 'nn'], ['further', 'ap'], ['that', 'cs'], ['said', 'vbd'], [',', ','], ['idea', 'nn'], ['poll', 'nn'], ['the', 'at'], ['of', 'in'], ['sponsor', 'nn'], [',', ','], ['Seminole', 'nn'], ['of', 'in'], ['Roberts', 'np'], ['Wesley', 'np-tl'], ['Rep.', 'nn-tl']]
[['.', '.'], ['22', 'cd'], ['Feb.', 'np'], ['on', 'in'], ['hearing', 'nn'], ['public', 'jj'], ['for', 'in'], ['it', 'ppo'], ['set', 'vb'], ['to', 'to'], ['committee', 'nn'], ['the', 'at'], ['of', 'in'], ['Hollowell', 'vbd'], ['Bill', 'np'], ['Chairman', 'nn-tl'], ['gotten', 'vbn'], ['finally', 'rb'], ['had', 'hvd'], ['he', 'pps'], ['that', 'cs'], ['reported', 'vbd'], ['Texan', 'np'], ['West', 'jj-tl'], ['The', 'at']]
[['.', '.'], ['said', 'vbd'], ['Roberts', 'np'], [',', ','], ['ballot', 'nn'], ['4', 'cd'], ['April', 'np'], ['the', 'at'], ['on', 'in'], ['printed', 'vbn'], ['be', 'be'], ['to', 'to'], ['1', 'cd'], ['March', 'np'], ['before', 'in'], [',', ','], ['majorities', 'nns'], ['two-thirds', 'nn'], ['by', 'in'], [',', ','], ['approval', 'nn'], ['legislative', 'jj'], ['final', 'jj'], ['receive', 'vb'], ['to', 'to'], ['have', 'hv'], ['would', 'md'], ['proposal', 'nn'], ['The', 'at']]
[['.', '.'], ['choice', 'nn'], ['intelligent', 'jj'], ['an', 'at'], ['make', 'vb'], ['to', 'to'], ['voters', 'nns'], ['the', 'at'], ['for', 'in'], ['proposals', 'nns'], ['tax', 'nn'], ['about', 'in'], ['information', 'nn'], ['enough', 'ap'], ['give', 'vb'], ["couldn't", 'md*'], ['ballot', 'nn'], ['the', 'at'], ['that', 'cs'], ['argued', 'vbn'], ['generally', 'rb'], ['Opponents', '``']]
[['.', '.'], ['absent', 'jj'], ['was', 'bedz'], ['who', 'wps'], [',', ','], ['Jones', 'np'], ['Bill', 'np'], ['Rep.', 'nn-tl'], ['except', 'in'], [',', ','], ['Roberts', 'np'], ['with', 'in'], ['voted', 'vbd'], ['members', 'nns'], ['Dallas', 'np'], ['All', 'abn']]
[['.', '.'], ['Thursday', 'nr'], ['cities', 'nns'], ['big', 'jj'], ["Texas'", 'np$'], ['of', 'in'], ['needs', 'nns'], ['water', 'nn'], ['alleged', 'vbn'], ['the', 'at'], ['to', 'in'], ['lost', 'vbd'], ['Paradise', 'nn-tl'], ['--', '--']]
[['.', '.'], ['people', 'nns'], ['250', 'cd'], ['of', 'in'], ['hamlet', 'nn'], ['County', 'nn-tl'], ['Wise', 'np'], ['a', 'at'], [',', ','], ['Paradise', 'nn-tl'], ['like', 'cs'], ['places', 'nns'], ['up', 'in'], ['cover', 'nn'], ['to', 'in'], ['Worth', 'np'], ['Fort', 'nn-tl'], ['and', 'cc'], ['Dallas', 'np'], ['like', 'cs'], ['cities', 'nns'], ['big', 'jj'], ['by', 'in'], ['effort', 'nn'], ['an', 'at'], ['was', 'bedz'], ['Representatives', 'nns-tl'], ['of', 'in-tl'], ['House', 'nn-tl'], ['Texas', 'np-tl'], ['the', 'at'], ['by', 'in'], ['passed', 'vbd'], ['bill', 'nn'], ['development', 'nn'], ['water', 'nn'], ['a', 'at'], ['that', 'cs'], ['insisted', 'vbd'], ['Weatherford', 'np'], ['of', 'in'], ['Cotten', 'vbd'], ['James', 'np'], ['Rep.', 'nn-tl']]
[['.', '.'], ['Dallas', 'np'], ['of', 'in'], ['Parkhouse', 'vbd'], ['George', 'np'], ['Sen.', 'nn-tl'], ['by', 'in'], ['sponsored', 'vbn'], ['being', 'beg'], ['is', 'bez'], ['proposal', 'nn'], ['similar', 'jj'], ['a', 'at'], ['where', 'wrb'], [',', ','], ['Senate', 'nn-tl'], ['the', 'at'], ['to', 'in'], ['it', 'ppo'], ['sending', 'vbg'], [',', ','], ['4', 'cd'], ['to', 'in'], ['114', 'cd-tl'], [',', ','], ['passed', 'vbd'], ['bill', 'nn'], ['the', 'at'], [',', ','], ['ended', 'vbd'], ['shouting', 'nn'], ['the', 'at'], ['When', 'wrb']]
[['.', '.'], ['Parkhouse', 'cd-tl'], ['Sen.', 'nn-tl'], ['and', 'cc'], ['Dallas', 'np'], ['against', 'in'], ['Cotten', 'nn'], ['by', 'in'], ['directed', 'vbn'], ['was', 'bedz'], ['fire', 'nn'], ['the', 'at'], ['of', 'in'], ['Most', 'ap']]
[['.', '.'], ['project', 'nn'], ['water', 'nn'], ['local', 'jj'], ['a', 'at'], ['to', 'in'], ['make', 'vb'], ['could', 'md'], ['state', 'nn'], ['the', 'at'], ['loan', 'nn'], ['maximum', 'jj'], ['the', 'at'], ['$15,000,000', 'nns'], ['to', 'in'], ['$5,000,000', 'nns'], ['from', 'in'], ['increase', 'vb'], ['would', 'md'], ['bill', 'nn'], ['The', 'at']]
[['.', '.'], ['Texas', 'np'], ['rural', 'jj'], ['for', 'in'], ['water', 'nn'], ['providing', 'vbg'], ['spent', 'vbn'], ['be', 'be'], ['better', 'rbr'], ['could', 'md'], ['felt', 'vbd'], ['Cotten', 'pps'], ['which', 'wdt'], ['money', 'nn'], ['get', 'vb'], ['cities', 'nns'], ['large', 'jj'], ['other', 'ap'], ['and', 'cc'], ['Dallas', 'np'], ['help', 'vb'], ['to', 'to'], ['Parkhouse', 'ppo'], ['by', 'in'], ['effort', 'nn'], ['veiled', 'vbn'], ['a', 'at'], ['as', 'cs'], ['this', 'dt'], ['construed', 'vbn'], ['Cotten', 'rb']]
[['.', '.'], ['attack', 'nn'], ["Cotten's", 'in'], ['sway', 'nn'], ['not', '*'], ['did', 'dod'], [',', ','], ['bill', 'nn'], ['pending', 'jj'], ['the', 'at'], ['by', 'in'], ['most', 'ap'], ['benefit', 'vb'], ['would', 'md'], ['places', 'nns'], ['populous', 'jj'], ['less', 'ql'], ['that', 'cs'], ['and', 'cc'], [',', ','], ['bonds', 'nns'], ['local', 'jj'], ['by', 'in'], ['program', 'nn'], ['water', 'nn'], ['its', 'pp$'], ['all', 'abn'], ['for', 'in'], ['paying', 'vbg'], ['is', 'bez'], ['Dallas', 'np'], ['that', 'cs'], ['legislators', 'nns'], ['other', 'ap'], ['by', 'in'], ['Statements', 'rb']]
[['.', '.'], ['Springs', 'nns-tl'], ['Sulphur', 'nn'], ['of', 'in'], ['Chapman', 'np'], ['Joe', 'np'], ['and', 'cc'], ['Newton', 'np'], ['of', 'in'], ['Collins', 'np'], ['F.', 'np'], ['Sam', 'np'], [',', ','], ['Mission', 'nn'], ['of', 'in'], ['Garza', 'vbd'], ['La', 'np'], ['De', 'np'], [')', ')'], ['Kika', 'cd'], ['(', '('], ['Eligio', 'cc'], [',', ','], ['Dumas', 'nn'], ['of', 'in'], ['Buchanan', 'np'], ['W.', 'np'], ['J.', 'np'], ['like', 'cs'], ['legislators', 'nns'], ['small-town', 'nn'], ['mostly', 'rb'], ['were', 'bed'], ['defenders', 'nns'], ["bill's", 'nn$'], ['The', 'at']]
[['.', '.'], ['Chapman', 'np'], ['said', 'vbd'], [',', ','], ["''", "''"], ['bill', 'nn'], ["boy's", 'nn$'], ['poor', 'jj'], ['a', 'at'], ['is', 'bez'], ['This', 'dt'], ['``', '``']]
[['.', '.'], ['bonds', 'nns'], ['vote', 'vb'], ['can', 'md'], ['Worth', 'np'], ['Fort', 'nn-tl'], ['and', 'cc'], ['Dallas', 'np'], ['``', '``']]
[['.', '.'], ["''", "''"], ['districts', 'nns'], ['peanut', 'nn'], ['little', 'jj'], ['the', 'at'], ['help', 'vb'], ['would', 'md'], ['This', 'dt']]
[['.', '.'], ["''", "''"], ['methods', 'nns'], ['educational', 'jj'], ['``', '``'], ['learning', 'vbg'], ['spent', 'vbd'], ['time', 'nn'], ['the', 'at'], ['reducing', 'vbg'], ['law', 'nn'], ['a', 'at'], ['Thursday', 'nr'], ['proposed', 'vbn'], [',', ','], ['Legislature', 'nn-tl'], ['the', 'at'], ['in', 'in'], ['serving', 'vbg'], ['now', 'rb'], [',', ','], ['teacher', 'nn'], ['Houston', 'np'], ['A', 'at'], ['--', '--']]
[['.', '.'], ['certificate', 'nn'], ['teaching', 'nn'], ['school', 'nn'], ['high', 'jj'], ['senior', 'jj'], ['or', 'cc'], ['junior', 'nn'], ['a', 'at'], ['obtain', 'vb'], ['to', 'to'], ['required', 'vbn'], ['courses', 'nns'], ["''", "''"], ['methods', 'nns'], ['teaching', 'nn'], ['``', '``'], ['so-called', 'jj'], ['the', 'at'], ['hours', 'nns'], ['semester', 'nn'], ['12', 'cd'], ['to', 'in'], ['24', 'cd'], ['from', 'in'], ['reduce', 'vb'], ['would', 'md'], [',', ','], ['schools', 'nns'], ['public', 'nn'], ['Houston', 'np'], ['the', 'at'], ['in', 'in'], ['history', 'nn'], ['teaches', 'vbz'], ['who', 'wps'], [',', ','], ['Grover', 'np'], ['C.', 'np'], ['Henry', 'np'], ['Rep.', 'nn-tl']]
[['.', '.'], ['hours', 'nns'], ['semester', 'nn'], ['30', 'cd'], ['is', 'bez'], ['college', 'nn'], ['in', 'in'], ['work', 'nn'], ["year's", 'nn$'], ['normal', 'jj'], ['A', 'at']]
[['.', '.'], ['teaching', 'vbg'], ['are', 'ber'], ['they', 'ppss'], ['subject', 'nn'], ['the', 'at'], ['in', 'in'], ['credit', 'nn'], ['hours', 'nns'], ['semester', 'nn'], ['24', 'cd'], ['least', 'ap'], ['at', 'in'], ['have', 'hv'], ['to', 'to'], ['teachers', 'nns'], ['high', 'jj'], ['junior-senior', 'at'], ['require', 'vb'], ['would', 'md'], ['also', 'rb'], ['Grover', '``']]
[['.', '.'], ['subjects', 'nns'], ['general', 'jj'], ['in', 'in'], ['be', 'be'], ['would', 'md'], ['requirement', 'nn'], ['college', 'nn'], ['4-year', 'jj'], ['the', 'at'], ['of', 'in'], ['remainder', 'nn'], ['The', 'at']]
[['.', '.'], ['Grover', 'ppo'], ['said', 'vbd'], [',', ','], ["''", "''"], ['schools', 'nns'], ['public', 'jj'], ['the', 'at'], ['in', 'in'], ['teach', 'vb'], ['to', 'to'], ['permitted', 'vbn'], ['not', '*'], ['is', 'bez'], [',', ','], ['courses', 'nns'], ['Education', 'nn'], ['taken', 'vbn'], ['not', '*'], ['has', 'hvz'], ['who', 'wps'], ['yet', 'cc'], [',', ','], ['English', 'np'], ['or', 'cc'], ['math', 'nn'], [',', ','], ['chemistry', 'nn'], [',', ','], ['physics', 'nn'], ['in', 'in'], ['degree', 'nn'], ["master's", 'nn$'], ['a', 'at'], ['with', 'in'], ['person', 'nn'], ['A', 'at'], ['``', '``']]
[['.', '.'], ['courses', 'nns'], ['Education', 'nn'], ['the', 'at'], ['have', 'hv'], ['to', 'to'], ['required', 'vbn'], ['not', '*'], ['are', 'ber'], ['Texas', 'np'], ['in', 'in'], ['teachers', 'nns'], ['College', 'nn-tl']]
[['.', '.'], ['proposal', 'nn'], ['the', 'at'], ['of', 'in'], ['co-signers', 'pn'], ['as', 'cs'], ['Grover', 'ppo'], ['joined', 'vbd'], ['immediately', 'rb'], ['representatives', 'nns'], ['150', 'cd'], ['the', 'at'], ['of', 'in'], ['Fifty-three', 'rb']]
[['.', '.'], ['president', 'nn'], ['new', 'jj'], ["school's", 'nn$'], ['the', 'at'], ['as', 'cs'], ['Kan.', 'np'], [',', ','], ['Hays', 'np'], ['of', 'in'], ['Clark', 'np'], ['Charles', 'np'], ['Clarence', 'np'], ['Dr.', 'nn-tl'], ['named', 'vbn'], ['has', 'hvz'], ['College', 'nn-tl'], ['Junior', 'jj-tl'], ['Paris', 'np'], ['of', 'in'], ['regents', 'nns'], ['of', 'in'], ['board', 'nn'], ['The', 'at'], ['--', '--']]
[['.', '.'], ['term', 'nn'], ['school', 'nn'], ['present', 'jj'], ['the', 'at'], ['of', 'in'], ['close', 'nn'], ['the', 'at'], ['at', 'in'], ['retire', 'vb'], ['will', 'md'], ['who', 'wps'], [',', ','], ['McLemore', 'np'], ['R.', 'np'], ['J.', 'np'], ['Dr.', 'nn-tl'], ['succeed', 'vb'], ['will', 'md'], ['Clark', 'np'], ['Dr.', 'nn-tl']]
[['.', '.'], ['Oklahoma', 'np'], ['of', 'in'], ['University', 'nn-tl'], ['the', 'at'], ['from', 'in'], ['degree', 'nn'], ['Education', 'nn'], ['of', 'in'], ['Doctor', 'nn-tl'], ['earned', 'vbn'], ['an', 'at'], ['holds', 'vbz'], ['Clark', 'np'], ['Dr.', 'nn-tl']]
[['.', '.'], ['Okla.', 'np'], [',', ','], ['Weatherford', 'np'], [',', ','], ['College', 'nn-tl'], ['State', 'nn-tl'], ['Southwestern', 'jj'], ['from', 'in'], ['degree', 'nn'], ['Science', 'nn'], ['of', 'in'], ['Bachelor', 'nn-tl'], ['a', 'at'], ['and', 'cc'], ['College', 'nn'], ['I', 'ppss'], ['&', 'cc'], ['A', 'np'], ['Texas', 'np'], ['from', 'in'], ['degree', 'nn'], ['Science', 'nn'], ['of', 'in'], ['Master', 'nn-tl'], ['a', 'at'], ['received', 'vbd'], ['also', 'rb'], ['He', 'pps']]
[['.', '.'], ['Technology', 'nn-tl'], ['of', 'in-tl'], ['Institute', 'nn-tl'], ['Massachusetts', 'np'], ['and', 'cc'], ['College', 'nn-tl'], ['State', 'nn-tl'], ['Island', 'nn-tl'], ['Rhode', 'np-tl'], ['at', 'in'], ['studied', 'vbn'], ['has', 'hvz'], ['Clark', 'np'], ['Dr.', 'nn-tl'], [',', ','], ['addition', 'nn'], ['In', 'in']]
[['.', '.'], ['letterman', '.'], ['football', 'nn'], ['a', 'at'], ['was', 'bedz'], ['and', 'cc'], ['team', 'nn'], ['basketball', 'nn'], ['his', 'pp$'], ['of', 'in'], ['captain', 'nn'], ['was', 'bedz'], ['Clark', 'np'], ['Dr.', 'nn-tl'], [',', ','], ['career', 'nn'], ['college', 'nn'], ['his', 'pp$'], ['During', 'in']]
[['.', '.'], ['College', 'nn-tl'], ['State', 'nn-tl'], [',', ','], ['Kan.', 'np'], [',', ','], ['Hays', 'np'], ['Fort', 'nn-tl'], ['at', 'in'], ['education', 'nn'], ['of', 'in'], ['professor', 'nn'], ['associate', 'jj'], ['an', 'at'], ['as', 'cs'], ['and', 'cc'], [',', ','], ['Oklahoma', 'np'], ['of', 'in'], ['University', 'nn-tl'], ['the', 'at'], ['at', 'in'], ['instructor', 'nn'], ['an', 'at'], ['as', 'cs'], [',', ','], ['School', 'nn-tl'], ['High', 'jj-tl'], [',', ','], ['Texas', 'np'], [',', ','], ['Raymondville', 'nn'], ['at', 'in'], ['director', 'nn'], ['athletic', 'jj'], ['and', 'cc'], ['teacher', 'nn'], ['as', 'cs'], [',', ','], ['schools', 'nns'], ['high', 'jj'], ['Oklahoma', 'np'], ['in', 'in'], ['principal', 'nn'], ['and', 'cc'], ['teacher', 'nn'], ['as', 'cs'], ['served', 'vbn'], ['has', 'hvz'], ['Clark', 'np'], ['Dr.', 'nn-tl']]
[['.', '.'], ['Army', 'nn-tl'], ['U.S.', 'np-tl'], ['the', 'at'], ['of', 'in'], ['Corps', 'nn-tl'], ['Signal', 'nn-tl'], ['the', 'at'], ['in', 'in'], ['was', 'bedz'], ['and', 'cc'], ['patrolman', 'nn'], ['border', 'nn'], ['a', 'at'], ['as', 'cs'], ['served', 'vbn'], ['has', 'hvz'], ['He', 'pps']]
[['.', '.'], ['Strickland', 'np'], ['O.', 'np'], ['Chester', 'np'], ['Supt.', 'nn-tl'], ['of', 'in'], ['recommendation', 'nn'], ['the', 'at'], ['upon', 'in'], ['session', 'nn'], ['1961-62', 'jj'], ['the', 'at'], ['for', 'in'], ['re-elected', 'vbn'], ['been', 'ben'], ['have', 'hv'], ['District', 'nn-tl'], ['School', 'nn-tl'], ['Independent', 'jj-tl'], ['Denton', 'np'], ['the', 'at'], ['in', 'in'], ['schools', 'nns'], ['13', 'cd'], ['the', 'at'], ['of', 'in'], ['Principals', 'cc'], ['--', '--']]
[['.', '.'], ['program', 'nn'], ['children', 'nns'], ['dependent', 'jj'], ['to', 'in'], ['aid', 'nn'], ['the', 'at'], ['on', 'in'], ['committee', 'nn'], ['citizens', 'nns'], ["''", "''"], ['ribbon', 'nn'], ['blue', 'jj'], ['``', '``'], ['a', 'at'], ['of', 'in'], ['report', 'nn'], ['a', 'at'], ['in', 'in'], ['yesterday', 'nr'], ['for', 'in'], ['called', 'vbn'], ['was', 'bedz'], ['employment', 'nn'], ['in', 'in'], ['discrimination', 'nn'], ['racial', 'jj'], ['against', 'in'], ['legislation', 'nn'], ['federal', 'jj'], ['and', 'cc'], ['State', 'nn-tl']]
[['.', '.'], ['load', 'nn'], ['case', 'nn'], ['ADC', 'at'], ['soaring', 'vbg'], ['the', 'at'], ['reduce', 'vb'], ['to', 'to'], ['designed', 'vbn'], ['recommendations', 'nns'], ['range', 'nn'], ['long', 'jj'], ['10', 'cd'], ['listed', 'vbn'], [',', ','], ['firm', 'nn'], ['consulting', 'vbg'], ['welfare', 'nn'], ['City', 'nn-tl'], ['York', 'np-tl'], ['New', 'jj-tl'], ['a', 'at'], ['by', 'in'], ['county', 'nn'], ['Cook', 'np'], ['in', 'in'], ['program', 'nn'], ['ADC', 'jj'], ['the', 'at'], ['of', 'in'], ['study', 'nn'], ['long', 'jj'], ['year', 'nn'], ['a', 'at'], ['culminating', 'vbg'], [',', ','], ['report', 'nn'], ['The', 'at']]
[['.', '.'], ["''", "''"], ['dependency', 'nn'], ['ADC', 'at'], ['and', 'cc'], [',', ','], ['desertion', 'nn'], [',', ','], ['breakdown', 'nn'], ['family', 'nn'], ['of', 'in'], ['causes', 'nns'], ['serious', 'jj'], ['most', 'ql'], ['the', 'at'], ['of', 'in'], ['one', 'cd'], ['``', '``'], ['employment', 'nn'], ['in', 'in'], ['discrimination', 'nn'], ['racial', 'jj'], ['called', 'vbd'], ['report', 'nn'], ['The', 'at']]
[['.', '.'], ['chairman', 'nn'], ['committee', 'nn'], [',', ','], ['Co.', 'nn-tl'], ['&', 'cc'], ['Scott', 'np'], ['Pirie', 'np'], ['Carson', 'np'], ['of', 'in'], ['president', 'nn'], [',', ','], ['Martin', 'np'], ['Virgil', 'np'], ['C.', 'np'], ['said', 'vbd'], [',', ','], ['dollars', 'nns'], ['million', 'cd'], ['4.4', 'rb'], ['is', 'bez'], ['county', 'nn'], ['the', 'at'], ['in', 'in'], ['recipients', 'nns'], ['100,000', 'cd'], ['than', 'in'], ['more', 'ap'], ['to', 'in'], ['ADC', 'nn'], ['of', 'in'], ['cost', 'nn'], ['monthly', 'jj'], ['The', 'at']]
[['.', '.'], ['said', 'vbd'], ['Martin', 'np'], [',', ','], ["''", "''"], ['subsistence', 'nn'], ['for', 'in'], ['ADC', 'nn'], ['upon', 'in'], ['depend', 'vb'], ['to', 'to'], ['people', 'nns'], ['these', 'dts'], ['forced', 'vbn'], ['have', 'hv'], ['which', 'wdt'], ['problems', 'nns'], ['the', 'at'], ['solve', 'vb'], ['must', 'md'], ['We', 'ppss'], ['``', '``']]
[['.', '.'], ['color', 'nn'], ['of', 'in'], ['because', 'cs'], ['employment', 'nn'], ['in', 'in'], ['discrimination', 'nn'], ['and', 'cc'], ['skills', 'nns'], ['limited', 'vbn'], ['Relatively', '``'], [':', ':'], ['problems', 'nns'], ['two', 'cd'], ['with', 'in'], ['effectively', 'rb'], ['deal', 'vb'], ['to', 'to'], ['able', 'jj'], ['is', 'bez'], ['community', 'nn'], ['the', 'at'], ['when', 'wrb'], [',', ','], ['reported', 'vbd'], ['Martin', 'np'], [',', ','], ['decrease', 'vb'], ['will', 'md'], ['cases', 'nns'], ['ADC', 'at'], ['of', 'in'], ['volume', 'nn'], ['The', 'at']]
[['.', '.'], ["''", "''"], ['ADC', 'ppo'], ['to', 'in'], ['leading', 'vbg'], ['breakups', 'in'], ['family', 'nn'], ['for', 'in'], ['causes', 'nns'], ['underlying', 'vbg'], ['principal', 'nn'], ['the', 'at'], ['of', 'in'], ['two', 'cd'], ['``', '``'], ['are', 'ber'], [',', ','], ['said', 'vbd'], ['he', 'pps'], [',', ','], ['These', 'dts']]
[[':', ':'], ['are', 'ber'], ['committee', 'nn'], ['the', 'at'], ['by', 'in'], ['made', 'vbn'], ['recommendations', 'nns'], ['Other', 'ap']]
[['.', '.'], ['unity', 'nn'], ['family', 'nn'], ['preserving', 'vbg'], ['of', 'in'], ['means', 'nn'], ['a', 'at'], ['as', 'cs'], [',', ','], ['parents', 'nns'], ['both', 'abx'], ['including', 'in'], [',', ','], ['relatives', 'nns'], ['any', 'dti'], ['with', 'in'], ['living', 'nn'], ['need', 'nn'], ['in', 'in'], ['children', 'nns'], ['all', 'abn'], ['to', 'in'], ['program', 'nn'], ['ADC', 'jj'], ['the', 'at'], ['of', 'in'], ['Extension', 'nn-tl']]
[['.', '.'], ['illegitimacy', 'nn'], ['and', 'cc'], ['dependency', 'nn'], ['of', 'in'], ['prevention', 'nn'], ['and', 'cc'], ['causes', 'nns'], ['the', 'at'], ['on', 'in'], ['possible', 'jj'], ['as', 'cs'], ['soon', 'rb'], ['as', 'cs'], ['projects', 'nns'], ['Research', 'nn']]
[['.', '.'], ['yesterday', 'nr'], ['court', 'nn'], ['Criminal', 'at'], ['in', 'in'], ['told', 'vbn'], ['was', 'bedz'], ['Parsons', 'np'], ['B.', 'np'], ['James', 'np'], ['Judge', 'nn-tl'], [',', ','], ['arrest', 'nn'], ['their', 'pp$'], ['of', 'in'], ['time', 'nn'], ['the', 'at'], ['at', 'in'], ['guilt', 'nn'], ['their', 'pp$'], ['indicating', 'vbg'], ['statements', 'nns'], ['made', 'vbn'], ['trial', 'nn'], ['burglary', 'nn'], ['police', 'nn'], ['Summerdale', 'np'], ['the', 'at'], ['in', 'in'], ['defendants', 'nns'], ['Several', 'ap']]
[['.', '.'], ['trial', 'nn'], ['on', 'in'], ['now', 'rb'], ['policemen', 'nns'], ['former', 'ap'], ['eight', 'cd'], ['the', 'at'], ['representing', 'vbg'], ['attorneys', 'nns'], ['six', 'cd'], ['the', 'at'], ['between', 'in'], ['quarrel', 'nn'], ['a', 'at'], ['to', 'in'], ['prelude', 'nn'], ['the', 'at'], ['as', 'cs'], ['viewed', 'vbn'], ['was', 'bedz'], ['and', 'cc'], ['observers', 'nns'], ['startled', 'vbn'], [',', ','], ['counsel', 'nn'], ['defense', 'nn'], ['chief', 'nn'], [',', ','], ['Bellows', 'np-tl'], ['Charles', 'np-tl'], ['by', 'in'], ['disclosure', 'nn'], ['The', 'at']]
[['.', '.'], ['trial', 'nn'], ['separate', 'jj'], ['a', 'at'], [',', ','], ['30', 'cd'], [',', ','], ['Clements', 'np'], ['Alan', 'np'], [',', ','], ['client', 'nn'], ['his', 'pp$'], ['grant', 'vb'], ['to', 'to'], ['Parsons', 'np'], ['Judge', 'nn-tl'], ['asked', 'vbd'], ['he', 'pps'], ['when', 'wrb'], ['disclosure', 'nn'], ['the', 'at'], ['made', 'vbd'], ['Bellows', 'np-tl']]
[['.', '.'], ['courtroom', 'nn'], ['the', 'at'], ['of', 'in'], ['out', 'rp'], ['was', 'bedz'], ['jury', 'nn'], ['all-woman', 'jj'], ['the', 'at'], ['while', 'cs'], ['request', 'nn'], ['the', 'at'], ['made', 'vbd'], ['Bellows', 'np-tl']]
[['.', '.'], ['court', 'nn'], ['the', 'at'], ['told', 'vbd'], ['Bellows', 'np-tl'], [',', ','], ["''", "''"], ['client', 'nn'], ['my', 'pp$'], ['to', 'in'], ['prejudicial', 'jj'], ['highly', 'ql'], ['be', 'be'], ['may', 'md'], ['statements', 'nns'], ['The', 'at'], ['``', '``']]
[['.', '.'], ['property', 'nn'], ['stolen', 'vbn'], ['receiving', 'vbg'], ['were', 'bed'], ['they', 'ppss'], ['knew', 'vbd'], ['they', 'ppss'], ['indicated', 'vbd'], ['strongly', 'rb'], ['defendants', 'nns'], ['the', 'at'], ['of', 'in'], ['Some', 'dti'], ['``', '``']]
[['.', '.'], ["''", "''"], ['others', 'nns'], ['and', 'cc'], ['themselves', 'ppls'], ['involving', 'vbg'], ['statements', 'nns'], ['made', 'vbn'], ['defendants', 'nns'], ['the', 'at'], ['of', 'in'], ['some', 'dti'], ['when', 'wrb'], ['trial', 'nn'], ['fair', 'jj'], ['a', 'at'], ['get', 'vb'], ['to', 'to'], ['impossible', 'jj'], ['is', 'bez'], ['It', 'pps']]
[['?', '.'], ['?', '.'], ["''", "''"], ['this', 'dt'], ['admitting', 'vbg'], ['statements', 'nns'], ['made', 'vbn'], ['defendants', 'nns'], ['the', 'at'], ['of', 'in'], ['some', 'dti'], ['mean', 'vb'], ['You', 'ppss'], ['``', '``'], [',', ','], ['inquired', 'vbd'], ['and', 'cc'], ['bench', 'nn'], ['the', 'at'], ['over', 'in'], ['leaned', 'vbd'], ['Parsons', 'np'], ['Judge', 'nn-tl']]
[['.', '.'], ['Bellows', 'np-tl'], ['replied', 'vbd'], [',', ','], ["''", "''"], ['honor', 'nn'], ['your', 'pp$'], [',', ','], ['Yes', 'rb'], ['``', '``']]
[['.', '.'], ['case', 'nn'], ['this', 'dt'], ['in', 'in'], ['fight', 'nn'], ['free-for-all', 'jj'], ['a', 'at'], ['be', 'be'], ['will', 'md'], ['there', 'ex'], ['that', 'cs'], ['is', 'bez'], [',', ','], ['true', 'jj'], ['if', 'cs'], [',', ','], ['to', 'in'], ['amounts', 'vbz'], ['this', 'dt'], ['What', 'wdt'], ['``', '``']]
[['.', '.'], ["''", "''"], ['defendants', 'nns'], ['the', 'at'], ['among', 'in'], ['conflict', 'nn'], ['a', 'at'], ['is', 'bez'], ['There', 'ex']]
[['.', '.'], ['radio', 'nn'], ['and', 'cc'], ['television', 'nn'], ['nationwide', 'jj'], ['over', 'in'], ['people', 'nns'], ['American', 'jj'], ['the', 'at'], ['to', 'in'], ['night', 'nn'], ['tomorrow', 'nr'], ['deliver', 'vb'], ['will', 'md'], ['he', 'pps'], ['address', 'nn'], ['crisis', 'nn'], ['Berlin', 'np'], ['the', 'at'], ['on', 'in'], ['working', 'vbg'], ['to', 'in'], ['attention', 'nn'], ['and', 'cc'], ['time', 'nn'], ['his', 'pp$'], ['all', 'abn'], ['devote', 'vb'], ['to', 'to'], ['business', 'nn'], ['House', 'nn-tl'], ['White', 'jj-tl'], ['other', 'ap'], ['aside', 'rb'], ['pushed', 'vbd'], ['today', 'nr'], ['Kennedy', 'np'], ['President', 'nn-tl'], ['--', '--']]
[['.', '.'], ['telephone', 'nn'], ['by', 'in'], ['talked', 'vbd'], ['he', 'pps'], ['whom', 'wpo'], ['with', 'in'], ['Washington', 'np'], ['in', 'in'], ['aids', 'nns'], ['House', 'nn-tl'], ['White', 'jj-tl'], ['of', 'in'], ['help', 'nn'], ['the', 'at'], ['with', 'in'], ['address', 'nn'], ['the', 'at'], ['of', 'in'], ['portions', 'nns'], ['of', 'in'], ['drafts', 'nns'], ['first', 'od'], ['the', 'at'], ['writing', 'vbg'], ['Cod', 'nn-tl'], ['Cape', 'nn-tl'], ['on', 'in'], ['home', 'nn'], ['summer', 'nn'], ['his', 'pp$'], ['at', 'in'], ['week-end', 'nn'], ['the', 'at'], ['of', 'in'], ['much', 'rb'], ['spent', 'vbd'], ['President', 'nn-tl'], ['The', 'at']]
[['.', '.'], ['completion', 'nn'], ['toward', 'in'], ["''", "''"], ['go', 'vb'], ['to', 'to'], ['way', 'nn'], ['a', 'at'], ['quite', 'rb'], ['``', '``'], ['had', 'hvd'], ['still', 'rb'], ['text', 'nn'], ['address', 'nn'], ['the', 'at'], ['said', 'vbd'], ['spokesman', 'nn'], ['House', 'nn-tl'], ['White', 'jj-tl'], ['a', 'at'], [',', ','], ['Mass.', 'np'], [',', ','], ['Port', 'nn-tl'], ['Hyannis', 'np'], ['from', 'in'], ['midmorning', 'nn'], ['in', 'in'], ['Washington', 'np'], ['to', 'in'], ['returned', 'vbd'], ['Executive', 'nn-tl'], ['Chief', 'nn-tl'], ['the', 'at'], ['after', 'in'], ['Shortly', 'rb']]
[['.', '.'], ["''", "''"], ['drafts', 'nns'], ['more', 'ap'], ['several', 'ap'], ['thru', 'in'], ['go', 'vb'], ['to', 'to'], ['got', 'vbn'], ["it's", 'pps+bez'], ['say', 'vb'], ['would', 'md'], ['I', 'ppss'], ['``', '``'], [',', ','], ['replied', 'vbd'], [',', ','], ['secretary', 'nn'], ['press', 'nn'], ['House', 'nn-tl'], ['White', 'jj-tl'], [',', ','], ['Salinger', 'np'], ['Pierre', 'np'], [',', ','], ['elaborate', 'jj'], ['to', 'in'], ['Asked', 'vbn']]
[['.', '.'], ['city', 'nn'], ['the', 'at'], ['for', 'in'], ['proposals', 'nns'], ['and', 'cc'], ['demands', 'nns'], ["Russia's", 'np$'], ['by', 'in'], ['precipitated', 'vbn'], ['crisis', 'nn'], ['Berlin', 'np'], ['latest', 'jjt'], ['the', 'at'], ['meet', 'vb'], ['to', 'to'], ['plans', 'nns'], ['administration', 'nn'], ['on', 'in'], ['decisions', 'nns'], ['minute', 'nn'], ['last', 'ap'], ['than', 'in'], ['rather', 'rb'], [',', ','], ['wording', 'nn'], ['and', 'cc'], ['composition', 'nn'], ['involved', 'vbn'], ['address', 'nn'], ['the', 'at'], ['on', 'in'], ['doing', 'vbg'], ['were', 'bed'], ['staff', 'nn'], ['his', 'pp$'], ['of', 'in'], ['members', 'nns'], ['and', 'cc'], [',', ','], ['advisers', 'nns'], [',', ','], ['Kennedy', 'np'], ['President', 'nn-tl'], ['work', 'nn'], ['the', 'at'], ['said', 'vbd'], ['Salinger', 'np']]
[['.', '.'], ["''", "''"], ['means', 'nn'], ['illegal', 'jj'], ['fundamentally', 'rb'], ['and', 'cc'], ['unfair', 'jj'], ['by', 'in'], ['``', '``'], ['evidence', 'nn'], ['obtained', 'vbn'], ['prosecution', 'nn'], ['the', 'at'], ['that', 'cs'], ['charged', 'vbd'], ['who', 'wps'], [',', ','], ['Karns', 'np'], ['M.', 'np'], ['John', 'np'], ['Judge', 'nn-tl'], ['Acting', 'vbg'], ['by', 'in'], ['yesterday', 'nr'], ['dismissed', 'vbn'], ['were', 'bed'], ['election', 'nn'], ['8', 'cd'], ['Nov.', 'np'], ['the', 'at'], ['of', 'in'], ['investigation', 'nn'], ['the', 'at'], ['in', 'in'], ['cases', 'nns'], ['10', 'cd'], ['last', 'ap'], ['The', 'at']]
[['.', '.'], ['persons', 'nns'], ['50', 'cd'], ['the', 'at'], ['of', 'in'], ["''", "''"], ['innocence', 'nn'], ['or', 'cc'], ['guilt', 'nn'], ['the', 'at'], ['than', 'in'], ['significance', 'nn'], ['greater', 'jjr'], ['even', 'ql'], ['of', 'in'], ['``', '``'], ['matter', 'nn'], ['a', 'at'], ['involved', 'vbn'], ['cases', 'nns'], ['the', 'at'], ['that', 'cs'], ['said', 'vbd'], ['Karns', 'pps']]
[['.', '.'], ["''", "''"], ['citizens', 'nns'], ['of', 'in'], ['rights', 'nns'], ['legal', 'jj'], ['the', 'at'], ['of', 'in'], ['violation', 'nn'], ['in', 'in'], ['``', '``'], ['obtained', 'vbn'], ['was', 'bedz'], ['evidence', 'nn'], ['said', 'vbd'], ['He', 'pps']]
[['.', '.'], ['cases', 'nns'], ['10', 'cd'], ['the', 'at'], ['of', 'in'], ['eight', 'cd'], ['to', 'in'], ['pertained', ','], ['ruling', 'nn'], ["Karns'", 'at']]
[['.', '.'], ["''", "''"], ['case', 'nn'], ['a', 'at'], ['make', 'vb'], ['to', 'to'], ['unable', 'jj'], ['``', '``'], ['been', 'ben'], ['had', 'hvd'], ['state', 'nn'], ['the', 'at'], ['that', 'cs'], ['ruled', 'vbd'], ['he', 'pps'], ['cases', 'nns'], ['other', 'ap'], ['two', 'cd'], ['the', 'at'], ['In', 'in']]
[['.', '.'], ['prosecutor', 'nn'], ['special', 'jj'], [',', ','], ['Wexler', 'np'], ['J.', 'np'], ['Morris', 'np'], ['by', 'in'], ['precincts', 'nns'], ['133', 'cd'], ['in', 'in'], ['persons', 'nns'], ['677', 'cd-tl'], ['against', 'in'], ['brought', 'vbn'], ['been', 'ben'], ['had', 'hvd'], ['originally', 'rb'], ['proceedings', 'nns'], ['Contempt', 'at']]
[['.', '.'], ['jury', 'nn'], ['grand', 'jj'], ['the', 'at'], ['before', 'in'], ['them', 'ppo'], ['take', 'vb'], ['not', '*'], ['did', 'dod'], ['but', 'cc'], [',', ','], ['building', 'nn'], ['courts', 'nns'], ['Criminal', 'jj'], ['the', 'at'], ['in', 'in'], ['individuals', 'nns'], ['the', 'at'], ['questioned', 'vbd'], [',', ','], ['investigation', 'nn'], ['election', 'nn'], ['the', 'at'], ['in', 'in'], ['involved', 'vbn'], ['persons', 'nns'], ['200', 'cd'], ['about', 'in'], ['to', 'in'], ['subpenas', ','], ['jury', 'nn'], ['grand', 'jj'], ['issued', 'vbd'], ['he', 'pps'], ['that', 'cs'], ['hearings', 'nns'], ['court', 'nn'], ['earlier', 'jjr'], ['in', 'in'], ['admitted', 'vbd'], ['Wexler', 'pps']]
[['.', '.'], ['intimidation', 'nn'], ['constituted', 'vbd'], ['procedure', 'nn'], ['this', 'dt'], ['argued', 'vbd'], [',', ','], ['ward', 'nn'], ['23d', 'od'], ['the', 'at'], ['of', 'in'], ['precinct', 'nn'], ['58th', 'jj'], ['the', 'at'], ['in', 'in'], ['judges', 'nns'], ['election', 'nn'], ['for', 'in'], ['attorney', 'nn'], [',', ','], ['Goldberg', 'np'], ['Mayer', 'np']]
[['.', '.'], ['questioning', 'nn'], ['in', 'in'], ['used', 'vbn'], ['was', 'bedz'], ['coercion', 'nn'], ['that', 'cs'], ['repeatedly', 'rb'], ['denied', 'vbn'], ['has', 'hvz'], ['Wexler', 'pps']]
[['.', '.'], ["''", "''"], ['room', 'nn'], ['jury', 'nn'], ['grand', 'jj'], ['the', 'at'], ['of', 'in'], ['outside', 'nn'], ['and', 'cc'], ['privately', 'rb'], ['``', '``'], ['statements', 'nns'], ['take', 'vb'], ['to', 'to'], ['Wexler', 'ppo'], ['for', 'in'], ["''", "''"], ['act', 'vb'], ['wrongful', 'ppss'], ['``', '``'], ['a', 'at'], ['was', 'bedz'], ['it', 'pps'], ['said', 'vbd'], ['Karns', 'pps']]
[['.', '.'], ['processes', 'nns'], ['court', 'nn'], ['Criminal', 'jj'], ['the', 'at'], ['of', 'in'], ["''", "''"], ['misuse', 'nn'], ['serious', 'jj'], ['very', 'ql'], ['``', '``'], ['a', 'at'], ['constituted', 'vbd'], ['this', 'dt'], ['said', 'vbd'], ['He', 'pps']]
[['.', '.'], ['court', 'nn'], ['County', 'nn-tl'], ['Cook', 'np'], ['in', 'in'], ['sitting', 'vbg'], ['Louis', 'np'], ['St.', 'nn-tl'], ['East', 'jj-tl'], ['in', 'in'], ['judge', 'nn'], ['City', 'nn'], ['a', 'at'], ['is', 'bez'], ['who', 'wps'], [',', ','], ['Karns', 'ppo'], ['said', 'vbd'], [',', ','], ["''", "''"], ['court', 'nn'], ['this', 'dt'], ['of', 'in'], ['function', 'nn'], ['the', 'at'], ['not', '*'], ['is', 'bez'], ['court', 'nn'], ['that', 'dt'], ['of', 'in'], ['authority', 'nn'], ['the', 'at'], ['of', 'in'], ['vindication', 'nn'], ['altho', 'cs'], [',', ','], ['county', 'nn'], ['Cook', 'np'], ['of', 'in'], ['court', 'nn'], ['Criminal', 'jj'], ['the', 'at'], ['of', 'in'], ['contempt', 'nn'], ['a', 'at'], ['constituted', 'vbn'], ['have', 'hv'], ['may', 'md'], ['process', 'nn'], ['the', 'at'], ['of', 'in'], ['abuse', 'nn'], ['the', 'at'], [',', ','], ['Actually', 'rb'], ['``', '``']]
[['.', '.'], ['persons', 'nns'], ['35', 'cd'], ['involving', 'in'], ['cases', 'nns'], ['seven', 'cd'], ['hear', 'vb'], ['to', 'to'], ['week', 'nn'], ['this', 'dt'], ['scheduled', 'vbn'], ['been', 'ben'], ['had', 'hvd'], ['Karns', 'pps']]
[['.', '.'], ['another', 'dt'], ['to', 'in'], ['given', 'vbn'], ['and', 'cc'], ['candidate', 'nn'], ['one', 'cd'], ['from', 'in'], ['taken', 'vbn'], ['be', 'be'], ['would', 'md'], ['votes', 'nns'], ['which', 'wdt'], ['in', 'in'], [',', ','], ['vote', 'nn'], ['the', 'at'], ['of', 'in'], ['miscount', ','], ["''", "''"], ['complementary', 'jj'], ['``', '``'], ['with', 'in'], ['cases', 'nns'], ['these', 'dts'], ['in', 'in'], ['judges', 'nns'], ['precinct', 'nn'], ['the', 'at'], ['charged', 'vbn'], ['had', 'hvd'], ['Wexler', 'pps']]
[['.', '.'], ['ward', 'nn'], ['23d', 'od'], ['the', 'at'], ['of', 'in'], ['precinct', 'nn'], ['9th', 'od'], ['the', 'at'], ['and', 'cc'], [',', ','], ['ward', 'nn'], ['4th', 'od'], ['the', 'at'], ['of', 'in'], ['precinct', 'nn'], ['18th', 'od'], ['the', 'at'], [',', ','], ['ward', 'nn'], ['29th', 'od'], ['the', 'at'], ['of', 'in'], ['precincts', 'nns'], ['28th', 'od'], ['and', 'cc'], ['21st', 'od'], ['the', 'at'], [',', ','], ['ward', 'nn'], ['31st', 'od'], ['the', 'at'], ['of', 'in'], ['precincts', 'nns'], ['42d', 'jj'], ['and', 'cc'], [',', ','], ['24th', 'od'], [',', ','], ['33d', 'nn'], ['the', 'at'], ['in', 'in'], ['judges', 'nns'], ['involved', 'vbn'], ['cases', 'nns'], ['The', 'at']]
[['.', '.'], ['Karns', 'ppo'], ['by', 'in'], ['advisement', 'nn'], ['under', 'in'], ['taken', 'vbn'], ['and', 'cc'], ['previously', 'rb'], ['heard', 'vbn'], ['been', 'ben'], ['had', 'hvd'], ['ward', 'nn'], ['23d', 'od'], ['the', 'at'], ['of', 'in'], ['precinct', 'nn'], ['58th', 'jj'], ['the', 'at'], ['in', 'in'], ['judges', 'nns'], ['the', 'at'], ['of', 'in'], ['case', 'nn'], ['The', 'at']]
[['.', '.'], ['advisement', 'ppo'], ['under', 'in'], ['were', 'bed'], ['also', 'rb'], ['cases', 'nns'], ['other', 'ap'], ['Two', 'cd']]
[['.', '.'], ['them', 'ppo'], ['dismiss', 'vb'], ['would', 'md'], ['he', 'pps'], [',', ','], ['subpenaed', 'vbn'], ['been', 'ben'], ['had', 'hvd'], ['who', 'wps'], ['persons', 'nns'], ['involved', 'vbn'], ['also', 'rb'], ['trial', 'nn'], ['for', 'in'], ['scheduled', 'vbn'], ['cases', 'nns'], ['seven', 'cd'], ['the', 'at'], ['if', 'cs'], ['that', 'cs'], ['Wexler', 'ppo'], ['told', 'vbd'], ['Karns', 'pps'], [',', ','], ['case', 'nn'], ['ward', 'nn'], ['23d', 'od'], ['the', 'at'], ['discharging', 'vbg'], ['statement', 'nn'], ['his', 'pp$'], ['reading', 'vbg'], ['After', 'in']]
[['.', '.'], ['programs', 'nns'], ['retirement', 'nn'], ['railroad', 'nn'], ['or', 'cc'], ['security', 'nn'], ['social', 'jj'], ['by', 'in'], ['covered', 'vbn'], ['are', 'ber'], ['who', 'wps'], ['65', 'cd'], ['over', 'in'], ['Americans', 'nps'], ['million', 'cd'], ['14.2', 'at'], ['of', 'in'], ['bills', 'nns'], ['medical', 'jj'], ['other', 'ap'], ['some', 'dti'], ['and', 'cc'], ['hospital', 'nn'], ['the', 'at'], ['pay', 'vb'], ['to', 'to'], ['raised', 'vbn'], ['be', 'be'], ['would', 'md'], ['workers', 'nns'], ['American', 'jj'], ['million', 'cd'], ['70', 'cd'], ['on', 'in'], ['taxes', 'nns'], ['security', 'nn'], ['social', 'jj'], ['whereby', 'wrb'], ['program', 'nn'], ['care', 'nn'], ['medical', 'jj'], ['new', 'jj'], ['mammoth', 'jj'], ['a', 'at'], ['proposed', 'vbd'], ['today', 'nr'], ['Kennedy', 'np'], ['President', 'nn-tl'], ['--', '--']]
[['.', '.'], ['research', 'nn'], ['medical', 'jj'], ['general', 'jj'], ['and', 'cc'], ['care', 'nn'], ['health', 'nn'], ['child', 'nn'], ['expand', 'vb'], ['and', 'cc'], [',', ','], ['schools', 'nns'], ['dental', 'jj'], ['new', 'jj'], ['20', 'cd'], ['and', 'cc'], ['medical', 'jj'], ['new', 'jj'], ['20', 'cd'], ['build', 'vb'], [',', ','], ['scholarships', 'nns'], ['dental', 'jj'], ['and', 'cc'], ['medical', 'jj'], ['finance', 'vb'], ['to', 'to'], ['grants', 'nns'], ['federal', 'jj'], ['large', 'jj'], ['for', 'in'], ['requests', 'nns'], ['plan', 'nn'], ['care', 'nn'], ['aged', 'vbn'], ['his', 'pp$'], ['with', 'in'], ['in', 'in'], ['tied', 'vbn'], [',', ','], ['Congress', 'np'], ['to', 'in'], ['message', 'nn'], ['special', 'jj'], ['a', 'at'], ['in', 'in'], [',', ','], ['President', 'nn-tl'], ['The', 'at']]
[['.', '.'], ['hill', 'nn'], ['Capitol', 'nn-tl'], ['on', 'in'], ['fight', 'nn'], ['a', 'at'], [',', ','], ['senator', 'nn'], ['a', 'at'], ['as', 'cs'], ['year', 'nn'], ['last', 'ap'], ['sponsored', 'vbd'], ['President', 'nn-tl'], ['the', 'at'], ['one', 'cd'], ['to', 'in'], ['similar', 'jj'], [',', ','], ['plan', 'nn'], ['care', 'nn'], ['aged', 'vbn'], ['The', 'at']]
[['.', '.'], ['year', 'nn'], ['last', 'ap'], ['Congress', 'np'], ['in', 'in'], ['defeated', 'vbn'], ['was', 'bedz'], ['It', 'pps']]
[['.', '.'], ['taxes', 'nns'], ['such', 'jj'], ['paying', 'vbg'], ['now', 'rb'], ['workers', 'nns'], ['the', 'at'], ['of', 'in'], ['each', 'dt'], ['for', 'in'], ['year', 'nn'], ['a', 'at'], ['$37', 'nns'], ['as', 'cs'], ['much', 'rb'], ['as', 'ql'], ['by', 'in'], ['tax', 'nn'], ['payroll', 'nn'], ['security', 'nn'], ['social', 'jj'], ['the', 'at'], ['boosting', 'vbg'], ['by', 'in'], ['financed', 'vbn'], ['be', 'be'], ['would', 'md'], ['It', 'pps']]
[['.', '.'], ['year', 'nn'], ['per', 'in'], ['pay', 'nn'], ['of', 'in'], ['$4,800', 'nn'], ['first', 'od'], ['the', 'at'], ['on', 'in'], ['--', '--'], ['employer', 'nn'], ['and', 'cc'], ['worker', 'nn'], ['each', 'dt'], ['on', 'in'], ['cent', 'nn'], ['per', 'in'], ['3', 'cd'], ['--', '--'], ['cent', 'nn'], ['per', 'in'], ['6', 'cd'], ['now', 'rb'], ['is', 'bez'], ['tax', 'nn'], ['payroll', 'nn'], ['security', 'nn'], ['social', 'jj'], ['The', 'at']]
[['.', '.'], ['each', 'dt'], ['cent', 'nn'], ['per', 'in'], ['3.25', 'cc'], ['--', '--'], ['cent', 'nn'], ['per', 'in'], ['6.5', 'nn'], ['to', 'in'], ['tax', 'nn'], ['payroll', 'nn'], ['the', 'at'], ['and', 'cc'], ['year', 'nn'], ['a', 'at'], ['$5,000', 'nns'], ['to', 'in'], ['base', 'nn'], ['the', 'at'], ['boost', 'vb'], ['would', 'md'], ['alone', 'rb'], ['plan', 'nn'], ['Kennedy', 'np'], ['The', 'at']]
[['.', '.'], ['system', 'nn'], ['retirement', 'nn'], ['railroad', 'nn'], ['the', 'at'], ['under', 'in'], ['those', 'dts'], ['on', 'in'], ['imposed', 'vbn'], ['be', 'be'], ['would', 'md'], ['boosts', ','], ['tax', 'nn'], ['payroll', 'nn'], ['Similar', 'jj']]
[['.', '.'], ['costs', 'nns'], ['security', 'nn'], ['social', 'jj'], ['other', 'ap'], ['for', 'in'], ['pay', 'nn'], ['to', 'in'], ['date', 'nn'], ['that', 'dt'], ['on', 'in'], ['cent', 'nn'], ['per', 'in'], ['1', 'cd'], ['by', 'in'], ['up', 'rp'], ['go', 'vb'], ['to', 'to'], ['scheduled', 'vbn'], ['already', 'rb'], ['is', 'bez'], ['levy', 'nn'], ['the', 'at'], ['because', 'cs'], [',', ','], ['approved', 'vbn'], ['is', 'bez'], ['plan', 'nn'], ['the', 'at'], ['if', 'cs'], [',', ','], ['1963', 'cd'], [',', ','], ['1', 'cd'], ['Jan.', 'np'], ['starting', 'vbg'], ['cent', 'nn'], ['per', 'in'], ['7.5', 'cd'], ['to', 'in'], ['rise', 'vb'], ['actually', 'rb'], ['would', 'md'], ['tax', 'nn'], ['payroll', 'nn'], ['The', 'at']]
[['.', '.'], ['1963', 'cd'], [',', ','], ['year', 'nn'], ['first', 'od'], ['the', 'at'], ['in', 'in'], ['more', 'ap'], ['or', 'cc'], ['billion', 'cd'], ['1', 'cd'], ['run', 'vb'], ['would', 'md'], ['out', 'rp'], ['paid', 'vbd'], ['benefits', 'nns'], ['medical', 'jj'], ['that', 'cs'], ['and', 'cc'], ['dollars', 'nns'], ['billion', 'cd'], ['1.5', 'cd'], ['to', 'in'], ['amount', 'vb'], ['would', 'md'], ['plan', 'nn'], ['medical', 'jj'], ['the', 'at'], ['for', 'in'], ['boost', 'nn'], ['tax', 'nn'], ['annual', 'jj'], ['the', 'at'], ['estimated', 'vbn'], ['Officials', 'nns']]
[['.', '.'], ['years', 'nns'], ['later', 'jjr'], ['in', 'in'], ['higher', 'jjr'], ['go', 'vb'], ['would', 'md'], ['figures', 'nns'], ['Both', 'abx']]
[['.', '.'], ['years', 'nns'], ['10', 'cd'], ['next', 'ap'], ['the', 'at'], ['over', 'in'], ['dollars', 'nns'], ['billion', 'cd'], ['1', 'cd'], ['to', 'in'], ['million', 'cd'], ['750', 'cd'], ['of', 'in'], ['grants', 'nns'], ['federal', 'jj'], ['entail', 'vb'], ['would', 'md'], ['plan', 'nn'], ['health', 'nn'], ['Kennedy', 'np'], ['the', 'at'], ['of', 'in'], ['parts', 'nns'], ['Other', 'ap']]
[['.', '.'], ['taxes', 'nns'], [',', ','], ['payroll', 'nn'], ['not', '*'], [',', ','], ['general', 'jj'], ['of', 'in'], ['out', 'rp'], ['for', 'in'], ['paid', 'vbn'], ['be', 'be'], ['would', 'md'], ['These', 'dts']]
[['1', 'cd-hl'], [':', ':'], ['systems', 'nns'], ['retirement', 'nn'], ['railroad', 'nn'], ['and', 'cc'], ['security', 'nn'], ['social', 'jj'], ['the', 'at'], ['under', 'in'], ['are', 'ber'], ['who', 'wps'], ['65', 'cd'], ['over', 'in'], ['persons', 'nns'], ['for', 'in'], ['benefits', 'nns'], ['these', 'dts'], ['carries', 'vbz'], ['plan', 'nn'], ['care', 'nn'], ['aged', 'vbn'], ['The', 'at']]
[['.', '.'], ['days', 'nns'], ['nine', 'cd'], ['first', 'od'], ['the', 'at'], ['for', 'in'], ['cost', 'nn'], ['the', 'at'], ['of', 'in'], ['day', 'nn'], ['a', 'at'], ['$10', 'nns'], ['pay', 'vb'], ['would', 'md'], ['patient', 'nn'], ['the', 'at'], ['that', 'cs'], ['except', 'rb'], [',', ','], ['illness', 'nn'], ['each', 'dt'], ['for', 'in'], ['days', 'nns'], ['90', 'cd'], ['to', 'in'], ['up', 'rp'], ['stays', 'nns'], ['for', 'in'], ['bills', 'nns'], ['hospital', 'nn'], ['of', 'in'], ['payment', 'nn'], ['Full', 'jj']]
[['.', '.'], ['hospital', 'nn'], ['a', 'at'], ['from', 'in'], ['discharge', 'nn'], ['following', 'in'], ['days', 'nns'], ['180', 'cd'], ['to', 'in'], ['up', 'rp'], ['for', 'in'], ['bills', 'nns'], ['home', 'nn'], ['nursing', 'vbg'], ['of', 'in'], ['payment', 'nn'], ['Full', 'jj']]
[['.', '.'], ['credit', 'nn'], ['hospital-care', 'jj'], ['the', 'at'], ['of', 'in'], ['part', 'nn'], ['only', 'ap'], ['or', 'cc'], ['none', 'pn'], ['use', 'vb'], ['who', 'wps'], ['those', 'dts'], ['for', 'in'], ['care', 'nn'], ['such', 'jj'], ['of', 'in'], ['more', 'ap'], ['allowing', 'vbg'], ["''", "''"], ['formula', 'nn'], ['unit', 'nn'], ['``', '``'], ['a', 'at'], ['under', 'in'], ['care', 'nn'], ['home', 'nn'], ['nursing', 'vbg'], ['paid-for', 'in'], ['days', 'nns'], ['300', 'cd'], ['to', 'in'], ['up', 'rp'], ['receive', 'vb'], ['could', 'md'], ['patient', 'nn'], ['A', 'at']]
[['.', '.'], ['patient', 'nn'], ['a', 'at'], ['$20', 'nns'], ['of', 'in'], ['excess', 'nn'], ['in', 'in'], ['costs', 'nns'], ['all', 'abn'], ['for', 'in'], ['service', 'nn'], ['diagnostic', 'jj'], ['clinic', 'nn'], ['outpatient', 'in'], ['Hospital', 'nn-tl']]
[['.', '.'], ['illness', 'nn'], ['an', 'at'], ['days', 'nns'], ['240', 'cd'], ['to', 'in'], ['up', 'rp'], ['for', 'in'], ['home', 'nn'], ['at', 'in'], ['services', 'nns'], ['nurse', 'nn'], ['visiting', 'vbg'], ['Community', 'nn']]
[['.', '.'], ['aged', 'vbn'], ['needy', 'jj'], ['the', 'at'], ['of', 'in'], ['bills', 'nns'], ['medical', 'jj'], ['pay', 'vb'], ['help', 'vb'], ['to', 'to'], ['states', 'nns'], ['to', 'in'], ['grants', 'nns'], ['providing', 'vbg'], ['law', 'nn'], ['a', 'at'], ['passed', 'vbd'], ['year', 'nn'], ['last', 'ap'], ['Congress', 'np'], ['that', 'cs'], ['noted', 'vbd'], ['President', 'nn-tl'], ['The', 'at']]
[['.', '.'], ["''", "''"], ['stay', 'nn'], ['hospital', 'nn'], ['extended', 'vbn'], ['an', 'at'], ['by', 'in'], ['caused', 'vbn'], ['--', '--'], ['children', 'nns'], ['their', 'pp$'], ['of', 'in'], ['those', 'dts'], ['or', 'cc'], ['--', '--'], ['savings', 'nns'], ['their', 'pp$'], ['on', 'in'], ['drain', 'nn'], ['the', 'at'], ['by', 'in'], ['staggered', 'vbd'], ['nevertheless', 'rb'], ['are', 'ber'], ['who', 'wps'], ['but', 'cc'], [',', ','], ['expense', 'nn'], ["taxpayers'", 'jj'], ['the', 'at'], ['at', 'in'], ['care', 'nn'], ['receive', 'vb'], ['to', 'to'], ['wish', 'nn'], ['no', 'at'], ['have', 'hv'], ['who', 'wps'], ['millions', 'nns'], ['those', 'dts'], ['of', 'in'], ['needs', 'nns'], ['the', 'at'], ['meet', 'vb'], ['``', '``'], ['to', 'in'], ['designed', 'vbn'], ['is', 'bez'], ['plan', 'nn'], ['his', 'pp$'], ['said', 'vbd'], ['He', 'pps']]
[['.', '.'], ['hospitals', 'nns'], ['our', 'pp$'], ['of', 'in'], ['overcrowding', 'nn'], ['unnecessary', 'jj'], ['or', 'cc'], ['malingering', 'nn'], ['any', 'dti'], ['discourage', 'vb'], ['to', 'to'], ['requirements', 'nns'], ["'", "'"], ['deductible', 'jj'], ["'", "'"], ['sufficient', 'jj'], ['with', 'in'], ['and', 'cc'], ['``', '``'], [',', ','], ['said', 'vbd'], ['he', 'pps'], [',', ','], ["''", "''"], ['needs', 'nns'], ['essential', 'jj'], ['absolutely', 'ql'], ['meet', 'vb'], ['to', 'to'], ['cut', 'vbn'], ['proposal', 'nn'], ['modest', 'jj'], ['very', 'ql'], ['a', 'at'], ['is', 'bez'], ['This', 'dt'], ['``', '``']]
[['.', '.'], ['medicine', 'nn'], ['socialized', 'vbn'], ['of', 'in'], ['program', 'nn'], ['a', 'at'], ['not', '*'], ['is', 'bez'], ['This', 'dt'], ['``', '``']]
[['.', '.'], ['guaranteed', 'vbn'], ['choice', 'nn'], ['of', 'in'], ['freedom', 'nn'], ['absolute', 'jj'], ['with', 'in'], ['costs', 'nns'], ['health', 'nn'], ['of', 'in'], ['prepayment', 'nn'], ['of', 'in'], ['program', 'nn'], ['a', 'at'], ['is', 'bez'], ['It', 'pps']]
[['.', '.'], ["''", "''"], ['hospital', 'nn'], ['and', 'cc'], ['doctor', 'nn'], ['own', 'jj'], ['his', 'pp$'], ['choose', 'vb'], ['will', 'md'], ['person', 'nn'], ['Every', 'at']]
[['.', '.'], ['bills', 'nns'], ['doctor', 'nn'], ['cover', 'vb'], ['not', '*'], ['does', 'doz'], ['plan', 'nn'], ['The', 'at']]
[['.', '.'], ['patient', 'nn'], ['the', 'at'], ['by', 'in'], ['paid', 'vbn'], ['be', 'be'], ['still', 'rb'], ['would', 'md'], ['They', 'ppss']]
[['.', '.'], ['schools', 'nns'], ['dental', 'jj'], ['and', 'cc'], ['medical', 'jj'], ['enlarge', 'vb'], ['or', 'cc'], ['build', 'vb'], ['to', 'to'], ['grants', 'nns'], ['and', 'cc'], [',', ','], ['scholarships', 'nns'], ['federal', 'jj'], ['for', 'in'], ['were', 'bed'], ['proposals', 'nns'], ['costly', 'jj'], ['and', 'cc'], ['ambitious', 'jj'], ['most', 'ql'], ["President's", 'nn$-tl'], ['the', 'at'], ['plan', 'nn'], ['care', 'nn'], ['aged', 'vbn'], ['the', 'at'], ['from', 'in'], ['Apart', 'rb']]
[['.', '.'], ['care', 'nn'], ['health', 'nn'], ['for', 'in'], ['need', 'nn'], ['rising', 'vbg'], ['the', 'at'], ['meet', 'vb'], ['to', 'to'], ['needed', 'vbn'], ['load', 'nn'], ['student', 'nn'], ['the', 'at'], ['handle', 'vb'], ['now', 'rb'], ['cannot', 'md*'], ['schools', 'nns'], ['dental', 'jj'], ['47', 'cd'], ['and', 'cc'], ['medical', 'jj'], ['92', 'cd'], ["nation's", 'nn$'], ['the', 'at'], ['said', 'vbd'], ['President', 'nn-tl'], ['The', 'at']]
[['.', '.'], ['costs', 'nns'], ['schooling', 'nn'], ['the', 'at'], ['afford', 'vb'], ["can't", 'md*'], ['they', 'ppss'], ['because', 'cs'], ['dentistry', 'vbd'], ['and', 'cc'], ['medicine', 'nn'], ['into', 'in'], ['going', 'vbg'], ['not', '*'], ['are', 'ber'], ['people', 'nns'], ['young', 'jj'], ['qualified', 'vbn'], ['many', 'ap'], [',', ','], ['said', 'vbd'], ['he', 'pps'], [',', ','], ['Moreover', 'rb']]
[['.', '.'], ['students', 'nns'], ['year', 'nn'], ['first', 'od'], ['the', 'at'], ['of', 'in'], ['one-fourth', 'nn'], ['for', 'in'], ['year', 'nn'], ['a', 'at'], ['$1,500', 'nns'], ['to', 'in'], ['equal', 'jj'], ['school', 'nn'], ['dental', 'jj'], ['and', 'cc'], ['medical', 'jj'], ['each', 'dt'], ['to', 'in'], ['contributions', 'nns'], ['federal', 'jj'], ['provide', 'vb'], ['would', 'md'], ['plan', 'nn'], ['scholarship', 'nn'], ['The', 'at']]
[['.', '.'], ['student', 'nn'], ['per', 'in'], ['year', 'nn'], ['a', 'at'], ['$2,000', 'nns'], ['to', 'in'], ['up', 'rp'], ['of', 'in'], [',', ','], ['need', 'nn'], ['on', 'in'], ['based', 'vbn'], [',', ','], ['scholarships', 'nns'], ['4-year', 'pp$'], ['pay', 'vb'], ['to', 'to'], ['money', 'nn'], ['the', 'at'], ['use', 'vb'], ['could', 'md'], ['schools', 'nns'], ['The', 'at']]
[['.', '.'], ['grants', 'nns'], ['scholarship', 'nn'], ['in', 'in'], ['$1,500', 'nns'], ['each', 'dt'], ['for', 'in'], ['schools', 'nns'], ['the', 'at'], ['to', 'in'], ['grant', 'nn'], ["''", "''"], ['education', 'nn'], ['of', 'in'], ['cost', 'nn'], ['``', '``'], ['$1,000', 'nns'], ['a', 'at'], ['pay', 'vb'], ['would', 'md'], ['government', 'nn'], ['the', 'at'], [',', ','], ['addition', 'nn'], ['In', 'in']]
[['.', '.'], ['1966', 'cd'], ['by', 'in'], ['millions', 'nns'], ['21', 'cd'], ['to', 'in'], ['up', 'rp'], ['go', 'vb'], ['would', 'md'], ['and', 'cc'], ['year', 'nn'], ['first', 'od'], ['the', 'at'], ['dollars', 'nns'], ['million', 'cd'], ['5.1', 'in'], ['cost', 'vb'], ['would', 'md'], ['programs', 'nns'], ['combined', 'vbn'], ['the', 'at'], ['estimated', 'vbn'], ['Officials', 'nns']]
[['.', '.'], ['ones', 'nns'], ['existing', 'vbg'], ['of', 'in'], ['capacity', 'nn'], ['the', 'at'], ['enlarging', 'vbg'], ['or', 'cc'], ['schools', 'nns'], ['dental', 'jj'], ['and', 'cc'], ['medical', 'jj'], ['new', 'jj'], ['constructing', 'vbg'], ['for', 'in'], ['years', 'nns'], ['10', 'cd'], ['in', 'in'], ['dollars', 'nns'], ['million', 'cd'], ['700', 'cd'], ['totaling', 'vbg'], ["''", "''"], ['grants', 'nns'], ['matching', 'jj'], ['``', '``'], ['federal', 'jj'], ['recommended', 'vbd'], ['President', 'nn-tl'], ['The', 'at']]
[['.', '.'], ['construction', 'nn'], ['home', 'nn'], ['nursing', 'vbg'], ['for', 'in'], ['grants', 'nns'], ['federal', 'jj'], ['year', 'nn'], ['a', 'at'], ['dollar', 'nn'], ['million', 'cd'], ['10', 'cd'], ['present', 'jj'], ['the', 'at'], ['doubling', 'vbg'], ['for', 'in'], ['called', 'vbd'], ['President', 'nn-tl'], ['the', 'at'], [',', ','], ["''", "''"], ['services', 'nns'], ['health', 'nn'], ['community', 'nn'], ['``', '``'], ['of', 'in'], ['area', 'nn'], ['the', 'at'], ['In', 'in']]
[['.', '.'], ['homes', 'nns'], ['nursing', 'vbg'], ['improve', 'vb'], ['to', 'to'], ['states', 'nns'], ['to', 'in'], ["''", "''"], ['grants', 'nns'], ['stimulatory', 'jj'], ['``', '``'], ['for', 'in'], ['appropriation', 'nn'], ["''", "''"], ['initial', 'jj'], ['``', '``'], ['dollar', 'nn'], ['million', 'cd'], ['10', 'cd'], ['another', 'dt'], ['for', 'in'], ['asked', 'vbd'], ['He', 'pps']]
[['.', '.'], ['hospitals', 'nns'], ['experimental', 'jj'], ['for', 'in'], ['sum', 'nn'], ['unspecified', 'jj'], ['an', 'at'], ['of', 'in'], ['grants', 'nns'], ['proposed', 'vbn'], ['further', 'rbr'], ['He', 'pps']]
[['.', '.'], ['bureau', 'nn'], ["children's", 'nns$'], ['the', 'at'], ['under', 'in'], ['programs', 'nns'], ['for', 'in'], ['funds', 'nns'], ['in', 'in'], ['increase', 'nn'], ['an', 'at'], ['later', 'rbr'], ['recommend', 'vb'], ['will', 'md'], ['he', 'pps'], ['said', 'vbd'], ['President', 'nn-tl'], ['the', 'at'], [',', ','], ['field', 'nn'], ['health', 'nn'], ['child', 'nn'], ['the', 'at'], ['In', 'in']]
[['.', '.'], ['institute', 'nn'], ['health', 'nn'], ['child', 'nn'], ['national', 'jj'], ['a', 'at'], ['of', 'in'], ['establishment', 'nn'], ['approve', 'vb'], ['to', 'to'], ['Congress', 'np'], ['asked', 'vbd'], ['also', 'rb'], ['He', 'pps']]
[['.', '.'], ['rehabilitation', 'nn'], ['vocational', 'jj'], ['for', 'in'], ['states', 'nns'], ['to', 'in'], ['grants', 'nns'], ['increase', 'nn'], ['to', 'in'], ['Congress', 'np'], ['ask', 'vb'], ['will', 'md'], ['he', 'pps'], ['said', 'vbd'], ['President', 'nn-tl'], ['The', 'at']]
[['.', '.'], ['much', 'rb'], ['how', 'ql'], ['by', 'in'], ['say', 'vb'], ['not', '*'], ['did', 'dod'], ['He', 'pps']]
[['.', '.'], ['facilities', 'nns'], ['research', 'nn'], ['building', 'nn'], ['for', 'in'], ['grants', 'nns'], ['matching', 'vbg'], ['in', 'in'], [',', ','], ['millions', 'nns'], ['50', 'cd'], ['to', 'in'], ['30', 'cd'], ['from', 'in'], [',', ','], ['increase', 'nn'], ['year', 'nn'], ['a', 'at'], ['dollar', 'nn'], ['million', 'cd'], ['20', 'cd'], ['a', 'at'], ['asked', 'vbd'], ['he', 'pps'], ['research', 'nn'], ['medical', 'jj'], ['For', 'in']]
[['.', '.'], ['medicine', 'nn'], ['in', 'in'], ['research', 'nn'], ['government', 'nn'], ['direct', 'jj'], ['for', 'in'], ['budget', 'nn'], ['1961-62', 'jj'], ['the', 'at'], ['in', 'in'], ['dollars', 'nns'], ['million', 'cd'], ['540', 'cd'], ['the', 'at'], [',', ','], ['amount', 'nn'], ['unspecified', 'jj'], ['an', 'at'], ['by', 'in'], [',', ','], ['increasing', 'vbg'], ['propose', 'vb'], ['also', 'rb'], ['will', 'md'], ['he', 'pps'], ['said', 'vbd'], ['President', 'nn-tl'], ['The', 'at']]
[['.', '.'], ["''", "''"], ['them', 'ppo'], ['for', 'in'], ['pay', 'nn'], ['to', 'in'], ['means', 'nn'], ['the', 'at'], ['and', 'cc'], [',', ','], ['facilities', 'nns'], [',', ','], ['services', 'nns'], [',', ','], ['knowledge', 'nn'], [',', ','], ['people', 'nns'], ['--', '--'], ['program', 'nn'], ['health', 'nn'], ['sound', 'nn'], ['a', 'at'], ['in', 'in'], ['elements', 'nns'], ['indispensable', 'jj'], ['``', '``'], ['the', 'at'], ['combine', 'vb'], ['proposals', 'nns'], ['his', 'pp$'], ['said', 'vbd'], ['President', 'nn-tl'], ['The', 'at']]
[['.', '.'], ['lines', 'nns'], ['expected', 'vbn'], ['along', 'rb'], ['was', 'bedz'], ['message', 'nn'], ['the', 'at'], ['to', 'in'], ['reaction', 'nn'], ['Congressional', 'jj-tl']]
[['.', '.'], ['plan', 'nn'], ["President's", 'nn$-tl'], ['the', 'at'], ['criticized', 'vbd'], ['system', 'nn'], ['security', 'nn'], ['social', 'jj'], ['the', 'at'], ['under', 'in'], ['aged-care', 'rp'], ['placing', 'vbg'], ['opposed', 'vbd'], ['year', 'nn'], ['last', 'ap'], ['who', 'wps'], ['Legislators', 'nns']]
[['.', '.'], ['message', 'nn'], ['the', 'at'], ['hailed', 'vbd'], ['year', 'nn'], ['last', 'ap'], ['plan', 'nn'], ['similar', 'jj'], ['a', 'at'], ['backed', 'vbd'], ['who', 'wps'], ['Those', 'dts']]
[['.', '.'], ['insurance', 'nn'], ['medical', 'jj'], ['compulsory', 'jj'], ['to', 'in'], ['opposition', 'nn'], ['their', 'pp$'], ['change', 'vb'], ['to', 'to'], ['them', 'ppo'], ['persuade', 'vb'], ['not', '*'], ['did', 'dod'], ['message', 'nn'], ['the', 'at'], ['said', 'vbd'], [')', ')'], ['Ind.', 'cd'], ['(', '('], ['Halleck', 'np'], ['Charles', 'np'], ['Leader', 'nn-tl'], ['Republican', 'np-tl'], ['House', 'nn-tl'], ['and', 'cc'], [')', ')'], ['Ill.', 'np'], ['(', '('], ['Dirksen', 'np'], ['Leader', 'nn-tl'], ['Republican', 'np-tl'], ['Senate', 'nn-tl']]
[['.', '.'], ['first', 'rb'], ['trial', 'nn'], ['fair', 'jj'], ['a', 'at'], ['given', 'vbn'], ['be', 'be'], ['should', 'md'], ['year', 'nn'], ['last', 'ap'], ['enacted', 'vbn'], ['plan', 'nn'], ['care', 'nn'], ['voluntary', 'jj'], ['the', 'at'], ['said', 'vbd'], ['Halleck', 'np']]
[['.', '.'], ['House', 'nn-tl'], ['the', 'at'], ['in', 'in'], ['fate', 'nn'], ['its', 'pp$'], ['on', 'in'], ['prediction', 'nn'], ['no', 'at'], ['made', 'vbd'], ['but', 'cc'], [',', ','], ["''", "''"], ['thing', 'nn'], ['fine', 'jj'], ['mighty', 'jj'], ['a', 'at'], ['``', '``'], ['program', 'nn'], ['Kennedy', 'np'], ['the', 'at'], ['called', 'vbd'], [')', ')'], ['Tex.', 'np'], [',', ','], ['D.', 'np'], ['(', '('], ['Rayburn', 'np'], ['Sam', 'np'], ['Speaker', 'nn-tl'], ['House', 'nn-tl']]
[['.', '.'], ['chief', 'nn'], ['housing', 'nn'], ['federal', 'jj'], ["nation's", 'nn$'], ['the', 'at'], ['as', 'cs'], ['Weaver', 'np'], ['C.', 'np'], ['Robert', 'np'], ['confirmed', 'vbd'], ['tonight', 'nr'], ['Senate', 'nn-tl'], ['the', 'at'], [',', ','], ['pressure', 'nn'], ['House', 'nn-tl'], ['White', 'jj-tl'], ['under', 'in'], ['hastily', 'rb'], ['Acting', 'vbg'], ['--', '--']]
[['.', '.'], ['vote', 'nn'], ['record', 'nn'], ['no', 'at'], ['was', 'bedz'], ['there', 'ex'], ['and', 'cc'], ['floor', 'nn'], ['the', 'at'], ['on', 'in'], ['were', 'bed'], ['senators', 'nns'], ['11', 'cd'], ['Only', 'rb']]
[['.', '.'], ['heard', 'vbn'], ['was', 'bedz'], ["''", "''"], ['noes', 'uh'], ['``', '``'], ['and', 'cc'], ["''", "''"], ['ayes', 'uh'], ['``', '``'], ['scattered', 'vbn'], ['of', 'in'], ['number', 'nn'], ['A', 'at']]
[['.', '.'], ['agency', 'nn'], ['finance', 'nn'], ['home', 'nn'], ['and', 'cc'], ['housing', 'nn'], ['the', 'at'], ['of', 'in'], ['administrator', 'nn'], ['as', 'cs'], ['leader', 'nn'], ['Negro', 'np'], ['the', 'at'], ['of', 'in'], ['approval', 'nn'], ['speed', 'nn'], ['to', 'in'], ['order', 'nn'], ['in', 'in'], ['ignored', 'vbn'], ['were', 'bed'], ['rules', 'nns'], ['Senate', 'nn-tl'], ['Customary', '``']]
[['.', '.'], ['floor', 'nn'], ['the', 'at'], ['to', 'in'], ['reported', 'vbn'], ['are', 'ber'], ['they', 'ppss'], ['after', 'cs'], ['delay', 'nn'], ['hour', 'nn'], ['24', 'cd'], ['a', 'at'], ['least', 'ap'], ['at', 'in'], ['requiring', 'vbg'], ['rule', 'nn'], ['Senate', 'nn-tl'], ['a', 'at'], ['of', 'in'], ['because', 'cs'], ['action', 'nn'], ['immediate', 'jj'], ['denied', 'vbn'], ['been', 'ben'], ['have', 'hv'], [',', ','], ['rank', 'nn'], ['cabinet', 'nn'], ['of', 'in'], ['those', 'dts'], ['including', 'in'], [',', ','], ['appointments', 'nns'], ['Presidential', 'jj'], ['all', 'ql'], [',', ','], ['years', 'nns'], ['eight', 'cd'], ['last', 'ap'], ['the', 'at'], ['In', 'in']]
[['.', '.'], ['1961', 'cd'], ['in', 'in'], ["Kennedy's", 'np$'], ['President', 'nn-tl'], ['and', 'cc'], ['1953', 'cd'], ['in', 'in'], ['selections', 'nns'], ['cabinet', 'nn'], ["Eisenhower's", 'np$'], ['President', 'nn-tl'], ['with', 'in'], ['connection', 'nn'], ['in', 'in'], [')', ')'], ['Ore.', 'np'], [',', ','], ['D.', 'np'], ['(', '('], ['Morse', 'np'], ['Wayne', 'np'], ['Sen.', 'nn-tl'], ['of', 'in'], ['demand', 'nn'], ['by', 'in'], ['enforced', 'vbn'], ['was', 'bedz'], ['rule', 'nn'], ['The', 'at']]
[['.', '.'], ['meetings', 'nns'], ['past', 'nn'], ['in', 'in'], ['than', 'in'], ['understanding', 'nn'], ['mutual', 'jj'], ['better', 'jjr'], ['much', 'ql'], ['by', 'in'], ['animated', 'vbn'], [',', ','], ['discussions', 'nns'], ['wider', 'jjr'], ['and', 'cc'], [',', ','], ['franker', 'np'], [',', ','], ['freer', 'jjr'], ['the', 'at'], ['been', 'ben'], ['has', 'hvz'], ['Ministers', 'nns-tl'], ['Foreign', 'jj-tl'], ['Organization', 'nn-tl'], ['Treaty', 'nn-tl'], ['Atlantic', 'np-tl'], ['North', 'jj-tl'], ['of', 'in'], ['meeting', 'nn'], ['Oslo', 'jj'], ['the', 'at'], ['from', 'in'], ['emerge', 'vb'], ['to', 'to'], ['element', 'nn'], ['positive', 'jj'], ['most', 'ql'], ['The', 'at']]
[['.', '.'], ['changes', 'nns'], ['dramatic', 'jj'], ['without', 'in'], ['and', 'cc'], ['step', 'nn'], ['by', 'in'], ['step', 'nn'], ['route', 'nn'], ['its', 'pp$'], ['along', 'in'], ['proceed', 'vb'], ['only', 'rb'], ['can', 'md'], [',', ','], ['nature', 'nn'], ['very', 'ap'], ['its', 'pp$'], ['by', 'in'], [',', ','], ['that', 'cs'], ['organization', 'nn'], ['an', 'at'], ['of', 'in'], ['session', 'nn'], ['working', 'vbg'], ['a', 'at'], ['been', 'ben'], ['has', 'hvz'], ['This', 'dt']]
[['.', '.'], ['problems', 'nns'], ["another's", 'dt$'], ['one', 'cd'], ['understanding', 'nn'], ['and', 'cc'], ['information', 'nn'], ['get', 'vb'], ['to', 'to'], ['attempt', 'nn'], ['genuine', 'jj'], ['a', 'at'], ['made', 'vbd'], ['and', 'cc'], [',', ','], ['candor', 'nn'], ['of', 'in'], ['climate', 'nn'], ['a', 'at'], ['in', 'in'], ['met', 'vbn'], ['have', 'hv'], ['ministers', 'nns'], ['the', 'at'], [',', ','], ['Oslo', 'nn'], ['In', 'in']]
[['.', '.'], ['problems', 'nns'], ['such', 'jj'], ['had', 'hvd'], [',', ','], ['time', 'nn'], ['long', 'jj'], ['a', 'at'], ['for', 'in'], ['not', '*'], ['or', 'cc'], [',', ','], ['never', 'rb'], ['have', 'hv'], ['who', 'wps'], ['those', 'dts'], ['and', 'cc'], ['powers', 'nns'], ["''", "''"], ['colonialist', 'uh'], ['``', '``'], ['the', 'at'], ['between', 'in'], ['concerned', 'vbn'], ['are', 'ber'], ['relations', 'nns'], ['where', 'wrb'], ['noticeable', 'jj'], ['particularly', 'ql'], ['been', 'ben'], ['has', 'hvz'], ['understanding', 'nn'], ['of', 'in'], ['atmosphere', 'nn'], ['This', 'dt']]
[['.', '.'], ['absence', 'nn'], ['its', 'pp$'], ['by', 'in'], ['conspicuous', 'jj'], ['been', 'ben'], ['has', 'hvz'], [',', ','], ['about', 'rb'], ['troubles', 'nns'], ['these', 'dts'], ['brought', 'vbn'], ['have', 'hv'], ['that', 'wps'], ['circumstances', 'nns'], ['the', 'at'], ['of', 'in'], ['disapprove', 'vb'], ['emotionally', 'rb'], ['and', 'cc'], ['intellectually', 'rb'], ['who', 'wps'], ['allies', 'nns'], ['other', 'ap'], ['and', 'cc'], [',', ','], ['them', 'ppo'], ['facing', 'vbg'], ['tragedies', 'nns'], ['and', 'cc'], [',', ','], ['changes', 'nns'], [',', ','], ['difficulties', 'nns'], ['the', 'at'], ['by', 'in'], ['exacerbated', 'vbn'], [',', ','], ['Africa', 'np'], ['in', 'in'], ['trouble', 'nn'], ['in', 'in'], ['those', 'dts'], ['between', 'in'], ['clash', 'nn'], ['a', 'at'], ['of', 'in'], ['nightmare', 'nn'], ['The', 'at']]
[['.', '.'], ['tension', 'nn'], ['of', 'in'], ['relaxation', 'nn'], ['noticeable', 'jj'], ['a', 'at'], ['been', 'ben'], ['has', 'hvz'], ['there', 'ex'], [',', ','], ['harsh', 'jj'], ['prove', 'vb'], ['policy', 'nn'], ['Angola', 'np'], ['its', 'pp$'], ['of', 'in'], ['critics', 'nns'], ['should', 'md'], ['Council', 'nn-tl'], ['NATO', 'np-tl'], ['the', 'at'], ['of', 'in'], ['out', 'rp'], ['walk', 'vb'], ['to', 'to'], ['ready', 'jj'], ['rumored', 'vbn'], ['was', 'bedz'], ['ago', 'rb'], ['weeks', 'nns'], ['few', 'ap'], ['a', 'at'], ['which', 'wdt'], [',', ','], ['Portugal', 'np'], ['of', 'in'], ['case', 'nn'], ['the', 'at'], ['In', 'in']]
[['.', '.'], ['council', 'nn'], ['the', 'at'], ['in', 'in'], ['explosion', 'nn'], ['no', 'at'], ['been', 'ben'], ['has', 'hvz'], ['there', 'ex'], ['but', 'cc'], [',', ','], ['unchanged', 'jj'], ['positions', 'nns'], ['basic', 'jj'], ['left', 'vbn'], ['has', 'hvz'], ['explanation', 'nn'], [',', ','], ['courteous', 'jj'], ['remarkably', 'ql'], [',', ','], ['general', 'jj'], ['The', 'at']]
[['.', 'pps'], ['advance', 'pps'], ['in', 'pps'], ['discussed', 'pps'], ['be', 'pps'], ['will', 'pps'], ['Angola', 'pps'], ['as', 'pps'], ['topics', 'pps'], ['such', 'pps'], ['future', 'pps'], ['the', 'pps'], ['in', 'pps'], ['that', 'pps'], ['so', 'pps'], ['up', 'pps'], ['set', 'pps'], ['been', 'pps'], ['has', 'pps'], ['committee', 'pps'], ['NATO', 'pps'], ['hoc', 'pps'], ['ad', 'pps'], ['new', 'pps'], ['a', 'pps'], ['since', 'pps'], [',', 'pps'], ['votes', 'pps'], ["members'", 'pps'], ['NATO', 'pps'], ['to', 'pps'], ['as', 'pps'], ['Assembly', 'pps'], ['General', 'pps'], ['UN', 'pps'], ['the', 'pps'], ['in', 'pps'], ['surprises', 'pps'], ['bitter', 'pps'], ['more', 'pps'], ['no', 'pps'], ['be', 'pps'], ['even', 'pps'], ['should', 'pps'], ['There', 'pps']]
[['.', '.'], ['locomotive', 'nn'], ['NATO', 'nn'], ['the', 'at'], ['behind', 'in'], ['track', 'nn'], ['the', 'at'], ['on', 'in'], ['back', 'rb'], ['cars', 'nns'], ['allied', 'vbn'], ['the', 'at'], ['all', 'abn'], ['get', 'vb'], ['to', 'to'], ['attempt', 'nn'], ['Oslo', 'jj'], ['the', 'at'], ['with', 'in'], ['step', 'nn'], ['of', 'in'], ['out', 'rp'], ['somewhat', 'ql'], ['been', 'ben'], ['has', 'hvz'], ['alone', 'rb'], ['Canada', 'np']]
[['.', 'pps'], ['line', 'pps'], ['NATO', 'pps'], ['the', 'pps'], ['to', 'pps'], ['closer', 'pps'], ['today', 'pps'], ['is', 'pps'], [',', 'pps'], ['alliance', 'pps'], ['the', 'pps'], ['of', 'pps'], ['capital', 'pps'], ['northernmost', 'pps'], ['this', 'dt'], ['of', 'in'], ['heart', 'nn'], ['the', 'at'], ['in', 'in'], ['arms', 'nns'], ['atomic', 'jj'], ['against', 'in'], ['manifestations', 'nns'], ['limited', 'vbn'], ['but', 'cc'], ['daily', 'jj'], ['despite', 'in'], [',', ','], ['Norway', 'np'], ['Even', 'rb']]
[['.', '.'], ['for', 'in'], ['hoped', 'vbn'], ['as', 'cs'], ['evidence', 'nn'], ['in', 'in'], ['much', 'rb'], ['as', 'ql'], ['been', 'ben'], ['not', '*'], ['has', 'hvz'], ['leadership', 'nn'], ['States', 'nns-tl'], ['United', 'vbn-tl'], ['the', 'at'], ['that', 'cs'], ['disappointment', 'nn'], ['some', 'dti'], ['set', 'vbn'], ['be', 'be'], ['must', 'md'], ['sheet', 'nn'], ['balance', 'nn'], ['the', 'at'], ['of', 'in'], ['side', 'nn'], ['negative', 'jj'], ['the', 'at'], ['On', 'in']]
[['.', '.'], ["''", "''"], ['inconclusive', 'jj'], ['``', '``'], ['as', 'cs'], ['speeches', 'nns'], ["Rusk's", 'np'], ['Dean', 'np'], ['State', 'nn-tl'], ['of', 'in-tl'], ['Secretary', 'nn-tl'], ['of', 'in'], ['tenor', 'nn'], ['the', 'at'], ['described', 'vbd'], ['diplomat', 'nn'], ['One', 'cd']]
[['.', '.'], ['policy', 'nn'], ['its', 'pp$'], ['fixed', 'vbn'], ['firmly', 'rb'], ['yet', 'rb'], ['not', '*'], ['has', 'hvz'], ['administration', 'nn'], ['new', 'jj'], ['the', 'at'], ['mean', 'vb'], ['merely', 'rb'], ['may', 'md'], ['this', 'dt'], [',', ','], ['West', 'nr-tl'], ['the', 'at'], ['for', 'in'], ['setbacks', 'nns'], ['and', 'cc'], ['points', 'nns'], ['danger', 'nn'], ['global', 'jj'], ['various', 'jj'], ['the', 'at'], ['of', 'in'], ['analysis', 'nn'], ["Rusk's", 'np'], ['Mr.', 'np'], ['despite', 'in'], [',', ','], ['clear', 'jj'], ['always', 'rb'], ['not', '*'], ['were', 'bed'], ['policies', 'nns'], ['States', 'nns-tl'], ['United', 'vbn-tl'], ['if', 'cs'], [',', ','], ['that', 'cs'], ['add', 'vb'], ['to', 'to'], ['hastened', 'vbd'], ['he', 'pps'], ['But', 'cc']]
[['.', '.'], ['accredited', 'vbn'], ['correspondents', 'nns'], ['Soviet', 'nn-tl'], ['six', 'cd'], ['than', 'in'], ['fewer', 'ap'], ['no', 'at'], ['with', 'in'], [',', ','], ['affair', 'nn'], ['semipublic', 'jj'], ['a', 'at'], ['is', 'bez'], ['meeting', 'nn'], ['council', 'nn'], ['present', 'jj'], ['the', 'at'], ['that', 'cs'], ['fact', 'nn'], ['the', 'at'], ['of', 'in'], ['appreciation', 'nn'], ['tactical', 'jj'], ['by', 'in'], ['caused', 'vbn'], ['be', 'be'], ['also', 'rb'], ['may', 'md'], ['vagueness', 'nn'], ['certain', 'jj'], ['A', 'at']]
[['.', '.'], ['spots', 'nns'], ['danger', 'nn'], ['individual', 'jj'], ['to', 'in'], ['application', 'nn'], ['detailed', 'vbn'], ['with', 'in'], ['scale', 'nn'], ['global', 'jj'], ['a', 'at'], ['on', 'in'], ['policy', 'nn'], ['firm', 'jj'], ['enunciate', 'vb'], ['to', 'to'], ['than', 'cs'], ['learn', 'vb'], ['and', 'cc'], ['listen', 'vb'], ['to', 'to'], ['ready', 'jj'], ['more', 'ql'], [',', ','], ['mind', 'nn'], ['of', 'in'], ['frame', 'nn'], ['exploratory', 'jj'], ['and', 'cc'], ['tentative', 'jj'], ['somewhat', 'ql'], ['a', 'at'], ['in', 'in'], ['Oslo', 'nn'], ['to', 'in'], ['came', 'vbd'], ['delegation', 'nn'], ['States', 'nns-tl'], ['United', 'vbn-tl'], ['the', 'at'], ['that', 'cs'], [',', ','], ['popularity', 'nn'], ['personal', 'jj'], ["Rusk's", ','], ['Mr.', 'np'], ['despite', 'in'], [',', ','], ['days', 'nns'], ['three', 'cd'], ['these', 'dts'], ['during', 'in'], ['given', 'vbn'], ['been', 'ben'], ['nevertheless', 'rb'], ['has', 'hvz'], ['impression', 'nn'], ['The', 'at']]
[['.', '.'], ['months', 'nns'], ['four', 'cd'], ['past', 'nn'], ['the', 'at'], ['in', 'in'], ['administration', 'nn'], ['new', 'jj'], ['the', 'at'], ['preoccupied', 'vbn'], ['has', 'hvz'], ['that', 'wps'], ['States', 'nns-tl'], ['United', 'vbn-tl'], ['the', 'at'], ['outside', 'in'], ['and', 'cc'], ['inside', 'in'], ['events', 'nns'], ['of', 'in'], ['march', 'nn'], ['tremendous', 'jj'], ['the', 'at'], ['of', 'in'], ['idea', 'nn'], ['some', 'dti'], ['gave', 'vbd'], [',', ','], ['speech', 'nn'], ['first', 'od'], ['his', 'pp$'], ['in', 'in'], [',', ','], ['himself', 'ppl'], ['State', 'nn-tl'], ['of', 'in'], ['Secretary', 'nn'], ['The', 'at']]
[['.', '.'], ['waters', 'nns'], ['European', 'jj'], ['in', 'in'], ['disposal', 'nn'], ["NATO's", 'at'], ['at', 'in'], ['be', 'be'], ['eventually', 'rb'], ['will', 'md'], ['submarines', 'nns'], ['nuclear', 'jj'], ['five', 'cd'], ['that', 'cs'], ['announced', 'vbn'], ['has', 'hvz'], ['but', 'cc'], [',', ','], ['policy', 'nn'], ['foreign', 'jj'], ['its', 'pp$'], ['of', 'in'], ["''", "''"], ['cornerstone', 'nn'], ['``', '``'], [',', ','], ['alliance', 'nn'], ['the', 'at'], ['to', 'in'], ['attachment', 'nn'], ['profound', 'jj'], ["States'", 'nns$-tl'], ['United', 'vbn-tl'], ['the', 'at'], ['reiterated', 'vbn'], ['only', 'rb'], ['not', '*'], ['has', 'hvz'], ['State', 'nn-tl'], ['of', 'in'], ['Secretary', 'nn'], ['the', 'at'], [',', ','], ['concerned', 'vbn'], ['is', 'bez'], ['NATO', 'nn'], ['of', 'in'], ['core', 'nn'], ['the', 'at'], ['where', 'wrb'], ['But', 'cc']]
[['.', '.'], ['whole', 'nn'], ['a', 'at'], ['as', 'cs'], ['council', 'nn'], ['the', 'at'], ['by', 'in'], ['up', 'rp'], ['taken', 'vbn'], ['again', 'rb'], ['once', 'rb'], ['affirmation', 'nn'], ['an', 'at'], [',', ','], ['Berlin', 'np'], ['in', 'in'], ['setback', 'nn'], ['another', 'dt'], ['for', 'in'], ['stand', 'vb'], ['not', '*'], ['will', 'md'], ['States', 'nns-tl'], ['United', 'vbn-tl'], ['the', 'at'], ['that', 'cs'], ['Union', 'nn-tl'], ['Soviet', 'nn-tl'], ['the', 'at'], ['to', 'in'], ['warning', 'nn'], ['a', 'at'], ['repeated', 'vbn'], ['solemnly', 'rb'], ['also', 'rb'], ['has', 'hvz'], ['State', 'nn-tl'], ['of', 'in'], ['Secretary', 'nn'], ['The', 'at']]
[['.', '.'], ['connection', 'nn'], ['apparent', 'jj'], ['of', 'in'], ['lack', 'nn'], ['or', 'cc'], ['distance', 'nn'], ['geographical', 'jj'], ['to', 'in'], ['regard', 'nn'], ['without', 'in'], ['such', 'jj'], ['as', 'cs'], ['treated', 'vbn'], ['be', 'be'], ['must', 'md'], ['and', 'cc'], [',', ','], ['societies', 'nns'], ['different', 'jj'], ['entirely', 'rb'], ['two', 'cd'], ['between', 'in'], ['conflict', 'nn'], ['general', 'jj'], ['the', 'at'], ['essence', 'nn'], ['in', 'in'], ['is', 'bez'], [',', ','], ['globe', 'nn'], ['the', 'at'], ['around', 'in'], ['place', 'nn'], ['take', 'vb'], ['it', 'pps'], ['wherever', 'wrb'], [',', ','], ['friction', 'nn'], ['East-West', 'jj-tl'], ['that', 'cs'], ['realization', 'nn'], ['NATO', 'nn'], ['of', 'in'], ['rekindling', 'nn'], ['the', 'at'], ['perhaps', 'rb'], ['is', 'bez'], ['achievement', 'nn'], ['greatest', 'jjt'], ["secretary's", 'nn$'], ['The', 'at']]
[['.', '.'], ['deterrent', 'nn'], ['nuclear', 'jj'], ['the', 'at'], ['of', 'in'], ['maintenance', 'nn'], ['the', 'at'], ['as', 'cs'], ['well', 'rb'], ['as', 'cs'], ['forces', 'nns'], ['conventional', 'jj'], ['strengthening', 'vbg'], ['for', 'in'], ['need', 'nn'], ['the', 'at'], ['and', 'cc'], [',', ','], ['countries', 'nns'], ['underdeveloped', 'jj'], ['the', 'at'], ['to', 'in'], ['aid', 'nn'], ['coordinating', 'vbg'], ['of', 'in'], ['method', 'nn'], ['a', 'at'], ['as', 'cs'], [')', ')'], ['ratified', 'vbn'], ['when', 'wrb'], ['(', '('], ['Development', 'nn-tl'], ['and', 'cc'], ['Cooperation', 'nn-tl'], ['Economic', 'jj-tl'], ['for', 'in'], ['Organization', 'nn-tl'], ['the', 'at'], ['of', 'in'], ['use', 'nn'], ['the', 'at'], [',', ','], ['alliance', 'nn'], ['the', 'at'], ['within', 'in'], ['consultation', 'nn'], ['political', 'jj'], ['timely', 'jj'], ['more', 'ql'], ['and', 'cc'], [',', ','], ['deeper', 'jjr'], [',', ','], ['more', 'ap'], [':', 'in'], ['directions', 'nns'], ['main', 'nn'], ['three', 'cd'], ['in', 'in'], ['impetus', 'nn'], ['an', 'at'], ['given', 'vbn'], ['has', 'hvz'], ['meeting', 'nn'], ['spring', 'nn'], ['annual', 'jj'], ['The', 'at']]
[['.', '.'], ['come', 'vb'], ['to', 'to'], ['months', 'nns'], ['the', 'at'], ['in', 'in'], ['problems', 'nns'], ['difficult', 'jj'], ['most', 'ql'], ["alliance's", 'nn'], ['the', 'at'], ['of', 'in'], ['one', 'cd'], ['prove', 'vb'], ['will', 'md'], [',', ','], ['called', 'vbn'], ['is', 'bez'], ['strengthening', 'nn'], ['forces', 'nns'], ['conventional', 'jj'], ['the', 'at'], ['as', 'cs'], [',', ','], ["''", "''"], ['threshold', 'nn'], ['``', '``'], ['the', 'at'], ['in', 'in'], ['increase', 'nn'], ['This', 'dt']]
[['.', '.'], ['fulfilled', 'vbn'], ['completely', 'rb'], ['never', 'rb'], ['but', 'cc'], [',', ','], ['down', 'rp'], ['laid', 'vbn'], ['since', 'cs'], ['long', 'rb'], ['obligations', 'nns'], ['out', 'in'], ['carry', 'vb'], ['to', 'to'], ['have', 'hv'], ['will', 'md'], ['ally', 'nn'], ['Each', 'dt']]
[['.', '.'], ['time', 'nn'], ['first', 'od'], ['the', 'at'], ['for', 'in'], ['erupts', ','], ['policy', 'nn'], ['foreign', 'jj'], ['its', 'pp$'], ['over', 'in'], ['debate', 'nn'], ['serious', 'jj'], ['as', 'cs'], ['just', 'rb'], ['Laos', 'np'], ['on', 'in'], ['conference', 'nn'], ['Geneva', 'np'], ['a', 'at'], ['toward', 'in'], ['haltingly', 'rb'], ['moves', 'vbz'], ['administration', 'nn'], ['Kennedy', 'np'], ['The', 'at']]
[['.', '.'], ['Laos', 'np'], ['in', 'in'], ['ground', 'nn'], ['the', 'at'], ['on', 'in'], ['actions', 'nns'], ['military', 'jj'], ['in', 'in'], ['were', 'bed'], ['they', 'ppss'], ['than', 'cs'], ['table', 'nn'], ['conference', 'nn'], ['the', 'at'], ['at', 'in'], ['docile', 'jj'], ['more', 'ql'], ['any', 'dti'], ['be', 'be'], ['will', 'md'], ['Communists', 'nns-tl'], ['the', 'at'], ['that', 'cs'], ['here', 'rb'], ['optimism', 'nn'], ['little', 'jj'], ['is', 'bez'], ['There', 'ex']]
[['.', '.'], ['Nam', 'np-tl'], ['Viet', 'np-tl'], ['South', 'jj-tl'], ['and', 'cc'], ['Thailand', 'np'], ['neighboring', 'vbg'], ['on', 'in'], ['attacks', 'nns'], ['Communist', 'jj'], ['for', 'in'], ['base', 'nn'], ['a', 'at'], ['as', 'cs'], ['used', 'vbn'], ['being', 'beg'], ['from', 'in'], ['Laos', 'np'], ['prevent', 'vb'], ['will', 'md'], ['which', 'wdt'], ['system', 'nn'], ['inspection', 'nn'], ['international', 'jj'], ['an', 'at'], ['up', 'in'], ['setting', 'nn'], ['in', 'in'], ['interested', 'vbn'], ['mainly', 'rb'], ['is', 'bez'], ['now', 'rb'], [',', ','], ['explain', 'vb'], ['officials', 'nns'], ['Department', 'nn-tl'], ['State', 'nn-tl'], [',', ','], ['States', 'nns-tl'], ['United', 'vbn-tl'], ['The', 'at']]
[['.', '.'], ['this', 'dt'], ['achieve', 'vb'], ['to', 'to'], ['conference', 'nn'], ['Geneva', 'np'], ['the', 'at'], ['attending', 'vbg'], ['countries', 'nns'], ['neutral', 'jj'], ['the', 'at'], ['of', 'in'], ['aid', 'nn'], ['the', 'at'], ['on', 'in'], ['count', 'vb'], ['They', 'ppss']]
[['.', '.'], ['dominated', 'vbn'], ['Communist', 'jj'], ['become', 'vb'], ['not', '*'], ['would', 'md'], ['Cabinet', 'nn-tl'], ['Lao', 'np'], ['future', 'nn'], ['any', 'dti'], ['that', 'cs'], ['hopes', 'vbz'], ['States', 'nns-tl'], ['United', 'vbn-tl'], ['The', 'at']]
[['.', '.'], ['possibility', 'nn'], ['a', 'at'], ['such', 'abl'], ['prevent', 'vb'], ['to', 'to'], ['found', 'vbn'], ['been', 'ben'], ['has', 'hvz'], ['formula', 'nn'], ['acceptable', 'jj'], ['no', 'at'], ['that', 'cs'], ['apparent', 'jj'], ['is', 'bez'], ['it', 'pps'], ['But', 'cc']]
[['.', '.'], ['conference', 'nn'], ['Geneva', 'np'], ['the', 'at'], ['in', 'in'], ['participating', 'vbg'], ['before', 'in'], ['commission', 'nn'], ['control', 'nn'], ['international', 'jj'], ['the', 'at'], ['by', 'in'], ['cease-fire', 'nn'], ['the', 'at'], ['of', 'in'], ['verification', 'nn'], ['a', 'at'], ['on', 'in'], ['insist', 'vb'], ['to', 'to'], ['continue', 'vb'], ['than', 'cs'], ['rather', 'rb'], [',', ','], ['Laos', 'np'], ['in', 'in'], ['cease-fire', 'nn'], ['facto', 'fw-nn'], ['de', 'fw-in'], ['a', 'at'], ['accept', 'vb'], ['to', 'to'], ['is', 'bez'], ['here', 'rb'], ['inclination', 'nn'], ['The', 'at']]
[['.', '.'], ['make', 'vb'], ['to', 'to'], ['compelled', 'vbn'], ['felt', 'vbn'], ['has', 'hvz'], ['administration', 'nn'], ['Kennedy', 'np'], ['the', 'at'], ['that', 'cs'], ['Laos', 'np'], ['on', 'in'], ['policy', 'nn'], ['of', 'in'], ['modifications', 'nns'], ['the', 'at'], ['of', 'in'], ['another', 'dt'], ['is', 'bez'], ['This', 'dt']]
[['.', 'pps'], ['administration', 'pps'], ['previous', 'pps'], ['the', 'pps'], ['in', 'pps'], ['made', 'pps'], ['errors', 'pps'], ['basic', 'pps'], ['to', 'pps'], ['reaction', 'pps'], ['chain', 'pps'], ['the', 'pps'], ['being', 'pps'], ['as', 'pps'], ['actions', 'pps'], ['these', 'pps'], ['excuses', 'pps'], ['It', 'pps']]
[['.', '.'], ['areas', 'nns'], ['critical', 'jj'], ['the', 'at'], ['in', 'in'], ['policies', 'nns'], ['aid', 'nn'], ['economic', 'jj'], ['and', 'cc'], ['military', 'jj'], ['in', 'in'], ['reforms', 'nns'], ['institute', 'nn'], ['to', 'in'], ['enough', 'ap'], ['time', 'nn'], ['been', 'ben'], ['not', '*'], ['has', 'hvz'], ['there', 'ex'], ['that', 'cs'], ['insist', 'vb'], ['spokesmen', 'nns'], ['Its', 'pp$']]
[[':', ':'], ['arises', 'vbz'], ['question', 'nn'], ['the', 'at'], ['--', '--'], ['world', 'nn'], ['free', 'jj'], ['the', 'at'], ['for', 'in'], ['gain', 'nn'], ['no', 'at'], ['showing', 'vbg'], ['Communists', 'nns-tl'], ['the', 'at'], ['with', 'in'], ['confrontations', 'nn'], ['immediate', 'jj'], ['the', 'at'], ['and', 'cc'], ['--', '--'], ['on', 'in'], ['moving', 'vbg'], ['months', 'nns'], ['the', 'at'], ['with', 'in'], ['But', 'cc']]
[['?', '.'], ['?', '.'], ['aggression', 'nn'], ['Communist', 'jj'], ['with', 'in'], ['dealing', 'vbg'], ['in', 'in'], ['been', 'ben'], ['decisions', 'nns'], ['policy', 'nn'], ['foreign', 'jj'], ['first', 'rb'], ['administration', 'nn'], ['Kennedy', 'np'], ['have', 'hv'], ['effective', 'jj'], ['How', 'wrb']]
[['.', '.'], ['Union', 'nn-tl'], ['Soviet', 'nn-tl'], ['the', 'at'], ['toward', 'in'], ['policy', 'nn'], ['tougher', 'jjr'], ['and', 'cc'], ['firmer', 'jjr'], ['a', 'at'], ['for', 'in'], ['called', 'vbd'], ['Detroit', 'np'], ['in', 'in'], ['Nixon', 'np'], ['M.', 'np'], ['Richard', 'np'], ['Vice-President', 'nn-tl'], ['Former', 'ap']]
[['.', '.'], ['conciliatory', 'jj'], ['too', 'ql'], ['be', 'be'], ['to', 'to'], ['tendency', 'nn'], ["Kennedy's", 'np$'], ['President', 'nn-tl'], ['is', 'bez'], ['feels', 'vbz'], ['he', 'pps'], ['what', 'wdt'], ['of', 'in'], ['critical', 'jj'], ['was', 'bedz'], ['He', 'pps']]
[['.', '.'], ['it', 'ppo'], ['see', 'vb'], ['Republicans', 'nps'], ['as', 'cs'], ['situation', 'nn'], ['the', 'at'], ['understates', 'bez'], ['this', 'dt'], ['feel', 'vb'], ['Congress', 'np'], ['in', 'in'], ['Republicans', 'nps'], ['most', 'ap'], ['that', 'cs'], ['out', 'rp'], ['find', 'vb'], ['to', 'to'], ['poll', 'nn'], ['Gallup', 'jj'], ['a', 'at'], ['take', 'vb'], ['not', '*'], ['does', 'doz'], ['It', 'pps']]
[['.', '.'], ['Cuba', 'np'], ['in', 'in'], ["''", "''"], ['blunders', 'nn'], ['monumental', 'jj'], ['and', 'cc'], ['amateurish', 'jj'], ['``', '``'], ['made', 'vbn'], ['have', 'hv'], ['would', 'md'], [',', ','], ['power', 'nn'], ['in', 'in'], ['been', 'ben'], ['had', 'hvd'], ['they', 'ppss'], ['if', 'cs'], [',', ','], ['Republicans', 'nps'], ['whether', 'cs'], ['of', 'in'], ['question', 'nn'], ['the', 'at'], ['raising', 'vbg'], ['from', 'in'], ['themselves', 'ppls'], ['restrain', 'vb'], ['hardly', 'rb'], ['can', 'md'], ['They', 'ppss']]
[['.', '.'], ['score', 'nn'], ['this', 'dt'], ['on', 'in'], ['administration', 'nn'], ['Kennedy', 'np'], ['the', 'at'], ['attack', 'vb'], ["didn't", 'dod*'], ['he', 'pps'], ['why', 'wrb'], ['asked', 'vbn'], ['being', 'beg'], ['constantly', 'rb'], ['was', 'bedz'], ['he', 'pps'], ['that', 'cs'], ['correspondent', 'nn'], ['this', 'dt'], ['told', 'vbd'], ['senator', 'np'], ['Republican', 'np'], ['One', 'cd']]
[['.', '.'], ['now', 'rb'], ['country', 'nn'], ['the', 'at'], ['in', 'in'], ['unity', 'nn'], ['for', 'in'], ['need', 'nn'], ['the', 'at'], ['to', 'in'], ['agreed', 'vbd'], ['he', 'pps'], ['that', 'cs'], ['was', 'bedz'], [',', ','], ['said', 'vbd'], ['he', 'pps'], [',', ','], ['reply', 'nn'], ['His', 'pp$']]
[['.', '.'], ['first', 'rb'], ['policies', 'nns'], ['administration', 'nn'], ['of', 'in'], ['wisdom', 'nn'], ['the', 'at'], ['question', 'vb'], ['others', 'nns'], ['let', 'vb'], ['to', 'to'], ['politics', 'nn'], ['better', 'jjr'], ['was', 'bedz'], ['it', 'pps'], ['that', 'cs'], ['said', 'vbd'], ['further', 'rbr'], ['he', 'pps'], ['But', 'cc']]
[['.', '.'], ['domination', 'nn'], ['Communist', 'jj'], ['of', 'in'], ['susceptible', 'jj'], ['government', 'nn'], ['coalition', 'nn'], ['a', 'at'], ['was', 'bedz'], ['Laos', 'np'], ['in', 'in'], ['outcome', 'nn'], ['the', 'at'], ['if', 'cs'], ['responsible', 'jj'], ['held', 'vbn'], ['be', 'be'], ['would', 'md'], ['administration', 'nn'], ['Kennedy', 'np'], ['the', 'at'], ['that', 'cs'], [',', ','], ['Committee', 'nn-tl'], ['National', 'jj-tl'], ['Republican', 'jj'], ['the', 'at'], ['of', 'in'], ['chairman', 'nn'], [',', ','], ['Kentucky', 'np'], ['of', 'in'], [')', ')'], ['R', 'np'], ['(', '('], ['Morton', 'np'], ['B.', 'np'], ['Thruston', 'nn-tl'], ['Senator', 'nn-tl'], ['through', 'in'], ['notice', 'nn'], ['served', 'vbn'], ['ago', 'rb'], ['weeks', 'nns'], ['some', 'rb'], ['Republicans', 'nps'], ['The', 'at']]
[['.', '.'], ['educators', 'nns'], ['Technology', 'nn-tl'], ['of', 'in-tl'], ['Institute', 'nn-tl'], ['Massachusetts', 'np'], ['and', 'cc'], [',', ','], ['Brandeis', 'np'], [',', ','], ['University', 'nn-tl'], ['Boston', 'np'], [',', ','], ['Harvard', 'np'], ['70', 'cd'], ['by', 'in'], ['direction', 'nn'], ['another', 'dt'], ['from', 'in'], ['now', 'rb'], ['assailed', 'vbn'], ['been', 'ben'], ['have', 'hv'], ['also', 'rb'], ['policies', 'nns'], ['administration', 'nn'], ['Kennedy', 'np']]
[['.', '.'], ["''", "''"], ['groups', 'nns'], ['exile', 'nn'], ['by', 'in'], ['Cuba', 'np'], ['of', 'in'], ['invasion', 'nn'], ['the', 'at'], ['for', 'in'], ['support', 'nn'], ['further', 'ap'], ['no', 'at'], ['give', 'vb'], ['``', '``'], ['to', 'in'], ['administration', 'nn'], ['the', 'at'], ['with', 'in'], ['pleads', ','], ['group', 'nn'], ['This', 'dt']]
[[';', '.'], [';', '.'], ['relations', 'nns'], ['trade', 'nn'], ['of', 'in'], ['resumption', 'nn'], ['a', 'at'], ['and', 'cc'], ['detente', 'nn'], ['diplomatic', 'jj'], ['a', 'at'], ['for', 'in'], ['working', 'vbg'], ['by', 'in'], ['bloc', 'nn'], ['Communist', 'jj'], ['the', 'at'], ['from', 'in'], ['regime', 'nn'], ['Castro', 'np'], ['the', 'at'], ['detach', 'vb'], ['to', 'to'], ['instead', 'rb'], ['seek', 'vb'], ['``', '``'], ['States', 'nns-tl'], ['United', 'vbn-tl'], ['the', 'at'], ['that', 'cs'], ['recommends', 'vbz'], ['It', 'pps']]
[['.', '.'], ["''", "''"], ['feeds', 'nns'], ['nationalism', 'nn'], ['totalitarian', 'jj'], ['which', 'wdt'], ['on', 'in'], ['conditions', 'nns'], ['social', 'jj'], ['the', 'at'], ['America', 'np'], ['Latin', 'np'], ['of', 'in'], ['parts', 'nns'], ['other', 'ap'], ['in', 'in'], ['eliminating', 'vbg'], ['on', 'in'], ['efforts', 'nns'], ['constructive', 'jj'], ['its', 'pp$'], ['concentrate', 'vb'], ['and', 'cc']]
[['.', '.'], ['provocation', 'nn'], ['specific', 'jj'], ['without', 'in'], ['Cuba', 'np'], ['in', 'in'], ['intervention', 'nn'], ['oppose', 'vb'], ['would', 'md'], [',', ','], ['part', 'nn'], ['his', 'pp$'], ['for', 'in'], [',', ','], ['Nixon', 'np'], ['Mr.', 'np']]
[['.', '.'], ['tolerated', 'vbn'], ['be', 'be'], ['not', '*'], ['would', 'md'], ['it', 'pps'], ['that', 'cs'], ['Cuba', 'np'], ['to', 'in'], ['arms', 'nns'], ['further', 'ap'], ['any', 'dti'], ['shipped', 'vbn'], ['countries', 'nns'], ['Communist', 'jj'], ['if', 'cs'], ['that', 'cs'], ['clearly', 'rb'], ['state', 'nn'], ['Kennedy', 'np'], ['President', 'nn-tl'], ['that', 'cs'], ['recommend', 'vb'], ['did', 'dod'], ['he', 'pps'], ['But', 'cc']]
[['.', '.'], ['professors', 'nns'], ['the', 'at'], ['and', 'cc'], ['Nixon', 'np'], ['Mr.', 'np'], ['by', 'in'], ['both', 'abx'], ['voiced', 'vbd'], ['opinions', 'nns'], ['the', 'at'], [',', ','], ['generally', 'rb'], [',', ','], ['respected', 'vbd'], ['that', 'wps'], ['program', 'nn'], ['a', 'at'], ['blended', 'vbn'], ['had', 'hvd'], ['Kennedy', 'np'], ['President', 'nn-tl'], ['that', 'cs'], ['said', 'vbn'], ['have', 'hv'], ['would', 'md'], ['observer', 'nn'], ['any', 'dti'], ['almost', 'rb'], [',', ','], ['Laos', 'np'], ['in', 'in'], ['victories', 'nns'], ['military', 'jj'], ['Communist', 'jj'], ['the', 'at'], ['and', 'cc'], ['fiasco', 'nn'], ['Cuban', 'jj'], ['the', 'at'], ['Until', 'in']]
[['.', '.'], ['administration', 'nn'], ['the', 'at'], ['of', 'in'], ['period', 'nn'], ['formative', 'nn'], ['the', 'at'], ['during', 'in'], ['would', 'md'], ['administration', 'nn'], ['Eisenhower', 'np'], ['the', 'at'], ['than', 'cs'], ['tougher', 'jjr'], ['even', 'rb'], ['react', 'vb'], ['would', 'md'], ['administration', 'nn'], ['new', 'jj'], ['the', 'at'], ['that', 'cs'], [',', ','], ['disclosed', 'vbd'], ['source', 'nn'], ['official', 'jj'], ['high', 'jj'], ['a', 'at'], [',', ','], ['channels', 'nns'], ['diplomatic', 'jj'], ['through', 'in'], ['Kremlin', 'np'], ['the', 'at'], ['informed', 'vbd'], ['he', 'pps'], ['administration', 'nn'], ['his', 'pp$'], ['in', 'in'], ['early', 'jj'], ['Very', 'ql']]
[['.', '.'], ['statements', 'nns'], ['administration', 'nn'], ['from', 'in'], ['pricking', ','], ['pin', 'nn'], ['remove', 'vb'], ['to', 'to'], ['made', 'vbn'], ['were', 'bed'], ['efforts', 'nns'], ['Strenuous', 'at']]
[['.', '.'], ['changed', 'vbn'], ['and', 'cc'], ['reviewed', 'vbn'], ['were', 'bed'], ['negotiations', 'nns'], ['ban', 'nn'], ['test', 'nn'], ['nuclear', 'jj'], ['on', 'in'], ['Policies', 'rb']]
[['.', '.'], ['kind', 'nn'], ['in', 'in'], ['response', 'nn'], ['no', 'at'], ['been', 'ben'], ['has', 'hvz'], ['there', 'rb'], ['far', 'ql'], ['thus', 'rb'], ['But', 'cc']]
[['.', 'pps'], ['nations', 'pps'], ['recipient', 'pps'], ['in', 'pps'], ['reform', 'pps'], ['political', 'pps'], ['encourage', 'pps'], ['to', 'pps'], ['and', 'pps'], ['aid', 'pps'], ['economic', 'pps'], ['to', 'pps'], ['emphasis', 'pps'], ['greater', 'pps'], ['give', 'pps'], ['to', 'pps'], ['revamped', 'pps'], ['were', 'pps'], ['programs', 'pps'], ['aid', 'pps'], ['Foreign', 'pps']]
[['.', '.'], ['gesture', 'nn'], ['useless', 'jj'], ['a', 'at'], ['as', 'cs'], ['waters', 'nns'], ['Asian', 'jj'], ['Southeast', 'jj-tl'], ['into', 'in'], ['fleet', 'nn'], ['naval', 'jj'], ['a', 'at'], ['sailing', 'vbg'], ['by', 'in'], ['determination', 'nn'], ['show', 'nn'], ['to', 'in'], ['efforts', 'nns'], ['administration', 'nn'], ['Eisenhower', 'np'], ['the', 'at'], ['at', 'in'], ['looked', 'vbd'], ['administration', 'nn'], ['the', 'at'], [',', ','], ['Laos', 'np'], ['In', 'in']]
[['.', '.'], ['Laos', 'np'], ['in', 'in'], ['situation', 'nn'], ['military', 'jj'], ['the', 'at'], ["''", "''"], ['freeze', 'vb'], ['``', '``'], ['to', 'in'], ['Communists', 'nns-tl'], ['the', 'at'], ['asked', 'vbd'], ['it', 'pps'], ['again', 'rb'], ['and', 'cc'], ['Again', 'rb']]
[['.', '.'], ['rate', 'nn'], ['faster', 'jjr'], ['even', 'ql'], ['an', 'at'], ['at', 'in'], ['Lao', 'np'], ['Pathet', 'np'], ['the', 'at'], ['aided', 'vbd'], ['Communists', 'nns-tl'], ['the', 'at'], ['But', 'cc']]
[['.', '.'], ['Organization', 'nn-tl'], ['Treaty', 'nn-tl'], ['Asia', 'np-tl'], ['Southeast', 'jj-tl'], ['the', 'at'], ['before', 'in'], ['matter', 'nn'], ['the', 'at'], ['laid', 'vbd'], ['and', 'cc'], ["''", "''"], ['service', 'nn'], ['great', 'jj'], ['``', '``'], ['a', 'at'], ['performing', 'vbg'], ['for', 'in'], ['them', 'ppo'], ['acclaimed', 'vbn'], ['spokesmen', 'nns'], ['administration', 'nn'], [',', ','], ['build-up', 'nn'], ['huge', 'jj'], ['the', 'at'], ['exposed', 'vbn'], ['and', 'cc'], ['territory', 'nn'], ['Lao', 'np'], ['Pathet', 'np'], ['into', 'in'], ['went', 'vbd'], ['correspondents', 'nns'], ['several', 'ap'], ['after', 'in'], ['And', 'cc']]
[['.', '.'], ['Laos', 'np'], ['in', 'in'], ['losses', 'nns'], ['military', 'jj'], ['the', 'at'], ['with', 'in'], ['coping', 'vbg'], ['for', 'in'], ['plans', 'nns'], ['contingency', 'nn'], ['prepared', 'vbn'], ['and', 'cc'], ['up', 'rp'], ['steamed', 'vbn'], ['was', 'bedz'], ['SEATO', 'nn']]
[['.', '.'], ['Laos', 'np'], ['over', 'in'], ['war', 'nn'], ['all-out', 'jj'], ['an', 'at'], ['or', 'cc'], ['limited', 'vbn'], ['a', 'at'], ['risk', 'vb'], ['to', 'to'], ['want', 'vb'], ['to', 'to'], ['States', 'nns-tl'], ['United', 'vbn-tl'], ['the', 'at'], ['for', 'in'], ['time', 'nn'], ['one', 'cd'], ['any', 'dti'], ['at', 'in'], ['provocation', 'nn'], ['sufficient', 'jj'], ['gave', 'vbd'], ['never', 'rb'], ['Communists', 'nns-tl'], ['the', 'at'], ['But', 'cc']]
[['.', '.'], ['however', 'rb'], [',', ','], ['disagreed', 'vbd'], ['nations', 'nns'], ['SEATO', 'nn'], ['Some', 'dti'], ['(', '(']]
[['.', '.'], ['Nam', 'np-tl'], ['Viet', 'np-tl'], ['South', 'jj-tl'], ['and', 'cc'], ['Thailand', 'np'], [',', ','], ['neighbors', 'nns'], ['determined', 'vbn'], ['more', 'ql'], ['its', 'pp$'], ['unlike', 'in'], [',', ','], ['ally', 'nn'], ['an', 'at'], ['be', 'be'], ['to', 'to'], ['suited', 'vbn'], ['ill', 'rb'], ['was', 'bedz'], ['Laos', 'np'], ['that', 'cs'], ['concluded', 'vbd'], ['early', 'rb'], ['very', 'ql'], ['had', 'hvd'], ['administration', 'nn'], ['the', 'at'], ['that', 'cs'], ['complication', 'nn'], ['further', 'ap'], ['the', 'at'], ['was', 'bedz'], ['There', 'ex']]
[['.', '.'], ['Laos', 'np'], ['neutralized', 'vbn'], ['a', 'at'], ['of', 'in'], ['favor', 'nn'], ['in', 'in'], ['itself', 'ppl'], ['declared', 'vbd'], ['administration', 'nn'], ['The', 'at']]
[['.', '.'], ['Army', 'nn-tl'], ['Lao', 'np-tl'], ['Royal', 'jj-tl'], ['the', 'at'], ['in', 'in'], ['spirit', 'nn'], ['fighting', 'vbg'], ['much', 'rb'], ['spark', 'nn'], ['to', 'in'], ['appear', 'vb'], ['did', 'dod'], ['never', 'rb'], [',', ','], ['government', 'nn'], ["''", "''"], ['neutralist', 'nn'], ['``', '``'], ['Phouma', 'np'], ['Souvanna', 'np'], ['the', 'at'], ['against', 'in'], ['revolt', 'nn'], ['a', 'at'], ['in', 'in'], ['helped', 'vbn'], ['had', 'hvd'], ['States', 'nns-tl'], ['United', 'vbn-tl'], ['the', 'at'], ['which', 'wdt'], [',', ','], ['government', 'nn'], ['pro-Western', 'jj'], ['The', 'at']]