english_train.conll 149 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480
1	in	in	IN	IN	_	43	PP
2	an	an	DT	DT	_	5	DEP
3	oct.	oct.	NNP	NNP	_	5	DEP
4	19	19	CD	CD	_	5	DEP
5	review	review	NN	NN	_	1	NP
6	of	of	IN	IN	_	5	PP
7	``	``	``	``	_	9	DEP
8	the	the	DT	DT	_	9	DEP
9	misanthrope	misanthrope	NN	NN	_	6	NP
10	''	''	''	''	_	9	DEP
11	at	at	IN	IN	_	9	PP
12	chicago	chicago	NNP	NNP	_	13	DEP
13	's	's	POS	POS	_	15	NP
14	goodman	goodman	NNP	NNP	_	15	DEP
15	theatre	theatre	NNP	NNP	_	11	NP
16	(	(	-LRB-	-LRB-	_	30	DEP
17	``	``	``	``	_	30	DEP
18	revitalized	revitalized	VBN	VBN	_	19	DEP
19	classics	classics	NNS	NNS	_	20	NP-SBJ
20	take	take	VBP	VBP	_	30	S
21	the	the	DT	DT	_	22	DEP
22	stage	stage	NN	NN	_	20	NP-OBJ
23	in	in	IN	IN	_	20	PP
24	windy	windy	NNP	NNP	_	25	DEP
25	city	city	NNP	NNP	_	23	NP
26	,	,	,	,	_	30	DEP
27	''	''	''	''	_	30	DEP
28	leisure	leisure	NN	NN	_	30	DEP
29	&	&	CC	CC	_	30	DEP
30	arts	arts	NNS	NNS	_	5	PRN
31	)	)	-RRB-	-RRB-	_	30	DEP
32	,	,	,	,	_	43	DEP
33	the	the	DT	DT	_	34	DEP
34	role	role	NN	NN	_	43	NP-SBJ
35	of	of	IN	IN	_	34	PP
36	celimene	celimene	NNP	NNP	_	35	NP
37	,	,	,	,	_	34	DEP
38	played	played	VBN	VBN	_	34	VP
39	by	by	IN	IN	_	38	PP
40	kim	kim	NNP	NNP	_	41	DEP
41	cattrall	cattrall	NNP	NNP	_	39	NP
42	,	,	,	,	_	34	DEP
43	was	was	VBD	VBD	_	0	ROOT
44	mistakenly	mistakenly	RB	RB	_	45	ADVP
45	attributed	attributed	VBN	VBN	_	43	VP
46	to	to	TO	TO	_	45	PP
47	christina	christina	NNP	NNP	_	48	DEP
48	haag	haag	NNP	NNP	_	46	NP
49	.	.	.	.	_	43	DEP

1	ms.	ms.	NNP	NNP	_	2	DEP
2	haag	haag	NNP	NNP	_	3	NP-SBJ
3	plays	plays	VBZ	VBZ	_	0	ROOT
4	elianti	elianti	NNP	NNP	_	3	NP-OBJ
5	.	.	.	.	_	3	DEP

1	rolls-royce	rolls-royce	NNP	NNP	_	4	DEP
2	motor	motor	NNP	NNP	_	4	DEP
3	cars	cars	NNPS	NNPS	_	4	DEP
4	inc.	inc.	NNP	NNP	_	5	NP-SBJ
5	said	said	VBD	VBD	_	0	ROOT
6	it	it	PRP	PRP	_	7	NP-SBJ
7	expects	expects	VBZ	VBZ	_	5	SBAR
8	its	its	PRP$	PRP$	_	10	DEP
9	u.s.	u.s.	NNP	NNP	_	10	DEP
10	sales	sales	NNS	NNS	_	12	NP-SBJ
11	to	to	TO	TO	_	12	DEP
12	remain	remain	VB	VB	_	7	S
13	steady	steady	JJ	JJ	_	12	ADJP
14	at	at	IN	IN	_	12	PP
15	about	about	IN	IN	_	17	QP
16	1,200	1,200	CD	CD	_	15	DEP
17	cars	cars	NNS	NNS	_	14	NP
18	in	in	IN	IN	_	12	PP
19	1990	1990	CD	CD	_	18	NP
20	.	.	.	.	_	5	DEP

1	the	the	DT	DT	_	4	DEP
2	luxury	luxury	NN	NN	_	4	DEP
3	auto	auto	NN	NN	_	4	DEP
4	maker	maker	NN	NN	_	7	NP-SBJ
5	last	last	JJ	JJ	_	6	DEP
6	year	year	NN	NN	_	7	NP
7	sold	sold	VBD	VBD	_	0	ROOT
8	1,214	1,214	CD	CD	_	9	DEP
9	cars	cars	NNS	NNS	_	7	NP-OBJ
10	in	in	IN	IN	_	7	PP
11	the	the	DT	DT	_	12	DEP
12	u.s.	u.s.	NNP	NNP	_	10	NP

1	howard	howard	NNP	NNP	_	2	DEP
2	mosher	mosher	NNP	NNP	_	8	NP
3	,	,	,	,	_	8	DEP
4	president	president	NN	NN	_	8	NP
5	and	and	CC	CC	_	8	DEP
6	chief	chief	JJ	JJ	_	8	DEP
7	executive	executive	NN	NN	_	8	DEP
8	officer	officer	NN	NN	_	10	NP-SBJ
9	,	,	,	,	_	8	DEP
10	said	said	VBD	VBD	_	0	ROOT
11	he	he	PRP	PRP	_	12	NP-SBJ
12	anticipates	anticipates	VBZ	VBZ	_	10	SBAR
13	growth	growth	NN	NN	_	12	NP-OBJ
14	for	for	IN	IN	_	13	PP
15	the	the	DT	DT	_	18	DEP
16	luxury	luxury	NN	NN	_	18	DEP
17	auto	auto	NN	NN	_	18	DEP
18	maker	maker	NN	NN	_	14	NP
19	in	in	IN	IN	_	13	PP
20	britain	britain	NNP	NNP	_	22	DEP
21	and	and	CC	CC	_	22	DEP
22	europe	europe	NNP	NNP	_	19	NP
23	,	,	,	,	_	19	DEP
24	and	and	CC	CC	_	19	DEP
25	in	in	IN	IN	_	19	PP
26	far	far	JJ	JJ	_	27	DEP
27	eastern	eastern	JJ	JJ	_	28	ADJP
28	markets	markets	NNS	NNS	_	25	NP
29	.	.	.	.	_	10	DEP

1	bell	bell	NNP	NNP	_	3	DEP
2	industries	industries	NNP	NNP	_	3	DEP
3	inc.	inc.	NNP	NNP	_	4	NP-SBJ
4	increased	increased	VBD	VBD	_	0	ROOT
5	its	its	PRP$	PRP$	_	6	DEP
6	quarterly	quarterly	NN	NN	_	4	NP-OBJ
7	to	to	TO	TO	_	4	PP
8	10	10	CD	CD	_	9	DEP
9	cents	cents	NNS	NNS	_	7	NP
10	from	from	IN	IN	_	4	PP
11	seven	seven	CD	CD	_	12	DEP
12	cents	cents	NNS	NNS	_	14	NP
13	a	a	DT	DT	_	14	DEP
14	share	share	NN	NN	_	10	NP
15	.	.	.	.	_	4	DEP

1	the	the	DT	DT	_	3	DEP
2	new	new	JJ	JJ	_	3	DEP
3	rate	rate	NN	NN	_	4	NP-SBJ
4	will	will	MD	MD	_	0	ROOT
5	be	be	VB	VB	_	4	VP
6	payable	payable	JJ	JJ	_	5	ADJP
7	feb.	feb.	NNP	NNP	_	6	NP
8	15	15	CD	CD	_	7	DEP
9	.	.	.	.	_	4	DEP

1	a	a	DT	DT	_	3	DEP
2	record	record	NN	NN	_	3	DEP
3	date	date	NN	NN	_	4	NP-SBJ
4	has	has	VBZ	VBZ	_	0	ROOT
5	n't	n't	RB	RB	_	4	DEP
6	been	been	VBN	VBN	_	4	VP
7	set	set	VBN	VBN	_	6	VP
8	.	.	.	.	_	4	DEP

1	bell	bell	NNP	NNP	_	8	NP-SBJ
2	,	,	,	,	_	1	DEP
3	based	based	VBN	VBN	_	1	VP
4	in	in	IN	IN	_	3	PP
5	los	los	NNP	NNP	_	6	DEP
6	angeles	angeles	NNP	NNP	_	4	NP
7	,	,	,	,	_	1	DEP
8	makes	makes	VBZ	VBZ	_	0	ROOT
9	and	and	CC	CC	_	8	DEP
10	distributes	distributes	VBZ	VBZ	_	8	DEP
11	electronic	electronic	JJ	JJ	_	16	UCP
12	,	,	,	,	_	11	DEP
13	computer	computer	NN	NN	_	11	DEP
14	and	and	CC	CC	_	11	DEP
15	building	building	NN	NN	_	11	DEP
16	products	products	NNS	NNS	_	8	NP-OBJ
17	.	.	.	.	_	8	DEP

1	investors	investors	NNS	NNS	_	2	NP-SBJ
2	are	are	VBP	VBP	_	0	ROOT
3	appealing	appealing	VBG	VBG	_	2	VP
4	to	to	TO	TO	_	3	PP
5	the	the	DT	DT	_	9	DEP
6	securities	securities	NNPS	NNPS	_	9	DEP
7	and	and	CC	CC	_	9	DEP
8	exchange	exchange	NNP	NNP	_	9	DEP
9	commission	commission	NNP	NNP	_	4	NP
10	not	not	RB	RB	_	12	DEP
11	to	to	TO	TO	_	12	DEP
12	limit	limit	VB	VB	_	3	S
13	their	their	PRP$	PRP$	_	14	DEP
14	access	access	NN	NN	_	12	NP-OBJ
15	to	to	TO	TO	_	14	PP
16	information	information	NN	NN	_	15	NP
17	about	about	IN	IN	_	16	PP
18	stock	stock	NN	NN	_	21	DEP
19	purchases	purchases	NNS	NNS	_	21	DEP
20	and	and	CC	CC	_	21	DEP
21	sales	sales	NNS	NNS	_	17	NP
22	by	by	IN	IN	_	21	PP
23	corporate	corporate	JJ	JJ	_	24	DEP
24	insiders	insiders	NNS	NNS	_	22	NP
25	.	.	.	.	_	2	DEP

1	a	a	DT	DT	_	3	DEP
2	sec	sec	NNP	NNP	_	3	DEP
3	proposal	proposal	NN	NN	_	12	NP-SBJ
4	to	to	TO	TO	_	5	DEP
5	ease	ease	VB	VB	_	3	S
6	reporting	reporting	NN	NN	_	7	DEP
7	requirements	requirements	NNS	NNS	_	5	NP-OBJ
8	for	for	IN	IN	_	7	PP
9	some	some	DT	DT	_	11	DEP
10	company	company	NN	NN	_	11	DEP
11	executives	executives	NNS	NNS	_	8	NP
12	would	would	MD	MD	_	32	S
13	undermine	undermine	VB	VB	_	12	VP
14	the	the	DT	DT	_	15	DEP
15	usefulness	usefulness	NN	NN	_	13	NP-OBJ
16	of	of	IN	IN	_	15	PP
17	information	information	NN	NN	_	16	NP
18	on	on	IN	IN	_	17	PP
19	insider	insider	NN	NN	_	20	DEP
20	trades	trades	NNS	NNS	_	18	NP
21	as	as	IN	IN	_	15	PP
22	a	a	DT	DT	_	24	DEP
23	stock-picking	stock-picking	JJ	JJ	_	24	DEP
24	tool	tool	NN	NN	_	21	NP
25	,	,	,	,	_	32	DEP
26	individual	individual	JJ	JJ	_	27	DEP
27	investors	investors	NNS	NNS	_	31	NP
28	and	and	CC	CC	_	31	DEP
29	professional	professional	JJ	JJ	_	31	DEP
30	money	money	NN	NN	_	31	DEP
31	managers	managers	NNS	NNS	_	32	NP-SBJ
32	contend	contend	VBP	VBP	_	0	ROOT
33	.	.	.	.	_	32	DEP

1	they	they	PRP	PRP	_	2	NP-SBJ
2	make	make	VBP	VBP	_	0	ROOT
3	the	the	DT	DT	_	4	DEP
4	argument	argument	NN	NN	_	2	NP-OBJ
5	in	in	IN	IN	_	2	PP
6	letters	letters	NNS	NNS	_	5	NP
7	to	to	TO	TO	_	6	PP
8	the	the	DT	DT	_	9	DEP
9	agency	agency	NN	NN	_	7	NP
10	about	about	IN	IN	_	6	PP
11	rule	rule	NN	NN	_	12	DEP
12	changes	changes	NNS	NNS	_	10	NP
13	proposed	proposed	VBD	VBD	_	12	VP
14	this	this	DT	DT	_	16	DEP
15	past	past	JJ	JJ	_	16	DEP
16	summer	summer	NN	NN	_	13	NP
17	that	that	IN	IN	_	12	SBAR
18	,	,	,	,	_	17	DEP
19	among	among	IN	IN	_	23	PP
20	other	other	JJ	JJ	_	21	DEP
21	things	things	NNS	NNS	_	19	NP
22	,	,	,	,	_	23	DEP
23	would	would	MD	MD	_	17	S
24	exempt	exempt	VB	VB	_	23	VP
25	many	many	JJ	JJ	_	27	DEP
26	middle-management	middle-management	JJ	JJ	_	27	DEP
27	executives	executives	NNS	NNS	_	24	NP-OBJ
28	from	from	IN	IN	_	24	PP
29	reporting	reporting	VBG	VBG	_	28	S
30	trades	trades	NNS	NNS	_	29	NP-OBJ
31	in	in	IN	IN	_	30	PP
32	their	their	PRP$	PRP$	_	35	DEP
33	own	own	JJ	JJ	_	35	DEP
34	companies	companies	NNS	NNS	_	35	DEP
35	'	'	POS	POS	_	36	NP
36	shares	shares	NNS	NNS	_	31	NP
37	.	.	.	.	_	2	DEP

1	the	the	DT	DT	_	3	DEP
2	proposed	proposed	VBN	VBN	_	3	DEP
3	changes	changes	NNS	NNS	_	5	NP-SBJ
4	also	also	RB	RB	_	5	ADVP
5	would	would	MD	MD	_	0	ROOT
6	allow	allow	VB	VB	_	5	VP
7	executives	executives	NNS	NNS	_	9	NP-SBJ
8	to	to	TO	TO	_	9	DEP
9	report	report	VB	VB	_	6	S
10	exercises	exercises	NNS	NNS	_	9	NP-OBJ
11	of	of	IN	IN	_	10	PP
12	options	options	NNS	NNS	_	11	NP
13	later	later	RBR	RBR	_	9	ADVP
14	and	and	CC	CC	_	13	DEP
15	less	less	RBR	RBR	_	16	DEP
16	often	often	RB	RB	_	13	ADVP
17	.	.	.	.	_	5	DEP

1	many	many	JJ	JJ	_	5	NP-SBJ
2	of	of	IN	IN	_	1	PP
3	the	the	DT	DT	_	4	DEP
4	letters	letters	NNS	NNS	_	2	NP
5	maintain	maintain	VBP	VBP	_	0	ROOT
6	that	that	IN	IN	_	5	SBAR
7	investor	investor	NN	NN	_	8	DEP
8	confidence	confidence	NN	NN	_	9	NP-SBJ
9	has	has	VBZ	VBZ	_	25	S
10	been	been	VBN	VBN	_	9	VP
11	so	so	RB	RB	_	12	ADVP
12	shaken	shaken	VBN	VBN	_	10	VP
13	by	by	IN	IN	_	12	PP
14	the	the	DT	DT	_	18	DEP
15	1987	1987	CD	CD	_	18	DEP
16	stock	stock	NN	NN	_	18	DEP
17	market	market	NN	NN	_	18	DEP
18	crash	crash	NN	NN	_	13	NP
19	--	--	:	:	_	25	DEP
20	and	and	CC	CC	_	25	DEP
21	the	the	DT	DT	_	22	DEP
22	markets	markets	NNS	NNS	_	25	NP-SBJ
23	already	already	RB	RB	_	25	ADVP
24	so	so	RB	RB	_	25	ADVP
25	stacked	stacked	VBN	VBN	_	6	S
26	against	against	IN	IN	_	25	PP
27	the	the	DT	DT	_	29	DEP
28	little	little	JJ	JJ	_	29	DEP
29	guy	guy	NN	NN	_	26	NP
30	--	--	:	:	_	25	DEP
31	that	that	IN	IN	_	25	SBAR
32	any	any	DT	DT	_	33	DEP
33	decrease	decrease	NN	NN	_	39	NP-SBJ
34	in	in	IN	IN	_	33	PP
35	information	information	NN	NN	_	34	NP
36	on	on	IN	IN	_	35	PP
37	insider-trading	insider-trading	NN	NN	_	38	DEP
38	patterns	patterns	NNS	NNS	_	36	NP
39	might	might	MD	MD	_	31	S
40	prompt	prompt	VB	VB	_	39	VP
41	individuals	individuals	NNS	NNS	_	43	NP-SBJ
42	to	to	TO	TO	_	43	DEP
43	get	get	VB	VB	_	40	S
44	out	out	RB	RB	_	43	ADVP
45	of	of	IN	IN	_	44	PP
46	stocks	stocks	NNS	NNS	_	45	NP
47	altogether	altogether	RB	RB	_	43	ADVP
48	.	.	.	.	_	5	DEP

1	``	``	``	``	_	18	DEP
2	the	the	DT	DT	_	3	DEP
3	sec	sec	NNP	NNP	_	4	NP-SBJ
4	has	has	VBZ	VBZ	_	18	S
5	historically	historically	RB	RB	_	4	ADVP
6	paid	paid	VBN	VBN	_	4	VP
7	obeisance	obeisance	NN	NN	_	6	NP-OBJ
8	to	to	TO	TO	_	6	PP
9	the	the	DT	DT	_	10	DEP
10	ideal	ideal	NN	NN	_	8	NP
11	of	of	IN	IN	_	10	PP
12	a	a	DT	DT	_	15	DEP
13	level	level	JJ	JJ	_	15	DEP
14	playing	playing	NN	NN	_	15	DEP
15	field	field	NN	NN	_	11	NP
16	,	,	,	,	_	18	DEP
17	''	''	''	''	_	18	DEP
18	wrote	wrote	VBD	VBD	_	0	ROOT
19	clyde	clyde	NNP	NNP	_	21	DEP
20	s.	s.	NNP	NNP	_	21	DEP
21	mcgregor	mcgregor	NNP	NNP	_	18	NP-SBJ
22	of	of	IN	IN	_	21	PP
23	winnetka	winnetka	NNP	NNP	_	25	NP
24	,	,	,	,	_	25	DEP
25	ill.	ill.	NNP	NNP	_	22	NP
26	,	,	,	,	_	25	DEP
27	in	in	IN	IN	_	18	PP
28	one	one	CD	CD	_	27	NP
29	of	of	IN	IN	_	28	PP
30	the	the	DT	DT	_	32	DEP
31	92	92	CD	CD	_	32	DEP
32	letters	letters	NNS	NNS	_	29	NP
33	the	the	DT	DT	_	34	DEP
34	agency	agency	NN	NN	_	35	NP-SBJ
35	has	has	VBZ	VBZ	_	32	SBAR
36	received	received	VBN	VBN	_	35	VP
37	since	since	IN	IN	_	36	SBAR
38	the	the	DT	DT	_	39	DEP
39	changes	changes	NNS	NNS	_	40	NP-SBJ
40	were	were	VBD	VBD	_	37	S
41	proposed	proposed	VBN	VBN	_	40	VP
42	aug.	aug.	NNP	NNP	_	41	NP
43	17	17	CD	CD	_	42	DEP
44	.	.	.	.	_	18	DEP

1	``	``	``	``	_	5	DEP
2	apparently	apparently	RB	RB	_	5	ADVP
3	the	the	DT	DT	_	4	DEP
4	commission	commission	NN	NN	_	5	NP-SBJ
5	did	did	VBD	VBD	_	0	ROOT
6	not	not	RB	RB	_	5	DEP
7	really	really	RB	RB	_	5	ADVP
8	believe	believe	VB	VB	_	5	VP
9	in	in	IN	IN	_	8	PP
10	this	this	DT	DT	_	11	DEP
11	ideal	ideal	NN	NN	_	9	NP
12	.	.	.	.	_	5	DEP
13	''	''	''	''	_	5	DEP

1	currently	currently	RB	RB	_	5	ADVP
2	,	,	,	,	_	5	DEP
3	the	the	DT	DT	_	4	DEP
4	rules	rules	NNS	NNS	_	5	NP-SBJ
5	force	force	VBP	VBP	_	0	ROOT
6	executives	executives	NNS	NNS	_	12	NP
7	,	,	,	,	_	12	DEP
8	directors	directors	NNS	NNS	_	12	NP
9	and	and	CC	CC	_	12	DEP
10	other	other	JJ	JJ	_	12	DEP
11	corporate	corporate	JJ	JJ	_	12	DEP
12	insiders	insiders	NNS	NNS	_	14	NP-SBJ
13	to	to	TO	TO	_	14	DEP
14	report	report	VB	VB	_	5	S
15	purchases	purchases	NNS	NNS	_	17	DEP
16	and	and	CC	CC	_	17	DEP
17	sales	sales	NNS	NNS	_	14	NP-OBJ
18	of	of	IN	IN	_	17	PP
19	their	their	PRP$	PRP$	_	21	DEP
20	companies	companies	NNS	NNS	_	21	DEP
21	'	'	POS	POS	_	22	NP
22	shares	shares	NNS	NNS	_	18	NP
23	within	within	IN	IN	_	14	PP
24	about	about	IN	IN	_	26	QP
25	a	a	DT	DT	_	24	DEP
26	month	month	NN	NN	_	23	NP
27	after	after	IN	IN	_	26	PP
28	the	the	DT	DT	_	29	DEP
29	transaction	transaction	NN	NN	_	27	NP
30	.	.	.	.	_	5	DEP

1	but	but	CC	CC	_	14	DEP
2	about	about	IN	IN	_	4	QP
3	25	25	CD	CD	_	2	DEP
4	%	%	NN	NN	_	14	NP-SBJ
5	of	of	IN	IN	_	4	PP
6	the	the	DT	DT	_	7	DEP
7	insiders	insiders	NNS	NNS	_	5	NP
8	,	,	,	,	_	14	DEP
9	according	according	VBG	VBG	_	14	PP
10	to	to	TO	TO	_	9	PP
11	sec	sec	NNP	NNP	_	12	DEP
12	figures	figures	NNS	NNS	_	10	NP
13	,	,	,	,	_	14	DEP
14	file	file	VBP	VBP	_	0	ROOT
15	their	their	PRP$	PRP$	_	16	DEP
16	reports	reports	NNS	NNS	_	14	NP-OBJ
17	late	late	RB	RB	_	14	ADVP
18	.	.	.	.	_	14	DEP

1	the	the	DT	DT	_	2	DEP
2	changes	changes	NNS	NNS	_	3	NP-SBJ
3	were	were	VBD	VBD	_	27	S
4	proposed	proposed	VBN	VBN	_	3	VP
5	in	in	IN	IN	_	4	PP
6	an	an	DT	DT	_	7	DEP
7	effort	effort	NN	NN	_	5	NP
8	to	to	TO	TO	_	9	DEP
9	streamline	streamline	VB	VB	_	7	S
10	federal	federal	JJ	JJ	_	11	DEP
11	bureaucracy	bureaucracy	NN	NN	_	9	NP-OBJ
12	and	and	CC	CC	_	9	DEP
13	boost	boost	VB	VB	_	9	VP
14	compliance	compliance	NN	NN	_	13	NP-OBJ
15	by	by	IN	IN	_	14	PP
16	the	the	DT	DT	_	17	DEP
17	executives	executives	NNS	NNS	_	15	NP
18	``	``	``	``	_	17	DEP
19	who	who	WP	WP	_	17	SBAR
20	are	are	VBP	VBP	_	19	S
21	really	really	RB	RB	_	20	ADVP
22	calling	calling	VBG	VBG	_	20	VP
23	the	the	DT	DT	_	24	DEP
24	shots	shots	NNS	NNS	_	22	NP-OBJ
25	,	,	,	,	_	27	DEP
26	''	''	''	''	_	27	DEP
27	said	said	VBD	VBD	_	0	ROOT
28	brian	brian	NNP	NNP	_	29	DEP
29	lane	lane	NNP	NNP	_	32	NP
30	,	,	,	,	_	32	DEP
31	special	special	JJ	JJ	_	32	DEP
32	counsel	counsel	NN	NN	_	27	NP-SBJ
33	at	at	IN	IN	_	32	PP
34	the	the	DT	DT	_	36	DEP
35	sec	sec	NNP	NNP	_	36	DEP
36	's	's	POS	POS	_	37	NP
37	office	office	NN	NN	_	33	NP
38	of	of	IN	IN	_	37	PP
39	disclosure	disclosure	NN	NN	_	40	DEP
40	policy	policy	NN	NN	_	38	NP
41	,	,	,	,	_	37	DEP
42	which	which	WDT	WDT	_	37	SBAR
43	proposed	proposed	VBD	VBD	_	42	S
44	the	the	DT	DT	_	45	DEP
45	changes	changes	NNS	NNS	_	43	NP-OBJ
46	.	.	.	.	_	27	DEP

1	investors	investors	NNS	NNS	_	7	NP
2	,	,	,	,	_	7	DEP
3	money	money	NN	NN	_	4	DEP
4	managers	managers	NNS	NNS	_	7	NP
5	and	and	CC	CC	_	7	DEP
6	corporate	corporate	JJ	JJ	_	7	DEP
7	officials	officials	NNS	NNS	_	8	NP-SBJ
8	had	had	VBD	VBD	_	20	S
9	until	until	IN	IN	_	8	PP
10	today	today	NN	NN	_	9	NP
11	to	to	TO	TO	_	12	DEP
12	comment	comment	VB	VB	_	8	S
13	on	on	IN	IN	_	12	PP
14	the	the	DT	DT	_	15	DEP
15	proposals	proposals	NNS	NNS	_	13	NP
16	,	,	,	,	_	20	DEP
17	and	and	CC	CC	_	20	DEP
18	the	the	DT	DT	_	19	DEP
19	issue	issue	NN	NN	_	20	NP-SBJ
20	has	has	VBZ	VBZ	_	34	S
21	produced	produced	VBN	VBN	_	20	VP
22	more	more	JJR	JJR	_	23	DEP
23	mail	mail	NN	NN	_	21	NP-OBJ
24	than	than	IN	IN	_	23	PP
25	almost	almost	RB	RB	_	26	DEP
26	any	any	DT	DT	_	28	ADJP
27	other	other	JJ	JJ	_	28	DEP
28	issue	issue	NN	NN	_	24	NP
29	in	in	IN	IN	_	28	PP
30	memory	memory	NN	NN	_	29	NP
31	,	,	,	,	_	34	DEP
32	mr.	mr.	NNP	NNP	_	33	DEP
33	lane	lane	NNP	NNP	_	34	NP-SBJ
34	said	said	VBD	VBD	_	0	ROOT
35	.	.	.	.	_	34	DEP

1	the	the	DT	DT	_	2	DEP
2	sec	sec	NNP	NNP	_	3	NP-SBJ
3	will	will	MD	MD	_	14	S
4	probably	probably	RB	RB	_	3	ADVP
5	vote	vote	VB	VB	_	3	VP
6	on	on	IN	IN	_	5	PP
7	the	the	DT	DT	_	8	DEP
8	proposal	proposal	NN	NN	_	6	NP
9	early	early	RB	RB	_	11	DEP
10	next	next	JJ	JJ	_	11	DEP
11	year	year	NN	NN	_	5	NP
12	,	,	,	,	_	14	DEP
13	he	he	PRP	PRP	_	14	NP-SBJ
14	said	said	VBD	VBD	_	0	ROOT
15	.	.	.	.	_	14	DEP

1	not	not	RB	RB	_	6	NP-SBJ
2	all	all	PDT	PDT	_	1	DEP
3	those	those	DT	DT	_	1	DEP
4	who	who	WP	WP	_	1	SBAR
5	wrote	wrote	VBD	VBD	_	4	S
6	oppose	oppose	VBP	VBP	_	0	ROOT
7	the	the	DT	DT	_	8	DEP
8	changes	changes	NNS	NNS	_	6	NP-OBJ
9	.	.	.	.	_	6	DEP

1	the	the	DT	DT	_	2	DEP
2	committee	committee	NNP	NNP	_	13	NP-SBJ
3	on	on	IN	IN	_	2	PP
4	federal	federal	NNP	NNP	_	5	DEP
5	regulation	regulation	NNP	NNP	_	3	NP
6	of	of	IN	IN	_	5	PP
7	securities	securities	NNPS	NNPS	_	6	NP
8	for	for	IN	IN	_	2	PP
9	the	the	DT	DT	_	12	DEP
10	american	american	NNP	NNP	_	12	DEP
11	bar	bar	NNP	NNP	_	12	DEP
12	association	association	NNP	NNP	_	8	NP
13	argues	argues	VBZ	VBZ	_	0	ROOT
14	,	,	,	,	_	13	DEP
15	for	for	IN	IN	_	13	PP
16	example	example	NN	NN	_	15	NP
17	,	,	,	,	_	13	DEP
18	in	in	IN	IN	_	13	PP
19	its	its	PRP$	PRP$	_	21	DEP
20	lengthy	lengthy	JJ	JJ	_	21	DEP
21	letter	letter	NN	NN	_	18	NP
22	to	to	TO	TO	_	21	PP
23	the	the	DT	DT	_	24	DEP
24	sec	sec	NNP	NNP	_	22	NP
25	,	,	,	,	_	13	DEP
26	that	that	IN	IN	_	13	SBAR
27	the	the	DT	DT	_	29	DEP
28	proposed	proposed	VBN	VBN	_	29	DEP
29	changes	changes	NNS	NNS	_	31	NP-SBJ
30	``	``	``	``	_	31	DEP
31	would	would	MD	MD	_	26	S
32	substantially	substantially	RB	RB	_	33	ADVP
33	improve	improve	VB	VB	_	31	VP
34	the	the	DT	DT	_	36	DEP
35	{	{	-LRB-	-LRB-	_	36	DEP
36	law	law	NN	NN	_	33	NP-OBJ
37	}	}	-RRB-	-RRB-	_	36	DEP
38	by	by	IN	IN	_	33	PP
39	conforming	conforming	VBG	VBG	_	38	S
40	it	it	PRP	PRP	_	39	NP-OBJ
41	more	more	RBR	RBR	_	42	DEP
42	closely	closely	RB	RB	_	39	ADVP
43	to	to	TO	TO	_	39	PP
44	contemporary	contemporary	JJ	JJ	_	46	DEP
45	business	business	NN	NN	_	46	DEP
46	realities	realities	NNS	NNS	_	43	NP
47	.	.	.	.	_	13	DEP
48	''	''	''	''	_	13	DEP

1	what	what	WP	WP	_	12	SBAR
2	the	the	DT	DT	_	3	DEP
3	investors	investors	NNS	NNS	_	9	NP-SBJ
4	who	who	WP	WP	_	3	SBAR
5	oppose	oppose	VBP	VBP	_	4	S
6	the	the	DT	DT	_	8	DEP
7	proposed	proposed	VBN	VBN	_	8	DEP
8	changes	changes	NNS	NNS	_	5	NP-OBJ
9	object	object	VBP	VBP	_	1	S
10	to	to	TO	TO	_	9	PP
11	most	most	RBS	RBS	_	9	ADVP
12	is	is	VBZ	VBZ	_	0	ROOT
13	the	the	DT	DT	_	14	DEP
14	effect	effect	NN	NN	_	12	NP-PRD
15	they	they	PRP	PRP	_	16	NP-SBJ
16	say	say	VBP	VBP	_	14	SBAR
17	the	the	DT	DT	_	18	DEP
18	proposal	proposal	NN	NN	_	19	NP-SBJ
19	would	would	MD	MD	_	16	SBAR
20	have	have	VB	VB	_	19	VP
21	on	on	IN	IN	_	20	PP
22	their	their	PRP$	PRP$	_	23	DEP
23	ability	ability	NN	NN	_	21	NP
24	to	to	TO	TO	_	25	DEP
25	spot	spot	VB	VB	_	23	S
26	telltale	telltale	JJ	JJ	_	28	DEP
27	``	``	``	``	_	28	DEP
28	clusters	clusters	NNS	NNS	_	36	NP
29	''	''	''	''	_	28	DEP
30	of	of	IN	IN	_	28	PP
31	trading	trading	NN	NN	_	32	DEP
32	activity	activity	NN	NN	_	30	NP
33	--	--	:	:	_	36	DEP
34	buying	buying	NN	NN	_	36	DEP
35	or	or	CC	CC	_	36	DEP
36	selling	selling	NN	NN	_	25	NP-OBJ
37	by	by	IN	IN	_	36	PP
38	more	more	JJR	JJR	_	39	DEP
39	than	than	IN	IN	_	43	QP
40	one	one	CD	CD	_	39	DEP
41	officer	officer	NN	NN	_	43	DEP
42	or	or	CC	CC	_	43	DEP
43	director	director	NN	NN	_	37	NP
44	within	within	IN	IN	_	36	PP
45	a	a	DT	DT	_	47	DEP
46	short	short	JJ	JJ	_	47	DEP
47	period	period	NN	NN	_	44	NP
48	of	of	IN	IN	_	47	PP
49	time	time	NN	NN	_	48	NP
50	.	.	.	.	_	12	DEP

1	according	according	VBG	VBG	_	9	PP
2	to	to	TO	TO	_	1	PP
3	some	some	DT	DT	_	4	DEP
4	estimates	estimates	NNS	NNS	_	2	NP
5	,	,	,	,	_	9	DEP
6	the	the	DT	DT	_	8	DEP
7	rule	rule	NN	NN	_	8	DEP
8	changes	changes	NNS	NNS	_	9	NP-SBJ
9	would	would	MD	MD	_	0	ROOT
10	cut	cut	VB	VB	_	9	VP
11	insider	insider	NN	NN	_	12	DEP
12	filings	filings	NNS	NNS	_	10	NP-OBJ
13	by	by	IN	IN	_	10	PP
14	more	more	JJR	JJR	_	13	NP
15	than	than	IN	IN	_	14	PP
16	a	a	DT	DT	_	17	DEP
17	third	third	NN	NN	_	15	NP
18	.	.	.	.	_	9	DEP

1	the	the	DT	DT	_	3	DEP
2	sec	sec	NNP	NNP	_	3	DEP
3	's	's	POS	POS	_	5	NP
4	mr.	mr.	NNP	NNP	_	5	DEP
5	lane	lane	NNP	NNP	_	7	NP-SBJ
6	vehemently	vehemently	RB	RB	_	7	ADVP
7	disputed	disputed	VBD	VBD	_	0	ROOT
8	those	those	DT	DT	_	9	DEP
9	estimates	estimates	NNS	NNS	_	7	NP-OBJ
10	.	.	.	.	_	7	DEP

1	the	the	DT	DT	_	2	DEP
2	rules	rules	NNS	NNS	_	3	NP-SBJ
3	will	will	MD	MD	_	23	S
4	eliminate	eliminate	VB	VB	_	3	VP
5	filings	filings	NNS	NNS	_	7	DEP
6	policy-making	policy-making	VBG	VBG	_	7	DEP
7	divisions	divisions	NNS	NNS	_	4	NP-OBJ
8	,	,	,	,	_	7	DEP
9	such	such	JJ	JJ	_	10	DEP
10	as	as	IN	IN	_	7	PP
11	sales	sales	NNS	NNS	_	19	NP
12	,	,	,	,	_	19	DEP
13	marketing	marketing	NN	NN	_	19	NP
14	,	,	,	,	_	19	DEP
15	finance	finance	NN	NN	_	19	NP
16	and	and	CC	CC	_	19	DEP
17	research	research	NN	NN	_	19	DEP
18	and	and	CC	CC	_	19	DEP
19	development	development	NN	NN	_	10	NP
20	,	,	,	,	_	23	DEP
21	mr.	mr.	NNP	NNP	_	22	DEP
22	lane	lane	NNP	NNP	_	23	NP-SBJ
23	said	said	VBD	VBD	_	0	ROOT
24	.	.	.	.	_	23	DEP

1	the	the	DT	DT	_	3	DEP
2	proposed	proposed	VBN	VBN	_	3	DEP
3	rules	rules	NNS	NNS	_	5	NP-SBJ
4	also	also	RB	RB	_	5	ADVP
5	would	would	MD	MD	_	18	S
6	be	be	VB	VB	_	5	VP
7	tougher	tougher	JJR	JJR	_	6	ADJP
8	on	on	IN	IN	_	7	PP
9	the	the	DT	DT	_	10	DEP
10	insiders	insiders	NNS	NNS	_	8	NP
11	still	still	RB	RB	_	10	VP
12	required	required	JJ	JJ	_	11	DEP
13	to	to	TO	TO	_	14	DEP
14	file	file	VB	VB	_	11	S
15	reports	reports	NNS	NNS	_	14	NP-OBJ
16	,	,	,	,	_	18	DEP
17	he	he	PRP	PRP	_	18	NP-SBJ
18	said	said	VBD	VBD	_	0	ROOT
19	.	.	.	.	_	18	DEP

1	companies	companies	NNS	NNS	_	2	NP-SBJ
2	would	would	MD	MD	_	0	ROOT
3	be	be	VB	VB	_	2	VP
4	compelled	compelled	VBN	VBN	_	3	VP
5	to	to	TO	TO	_	6	DEP
6	publish	publish	VB	VB	_	4	S
7	in	in	IN	IN	_	6	PP
8	annual	annual	JJ	JJ	_	10	DEP
9	proxy	proxy	NN	NN	_	10	DEP
10	statements	statements	NNS	NNS	_	7	NP
11	the	the	DT	DT	_	12	DEP
12	names	names	NNS	NNS	_	6	NP-OBJ
13	of	of	IN	IN	_	12	PP
14	insiders	insiders	NNS	NNS	_	13	NP
15	who	who	WP	WP	_	14	SBAR
16	fail	fail	VBP	VBP	_	15	S
17	to	to	TO	TO	_	18	DEP
18	file	file	VB	VB	_	16	S
19	reports	reports	NNS	NNS	_	18	NP-OBJ
20	on	on	IN	IN	_	18	PP
21	time	time	NN	NN	_	20	NP
22	.	.	.	.	_	2	DEP

1	considered	considered	VBN	VBN	_	18	S
2	as	as	IN	IN	_	1	PP
3	a	a	DT	DT	_	4	DEP
4	whole	whole	NN	NN	_	2	NP
5	,	,	,	,	_	8	DEP
6	mr.	mr.	NNP	NNP	_	7	DEP
7	lane	lane	NNP	NNP	_	8	NP-SBJ
8	said	said	VBD	VBD	_	18	PRN
9	,	,	,	,	_	8	DEP
10	the	the	DT	DT	_	11	DEP
11	filings	filings	NNS	NNS	_	18	NP-SBJ
12	required	required	VBN	VBN	_	11	VP
13	under	under	IN	IN	_	12	PP
14	the	the	DT	DT	_	16	DEP
15	proposed	proposed	VBN	VBN	_	16	DEP
16	rules	rules	NNS	NNS	_	13	NP
17	``	``	``	``	_	18	DEP
18	will	will	MD	MD	_	0	ROOT
19	be	be	VB	VB	_	18	VP
20	at	at	IN	IN	_	21	DEP
21	least	least	RBS	RBS	_	19	ADJP
22	as	as	IN	IN	_	21	DEP
23	effective	effective	JJ	JJ	_	21	DEP
24	,	,	,	,	_	25	DEP
25	if	if	IN	IN	_	21	PRN
26	not	not	RB	RB	_	25	FRAG
27	more	more	RBR	RBR	_	28	DEP
28	so	so	RB	RB	_	26	ADVP
29	,	,	,	,	_	25	DEP
30	for	for	IN	IN	_	19	PP
31	investors	investors	NNS	NNS	_	30	NP
32	following	following	VBG	VBG	_	31	VP
33	transactions	transactions	NNS	NNS	_	32	NP-OBJ
34	.	.	.	.	_	18	DEP
35	''	''	''	''	_	18	DEP

1	but	but	CC	CC	_	24	DEP
2	robert	robert	NNP	NNP	_	3	DEP
3	gabele	gabele	NNP	NNP	_	5	NP
4	,	,	,	,	_	5	DEP
5	president	president	NN	NN	_	24	NP-SBJ
6	of	of	IN	IN	_	5	PP
7	invest\/net	invest\/net	NNP	NNP	_	15	NP
8	,	,	,	,	_	15	DEP
9	a	a	DT	DT	_	15	DEP
10	north	north	NNP	NNP	_	13	DEP
11	miami	miami	NNP	NNP	_	13	DEP
12	,	,	,	,	_	13	DEP
13	fla.	fla.	NNP	NNP	_	15	NAC
14	,	,	,	,	_	13	DEP
15	company	company	NN	NN	_	6	NP
16	that	that	WDT	WDT	_	15	SBAR
17	packages	packages	VBZ	VBZ	_	16	S
18	and	and	CC	CC	_	17	DEP
19	sells	sells	VBZ	VBZ	_	17	DEP
20	the	the	DT	DT	_	22	DEP
21	insider-trading	insider-trading	NN	NN	_	22	DEP
22	data	data	NNS	NNS	_	17	NP-OBJ
23	,	,	,	,	_	5	DEP
24	said	said	VBD	VBD	_	0	ROOT
25	the	the	DT	DT	_	26	DEP
26	proposal	proposal	NN	NN	_	27	NP-SBJ
27	is	is	VBZ	VBZ	_	24	SBAR
28	worded	worded	VBN	VBN	_	27	VP
29	so	so	RB	RB	_	28	ADVP
30	vaguely	vaguely	RB	RB	_	29	DEP
31	that	that	IN	IN	_	29	SBAR
32	key	key	JJ	JJ	_	33	DEP
33	officials	officials	NNS	NNS	_	34	NP-SBJ
34	may	may	MD	MD	_	31	S
35	fail	fail	VB	VB	_	34	VP
36	to	to	TO	TO	_	37	DEP
37	file	file	VB	VB	_	35	S
38	the	the	DT	DT	_	39	DEP
39	reports	reports	NNS	NNS	_	37	NP-OBJ
40	.	.	.	.	_	24	DEP

1	many	many	JJ	JJ	_	2	DEP
2	investors	investors	NNS	NNS	_	3	NP-SBJ
3	wrote	wrote	VBD	VBD	_	0	ROOT
4	asking	asking	VBG	VBG	_	3	S
5	the	the	DT	DT	_	6	DEP
6	sec	sec	NNP	NNP	_	4	NP-OBJ
7	to	to	TO	TO	_	8	DEP
8	require	require	VB	VB	_	4	S
9	insiders	insiders	NNS	NNS	_	11	NP-SBJ
10	to	to	TO	TO	_	11	DEP
11	report	report	VB	VB	_	8	S
12	their	their	PRP$	PRP$	_	15	DEP
13	purchases	purchases	NNS	NNS	_	15	DEP
14	and	and	CC	CC	_	15	DEP
15	sales	sales	NNS	NNS	_	11	NP-OBJ
16	immediately	immediately	RB	RB	_	18	ADVP
17	,	,	,	,	_	18	DEP
18	not	not	RB	RB	_	11	ADVP
19	a	a	DT	DT	_	20	DEP
20	month	month	NN	NN	_	21	NP
21	later	later	RB	RB	_	18	ADVP
22	.	.	.	.	_	3	DEP

1	but	but	CC	CC	_	4	DEP
2	mr.	mr.	NNP	NNP	_	3	DEP
3	lane	lane	NNP	NNP	_	4	NP-SBJ
4	said	said	VBD	VBD	_	0	ROOT
5	that	that	IN	IN	_	4	SBAR
6	while	while	IN	IN	_	15	SBAR
7	the	the	DT	DT	_	8	DEP
8	sec	sec	NNP	NNP	_	9	NP-SBJ
9	regulates	regulates	VBZ	VBZ	_	6	S
10	who	who	WP	WP	_	9	SBAR
11	files	files	VBZ	VBZ	_	10	S
12	,	,	,	,	_	15	DEP
13	the	the	DT	DT	_	14	DEP
14	law	law	NN	NN	_	15	NP-SBJ
15	tells	tells	VBZ	VBZ	_	5	S
16	them	them	PRP	PRP	_	15	NP-OBJ
17	when	when	WRB	WRB	_	15	SBAR
18	to	to	TO	TO	_	19	DEP
19	do	do	VB	VB	_	17	S
20	so	so	RB	RB	_	19	ADVP
21	.	.	.	.	_	4	DEP

1	investors	investors	NNS	NNS	_	9	NP-SBJ
2	who	who	WP	WP	_	1	SBAR
3	want	want	VBP	VBP	_	2	S
4	to	to	TO	TO	_	5	DEP
5	change	change	VB	VB	_	3	S
6	the	the	DT	DT	_	8	DEP
7	required	required	JJ	JJ	_	8	DEP
8	timing	timing	NN	NN	_	5	NP-OBJ
9	should	should	MD	MD	_	17	S
10	write	write	VB	VB	_	9	VP
11	their	their	PRP$	PRP$	_	12	DEP
12	representatives	representatives	NNS	NNS	_	10	NP-OBJ
13	in	in	IN	IN	_	12	PP
14	congress	congress	NNP	NNP	_	13	NP
15	,	,	,	,	_	17	DEP
16	he	he	PRP	PRP	_	17	NP-SBJ
17	added	added	VBD	VBD	_	0	ROOT
18	.	.	.	.	_	17	DEP

1	the	the	DT	DT	_	2	DEP
2	sec	sec	NNP	NNP	_	3	NP-SBJ
3	would	would	MD	MD	_	22	S
4	likely	likely	RB	RB	_	3	ADVP
5	be	be	VB	VB	_	3	VP
6	amenable	amenable	JJ	JJ	_	5	ADJP
7	to	to	TO	TO	_	6	PP
8	legislation	legislation	NN	NN	_	7	NP
9	that	that	WDT	WDT	_	8	SBAR
10	required	required	VBD	VBD	_	9	S
11	insiders	insiders	NNS	NNS	_	13	NP-SBJ
12	to	to	TO	TO	_	13	DEP
13	file	file	VB	VB	_	10	S
14	transactions	transactions	NNS	NNS	_	13	NP-OBJ
15	on	on	IN	IN	_	13	PP
16	a	a	DT	DT	_	19	DEP
17	more	more	RBR	RBR	_	18	DEP
18	timely	timely	JJ	JJ	_	19	ADJP
19	basis	basis	NN	NN	_	15	NP
20	,	,	,	,	_	22	DEP
21	he	he	PRP	PRP	_	22	NP-SBJ
22	said	said	VBD	VBD	_	0	ROOT
23	.	.	.	.	_	22	DEP

1	the	the	DT	DT	_	3	DEP
2	nation	nation	NN	NN	_	3	DEP
3	's	's	POS	POS	_	6	NP
4	largest	largest	JJS	JJS	_	6	DEP
5	pension	pension	NN	NN	_	6	DEP
6	fund	fund	NN	NN	_	17	NP-SBJ
7	,	,	,	,	_	6	DEP
8	which	which	WDT	WDT	_	6	SBAR
9	oversees	oversees	VBZ	VBZ	_	8	S
10	$	$	$	$	_	9	NP-OBJ
11	80	80	CD	CD	_	10	DEP
12	billion	billion	CD	CD	_	10	DEP
13	for	for	IN	IN	_	9	PP
14	college	college	NN	NN	_	15	DEP
15	employees	employees	NNS	NNS	_	13	NP
16	,	,	,	,	_	6	DEP
17	plans	plans	VBZ	VBZ	_	0	ROOT
18	to	to	TO	TO	_	19	DEP
19	offer	offer	VB	VB	_	17	S
20	two	two	CD	CD	_	23	DEP
21	new	new	JJ	JJ	_	23	DEP
22	investment	investment	NN	NN	_	23	DEP
23	options	options	NNS	NNS	_	19	NP-OBJ
24	to	to	TO	TO	_	19	PP
25	its	its	PRP$	PRP$	_	28	DEP
26	1.2	1.2	CD	CD	_	27	DEP
27	million	million	CD	CD	_	28	QP
28	participants	participants	NNS	NNS	_	24	NP
29	.	.	.	.	_	17	DEP

1	the	the	DT	DT	_	9	DEP
2	teachers	teachers	NNPS	NNPS	_	9	DEP
3	insurance	insurance	NNP	NNP	_	9	DEP
4	and	and	CC	CC	_	9	DEP
5	annuity	annuity	NNP	NNP	_	9	DEP
6	association-college	association-college	NNP	NNP	_	9	DEP
7	retirement	retirement	NNP	NNP	_	9	DEP
8	equities	equities	NNPS	NNPS	_	9	DEP
9	fund	fund	NNP	NNP	_	10	NP-SBJ
10	said	said	VBD	VBD	_	0	ROOT
11	it	it	PRP	PRP	_	12	NP-SBJ
12	will	will	MD	MD	_	10	SBAR
13	introduce	introduce	VB	VB	_	12	VP
14	a	a	DT	DT	_	18	DEP
15	stock	stock	NN	NN	_	18	DEP
16	and	and	CC	CC	_	18	DEP
17	bond	bond	NN	NN	_	18	DEP
18	fund	fund	NN	NN	_	32	NP
19	that	that	WDT	WDT	_	18	SBAR
20	will	will	MD	MD	_	19	S
21	invest	invest	VB	VB	_	20	VP
22	in	in	IN	IN	_	21	PP
23	``	``	``	``	_	27	DEP
24	socially	socially	RB	RB	_	25	DEP
25	responsible	responsible	JJ	JJ	_	27	ADJP
26	''	''	''	''	_	27	DEP
27	companies	companies	NNS	NNS	_	22	NP
28	,	,	,	,	_	32	DEP
29	and	and	CC	CC	_	32	DEP
30	a	a	DT	DT	_	32	DEP
31	bond	bond	NN	NN	_	32	DEP
32	fund	fund	NN	NN	_	13	NP-OBJ
33	.	.	.	.	_	10	DEP

1	both	both	DT	DT	_	2	DEP
2	funds	funds	NNS	NNS	_	3	NP-SBJ
3	are	are	VBP	VBP	_	0	ROOT
4	expected	expected	VBN	VBN	_	3	VP
5	to	to	TO	TO	_	6	DEP
6	begin	begin	VB	VB	_	4	S
7	operation	operation	NN	NN	_	6	NP-OBJ
8	around	around	IN	IN	_	6	PP
9	march	march	NNP	NNP	_	8	NP
10	1	1	CD	CD	_	9	DEP
11	,	,	,	,	_	6	DEP
12	subject	subject	JJ	JJ	_	6	ADJP
13	to	to	TO	TO	_	12	PP
14	securities	securities	NNPS	NNPS	_	18	DEP
15	and	and	CC	CC	_	18	DEP
16	exchange	exchange	NNP	NNP	_	18	DEP
17	commission	commission	NNP	NNP	_	18	DEP
18	approval	approval	NN	NN	_	13	NP
19	.	.	.	.	_	3	DEP

1	for	for	IN	IN	_	14	SBAR
2	its	its	PRP$	PRP$	_	3	DEP
3	employees	employees	NNS	NNS	_	5	NP-SBJ
4	to	to	TO	TO	_	5	DEP
5	sign	sign	VB	VB	_	1	S
6	up	up	RP	RP	_	5	PRT
7	for	for	IN	IN	_	5	PP
8	the	the	DT	DT	_	9	DEP
9	options	options	NNS	NNS	_	7	NP
10	,	,	,	,	_	14	DEP
11	a	a	DT	DT	_	12	DEP
12	college	college	NN	NN	_	14	NP-SBJ
13	also	also	RB	RB	_	14	ADVP
14	must	must	MD	MD	_	0	ROOT
15	approve	approve	VB	VB	_	14	VP
16	the	the	DT	DT	_	17	DEP
17	plan	plan	NN	NN	_	15	NP-OBJ
18	.	.	.	.	_	14	DEP

1	some	some	DT	DT	_	3	QP
2	4,300	4,300	CD	CD	_	1	DEP
3	institutions	institutions	NNS	NNS	_	4	NP-SBJ
4	are	are	VBP	VBP	_	0	ROOT
5	part	part	NN	NN	_	4	NP-PRD
6	of	of	IN	IN	_	5	PP
7	the	the	DT	DT	_	9	DEP
8	pension	pension	NN	NN	_	9	DEP
9	fund	fund	NN	NN	_	6	NP
10	.	.	.	.	_	4	DEP

1	the	the	DT	DT	_	3	DEP
2	new	new	JJ	JJ	_	3	DEP
3	options	options	NNS	NNS	_	4	NP-SBJ
4	carry	carry	VBP	VBP	_	0	ROOT
5	out	out	RP	RP	_	4	PRT
6	part	part	NN	NN	_	4	NP-OBJ
7	of	of	IN	IN	_	6	PP
8	an	an	DT	DT	_	9	DEP
9	agreement	agreement	NN	NN	_	7	NP
10	that	that	IN	IN	_	9	SBAR
11	the	the	DT	DT	_	13	DEP
12	pension	pension	NN	NN	_	13	DEP
13	fund	fund	NN	NN	_	30	NP-SBJ
14	,	,	,	,	_	30	DEP
15	under	under	IN	IN	_	30	S
16	pressure	pressure	NN	NN	_	15	NP
17	to	to	TO	TO	_	18	DEP
18	relax	relax	VB	VB	_	16	S
19	its	its	PRP$	PRP$	_	22	DEP
20	strict	strict	JJ	JJ	_	22	DEP
21	participation	participation	NN	NN	_	22	DEP
22	rules	rules	NNS	NNS	_	18	NP-OBJ
23	and	and	CC	CC	_	18	DEP
24	to	to	TO	TO	_	25	DEP
25	provide	provide	VB	VB	_	18	VP
26	more	more	JJR	JJR	_	28	DEP
27	investment	investment	NN	NN	_	28	DEP
28	options	options	NNS	NNS	_	25	NP-OBJ
29	,	,	,	,	_	30	DEP
30	reached	reached	VBN	VBN	_	10	S
31	with	with	IN	IN	_	30	PP
32	the	the	DT	DT	_	33	DEP
33	sec	sec	NNP	NNP	_	31	NP
34	in	in	IN	IN	_	30	PP
35	december	december	NNP	NNP	_	34	NP
36	.	.	.	.	_	4	DEP

1	the	the	DT	DT	_	7	DEP
2	new	new	JJ	JJ	_	7	DEP
3	``	``	``	``	_	7	DEP
4	social	social	JJ	JJ	_	7	DEP
5	choice	choice	NN	NN	_	7	DEP
6	''	''	''	''	_	7	DEP
7	fund	fund	NN	NN	_	8	NP-SBJ
8	will	will	MD	MD	_	0	ROOT
9	shun	shun	VB	VB	_	8	VP
10	securities	securities	NNS	NNS	_	9	NP-OBJ
11	of	of	IN	IN	_	10	PP
12	companies	companies	NNS	NNS	_	11	NP
13	linked	linked	VBN	VBN	_	12	VP
14	to	to	TO	TO	_	13	PP
15	south	south	NNP	NNP	_	16	DEP
16	africa	africa	NNP	NNP	_	26	NP
17	,	,	,	,	_	26	DEP
18	nuclear	nuclear	JJ	JJ	_	19	DEP
19	power	power	NN	NN	_	26	NP
20	and	and	CC	CC	_	26	DEP
21	in	in	IN	IN	_	26	PP
22	some	some	DT	DT	_	23	DEP
23	cases	cases	NNS	NNS	_	21	NP
24	,	,	,	,	_	26	DEP
25	northern	northern	NNP	NNP	_	26	DEP
26	ireland	ireland	NNP	NNP	_	14	NP
27	.	.	.	.	_	8	DEP

1	also	also	RB	RB	_	3	ADVP
2	excluded	excluded	VBN	VBN	_	3	VP
3	will	will	MD	MD	_	0	ROOT
4	be	be	VB	VB	_	3	VP
5	investments	investments	NNS	NNS	_	3	NP-SBJ
6	in	in	IN	IN	_	5	PP
7	companies	companies	NNS	NNS	_	6	NP
8	with	with	IN	IN	_	7	PP
9	``	``	``	``	_	12	DEP
10	significant	significant	JJ	JJ	_	12	DEP
11	''	''	''	''	_	12	DEP
12	business	business	NN	NN	_	8	NP
13	stemming	stemming	VBG	VBG	_	12	VP
14	from	from	IN	IN	_	13	PP
15	weapons	weapons	NNS	NNS	_	16	DEP
16	manufacture	manufacture	NN	NN	_	21	NP
17	,	,	,	,	_	21	DEP
18	alcoholic	alcoholic	JJ	JJ	_	19	DEP
19	beverages	beverages	NNS	NNS	_	21	NP
20	or	or	CC	CC	_	21	DEP
21	tobacco	tobacco	NN	NN	_	14	NP
22	.	.	.	.	_	3	DEP

1	sixty	sixty	CD	CD	_	2	DEP
2	percent	percent	NN	NN	_	6	NP-SBJ
3	of	of	IN	IN	_	2	PP
4	the	the	DT	DT	_	5	DEP
5	fund	fund	NN	NN	_	3	NP
6	will	will	MD	MD	_	0	ROOT
7	be	be	VB	VB	_	6	VP
8	invested	invested	VBN	VBN	_	7	VP
9	in	in	IN	IN	_	8	PP
10	stocks	stocks	NNS	NNS	_	9	NP
11	,	,	,	,	_	8	DEP
12	with	with	IN	IN	_	8	PP
13	the	the	DT	DT	_	14	DEP
14	rest	rest	NN	NN	_	15	NP-SBJ
15	going	going	VBG	VBG	_	12	S
16	into	into	IN	IN	_	15	PP
17	bonds	bonds	NNS	NNS	_	20	NP
18	or	or	CC	CC	_	20	DEP
19	short-term	short-term	JJ	JJ	_	20	DEP
20	investments	investments	NNS	NNS	_	16	NP
21	.	.	.	.	_	6	DEP

1	the	the	DT	DT	_	3	DEP
2	bond	bond	NN	NN	_	3	DEP
3	fund	fund	NN	NN	_	4	NP-SBJ
4	will	will	MD	MD	_	0	ROOT
5	invest	invest	VB	VB	_	4	VP
6	in	in	IN	IN	_	5	PP
7	high-grade	high-grade	JJ	JJ	_	9	DEP
8	or	or	CC	CC	_	9	DEP
9	medium-grade	medium-grade	JJ	JJ	_	10	ADJP
10	bonds	bonds	NNS	NNS	_	15	NP
11	,	,	,	,	_	15	DEP
12	mortgages	mortgages	NNS	NNS	_	15	NP
13	or	or	CC	CC	_	15	DEP
14	asset-backed	asset-backed	JJ	JJ	_	15	DEP
15	securities	securities	NNS	NNS	_	6	NP
16	,	,	,	,	_	15	DEP
17	including	including	VBG	VBG	_	15	PP
18	as	as	JJ	JJ	_	20	DEP
19	much	much	RB	RB	_	20	DEP
20	as	as	IN	IN	_	22	QP
21	15	15	CD	CD	_	20	DEP
22	%	%	NN	NN	_	17	NP
23	in	in	IN	IN	_	22	PP
24	foreign	foreign	JJ	JJ	_	25	DEP
25	securities	securities	NNS	NNS	_	23	NP
26	.	.	.	.	_	4	DEP

1	the	the	DT	DT	_	2	DEP
2	fund	fund	NN	NN	_	4	NP-SBJ
3	also	also	RB	RB	_	4	ADVP
4	might	might	MD	MD	_	0	ROOT
5	buy	buy	VB	VB	_	4	VP
6	and	and	CC	CC	_	5	DEP
7	sell	sell	VB	VB	_	5	DEP
8	futures	futures	NNS	NNS	_	11	DEP
9	and	and	CC	CC	_	11	DEP
10	options	options	NNS	NNS	_	11	DEP
11	contracts	contracts	NNS	NNS	_	5	NP-OBJ
12	,	,	,	,	_	5	DEP
13	subject	subject	JJ	JJ	_	5	ADJP
14	to	to	TO	TO	_	13	PP
15	approval	approval	NN	NN	_	14	NP
16	by	by	IN	IN	_	15	PP
17	the	the	DT	DT	_	22	DEP
18	new	new	NNP	NNP	_	22	DEP
19	york	york	NNP	NNP	_	22	DEP
20	state	state	NNP	NNP	_	22	DEP
21	insurance	insurance	NNP	NNP	_	22	DEP
22	department	department	NNP	NNP	_	16	NP
23	.	.	.	.	_	4	DEP

1	under	under	IN	IN	_	7	PP
2	two	two	CD	CD	_	4	DEP
3	new	new	JJ	JJ	_	4	DEP
4	features	features	NNS	NNS	_	1	NP
5	,	,	,	,	_	7	DEP
6	participants	participants	NNS	NNS	_	7	NP-SBJ
7	will	will	MD	MD	_	0	ROOT
8	be	be	VB	VB	_	7	VP
9	able	able	JJ	JJ	_	8	ADJP
10	to	to	TO	TO	_	11	DEP
11	transfer	transfer	VB	VB	_	9	S
12	money	money	NN	NN	_	11	NP-OBJ
13	from	from	IN	IN	_	11	PP
14	the	the	DT	DT	_	16	DEP
15	new	new	JJ	JJ	_	16	DEP
16	funds	funds	NNS	NNS	_	13	NP
17	to	to	TO	TO	_	11	PP
18	other	other	JJ	JJ	_	20	DEP
19	investment	investment	NN	NN	_	20	DEP
20	funds	funds	NNS	NNS	_	17	NP
21	or	or	CC	CC	_	11	DEP
22	,	,	,	,	_	23	DEP
23	if	if	IN	IN	_	29	PRN
24	their	their	PRP$	PRP$	_	25	DEP
25	jobs	jobs	NNS	NNS	_	26	NP-SBJ
26	are	are	VBP	VBP	_	23	S
27	terminated	terminated	VBN	VBN	_	26	VP
28	,	,	,	,	_	23	DEP
29	receive	receive	VB	VB	_	11	VP
30	cash	cash	NN	NN	_	29	NP-OBJ
31	from	from	IN	IN	_	29	PP
32	the	the	DT	DT	_	33	DEP
33	funds	funds	NNS	NNS	_	31	NP
34	.	.	.	.	_	7	DEP

1	the	the	DT	DT	_	3	DEP
2	investment	investment	NN	NN	_	3	DEP
3	choices	choices	NNS	NNS	_	10	NP-SBJ
4	offered	offered	VBN	VBN	_	3	VP
5	by	by	IN	IN	_	4	PP
6	the	the	DT	DT	_	8	DEP
7	pension	pension	NN	NN	_	8	DEP
8	fund	fund	NN	NN	_	5	NP
9	currently	currently	RB	RB	_	10	ADVP
10	are	are	VBP	VBP	_	0	ROOT
11	limited	limited	VBN	VBN	_	10	VP
12	to	to	TO	TO	_	11	PP
13	a	a	DT	DT	_	15	DEP
14	stock	stock	NN	NN	_	15	DEP
15	fund	fund	NN	NN	_	22	NP
16	,	,	,	,	_	22	DEP
17	an	an	DT	DT	_	18	DEP
18	annuity	annuity	NN	NN	_	22	NP
19	and	and	CC	CC	_	22	DEP
20	a	a	DT	DT	_	22	DEP
21	money-market	money-market	NN	NN	_	22	DEP
22	fund	fund	NN	NN	_	12	NP
23	.	.	.	.	_	10	DEP

1	new	new	NNP	NNP	_	4	DEP
2	brunswick	brunswick	NNP	NNP	_	4	DEP
3	scientific	scientific	NNP	NNP	_	4	DEP
4	co.	co.	NNP	NNP	_	7	NP
5	,	,	,	,	_	7	DEP
6	a	a	DT	DT	_	7	DEP
7	maker	maker	NN	NN	_	14	NP-SBJ
8	of	of	IN	IN	_	7	PP
9	biotechnology	biotechnology	NN	NN	_	12	DEP
10	instrumentation	instrumentation	NN	NN	_	12	DEP
11	and	and	CC	CC	_	12	DEP
12	equipment	equipment	NN	NN	_	8	NP
13	,	,	,	,	_	7	DEP
14	said	said	VBD	VBD	_	0	ROOT
15	it	it	PRP	PRP	_	16	NP-SBJ
16	adopted	adopted	VBD	VBD	_	14	SBAR
17	an	an	DT	DT	_	19	DEP
18	anti-takeover	anti-takeover	JJ	JJ	_	19	DEP
19	plan	plan	NN	NN	_	16	NP-OBJ
20	giving	giving	VBG	VBG	_	19	VP
21	shareholders	shareholders	NNS	NNS	_	20	NP-OBJ
22	the	the	DT	DT	_	23	DEP
23	right	right	NN	NN	_	20	NP-OBJ
24	to	to	TO	TO	_	25	DEP
25	purchase	purchase	VB	VB	_	23	S
26	shares	shares	NNS	NNS	_	25	NP-OBJ
27	at	at	IN	IN	_	25	PP
28	half	half	JJ	JJ	_	29	DEP
29	price	price	NN	NN	_	27	NP
30	under	under	IN	IN	_	25	PP
31	certain	certain	JJ	JJ	_	32	DEP
32	conditions	conditions	NNS	NNS	_	30	NP
33	.	.	.	.	_	14	DEP

1	the	the	DT	DT	_	2	DEP
2	company	company	NN	NN	_	3	NP-SBJ
3	said	said	VBD	VBD	_	0	ROOT
4	the	the	DT	DT	_	5	DEP
5	plan	plan	NN	NN	_	13	NP-SBJ
6	,	,	,	,	_	13	DEP
7	under	under	IN	IN	_	9	PP
8	review	review	NN	NN	_	7	NP
9	for	for	IN	IN	_	13	S
10	some	some	DT	DT	_	11	DEP
11	time	time	NN	NN	_	9	NP
12	,	,	,	,	_	13	DEP
13	will	will	MD	MD	_	3	SBAR
14	protect	protect	VB	VB	_	13	VP
15	shareholders	shareholders	NNS	NNS	_	14	NP-OBJ
16	against	against	IN	IN	_	14	PP
17	``	``	``	``	_	16	DEP
18	abusive	abusive	JJ	JJ	_	20	DEP
19	takeover	takeover	NN	NN	_	20	DEP
20	tactics	tactics	NNS	NNS	_	16	NP
21	.	.	.	.	_	3	DEP

1	w.	w.	NNP	NNP	_	3	DEP
2	ed	ed	NNP	NNP	_	3	DEP
3	tyler	tyler	NNP	NNP	_	12	NP
4	,	,	,	,	_	12	DEP
5	37	37	CD	CD	_	6	DEP
6	years	years	NNS	NNS	_	7	NP
7	old	old	JJ	JJ	_	12	ADJP
8	,	,	,	,	_	12	DEP
9	a	a	DT	DT	_	12	DEP
10	senior	senior	JJ	JJ	_	12	DEP
11	vice	vice	NN	NN	_	12	DEP
12	president	president	NN	NN	_	18	NP-SBJ
13	at	at	IN	IN	_	12	PP
14	this	this	DT	DT	_	16	DEP
15	printing	printing	VBG	VBG	_	16	DEP
16	concern	concern	NN	NN	_	13	NP
17	,	,	,	,	_	12	DEP
18	was	was	VBD	VBD	_	0	ROOT
19	elected	elected	VBN	VBN	_	18	VP
20	president	president	NN	NN	_	28	NP
21	of	of	IN	IN	_	20	PP
22	its	its	PRP$	PRP$	_	24	DEP
23	technology	technology	NN	NN	_	24	DEP
24	group	group	NN	NN	_	21	NP
25	,	,	,	,	_	28	DEP
26	a	a	DT	DT	_	28	DEP
27	new	new	JJ	JJ	_	28	DEP
28	position	position	NN	NN	_	19	S
29	.	.	.	.	_	18	DEP

1	solo	solo	JJ	JJ	_	3	DEP
2	woodwind	woodwind	NN	NN	_	3	DEP
3	players	players	NNS	NNS	_	4	NP-SBJ
4	have	have	VBP	VBP	_	0	ROOT
5	to	to	TO	TO	_	6	DEP
6	be	be	VB	VB	_	4	S
7	creative	creative	JJ	JJ	_	6	ADJP
8	if	if	IN	IN	_	4	SBAR
9	they	they	PRP	PRP	_	10	NP-SBJ
10	want	want	VBP	VBP	_	8	S
11	to	to	TO	TO	_	12	DEP
12	work	work	VB	VB	_	10	S
13	a	a	DT	DT	_	14	DEP
14	lot	lot	NN	NN	_	12	NP
15	,	,	,	,	_	4	DEP
16	because	because	IN	IN	_	4	SBAR
17	their	their	PRP$	PRP$	_	21	DEP
18	repertoire	repertoire	NN	NN	_	21	DEP
19	and	and	CC	CC	_	21	DEP
20	audience	audience	NN	NN	_	21	DEP
21	appeal	appeal	NN	NN	_	22	NP-SBJ
22	are	are	VBP	VBP	_	16	S
23	limited	limited	JJ	JJ	_	22	ADJP
24	.	.	.	.	_	4	DEP

1	the	the	DT	DT	_	4	DEP
2	oboist	oboist	NN	NN	_	4	DEP
3	heinz	heinz	NNP	NNP	_	4	DEP
4	holliger	holliger	NNP	NNP	_	5	NP-SBJ
5	has	has	VBZ	VBZ	_	15	S
6	taken	taken	VBN	VBN	_	5	VP
7	a	a	DT	DT	_	9	DEP
8	hard	hard	JJ	JJ	_	9	DEP
9	line	line	NN	NN	_	6	NP-OBJ
10	about	about	IN	IN	_	6	PP
11	the	the	DT	DT	_	12	DEP
12	problem	problem	NN	NN	_	10	NP
13	:	:	:	:	_	15	DEP
14	he	he	PRP	PRP	_	15	NP-SBJ
15	commissions	commissions	VBZ	VBZ	_	0	ROOT
16	and	and	CC	CC	_	15	DEP
17	splendidly	splendidly	RB	RB	_	18	ADVP
18	interprets	interprets	VBZ	VBZ	_	15	VP
19	fearsome	fearsome	JJ	JJ	_	21	DEP
20	contemporary	contemporary	JJ	JJ	_	21	DEP
21	scores	scores	NNS	NNS	_	15	NP
22	and	and	CC	CC	_	15	DEP
23	does	does	VBZ	VBZ	_	15	VP
24	some	some	DT	DT	_	25	DEP
25	conducting	conducting	NN	NN	_	23	NP-OBJ
26	,	,	,	,	_	15	DEP
27	so	so	IN	IN	_	15	SBAR
28	he	he	PRP	PRP	_	29	NP-SBJ
29	does	does	VBZ	VBZ	_	27	S
30	n't	n't	RB	RB	_	29	DEP
31	have	have	VB	VB	_	29	VP
32	to	to	TO	TO	_	33	DEP
33	play	play	VB	VB	_	31	S
34	the	the	DT	DT	_	39	DEP
35	same	same	JJ	JJ	_	39	DEP
36	mozart	mozart	NNP	NNP	_	39	DEP
37	and	and	CC	CC	_	39	DEP
38	strauss	strauss	NNP	NNP	_	39	DEP
39	concertos	concertos	NNS	NNS	_	33	NP-OBJ
40	over	over	RB	RB	_	33	ADVP
41	and	and	CC	CC	_	40	DEP
42	over	over	RB	RB	_	40	DEP
43	again	again	RB	RB	_	33	ADVP
44	.	.	.	.	_	15	DEP

1	richard	richard	NNP	NNP	_	2	DEP
2	stoltzman	stoltzman	NNP	NNP	_	3	NP-SBJ
3	has	has	VBZ	VBZ	_	0	ROOT
4	taken	taken	VBN	VBN	_	3	VP
5	a	a	DT	DT	_	10	DEP
6	gentler	gentler	JJR	JJR	_	10	DEP
7	,	,	,	,	_	10	DEP
8	more	more	RBR	RBR	_	9	DEP
9	audience-friendly	audience-friendly	JJ	JJ	_	10	ADJP
10	approach	approach	NN	NN	_	4	NP-OBJ
11	.	.	.	.	_	3	DEP

1	years	years	NNS	NNS	_	2	NP
2	ago	ago	RB	RB	_	5	ADVP
3	,	,	,	,	_	5	DEP
4	he	he	PRP	PRP	_	5	NP-SBJ
5	collaborated	collaborated	VBD	VBD	_	0	ROOT
6	with	with	IN	IN	_	5	PP
7	the	the	DT	DT	_	10	DEP
8	new	new	JJ	JJ	_	10	DEP
9	music	music	NN	NN	_	10	DEP
10	gurus	gurus	NNS	NNS	_	15	NP
11	peter	peter	NNP	NNP	_	12	DEP
12	serkin	serkin	NNP	NNP	_	15	NP
13	and	and	CC	CC	_	15	DEP
14	fred	fred	NNP	NNP	_	15	DEP
15	sherry	sherry	NNP	NNP	_	6	NP
16	in	in	IN	IN	_	5	PP
17	the	the	DT	DT	_	21	DEP
18	very	very	RB	RB	_	19	DEP
19	countercultural	countercultural	JJ	JJ	_	21	ADJP
20	chamber	chamber	NN	NN	_	21	DEP
21	group	group	NN	NN	_	22	NP
22	tashi	tashi	NNP	NNP	_	16	NP
23	,	,	,	,	_	22	DEP
24	which	which	WDT	WDT	_	22	SBAR
25	won	won	VBD	VBD	_	24	S
26	audiences	audiences	NNS	NNS	_	25	NP-OBJ
27	over	over	RP	RP	_	25	ADVP
28	to	to	TO	TO	_	27	PP
29	dreaded	dreaded	JJ	JJ	_	31	DEP
30	contemporary	contemporary	JJ	JJ	_	31	DEP
31	scores	scores	NNS	NNS	_	28	NP
32	like	like	IN	IN	_	31	PP
33	messiaen	messiaen	NNP	NNP	_	34	DEP
34	's	's	POS	POS	_	36	NP
35	``	``	``	``	_	36	DEP
36	quartet	quartet	NN	NN	_	32	NP
37	for	for	IN	IN	_	36	PP
38	the	the	DT	DT	_	39	DEP
39	end	end	NN	NN	_	37	NP
40	of	of	IN	IN	_	39	PP
41	time	time	NN	NN	_	40	NP
42	.	.	.	.	_	5	DEP
43	''	''	''	''	_	5	DEP

1	today	today	NN	NN	_	6	NP
2	,	,	,	,	_	6	DEP
3	the	the	DT	DT	_	5	DEP
4	pixie-like	pixie-like	JJ	JJ	_	5	DEP
5	clarinetist	clarinetist	NN	NN	_	6	NP-SBJ
6	has	has	VBZ	VBZ	_	0	ROOT
7	mostly	mostly	RB	RB	_	6	ADVP
8	dropped	dropped	VBN	VBN	_	6	VP
9	the	the	DT	DT	_	11	DEP
10	missionary	missionary	JJ	JJ	_	11	DEP
11	work	work	NN	NN	_	8	NP-OBJ
12	(	(	-LRB-	-LRB-	_	13	DEP
13	though	though	IN	IN	_	8	PRN
14	a	a	DT	DT	_	15	DEP
15	touch	touch	NN	NN	_	21	NP-SBJ
16	of	of	IN	IN	_	15	PP
17	the	the	DT	DT	_	19	DEP
18	old	old	JJ	JJ	_	19	DEP
19	tashi	tashi	NNP	NNP	_	16	NP
20	still	still	RB	RB	_	21	ADVP
21	survives	survives	VBZ	VBZ	_	13	S
22	)	)	-RRB-	-RRB-	_	13	DEP
23	and	and	CC	CC	_	6	DEP
24	now	now	RB	RB	_	6	ADVP
25	goes	goes	VBZ	VBZ	_	6	VP
26	on	on	IN	IN	_	25	PP
27	the	the	DT	DT	_	28	DEP
28	road	road	NN	NN	_	26	NP
29	with	with	IN	IN	_	25	PP
30	piano	piano	NN	NN	_	40	NP
31	,	,	,	,	_	40	DEP
32	bass	bass	NN	NN	_	40	NP
33	,	,	,	,	_	40	DEP
34	a	a	DT	DT	_	36	DEP
35	slide	slide	NN	NN	_	36	DEP
36	show	show	NN	NN	_	40	NP
37	,	,	,	,	_	40	DEP
38	and	and	CC	CC	_	40	DEP
39	a	a	DT	DT	_	40	DEP
40	repertoire	repertoire	NN	NN	_	29	NP
41	that	that	WDT	WDT	_	40	SBAR
42	ranges	ranges	VBZ	VBZ	_	41	S
43	from	from	IN	IN	_	42	PP
44	light	light	JJ	JJ	_	45	DEP
45	classical	classical	JJ	JJ	_	43	NP
46	to	to	TO	TO	_	43	PP
47	light	light	JJ	JJ	_	48	DEP
48	jazz	jazz	NN	NN	_	46	NP
49	to	to	TO	TO	_	43	PP
50	light	light	JJ	JJ	_	51	DEP
51	pop	pop	NN	NN	_	49	NP
52	,	,	,	,	_	42	DEP
53	with	with	IN	IN	_	42	PP
54	a	a	DT	DT	_	57	DEP
55	few	few	JJ	JJ	_	57	DEP
56	notable	notable	JJ	JJ	_	57	DEP
57	exceptions	exceptions	NNS	NNS	_	53	NP
58	.	.	.	.	_	6	DEP

1	just	just	RB	RB	_	3	DEP
2	the	the	DT	DT	_	3	DEP
3	thing	thing	NN	NN	_	0	ROOT
4	for	for	IN	IN	_	3	PP
5	the	the	DT	DT	_	7	DEP
6	vivaldi-at-brunch	vivaldi-at-brunch	JJ	JJ	_	7	DEP
7	set	set	NN	NN	_	11	NP
8	,	,	,	,	_	11	DEP
9	the	the	DT	DT	_	11	DEP
10	yuppie	yuppie	NN	NN	_	11	DEP
11	audience	audience	NN	NN	_	4	NP
12	that	that	WDT	WDT	_	11	SBAR
13	has	has	VBZ	VBZ	_	12	S
14	embraced	embraced	VBN	VBN	_	13	VP
15	new	new	NNP	NNP	_	16	DEP
16	age	age	NNP	NNP	_	14	NP-OBJ
17	as	as	IN	IN	_	14	PP
18	its	its	PRP$	PRP$	_	22	DEP
19	very	very	RB	RB	_	20	DEP
20	own	own	JJ	JJ	_	22	ADJP
21	easy	easy	JJ	JJ	_	22	DEP
22	listening	listening	NN	NN	_	17	NP
23	.	.	.	.	_	3	DEP

1	but	but	CC	CC	_	3	DEP
2	you	you	PRP	PRP	_	3	NP-SBJ
3	ca	ca	MD	MD	_	0	ROOT
4	n't	n't	RB	RB	_	3	DEP
5	dismiss	dismiss	VB	VB	_	3	VP
6	mr.	mr.	NNP	NNP	_	8	DEP
7	stoltzman	stoltzman	NNP	NNP	_	8	DEP
8	's	's	POS	POS	_	9	NP
9	music	music	NN	NN	_	12	NP
10	or	or	CC	CC	_	12	DEP
11	his	his	PRP$	PRP$	_	12	DEP
12	motives	motives	NNS	NNS	_	5	NP-OBJ
13	as	as	RB	RB	_	5	PP
14	merely	merely	RB	RB	_	17	DEP
15	commercial	commercial	JJ	JJ	_	17	DEP
16	and	and	CC	CC	_	17	DEP
17	lightweight	lightweight	JJ	JJ	_	13	ADJP
18	.	.	.	.	_	3	DEP

1	he	he	PRP	PRP	_	2	NP-SBJ
2	believes	believes	VBZ	VBZ	_	10	S
3	in	in	IN	IN	_	2	PP
4	what	what	WP	WP	_	3	SBAR
5	he	he	PRP	PRP	_	6	NP-SBJ
6	plays	plays	VBZ	VBZ	_	4	S
7	,	,	,	,	_	10	DEP
8	and	and	CC	CC	_	10	DEP
9	he	he	PRP	PRP	_	10	NP-SBJ
10	plays	plays	VBZ	VBZ	_	0	ROOT
11	superbly	superbly	RB	RB	_	10	ADVP
12	.	.	.	.	_	10	DEP

1	his	his	PRP$	PRP$	_	3	DEP
2	recent	recent	JJ	JJ	_	3	DEP
3	appearance	appearance	NN	NN	_	16	NP-SBJ
4	at	at	IN	IN	_	3	PP
5	the	the	DT	DT	_	7	DEP
6	metropolitan	metropolitan	NNP	NNP	_	7	DEP
7	museum	museum	NNP	NNP	_	4	NP
8	,	,	,	,	_	3	DEP
9	dubbed	dubbed	VBN	VBN	_	3	VP
10	``	``	``	``	_	13	DEP
11	a	a	DT	DT	_	13	DEP
12	musical	musical	JJ	JJ	_	13	DEP
13	odyssey	odyssey	NN	NN	_	9	S
14	,	,	,	,	_	13	DEP
15	''	''	''	''	_	13	DEP
16	was	was	VBD	VBD	_	0	ROOT
17	a	a	DT	DT	_	18	DEP
18	case	case	NN	NN	_	16	NP-PRD
19	in	in	IN	IN	_	18	PP
20	point	point	NN	NN	_	19	NP
21	.	.	.	.	_	16	DEP

1	it	it	PRP	PRP	_	2	NP-SBJ
2	felt	felt	VBD	VBD	_	0	ROOT
3	more	more	RBR	RBR	_	4	ADVP
4	like	like	IN	IN	_	2	PP
5	a	a	DT	DT	_	6	DEP
6	party	party	NN	NN	_	13	NP
7	,	,	,	,	_	13	DEP
8	or	or	CC	CC	_	13	DEP
9	a	a	DT	DT	_	13	DEP
10	highly	highly	RB	RB	_	11	DEP
11	polished	polished	JJ	JJ	_	13	ADJP
12	jam	jam	NN	NN	_	13	DEP
13	session	session	NN	NN	_	4	NP
14	with	with	IN	IN	_	13	PP
15	a	a	DT	DT	_	17	DEP
16	few	few	JJ	JJ	_	17	DEP
17	friends	friends	NNS	NNS	_	14	NP
18	,	,	,	,	_	13	DEP
19	than	than	IN	IN	_	4	PP
20	a	a	DT	DT	_	22	DEP
21	classical	classical	JJ	JJ	_	22	DEP
22	concert	concert	NN	NN	_	19	NP
23	.	.	.	.	_	2	DEP

1	clad	clad	VBN	VBN	_	12	S
2	in	in	IN	IN	_	1	PP
3	his	his	PRP$	PRP$	_	7	DEP
4	trademark	trademark	NN	NN	_	7	DEP
5	black	black	JJ	JJ	_	7	DEP
6	velvet	velvet	NN	NN	_	7	DEP
7	suit	suit	NN	NN	_	2	NP
8	,	,	,	,	_	12	DEP
9	the	the	DT	DT	_	11	DEP
10	soft-spoken	soft-spoken	JJ	JJ	_	11	DEP
11	clarinetist	clarinetist	NN	NN	_	12	NP-SBJ
12	announced	announced	VBD	VBD	_	0	ROOT
13	that	that	IN	IN	_	38	SBAR
14	his	his	PRP$	PRP$	_	16	DEP
15	new	new	JJ	JJ	_	16	DEP
16	album	album	NN	NN	_	20	NP
17	,	,	,	,	_	20	DEP
18	``	``	``	``	_	20	DEP
19	inner	inner	JJ	JJ	_	20	DEP
20	voices	voices	NNS	NNS	_	23	NP-SBJ
21	,	,	,	,	_	20	DEP
22	''	''	''	''	_	20	DEP
23	had	had	VBD	VBD	_	13	S
24	just	just	RB	RB	_	23	ADVP
25	been	been	VBN	VBN	_	23	VP
26	released	released	VBN	VBN	_	25	VP
27	,	,	,	,	_	38	DEP
28	that	that	IN	IN	_	38	SBAR
29	his	his	PRP$	PRP$	_	30	DEP
30	family	family	NN	NN	_	31	NP-SBJ
31	was	was	VBD	VBD	_	28	S
32	in	in	IN	IN	_	31	PP
33	the	the	DT	DT	_	35	DEP
34	front	front	NN	NN	_	35	DEP
35	row	row	NN	NN	_	32	NP
36	,	,	,	,	_	38	DEP
37	and	and	CC	CC	_	38	DEP
38	that	that	IN	IN	_	12	SBAR
39	it	it	PRP	PRP	_	40	NP-SBJ
40	was	was	VBD	VBD	_	48	S
41	his	his	PRP$	PRP$	_	43	DEP
42	mother	mother	NN	NN	_	43	DEP
43	's	's	POS	POS	_	44	NP
44	birthday	birthday	NN	NN	_	40	NP-PRD
45	,	,	,	,	_	48	DEP
46	so	so	RB	RB	_	48	DEP
47	he	he	PRP	PRP	_	48	NP-SBJ
48	was	was	VBD	VBD	_	38	S
49	going	going	VBG	VBG	_	48	VP
50	to	to	TO	TO	_	51	DEP
51	play	play	VB	VB	_	49	S
52	her	her	PRP$	PRP$	_	54	DEP
53	favorite	favorite	JJ	JJ	_	54	DEP
54	tune	tune	NN	NN	_	51	NP-OBJ
55	from	from	IN	IN	_	54	PP
56	the	the	DT	DT	_	57	DEP
57	record	record	NN	NN	_	55	NP
58	.	.	.	.	_	12	DEP

1	he	he	PRP	PRP	_	2	NP-SBJ
2	launched	launched	VBD	VBD	_	0	ROOT
3	into	into	IN	IN	_	2	PP
4	saint-saens	saint-saens	NNP	NNP	_	5	DEP
5	's	's	POS	POS	_	8	NP
6	``	``	``	``	_	8	DEP
7	the	the	DT	DT	_	8	DEP
8	swan	swan	NN	NN	_	21	NP
9	''	''	''	''	_	8	DEP
10	from	from	IN	IN	_	8	PP
11	``	``	``	``	_	10	DEP
12	carnival	carnival	NN	NN	_	10	NP
13	of	of	IN	IN	_	12	PP
14	the	the	DT	DT	_	15	DEP
15	animals	animals	NNS	NNS	_	13	NP
16	,	,	,	,	_	21	DEP
17	''	''	''	''	_	21	DEP
18	a	a	DT	DT	_	21	DEP
19	favorite	favorite	JJ	JJ	_	21	DEP
20	encore	encore	NN	NN	_	21	DEP
21	piece	piece	NN	NN	_	3	NP
22	for	for	IN	IN	_	21	PP
23	cellists	cellists	NNS	NNS	_	22	NP
24	,	,	,	,	_	21	DEP
25	with	with	IN	IN	_	2	PP
26	lovely	lovely	JJ	JJ	_	29	DEP
27	,	,	,	,	_	29	DEP
28	glossy	glossy	JJ	JJ	_	29	DEP
29	tone	tone	NN	NN	_	32	NP
30	and	and	CC	CC	_	32	DEP
31	no	no	DT	DT	_	32	DEP
32	bite	bite	NN	NN	_	25	NP
33	.	.	.	.	_	2	DEP

1	then	then	RB	RB	_	16	DEP
2	,	,	,	,	_	16	DEP
3	as	as	IN	IN	_	4	DEP
4	if	if	IN	IN	_	16	SBAR
5	to	to	TO	TO	_	6	DEP
6	show	show	VB	VB	_	4	S
7	that	that	IN	IN	_	6	SBAR
8	he	he	PRP	PRP	_	9	NP-SBJ
9	could	could	MD	MD	_	7	S
10	play	play	VB	VB	_	9	VP
11	fast	fast	RB	RB	_	10	ADVP
12	as	as	IN	IN	_	13	DEP
13	well	well	RB	RB	_	10	ADVP
14	,	,	,	,	_	16	DEP
15	he	he	PRP	PRP	_	16	NP-SBJ
16	offered	offered	VBD	VBD	_	0	ROOT
17	the	the	DT	DT	_	19	DEP
18	second	second	JJ	JJ	_	19	DEP
19	movement	movement	NN	NN	_	31	NP
20	from	from	IN	IN	_	19	PP
21	saint-saens	saint-saens	NNP	NNP	_	22	DEP
22	's	's	POS	POS	_	23	NP
23	sonata	sonata	NN	NN	_	20	NP
24	for	for	IN	IN	_	23	PP
25	clarinet	clarinet	NN	NN	_	24	NP
26	,	,	,	,	_	31	DEP
27	a	a	DT	DT	_	31	DEP
28	whimsical	whimsical	JJ	JJ	_	31	DEP
29	,	,	,	,	_	31	DEP
30	puckish	puckish	JJ	JJ	_	31	DEP
31	tidbit	tidbit	NN	NN	_	16	NP-OBJ
32	that	that	WDT	WDT	_	31	SBAR
33	reflected	reflected	VBD	VBD	_	32	S
34	the	the	DT	DT	_	36	DEP
35	flip	flip	JJ	JJ	_	36	DEP
36	side	side	NN	NN	_	33	NP-OBJ
37	of	of	IN	IN	_	36	PP
38	the	the	DT	DT	_	40	DEP
39	stoltzman	stoltzman	NNP	NNP	_	40	DEP
40	personality	personality	NN	NN	_	37	NP
41	.	.	.	.	_	16	DEP

1	and	and	CC	CC	_	4	DEP
2	so	so	RB	RB	_	4	ADVP
3	it	it	PRP	PRP	_	4	NP-SBJ
4	went	went	VBD	VBD	_	0	ROOT
5	through	through	IN	IN	_	4	PP
6	the	the	DT	DT	_	8	DEP
7	first	first	JJ	JJ	_	8	DEP
8	half	half	NN	NN	_	5	NP
9	:	:	:	:	_	4	DEP
10	an	an	DT	DT	_	13	DEP
11	ingeniously	ingeniously	RB	RB	_	12	DEP
12	chosen	chosen	VBN	VBN	_	13	ADJP
13	potpourri	potpourri	NN	NN	_	4	NP
14	of	of	IN	IN	_	13	PP
15	pieces	pieces	NNS	NNS	_	23	NP
16	,	,	,	,	_	23	DEP
17	none	none	NN	NN	_	23	NP
18	longer	longer	JJR	JJR	_	17	ADJP
19	than	than	IN	IN	_	18	PP
20	five	five	CD	CD	_	21	DEP
21	minutes	minutes	NNS	NNS	_	19	NP
22	,	,	,	,	_	23	DEP
23	none	none	NN	NN	_	14	NP
24	that	that	WDT	WDT	_	23	SBAR
25	would	would	MD	MD	_	24	S
26	disturb	disturb	VB	VB	_	25	VP
27	or	or	CC	CC	_	26	DEP
28	challenge	challenge	VB	VB	_	26	DEP
29	a	a	DT	DT	_	30	DEP
30	listener	listener	NN	NN	_	26	NP-OBJ
31	.	.	.	.	_	4	DEP

1	mr.	mr.	NNP	NNP	_	2	DEP
2	stoltzman	stoltzman	NNP	NNP	_	3	NP-SBJ
3	introduced	introduced	VBD	VBD	_	0	ROOT
4	his	his	PRP$	PRP$	_	5	DEP
5	colleagues	colleagues	NNS	NNS	_	22	NP
6	:	:	:	:	_	22	DEP
7	bill	bill	NNP	NNP	_	8	DEP
8	douglas	douglas	NNP	NNP	_	14	NP
9	,	,	,	,	_	14	DEP
10	pianist\/bassoonist\/composer	pianist\/bassoonist\/composer	NN	NN	_	14	NP
11	and	and	CC	CC	_	14	DEP
12	an	an	DT	DT	_	14	DEP
13	old	old	JJ	JJ	_	14	DEP
14	buddy	buddy	NN	NN	_	22	NP
15	from	from	IN	IN	_	14	PP
16	yale	yale	NNP	NNP	_	15	NP
17	,	,	,	,	_	22	DEP
18	and	and	CC	CC	_	22	DEP
19	jazz	jazz	NN	NN	_	22	DEP
20	bassist	bassist	NN	NN	_	22	DEP
21	eddie	eddie	NNP	NNP	_	22	DEP
22	gomez	gomez	NNP	NNP	_	3	NP-OBJ
23	.	.	.	.	_	3	DEP

1	an	an	DT	DT	_	3	DEP
2	improvisational	improvisational	JJ	JJ	_	3	DEP
3	section	section	NN	NN	_	4	NP-SBJ
4	was	was	VBD	VBD	_	0	ROOT
5	built	built	VBN	VBN	_	4	VP
6	around	around	IN	IN	_	5	PP
7	pieces	pieces	NNS	NNS	_	6	NP
8	by	by	IN	IN	_	7	PP
9	mr.	mr.	NNP	NNP	_	10	DEP
10	douglas	douglas	NNP	NNP	_	8	NP
11	,	,	,	,	_	5	DEP
12	beginning	beginning	NN	NN	_	5	PP
13	with	with	IN	IN	_	12	PP
14	``	``	``	``	_	23	DEP
15	golden	golden	JJ	JJ	_	16	DEP
16	rain	rain	NN	NN	_	23	NP
17	,	,	,	,	_	23	DEP
18	''	''	''	''	_	23	DEP
19	a	a	DT	DT	_	23	DEP
20	lilting	lilting	JJ	JJ	_	23	DEP
21	,	,	,	,	_	23	DEP
22	laid-back	laid-back	JJ	JJ	_	23	DEP
23	lead	lead	NN	NN	_	13	NP
24	in	in	IN	IN	_	23	PP
25	to	to	TO	TO	_	24	PP
26	the	the	DT	DT	_	29	DEP
27	uptempo	uptempo	JJ	JJ	_	29	DEP
28	``	``	``	``	_	29	DEP
29	sky	sky	NN	NN	_	25	NP
30	,	,	,	,	_	29	DEP
31	''	''	''	''	_	29	DEP
32	which	which	WDT	WDT	_	29	SBAR
33	gave	gave	VBD	VBD	_	32	S
34	mr.	mr.	NNP	NNP	_	35	DEP
35	stoltzman	stoltzman	NNP	NNP	_	33	NP-OBJ
36	the	the	DT	DT	_	37	DEP
37	opportunity	opportunity	NN	NN	_	33	NP-OBJ
38	to	to	TO	TO	_	39	DEP
39	wail	wail	VB	VB	_	37	S
40	in	in	IN	IN	_	39	PP
41	a	a	DT	DT	_	43	DEP
42	high	high	JJ	JJ	_	43	DEP
43	register	register	NN	NN	_	40	NP
44	and	and	CC	CC	_	39	DEP
45	show	show	VB	VB	_	39	VP
46	off	off	RP	RP	_	45	PRT
47	his	his	PRP$	PRP$	_	49	DEP
48	fleet	fleet	JJ	JJ	_	49	DEP
49	fingers	fingers	NNS	NNS	_	45	NP-OBJ
50	.	.	.	.	_	4	DEP

1	bach	bach	NNP	NNP	_	2	DEP
2	's	's	POS	POS	_	4	NP
3	``	``	``	``	_	4	DEP
4	air	air	NN	NN	_	6	NP-SBJ
5	''	''	''	''	_	4	DEP
6	followed	followed	VBD	VBD	_	0	ROOT
7	.	.	.	.	_	6	DEP

1	mr.	mr.	NNP	NNP	_	2	DEP
2	stoltzman	stoltzman	NNP	NNP	_	3	NP-SBJ
3	tied	tied	VBD	VBD	_	0	ROOT
4	the	the	DT	DT	_	5	DEP
5	composer	composer	NN	NN	_	3	NP-OBJ
6	in	in	RP	RP	_	3	PRT
7	by	by	IN	IN	_	3	PP
8	proclaiming	proclaiming	VBG	VBG	_	7	S
9	him	him	PRP	PRP	_	13	NP-SBJ
10	``	``	``	``	_	13	DEP
11	the	the	DT	DT	_	13	DEP
12	great	great	JJ	JJ	_	13	DEP
13	improviser	improviser	NN	NN	_	8	S
14	of	of	IN	IN	_	13	PP
15	the	the	DT	DT	_	17	DEP
16	18th	18th	JJ	JJ	_	17	DEP
17	century	century	NN	NN	_	14	NP
18	,	,	,	,	_	3	DEP
19	''	''	''	''	_	3	DEP
20	and	and	CC	CC	_	3	DEP
21	then	then	RB	RB	_	3	DEP
22	built	built	VBD	VBD	_	3	VP
23	on	on	IN	IN	_	22	PP
24	the	the	DT	DT	_	25	DEP
25	image	image	NN	NN	_	23	NP
26	by	by	IN	IN	_	22	PP
27	joining	joining	VBG	VBG	_	26	S
28	with	with	IN	IN	_	27	PP
29	mr.	mr.	NNP	NNP	_	30	DEP
30	douglas	douglas	NNP	NNP	_	28	NP
31	in	in	IN	IN	_	27	PP
32	some	some	DT	DT	_	35	DEP
33	bach	bach	NNP	NNP	_	35	DEP
34	two-part	two-part	JJ	JJ	_	35	DEP
35	inventions	inventions	NNS	NNS	_	31	NP
36	,	,	,	,	_	35	DEP
37	cleverly	cleverly	RB	RB	_	38	ADVP
38	arranged	arranged	VBN	VBN	_	35	VP
39	for	for	IN	IN	_	38	PP
40	clarinet	clarinet	NN	NN	_	42	DEP
41	and	and	CC	CC	_	42	DEP
42	bassoon	bassoon	NN	NN	_	39	NP
43	by	by	IN	IN	_	38	PP
44	mr.	mr.	NNP	NNP	_	45	DEP
45	douglas	douglas	NNP	NNP	_	43	NP
46	.	.	.	.	_	3	DEP

1	keeping	keeping	VBG	VBG	_	9	S
2	the	the	DT	DT	_	3	DEP
3	mood	mood	NN	NN	_	4	NP-SBJ
4	light	light	JJ	JJ	_	1	S
5	,	,	,	,	_	9	DEP
6	the	the	DT	DT	_	7	DEP
7	two	two	CD	CD	_	9	NP-SBJ
8	then	then	RB	RB	_	9	ADVP
9	chanted	chanted	VBD	VBD	_	0	ROOT
10	and	and	CC	CC	_	9	DEP
11	chortled	chortled	VBD	VBD	_	9	DEP
12	their	their	PRP$	PRP$	_	13	DEP
13	way	way	NN	NN	_	9	NP-OBJ
14	through	through	IN	IN	_	9	PP
15	some	some	DT	DT	_	17	DEP
16	murderous	murderous	JJ	JJ	_	17	DEP
17	polyrhythms	polyrhythms	NNS	NNS	_	14	NP
18	,	,	,	,	_	17	DEP
19	devised	devised	VBN	VBN	_	17	VP
20	by	by	IN	IN	_	19	PP
21	mr.	mr.	NNP	NNP	_	22	DEP
22	douglas	douglas	NNP	NNP	_	20	NP
23	as	as	IN	IN	_	19	PP
24	an	an	DT	DT	_	25	DEP
25	alternative	alternative	NN	NN	_	23	NP
26	to	to	TO	TO	_	25	PP
27	hindemith	hindemith	NNP	NNP	_	28	DEP
28	's	's	POS	POS	_	31	NP
29	dry	dry	JJ	JJ	_	31	DEP
30	theory-teaching	theory-teaching	VBG	VBG	_	31	DEP
31	techniques	techniques	NNS	NNS	_	26	NP
32	,	,	,	,	_	9	DEP
33	and	and	CC	CC	_	9	DEP
34	then	then	RB	RB	_	9	DEP
35	,	,	,	,	_	9	DEP
36	with	with	IN	IN	_	40	PP
37	mr.	mr.	NNP	NNP	_	38	DEP
38	gomez	gomez	NNP	NNP	_	36	NP
39	,	,	,	,	_	40	DEP
40	soared	soared	VBD	VBD	_	9	VP
41	and	and	CC	CC	_	40	DEP
42	improvised	improvised	VBD	VBD	_	40	VP
43	on	on	IN	IN	_	42	PP
44	the	the	DT	DT	_	46	DEP
45	composer	composer	NN	NN	_	46	DEP
46	's	's	POS	POS	_	50	NP
47	tight	tight	JJ	JJ	_	50	DEP
48	``	``	``	``	_	50	DEP
49	bebop	bebop	NNP	NNP	_	50	DEP
50	etudes	etudes	NNP	NNP	_	43	NP
51	.	.	.	.	_	9	DEP
52	''	''	''	''	_	9	DEP

1	the	the	DT	DT	_	2	DEP
2	end	end	NN	NN	_	10	NP-SBJ
3	of	of	IN	IN	_	2	PP
4	the	the	DT	DT	_	6	DEP
5	first	first	JJ	JJ	_	6	DEP
6	half	half	NN	NN	_	3	NP
7	,	,	,	,	_	10	DEP
8	however	however	RB	RB	_	10	ADVP
9	,	,	,	,	_	10	DEP
10	brought	brought	VBD	VBD	_	0	ROOT
11	what	what	WP	WP	_	25	SBAR
12	the	the	DT	DT	_	14	DEP
13	standing-room-only	standing-room-only	JJ	JJ	_	14	DEP
14	crowd	crowd	NN	NN	_	15	NP-SBJ
15	seemed	seemed	VBD	VBD	_	11	S
16	to	to	TO	TO	_	17	DEP
17	be	be	VB	VB	_	15	S
18	waiting	waiting	VBG	VBG	_	17	VP
19	for	for	IN	IN	_	18	PP
20	:	:	:	:	_	25	DEP
21	the	the	DT	DT	_	23	DEP
22	pop	pop	NN	NN	_	23	DEP
23	singer	singer	NN	NN	_	25	NP
24	judy	judy	NNP	NNP	_	25	DEP
25	collins	collins	NNP	NNP	_	10	NP-OBJ
26	,	,	,	,	_	25	DEP
27	who	who	WP	WP	_	25	SBAR
28	appears	appears	VBZ	VBZ	_	27	S
29	on	on	IN	IN	_	28	PP
30	``	``	``	``	_	29	DEP
31	inner	inner	JJ	JJ	_	32	DEP
32	voices	voices	NNS	NNS	_	29	NP
33	.	.	.	.	_	10	DEP
34	''	''	''	''	_	10	DEP

1	glamorous	glamorous	JJ	JJ	_	3	DEP
2	and	and	CC	CC	_	3	DEP
3	pure-voiced	pure-voiced	JJ	JJ	_	9	S
4	as	as	IN	IN	_	3	PP
5	ever	ever	RB	RB	_	4	ADVP
6	,	,	,	,	_	9	DEP
7	ms.	ms.	NNP	NNP	_	8	DEP
8	collins	collins	NNP	NNP	_	9	NP-SBJ
9	sang	sang	VBD	VBD	_	0	ROOT
10	joni	joni	NNP	NNP	_	12	DEP
11	mitchell	mitchell	NNP	NNP	_	12	DEP
12	's	's	POS	POS	_	40	NP
13	``	``	``	``	_	12	DEP
14	for	for	IN	IN	_	12	PP
15	free	free	RB	RB	_	14	ADJP
16	''	''	''	''	_	12	DEP
17	--	--	:	:	_	26	DEP
18	about	about	IN	IN	_	26	PP
19	an	an	DT	DT	_	20	DEP
20	encounter	encounter	NN	NN	_	18	NP
21	with	with	IN	IN	_	20	PP
22	a	a	DT	DT	_	24	DEP
23	street-corner	street-corner	JJ	JJ	_	24	DEP
24	clarinetist	clarinetist	NN	NN	_	21	NP
25	,	,	,	,	_	26	DEP
26	to	to	TO	TO	_	12	PRN
27	which	which	WDT	WDT	_	26	WHNP
28	mr.	mr.	NNP	NNP	_	29	DEP
29	stoltzman	stoltzman	NNP	NNP	_	30	NP-SBJ
30	contributed	contributed	VBD	VBD	_	26	S
31	a	a	DT	DT	_	33	DEP
32	clarinet	clarinet	NN	NN	_	33	DEP
33	obligatto	obligatto	NN	NN	_	30	NP-OBJ
34	--	--	:	:	_	26	DEP
35	and	and	CC	CC	_	40	DEP
36	mr.	mr.	NNP	NNP	_	38	DEP
37	douglas	douglas	NNP	NNP	_	38	DEP
38	's	's	POS	POS	_	40	NP
39	lush	lush	JJ	JJ	_	40	DEP
40	setting	setting	NN	NN	_	9	NP-OBJ
41	of	of	IN	IN	_	40	PP
42	a	a	DT	DT	_	44	DEP
43	gaelic	gaelic	JJ	JJ	_	44	DEP
44	blessing	blessing	NN	NN	_	48	NP
45	,	,	,	,	_	48	DEP
46	``	``	``	``	_	48	DEP
47	deep	deep	JJ	JJ	_	48	DEP
48	peace	peace	NN	NN	_	41	NP
49	.	.	.	.	_	9	DEP
50	''	''	''	''	_	9	DEP

1	``	``	``	``	_	6	DEP
2	deep	deep	JJ	JJ	_	3	DEP
3	peace	peace	NN	NN	_	6	NP
4	''	''	''	''	_	6	DEP
5	also	also	RB	RB	_	6	ADVP
6	featured	featured	VBD	VBD	_	0	ROOT
7	a	a	DT	DT	_	9	DEP
8	slide	slide	NN	NN	_	9	DEP
9	show	show	NN	NN	_	6	NP-OBJ
10	of	of	IN	IN	_	9	PP
11	lovely	lovely	JJ	JJ	_	13	DEP
12	but	but	CC	CC	_	13	DEP
13	predictable	predictable	JJ	JJ	_	14	ADJP
14	images	images	NNS	NNS	_	10	NP
15	of	of	IN	IN	_	14	PP
16	clouds	clouds	NNS	NNS	_	22	DEP
17	,	,	,	,	_	22	DEP
18	beaches	beaches	NNS	NNS	_	22	DEP
19	,	,	,	,	_	22	DEP
20	deserts	deserts	NNS	NNS	_	22	DEP
21	,	,	,	,	_	22	DEP
22	sunsets	sunsets	NNS	NNS	_	15	NP
23	,	,	,	,	_	22	DEP
24	etc	etc	FW	FW	_	22	DEP
25	.	.	.	.	_	6	DEP

1	it	it	PRP	PRP	_	2	NP-SBJ
2	was	was	VBD	VBD	_	13	S
3	all	all	RB	RB	_	5	DEP
4	too	too	RB	RB	_	5	DEP
5	mellow	mellow	JJ	JJ	_	2	ADJP
6	to	to	TO	TO	_	7	DEP
7	be	be	VB	VB	_	5	SBAR
8	believed	believed	VBN	VBN	_	7	VP
9	,	,	,	,	_	13	DEP
10	but	but	CC	CC	_	13	DEP
11	they	they	PRP	PRP	_	13	NP-SBJ
12	probably	probably	RB	RB	_	13	ADVP
13	would	would	MD	MD	_	0	ROOT
14	have	have	VB	VB	_	13	VP
15	gotten	gotten	VBN	VBN	_	14	VP
16	away	away	RP	RP	_	15	PRT
17	with	with	IN	IN	_	15	PP
18	it	it	PRP	PRP	_	17	NP
19	,	,	,	,	_	15	DEP
20	had	had	VBD	VBD	_	15	SBAR
21	they	they	PRP	PRP	_	20	NP-SBJ
22	not	not	RB	RB	_	20	DEP
23	felt	felt	VBD	VBD	_	20	VP
24	compelled	compelled	VBN	VBN	_	23	VP
25	to	to	TO	TO	_	26	DEP
26	add	add	VB	VB	_	24	S
27	ms.	ms.	NNP	NNP	_	29	DEP
28	collins	collins	NNP	NNP	_	29	DEP
29	's	's	POS	POS	_	31	NP
30	signature	signature	NN	NN	_	31	DEP
31	tune	tune	NN	NN	_	35	NP
32	,	,	,	,	_	35	DEP
33	``	``	``	``	_	35	DEP
34	amazing	amazing	JJ	JJ	_	35	DEP
35	grace	grace	NN	NN	_	26	NP-OBJ
36	,	,	,	,	_	35	DEP
37	''	''	''	''	_	35	DEP
38	and	and	CC	CC	_	26	DEP
39	ask	ask	VB	VB	_	26	VP
40	for	for	IN	IN	_	39	PP
41	audience	audience	NN	NN	_	42	DEP
42	participation	participation	NN	NN	_	40	NP
43	.	.	.	.	_	13	DEP

1	that	that	WDT	WDT	_	2	NP-SBJ
2	went	went	VBD	VBD	_	0	ROOT
3	over	over	IN	IN	_	2	PP
4	the	the	DT	DT	_	6	DEP
5	permissible	permissible	JJ	JJ	_	6	DEP
6	line	line	NN	NN	_	3	NP
7	for	for	IN	IN	_	6	PP
8	warm	warm	JJ	JJ	_	10	DEP
9	and	and	CC	CC	_	10	DEP
10	fuzzy	fuzzy	JJ	JJ	_	11	ADJP
11	feelings	feelings	NNS	NNS	_	7	NP
12	.	.	.	.	_	2	DEP

1	was	was	VBD	VBD	_	0	ROOT
2	this	this	DT	DT	_	1	NP-SBJ
3	why	why	WRB	WRB	_	1	SBAR
4	some	some	DT	DT	_	8	NP-SBJ
5	of	of	IN	IN	_	4	PP
6	the	the	DT	DT	_	7	DEP
7	audience	audience	NN	NN	_	5	NP
8	departed	departed	VBD	VBD	_	3	S
9	before	before	IN	IN	_	8	PP
10	or	or	CC	CC	_	9	DEP
11	during	during	IN	IN	_	9	DEP
12	the	the	DT	DT	_	14	DEP
13	second	second	JJ	JJ	_	14	DEP
14	half	half	NN	NN	_	9	NP
15	?	?	.	.	_	1	DEP

1	or	or	CC	CC	_	2	DEP
2	was	was	VBD	VBD	_	0	ROOT
3	it	it	PRP	PRP	_	2	NP-SBJ
4	because	because	IN	IN	_	2	SBAR
5	ms.	ms.	NNP	NNP	_	6	DEP
6	collins	collins	NNP	NNP	_	7	NP-SBJ
7	had	had	VBD	VBD	_	4	S
8	gone	gone	VBN	VBN	_	7	VP
9	?	?	.	.	_	2	DEP

1	either	either	DT	DT	_	2	DEP
2	way	way	NN	NN	_	4	NP
3	it	it	PRP	PRP	_	4	NP-SBJ
4	was	was	VBD	VBD	_	0	ROOT
5	a	a	DT	DT	_	6	DEP
6	pity	pity	NN	NN	_	4	NP-PRD
7	,	,	,	,	_	4	DEP
8	because	because	IN	IN	_	4	SBAR
9	mr.	mr.	NNP	NNP	_	10	DEP
10	stolzman	stolzman	NNP	NNP	_	11	NP-SBJ
11	offered	offered	VBD	VBD	_	8	S
12	the	the	DT	DT	_	15	DEP
13	most	most	RBS	RBS	_	14	DEP
14	substantial	substantial	JJ	JJ	_	15	ADJP
15	music	music	NN	NN	_	11	NP-OBJ
16	of	of	IN	IN	_	15	PP
17	the	the	DT	DT	_	18	DEP
18	evening	evening	NN	NN	_	16	NP
19	just	just	RB	RB	_	20	ADVP
20	after	after	IN	IN	_	11	PP
21	intermission	intermission	NN	NN	_	20	NP
22	:	:	:	:	_	11	DEP
23	steve	steve	NNP	NNP	_	25	DEP
24	reich	reich	NNP	NNP	_	25	DEP
25	's	's	POS	POS	_	29	NP
26	``	``	``	``	_	29	DEP
27	new	new	NNP	NNP	_	29	DEP
28	york	york	NNP	NNP	_	29	DEP
29	counterpoint	counterpoint	NN	NN	_	32	NP
30	,	,	,	,	_	32	DEP
31	''	''	''	''	_	32	DEP
32	one	one	CD	CD	_	11	NP-OBJ
33	of	of	IN	IN	_	32	PP
34	a	a	DT	DT	_	35	DEP
35	series	series	NN	NN	_	33	NP
36	of	of	IN	IN	_	35	PP
37	reich	reich	NNP	NNP	_	38	DEP
38	works	works	NNS	NNS	_	36	NP
39	that	that	WDT	WDT	_	38	SBAR
40	juxtapose	juxtapose	VBP	VBP	_	39	S
41	a	a	DT	DT	_	43	DEP
42	live	live	JJ	JJ	_	43	DEP
43	performer	performer	NN	NN	_	40	NP-OBJ
44	with	with	IN	IN	_	40	PP
45	recorded	recorded	JJ	JJ	_	46	DEP
46	tracks	tracks	NNS	NNS	_	44	NP
47	of	of	IN	IN	_	46	PP
48	his	his	PRP$	PRP$	_	50	DEP
49	or	or	CC	CC	_	50	DEP
50	her	her	PRP$	PRP$	_	52	ADJP
51	own	own	JJ	JJ	_	52	DEP
52	playing	playing	NN	NN	_	47	NP
53	.	.	.	.	_	4	DEP

1	(	(	-LRB-	-LRB-	_	13	DEP
2	mr.	mr.	NNP	NNP	_	4	DEP
3	reich	reich	NNP	NNP	_	4	DEP
4	's	's	POS	POS	_	8	NP
5	new	new	JJ	JJ	_	8	DEP
6	``	``	``	``	_	8	DEP
7	different	different	JJ	JJ	_	8	DEP
8	trains	trains	NNS	NNS	_	13	NP-SBJ
9	''	''	''	''	_	8	DEP
10	for	for	IN	IN	_	8	PP
11	string	string	NN	NN	_	12	DEP
12	quartet	quartet	NN	NN	_	10	NP
13	uses	uses	VBZ	VBZ	_	0	ROOT
14	the	the	DT	DT	_	15	DEP
15	technique	technique	NN	NN	_	13	NP-OBJ
16	magisterially	magisterially	RB	RB	_	13	ADVP
17	.	.	.	.	_	13	DEP
18	)	)	-RRB-	-RRB-	_	13	DEP

1	mr.	mr.	NNP	NNP	_	2	DEP
2	stoltzman	stoltzman	NNP	NNP	_	3	NP-SBJ
3	must	must	MD	MD	_	18	S
4	have	have	VB	VB	_	3	VP
5	worried	worried	VBN	VBN	_	4	VP
6	that	that	IN	IN	_	5	SBAR
7	his	his	PRP$	PRP$	_	8	DEP
8	audience	audience	NN	NN	_	9	NP-SBJ
9	might	might	MD	MD	_	6	S
10	not	not	RB	RB	_	9	DEP
11	be	be	VB	VB	_	9	VP
12	able	able	JJ	JJ	_	11	ADJP
13	to	to	TO	TO	_	14	DEP
14	take	take	VB	VB	_	12	S
15	it	it	PRP	PRP	_	14	NP-OBJ
16	:	:	:	:	_	18	DEP
17	he	he	PRP	PRP	_	18	NP-SBJ
18	warned	warned	VBD	VBD	_	0	ROOT
19	us	us	PRP	PRP	_	18	NP-OBJ
20	in	in	IN	IN	_	18	PP
21	advance	advance	NN	NN	_	20	NP
22	that	that	IN	IN	_	18	SBAR
23	``	``	``	``	_	28	DEP
24	new	new	NNP	NNP	_	26	DEP
25	york	york	NNP	NNP	_	26	DEP
26	counterpoint	counterpoint	NN	NN	_	28	NP
27	''	''	''	''	_	28	DEP
28	lasts	lasts	VBZ	VBZ	_	22	S
29	11	11	CD	CD	_	30	DEP
30	1\/2	1\/2	CD	CD	_	31	QP
31	minutes	minutes	NNS	NNS	_	28	NP
32	.	.	.	.	_	18	DEP

1	he	he	PRP	PRP	_	4	NP-SBJ
2	also	also	RB	RB	_	4	ADVP
3	unfortunately	unfortunately	RB	RB	_	4	ADVP
4	illustrated	illustrated	VBD	VBD	_	0	ROOT
5	this	this	DT	DT	_	9	DEP
6	intricate	intricate	JJ	JJ	_	9	DEP
7	,	,	,	,	_	9	DEP
8	jazzy	jazzy	JJ	JJ	_	9	DEP
9	tapestry	tapestry	NN	NN	_	4	NP-OBJ
10	with	with	IN	IN	_	4	PP
11	mr.	mr.	NNP	NNP	_	13	DEP
12	pearson	pearson	NNP	NNP	_	13	DEP
13	's	's	POS	POS	_	14	NP
14	images	images	NNS	NNS	_	17	NP
15	,	,	,	,	_	17	DEP
16	this	this	DT	DT	_	17	DEP
17	time	time	NN	NN	_	10	NP
18	of	of	IN	IN	_	17	PP
19	geometric	geometric	JJ	JJ	_	22	UCP
20	or	or	CC	CC	_	19	DEP
21	repeating	repeating	JJ	JJ	_	19	DEP
22	objects	objects	NNS	NNS	_	18	NP
23	,	,	,	,	_	17	DEP
24	in	in	IN	IN	_	4	PP
25	a	a	DT	DT	_	27	DEP
26	kitschy	kitschy	JJ	JJ	_	27	DEP
27	mirroring	mirroring	NN	NN	_	24	NP
28	of	of	IN	IN	_	27	PP
29	the	the	DT	DT	_	31	DEP
30	musical	musical	JJ	JJ	_	31	DEP
31	structure	structure	NN	NN	_	28	NP
32	that	that	WDT	WDT	_	27	SBAR
33	was	was	VBD	VBD	_	32	S
34	thoroughly	thoroughly	RB	RB	_	35	ADVP
35	distracting	distracting	VBG	VBG	_	33	VP
36	from	from	IN	IN	_	35	PP
37	mr.	mr.	NNP	NNP	_	39	DEP
38	reich	reich	NNP	NNP	_	39	DEP
39	's	's	POS	POS	_	40	NP
40	piece	piece	NN	NN	_	46	NP
41	and	and	CC	CC	_	46	DEP
42	mr.	mr.	NNP	NNP	_	44	DEP
43	stoltzman	stoltzman	NNP	NNP	_	44	DEP
44	's	's	POS	POS	_	46	NP
45	elegant	elegant	JJ	JJ	_	46	DEP
46	execution	execution	NN	NN	_	36	NP
47	of	of	IN	IN	_	46	PP
48	it	it	PRP	PRP	_	47	NP
49	.	.	.	.	_	4	DEP

1	the	the	DT	DT	_	2	DEP
2	rest	rest	NN	NN	_	6	NP-SBJ
3	of	of	IN	IN	_	2	PP
4	the	the	DT	DT	_	5	DEP
5	concert	concert	NN	NN	_	3	NP
6	was	was	VBD	VBD	_	0	ROOT
7	more	more	JJR	JJR	_	9	DEP
8	straight	straight	JJ	JJ	_	9	DEP
9	jazz	jazz	NN	NN	_	12	NP
10	and	and	CC	CC	_	12	DEP
11	mellow	mellow	JJ	JJ	_	12	DEP
12	sounds	sounds	NNS	NNS	_	6	NP-PRD
13	written	written	VBN	VBN	_	12	VP
14	by	by	IN	IN	_	13	PP
15	charlie	charlie	NNP	NNP	_	16	DEP
16	parker	parker	NNP	NNP	_	25	NP
17	,	,	,	,	_	25	DEP
18	ornette	ornette	NNP	NNP	_	19	DEP
19	coleman	coleman	NNP	NNP	_	25	NP
20	,	,	,	,	_	25	DEP
21	bill	bill	NNP	NNP	_	22	DEP
22	douglas	douglas	NNP	NNP	_	25	NP
23	and	and	CC	CC	_	25	DEP
24	eddie	eddie	NNP	NNP	_	25	DEP
25	gomez	gomez	NNP	NNP	_	14	NP
26	,	,	,	,	_	12	DEP
27	with	with	IN	IN	_	12	PP
28	pictures	pictures	NNS	NNS	_	27	NP
29	for	for	IN	IN	_	28	PP
30	the	the	DT	DT	_	32	DEP
31	douglas	douglas	NNP	NNP	_	32	DEP
32	pieces	pieces	NNS	NNS	_	29	NP
33	.	.	.	.	_	6	DEP

1	it	it	PRP	PRP	_	2	NP-SBJ
2	was	was	VBD	VBD	_	26	S
3	enjoyable	enjoyable	JJ	JJ	_	2	ADJP
4	to	to	TO	TO	_	5	DEP
5	hear	hear	VB	VB	_	2	S
6	accomplished	accomplished	JJ	JJ	_	7	DEP
7	jazz	jazz	NN	NN	_	5	NP-OBJ
8	without	without	IN	IN	_	5	PP
9	having	having	VBG	VBG	_	8	S
10	to	to	TO	TO	_	11	DEP
11	sit	sit	VB	VB	_	9	S
12	in	in	IN	IN	_	11	PP
13	a	a	DT	DT	_	15	DEP
14	smoke-filled	smoke-filled	JJ	JJ	_	15	DEP
15	club	club	NN	NN	_	12	NP
16	,	,	,	,	_	26	DEP
17	but	but	CC	CC	_	26	DEP
18	like	like	IN	IN	_	26	PP
19	the	the	DT	DT	_	21	DEP
20	first	first	JJ	JJ	_	21	DEP
21	half	half	NN	NN	_	18	NP
22	,	,	,	,	_	26	DEP
23	much	much	JJ	JJ	_	26	NP-SBJ
24	of	of	IN	IN	_	23	PP
25	it	it	PRP	PRP	_	24	NP
26	was	was	VBD	VBD	_	0	ROOT
27	easy	easy	JJ	JJ	_	32	ADJP
28	to	to	TO	TO	_	29	DEP
29	take	take	VB	VB	_	27	SBAR
30	and	and	CC	CC	_	32	DEP
31	ultimately	ultimately	RB	RB	_	32	DEP
32	forgettable	forgettable	JJ	JJ	_	26	ADJP
33	.	.	.	.	_	26	DEP

1	is	is	VBZ	VBZ	_	0	ROOT
2	this	this	DT	DT	_	1	NP-SBJ
3	the	the	DT	DT	_	4	DEP
4	future	future	NN	NN	_	1	NP-PRD
5	of	of	IN	IN	_	4	PP
6	chamber	chamber	NN	NN	_	7	DEP
7	music	music	NN	NN	_	5	NP
8	?	?	.	.	_	1	DEP

1	managers	managers	NNS	NNS	_	3	DEP
2	and	and	CC	CC	_	3	DEP
3	presenters	presenters	NNS	NNS	_	4	NP-SBJ
4	insist	insist	VBP	VBP	_	0	ROOT
5	that	that	IN	IN	_	4	SBAR
6	chamber	chamber	NN	NN	_	8	DEP
7	music	music	NN	NN	_	8	DEP
8	concerts	concerts	NNS	NNS	_	9	NP-SBJ
9	are	are	VBP	VBP	_	5	S
10	a	a	DT	DT	_	12	DEP
11	hard	hard	JJ	JJ	_	12	DEP
12	sell	sell	NN	NN	_	9	NP-PRD
13	,	,	,	,	_	4	DEP
14	but	but	CC	CC	_	4	DEP
15	can	can	MD	MD	_	4	SQ
16	audiences	audiences	NNS	NNS	_	15	NP-SBJ
17	really	really	RB	RB	_	15	ADVP
18	enjoy	enjoy	VB	VB	_	15	VP
19	them	them	PRP	PRP	_	18	NP-OBJ
20	only	only	RB	RB	_	21	DEP
21	if	if	IN	IN	_	18	SBAR
22	the	the	DT	DT	_	23	DEP
23	music	music	NN	NN	_	24	NP-SBJ
24	is	is	VBZ	VBZ	_	21	S
25	purged	purged	VBN	VBN	_	24	VP
26	of	of	IN	IN	_	25	PP
27	threatening	threatening	JJ	JJ	_	28	DEP
28	elements	elements	NNS	NNS	_	26	NP
29	,	,	,	,	_	25	DEP
30	served	served	VBN	VBN	_	25	VP
31	up	up	RP	RP	_	30	PRT
32	in	in	IN	IN	_	30	PP
33	bite-sized	bite-sized	JJ	JJ	_	34	DEP
34	morsels	morsels	NNS	NNS	_	32	NP
35	and	and	CC	CC	_	25	DEP
36	accompanied	accompanied	VBN	VBN	_	25	VP
37	by	by	IN	IN	_	36	PP
38	visuals	visuals	NNS	NNS	_	37	NP
39	?	?	.	.	_	15	DEP

1	what	what	WP	WP	_	2	WHNP
2	's	's	VBZ	VBZ	_	0	ROOT
3	next	next	JJ	JJ	_	2	ADJP
4	?	?	.	.	_	2	DEP

1	slides	slides	NNS	NNS	_	0	ROOT
2	to	to	TO	TO	_	3	DEP
3	illustrate	illustrate	VB	VB	_	1	SBAR
4	shostakovich	shostakovich	NNP	NNP	_	5	DEP
5	quartets	quartets	NNS	NNS	_	3	NP-OBJ
6	?	?	.	.	_	1	DEP

1	it	it	PRP	PRP	_	2	NP-SBJ
2	was	was	VBD	VBD	_	0	ROOT
3	not	not	RB	RB	_	2	DEP
4	an	an	DT	DT	_	6	DEP
5	unpleasant	unpleasant	JJ	JJ	_	6	DEP
6	evening	evening	NN	NN	_	2	NP-PRD
7	,	,	,	,	_	2	DEP
8	certainly	certainly	RB	RB	_	2	ADVP
9	,	,	,	,	_	2	DEP
10	thanks	thanks	NNS	NNS	_	2	NP
11	to	to	TO	TO	_	10	PP
12	the	the	DT	DT	_	14	DEP
13	high	high	JJ	JJ	_	14	DEP
14	level	level	NN	NN	_	28	NP
15	of	of	IN	IN	_	14	PP
16	performance	performance	NN	NN	_	15	NP
17	,	,	,	,	_	28	DEP
18	the	the	DT	DT	_	20	DEP
19	compositional	compositional	JJ	JJ	_	20	DEP
20	talents	talents	NNS	NNS	_	28	NP
21	of	of	IN	IN	_	20	PP
22	mr.	mr.	NNP	NNP	_	23	DEP
23	douglas	douglas	NNP	NNP	_	21	NP
24	,	,	,	,	_	28	DEP
25	and	and	CC	CC	_	28	DEP
26	the	the	DT	DT	_	28	DEP
27	obvious	obvious	JJ	JJ	_	28	DEP
28	sincerity	sincerity	NN	NN	_	11	NP
29	with	with	IN	IN	_	28	SBAR
30	which	which	WDT	WDT	_	29	WHNP
31	mr.	mr.	NNP	NNP	_	32	DEP
32	stoltzman	stoltzman	NNP	NNP	_	33	NP-SBJ
33	chooses	chooses	VBZ	VBZ	_	29	S
34	his	his	PRP$	PRP$	_	35	DEP
35	selections	selections	NNS	NNS	_	33	NP-OBJ
36	.	.	.	.	_	2	DEP

1	but	but	CC	CC	_	3	DEP
2	it	it	PRP	PRP	_	3	NP-SBJ
3	was	was	VBD	VBD	_	0	ROOT
4	neither	neither	RB	RB	_	7	DEP
5	deep	deep	JJ	JJ	_	7	DEP
6	nor	nor	CC	CC	_	7	DEP
7	lasting	lasting	JJ	JJ	_	3	UCP
8	:	:	:	:	_	7	DEP
9	light	light	JJ	JJ	_	10	DEP
10	entertainment	entertainment	NN	NN	_	7	NP-PRD
11	that	that	WDT	WDT	_	10	SBAR
12	was	was	VBD	VBD	_	11	S
13	no	no	DT	DT	_	14	DEP
14	substitute	substitute	NN	NN	_	12	NP-PRD
15	for	for	IN	IN	_	14	PP
16	an	an	DT	DT	_	17	DEP
17	evening	evening	NN	NN	_	15	NP
18	of	of	IN	IN	_	17	PP
19	brahms	brahms	NNP	NNP	_	18	NP
20	.	.	.	.	_	3	DEP

1	ms.	ms.	NNP	NNP	_	2	DEP
2	waleson	waleson	NNP	NNP	_	3	NP-SBJ
3	is	is	VBZ	VBZ	_	0	ROOT
4	a	a	DT	DT	_	6	DEP
5	free-lance	free-lance	JJ	JJ	_	6	DEP
6	writer	writer	NN	NN	_	3	NP-OBJ
7	based	based	VBN	VBN	_	6	VP
8	in	in	IN	IN	_	7	PP
9	new	new	NNP	NNP	_	10	DEP
10	york	york	NNP	NNP	_	8	NP
11	.	.	.	.	_	3	DEP

1	one	one	CD	CD	_	9	NP-SBJ
2	of	of	IN	IN	_	1	PP
3	ronald	ronald	NNP	NNP	_	5	DEP
4	reagan	reagan	NNP	NNP	_	5	DEP
5	's	's	POS	POS	_	6	NP
6	attributes	attributes	NNS	NNS	_	2	NP
7	as	as	IN	IN	_	6	PP
8	president	president	NNP	NNP	_	7	NP
9	was	was	VBD	VBD	_	0	ROOT
10	that	that	IN	IN	_	9	SBAR
11	he	he	PRP	PRP	_	13	NP-SBJ
12	rarely	rarely	RB	RB	_	13	ADVP
13	gave	gave	VBD	VBD	_	10	S
14	his	his	PRP$	PRP$	_	15	DEP
15	blessing	blessing	NN	NN	_	13	NP-OBJ
16	to	to	TO	TO	_	13	PP
17	the	the	DT	DT	_	18	DEP
18	claptrap	claptrap	NN	NN	_	16	NP
19	that	that	WDT	WDT	_	18	SBAR
20	passes	passes	VBZ	VBZ	_	19	S
21	for	for	IN	IN	_	20	PP
22	``	``	``	``	_	21	DEP
23	consensus	consensus	NN	NN	_	21	NP
24	''	''	''	''	_	21	DEP
25	in	in	IN	IN	_	20	PP
26	various	various	JJ	JJ	_	28	DEP
27	international	international	JJ	JJ	_	28	DEP
28	institutions	institutions	NNS	NNS	_	25	NP
29	.	.	.	.	_	9	DEP

1	in	in	IN	IN	_	5	PP
2	fact	fact	NN	NN	_	1	NP
3	,	,	,	,	_	5	DEP
4	he	he	PRP	PRP	_	5	NP-SBJ
5	liberated	liberated	VBD	VBD	_	0	ROOT
6	the	the	DT	DT	_	7	DEP
7	u.s.	u.s.	NNP	NNP	_	5	NP-OBJ
8	from	from	IN	IN	_	5	PP
9	one	one	CD	CD	_	18	NP
10	of	of	IN	IN	_	9	PP
11	the	the	DT	DT	_	12	DEP
12	world	world	NN	NN	_	16	NP
13	's	's	VBZ	VBZ	_	12	DEP
14	most	most	RBS	RBS	_	15	DEP
15	corrupt	corrupt	JJ	JJ	_	16	ADJP
16	organizations	organizations	NNS	NNS	_	10	NP
17	--	--	:	:	_	18	DEP
18	unesco	unesco	NNP	NNP	_	8	NP
19	.	.	.	.	_	5	DEP

1	this	this	DT	DT	_	2	NP-SBJ
2	is	is	VBZ	VBZ	_	0	ROOT
3	the	the	DT	DT	_	5	DEP
4	u.n.	u.n.	NNP	NNP	_	5	DEP
5	group	group	NN	NN	_	2	NP-PRD
6	that	that	WDT	WDT	_	5	SBAR
7	managed	managed	VBD	VBD	_	6	S
8	to	to	TO	TO	_	9	DEP
9	traduce	traduce	VB	VB	_	7	S
10	its	its	PRP$	PRP$	_	12	DEP
11	own	own	JJ	JJ	_	12	DEP
12	charter	charter	NN	NN	_	9	NP-OBJ
13	of	of	IN	IN	_	12	PP
14	promoting	promoting	VBG	VBG	_	13	S
15	education	education	NN	NN	_	19	DEP
16	,	,	,	,	_	19	DEP
17	science	science	NN	NN	_	19	DEP
18	and	and	CC	CC	_	19	DEP
19	culture	culture	NN	NN	_	14	NP-OBJ
20	.	.	.	.	_	2	DEP

1	ever	ever	RB	RB	_	7	ADVP
2	since	since	IN	IN	_	1	DEP
3	,	,	,	,	_	7	DEP
4	the	the	DT	DT	_	6	DEP
5	remaining	remaining	VBG	VBG	_	6	DEP
6	members	members	NNS	NNS	_	7	NP-SBJ
7	have	have	VBP	VBP	_	0	ROOT
8	been	been	VBN	VBN	_	7	VP
9	desperate	desperate	JJ	JJ	_	8	ADJP
10	for	for	IN	IN	_	9	SBAR
11	the	the	DT	DT	_	13	DEP
12	united	united	NNP	NNP	_	13	DEP
13	states	states	NNPS	NNPS	_	15	NP-SBJ
14	to	to	TO	TO	_	15	DEP
15	rejoin	rejoin	VB	VB	_	10	S
16	this	this	DT	DT	_	18	DEP
17	dreadful	dreadful	JJ	JJ	_	18	DEP
18	group	group	NN	NN	_	15	NP-OBJ
19	.	.	.	.	_	7	DEP

1	now	now	RB	RB	_	4	ADVP
2	unesco	unesco	NNP	NNP	_	3	DEP
3	apologists	apologists	NNS	NNS	_	4	NP-SBJ
4	are	are	VBP	VBP	_	0	ROOT
5	lobbying	lobbying	VBG	VBG	_	4	VP
6	president	president	NNP	NNP	_	7	DEP
7	bush	bush	NNP	NNP	_	5	NP-OBJ
8	to	to	TO	TO	_	9	DEP
9	renege	renege	VB	VB	_	5	S
10	on	on	IN	IN	_	9	PP
11	president	president	NNP	NNP	_	13	DEP
12	reagan	reagan	NNP	NNP	_	13	DEP
13	's	's	POS	POS	_	14	NP
14	decision	decision	NN	NN	_	10	NP
15	to	to	TO	TO	_	16	DEP
16	depart	depart	VB	VB	_	14	S
17	.	.	.	.	_	4	DEP

1	but	but	CC	CC	_	3	DEP
2	we	we	PRP	PRP	_	3	NP-SBJ
3	can	can	MD	MD	_	0	ROOT
4	think	think	VB	VB	_	3	VP
5	of	of	IN	IN	_	4	PP
6	many	many	JJ	JJ	_	7	DEP
7	reasons	reasons	NNS	NNS	_	5	NP
8	to	to	TO	TO	_	9	DEP
9	stay	stay	VB	VB	_	7	SBAR
10	out	out	RB	RB	_	9	ADJP
11	for	for	IN	IN	_	9	PP
12	the	the	DT	DT	_	14	DEP
13	foreseeable	foreseeable	JJ	JJ	_	14	DEP
14	future	future	NN	NN	_	11	UCP
15	and	and	CC	CC	_	14	DEP
16	well	well	RB	RB	_	14	ADVP
17	beyond	beyond	IN	IN	_	16	DEP
18	.	.	.	.	_	3	DEP

1	the	the	DT	DT	_	2	DEP
2	u.s.	u.s.	NNP	NNP	_	10	NP-SBJ
3	,	,	,	,	_	10	DEP
4	along	along	IN	IN	_	10	PP
5	with	with	IN	IN	_	4	PP
6	britain	britain	NNP	NNP	_	8	DEP
7	and	and	CC	CC	_	8	DEP
8	singapore	singapore	NNP	NNP	_	5	NP
9	,	,	,	,	_	10	DEP
10	left	left	VBD	VBD	_	0	ROOT
11	the	the	DT	DT	_	12	DEP
12	agency	agency	NN	NN	_	10	NP-OBJ
13	when	when	WRB	WRB	_	10	SBAR
14	its	its	PRP$	PRP$	_	22	DEP
15	anti-western	anti-western	JJ	JJ	_	16	DEP
16	ideology	ideology	NN	NN	_	22	NX
17	,	,	,	,	_	22	DEP
18	financial	financial	JJ	JJ	_	19	DEP
19	corruption	corruption	NN	NN	_	22	NX
20	and	and	CC	CC	_	22	DEP
21	top	top	JJ	JJ	_	22	DEP
22	leadership	leadership	NN	NN	_	23	NP-SBJ
23	got	got	VBD	VBD	_	13	S
24	out	out	IN	IN	_	25	DEP
25	of	of	IN	IN	_	23	ADJP
26	hand	hand	NN	NN	_	25	NP
27	.	.	.	.	_	10	DEP

1	the	the	DT	DT	_	3	DEP
2	personal	personal	JJ	JJ	_	3	DEP
3	antics	antics	NNS	NNS	_	9	NP-SBJ
4	of	of	IN	IN	_	3	PP
5	agency	agency	NN	NN	_	8	DEP
6	director	director	NNP	NNP	_	8	DEP
7	amadou-mahtar	amadou-mahtar	NNP	NNP	_	8	DEP
8	m'bow	m'bow	NNP	NNP	_	4	NP
9	drew	drew	VBD	VBD	_	0	ROOT
10	much	much	JJ	JJ	_	11	DEP
11	attention	attention	NN	NN	_	9	NP-OBJ
12	,	,	,	,	_	9	DEP
13	such	such	JJ	JJ	_	14	DEP
14	as	as	IN	IN	_	9	PP
15	when	when	WRB	WRB	_	31	SBAR
16	several	several	JJ	JJ	_	21	NP-SBJ
17	of	of	IN	IN	_	16	PP
18	his	his	PRP$	PRP$	_	20	DEP
19	top	top	JJ	JJ	_	20	DEP
20	aides	aides	NNS	NNS	_	17	NP
21	were	were	VBD	VBD	_	15	S
22	uncovered	uncovered	VBN	VBN	_	21	VP
23	as	as	IN	IN	_	22	PP
24	kgb	kgb	NNP	NNP	_	25	DEP
25	plants	plants	NNS	NNS	_	23	NP
26	and	and	CC	CC	_	22	DEP
27	ejected	ejected	VBN	VBN	_	22	VP
28	from	from	IN	IN	_	27	PP
29	france	france	NNP	NNP	_	28	NP
30	and	and	CC	CC	_	31	DEP
31	when	when	WRB	WRB	_	14	SBAR
32	a	a	DT	DT	_	35	DEP
33	mysterious	mysterious	JJ	JJ	_	35	DEP
34	office	office	NN	NN	_	35	DEP
35	fire	fire	NN	NN	_	36	NP-SBJ
36	was	was	VBD	VBD	_	31	S
37	set	set	VBN	VBN	_	36	VP
38	just	just	RB	RB	_	39	ADVP
39	before	before	IN	IN	_	37	SBAR
40	congress	congress	NNP	NNP	_	41	NP-SBJ
41	sent	sent	VBD	VBD	_	39	S
42	accountants	accountants	NNS	NNS	_	41	NP-OBJ
43	to	to	TO	TO	_	44	DEP
44	trace	trace	VB	VB	_	42	SBAR
45	u.s.	u.s.	NNP	NNP	_	46	DEP
46	funds	funds	NNS	NNS	_	44	NP-OBJ
47	.	.	.	.	_	9	DEP

1	mr.	mr.	NNP	NNP	_	2	DEP
2	m'bow	m'bow	NNP	NNP	_	3	NP-SBJ
3	was	was	VBD	VBD	_	22	S
4	an	an	DT	DT	_	6	DEP
5	extreme	extreme	JJ	JJ	_	6	DEP
6	case	case	NN	NN	_	3	NP-PRD
7	,	,	,	,	_	22	DEP
8	but	but	CC	CC	_	22	DEP
9	even	even	RB	RB	_	11	DEP
10	his	his	PRP$	PRP$	_	11	DEP
11	replacement	replacement	NN	NN	_	20	NP
12	,	,	,	,	_	20	DEP
13	the	the	DT	DT	_	18	DEP
14	more	more	RBR	RBR	_	15	DEP
15	personally	personally	RB	RB	_	18	ADJP
16	genial	genial	JJ	JJ	_	15	DEP
17	spanish	spanish	JJ	JJ	_	18	DEP
18	biochemist	biochemist	NN	NN	_	20	NP
19	federico	federico	NNP	NNP	_	20	DEP
20	mayor	mayor	NNP	NNP	_	22	NP-SBJ
21	,	,	,	,	_	20	DEP
22	has	has	VBZ	VBZ	_	0	ROOT
23	had	had	VBN	VBN	_	22	VP
24	little	little	JJ	JJ	_	25	DEP
25	success	success	NN	NN	_	23	NP-OBJ
26	at	at	IN	IN	_	23	PP
27	achieving	achieving	VBG	VBG	_	26	S
28	reforms	reforms	NNS	NNS	_	27	NP-OBJ
29	.	.	.	.	_	22	DEP

1	several	several	JJ	JJ	_	3	DEP
2	ridiculous	ridiculous	JJ	JJ	_	3	DEP
3	projects	projects	NNS	NNS	_	4	NP-SBJ
4	continue	continue	VBP	VBP	_	0	ROOT
5	,	,	,	,	_	4	DEP
6	including	including	VBG	VBG	_	4	PP
7	the	the	DT	DT	_	12	DEP
8	``	``	``	``	_	12	DEP
9	new	new	JJ	JJ	_	12	DEP
10	international	international	JJ	JJ	_	12	DEP
11	economic	economic	JJ	JJ	_	12	DEP
12	order	order	NN	NN	_	6	NP
13	,	,	,	,	_	12	DEP
14	''	''	''	''	_	12	DEP
15	which	which	WDT	WDT	_	12	SBAR
16	means	means	VBZ	VBZ	_	15	S
17	redistributionism	redistributionism	NN	NN	_	16	NP-OBJ
18	from	from	IN	IN	_	17	PP
19	the	the	DT	DT	_	20	DEP
20	west	west	NNP	NNP	_	18	NP
21	to	to	TO	TO	_	22	DEP
22	pay	pay	VB	VB	_	17	SBAR
23	for	for	IN	IN	_	22	PP
24	everyone	everyone	NN	NN	_	26	DEP
25	else	else	RB	RB	_	26	DEP
26	's	's	POS	POS	_	27	NP
27	statism	statism	NN	NN	_	23	NP
28	.	.	.	.	_	4	DEP

1	the	the	DT	DT	_	2	DEP
2	orwellian	orwellian	NNP	NNP	_	9	NP-SBJ
3	``	``	``	``	_	2	DEP
4	new	new	JJ	JJ	_	7	DEP
5	world	world	NN	NN	_	7	DEP
6	information	information	NN	NN	_	7	DEP
7	order	order	NN	NN	_	2	NX
8	''	''	''	''	_	2	DEP
9	would	would	MD	MD	_	19	S
10	give	give	VB	VB	_	9	VP
11	government	government	NN	NN	_	12	DEP
12	officials	officials	NNS	NNS	_	10	NP-OBJ
13	rights	rights	NNS	NNS	_	10	NP-OBJ
14	against	against	IN	IN	_	13	PP
15	the	the	DT	DT	_	16	DEP
16	press	press	NN	NN	_	14	NP
17	;	;	:	:	_	19	DEP
18	journalists	journalists	NNS	NNS	_	19	NP-SBJ
19	would	would	MD	MD	_	0	ROOT
20	be	be	VB	VB	_	19	VP
21	obliged	obliged	VBN	VBN	_	20	VP
22	to	to	TO	TO	_	23	DEP
23	kowtow	kowtow	VB	VB	_	21	S
24	to	to	TO	TO	_	23	PP
25	their	their	PRP$	PRP$	_	26	DEP
26	government	government	NN	NN	_	24	NP
27	,	,	,	,	_	26	DEP
28	which	which	WDT	WDT	_	26	SBAR
29	would	would	MD	MD	_	28	S
30	have	have	VB	VB	_	29	VP
31	licensing	licensing	NN	NN	_	39	DEP
32	and	and	CC	CC	_	39	DEP
33	censorship	censorship	NN	NN	_	39	DEP
34	powers	powers	NNS	NNS	_	39	DEP
35	and	and	CC	CC	_	39	DEP
36	,	,	,	,	_	39	DEP
37	indeed	indeed	RB	RB	_	39	DEP
38	,	,	,	,	_	39	DEP
39	duties	duties	NNS	NNS	_	30	NP-OBJ
40	to	to	TO	TO	_	41	DEP
41	block	block	VB	VB	_	39	S
42	printing	printing	NN	NN	_	41	NP-OBJ
43	of	of	IN	IN	_	42	PP
44	``	``	``	``	_	47	DEP
45	wrong	wrong	JJ	JJ	_	47	DEP
46	''	''	''	''	_	47	DEP
47	ideas	ideas	NNS	NNS	_	43	NP
48	.	.	.	.	_	19	DEP

1	unesco	unesco	NNP	NNP	_	3	NP-SBJ
2	somehow	somehow	RB	RB	_	3	ADVP
3	converted	converted	VBD	VBD	_	0	ROOT
4	the	the	DT	DT	_	7	DEP
5	founding	founding	JJ	JJ	_	7	DEP
6	u.n.	u.n.	NNP	NNP	_	7	DEP
7	ideals	ideals	NNS	NNS	_	3	NP-OBJ
8	of	of	IN	IN	_	7	PP
9	individual	individual	JJ	JJ	_	12	DEP
10	rights	rights	NNS	NNS	_	12	DEP
11	and	and	CC	CC	_	12	DEP
12	liberty	liberty	NN	NN	_	8	NP
13	into	into	IN	IN	_	3	PP
14	``	``	``	``	_	13	DEP
15	peoples	peoples	NNS	NNS	_	16	DEP
16	'	'	POS	POS	_	17	NP
17	rights	rights	NNS	NNS	_	13	NP
18	.	.	.	.	_	3	DEP
19	''	''	''	''	_	3	DEP

1	million-dollar	million-dollar	JJ	JJ	_	2	DEP
2	conferences	conferences	NNS	NNS	_	3	NP-SBJ
3	were	were	VBD	VBD	_	0	ROOT
4	held	held	VBN	VBN	_	3	VP
5	to	to	TO	TO	_	6	DEP
6	chew	chew	VB	VB	_	4	SBAR
7	on	on	IN	IN	_	6	PP
8	subjects	subjects	NNS	NNS	_	7	NP
9	such	such	JJ	JJ	_	10	DEP
10	as	as	IN	IN	_	8	PP
11	``	``	``	``	_	24	DEP
12	ethical	ethical	JJ	JJ	_	13	DEP
13	responsibilities	responsibilities	NNS	NNS	_	24	NP
14	of	of	IN	IN	_	13	PP
15	scientists	scientists	NNS	NNS	_	14	NP
16	in	in	IN	IN	_	15	PP
17	support	support	NN	NN	_	16	NP
18	of	of	IN	IN	_	17	PP
19	disarmament	disarmament	NN	NN	_	18	NP
20	''	''	''	''	_	24	DEP
21	and	and	CC	CC	_	24	DEP
22	``	``	``	``	_	24	DEP
23	the	the	DT	DT	_	24	DEP
24	impact	impact	NN	NN	_	10	NP
25	of	of	IN	IN	_	24	PP
26	the	the	DT	DT	_	27	DEP
27	activities	activities	NNS	NNS	_	25	NP
28	of	of	IN	IN	_	27	PP
29	transnational	transnational	JJ	JJ	_	30	DEP
30	corporations	corporations	NNS	NNS	_	28	NP
31	.	.	.	.	_	3	DEP
32	''	''	''	''	_	3	DEP

1	the	the	DT	DT	_	2	DEP
2	agency	agency	NN	NN	_	3	NP-SBJ
3	was	was	VBD	VBD	_	0	ROOT
4	so	so	RB	RB	_	6	ADVP
5	totally	totally	RB	RB	_	4	DEP
6	subverted	subverted	VBN	VBN	_	3	VP
7	from	from	IN	IN	_	6	PP
8	the	the	DT	DT	_	10	DEP
9	high	high	JJ	JJ	_	10	DEP
10	principles	principles	NNS	NNS	_	7	NP
11	of	of	IN	IN	_	10	PP
12	its	its	PRP$	PRP$	_	13	DEP
13	founding	founding	NN	NN	_	11	NP
14	that	that	IN	IN	_	6	SBAR
15	even	even	RB	RB	_	17	DEP
16	the	the	DT	DT	_	17	DEP
17	soviets	soviets	NNPS	NNPS	_	19	NP-SBJ
18	now	now	RB	RB	_	19	ADVP
19	wonder	wonder	VBP	VBP	_	14	S
20	about	about	IN	IN	_	19	PP
21	an	an	DT	DT	_	22	DEP
22	agency	agency	NN	NN	_	20	NP
23	that	that	WDT	WDT	_	22	SBAR
24	seemed	seemed	VBD	VBD	_	23	S
25	so	so	RB	RB	_	26	DEP
26	congenial	congenial	JJ	JJ	_	24	ADJP
27	to	to	TO	TO	_	24	PP
28	them	them	PRP	PRP	_	27	NP
29	.	.	.	.	_	3	DEP

1	glasnost	glasnost	FW	FW	_	2	NP-SBJ
2	may	may	MD	MD	_	15	S
3	be	be	VB	VB	_	2	VP
4	partly	partly	RB	RB	_	5	DEP
5	responsible	responsible	JJ	JJ	_	3	ADJP
6	,	,	,	,	_	15	DEP
7	but	but	CC	CC	_	15	DEP
8	soviet	soviet	NNP	NNP	_	12	DEP
9	foreign	foreign	NNP	NNP	_	12	DEP
10	minister	minister	NNP	NNP	_	12	DEP
11	eduard	eduard	NNP	NNP	_	12	DEP
12	shevardnadze	shevardnadze	NNP	NNP	_	15	NP-SBJ
13	last	last	JJ	JJ	_	14	DEP
14	year	year	NN	NN	_	15	NP
15	admitted	admitted	VBD	VBD	_	0	ROOT
16	,	,	,	,	_	15	DEP
17	``	``	``	``	_	15	DEP
18	the	the	DT	DT	_	21	DEP
19	exaggerated	exaggerated	JJ	JJ	_	21	DEP
20	ideological	ideological	JJ	JJ	_	21	DEP
21	approach	approach	NN	NN	_	22	NP-SBJ
22	undermined	undermined	VBD	VBD	_	15	S
23	tolerance	tolerance	NN	NN	_	22	NP-OBJ
24	intrinsic	intrinsic	JJ	JJ	_	23	ADJP
25	to	to	TO	TO	_	24	PP
26	unesco	unesco	NNP	NNP	_	25	NP
27	.	.	.	.	_	15	DEP
28	''	''	''	''	_	15	DEP

1	unesco	unesco	NNP	NNP	_	2	NP-SBJ
2	is	is	VBZ	VBZ	_	0	ROOT
3	now	now	RB	RB	_	2	ADVP
4	holding	holding	VBG	VBG	_	2	VP
5	its	its	PRP$	PRP$	_	7	DEP
6	biennial	biennial	JJ	JJ	_	7	DEP
7	meetings	meetings	NNS	NNS	_	4	NP-OBJ
8	in	in	IN	IN	_	4	PP
9	paris	paris	NNP	NNP	_	8	NP
10	to	to	TO	TO	_	11	DEP
11	devise	devise	VB	VB	_	4	SBAR
12	its	its	PRP$	PRP$	_	14	DEP
13	next	next	JJ	JJ	_	14	DEP
14	projects	projects	NNS	NNS	_	11	NP-OBJ
15	.	.	.	.	_	2	DEP

1	mr.	mr.	NNP	NNP	_	3	DEP
2	mayor	mayor	NNP	NNP	_	3	DEP
3	's	's	POS	POS	_	4	NP
4	hope	hope	NN	NN	_	15	NP-SBJ
5	that	that	IN	IN	_	4	SBAR
6	references	references	NNS	NNS	_	12	NP-SBJ
7	to	to	TO	TO	_	6	PP
8	``	``	``	``	_	7	DEP
9	press	press	NN	NN	_	10	DEP
10	freedom	freedom	NN	NN	_	7	NP
11	''	''	''	''	_	7	DEP
12	would	would	MD	MD	_	5	S
13	survive	survive	VB	VB	_	12	VP
14	unamended	unamended	JJ	JJ	_	13	S
15	seems	seems	VBZ	VBZ	_	23	S
16	doomed	doomed	VBN	VBN	_	15	ADJP
17	to	to	TO	TO	_	16	PP
18	failure	failure	NN	NN	_	17	NP
19	;	;	:	:	_	23	DEP
20	the	the	DT	DT	_	22	DEP
21	current	current	JJ	JJ	_	22	DEP
22	phrasing	phrasing	NN	NN	_	23	NP-SBJ
23	is	is	VBZ	VBZ	_	0	ROOT
24	``	``	``	``	_	23	DEP
25	educating	educating	VBG	VBG	_	23	S
26	the	the	DT	DT	_	29	DEP
27	public	public	NN	NN	_	29	DEP
28	and	and	CC	CC	_	29	DEP
29	media	media	NNS	NNS	_	25	NP-OBJ
30	to	to	TO	TO	_	31	DEP
31	avoid	avoid	VB	VB	_	25	S
32	manipulation	manipulation	NN	NN	_	31	NP-OBJ
33	.	.	.	.	_	23	DEP
34	''	''	''	''	_	23	DEP

1	he	he	PRP	PRP	_	2	NP-SBJ
2	has	has	VBZ	VBZ	_	0	ROOT
3	n't	n't	RB	RB	_	2	DEP
4	been	been	VBN	VBN	_	2	VP
5	able	able	JJ	JJ	_	4	ADJP
6	to	to	TO	TO	_	7	DEP
7	replace	replace	VB	VB	_	5	S
8	the	the	DT	DT	_	10	DEP
9	m'bow	m'bow	NNP	NNP	_	10	DEP
10	cabal	cabal	NN	NN	_	7	NP-OBJ
11	.	.	.	.	_	2	DEP

1	soviets	soviets	NNPS	NNPS	_	2	NP-SBJ
2	remain	remain	VBP	VBP	_	32	S
3	in	in	IN	IN	_	2	PP
4	charge	charge	NN	NN	_	3	NP
5	of	of	IN	IN	_	4	PP
6	education	education	NN	NN	_	7	DEP
7	programs	programs	NNS	NNS	_	5	NP
8	,	,	,	,	_	32	DEP
9	a	a	DT	DT	_	11	DEP
10	former	former	JJ	JJ	_	11	DEP
11	head	head	NN	NN	_	19	NP-SBJ
12	of	of	IN	IN	_	11	PP
13	an	an	DT	DT	_	16	DEP
14	african	african	JJ	JJ	_	16	DEP
15	military	military	JJ	JJ	_	16	DEP
16	tribunal	tribunal	NN	NN	_	12	NP
17	for	for	IN	IN	_	16	PP
18	executions	executions	NNS	NNS	_	17	NP
19	is	is	VBZ	VBZ	_	32	S
20	in	in	IN	IN	_	19	PP
21	charge	charge	NN	NN	_	20	NP
22	of	of	IN	IN	_	21	PP
23	culture	culture	NN	NN	_	22	NP
24	,	,	,	,	_	32	DEP
25	and	and	CC	CC	_	32	DEP
26	a	a	DT	DT	_	29	DEP
27	hard-line	hard-line	JJ	JJ	_	29	DEP
28	polish	polish	JJ	JJ	_	29	DEP
29	communist	communist	NN	NN	_	32	NP-SBJ
30	in	in	IN	IN	_	29	PP
31	exile	exile	NN	NN	_	30	NP
32	directs	directs	VBZ	VBZ	_	0	ROOT
33	the	the	DT	DT	_	37	DEP
34	human-rights	human-rights	JJ	JJ	_	37	UCP
35	and	and	CC	CC	_	34	DEP
36	peace	peace	NN	NN	_	34	DEP
37	division	division	NN	NN	_	32	NP-OBJ
38	.	.	.	.	_	32	DEP

1	of	of	IN	IN	_	10	PP
2	the	the	DT	DT	_	4	DEP
3	agency	agency	NN	NN	_	4	DEP
4	's	's	POS	POS	_	7	NP
5	2,750	2,750	CD	CD	_	7	DEP
6	staff	staff	NN	NN	_	7	DEP
7	members	members	NNS	NNS	_	1	NP
8	,	,	,	,	_	10	DEP
9	230	230	CD	CD	_	10	NP-SBJ
10	are	are	VBP	VBP	_	0	ROOT
11	in	in	IN	IN	_	10	PP
12	the	the	DT	DT	_	13	DEP
13	field	field	NN	NN	_	11	NP
14	working	working	VBG	VBG	_	10	S
15	on	on	IN	IN	_	14	PP
16	actual	actual	JJ	JJ	_	17	DEP
17	projects	projects	NNS	NNS	_	15	NP
18	,	,	,	,	_	17	DEP
19	such	such	JJ	JJ	_	20	DEP
20	as	as	IN	IN	_	17	PP
21	literacy	literacy	NN	NN	_	24	NP
22	and	and	CC	CC	_	24	DEP
23	oceanographic	oceanographic	JJ	JJ	_	24	DEP
24	research	research	NN	NN	_	20	NP
25	.	.	.	.	_	10	DEP

1	the	the	DT	DT	_	2	DEP
2	position	position	NN	NN	_	17	NP-SBJ
3	of	of	IN	IN	_	2	PP
4	the	the	DT	DT	_	6	DEP
5	united	united	NNP	NNP	_	6	DEP
6	states	states	NNPS	NNPS	_	3	NP
7	,	,	,	,	_	6	DEP
8	which	which	WDT	WDT	_	6	SBAR
9	once	once	RB	RB	_	10	ADVP
10	contributed	contributed	VBD	VBD	_	8	S
11	25	25	CD	CD	_	12	DEP
12	%	%	NN	NN	_	10	NP-OBJ
13	of	of	IN	IN	_	12	PP
14	the	the	DT	DT	_	15	DEP
15	budget	budget	NN	NN	_	13	NP
16	,	,	,	,	_	6	DEP
17	is	is	VBZ	VBZ	_	0	ROOT
18	that	that	IN	IN	_	17	SBAR
19	nothing	nothing	NN	NN	_	20	NP-SBJ
20	has	has	VBZ	VBZ	_	18	S
21	changed	changed	VBN	VBN	_	20	VP
22	.	.	.	.	_	17	DEP

1	john	john	NNP	NNP	_	2	DEP
2	bolton	bolton	NNP	NNP	_	6	NP
3	,	,	,	,	_	6	DEP
4	the	the	DT	DT	_	6	DEP
5	assistant	assistant	NN	NN	_	6	DEP
6	secretary	secretary	NN	NN	_	13	NP-SBJ
7	of	of	IN	IN	_	6	PP
8	state	state	NN	NN	_	7	NP
9	for	for	IN	IN	_	6	PP
10	international	international	JJ	JJ	_	11	DEP
11	organizations	organizations	NNS	NNS	_	9	NP
12	,	,	,	,	_	6	DEP
13	told	told	VBD	VBD	_	0	ROOT
14	congress	congress	NNP	NNP	_	13	NP-OBJ
15	that	that	IN	IN	_	13	SBAR
16	the	the	DT	DT	_	25	DEP
17	continuing	continuing	VBG	VBG	_	25	DEP
18	``	``	``	``	_	25	DEP
19	statist	statist	JJ	JJ	_	25	DEP
20	,	,	,	,	_	25	DEP
21	restrictive	restrictive	JJ	JJ	_	25	DEP
22	,	,	,	,	_	25	DEP
23	nondemocratic	nondemocratic	JJ	JJ	_	25	DEP
24	''	''	''	''	_	25	DEP
25	programs	programs	NNS	NNS	_	26	NP-SBJ
26	make	make	VBP	VBP	_	15	S
27	rejoining	rejoining	VBG	VBG	_	26	S
28	any	any	DT	DT	_	29	DEP
29	time	time	NN	NN	_	27	NP
30	soon	soon	RB	RB	_	29	ADVP
31	``	``	``	``	_	27	DEP
32	extremely	extremely	RB	RB	_	33	DEP
33	unlikely	unlikely	JJ	JJ	_	27	ADJP
34	.	.	.	.	_	13	DEP
35	''	''	''	''	_	13	DEP

1	this	this	DT	DT	_	2	NP-SBJ
2	has	has	VBZ	VBZ	_	0	ROOT
3	n't	n't	RB	RB	_	2	DEP
4	much	much	RB	RB	_	5	ADVP
5	bothered	bothered	VBN	VBN	_	2	VP
6	the	the	DT	DT	_	8	DEP
7	unesco	unesco	NNP	NNP	_	8	DEP
8	delegates	delegates	NNS	NNS	_	5	NP-OBJ
9	,	,	,	,	_	8	DEP
10	who	who	WP	WP	_	8	SBAR
11	last	last	JJ	JJ	_	12	DEP
12	week	week	NN	NN	_	13	NP
13	could	could	MD	MD	_	10	S
14	n't	n't	RB	RB	_	13	DEP
15	even	even	RB	RB	_	13	ADVP
16	agree	agree	VB	VB	_	13	VP
17	to	to	TO	TO	_	18	DEP
18	raise	raise	VB	VB	_	16	S
19	funds	funds	NNS	NNS	_	18	NP-OBJ
20	by	by	IN	IN	_	18	PP
21	selling	selling	VBG	VBG	_	20	S
22	off	off	RP	RP	_	21	PRT
23	a	a	DT	DT	_	27	DEP
24	fancy	fancy	JJ	JJ	_	27	DEP
25	19th-century	19th-century	JJ	JJ	_	27	DEP
26	french	french	JJ	JJ	_	27	DEP
27	chateau	chateau	NN	NN	_	21	NP-OBJ
28	the	the	DT	DT	_	29	DEP
29	agency	agency	NN	NN	_	31	NP-SBJ
30	somehow	somehow	RB	RB	_	31	ADVP
31	owns	owns	VBZ	VBZ	_	27	SBAR
32	.	.	.	.	_	2	DEP

1	other	other	JJ	JJ	_	2	DEP
2	countries	countries	NNS	NNS	_	8	NP-SBJ
3	,	,	,	,	_	2	DEP
4	including	including	VBG	VBG	_	2	PP
5	west	west	NNP	NNP	_	6	DEP
6	germany	germany	NNP	NNP	_	4	NP
7	,	,	,	,	_	2	DEP
8	may	may	MD	MD	_	0	ROOT
9	have	have	VB	VB	_	8	VP
10	a	a	DT	DT	_	12	DEP
11	hard	hard	JJ	JJ	_	12	DEP
12	time	time	NN	NN	_	9	NP-OBJ
13	justifying	justifying	VBG	VBG	_	12	S
14	continued	continued	JJ	JJ	_	15	DEP
15	membership	membership	NN	NN	_	13	NP-OBJ
16	.	.	.	.	_	8	DEP

1	we	we	PRP	PRP	_	2	NP-SBJ
2	see	see	VBP	VBP	_	0	ROOT
3	an	an	DT	DT	_	6	DEP
4	even	even	RB	RB	_	5	DEP
5	stronger	stronger	JJR	JJR	_	6	ADJP
6	argument	argument	NN	NN	_	2	NP-OBJ
7	against	against	IN	IN	_	6	PP
8	unesco	unesco	NNP	NNP	_	7	NP
9	than	than	IN	IN	_	6	PP
10	its	its	PRP$	PRP$	_	12	DEP
11	unsurprising	unsurprising	JJ	JJ	_	12	DEP
12	failure	failure	NN	NN	_	9	NP
13	to	to	TO	TO	_	12	PP
14	reform	reform	NN	NN	_	13	NP
15	.	.	.	.	_	2	DEP

1	this	this	DT	DT	_	2	NP-SBJ
2	is	is	VBZ	VBZ	_	0	ROOT
3	that	that	IN	IN	_	2	SBAR
4	the	the	DT	DT	_	6	DEP
5	reagan	reagan	NNP	NNP	_	6	DEP
6	revolution	revolution	NNP	NNP	_	13	NP-SBJ
7	spanning	spanning	VBG	VBG	_	6	VP
8	eastern	eastern	NNP	NNP	_	9	DEP
9	europe	europe	NNP	NNP	_	12	NP
10	and	and	CC	CC	_	12	DEP
11	tiananmen	tiananmen	NNP	NNP	_	12	DEP
12	square	square	NNP	NNP	_	7	NP-OBJ
13	shows	shows	VBZ	VBZ	_	3	S
14	the	the	DT	DT	_	15	DEP
15	power	power	NN	NN	_	13	NP-OBJ
16	of	of	IN	IN	_	15	PP
17	ideas	ideas	NNS	NNS	_	16	NP
18	unencumbered	unencumbered	JJ	JJ	_	17	ADJP
19	by	by	IN	IN	_	18	PP
20	international	international	JJ	JJ	_	22	DEP
21	civil	civil	JJ	JJ	_	22	DEP
22	servants	servants	NNS	NNS	_	25	NP
23	or	or	CC	CC	_	25	DEP
24	government	government	NN	NN	_	25	DEP
25	functionaries	functionaries	NNS	NNS	_	19	NP
26	.	.	.	.	_	2	DEP

1	free	free	JJ	JJ	_	2	DEP
2	markets	markets	NNS	NNS	_	8	NP
3	,	,	,	,	_	8	DEP
4	free	free	JJ	JJ	_	5	DEP
5	minds	minds	NNS	NNS	_	8	NP
6	and	and	CC	CC	_	8	DEP
7	free	free	JJ	JJ	_	8	DEP
8	elections	elections	NNS	NNS	_	9	NP-SBJ
9	have	have	VBP	VBP	_	0	ROOT
10	an	an	DT	DT	_	11	DEP
11	appeal	appeal	NN	NN	_	9	NP-OBJ
12	that	that	WDT	WDT	_	11	SBAR
13	seems	seems	VBZ	VBZ	_	12	S
14	to	to	TO	TO	_	15	DEP
15	get	get	VB	VB	_	13	S
16	muddled	muddled	VBN	VBN	_	15	VP
17	only	only	RB	RB	_	18	DEP
18	when	when	WRB	WRB	_	16	SBAR
19	delivered	delivered	VBN	VBN	_	18	S
20	through	through	IN	IN	_	19	PP
21	u.n.	u.n.	NNP	NNP	_	22	DEP
22	organizations	organizations	NNS	NNS	_	20	NP
23	--	--	:	:	_	22	DEP
24	which	which	WDT	WDT	_	22	SBAR
25	of	of	IN	IN	_	27	PP
26	course	course	NN	NN	_	25	NP
27	are	are	VBP	VBP	_	24	S
28	made	made	VBN	VBN	_	27	VP
29	up	up	RP	RP	_	28	PRT
30	largely	largely	RB	RB	_	31	ADVP
31	of	of	IN	IN	_	28	PP
32	governments	governments	NNS	NNS	_	31	NP
33	that	that	WDT	WDT	_	32	SBAR
34	fear	fear	VBP	VBP	_	33	S
35	these	these	DT	DT	_	36	DEP
36	principles	principles	NNS	NNS	_	34	NP-OBJ
37	at	at	IN	IN	_	34	PP
38	home	home	NN	NN	_	37	NP
39	.	.	.	.	_	9	DEP

1	the	the	DT	DT	_	2	DEP
2	babelists	babelists	NNS	NNS	_	7	NP-SBJ
3	of	of	IN	IN	_	2	PP
4	the	the	DT	DT	_	6	DEP
5	united	united	NNP	NNP	_	6	DEP
6	nations	nations	NNPS	NNPS	_	3	NP
7	are	are	VBP	VBP	_	0	ROOT
8	experts	experts	NNS	NNS	_	7	NP-PRD
9	at	at	IN	IN	_	8	PP
10	obfuscation	obfuscation	NN	NN	_	9	NP
11	.	.	.	.	_	7	DEP

1	this	this	DT	DT	_	2	NP-SBJ
2	can	can	MD	MD	_	11	S
3	have	have	VB	VB	_	2	VP
4	its	its	PRP$	PRP$	_	5	DEP
5	purposes	purposes	NNS	NNS	_	3	NP-OBJ
6	at	at	IN	IN	_	3	PP
7	times	times	NNS	NNS	_	6	NP
8	,	,	,	,	_	11	DEP
9	but	but	CC	CC	_	11	DEP
10	there	there	EX	EX	_	11	NP-SBJ
11	's	's	VBZ	VBZ	_	0	ROOT
12	no	no	DT	DT	_	13	DEP
13	reason	reason	NN	NN	_	11	NP-PRD
14	to	to	TO	TO	_	15	DEP
15	cloud	cloud	VB	VB	_	13	SBAR
16	the	the	DT	DT	_	19	DEP
17	importance	importance	NN	NN	_	19	DEP
18	and	and	CC	CC	_	19	DEP
19	allure	allure	NN	NN	_	15	NP-OBJ
20	of	of	IN	IN	_	19	PP
21	western	western	JJ	JJ	_	22	DEP
22	concepts	concepts	NNS	NNS	_	20	NP
23	of	of	IN	IN	_	22	PP
24	freedom	freedom	NN	NN	_	26	DEP
25	and	and	CC	CC	_	26	DEP
26	justice	justice	NN	NN	_	23	NP
27	.	.	.	.	_	11	DEP

1	we	we	PRP	PRP	_	2	NP-SBJ
2	can	can	MD	MD	_	0	ROOT
3	see	see	VB	VB	_	2	VP
4	plenty	plenty	RB	RB	_	12	NP
5	of	of	IN	IN	_	4	PP
6	reasons	reasons	NNS	NNS	_	5	NP
7	to	to	TO	TO	_	8	DEP
8	stay	stay	VB	VB	_	6	SBAR
9	out	out	RB	RB	_	8	ADVP
10	,	,	,	,	_	12	DEP
11	and	and	CC	CC	_	12	DEP
12	none	none	NN	NN	_	3	NP-OBJ
13	to	to	TO	TO	_	14	DEP
14	rejoin	rejoin	VB	VB	_	12	SBAR
15	unesco	unesco	NNP	NNP	_	14	NP-OBJ
16	.	.	.	.	_	2	DEP

1	researchers	researchers	NNS	NNS	_	9	NP-SBJ
2	at	at	IN	IN	_	1	PP
3	plant	plant	NNP	NNP	_	6	DEP
4	genetic	genetic	NNP	NNP	_	6	DEP
5	systems	systems	NNP	NNP	_	6	DEP
6	n.v.	n.v.	NNP	NNP	_	2	NP
7	in	in	IN	IN	_	6	PP
8	belgium	belgium	NNP	NNP	_	7	NP
9	said	said	VBD	VBD	_	0	ROOT
10	they	they	PRP	PRP	_	11	NP-SBJ
11	have	have	VBP	VBP	_	9	SBAR
12	developed	developed	VBN	VBN	_	11	VP
13	a	a	DT	DT	_	16	DEP
14	genetic	genetic	JJ	JJ	_	16	DEP
15	engineering	engineering	NN	NN	_	16	DEP
16	technique	technique	NN	NN	_	12	NP-OBJ
17	for	for	IN	IN	_	16	PP
18	creating	creating	VBG	VBG	_	17	S
19	hybrid	hybrid	JJ	JJ	_	20	DEP
20	plants	plants	NNS	NNS	_	18	NP-OBJ
21	for	for	IN	IN	_	20	PP
22	a	a	DT	DT	_	23	DEP
23	number	number	NN	NN	_	21	NP
24	of	of	IN	IN	_	23	PP
25	key	key	JJ	JJ	_	26	DEP
26	crops	crops	NNS	NNS	_	24	NP
27	.	.	.	.	_	9	DEP

1	the	the	DT	DT	_	2	DEP
2	researchers	researchers	NNS	NNS	_	3	NP-SBJ
3	said	said	VBD	VBD	_	0	ROOT
4	they	they	PRP	PRP	_	5	NP-SBJ
5	have	have	VBP	VBP	_	3	SBAR
6	isolated	isolated	VBN	VBN	_	5	VP
7	a	a	DT	DT	_	9	DEP
8	plant	plant	NN	NN	_	9	DEP
9	gene	gene	NN	NN	_	6	NP-OBJ
10	that	that	WDT	WDT	_	9	SBAR
11	prevents	prevents	VBZ	VBZ	_	10	S
12	the	the	DT	DT	_	13	DEP
13	production	production	NN	NN	_	11	NP-OBJ
14	of	of	IN	IN	_	13	PP
15	pollen	pollen	NN	NN	_	14	NP
16	.	.	.	.	_	3	DEP

1	the	the	DT	DT	_	2	DEP
2	gene	gene	NN	NN	_	4	NP-SBJ
3	thus	thus	RB	RB	_	4	ADVP
4	can	can	MD	MD	_	0	ROOT
5	prevent	prevent	VB	VB	_	4	VP
6	a	a	DT	DT	_	7	DEP
7	plant	plant	NN	NN	_	5	NP-OBJ
8	from	from	IN	IN	_	5	PP
9	fertilizing	fertilizing	VBG	VBG	_	8	S
10	itself	itself	PRP	PRP	_	9	NP-OBJ
11	.	.	.	.	_	4	DEP

1	such	such	JJ	JJ	_	4	DEP
2	so-called	so-called	JJ	JJ	_	4	DEP
3	male-sterile	male-sterile	JJ	JJ	_	4	DEP
4	plants	plants	NNS	NNS	_	5	NP-SBJ
5	can	can	MD	MD	_	0	ROOT
6	then	then	RB	RB	_	5	ADVP
7	be	be	VB	VB	_	5	VP
8	fertilized	fertilized	VBN	VBN	_	7	VP
9	by	by	IN	IN	_	8	PP
10	pollen	pollen	NN	NN	_	9	NP
11	from	from	IN	IN	_	10	PP
12	another	another	DT	DT	_	13	DEP
13	strain	strain	NN	NN	_	11	NP
14	of	of	IN	IN	_	13	PP
15	the	the	DT	DT	_	16	DEP
16	plant	plant	NN	NN	_	14	NP
17	,	,	,	,	_	8	DEP
18	thereby	thereby	RB	RB	_	19	ADVP
19	producing	producing	VBG	VBG	_	8	S
20	hybrid	hybrid	JJ	JJ	_	21	DEP
21	seed	seed	NN	NN	_	19	NP-OBJ
22	.	.	.	.	_	5	DEP

1	the	the	DT	DT	_	3	DEP
2	new	new	JJ	JJ	_	3	DEP
3	generation	generation	NN	NN	_	6	NP-SBJ
4	of	of	IN	IN	_	3	PP
5	plants	plants	NNS	NNS	_	4	NP
6	will	will	MD	MD	_	0	ROOT
7	possess	possess	VB	VB	_	6	VP
8	the	the	DT	DT	_	12	DEP
9	flourishing	flourishing	JJ	JJ	_	12	DEP
10	,	,	,	,	_	12	DEP
11	high-production	high-production	JJ	JJ	_	12	DEP
12	trait	trait	NN	NN	_	7	NP-OBJ
13	known	known	VBN	VBN	_	12	VP
14	as	as	IN	IN	_	13	PP
15	``	``	``	``	_	14	DEP
16	hybrid	hybrid	JJ	JJ	_	17	DEP
17	vigor	vigor	NN	NN	_	14	NP
18	,	,	,	,	_	12	DEP
19	''	''	''	''	_	12	DEP
20	similar	similar	JJ	JJ	_	12	ADJP
21	to	to	TO	TO	_	20	PP
22	that	that	DT	DT	_	21	NP
23	now	now	RB	RB	_	24	ADVP
24	seen	seen	VBN	VBN	_	22	VP
25	in	in	IN	IN	_	24	PP
26	hybrid	hybrid	JJ	JJ	_	27	DEP
27	corn	corn	NN	NN	_	25	NP
28	.	.	.	.	_	6	DEP

1	``	``	``	``	_	17	DEP
2	the	the	DT	DT	_	3	DEP
3	development	development	NN	NN	_	4	NP-SBJ
4	could	could	MD	MD	_	17	S
5	have	have	VB	VB	_	4	VP
6	a	a	DT	DT	_	8	DEP
7	dramatic	dramatic	JJ	JJ	_	8	DEP
8	effect	effect	NN	NN	_	5	NP-OBJ
9	on	on	IN	IN	_	8	PP
10	farm	farm	NN	NN	_	11	DEP
11	production	production	NN	NN	_	14	NP
12	,	,	,	,	_	14	DEP
13	especially	especially	RB	RB	_	14	DEP
14	cotton	cotton	NN	NN	_	9	NP
15	,	,	,	,	_	17	DEP
16	''	''	''	''	_	17	DEP
17	said	said	VBD	VBD	_	0	ROOT
18	murray	murray	NNP	NNP	_	19	DEP
19	robinson	robinson	NNP	NNP	_	21	NP
20	,	,	,	,	_	21	DEP
21	president	president	NN	NN	_	17	NP-SBJ
22	of	of	IN	IN	_	21	PP
23	delta	delta	NNP	NNP	_	27	DEP
24	&	&	CC	CC	_	27	DEP
25	pine	pine	NNP	NNP	_	27	DEP
26	land	land	NNP	NNP	_	27	DEP
27	co.	co.	NNP	NNP	_	32	NP
28	,	,	,	,	_	32	DEP
29	a	a	DT	DT	_	32	DEP
30	southwide	southwide	NNP	NNP	_	32	DEP
31	inc.	inc.	NNP	NNP	_	32	DEP
32	subsidiary	subsidiary	NN	NN	_	22	NP
33	that	that	WDT	WDT	_	32	SBAR
34	is	is	VBZ	VBZ	_	33	S
35	one	one	CD	CD	_	34	NP-OBJ
36	of	of	IN	IN	_	35	PP
37	the	the	DT	DT	_	41	DEP
38	largest	largest	JJS	JJS	_	41	DEP
39	cotton	cotton	NN	NN	_	41	DEP
40	seed	seed	NN	NN	_	41	DEP
41	producers	producers	NNS	NNS	_	36	NP
42	in	in	IN	IN	_	41	PP
43	the	the	DT	DT	_	44	DEP
44	u.s.	u.s.	NNP	NNP	_	42	NP
45	.	.	.	.	_	17	DEP

1	on	on	IN	IN	_	13	PP
2	a	a	DT	DT	_	4	DEP
3	commercial	commercial	JJ	JJ	_	4	DEP
4	scale	scale	NN	NN	_	1	NP
5	,	,	,	,	_	13	DEP
6	the	the	DT	DT	_	7	DEP
7	sterilization	sterilization	NN	NN	_	13	NP-SBJ
8	of	of	IN	IN	_	7	PP
9	the	the	DT	DT	_	12	DEP
10	pollen-producing	pollen-producing	VBG	VBG	_	12	DEP
11	male	male	JJ	JJ	_	12	DEP
12	part	part	NN	NN	_	8	NP
13	has	has	VBZ	VBZ	_	0	ROOT
14	only	only	RB	RB	_	13	ADVP
15	been	been	VBN	VBN	_	13	VP
16	achieved	achieved	VBN	VBN	_	15	VP
17	in	in	IN	IN	_	16	PP
18	corn	corn	NN	NN	_	22	DEP
19	and	and	CC	CC	_	22	DEP
20	sorghum	sorghum	NN	NN	_	22	DEP
21	feed	feed	NN	NN	_	22	DEP
22	grains	grains	NNS	NNS	_	17	NP
23	.	.	.	.	_	13	DEP

1	that	that	DT	DT	_	2	NP-SBJ
2	's	's	VBZ	VBZ	_	0	ROOT
3	because	because	IN	IN	_	2	SBAR
4	the	the	DT	DT	_	6	DEP
5	male	male	NN	NN	_	6	DEP
6	part	part	NN	NN	_	9	NP
7	,	,	,	,	_	9	DEP
8	the	the	DT	DT	_	9	DEP
9	tassel	tassel	NN	NN	_	16	NP
10	,	,	,	,	_	9	DEP
11	and	and	CC	CC	_	16	DEP
12	the	the	DT	DT	_	13	DEP
13	female	female	NN	NN	_	16	NP
14	,	,	,	,	_	16	DEP
15	the	the	DT	DT	_	16	DEP
16	ear	ear	NN	NN	_	18	NP-SBJ
17	,	,	,	,	_	16	DEP
18	are	are	VBP	VBP	_	3	S
19	some	some	DT	DT	_	20	DEP
20	distance	distance	NN	NN	_	21	NP
21	apart	apart	RB	RB	_	18	ADVP
22	on	on	IN	IN	_	18	PP
23	the	the	DT	DT	_	25	DEP
24	corn	corn	NN	NN	_	25	DEP
25	plant	plant	NN	NN	_	22	NP
26	.	.	.	.	_	2	DEP

1	in	in	IN	IN	_	9	PP
2	a	a	DT	DT	_	4	DEP
3	labor-intensive	labor-intensive	JJ	JJ	_	4	DEP
4	process	process	NN	NN	_	1	NP
5	,	,	,	,	_	9	DEP
6	the	the	DT	DT	_	8	DEP
7	seed	seed	NN	NN	_	8	DEP
8	companies	companies	NNS	NNS	_	9	NP-SBJ
9	cut	cut	VBD	VBD	_	0	ROOT
10	off	off	RP	RP	_	9	PRT
11	the	the	DT	DT	_	12	DEP
12	tassels	tassels	NNS	NNS	_	9	NP-OBJ
13	of	of	IN	IN	_	12	PP
14	each	each	DT	DT	_	15	DEP
15	plant	plant	NN	NN	_	13	NP
16	,	,	,	,	_	9	DEP
17	making	making	VBG	VBG	_	9	S
18	it	it	PRP	PRP	_	20	NP-SBJ
19	male	male	JJ	JJ	_	20	DEP
20	sterile	sterile	JJ	JJ	_	17	S
21	.	.	.	.	_	9	DEP

1	they	they	PRP	PRP	_	2	NP-SBJ
2	sow	sow	VBP	VBP	_	0	ROOT
3	a	a	DT	DT	_	4	DEP
4	row	row	NN	NN	_	2	NP-OBJ
5	of	of	IN	IN	_	4	PP
6	male-fertile	male-fertile	JJ	JJ	_	7	DEP
7	plants	plants	NNS	NNS	_	5	NP
8	nearby	nearby	RB	RB	_	2	ADVP
9	,	,	,	,	_	2	DEP
10	which	which	WDT	WDT	_	2	SBAR
11	then	then	RB	RB	_	12	ADVP
12	pollinate	pollinate	VBP	VBP	_	10	S
13	the	the	DT	DT	_	15	DEP
14	male-sterile	male-sterile	JJ	JJ	_	15	DEP
15	plants	plants	NNS	NNS	_	12	NP-OBJ
16	.	.	.	.	_	2	DEP

1	the	the	DT	DT	_	5	DEP
2	first	first	JJ	JJ	_	5	DEP
3	hybrid	hybrid	JJ	JJ	_	5	DEP
4	corn	corn	NN	NN	_	5	DEP
5	seeds	seeds	NNS	NNS	_	11	NP-SBJ
6	produced	produced	VBN	VBN	_	5	VP
7	using	using	VBG	VBG	_	6	S
8	this	this	DT	DT	_	10	DEP
9	mechanical	mechanical	JJ	JJ	_	10	DEP
10	approach	approach	NN	NN	_	7	NP-OBJ
11	were	were	VBD	VBD	_	18	S
12	introduced	introduced	VBN	VBN	_	11	VP
13	in	in	IN	IN	_	12	PP
14	the	the	DT	DT	_	15	DEP
15	1930s	1930s	NNS	NNS	_	13	NP
16	and	and	CC	CC	_	18	DEP
17	they	they	PRP	PRP	_	18	NP-SBJ
18	yielded	yielded	VBD	VBD	_	0	ROOT
19	as	as	RB	RB	_	21	DEP
20	much	much	JJ	JJ	_	21	DEP
21	as	as	IN	IN	_	23	QP
22	20	20	CD	CD	_	21	DEP
23	%	%	NN	NN	_	24	NP
24	more	more	JJR	JJR	_	25	ADJP
25	corn	corn	NN	NN	_	18	NP-OBJ
26	than	than	IN	IN	_	25	PP
27	naturally	naturally	RB	RB	_	28	DEP
28	pollinated	pollinated	VBN	VBN	_	29	ADJP
29	plants	plants	NNS	NNS	_	26	NP
30	.	.	.	.	_	18	DEP

1	the	the	DT	DT	_	3	DEP
2	vast	vast	JJ	JJ	_	3	DEP
3	majority	majority	NN	NN	_	10	NP-SBJ
4	of	of	IN	IN	_	3	PP
5	the	the	DT	DT	_	8	DEP
6	u.s.	u.s.	NNP	NNP	_	8	DEP
7	corn	corn	NN	NN	_	8	DEP
8	crop	crop	NN	NN	_	4	NP
9	now	now	RB	RB	_	10	ADVP
10	is	is	VBZ	VBZ	_	0	ROOT
11	grown	grown	VBN	VBN	_	10	VP
12	from	from	IN	IN	_	11	PP
13	hybrid	hybrid	JJ	JJ	_	14	DEP
14	seeds	seeds	NNS	NNS	_	12	NP
15	produced	produced	VBN	VBN	_	14	VP
16	by	by	IN	IN	_	15	PP
17	seed	seed	NN	NN	_	18	DEP
18	companies	companies	NNS	NNS	_	16	NP
19	.	.	.	.	_	10	DEP

1	a	a	DT	DT	_	3	DEP
2	similar	similar	JJ	JJ	_	3	DEP
3	technique	technique	NN	NN	_	4	NP-SBJ
4	is	is	VBZ	VBZ	_	0	ROOT
5	almost	almost	RB	RB	_	6	DEP
6	impossible	impossible	JJ	JJ	_	4	ADJP
7	to	to	TO	TO	_	8	DEP
8	apply	apply	VB	VB	_	6	SBAR
9	to	to	TO	TO	_	8	PP
10	other	other	JJ	JJ	_	11	DEP
11	crops	crops	NNS	NNS	_	9	NP
12	,	,	,	,	_	11	DEP
13	such	such	JJ	JJ	_	14	DEP
14	as	as	IN	IN	_	11	PP
15	cotton	cotton	NN	NN	_	19	DEP
16	,	,	,	,	_	19	DEP
17	soybeans	soybeans	NNS	NNS	_	19	DEP
18	and	and	CC	CC	_	19	DEP
19	rice	rice	NN	NN	_	14	NP
20	.	.	.	.	_	4	DEP

1	the	the	DT	DT	_	3	DEP
2	male	male	JJ	JJ	_	3	DEP
3	part	part	NN	NN	_	6	NP
4	,	,	,	,	_	6	DEP
5	the	the	DT	DT	_	6	DEP
6	anthers	anthers	NNS	NNS	_	16	NP
7	of	of	IN	IN	_	6	PP
8	the	the	DT	DT	_	9	DEP
9	plant	plant	NN	NN	_	7	NP
10	,	,	,	,	_	16	DEP
11	and	and	CC	CC	_	16	DEP
12	the	the	DT	DT	_	13	DEP
13	female	female	NN	NN	_	16	NP
14	,	,	,	,	_	16	DEP
15	the	the	DT	DT	_	16	DEP
16	pistils	pistils	NNS	NNS	_	22	NP-SBJ
17	,	,	,	,	_	16	DEP
18	of	of	IN	IN	_	16	PP
19	the	the	DT	DT	_	21	DEP
20	same	same	JJ	JJ	_	21	DEP
21	plant	plant	NN	NN	_	18	NP
22	are	are	VBP	VBP	_	0	ROOT
23	within	within	IN	IN	_	22	UCP
24	a	a	DT	DT	_	25	DEP
25	fraction	fraction	NN	NN	_	23	NP
26	of	of	IN	IN	_	25	PP
27	an	an	DT	DT	_	28	DEP
28	inch	inch	NN	NN	_	26	NP
29	or	or	CC	CC	_	23	DEP
30	even	even	RB	RB	_	23	ADVP
31	attached	attached	VBN	VBN	_	23	VP
32	to	to	TO	TO	_	31	PP
33	each	each	DT	DT	_	34	DEP
34	other	other	JJ	JJ	_	32	NP
35	.	.	.	.	_	22	DEP

1	the	the	DT	DT	_	2	DEP
2	anthers	anthers	NNS	NNS	_	6	NP-SBJ
3	in	in	IN	IN	_	2	PP
4	these	these	DT	DT	_	5	DEP
5	plants	plants	NNS	NNS	_	3	NP
6	are	are	VBP	VBP	_	0	ROOT
7	difficult	difficult	JJ	JJ	_	6	ADJP
8	to	to	TO	TO	_	9	DEP
9	clip	clip	VB	VB	_	7	SBAR
10	off	off	RP	RP	_	9	PRT
11	.	.	.	.	_	6	DEP

1	in	in	IN	IN	_	9	PP
2	china	china	NNP	NNP	_	1	NP
3	,	,	,	,	_	9	DEP
4	a	a	DT	DT	_	6	DEP
5	great	great	JJ	JJ	_	6	DEP
6	number	number	NN	NN	_	9	NP-SBJ
7	of	of	IN	IN	_	6	PP
8	workers	workers	NNS	NNS	_	7	NP
9	are	are	VBP	VBP	_	31	S
10	engaged	engaged	VBN	VBN	_	9	VP
11	in	in	IN	IN	_	10	PP
12	pulling	pulling	VBG	VBG	_	11	S
13	out	out	RP	RP	_	12	PRT
14	the	the	DT	DT	_	16	DEP
15	male	male	JJ	JJ	_	16	DEP
16	organs	organs	NNS	NNS	_	12	NP-OBJ
17	of	of	IN	IN	_	16	PP
18	rice	rice	NN	NN	_	19	DEP
19	plants	plants	NNS	NNS	_	17	NP
20	using	using	VBG	VBG	_	12	S
21	tweezers	tweezers	NNS	NNS	_	20	NP-OBJ
22	,	,	,	,	_	31	DEP
23	and	and	CC	CC	_	31	DEP
24	one-third	one-third	NN	NN	_	31	NP-SBJ
25	of	of	IN	IN	_	24	PP
26	rice	rice	NN	NN	_	25	NP
27	produced	produced	VBN	VBN	_	26	VP
28	in	in	IN	IN	_	27	PP
29	that	that	DT	DT	_	30	DEP
30	country	country	NN	NN	_	28	NP
31	is	is	VBZ	VBZ	_	0	ROOT
32	grown	grown	VBN	VBN	_	31	VP
33	from	from	IN	IN	_	32	PP
34	hybrid	hybrid	JJ	JJ	_	35	DEP
35	seeds	seeds	NNS	NNS	_	33	NP
36	.	.	.	.	_	31	DEP

1	at	at	IN	IN	_	7	PP
2	plant	plant	NNP	NNP	_	4	DEP
3	genetic	genetic	NNP	NNP	_	4	DEP
4	systems	systems	NNPS	NNPS	_	1	NP
5	,	,	,	,	_	7	DEP
6	researchers	researchers	NNS	NNS	_	7	NP-SBJ
7	have	have	VBP	VBP	_	0	ROOT
8	isolated	isolated	VBN	VBN	_	7	VP
9	a	a	DT	DT	_	11	DEP
10	pollen-inhibiting	pollen-inhibiting	JJ	JJ	_	11	DEP
11	gene	gene	NN	NN	_	8	NP-OBJ
12	that	that	WDT	WDT	_	11	SBAR
13	can	can	MD	MD	_	12	S
14	be	be	VB	VB	_	13	VP
15	inserted	inserted	VBN	VBN	_	14	VP
16	in	in	IN	IN	_	15	PP
17	a	a	DT	DT	_	18	DEP
18	plant	plant	NN	NN	_	16	NP
19	to	to	TO	TO	_	20	DEP
20	confer	confer	VB	VB	_	15	S
21	male	male	JJ	JJ	_	22	DEP
22	sterility	sterility	NN	NN	_	20	NP-OBJ
23	.	.	.	.	_	7	DEP

1	jan	jan	NNP	NNP	_	2	DEP
2	leemans	leemans	NNP	NNP	_	5	NP
3	,	,	,	,	_	5	DEP
4	research	research	NN	NN	_	5	DEP
5	director	director	NN	NN	_	7	NP-SBJ
6	,	,	,	,	_	5	DEP
7	said	said	VBD	VBD	_	0	ROOT
8	this	this	DT	DT	_	9	DEP
9	gene	gene	NN	NN	_	10	NP-SBJ
10	was	was	VBD	VBD	_	7	SBAR
11	successfully	successfully	RB	RB	_	12	ADVP
12	introduced	introduced	VBN	VBN	_	10	VP
13	in	in	IN	IN	_	12	PP
14	oil-producing	oil-producing	JJ	JJ	_	16	DEP
15	rapeseed	rapeseed	NN	NN	_	16	DEP
16	plants	plants	NNS	NNS	_	20	NP
17	,	,	,	,	_	20	DEP
18	a	a	DT	DT	_	20	DEP
19	major	major	JJ	JJ	_	20	DEP
20	crop	crop	NN	NN	_	13	NP
21	in	in	IN	IN	_	20	PP
22	europe	europe	NNP	NNP	_	24	DEP
23	and	and	CC	CC	_	24	DEP
24	canada	canada	NNP	NNP	_	21	NP
25	,	,	,	,	_	12	DEP
26	using	using	VBG	VBG	_	12	S
27	as	as	IN	IN	_	26	PP
28	a	a	DT	DT	_	29	DEP
29	carrier	carrier	NN	NN	_	27	NP
30	a	a	DT	DT	_	33	DEP
31	``	``	``	``	_	33	DEP
32	promoter	promoter	NN	NN	_	33	DEP
33	gene	gene	NN	NN	_	26	NP-OBJ
34	''	''	''	''	_	33	DEP
35	developed	developed	VBN	VBN	_	33	VP
36	by	by	IN	IN	_	35	PP
37	robert	robert	NNP	NNP	_	38	DEP
38	goldberg	goldberg	NNP	NNP	_	36	NP
39	at	at	IN	IN	_	35	PP
40	the	the	DT	DT	_	41	DEP
41	university	university	NNP	NNP	_	39	NP
42	of	of	IN	IN	_	41	PP
43	california	california	NNP	NNP	_	42	NP
44	in	in	IN	IN	_	41	PP
45	los	los	NNP	NNP	_	46	DEP
46	angeles	angeles	NNP	NNP	_	44	NP
47	.	.	.	.	_	7	DEP

1	the	the	DT	DT	_	3	DEP
2	sterilizing	sterilizing	VBG	VBG	_	3	DEP
3	gene	gene	NN	NN	_	4	NP-SBJ
4	is	is	VBZ	VBZ	_	16	S
5	expressed	expressed	VBN	VBN	_	4	VP
6	just	just	RB	RB	_	7	ADVP
7	before	before	IN	IN	_	5	SBAR
8	the	the	DT	DT	_	9	DEP
9	pollen	pollen	NN	NN	_	10	NP-SBJ
10	is	is	VBZ	VBZ	_	7	S
11	about	about	IN	IN	_	13	DEP
12	to	to	TO	TO	_	13	DEP
13	develop	develop	VB	VB	_	10	ADJP
14	and	and	CC	CC	_	16	DEP
15	it	it	PRP	PRP	_	16	NP-SBJ
16	deactivates	deactivates	VBZ	VBZ	_	0	ROOT
17	the	the	DT	DT	_	18	DEP
18	anthers	anthers	NNS	NNS	_	16	NP-OBJ
19	of	of	IN	IN	_	18	PP
20	every	every	DT	DT	_	21	DEP
21	flower	flower	NN	NN	_	19	NP
22	in	in	IN	IN	_	21	PP
23	the	the	DT	DT	_	24	DEP
24	plant	plant	NN	NN	_	22	NP
25	.	.	.	.	_	16	DEP

1	mr.	mr.	NNP	NNP	_	2	DEP
2	leemans	leemans	NNP	NNP	_	3	NP-SBJ
3	said	said	VBD	VBD	_	0	ROOT
4	this	this	DT	DT	_	6	DEP
5	genetic	genetic	JJ	JJ	_	6	DEP
6	manipulation	manipulation	NN	NN	_	7	NP-SBJ
7	does	does	VBZ	VBZ	_	3	SBAR
8	n't	n't	RB	RB	_	7	DEP
9	hurt	hurt	VB	VB	_	7	VP
10	the	the	DT	DT	_	11	DEP
11	growth	growth	NN	NN	_	9	NP-OBJ
12	of	of	IN	IN	_	11	PP
13	that	that	DT	DT	_	14	DEP
14	plant	plant	NN	NN	_	12	NP
15	.	.	.	.	_	3	DEP

1	the	the	DT	DT	_	2	DEP
2	researchers	researchers	NNS	NNS	_	4	NP-SBJ
3	also	also	RB	RB	_	4	ADVP
4	pulled	pulled	VBD	VBD	_	0	ROOT
5	off	off	RP	RP	_	4	PRT
6	a	a	DT	DT	_	10	DEP
7	second	second	JJ	JJ	_	10	DEP
8	genetic	genetic	JJ	JJ	_	10	DEP
9	engineering	engineering	NN	NN	_	10	DEP
10	trick	trick	NN	NN	_	4	NP-OBJ
11	in	in	IN	IN	_	4	SBAR
12	order	order	NN	NN	_	11	DEP
13	to	to	TO	TO	_	14	DEP
14	get	get	VB	VB	_	11	S
15	male-sterile	male-sterile	JJ	JJ	_	16	DEP
16	plants	plants	NNS	NNS	_	14	NP-OBJ
17	in	in	IN	IN	_	14	PP
18	large	large	JJ	JJ	_	19	DEP
19	enough	enough	JJ	JJ	_	20	ADJP
20	numbers	numbers	NNS	NNS	_	17	NP
21	to	to	TO	TO	_	22	DEP
22	produce	produce	VB	VB	_	20	S
23	a	a	DT	DT	_	27	DEP
24	commercial	commercial	JJ	JJ	_	27	DEP
25	hybrid	hybrid	JJ	JJ	_	27	DEP
26	seed	seed	NN	NN	_	27	DEP
27	crop	crop	NN	NN	_	22	NP-OBJ
28	.	.	.	.	_	4	DEP

1	they	they	PRP	PRP	_	2	NP-SBJ
2	attached	attached	VBD	VBD	_	0	ROOT
3	a	a	DT	DT	_	5	DEP
4	second	second	JJ	JJ	_	5	DEP
5	gene	gene	NN	NN	_	2	NP-OBJ
6	,	,	,	,	_	5	DEP
7	for	for	IN	IN	_	5	PP
8	herbicide	herbicide	NN	NN	_	9	DEP
9	resistance	resistance	NN	NN	_	7	NP
10	,	,	,	,	_	5	DEP
11	to	to	TO	TO	_	2	PP
12	the	the	DT	DT	_	14	DEP
13	pollen-inhibiting	pollen-inhibiting	JJ	JJ	_	14	DEP
14	gene	gene	NN	NN	_	11	NP
15	.	.	.	.	_	2	DEP

1	both	both	DT	DT	_	2	DEP
2	genes	genes	NNS	NNS	_	3	NP-SBJ
3	are	are	VBP	VBP	_	0	ROOT
4	then	then	RB	RB	_	3	ADVP
5	inserted	inserted	VBN	VBN	_	3	VP
6	into	into	IN	IN	_	5	PP
7	a	a	DT	DT	_	10	DEP
8	few	few	JJ	JJ	_	10	DEP
9	greenhouse	greenhouse	NN	NN	_	10	DEP
10	plants	plants	NNS	NNS	_	6	NP
11	,	,	,	,	_	10	DEP
12	which	which	WDT	WDT	_	10	SBAR
13	are	are	VBP	VBP	_	12	S
14	then	then	RB	RB	_	13	ADVP
15	pollinated	pollinated	VBN	VBN	_	13	VP
16	and	and	CC	CC	_	15	DEP
17	allowed	allowed	VBN	VBN	_	15	VP
18	to	to	TO	TO	_	19	DEP
19	mature	mature	VB	VB	_	17	S
20	and	and	CC	CC	_	19	DEP
21	produce	produce	VB	VB	_	19	VP
22	seed	seed	NN	NN	_	21	NP-OBJ
23	.	.	.	.	_	3	DEP

1	the	the	DT	DT	_	2	DEP
2	laws	laws	NNS	NNS	_	5	NP-SBJ
3	of	of	IN	IN	_	2	PP
4	heredity	heredity	NN	NN	_	3	NP
5	dictate	dictate	VBP	VBP	_	0	ROOT
6	that	that	IN	IN	_	5	SBAR
7	half	half	NN	NN	_	16	NP-SBJ
8	of	of	IN	IN	_	7	PP
9	the	the	DT	DT	_	10	DEP
10	plants	plants	NNS	NNS	_	8	NP
11	springing	springing	VBG	VBG	_	10	VP
12	from	from	IN	IN	_	11	PP
13	these	these	DT	DT	_	15	DEP
14	greenhouse-produced	greenhouse-produced	JJ	JJ	_	15	DEP
15	seeds	seeds	NNS	NNS	_	12	NP
16	will	will	MD	MD	_	25	S
17	be	be	VB	VB	_	16	VP
18	male	male	NN	NN	_	21	ADJP
19	sterile	sterile	JJ	JJ	_	18	DEP
20	and	and	CC	CC	_	21	DEP
21	herbicide	herbicide	NN	NN	_	17	ADJP
22	resistant	resistant	JJ	JJ	_	21	DEP
23	and	and	CC	CC	_	25	DEP
24	half	half	NN	NN	_	25	NP-SBJ
25	will	will	MD	MD	_	6	S
26	be	be	VB	VB	_	25	VP
27	male	male	NN	NN	_	30	ADJP
28	fertile	fertile	JJ	JJ	_	27	DEP
29	and	and	CC	CC	_	30	DEP
30	herbicide	herbicide	NN	NN	_	26	ADJP
31	susceptible	susceptible	JJ	JJ	_	30	DEP
32	.	.	.	.	_	5	DEP

1	the	the	DT	DT	_	2	DEP
2	application	application	NN	NN	_	5	NP-SBJ
3	of	of	IN	IN	_	2	PP
4	herbicide	herbicide	NN	NN	_	3	NP
5	would	would	MD	MD	_	0	ROOT
6	kill	kill	VB	VB	_	5	VP
7	off	off	RP	RP	_	6	PRT
8	the	the	DT	DT	_	10	DEP
9	male-fertile	male-fertile	JJ	JJ	_	10	DEP
10	plants	plants	NNS	NNS	_	6	NP-OBJ
11	,	,	,	,	_	6	DEP
12	leaving	leaving	VBG	VBG	_	6	S
13	a	a	DT	DT	_	15	DEP
14	large	large	JJ	JJ	_	15	DEP
15	field	field	NN	NN	_	12	NP-OBJ
16	of	of	IN	IN	_	15	PP
17	male-sterile	male-sterile	JJ	JJ	_	18	DEP
18	plants	plants	NNS	NNS	_	16	NP
19	that	that	WDT	WDT	_	18	SBAR
20	can	can	MD	MD	_	19	S
21	be	be	VB	VB	_	20	VP
22	cross-pollinated	cross-pollinated	VBN	VBN	_	21	VP
23	to	to	TO	TO	_	24	DEP
24	produce	produce	VB	VB	_	22	S
25	hybrid	hybrid	NN	NN	_	26	DEP
26	seed	seed	NN	NN	_	24	NP-OBJ
27	.	.	.	.	_	5	DEP

1	mr.	mr.	NNP	NNP	_	2	DEP
2	leemans	leemans	NNP	NNP	_	3	NP-SBJ
3	said	said	VBD	VBD	_	0	ROOT
4	the	the	DT	DT	_	6	DEP
5	hybrid	hybrid	NN	NN	_	6	DEP
6	rapeseeds	rapeseeds	NNS	NNS	_	12	NP-SBJ
7	created	created	VBN	VBN	_	6	VP
8	with	with	IN	IN	_	7	PP
9	this	this	DT	DT	_	11	DEP
10	genetic	genetic	JJ	JJ	_	11	DEP
11	engineering	engineering	NN	NN	_	8	NP
12	yield	yield	NN	NN	_	3	SBAR
13	15	15	CD	CD	_	17	DEP
14	%	%	NN	NN	_	17	DEP
15	to	to	TO	TO	_	17	DEP
16	30	30	CD	CD	_	17	DEP
17	%	%	NN	NN	_	18	NP
18	more	more	JJR	JJR	_	19	ADJP
19	output	output	NN	NN	_	12	NP-OBJ
20	than	than	IN	IN	_	19	PP
21	the	the	DT	DT	_	23	DEP
22	commercial	commercial	JJ	JJ	_	23	DEP
23	strains	strains	NNS	NNS	_	20	NP
24	used	used	VBN	VBN	_	23	VP
25	currently	currently	RB	RB	_	24	ADVP
26	.	.	.	.	_	3	DEP

1	``	``	``	``	_	15	DEP
2	this	this	DT	DT	_	3	DEP
3	technique	technique	NN	NN	_	4	NP-SBJ
4	is	is	VBZ	VBZ	_	15	S
5	applicable	applicable	JJ	JJ	_	4	ADJP
6	to	to	TO	TO	_	5	PP
7	a	a	DT	DT	_	9	DEP
8	wide	wide	JJ	JJ	_	9	DEP
9	variety	variety	NN	NN	_	6	NP
10	of	of	IN	IN	_	9	PP
11	crops	crops	NNS	NNS	_	10	NP
12	,	,	,	,	_	15	DEP
13	''	''	''	''	_	15	DEP
14	he	he	PRP	PRP	_	15	NP-SBJ
15	said	said	VBD	VBD	_	0	ROOT
16	,	,	,	,	_	15	DEP
17	and	and	CC	CC	_	15	DEP
18	added	added	VBD	VBD	_	15	VP
19	that	that	IN	IN	_	18	SBAR
20	some	some	DT	DT	_	21	DEP
21	modifications	modifications	NNS	NNS	_	22	NP-SBJ
22	may	may	MD	MD	_	19	S
23	be	be	VB	VB	_	22	VP
24	necessary	necessary	JJ	JJ	_	23	ADJP
25	to	to	TO	TO	_	26	DEP
26	accommodate	accommodate	VB	VB	_	23	S
27	the	the	DT	DT	_	28	DEP
28	peculiarities	peculiarities	NNS	NNS	_	26	NP-OBJ
29	of	of	IN	IN	_	28	PP
30	each	each	DT	DT	_	31	DEP
31	type	type	NN	NN	_	29	NP
32	of	of	IN	IN	_	31	PP
33	crop	crop	NN	NN	_	32	NP
34	.	.	.	.	_	15	DEP

1	he	he	PRP	PRP	_	2	NP-SBJ
2	said	said	VBD	VBD	_	0	ROOT
3	the	the	DT	DT	_	4	DEP
4	company	company	NN	NN	_	5	NP-SBJ
5	is	is	VBZ	VBZ	_	2	SBAR
6	experimenting	experimenting	VBG	VBG	_	5	VP
7	with	with	IN	IN	_	6	PP
8	the	the	DT	DT	_	9	DEP
9	technique	technique	NN	NN	_	7	NP
10	on	on	IN	IN	_	6	PP
11	alfalfa	alfalfa	NN	NN	_	10	NP
12	,	,	,	,	_	5	DEP
13	and	and	CC	CC	_	5	DEP
14	plans	plans	VBZ	VBZ	_	5	VP
15	to	to	TO	TO	_	16	DEP
16	include	include	VB	VB	_	14	S
17	cotton	cotton	NN	NN	_	19	DEP
18	and	and	CC	CC	_	19	DEP
19	corn	corn	NN	NN	_	16	NP-OBJ
20	,	,	,	,	_	19	DEP
21	among	among	IN	IN	_	19	PP
22	other	other	JJ	JJ	_	23	DEP
23	crops	crops	NNS	NNS	_	21	NP
24	.	.	.	.	_	2	DEP

1	he	he	PRP	PRP	_	2	NP-SBJ
2	said	said	VBD	VBD	_	0	ROOT
3	that	that	IN	IN	_	2	SBAR
4	even	even	RB	RB	_	5	DEP
5	though	though	IN	IN	_	18	SBAR
6	virtually	virtually	RB	RB	_	7	DEP
7	all	all	DT	DT	_	9	ADJP
8	corn	corn	NN	NN	_	9	DEP
9	seeds	seeds	NNS	NNS	_	12	NP-SBJ
10	currently	currently	RB	RB	_	11	ADVP
11	planted	planted	VBN	VBN	_	9	VP
12	are	are	VBP	VBP	_	5	S
13	hybrids	hybrids	NNS	NNS	_	12	NP-PRD
14	,	,	,	,	_	18	DEP
15	the	the	DT	DT	_	17	DEP
16	genetic	genetic	JJ	JJ	_	17	DEP
17	approach	approach	NN	NN	_	18	NP-SBJ
18	will	will	MD	MD	_	3	S
19	obviate	obviate	VB	VB	_	18	VP
20	the	the	DT	DT	_	21	DEP
21	need	need	NN	NN	_	19	NP-OBJ
22	for	for	IN	IN	_	21	PP
23	mechanical	mechanical	JJ	JJ	_	24	DEP
24	emasculation	emasculation	NN	NN	_	22	NP
25	of	of	IN	IN	_	24	PP
26	anthers	anthers	NNS	NNS	_	25	NP
27	,	,	,	,	_	24	DEP
28	which	which	WDT	WDT	_	24	SBAR
29	costs	costs	VBZ	VBZ	_	28	S
30	u.s.	u.s.	NNP	NNP	_	32	DEP
31	seed	seed	NN	NN	_	32	DEP
32	producers	producers	NNS	NNS	_	29	NP-OBJ
33	about	about	IN	IN	_	34	DEP
34	$	$	$	$	_	29	NP-OBJ
35	70	70	CD	CD	_	34	DEP
36	million	million	CD	CD	_	34	DEP
37	annually	annually	RB	RB	_	29	ADVP
38	.	.	.	.	_	2	DEP

1	in	in	IN	IN	_	9	PP
2	recent	recent	JJ	JJ	_	3	DEP
3	years	years	NNS	NNS	_	1	NP
4	,	,	,	,	_	9	DEP
5	demand	demand	NN	NN	_	9	NP-SBJ
6	for	for	IN	IN	_	5	PP
7	hybrid	hybrid	NN	NN	_	8	DEP
8	seeds	seeds	NNS	NNS	_	6	NP
9	has	has	VBZ	VBZ	_	0	ROOT
10	spurred	spurred	VBN	VBN	_	9	VP
11	research	research	NN	NN	_	10	NP-OBJ
12	at	at	IN	IN	_	10	PP
13	a	a	DT	DT	_	14	DEP
14	number	number	NN	NN	_	12	NP
15	of	of	IN	IN	_	14	PP
16	chemical	chemical	NN	NN	_	19	DEP
17	and	and	CC	CC	_	19	DEP
18	biotechnology	biotechnology	NN	NN	_	19	DEP
19	companies	companies	NNS	NNS	_	15	NP
20	,	,	,	,	_	19	DEP
21	including	including	VBG	VBG	_	19	PP
22	monsanto	monsanto	NNP	NNP	_	23	DEP
23	co.	co.	NNP	NNP	_	32	NP
24	,	,	,	,	_	32	DEP
25	shell	shell	NNP	NNP	_	27	DEP
26	oil	oil	NNP	NNP	_	27	DEP
27	co.	co.	NNP	NNP	_	32	NP
28	and	and	CC	CC	_	32	DEP
29	eli	eli	NNP	NNP	_	32	DEP
30	lilly	lilly	NNP	NNP	_	32	DEP
31	&	&	CC	CC	_	32	DEP
32	co	co	NNP	NNP	_	21	NP
33	.	.	.	.	_	9	DEP

1	one	one	CD	CD	_	2	DEP
2	technique	technique	NN	NN	_	9	NP-SBJ
3	developed	developed	VBN	VBN	_	2	VP
4	by	by	IN	IN	_	3	PP
5	some	some	DT	DT	_	4	NP
6	of	of	IN	IN	_	5	PP
7	these	these	DT	DT	_	8	DEP
8	companies	companies	NNS	NNS	_	6	NP
9	involves	involves	VBZ	VBZ	_	0	ROOT
10	a	a	DT	DT	_	12	DEP
11	chemical	chemical	NN	NN	_	12	DEP
12	spray	spray	NN	NN	_	9	NP-OBJ
13	supposed	supposed	VBD	VBD	_	12	VP
14	to	to	TO	TO	_	15	DEP
15	kill	kill	VB	VB	_	13	S
16	only	only	RB	RB	_	15	ADVP
17	a	a	DT	DT	_	19	DEP
18	plant	plant	NN	NN	_	19	DEP
19	's	's	POS	POS	_	20	NP
20	pollen	pollen	NN	NN	_	15	NP-OBJ
21	.	.	.	.	_	9	DEP

1	but	but	CC	CC	_	3	DEP
2	there	there	EX	EX	_	3	NP-SBJ
3	have	have	VBP	VBP	_	0	ROOT
4	been	been	VBN	VBN	_	3	VP
5	problems	problems	NNS	NNS	_	16	NP
6	with	with	IN	IN	_	5	PP
7	chemical	chemical	NN	NN	_	8	DEP
8	sprays	sprays	NNS	NNS	_	9	NP-SBJ
9	damaging	damaging	VBG	VBG	_	6	S
10	plants	plants	NNS	NNS	_	11	DEP
11	'	'	POS	POS	_	14	NP
12	female	female	JJ	JJ	_	14	DEP
13	reproductive	reproductive	JJ	JJ	_	14	DEP
14	organs	organs	NNS	NNS	_	9	NP-OBJ
15	and	and	CC	CC	_	16	DEP
16	concern	concern	NN	NN	_	4	NP-PRD
17	for	for	IN	IN	_	16	PP
18	the	the	DT	DT	_	19	DEP
19	toxicity	toxicity	NN	NN	_	17	NP
20	of	of	IN	IN	_	19	PP
21	such	such	JJ	JJ	_	23	DEP
22	chemical	chemical	NN	NN	_	23	DEP
23	sprays	sprays	NNS	NNS	_	20	NP
24	to	to	TO	TO	_	19	PP
25	humans	humans	NNS	NNS	_	30	NP
26	,	,	,	,	_	30	DEP
27	animals	animals	NNS	NNS	_	30	NP
28	and	and	CC	CC	_	30	DEP
29	beneficial	beneficial	JJ	JJ	_	30	DEP
30	insects	insects	NNS	NNS	_	24	NP
31	.	.	.	.	_	3	DEP

1	however	however	RB	RB	_	13	ADVP
2	,	,	,	,	_	13	DEP
3	paul	paul	NNP	NNP	_	4	DEP
4	johanson	johanson	NNP	NNP	_	8	NP
5	,	,	,	,	_	8	DEP
6	monsanto	monsanto	NNP	NNP	_	7	DEP
7	's	's	POS	POS	_	8	NP
8	director	director	NN	NN	_	13	NP-SBJ
9	of	of	IN	IN	_	8	PP
10	plant	plant	NN	NN	_	11	DEP
11	sciences	sciences	NNS	NNS	_	9	NP
12	,	,	,	,	_	8	DEP
13	said	said	VBD	VBD	_	0	ROOT
14	the	the	DT	DT	_	16	DEP
15	company	company	NN	NN	_	16	DEP
16	's	's	POS	POS	_	18	NP
17	chemical	chemical	NN	NN	_	18	DEP
18	spray	spray	NN	NN	_	19	NP-SBJ
19	overcomes	overcomes	VBZ	VBZ	_	13	SBAR
20	these	these	DT	DT	_	21	DEP
21	problems	problems	NNS	NNS	_	19	NP-OBJ
22	and	and	CC	CC	_	19	DEP
23	is	is	VBZ	VBZ	_	19	VP
24	``	``	``	``	_	23	DEP
25	gentle	gentle	JJ	JJ	_	23	ADJP
26	on	on	IN	IN	_	25	PP
27	the	the	DT	DT	_	29	DEP
28	female	female	JJ	JJ	_	29	DEP
29	organ	organ	NN	NN	_	26	NP
30	.	.	.	.	_	13	DEP
31	''	''	''	''	_	13	DEP

1	biosource	biosource	NNP	NNP	_	3	DEP
2	genetics	genetics	NNP	NNP	_	3	DEP
3	corp.	corp.	NNP	NNP	_	7	NP
4	,	,	,	,	_	7	DEP
5	vacaville	vacaville	NNP	NNP	_	7	NP
6	,	,	,	,	_	7	DEP
7	calif.	calif.	NNP	NNP	_	9	NP-SBJ
8	,	,	,	,	_	7	DEP
9	is	is	VBZ	VBZ	_	0	ROOT
10	developing	developing	VBG	VBG	_	9	VP
11	a	a	DT	DT	_	12	DEP
12	spray	spray	NN	NN	_	10	NP-OBJ
13	containing	containing	VBG	VBG	_	12	VP
14	a	a	DT	DT	_	15	DEP
15	gene	gene	NN	NN	_	13	NP-OBJ
16	that	that	WDT	WDT	_	15	SBAR
17	spreads	spreads	VBZ	VBZ	_	16	S
18	from	from	IN	IN	_	17	PP
19	cell	cell	NN	NN	_	18	NP
20	to	to	TO	TO	_	17	PP
21	cell	cell	NN	NN	_	20	NP
22	and	and	CC	CC	_	17	DEP
23	interferes	interferes	VBZ	VBZ	_	17	VP
24	with	with	IN	IN	_	23	PP
25	the	the	DT	DT	_	26	DEP
26	genes	genes	NNS	NNS	_	24	NP
27	that	that	WDT	WDT	_	26	SBAR
28	are	are	VBP	VBP	_	27	S
29	responsible	responsible	JJ	JJ	_	28	ADJP
30	for	for	IN	IN	_	29	PP
31	producing	producing	VBG	VBG	_	30	S
32	pollen	pollen	NN	NN	_	31	NP-OBJ
33	.	.	.	.	_	9	DEP

1	this	this	DT	DT	_	2	DEP
2	gene	gene	NN	NN	_	9	NP-SBJ
3	,	,	,	,	_	2	DEP
4	called	called	VBN	VBN	_	2	VP
5	``	``	``	``	_	6	DEP
6	gametocide	gametocide	NN	NN	_	4	S
7	,	,	,	,	_	2	DEP
8	''	''	''	''	_	2	DEP
9	is	is	VBZ	VBZ	_	0	ROOT
10	carried	carried	VBN	VBN	_	9	VP
11	into	into	IN	IN	_	10	PP
12	the	the	DT	DT	_	13	DEP
13	plant	plant	NN	NN	_	11	NP
14	by	by	IN	IN	_	10	PP
15	a	a	DT	DT	_	16	DEP
16	virus	virus	NN	NN	_	14	NP
17	that	that	WDT	WDT	_	16	SBAR
18	remains	remains	VBZ	VBZ	_	17	S
19	active	active	JJ	JJ	_	18	ADJP
20	for	for	IN	IN	_	18	PP
21	a	a	DT	DT	_	23	DEP
22	few	few	JJ	JJ	_	23	DEP
23	days	days	NNS	NNS	_	20	NP
24	.	.	.	.	_	9	DEP

1	robert	robert	NNP	NNP	_	2	DEP
2	erwin	erwin	NNP	NNP	_	4	NP
3	,	,	,	,	_	4	DEP
4	president	president	NN	NN	_	8	NP-SBJ
5	of	of	IN	IN	_	4	PP
6	biosource	biosource	NNP	NNP	_	5	NP
7	,	,	,	,	_	4	DEP
8	called	called	VBD	VBD	_	0	ROOT
9	plant	plant	NNP	NNP	_	11	DEP
10	genetic	genetic	NNP	NNP	_	11	DEP
11	's	's	POS	POS	_	12	NP
12	approach	approach	NN	NN	_	23	NP-SBJ
13	``	``	``	``	_	23	DEP
14	interesting	interesting	JJ	JJ	_	23	DEP
15	''	''	''	''	_	23	DEP
16	and	and	CC	CC	_	23	DEP
17	``	``	``	``	_	23	DEP
18	novel	novel	JJ	JJ	_	23	DEP
19	,	,	,	,	_	23	DEP
20	''	''	''	''	_	23	DEP
21	and	and	CC	CC	_	23	DEP
22	``	``	``	``	_	23	DEP
23	complementary	complementary	JJ	JJ	_	8	S
24	rather	rather	RB	RB	_	25	DEP
25	than	than	IN	IN	_	23	PP
26	competitive	competitive	JJ	JJ	_	25	ADJP
27	.	.	.	.	_	8	DEP
28	''	''	''	''	_	8	DEP

1	``	``	``	``	_	16	DEP
2	there	there	EX	EX	_	3	NP-SBJ
3	is	is	VBZ	VBZ	_	16	S
4	a	a	DT	DT	_	6	DEP
5	large	large	JJ	JJ	_	6	DEP
6	market	market	NN	NN	_	3	NP-PRD
7	out	out	IN	IN	_	6	PP
8	there	there	RB	RB	_	7	NP
9	hungry	hungry	JJ	JJ	_	6	ADJP
10	for	for	IN	IN	_	9	PP
11	hybrid	hybrid	JJ	JJ	_	12	DEP
12	seeds	seeds	NNS	NNS	_	10	NP
13	,	,	,	,	_	16	DEP
14	''	''	''	''	_	16	DEP
15	he	he	PRP	PRP	_	16	NP-SBJ
16	said	said	VBD	VBD	_	0	ROOT
17	.	.	.	.	_	16	DEP

1	mr.	mr.	NNP	NNP	_	2	DEP
2	robinson	robinson	NNP	NNP	_	16	NP-SBJ
3	of	of	IN	IN	_	2	PP
4	delta	delta	NNP	NNP	_	6	DEP
5	&	&	CC	CC	_	6	DEP
6	pine	pine	NNP	NNP	_	10	NP
7	,	,	,	,	_	10	DEP
8	the	the	DT	DT	_	10	DEP
9	seed	seed	NN	NN	_	10	DEP
10	producer	producer	NN	NN	_	3	NP
11	in	in	IN	IN	_	10	PP
12	scott	scott	NNP	NNP	_	14	NP
13	,	,	,	,	_	14	DEP
14	miss.	miss.	NNP	NNP	_	11	NP
15	,	,	,	,	_	10	DEP
16	said	said	VBD	VBD	_	0	ROOT
17	plant	plant	NNP	NNP	_	19	DEP
18	genetic	genetic	NNP	NNP	_	19	DEP
19	's	's	POS	POS	_	20	NP
20	success	success	NN	NN	_	27	NP-SBJ
21	in	in	IN	IN	_	20	PP
22	creating	creating	VBG	VBG	_	21	S
23	genetically	genetically	RB	RB	_	24	DEP
24	engineered	engineered	VBN	VBN	_	26	ADJP
25	male	male	NN	NN	_	26	DEP
26	steriles	steriles	NNS	NNS	_	22	NP-OBJ
27	does	does	VBZ	VBZ	_	16	SBAR
28	n't	n't	RB	RB	_	27	DEP
29	automatically	automatically	RB	RB	_	30	ADVP
30	mean	mean	VB	VB	_	27	VP
31	it	it	PRP	PRP	_	32	NP-SBJ
32	would	would	MD	MD	_	30	SBAR
33	be	be	VB	VB	_	32	VP
34	simple	simple	JJ	JJ	_	33	ADJP
35	to	to	TO	TO	_	36	DEP
36	create	create	VB	VB	_	33	S
37	hybrids	hybrids	NNS	NNS	_	36	NP-OBJ
38	in	in	IN	IN	_	36	PP
39	all	all	DT	DT	_	40	DEP
40	crops	crops	NNS	NNS	_	38	NP
41	.	.	.	.	_	16	DEP

1	that	that	DT	DT	_	2	NP-SBJ
2	's	's	VBZ	VBZ	_	0	ROOT
3	because	because	RB	RB	_	16	DEP
4	pollination	pollination	NN	NN	_	16	NP-SBJ
5	,	,	,	,	_	4	DEP
6	while	while	IN	IN	_	4	SBAR
7	easy	easy	JJ	JJ	_	10	ADJP
8	in	in	IN	IN	_	10	PP
9	corn	corn	NN	NN	_	8	NP
10	because	because	IN	IN	_	6	S
11	the	the	DT	DT	_	12	DEP
12	carrier	carrier	NN	NN	_	13	NP-SBJ
13	is	is	VBZ	VBZ	_	10	S
14	wind	wind	NN	NN	_	13	NP-PRD
15	,	,	,	,	_	4	DEP
16	is	is	VBZ	VBZ	_	2	SBAR
17	more	more	RBR	RBR	_	18	DEP
18	complex	complex	JJ	JJ	_	16	ADJP
19	and	and	CC	CC	_	16	DEP
20	involves	involves	VBZ	VBZ	_	16	VP
21	insects	insects	NNS	NNS	_	20	NP-OBJ
22	as	as	IN	IN	_	21	PP
23	carriers	carriers	NNS	NNS	_	22	NP
24	in	in	IN	IN	_	20	PP
25	crops	crops	NNS	NNS	_	24	NP
26	such	such	JJ	JJ	_	27	DEP
27	as	as	IN	IN	_	25	PP
28	cotton	cotton	NN	NN	_	27	NP
29	.	.	.	.	_	2	DEP

1	``	``	``	``	_	23	DEP
2	it	it	PRP	PRP	_	3	NP-SBJ
3	's	's	VBZ	VBZ	_	23	S
4	one	one	CD	CD	_	5	DEP
5	thing	thing	NN	NN	_	3	NP-PRD
6	to	to	TO	TO	_	7	DEP
7	say	say	VB	VB	_	3	S
8	you	you	PRP	PRP	_	9	NP-SBJ
9	can	can	MD	MD	_	7	SBAR
10	sterilize	sterilize	VB	VB	_	9	VP
11	,	,	,	,	_	3	DEP
12	and	and	CC	CC	_	3	DEP
13	another	another	DT	DT	_	3	VP
14	to	to	TO	TO	_	17	DEP
15	then	then	RB	RB	_	17	ADVP
16	successfully	successfully	RB	RB	_	17	ADVP
17	pollinate	pollinate	VB	VB	_	13	S
18	the	the	DT	DT	_	19	DEP
19	plant	plant	NN	NN	_	17	NP-OBJ
20	,	,	,	,	_	23	DEP
21	''	''	''	''	_	23	DEP
22	he	he	PRP	PRP	_	23	NP-SBJ
23	said	said	VBD	VBD	_	0	ROOT
24	.	.	.	.	_	23	DEP

1	nevertheless	nevertheless	RB	RB	_	7	ADVP
2	,	,	,	,	_	4	DEP
3	he	he	PRP	PRP	_	4	NP-SBJ
4	said	said	VBD	VBD	_	7	PRN
5	,	,	,	,	_	4	DEP
6	he	he	PRP	PRP	_	7	NP-SBJ
7	is	is	VBZ	VBZ	_	0	ROOT
8	negotiating	negotiating	VBG	VBG	_	7	VP
9	with	with	IN	IN	_	8	PP
10	plant	plant	NNP	NNP	_	11	DEP
11	genetic	genetic	NNP	NNP	_	9	NP
12	to	to	TO	TO	_	13	DEP
13	acquire	acquire	VB	VB	_	8	S
14	the	the	DT	DT	_	15	DEP
15	technology	technology	NN	NN	_	13	NP-OBJ
16	to	to	TO	TO	_	17	DEP
17	try	try	VB	VB	_	15	SBAR
18	breeding	breeding	VBG	VBG	_	17	S
19	hybrid	hybrid	JJ	JJ	_	20	DEP
20	cotton	cotton	NN	NN	_	18	NP-OBJ
21	.	.	.	.	_	7	DEP

1	a	a	DT	DT	_	3	DEP
2	bitter	bitter	JJ	JJ	_	3	DEP
3	conflict	conflict	NN	NN	_	7	NP-SBJ
4	with	with	IN	IN	_	3	PP
5	global	global	JJ	JJ	_	6	DEP
6	implications	implications	NNS	NNS	_	4	NP
7	has	has	VBZ	VBZ	_	0	ROOT
8	erupted	erupted	VBN	VBN	_	7	VP
9	between	between	IN	IN	_	8	PP
10	nomura	nomura	NNP	NNP	_	12	DEP
11	securities	securities	NNPS	NNPS	_	12	DEP
12	co.	co.	NNP	NNP	_	15	NP
13	and	and	CC	CC	_	15	DEP
14	industrial	industrial	NNP	NNP	_	15	DEP
15	bank	bank	NNP	NNP	_	19	NP
16	of	of	IN	IN	_	15	PP
17	japan	japan	NNP	NNP	_	16	NP
18	,	,	,	,	_	19	DEP
19	two	two	CD	CD	_	9	NP
20	of	of	IN	IN	_	19	PP
21	the	the	DT	DT	_	22	DEP
22	world	world	NN	NN	_	27	NP
23	's	's	VBZ	VBZ	_	22	DEP
24	most	most	RBS	RBS	_	25	DEP
25	powerful	powerful	JJ	JJ	_	27	ADJP
26	financial	financial	JJ	JJ	_	27	DEP
27	companies	companies	NNS	NNS	_	20	NP
28	.	.	.	.	_	7	DEP

1	the	the	DT	DT	_	2	DEP
2	clash	clash	NN	NN	_	3	NP-SBJ
3	is	is	VBZ	VBZ	_	0	ROOT
4	a	a	DT	DT	_	5	DEP
5	sign	sign	NN	NN	_	3	NP-PRD
6	of	of	IN	IN	_	5	PP
7	a	a	DT	DT	_	11	DEP
8	new	new	JJ	JJ	_	11	DEP
9	toughness	toughness	NN	NN	_	11	DEP
10	and	and	CC	CC	_	11	DEP
11	divisiveness	divisiveness	NN	NN	_	6	NP
12	in	in	IN	IN	_	11	PP
13	japan	japan	NNP	NNP	_	14	DEP
14	's	's	POS	POS	_	17	NP
15	once-cozy	once-cozy	JJ	JJ	_	17	DEP
16	financial	financial	JJ	JJ	_	17	DEP
17	circles	circles	NNS	NNS	_	12	NP
18	.	.	.	.	_	3	DEP

1	not	not	RB	RB	_	17	CONJP
2	only	only	RB	RB	_	1	DEP
3	are	are	VBP	VBP	_	17	SINV
4	japan	japan	NNP	NNP	_	5	DEP
5	's	's	POS	POS	_	7	NP
6	financial	financial	JJ	JJ	_	7	DEP
7	institutions	institutions	NNS	NNS	_	3	NP-SBJ
8	putting	putting	VBG	VBG	_	3	VP
9	their	their	PRP$	PRP$	_	11	DEP
10	enormous	enormous	JJ	JJ	_	11	DEP
11	clout	clout	NN	NN	_	8	NP-OBJ
12	to	to	TO	TO	_	8	PP
13	work	work	VB	VB	_	12	VP
14	;	;	:	:	_	17	DEP
15	increasingly	increasingly	RB	RB	_	17	ADVP
16	they	they	PRP	PRP	_	17	NP-SBJ
17	're	're	VBP	VBP	_	0	ROOT
18	squaring	squaring	VBG	VBG	_	17	VP
19	off	off	RP	RP	_	18	PRT
20	against	against	IN	IN	_	18	PP
21	one	one	CD	CD	_	20	NP
22	another	another	DT	DT	_	21	DEP
23	in	in	IN	IN	_	18	PP
24	unprecedented	unprecedented	JJ	JJ	_	26	DEP
25	public	public	JJ	JJ	_	26	DEP
26	fashion	fashion	NN	NN	_	23	NP
27	.	.	.	.	_	17	DEP

1	already	already	RB	RB	_	5	ADVP
2	,	,	,	,	_	5	DEP
3	the	the	DT	DT	_	4	DEP
4	consequences	consequences	NNS	NNS	_	5	NP-SBJ
5	are	are	VBP	VBP	_	0	ROOT
6	being	being	VBG	VBG	_	5	VP
7	felt	felt	VBN	VBN	_	6	VP
8	by	by	IN	IN	_	7	PP
9	other	other	JJ	JJ	_	10	DEP
10	players	players	NNS	NNS	_	16	NP
11	in	in	IN	IN	_	10	PP
12	the	the	DT	DT	_	14	DEP
13	financial	financial	JJ	JJ	_	14	DEP
14	markets	markets	NNS	NNS	_	11	NP
15	--	--	:	:	_	16	DEP
16	even	even	JJ	JJ	_	8	NP
17	governments	governments	NNS	NNS	_	16	NP
18	.	.	.	.	_	5	DEP

1	what	what	WP	WP	_	6	SBAR
2	triggered	triggered	VBD	VBD	_	1	S
3	the	the	DT	DT	_	5	DEP
4	latest	latest	JJS	JJS	_	5	DEP
5	clash	clash	NN	NN	_	2	NP-OBJ
6	was	was	VBD	VBD	_	0	ROOT
7	a	a	DT	DT	_	8	DEP
8	skirmish	skirmish	NN	NN	_	6	NP-PRD
9	over	over	IN	IN	_	8	PP
10	the	the	DT	DT	_	11	DEP
11	timing	timing	NN	NN	_	9	NP
12	of	of	IN	IN	_	11	PP
13	a	a	DT	DT	_	18	DEP
14	new	new	NNP	NNP	_	18	DEP
15	zealand	zealand	NNP	NNP	_	18	DEP
16	government	government	NN	NN	_	18	DEP
17	bond	bond	NN	NN	_	18	DEP
18	issue	issue	NN	NN	_	12	NP
19	.	.	.	.	_	6	DEP

1	nomura	nomura	NNP	NNP	_	2	NP-SBJ
2	was	was	VBD	VBD	_	0	ROOT
3	attempting	attempting	VBG	VBG	_	2	VP
4	to	to	TO	TO	_	5	DEP
5	organize	organize	VB	VB	_	3	S
6	the	the	DT	DT	_	14	DEP
7	50	50	CD	CD	_	8	DEP
8	billion-yen	billion-yen	JJ	JJ	_	14	ADJP
9	(	(	-LRB-	-LRB-	_	10	DEP
10	$	$	$	$	_	8	PRN
11	352	352	CD	CD	_	10	DEP
12	million	million	CD	CD	_	10	DEP
13	)	)	-RRB-	-RRB-	_	10	DEP
14	borrowing	borrowing	NN	NN	_	5	NP-OBJ
15	in	in	IN	IN	_	5	PP
16	japan	japan	NNP	NNP	_	15	NP
17	at	at	IN	IN	_	5	PP
18	a	a	DT	DT	_	19	DEP
19	time	time	NN	NN	_	17	NP
20	when	when	WRB	WRB	_	19	SBAR
21	many	many	JJ	JJ	_	23	DEP
22	japanese	japanese	JJ	JJ	_	23	DEP
23	banks	banks	NNS	NNS	_	32	NP-SBJ
24	,	,	,	,	_	23	DEP
25	led	led	VBN	VBN	_	23	VP
26	by	by	IN	IN	_	25	PP
27	industrial	industrial	NNP	NNP	_	28	DEP
28	bank	bank	NNP	NNP	_	26	NP
29	of	of	IN	IN	_	28	PP
30	japan	japan	NNP	NNP	_	29	NP
31	,	,	,	,	_	23	DEP
32	were	were	VBD	VBD	_	20	S
33	pressuring	pressuring	VBG	VBG	_	32	VP
34	the	the	DT	DT	_	36	DEP
35	wellington	wellington	NNP	NNP	_	36	DEP
36	government	government	NN	NN	_	38	NP-SBJ
37	to	to	TO	TO	_	38	DEP
38	help	help	VB	VB	_	33	S
39	them	them	PRP	PRP	_	40	NP-SBJ
40	recover	recover	VB	VB	_	38	S
41	loans	loans	NNS	NNS	_	40	NP-OBJ
42	made	made	VBN	VBN	_	41	VP
43	to	to	TO	TO	_	42	PP
44	a	a	DT	DT	_	47	DEP
45	defunct	defunct	JJ	JJ	_	47	DEP
46	investment	investment	NN	NN	_	47	DEP
47	bank	bank	NN	NN	_	43	NP
48	that	that	WDT	WDT	_	47	SBAR
49	had	had	VBD	VBD	_	48	S
50	been	been	VBN	VBN	_	49	VP
51	owned	owned	VBN	VBN	_	50	VP
52	by	by	IN	IN	_	51	PP
53	new	new	NNP	NNP	_	55	DEP
54	zealand	zealand	NNP	NNP	_	55	DEP
55	's	's	POS	POS	_	58	NP
56	civil-service	civil-service	JJ	JJ	_	58	DEP
57	pension	pension	NN	NN	_	58	DEP
58	fund	fund	NN	NN	_	52	NP
59	.	.	.	.	_	2	DEP

1	unwilling	unwilling	JJ	JJ	_	18	S
2	to	to	TO	TO	_	3	DEP
3	put	put	VB	VB	_	1	S
4	up	up	RP	RP	_	3	PRT
5	new	new	JJ	JJ	_	6	DEP
6	money	money	NN	NN	_	3	NP-OBJ
7	for	for	IN	IN	_	3	PP
8	new	new	NNP	NNP	_	9	DEP
9	zealand	zealand	NNP	NNP	_	7	NP
10	until	until	IN	IN	_	3	SBAR
11	those	those	DT	DT	_	12	DEP
12	debts	debts	NNS	NNS	_	13	NP-SBJ
13	are	are	VBP	VBP	_	10	S
14	repaid	repaid	VBN	VBN	_	13	VP
15	,	,	,	,	_	18	DEP
16	most	most	JJS	JJS	_	17	DEP
17	banks	banks	NNS	NNS	_	18	NP-SBJ
18	refused	refused	VBD	VBD	_	0	ROOT
19	even	even	RB	RB	_	21	ADVP
20	to	to	TO	TO	_	21	DEP
21	play	play	VB	VB	_	18	S
22	administrative	administrative	JJ	JJ	_	23	DEP
23	roles	roles	NNS	NNS	_	21	NP-OBJ
24	in	in	IN	IN	_	21	PP
25	the	the	DT	DT	_	27	DEP
26	new	new	JJ	JJ	_	27	DEP
27	financing	financing	NN	NN	_	24	NP
28	,	,	,	,	_	18	DEP
29	forcing	forcing	VBG	VBG	_	18	S
30	an	an	DT	DT	_	32	DEP
31	embarrassed	embarrassed	JJ	JJ	_	32	DEP
32	nomura	nomura	NNP	NNP	_	34	NP-SBJ
33	to	to	TO	TO	_	34	DEP
34	postpone	postpone	VB	VB	_	29	S
35	it	it	PRP	PRP	_	34	NP-OBJ
36	this	this	DT	DT	_	37	DEP
37	week	week	NN	NN	_	34	NP
38	.	.	.	.	_	18	DEP

1	the	the	DT	DT	_	2	DEP
2	dispute	dispute	NN	NN	_	3	NP-SBJ
3	shows	shows	VBZ	VBZ	_	0	ROOT
4	clearly	clearly	RB	RB	_	3	ADVP
5	the	the	DT	DT	_	7	DEP
6	global	global	JJ	JJ	_	7	DEP
7	power	power	NN	NN	_	3	NP-OBJ
8	of	of	IN	IN	_	7	PP
9	japan	japan	NNP	NNP	_	10	DEP
10	's	's	POS	POS	_	12	NP
11	financial	financial	JJ	JJ	_	12	DEP
12	titans	titans	NNS	NNS	_	8	NP
13	.	.	.	.	_	3	DEP

1	aside	aside	RB	RB	_	13	PP
2	from	from	IN	IN	_	1	PP
3	nomura	nomura	NNP	NNP	_	4	DEP
4	's	's	POS	POS	_	6	NP
5	injured	injured	JJ	JJ	_	6	DEP
6	pride	pride	NN	NN	_	2	NP
7	,	,	,	,	_	13	DEP
8	the	the	DT	DT	_	10	DEP
9	biggest	biggest	JJS	JJS	_	10	DEP
10	victim	victim	NN	NN	_	13	NP-SBJ
11	so	so	RB	RB	_	13	ADVP
12	far	far	RB	RB	_	11	DEP
13	has	has	VBZ	VBZ	_	0	ROOT
14	been	been	VBN	VBN	_	13	VP
15	the	the	DT	DT	_	18	DEP
16	new	new	NNP	NNP	_	18	DEP
17	zealand	zealand	NNP	NNP	_	18	DEP
18	government	government	NN	NN	_	14	NP-PRD
19	.	.	.	.	_	13	DEP

1	barred	barred	VBN	VBN	_	19	S
2	by	by	IN	IN	_	1	PP
3	its	its	PRP$	PRP$	_	5	DEP
4	budget	budget	NN	NN	_	5	DEP
5	law	law	NN	NN	_	2	NP
6	from	from	IN	IN	_	1	PP
7	making	making	VBG	VBG	_	6	S
8	any	any	DT	DT	_	12	DEP
9	new	new	JJ	JJ	_	12	DEP
10	domestic	domestic	JJ	JJ	_	12	DEP
11	bond	bond	NN	NN	_	12	DEP
12	issues	issues	NNS	NNS	_	7	NP-OBJ
13	,	,	,	,	_	19	DEP
14	wellington	wellington	NNP	NNP	_	15	DEP
15	's	's	POS	POS	_	18	NP
16	debt	debt	NNP	NNP	_	18	DEP
17	management	management	NNP	NNP	_	18	DEP
18	office	office	NNP	NNP	_	19	NP-SBJ
19	had	had	VBD	VBD	_	0	ROOT
20	been	been	VBN	VBN	_	19	VP
21	casting	casting	VBG	VBG	_	20	VP
22	abroad	abroad	RB	RB	_	21	ADVP
23	to	to	TO	TO	_	24	DEP
24	raise	raise	VB	VB	_	21	S
25	the	the	DT	DT	_	30	DEP
26	3	3	CD	CD	_	27	DEP
27	billion	billion	CD	CD	_	30	QP
28	new	new	NNP	NNP	_	30	DEP
29	zealand	zealand	NNP	NNP	_	30	DEP
30	dollars	dollars	NNS	NNS	_	37	NP
31	(	(	-LRB-	-LRB-	_	32	DEP
32	us$	us$	$	$	_	30	PRN
33	1.76	1.76	CD	CD	_	32	DEP
34	billion	billion	CD	CD	_	32	DEP
35	)	)	-RRB-	-RRB-	_	32	DEP
36	to	to	TO	TO	_	37	DEP
37	nz$	nz$	$	$	_	24	NP-OBJ
38	4	4	CD	CD	_	37	DEP
39	billion	billion	CD	CD	_	37	DEP
40	it	it	PRP	PRP	_	41	NP-SBJ
41	needs	needs	VBZ	VBZ	_	37	SBAR
42	to	to	TO	TO	_	43	DEP
43	come	come	VB	VB	_	41	S
44	up	up	RB	RB	_	43	ADVP
45	with	with	IN	IN	_	43	PP
46	by	by	IN	IN	_	43	PP
47	the	the	DT	DT	_	48	DEP
48	end	end	NN	NN	_	54	NP
49	of	of	IN	IN	_	54	PP
50	its	its	PRP$	PRP$	_	52	DEP
51	fiscal	fiscal	JJ	JJ	_	52	DEP
52	year	year	NN	NN	_	49	NP
53	next	next	IN	IN	_	54	DEP
54	june	june	NNP	NNP	_	46	NP
55	30	30	CD	CD	_	54	DEP
56	.	.	.	.	_	19	DEP

1	with	with	IN	IN	_	14	SBAR
2	japan	japan	NNP	NNP	_	3	DEP
3	's	's	POS	POS	_	5	NP
4	cash-flush	cash-flush	JJ	JJ	_	5	DEP
5	banks	banks	NNS	NNS	_	6	NP-SBJ
6	aligned	aligned	VBN	VBN	_	1	S
7	against	against	IN	IN	_	6	PP
8	it	it	PRP	PRP	_	7	NP
9	,	,	,	,	_	14	DEP
10	though	though	RB	RB	_	14	ADVP
11	,	,	,	,	_	14	DEP
12	raising	raising	VBG	VBG	_	14	S
13	money	money	NN	NN	_	12	NP-OBJ
14	may	may	MD	MD	_	0	ROOT
15	be	be	VB	VB	_	14	VP
16	difficult	difficult	JJ	JJ	_	15	ADJP
17	.	.	.	.	_	14	DEP

1	not	not	RB	RB	_	28	CONJP
2	only	only	RB	RB	_	1	DEP
3	can	can	MD	MD	_	28	SINV
4	they	they	PRP	PRP	_	3	NP-SBJ
5	block	block	VB	VB	_	3	VP
6	wellington	wellington	NNP	NNP	_	5	NP-OBJ
7	from	from	IN	IN	_	5	PP
8	raising	raising	VBG	VBG	_	7	S
9	money	money	NN	NN	_	8	NP-OBJ
10	in	in	IN	IN	_	8	PP
11	japan	japan	NNP	NNP	_	10	NP
12	,	,	,	,	_	15	DEP
13	bankers	bankers	NNS	NNS	_	15	NP-SBJ
14	here	here	RB	RB	_	13	ADVP
15	say	say	VBP	VBP	_	28	PRN
16	,	,	,	,	_	15	DEP
17	but	but	CC	CC	_	28	DEP
18	as	as	IN	IN	_	28	PP
19	the	the	DT	DT	_	21	DEP
20	largest	largest	JJS	JJS	_	21	DEP
21	underwriters	underwriters	NNS	NNS	_	18	NP
22	in	in	IN	IN	_	21	PP
23	the	the	DT	DT	_	25	DEP
24	eurobond	eurobond	NN	NN	_	25	DEP
25	market	market	NN	NN	_	22	NP
26	,	,	,	,	_	28	DEP
27	they	they	PRP	PRP	_	28	NP-SBJ
28	might	might	MD	MD	_	0	ROOT
29	be	be	VB	VB	_	28	VP
30	able	able	JJ	JJ	_	29	ADJP
31	to	to	TO	TO	_	32	DEP
32	scuttle	scuttle	VB	VB	_	30	S
33	borrowings	borrowings	NNS	NNS	_	32	NP-OBJ
34	there	there	RB	RB	_	32	ADVP
35	,	,	,	,	_	32	DEP
36	too	too	RB	RB	_	32	ADVP
37	.	.	.	.	_	28	DEP

1	new	new	NNP	NNP	_	3	DEP
2	zealand	zealand	NNP	NNP	_	3	DEP
3	's	's	POS	POS	_	5	NP
4	finance	finance	NN	NN	_	5	DEP
5	minister	minister	NN	NN	_	8	NP
6	,	,	,	,	_	8	DEP
7	david	david	NNP	NNP	_	8	DEP
8	caygill	caygill	NNP	NNP	_	10	NP-SBJ
9	,	,	,	,	_	8	DEP
10	lashed	lashed	VBD	VBD	_	0	ROOT
11	out	out	RB	RB	_	10	ADVP
12	at	at	IN	IN	_	10	PP
13	such	such	JJ	JJ	_	14	DEP
14	suggestions	suggestions	NNS	NNS	_	12	NP
15	.	.	.	.	_	10	DEP

1	he	he	PRP	PRP	_	2	NP-SBJ
2	told	told	VBD	VBD	_	0	ROOT
3	reporters	reporters	NNS	NNS	_	2	NP-OBJ
4	in	in	IN	IN	_	2	PP
5	wellington	wellington	NNP	NNP	_	4	NP
6	tuesday	tuesday	NNP	NNP	_	2	NP
7	that	that	IN	IN	_	2	SBAR
8	the	the	DT	DT	_	9	DEP
9	government	government	NN	NN	_	10	NP-SBJ
10	had	had	VBD	VBD	_	7	S
11	n't	n't	RB	RB	_	10	DEP
12	guaranteed	guaranteed	VBN	VBN	_	10	VP
13	the	the	DT	DT	_	14	DEP
14	loans	loans	NNS	NNS	_	12	NP-OBJ
15	to	to	TO	TO	_	14	PP
16	dfc	dfc	NNP	NNP	_	19	DEP
17	new	new	NNP	NNP	_	19	DEP
18	zealand	zealand	NNP	NNP	_	19	DEP
19	ltd.	ltd.	NNP	NNP	_	23	NP
20	,	,	,	,	_	23	DEP
21	an	an	DT	DT	_	23	DEP
22	investment	investment	NN	NN	_	23	DEP
23	bank	bank	NN	NN	_	15	NP
24	80%-owned	80%-owned	JJ	JJ	_	23	ADJP
25	by	by	IN	IN	_	24	PP
26	the	the	DT	DT	_	29	DEP
27	national	national	NNP	NNP	_	29	DEP
28	provident	provident	NNP	NNP	_	29	DEP
29	fund	fund	NNP	NNP	_	25	NP
30	,	,	,	,	_	10	DEP
31	and	and	CC	CC	_	10	DEP
32	would	would	MD	MD	_	10	VP
33	n't	n't	RB	RB	_	32	DEP
34	bail	bail	VB	VB	_	32	VP
35	it	it	PRP	PRP	_	34	NP-OBJ
36	out	out	RP	RP	_	34	PRT
37	.	.	.	.	_	2	DEP

1	``	``	``	``	_	15	DEP
2	it	it	PRP	PRP	_	3	NP-SBJ
3	may	may	MD	MD	_	15	S
4	very	very	RB	RB	_	3	ADVP
5	well	well	RB	RB	_	4	DEP
6	be	be	VB	VB	_	3	VP
7	what	what	WP	WP	_	6	SBAR
8	the	the	DT	DT	_	10	DEP
9	japanese	japanese	JJ	JJ	_	10	DEP
10	banks	banks	NNS	NNS	_	11	NP-SBJ
11	want	want	VBP	VBP	_	7	S
12	,	,	,	,	_	15	DEP
13	''	''	''	''	_	15	DEP
14	he	he	PRP	PRP	_	15	NP-SBJ
15	told	told	VBD	VBD	_	0	ROOT
16	radio	radio	NNP	NNP	_	18	DEP
17	new	new	NNP	NNP	_	18	DEP
18	zealand	zealand	NNP	NNP	_	15	NP-OBJ
19	.	.	.	.	_	15	DEP

1	``	``	``	``	_	10	DEP
2	i	i	PRP	PRP	_	3	NP-SBJ
3	think	think	VBP	VBP	_	10	S
4	it	it	PRP	PRP	_	5	NP-SBJ
5	would	would	MD	MD	_	3	SBAR
6	be	be	VB	VB	_	5	VP
7	irresponsible	irresponsible	JJ	JJ	_	6	ADJP
8	and	and	CC	CC	_	10	DEP
9	i	i	PRP	PRP	_	10	NP-SBJ
10	am	am	VBP	VBP	_	0	ROOT
11	not	not	RB	RB	_	10	DEP
12	about	about	IN	IN	_	14	DEP
13	to	to	TO	TO	_	14	DEP
14	be	be	VB	VB	_	10	ADJP
15	blackmailed	blackmailed	VBN	VBN	_	14	VP
16	by	by	IN	IN	_	15	PP
17	japanese	japanese	JJ	JJ	_	18	DEP
18	banks	banks	NNS	NNS	_	23	NP
19	or	or	CC	CC	_	23	DEP
20	any	any	DT	DT	_	23	DEP
21	other	other	JJ	JJ	_	23	DEP
22	international	international	JJ	JJ	_	23	DEP
23	interests	interests	NNS	NNS	_	16	NP
24	.	.	.	.	_	10	DEP
25	''	''	''	''	_	10	DEP

1	no	no	DT	DT	_	3	DEP
2	less	less	RBR	RBR	_	3	DEP
3	significant	significant	JJ	JJ	_	19	ADJP
4	than	than	IN	IN	_	3	PP
5	the	the	DT	DT	_	8	DEP
6	japanese	japanese	JJ	JJ	_	8	DEP
7	banks	banks	NNS	NNS	_	8	DEP
8	'	'	POS	POS	_	9	NP
9	attempt	attempt	NN	NN	_	4	NP
10	to	to	TO	TO	_	11	DEP
11	cut	cut	VB	VB	_	9	S
12	off	off	RP	RP	_	11	PRT
13	funds	funds	NNS	NNS	_	11	NP-OBJ
14	to	to	TO	TO	_	15	DEP
15	pressure	pressure	VB	VB	_	11	S
16	a	a	DT	DT	_	18	DEP
17	foreign	foreign	JJ	JJ	_	18	DEP
18	government	government	NN	NN	_	15	NP-OBJ
19	are	are	VBP	VBP	_	0	ROOT
20	the	the	DT	DT	_	21	DEP
21	implications	implications	NNS	NNS	_	19	NP-SBJ
22	of	of	IN	IN	_	21	PP
23	a	a	DT	DT	_	24	DEP
24	confrontation	confrontation	NN	NN	_	22	NP
25	between	between	IN	IN	_	24	PP
26	japan	japan	NNP	NNP	_	27	DEP
27	securities	securities	NNS	NNS	_	30	NP
28	and	and	CC	CC	_	30	DEP
29	banking	banking	VBG	VBG	_	30	DEP
30	industries	industries	NNS	NNS	_	25	NP
31	.	.	.	.	_	19	DEP

1	anxiety	anxiety	NN	NN	_	2	NP-SBJ
2	is	is	VBZ	VBZ	_	0	ROOT
3	rising	rising	VBG	VBG	_	2	VP
4	over	over	IN	IN	_	3	PP
5	recent	recent	JJ	JJ	_	7	DEP
6	government	government	NN	NN	_	7	DEP
7	proposals	proposals	NNS	NNS	_	4	NP
8	to	to	TO	TO	_	10	DEP
9	eventually	eventually	RB	RB	_	10	ADVP
10	lower	lower	VB	VB	_	7	S
11	the	the	DT	DT	_	13	DEP
12	strict	strict	JJ	JJ	_	13	DEP
13	barriers	barriers	NNS	NNS	_	10	NP-OBJ
14	that	that	WDT	WDT	_	13	SBAR
15	now	now	RB	RB	_	16	ADVP
16	separate	separate	VBP	VBP	_	14	S
17	--	--	:	:	_	19	DEP
18	and	and	CC	CC	_	19	DEP
19	protect	protect	VBP	VBP	_	16	PRN
20	--	--	:	:	_	19	DEP
21	the	the	DT	DT	_	23	DEP
22	two	two	CD	CD	_	23	DEP
23	industries	industries	NNS	NNS	_	16	NP-OBJ
24	from	from	IN	IN	_	16	PP
25	each	each	DT	DT	_	26	DEP
26	other	other	JJ	JJ	_	24	NP
27	.	.	.	.	_	2	DEP

1	both	both	DT	DT	_	2	DEP
2	sides	sides	NNS	NNS	_	3	NP-SBJ
3	are	are	VBP	VBP	_	11	S
4	jealously	jealously	RB	RB	_	5	ADVP
5	guarding	guarding	VBG	VBG	_	3	VP
6	their	their	PRP$	PRP$	_	7	DEP
7	turf	turf	NN	NN	_	5	NP-OBJ
8	,	,	,	,	_	11	DEP
9	and	and	CC	CC	_	11	DEP
10	relations	relations	NNS	NNS	_	11	NP-SBJ
11	have	have	VBP	VBP	_	0	ROOT
12	been	been	VBN	VBN	_	11	VP
13	at	at	IN	IN	_	12	PP
14	a	a	DT	DT	_	15	DEP
15	flashpoint	flashpoint	NN	NN	_	13	NP
16	for	for	IN	IN	_	12	PP
17	months	months	NNS	NNS	_	16	NP
18	.	.	.	.	_	11	DEP

1	the	the	DT	DT	_	2	DEP
2	banks	banks	NNS	NNS	_	4	NP-SBJ
3	badly	badly	RB	RB	_	4	ADVP
4	want	want	VBP	VBP	_	0	ROOT
5	to	to	TO	TO	_	6	DEP
6	break	break	VB	VB	_	4	S
7	into	into	IN	IN	_	6	PP
8	all	all	DT	DT	_	9	DEP
9	aspects	aspects	NNS	NNS	_	7	NP
10	of	of	IN	IN	_	9	PP
11	the	the	DT	DT	_	13	DEP
12	securities	securities	NNS	NNS	_	13	DEP
13	business	business	NN	NN	_	10	NP
14	.	.	.	.	_	4	DEP

1	meanwhile	meanwhile	RB	RB	_	15	ADVP
2	,	,	,	,	_	15	DEP
3	the	the	DT	DT	_	5	DEP
4	securities	securities	NNS	NNS	_	5	DEP
5	companies	companies	NNS	NNS	_	15	NP-SBJ
6	--	--	:	:	_	7	DEP
7	most	most	JJS	JJS	_	5	PRN
8	of	of	IN	IN	_	7	PP
9	them	them	PRP	PRP	_	8	NP
10	smaller	smaller	JJR	JJR	_	7	ADJP
11	than	than	IN	IN	_	10	PP
12	the	the	DT	DT	_	13	DEP
13	banks	banks	NNS	NNS	_	11	NP
14	--	--	:	:	_	7	DEP
15	are	are	VBP	VBP	_	0	ROOT
16	seeking	seeking	VBG	VBG	_	15	VP
17	access	access	NN	NN	_	16	NP-OBJ
18	only	only	RB	RB	_	19	ADVP
19	to	to	TO	TO	_	17	PP
20	limited	limited	JJ	JJ	_	21	DEP
21	kinds	kinds	NNS	NNS	_	19	NP
22	of	of	IN	IN	_	21	PP
23	banking	banking	NN	NN	_	22	NP
24	that	that	WDT	WDT	_	21	SBAR
25	would	would	MD	MD	_	24	S
26	n't	n't	RB	RB	_	25	DEP
27	open	open	VB	VB	_	25	VP
28	them	them	PRP	PRP	_	27	NP-OBJ
29	to	to	TO	TO	_	27	PP
30	the	the	DT	DT	_	32	DEP
31	full	full	JJ	JJ	_	32	DEP
32	brunt	brunt	NN	NN	_	29	NP
33	of	of	IN	IN	_	32	PP
34	competition	competition	NN	NN	_	33	NP
35	from	from	IN	IN	_	34	PP
36	the	the	DT	DT	_	37	DEP
37	banks	banks	NNS	NNS	_	35	NP
38	.	.	.	.	_	15	DEP

1	nomura	nomura	NNP	NNP	_	8	NP
2	,	,	,	,	_	8	DEP
3	the	the	DT	DT	_	5	DEP
4	world	world	NN	NN	_	5	DEP
5	's	's	POS	POS	_	8	NP
6	biggest	biggest	JJS	JJS	_	8	DEP
7	securities	securities	NNS	NNS	_	8	DEP
8	company	company	NN	NN	_	30	NP
9	largely	largely	RB	RB	_	10	ADVP
10	by	by	IN	IN	_	8	PP
11	virtue	virtue	NN	NN	_	10	NP
12	of	of	IN	IN	_	11	PP
13	its	its	PRP$	PRP$	_	16	DEP
14	protected	protected	JJ	JJ	_	16	DEP
15	home	home	NN	NN	_	16	DEP
16	field	field	NN	NN	_	12	NP
17	,	,	,	,	_	30	DEP
18	and	and	CC	CC	_	30	DEP
19	industrial	industrial	NNP	NNP	_	20	DEP
20	bank	bank	NNP	NNP	_	30	NP
21	of	of	IN	IN	_	20	PP
22	japan	japan	NNP	NNP	_	21	NP
23	,	,	,	,	_	30	DEP
24	japan	japan	NNP	NNP	_	25	DEP
25	's	's	POS	POS	_	30	NP
26	most	most	RBS	RBS	_	27	DEP
27	innovative	innovative	JJ	JJ	_	29	ADJP
28	and	and	CC	CC	_	29	DEP
29	aggressive	aggressive	JJ	JJ	_	30	ADJP
30	bank	bank	NN	NN	_	36	NP-SBJ
31	in	in	IN	IN	_	30	PP
32	capital	capital	NN	NN	_	33	DEP
33	markets	markets	NNS	NNS	_	31	NP
34	abroad	abroad	RB	RB	_	33	ADVP
35	,	,	,	,	_	30	DEP
36	captain	captain	VBP	VBP	_	0	ROOT
37	the	the	DT	DT	_	39	DEP
38	opposing	opposing	VBG	VBG	_	39	DEP
39	sides	sides	NNS	NNS	_	36	NP-OBJ
40	.	.	.	.	_	36	DEP

1	and	and	CC	CC	_	7	DEP
2	their	their	PRP$	PRP$	_	3	DEP
3	suspicions	suspicions	NNS	NNS	_	7	NP-SBJ
4	of	of	IN	IN	_	3	PP
5	each	each	DT	DT	_	6	DEP
6	other	other	JJ	JJ	_	4	NP
7	run	run	VBP	VBP	_	0	ROOT
8	deep	deep	RB	RB	_	7	ADVP
9	.	.	.	.	_	7	DEP

1	in	in	IN	IN	_	7	PP
2	the	the	DT	DT	_	4	DEP
3	past	past	JJ	JJ	_	4	DEP
4	year	year	NN	NN	_	1	NP
5	,	,	,	,	_	7	DEP
6	both	both	DT	DT	_	7	NP-SBJ
7	have	have	VBP	VBP	_	0	ROOT
8	tried	tried	VBN	VBN	_	7	VP
9	to	to	TO	TO	_	10	DEP
10	stretch	stretch	VB	VB	_	8	S
11	the	the	DT	DT	_	12	DEP
12	limits	limits	NNS	NNS	_	10	NP-OBJ
13	of	of	IN	IN	_	12	PP
14	their	their	PRP$	PRP$	_	15	DEP
15	businesses	businesses	NNS	NNS	_	13	NP
16	.	.	.	.	_	7	DEP

1	nomura	nomura	NNP	NNP	_	2	NP-SBJ
2	started	started	VBD	VBD	_	0	ROOT
3	a	a	DT	DT	_	5	DEP
4	credit-card	credit-card	NN	NN	_	5	DEP
5	venture	venture	NN	NN	_	2	NP-OBJ
6	with	with	IN	IN	_	2	PP
7	american	american	NNP	NNP	_	9	DEP
8	express	express	NNP	NNP	_	9	DEP
9	co.	co.	NNP	NNP	_	6	NP
10	that	that	WDT	WDT	_	2	SBAR
11	allowed	allowed	VBD	VBD	_	10	S
12	cardholders	cardholders	NNS	NNS	_	14	NP-SBJ
13	to	to	TO	TO	_	14	DEP
14	use	use	VB	VB	_	11	S
15	their	their	PRP$	PRP$	_	18	DEP
16	nomura	nomura	NNP	NNP	_	18	DEP
17	securities	securities	NNS	NNS	_	18	DEP
18	accounts	accounts	NNS	NNS	_	14	NP-OBJ
19	like	like	IN	IN	_	14	PP
20	a	a	DT	DT	_	22	DEP
21	bank	bank	NN	NN	_	22	DEP
22	account	account	NN	NN	_	19	NP
23	,	,	,	,	_	2	DEP
24	attracting	attracting	VBG	VBG	_	2	S
25	the	the	DT	DT	_	26	DEP
26	wrath	wrath	NN	NN	_	24	NP-OBJ
27	of	of	IN	IN	_	26	PP
28	banks	banks	NNS	NNS	_	27	NP
29	.	.	.	.	_	2	DEP

1	and	and	CC	CC	_	6	DEP
2	industrial	industrial	NNP	NNP	_	3	DEP
3	bank	bank	NNP	NNP	_	6	NP-SBJ
4	of	of	IN	IN	_	3	PP
5	japan	japan	NNP	NNP	_	4	NP
6	started	started	VBD	VBD	_	0	ROOT
7	up	up	RP	RP	_	6	PRT
8	a	a	DT	DT	_	11	DEP
9	london	london	NNP	NNP	_	11	DEP
10	securities	securities	NNS	NNS	_	11	DEP
11	subsidiary	subsidiary	NN	NN	_	6	NP-OBJ
12	that	that	WDT	WDT	_	11	SBAR
13	sells	sells	VBZ	VBZ	_	12	S
14	japanese	japanese	JJ	JJ	_	15	DEP
15	stocks	stocks	NNS	NNS	_	13	NP-OBJ
16	to	to	TO	TO	_	13	PP
17	non-japanese	non-japanese	JJ	JJ	_	18	DEP
18	institutions	institutions	NNS	NNS	_	16	NP
19	overseas	overseas	RB	RB	_	18	ADVP
20	,	,	,	,	_	6	DEP
21	a	a	DT	DT	_	22	DEP
22	move	move	NN	NN	_	6	NP
23	that	that	WDT	WDT	_	22	SBAR
24	stirred	stirred	VBD	VBD	_	23	S
25	the	the	DT	DT	_	26	DEP
26	anger	anger	NN	NN	_	24	NP-OBJ
27	of	of	IN	IN	_	26	PP
28	the	the	DT	DT	_	31	DEP
29	stock	stock	NN	NN	_	31	DEP
30	brokerage	brokerage	NN	NN	_	31	DEP
31	firms	firms	NNS	NNS	_	27	NP
32	.	.	.	.	_	6	DEP

1	the	the	DT	DT	_	5	DEP
2	new	new	NNP	NNP	_	5	DEP
3	zealand	zealand	NNP	NNP	_	5	DEP
4	bond	bond	NN	NN	_	5	DEP
5	issue	issue	NN	NN	_	7	NP-SBJ
6	simply	simply	RB	RB	_	7	ADVP
7	has	has	VBZ	VBZ	_	0	ROOT
8	brought	brought	VBN	VBN	_	7	VP
9	the	the	DT	DT	_	11	DEP
10	two	two	CD	CD	_	11	DEP
11	institutions	institutions	NNS	NNS	_	8	S
12	face-to-face	face-to-face	RB	RB	_	11	ADVP
13	.	.	.	.	_	7	DEP

1	itel	itel	NNP	NNP	_	2	DEP
2	corp.	corp.	NNP	NNP	_	3	NP-SBJ
3	reported	reported	VBD	VBD	_	0	ROOT
4	third-quarter	third-quarter	JJ	JJ	_	5	DEP
5	earnings	earnings	NNS	NNS	_	3	NP-OBJ
6	,	,	,	,	_	5	DEP
7	which	which	WDT	WDT	_	5	SBAR
8	were	were	VBD	VBD	_	7	S
9	mistakenly	mistakenly	RB	RB	_	10	ADVP
10	shown	shown	VBN	VBN	_	8	VP
11	in	in	IN	IN	_	10	PP
12	the	the	DT	DT	_	16	DEP
13	quarterly	quarterly	JJ	JJ	_	16	DEP
14	earnings	earnings	NNS	NNS	_	16	DEP
15	surprises	surprises	NNS	NNS	_	16	DEP
16	table	table	NN	NN	_	11	NP
17	in	in	IN	IN	_	16	PP
18	yesterday	yesterday	NN	NN	_	19	DEP
19	's	's	POS	POS	_	20	NP
20	edition	edition	NN	NN	_	17	NP
21	to	to	TO	TO	_	22	DEP
22	be	be	VB	VB	_	10	S
23	lower	lower	JJR	JJR	_	22	ADJP
24	than	than	IN	IN	_	23	PP
25	the	the	DT	DT	_	26	DEP
26	average	average	NN	NN	_	24	NP
27	of	of	IN	IN	_	26	PP
28	analysts	analysts	NNS	NNS	_	29	DEP
29	'	'	POS	POS	_	30	NP
30	estimates	estimates	NNS	NNS	_	27	NP
31	.	.	.	.	_	3	DEP

1	on	on	IN	IN	_	15	PP
2	a	a	DT	DT	_	4	DEP
3	pretax	pretax	JJ	JJ	_	4	DEP
4	basis	basis	NN	NN	_	1	NP
5	,	,	,	,	_	15	DEP
6	itel	itel	NNP	NNP	_	7	DEP
7	's	's	POS	POS	_	9	NP
8	third-quarter	third-quarter	JJ	JJ	_	9	DEP
9	earnings	earnings	NNS	NNS	_	15	NP-SBJ
10	of	of	IN	IN	_	9	PP
11	30	30	CD	CD	_	12	DEP
12	cents	cents	NNS	NNS	_	14	NP
13	a	a	DT	DT	_	14	DEP
14	share	share	NN	NN	_	10	NP
15	were	were	VBD	VBD	_	0	ROOT
16	actually	actually	RB	RB	_	15	ADVP
17	7.14	7.14	CD	CD	_	18	DEP
18	%	%	NN	NN	_	19	NP
19	higher	higher	JJR	JJR	_	15	ADJP
20	than	than	IN	IN	_	19	PP
21	the	the	DT	DT	_	22	DEP
22	average	average	NN	NN	_	20	NP
23	of	of	IN	IN	_	22	PP
24	estimates	estimates	NNS	NNS	_	23	NP
25	.	.	.	.	_	15	DEP

1	raymond	raymond	NNP	NNP	_	3	DEP
2	e.	e.	NNP	NNP	_	3	DEP
3	ross	ross	NNP	NNP	_	16	NP
4	,	,	,	,	_	16	DEP
5	53	53	CD	CD	_	6	DEP
6	years	years	NNS	NNS	_	7	NP
7	old	old	JJ	JJ	_	16	ADJP
8	,	,	,	,	_	16	DEP
9	formerly	formerly	RB	RB	_	12	DEP
10	group	group	NN	NN	_	12	DEP
11	vice	vice	NN	NN	_	12	DEP
12	president	president	NN	NN	_	16	NP
13	,	,	,	,	_	16	DEP
14	u.s.	u.s.	NNP	NNP	_	16	DEP
15	plastics	plastics	NNS	NNS	_	16	DEP
16	machinery	machinery	NN	NN	_	29	NP-SBJ
17	,	,	,	,	_	16	DEP
18	at	at	IN	IN	_	16	PP
19	this	this	DT	DT	_	27	DEP
20	machine	machine	NN	NN	_	27	DEP
21	tool	tool	NN	NN	_	27	DEP
22	,	,	,	,	_	27	DEP
23	plastics	plastics	NNS	NNS	_	27	DEP
24	machinery	machinery	NN	NN	_	27	DEP
25	and	and	CC	CC	_	27	DEP
26	robots	robots	NNS	NNS	_	27	DEP
27	concern	concern	NN	NN	_	18	NP
28	,	,	,	,	_	16	DEP
29	was	was	VBD	VBD	_	0	ROOT
30	named	named	VBN	VBN	_	29	VP
31	senior	senior	JJ	JJ	_	33	DEP
32	vice	vice	NN	NN	_	33	DEP
33	president	president	NN	NN	_	36	NP
34	,	,	,	,	_	36	DEP
35	industrial	industrial	JJ	JJ	_	36	DEP
36	systems	systems	NNS	NNS	_	30	S
37	,	,	,	,	_	36	DEP
38	succeeding	succeeding	VBG	VBG	_	30	S
39	david	david	NNP	NNP	_	41	DEP
40	a.	a.	NN	NN	_	41	DEP
41	entrekin	entrekin	NNP	NNP	_	38	NP-OBJ
42	,	,	,	,	_	41	DEP
43	who	who	WP	WP	_	41	SBAR
44	resigned	resigned	VBD	VBD	_	43	S
45	monday	monday	NNP	NNP	_	44	NP
46	.	.	.	.	_	29	DEP

1	john	john	NNP	NNP	_	4	DEP
2	a.	a.	NN	NN	_	4	DEP
3	conlon	conlon	NNP	NNP	_	4	DEP
4	jr.	jr.	NNP	NNP	_	6	NP
5	,	,	,	,	_	6	DEP
6	45	45	CD	CD	_	8	NP-SBJ
7	,	,	,	,	_	6	DEP
8	was	was	VBD	VBD	_	0	ROOT
9	named	named	VBN	VBN	_	8	VP
10	a	a	DT	DT	_	12	DEP
11	managing	managing	VBG	VBG	_	12	DEP
12	director	director	NN	NN	_	9	S
13	at	at	IN	IN	_	9	PP
14	this	this	DT	DT	_	16	DEP
15	investment-banking	investment-banking	JJ	JJ	_	16	DEP
16	company	company	NN	NN	_	13	NP
17	.	.	.	.	_	8	DEP

1	he	he	PRP	PRP	_	2	NP-SBJ
2	will	will	MD	MD	_	0	ROOT
3	be	be	VB	VB	_	2	VP
4	in	in	IN	IN	_	3	PP
5	charge	charge	NN	NN	_	4	NP
6	of	of	IN	IN	_	5	PP
7	research	research	NN	NN	_	12	NP
8	,	,	,	,	_	12	DEP
9	equity	equity	NN	NN	_	10	DEP
10	sales	sales	NNS	NNS	_	12	NP
11	and	and	CC	CC	_	12	DEP
12	trading	trading	NN	NN	_	17	NP
13	,	,	,	,	_	17	DEP
14	and	and	CC	CC	_	17	DEP
15	the	the	DT	DT	_	17	DEP
16	syndicate	syndicate	NN	NN	_	17	DEP
17	operation	operation	NN	NN	_	6	NP
18	of	of	IN	IN	_	17	PP
19	rothschild	rothschild	NNP	NNP	_	18	NP
20	.	.	.	.	_	2	DEP

1	mr.	mr.	NNP	NNP	_	2	DEP
2	conlon	conlon	NNP	NNP	_	3	NP-SBJ
3	was	was	VBD	VBD	_	0	ROOT
4	executive	executive	NN	NN	_	6	DEP
5	vice	vice	NN	NN	_	6	DEP
6	president	president	NN	NN	_	8	NP
7	and	and	CC	CC	_	8	DEP
8	director	director	NN	NN	_	3	NP-PRD
9	of	of	IN	IN	_	8	PP
10	the	the	DT	DT	_	12	DEP
11	equity	equity	NN	NN	_	12	DEP
12	division	division	NN	NN	_	9	NP
13	of	of	IN	IN	_	12	PP
14	the	the	DT	DT	_	16	DEP
15	international	international	JJ	JJ	_	16	DEP
16	division	division	NN	NN	_	13	NP
17	of	of	IN	IN	_	16	PP
18	nikko	nikko	NNP	NNP	_	20	DEP
19	securities	securities	NNPS	NNPS	_	20	DEP
20	co	co	NNP	NNP	_	17	NP
21	.	.	.	.	_	3	DEP

1	as	as	IN	IN	_	8	SBAR
2	yogi	yogi	NNP	NNP	_	3	DEP
3	berra	berra	NNP	NNP	_	4	NP-SBJ
4	might	might	MD	MD	_	1	S
5	say	say	VB	VB	_	4	VP
6	,	,	,	,	_	8	DEP
7	it	it	PRP	PRP	_	8	NP-SBJ
8	's	's	VBZ	VBZ	_	0	ROOT
9	deja	deja	NN	NN	_	10	DEP
10	vu	vu	NN	NN	_	8	NP-PRD
11	all	all	RB	RB	_	8	ADVP
12	over	over	RB	RB	_	11	DEP
13	again	again	RB	RB	_	11	DEP
14	.	.	.	.	_	8	DEP

1	crouched	crouched	VBN	VBN	_	15	S
2	at	at	IN	IN	_	1	PP
3	shortstop	shortstop	NN	NN	_	2	NP
4	,	,	,	,	_	15	DEP
5	bert	bert	NNP	NNP	_	6	DEP
6	campaneris	campaneris	NNP	NNP	_	12	NP
7	,	,	,	,	_	12	DEP
8	once	once	RB	RB	_	12	ADVP
9	oakland	oakland	NNP	NNP	_	10	DEP
10	's	's	POS	POS	_	12	NP
11	master	master	NN	NN	_	12	DEP
12	thief	thief	NN	NN	_	15	NP-SBJ
13	,	,	,	,	_	12	DEP
14	effortlessly	effortlessly	RB	RB	_	15	ADVP
15	scoops	scoops	VBZ	VBZ	_	0	ROOT
16	up	up	RP	RP	_	15	PRT
17	a	a	DT	DT	_	18	DEP
18	groundball	groundball	NN	NN	_	15	NP-OBJ
19	and	and	CC	CC	_	15	DEP
20	flips	flips	VBZ	VBZ	_	15	VP
21	it	it	PRP	PRP	_	20	NP-OBJ
22	to	to	TO	TO	_	20	PP
23	second	second	JJ	JJ	_	22	NP
24	.	.	.	.	_	15	DEP

1	in	in	IN	IN	_	17	PP
2	the	the	DT	DT	_	3	DEP
3	outfield	outfield	NN	NN	_	1	NP
4	,	,	,	,	_	17	DEP
5	paul	paul	NNP	NNP	_	6	DEP
6	blair	blair	NNP	NNP	_	14	NP
7	,	,	,	,	_	14	DEP
8	the	the	DT	DT	_	10	DEP
9	orioles	orioles	NNP	NNP	_	10	DEP
10	'	'	POS	POS	_	14	NP
11	eight-time	eight-time	JJ	JJ	_	14	DEP
12	gold	gold	NNP	NNP	_	14	DEP
13	glove	glove	NNP	NNP	_	14	DEP
14	winner	winner	NN	NN	_	17	NP-SBJ
15	,	,	,	,	_	14	DEP
16	elegantly	elegantly	RB	RB	_	17	ADVP
17	shags	shags	VBZ	VBZ	_	0	ROOT
18	a	a	DT	DT	_	19	DEP
19	fly	fly	NN	NN	_	17	NP-OBJ
20	.	.	.	.	_	17	DEP

1	on	on	IN	IN	_	19	PP
2	the	the	DT	DT	_	3	DEP
3	mound	mound	NN	NN	_	1	NP
4	,	,	,	,	_	19	DEP
5	former	former	JJ	JJ	_	10	DEP
6	red	red	NNP	NNP	_	10	DEP
7	sox	sox	NNP	NNP	_	10	DEP
8	great	great	JJ	JJ	_	10	DEP
9	luis	luis	NNP	NNP	_	10	DEP
10	tiant	tiant	NNP	NNP	_	14	NP
11	,	,	,	,	_	14	DEP
12	the	the	DT	DT	_	14	DEP
13	wily	wily	JJ	JJ	_	14	DEP
14	master	master	NN	NN	_	19	NP-SBJ
15	of	of	IN	IN	_	14	PP
16	1,001	1,001	CD	CD	_	17	DEP
17	moves	moves	NNS	NNS	_	15	NP
18	,	,	,	,	_	14	DEP
19	throws	throws	VBZ	VBZ	_	0	ROOT
20	an	an	DT	DT	_	22	DEP
21	off-speed	off-speed	JJ	JJ	_	22	DEP
22	strike	strike	NN	NN	_	19	NP-OBJ
23	.	.	.	.	_	19	DEP

1	``	``	``	``	_	7	DEP
2	babies	babies	NNS	NNS	_	7	FRAG
3	,	,	,	,	_	2	DEP
4	kiddies	kiddies	NNS	NNS	_	2	DEP
5	,	,	,	,	_	2	DEP
6	''	''	''	''	_	7	DEP
7	growls	growls	VBZ	VBZ	_	0	ROOT
8	their	their	PRP$	PRP$	_	9	DEP
9	manager	manager	NN	NN	_	12	NP
10	--	--	:	:	_	12	DEP
11	a	a	DT	DT	_	12	DEP
12	fellow	fellow	NN	NN	_	7	NP-SBJ
13	named	named	VBN	VBN	_	12	VP
14	earl	earl	NNP	NNP	_	15	DEP
15	weaver	weaver	NNP	NNP	_	13	S
16	,	,	,	,	_	12	DEP
17	who	who	WP	WP	_	12	SBAR
18	,	,	,	,	_	17	DEP
19	in	in	IN	IN	_	24	PP
20	a	a	DT	DT	_	22	DEP
21	different	different	JJ	JJ	_	22	DEP
22	time	time	NN	NN	_	19	NP
23	,	,	,	,	_	24	DEP
24	handled	handled	VBD	VBD	_	31	S
25	four	four	CD	CD	_	28	DEP
26	world	world	NNP	NNP	_	28	DEP
27	series	series	NNP	NNP	_	28	DEP
28	teams	teams	NNS	NNS	_	24	NP-OBJ
29	and	and	CC	CC	_	31	DEP
30	now	now	RB	RB	_	31	ADVP
31	handles	handles	VBZ	VBZ	_	17	S
32	the	the	DT	DT	_	35	DEP
33	gold	gold	NNP	NNP	_	35	DEP
34	coast	coast	NNP	NNP	_	35	DEP
35	suns	suns	NNPS	NNPS	_	31	NP-OBJ
36	.	.	.	.	_	7	DEP

1	``	``	``	``	_	7	DEP
2	old-time	old-time	JJ	JJ	_	3	DEP
3	kiddies	kiddies	NNS	NNS	_	7	FRAG
4	,	,	,	,	_	7	DEP
5	''	''	''	''	_	7	DEP
6	he	he	PRP	PRP	_	7	NP-SBJ
7	says	says	VBZ	VBZ	_	0	ROOT
8	.	.	.	.	_	7	DEP