File size: 147,142 Bytes
de5c658 | 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 | Text_ID Tree_ID Token_ID Token Speaker Word_span Wordform Lemma POS Mood Tense Person Number Gender ID_dep Type_dep ID_plain Type_plain ID_junc Type_junc ID_para Type_para ID_inherited Type_inherited ID_junc_inherited Type_junc_inherited Layer
M2002
M2002 1 1 euh $L1 B euh euh I 0 root 0 root O
M2002 1 2
M2002 1 3 c $L1 B c' ce Cl 3 sg masc 5 sub 5 sub O
M2002 1 4 ' $L1 I O
M2002 1 5 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 1 6
M2002 1 7 une $L1 B une un D sg fem 9 dep 9 dep O
M2002 1 8
M2002 1 9 conférence $L1 B conférence conférence N sg fem 5 pred 5 pred O
M2002 1 10
M2002 1 11 de $L1 B de de Pre 9 dep 9 dep U
M2002 1 12
M2002 1 13 de $L1 B de de Pre 11 para_disfl 11 para_disfl 9 dep_inherited U
M2002 1 14
M2002 1 15 philosophie $L1 B philosophie philosophie N sg fem 13 dep 13 dep 11 dep_inherited O
M2002 1 16
M2002 1 17 entre $L1 B entre entre Pre 15 dep 15 dep O
M2002 1 18
M2002 1 19 guillemets $L1 B guillemets guillemet N pl masc 17 dep 17 dep O
M2002
M2002 2 1 mais $L1 B mais mais J 0 root 0 root O
M2002 2 2
M2002 2 3 c $L1 B c' ce Cl 3 sg masc 5 sub 5 sub O
M2002 2 4 ' $L1 I O
M2002 2 5 est $L1 B est être V indicative present 3 sg 1 dep 1 dep O
M2002 2 6
M2002 2 7 aussi $L1 B aussi aussi Adv 5 ad 5 ad O
M2002 2 8
M2002 2 9 une $L1 B une un D sg fem 11 dep 11 dep B
M2002 2 10
M2002 2 11 conférence $L1 B conférence conférence N sg fem 5 pred 5 pred I
M2002 2 12
M2002 2 13 de $L1 B de de Pre 11 dep 11 dep U
M2002 2 14
M2002 2 15 d $L1 B d' de Pre 13 para_disfl 13 para_disfl 11 dep_inherited B
M2002 2 16 ' $L1 I L
M2002 2 17 histoire $L1 B histoire histoire N sg fem 15 dep 15 dep 13 dep_inherited I
M2002 2 18
M2002 2 19 de $L1 B de de Pre 17 dep 17 dep I
M2002 2 20
M2002 2 21 l $L1 B l' le D sg masc 23 dep 23 dep I
M2002 2 22 ' $L1 I I
M2002 2 23 art $L1 B art art N sg masc 19 dep 19 dep L
M2002 2 24
M2002 2 25 une $L1 B une un D sg fem 27 dep 27 dep B
M2002 2 26
M2002 2 27 conférence $L1 B conférence conférence N sg fem 11 para_dform 11 para_dform 5 pred_inherited I
M2002 2 28
M2002 2 29 d $L1 B d' de Pre 27 dep 27 dep I
M2002 2 30 ' $L1 I I
M2002 2 31 esthétique $L1 B esthétique esthétique N sg fem 29 dep 29 dep L
M2002 2 32
M2002 2 33 parce $L1 B parce que parce que CS 5 ad 5 ad O
M2002 2 34 I
M2002 2 35 que $L1 I O
M2002 2 36
M2002 2 37 comme $L1 B comme comme CS 0 root 0 root O
M2002 2 38
M2002 2 39 vous $L1 B vous vous Cl 2 pl 41 sub 41 sub O
M2002 2 40
M2002 2 41 verrez $L1 B verrez voir V indicative future 2 pl 37 dep 37 dep O
M2002 2 42
M2002 2 43 j $L1 B j' je Cl 1 sg 45 sub 45 sub O
M2002 2 44 ' $L1 I O
M2002 2 45 ai $L1 B ai avoir V indicative present 1 sg 33 dep 33 dep O
M2002 2 46
M2002 2 47 une $L1 B une un D sg fem 49 dep 49 dep O
M2002 2 48
M2002 2 49 approche $L1 B approche approche N sg fem 45 obj 45 obj O
M2002 2 50
M2002 2 51 de $L1 B de de Pre 49 dep 49 dep U
M2002 2 52
M2002 2 53 de $L1 B de de Pre 51 para_disfl 51 para_disfl 49 dep_inherited U
M2002 2 54
M2002 2 55 l $L1 B l' le D sg masc 57 dep 57 dep O
M2002 2 56 ' $L1 I O
M2002 2 57 art $L1 B art art N sg masc 53 dep 53 dep 51 dep_inherited O
M2002 2 58
M2002 2 59 qui $L1 B qui qui Qu 61 sub 61 sub B
M2002 2 60
M2002 2 61 est $L1 B est être V indicative present 3 sg 49 dep 49 dep I
M2002 2 62
M2002 2 63 assez $L1 B assez assez Adv 65 para_disfl 65 para_disfl 67 dep_inherited U
M2002 2 64
M2002 2 65 assez $L1 B assez assez Adv 67 dep 67 dep U
M2002 2 66
M2002 2 67 généraliste $L1 B généraliste généraliste Adj sg masc/fem 61 pred 61 pred L
M2002 2 68
M2002 2 69 et $L1 B et et J 61 junc 61 junc B
M2002 2 70
M2002 2 71 qui $L1 B qui qui Qu 75 sub 75 sub I
M2002 2 72
M2002 2 73 euh $L1 B euh euh I 0 root 0 root I
M2002 2 74
M2002 2 75 mêle $L1 B mêle mêler V indicative present 3 sg 69 junc 69 junc 61 para_coord 49 dep_inherited I
M2002 2 76
M2002 2 77 plusieurs $L1 B plusieurs plusieurs D sg masc 81 para_disfl 81 para_disfl 83 dep_inherited U
M2002 2 78
M2002 2 79 euh $L1 B euh euh I 0 root 0 root B
M2002 2 80
M2002 2 81 plusieurs $L1 B plusieurs plusieurs D sg masc 83 dep 83 dep L
M2002 2 82
M2002 2 83 points $L1 B points point N pl masc 75 obj 75 obj I
M2002 2 84
M2002 2 85 de $L1 B de de Pre 83 dep 83 dep I
M2002 2 86
M2002 2 87 vue $L1 B vue vue N sg fem 85 dep 85 dep L
M2002 2 88
M2002 2 89 et $L1 B et et J 83 junc 83 junc B
M2002 2 90
M2002 2 91 donc $L1 B donc donc Adv 75 ad 75 ad I
M2002 2 92
M2002 2 93 pas $L1 B pas pas Adv 95 dep 95 dep I
M2002 2 94
M2002 2 95 seulement $L1 B seulement seulement Adv 75 ad 75 ad I
M2002 2 96
M2002 2 97 le $L1 B le le D sg masc 99 dep 99 dep I
M2002 2 98
M2002 2 99 point $L1 B point point N sg masc 89 junc 89 junc 83 para_coord 75 obj_inherited I
M2002 2 100
M2002 2 101 de $L1 B de de Pre 99 dep 99 dep I
M2002 2 102
M2002 2 103 vue $L1 B vue vue N sg fem 101 dep 101 dep I
M2002 2 104
M2002 2 105 de $L1 B de de Pre 99 dep 99 dep I
M2002 2 106
M2002 2 107 la $L1 B la le D sg fem 109 dep 109 dep I
M2002 2 108
M2002 2 109 philosophie $L1 B philosophie philosophie N sg fem 105 dep 105 dep L
M2002 2 110
M2002 2 111 mais $L1 B mais mais J 99 junc 99 junc B
M2002 2 112
M2002 2 113 aussi $L1 B aussi aussi Adv 75 ad 75 ad I
M2002 2 114
M2002 2 115 celui $L1 B celui celui Pro 3 sg masc/fem 111 junc 111 junc 99 para_coord 75 obj_inherited B
M2002 2 116
M2002 2 117 de $L1 B de de Pre 115 dep 115 dep I
M2002 2 118
M2002 2 119 l $L1 B l' le D sg fem 121 dep 121 dep I
M2002 2 120 ' $L1 I I
M2002 2 121 histoire $L1 B histoire histoire N sg fem 117 dep 117 dep L
M2002 2 122
M2002 2 123 celui $L1 B celui celui Pro 3 sg masc/fem 115 para_hyper 115 para_hyper 75 obj_inherited B
M2002 2 124
M2002 2 125 de $L1 B de de Pre 123 dep 123 dep I
M2002 2 126
M2002 2 127 la $L1 B la le D sg fem 129 dep 129 dep I
M2002 2 128
M2002 2 129 sociologie $L1 B sociologie sociologie N indicative sg fem 125 dep 125 dep L
M2002 2 130
M2002 2 131 et $L1 B et caetera et caetera J 123 para_hyper 123 para_hyper B
M2002 2 132 I
M2002 2 133 caetera $L1 I L
M2002 2 134
M2002 2 135 et $L1 B et caetera et caetera J 131 para_intens 131 para_intens B
M2002 2 136 I
M2002 2 137 caetera $L1 I L
M2002
M2002 3 1 donc $L1 B donc donc Adv 0 root 0 root O
M2002 3 2
M2002 3 3 je $L1 B je je Cl 1 sg 5 sub 5 sub O
M2002 3 4
M2002 3 5 vais $L1 B vais aller V indicative present 1 sg 0 root 0 root O
M2002 3 6
M2002 3 7 traiter $L1 B traiter traiter V infinitive 5 pred 5 pred O
M2002 3 8
M2002 3 9 mon $L1 B mon son D sg masc 11 dep 11 dep O
M2002 3 10
M2002 3 11 sujet $L1 B sujet sujet N sg masc 7 obj 7 obj O
M2002
M2002 4 1 hein $L1 B hein hein I 0 root 0 root O
M2002 4 2
M2002 4 3 je $L1 B je je Cl 1 sg 5 sub 5 sub O
M2002 4 4
M2002 4 5 veux $L1 B veux vouloir V indicative present 1 sg 0 root 0 root O
M2002 4 6
M2002 4 7 dire $L1 B dire dire V infinitive sg 5 pred 5 pred O
M2002 4 8
M2002 4 9 comme $L1 B comme comme CS 0 root 0 root O
M2002 4 10
M2002 4 11 je $L1 B je je Cl 1 sg 13 sub 13 sub O
M2002 4 12
M2002 4 13 suis $L1 B suis être V indicative present 1 sg 9 dep 9 dep O
M2002 4 14
M2002 4 15 quelqu $L1 B quelqu'un quelqu'un Pro 3 sg masc 13 pred 13 pred O
M2002 4 16 ' $L1 I O
M2002 4 17 un $L1 I O
M2002 4 18
M2002 4 19 de $L1 B de de Pre 15 dep 15 dep U
M2002 4 20
M2002 4 21 de $L1 B de de Pre 19 para_disfl 19 para_disfl 15 dep_inherited U
M2002 4 22
M2002 4 23 discipliné $L1 B discipliné discipliné Adj sg masc 21 dep 21 dep 19 dep_inherited O
M2002 4 24
M2002 4 25 je $L1 B je je Cl 1 sg 27 sub 27 sub O
M2002 4 26
M2002 4 27 vais $L1 B vais aller V indicative present 1 sg 0 root 0 root O
M2002 4 28
M2002 4 29 traiter $L1 B traiter traiter V infinitive 27 pred 27 pred O
M2002 4 30
M2002 4 31 euh $L1 B euh euh I 0 root 0 root O
M2002 4 32
M2002 4 33 mon $L1 B mon son D sg masc 35 dep 35 dep O
M2002 4 34
M2002 4 35 sujet $L1 B sujet sujet N sg masc 29 obj 29 obj O
M2002 4 36
M2002 4 37 l $L1 B l' le D sg masc 39 dep 39 dep O
M2002 4 38 ' $L1 I O
M2002 4 39 art $L1 B art art N sg masc 41 sub 41 sub O
M2002 4 40
M2002 4 41 est $L1 B est être V indicative present 3 sg 35 dep 35 dep O
M2002 4 42 - $L1 B -il il Cl 3 sg masc 41 dep 41 dep O
M2002 4 43 il $L1 I O
M2002 4 44
M2002 4 45 le $L1 B le le D sg masc 47 dep 47 dep O
M2002 4 46
M2002 4 47 reflet $L1 B reflet reflet N sg masc 41 pred 41 pred O
M2002 4 48
M2002 4 49 de $L1 B de de Pre 47 dep 47 dep O
M2002 4 50
M2002 4 51 la $L1 B la le D sg fem 53 dep 53 dep O
M2002 4 52
M2002 4 53 société $L1 B société société N sg fem 49 dep 49 dep O
M2002
M2002 5 1 et $L1 B et et J 0 root 0 root O
M2002 5 2
M2002 5 3 euh $L1 B euh euh I 0 root 0 root O
M2002 5 4
M2002 5 5 la $L1 B la le D sg fem 7 dep 7 dep O
M2002 5 6
M2002 5 7 réponse $L1 B réponse réponse N sg fem 0 root 0 root O
M2002 5 8
M2002 5 9 question $L1 B question question N sg fem 0 root 0 root O
M2002 5 10
M2002 5 11 réponse $L1 B réponse réponse N sg masc/fem 9 dep 9 dep O
M2002 5 12
M2002 5 13 vous $L1 B vous vous Cl 2 pl 15 sub 15 sub O
M2002 5 14
M2002 5 15 allez $L1 B allez aller V indicative present 2 pl 0 root 0 root O
M2002 5 16
M2002 5 17 le $L1 B le le Cl 3 sg masc 19 obj 19 obj O
M2002 5 18
M2002 5 19 voir $L1 B voir voir V infinitive 15 pred 15 pred O
M2002 5 20
M2002 5 21 tout $L1 B tout de suite tout de suite Adv 19 ad 19 ad O
M2002 5 22 I
M2002 5 23 de $L1 I O
M2002 5 24 I
M2002 5 25 suite $L1 I O
M2002 5 26
M2002 5 27 c $L1 B c' ce Cl 3 sg masc 29 sub 29 sub O
M2002 5 28 ' $L1 I O
M2002 5 29 est $L1 B est être V indicative present 3 sg 1 dep 1 dep O
M2002 5 30
M2002 5 31 oui $L1 B oui oui I 29 pred 29 pred O
M2002 5 32
M2002 5 33 l $L1 B l' le D sg masc 35 dep 35 dep O
M2002 5 34 ' $L1 I O
M2002 5 35 art $L1 B art art N sg masc 37 sub 37 sub O
M2002 5 36
M2002 5 37 est $L1 B est être V indicative present 3 sg 29 dep 29 dep O
M2002 5 38
M2002 5 39 le $L1 B le le D sg masc 41 dep 41 dep O
M2002 5 40
M2002 5 41 reflet $L1 B reflet reflet N sg masc 37 pred 37 pred O
M2002 5 42
M2002 5 43 de $L1 B de de Pre 41 dep 41 dep O
M2002 5 44
M2002 5 45 la $L1 B la le D sg fem 47 dep 47 dep O
M2002 5 46
M2002 5 47 société $L1 B société société N sg fem 43 dep 43 dep O
M2002 5 48
M2002 5 49 mais $L1 B mais mais J 37 junc 37 junc O
M2002 5 50
M2002 5 51 euh $L1 B euh euh I 0 root 0 root O
M2002 5 52
M2002 5 53 pas $L1 B pas pas Adv 37 ad 37 ad B
M2002 5 54
M2002 5 55 tout $L1 B tout tout Adj sg masc 59 dep 59 dep I
M2002 5 56
M2002 5 57 le $L1 B le le D sg masc 59 dep 59 dep I
M2002 5 58
M2002 5 59 temps $L1 B temps temps N sg masc 49 ad 37 ad 49 junc L
M2002 5 60
M2002 5 61 et $L1 B et et J 59 junc 59 junc B
M2002 5 62
M2002 5 63 pas $L1 B pas pas Adv 37 ad 37 ad I
M2002 5 64
M2002 5 65 euh $L1 B euh euh I 0 root 0 root I
M2002 5 66
M2002 5 67 & B & & X 61 junc 61 junc 59 para_coord 37 ad_inherited
M2002 5 68
M2002 5 69 et $L1 B et et J 67 junc 67 junc B
M2002 5 70
M2002 5 71 pas $L1 B pas pas Adv 37 ad 37 ad I
M2002 5 72
M2002 5 73 sous $L1 B sous sous Pre 69 junc 69 junc 67 para_coord 37 ad_inherited I
M2002 5 74
M2002 5 75 tous $L1 B tous tout Adj pl masc 79 dep 79 dep I
M2002 5 76
M2002 5 77 les $L1 B les le D pl masc 79 dep 79 dep I
M2002 5 78
M2002 5 79 aspects $L1 B aspects aspect N pl masc 73 dep 73 dep L
M2002
M2002 6 1 voyez $L1 B voyez voir V indicative present 2 pl 0 root 0 root O
M2002 6 2
M2002 6 3 c $L1 B c'est-à-dire c'est-à-dire J 0 root 0 root O
M2002 6 4 ' $L1 I O
M2002 6 5 est $L1 I O
M2002 6 6 - $L1 I O
M2002 6 7 à $L1 I O
M2002 6 8 - $L1 I O
M2002 6 9 dire $L1 I O
M2002 6 10
M2002 6 11 c $L1 B c' ce Cl 3 sg masc 13 sub 13 sub O
M2002 6 12 ' $L1 I O
M2002 6 13 est $L1 B est être V indicative present 3 sg 3 dep 3 dep O
M2002 6 14
M2002 6 15 une $L1 B une un D sg fem 17 dep 17 dep O
M2002 6 16
M2002 6 17 réponse $L1 B réponse réponse N sg fem 13 pred 13 pred O
M2002 6 18
M2002 6 19 un $L1 B un un D sg masc 21 dep 21 dep B
M2002 6 20
M2002 6 21 peu $L1 B peu peu N sg masc 23 dep 23 dep I
M2002 6 22
M2002 6 23 de $L1 B de de Pre 17 dep 17 dep I
M2002 6 24
M2002 6 25 & B & & N sg masc/fem 23 dep 23 dep
M2002 6 26
M2002 6 27 un $L1 B un un D sg masc 29 dep 29 dep B
M2002 6 28
M2002 6 29 peu $L1 B peu peu N sg masc 31 dep 31 dep I
M2002 6 30
M2002 6 31 trop $L1 B trop trop Adv 33 dep 33 dep I
M2002 6 32
M2002 6 33 nuancée $L1 B nuancée nuancé Adj sg fem 23 para_reform 23 para_reform 17 dep_inherited I
M2002 6 34
M2002 6 35 hein $L1 B hein hein I 0 root 0 root L
M2002
M2002 7 1 mais $L1 B mais mais J 0 root 0 root O
M2002 7 2
M2002 7 3 il $L1 B il il Cl 3 sg masc 7 sub 7 sub O
M2002 7 4
M2002 7 5 l $L1 B l' le Cl 3 sg masc/fem 7 pred 7 pred O
M2002 7 6 ' $L1 I O
M2002 7 7 est $L1 B est être V indicative present 3 sg 1 dep 1 dep O
M2002 7 8
M2002 7 9 pas $L1 B pas pas Adv 7 ad 7 ad O
M2002 7 10
M2002 7 11 tout $L1 B tout tout Adj sg masc 15 dep 15 dep O
M2002 7 12
M2002 7 13 le $L1 B le le D sg masc 15 dep 15 dep O
M2002 7 14
M2002 7 15 temps $L1 B temps temps N sg masc 7 ad 7 ad O
M2002
M2002 8 1 il $L1 B il il Cl 3 sg masc 5 sub 5 sub O
M2002 8 2
M2002 8 3 y $L1 B y y Cl 5 dep 5 dep O
M2002 8 4
M2002 8 5 a $L1 B a avoir V indicative present 3 sg 0 root 0 root O
M2002 8 6
M2002 8 7 XXX $L1 B XXX XXX X 5 obj 5 obj O
M2002
M2002 9 1 vous $L1 B vous vous Cl 2 pl 3 sub 3 sub O
M2002 9 2
M2002 9 3 verrez $L1 B verrez voir V indicative future 2 pl 0 root 0 root O
M2002 9 4
M2002 9 5 qu $L1 B qu' que CS 3 obj 3 obj O
M2002 9 6 ' $L1 I O
M2002 9 7 il $L1 B il il Cl 3 sg masc 11 sub 11 sub O
M2002 9 8
M2002 9 9 y $L1 B y y Cl 11 dep 11 dep O
M2002 9 10
M2002 9 11 a $L1 B a avoir V indicative present 3 sg 5 dep 5 dep O
M2002 9 12
M2002 9 13 des $L1 B des un D pl fem 15 dep 15 dep O
M2002 9 14
M2002 9 15 formes $L1 B formes forme N pl fem 11 obj 11 obj O
M2002 9 16
M2002 9 17 d $L1 B d' de Pre 15 dep 15 dep O
M2002 9 18 ' $L1 I O
M2002 9 19 art $L1 B art art N sg masc 17 dep 17 dep O
M2002 9 20
M2002 9 21 qui $L1 B qui qui Qu 25 sub 25 sub O
M2002 9 22
M2002 9 23 ne $L1 B ne ne Cl 25 ad 25 ad O
M2002 9 24
M2002 9 25 sont $L1 B sont être V indicative present 3 pl 15 dep 15 dep O
M2002 9 26
M2002 9 27 pas $L1 B pas pas Adv 25 ad 25 ad O
M2002 9 28
M2002 9 29 le $L1 B le le D sg masc 31 dep 31 dep O
M2002 9 30
M2002 9 31 reflet $L1 B reflet reflet N sg masc 25 pred 25 pred O
M2002 9 32
M2002 9 33 de $L1 B de de Pre 31 dep 31 dep O
M2002 9 34
M2002 9 35 la $L1 B la le D sg fem 37 dep 37 dep O
M2002 9 36
M2002 9 37 société $L1 B société société N sg fem 33 dep 33 dep O
M2002
M2002 10 1 et $L1 B et et J 0 root 0 root O
M2002 10 2
M2002 10 3 en $L1 B en en Pre 0 root 0 root O
M2002 10 4
M2002 10 5 tout $L1 B tout tout D sg masc 7 dep 7 dep O
M2002 10 6
M2002 10 7 cas $L1 B cas cas N sg masc 3 dep 3 dep O
M2002 10 8
M2002 10 9 même $L1 B même même Adv 11 dep 11 dep O
M2002 10 10
M2002 10 11 quand $L1 B quand quand CS 33 ad 33 ad O
M2002 10 12
M2002 10 13 l $L1 B l' le D sg masc 15 dep 15 dep O
M2002 10 14 ' $L1 I O
M2002 10 15 art $L1 B art art N sg masc 17 sub 17 sub O
M2002 10 16
M2002 10 17 est $L1 B est être V indicative present 3 sg 11 dep 11 dep O
M2002 10 18
M2002 10 19 le $L1 B le le D sg masc 21 dep 21 dep O
M2002 10 20
M2002 10 21 reflet $L1 B reflet reflet N sg masc 17 pred 17 pred O
M2002 10 22
M2002 10 23 de $L1 B de de Pre 21 dep 21 dep O
M2002 10 24
M2002 10 25 la $L1 B la le D sg fem 27 dep 27 dep O
M2002 10 26
M2002 10 27 société $L1 B société société N sg fem 23 dep 23 dep O
M2002 10 28
M2002 10 29 il $L1 B il il Cl 3 sg masc 33 sub 33 sub O
M2002 10 30
M2002 10 31 n $L1 B n' ne Cl 33 ad 33 ad O
M2002 10 32 ' $L1 I O
M2002 10 33 est $L1 B est être V indicative present 3 sg 1 dep 1 dep O
M2002 10 34
M2002 10 35 pas $L1 B pas pas N sg masc 33 pred 33 pred O
M2002 10 36
M2002 10 37 euh $L1 B euh euh I 0 root 0 root O
M2002 10 38
M2002 10 39 sous $L1 B sous sous Pre 33 pred 33 pred B
M2002 10 40
M2002 10 41 toutes $L1 B toutes tout Adj pl fem 45 dep 45 dep I
M2002 10 42
M2002 10 43 ses $L1 B ses son D pl fem 45 dep 45 dep I
M2002 10 44
M2002 10 45 dimensions $L1 B dimensions dimension N pl fem 39 dep 39 dep L
M2002 10 46
M2002 10 47 ni $L1 B ni ni J 39 junc 39 junc B
M2002 10 48
M2002 10 49 sous $L1 B sous sous Pre 47 junc 47 junc 39 para_coord 33 pred_inherited I
M2002 10 50
M2002 10 51 tous $L1 B tous tout Adj pl masc 55 dep 55 dep I
M2002 10 52
M2002 10 53 ses $L1 B ses son D pl masc 55 dep 55 dep I
M2002 10 54
M2002 10 55 aspects $L1 B aspects aspect N pl masc 49 dep 49 dep L
M2002
M2002 11 1 alors $L1 B alors alors Adv 0 root 0 root O
M2002 11 2
M2002 11 3 je $L1 B je je Cl 1 sg 5 sub 5 sub O
M2002 11 4
M2002 11 5 commencerais $L1 B commencerais commencer V indicative conditional 1 sg 0 root 0 root O
M2002 11 6
M2002 11 7 par $L1 B par par Pre 5 obl 5 obl O
M2002 11 8
M2002 11 9 euh $L1 B euh euh I 0 root 0 root O
M2002 11 10
M2002 11 11 une $L1 B une un D sg fem 13 dep 13 dep O
M2002 11 12
M2002 11 13 remarque $L1 B remarque remarque N sg fem 7 dep 7 dep O
M2002 11 14
M2002 11 15 préalable $L1 B préalable préalable Adj sg fem 13 dep 13 dep O
M2002 11 16
M2002 11 17 qui $L1 B qui qui Qu 19 sub 19 sub B
M2002 11 18
M2002 11 19 est $L1 B est être V indicative present 3 sg 13 dep 13 dep I
M2002 11 20
M2002 11 21 très $L1 B très très Adv 23 dep 23 dep I
M2002 11 22
M2002 11 23 importante $L1 B importante important Adj sg fem 19 pred 19 pred L
M2002 11 24
M2002 11 25 mais $L1 B mais mais J 19 junc 19 junc B
M2002 11 26
M2002 11 27 que $L1 B que que Qu 43 obj 43 obj I
M2002 11 28
M2002 11 29 les $L1 B les le D pl masc 31 dep 31 dep I
M2002 11 30
M2002 11 31 philosophes $L1 B philosophes philosophe N pl masc 33 sub 33 sub I
M2002 11 32
M2002 11 33 ont $L1 B ont avoir V indicative present 3 pl 25 junc 25 junc 19 para_coord 13 dep_inherited I
M2002 11 34
M2002 11 35 beaucoup $L1 B beaucoup beaucoup Adv 33 obj 33 obj I
M2002 11 36
M2002 11 37 de $L1 B de de Pre 35 dep 35 dep I
M2002 11 38
M2002 11 39 mal $L1 B mal mal N sg masc 37 dep 37 dep I
M2002 11 40
M2002 11 41 à $L1 B à à Pre 39 dep 39 dep I
M2002 11 42
M2002 11 43 faire $L1 B faire faire V infinitive 41 dep 41 dep L
M2002 11 44
M2002 11 45 euh $L1 B euh euh I 0 root 0 root O
M2002 11 46
M2002 11 47 c $L1 B c' ce Cl 3 sg masc 49 sub 49 sub O
M2002 11 48 ' $L1 I O
M2002 11 49 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 11 50
M2002 11 51 d $L1 B d' de Pre 49 pred 49 pred O
M2002 11 52 ' $L1 I O
M2002 11 53 admettre $L1 B admettre admettre V infinitive 51 dep 51 dep O
M2002 11 54
M2002 11 55 que $L1 B que que CS 53 obj 53 obj O
M2002 11 56
M2002 11 57 la $L1 B la le D sg fem 59 dep 59 dep O
M2002 11 58
M2002 11 59 notion $L1 B notion notion N sg fem 67 sub 67 sub O
M2002 11 60
M2002 11 61 d $L1 B d' de Pre 59 dep 59 dep O
M2002 11 62 ' $L1 I O
M2002 11 63 art $L1 B art art N sg masc 61 dep 61 dep O
M2002 11 64
M2002 11 65 euh $L1 B euh euh I 0 root 0 root O
M2002 11 66
M2002 11 67 est $L1 B est être V indicative present 3 sg 55 dep 55 dep O
M2002 11 68
M2002 11 69 une $L1 B une un D sg fem 71 dep 71 dep O
M2002 11 70
M2002 11 71 notion $L1 B notion notion N sg fem 67 pred 67 pred O
M2002 11 72
M2002 11 73 floue $L1 B floue flou Adj sg fem 71 dep 71 dep O
M2002
M2002 12 1 ça $L1 B ça ça Pro 3 sg masc 3 sub 3 sub O
M2002 12 2
M2002 12 3 veut $L1 B veut vouloir V indicative present 3 sg 0 root 0 root O
M2002 12 4
M2002 12 5 pas $L1 B pas pas Adv 3 ad 3 ad O
M2002 12 6
M2002 12 7 du $L1 B du tout du tout Adv 5 dep 5 dep O
M2002 12 8 I
M2002 12 9 tout $L1 I O
M2002 12 10
M2002 12 11 dire $L1 B dire dire V infinitive sg 3 pred 3 pred O
M2002 12 12
M2002 12 13 que $L1 B que que CS 11 obj 11 obj B
M2002 12 14
M2002 12 15 elle $L1 B elle elle Cl 3 sg fem 17 sub 17 sub I
M2002 12 16
M2002 12 17 est $L1 B est être V indicative present 3 sg 13 dep 13 dep I
M2002 12 18
M2002 12 19 informe $L1 B informe informe Adj sg masc/fem 17 pred 17 pred I
M2002 12 20
M2002 12 21 hein $L1 B hein hein I 0 root 0 root L
M2002 12 22
M2002 12 23 ni $L1 B ni ni J 13 junc 13 junc B
M2002 12 24
M2002 12 25 que $L1 B que que CS 23 junc 23 junc 13 para_coord 11 obj_inherited I
M2002 12 26
M2002 12 27 on $L1 B on on Cl 3 sg masc 29 sub 29 sub I
M2002 12 28
M2002 12 29 peut $L1 B peut pouvoir V indicative present 3 sg 25 dep 25 dep I
M2002 12 30
M2002 12 31 dire $L1 B dire dire V infinitive 29 pred 29 pred I
M2002 12 32
M2002 12 33 n $L1 B n'importe quoi n'importe quoi Pro 3 sg/pl masc/fem 31 obj 31 obj I
M2002 12 34 ' $L1 I I
M2002 12 35 importe $L1 I I
M2002 12 36 I
M2002 12 37 quoi $L1 I L
M2002
M2002 13 1 mais $L1 B mais mais J 0 root 0 root O
M2002 13 2
M2002 13 3 c $L1 B c' ce Cl 3 sg masc 5 sub 5 sub B
M2002 13 4 ' $L1 I I
M2002 13 5 est $L1 B est être V indicative present 3 sg 1 dep 1 dep I
M2002 13 6
M2002 13 7 un $L1 B un un D sg masc 9 dep 9 dep I
M2002 13 8
M2002 13 9 concept $L1 B concept concept N sg masc 5 pred 5 pred L
M2002 13 10
M2002 13 11 c $L1 B c' ce Cl 3 sg masc 13 sub 13 sub B
M2002 13 12 ' $L1 I I
M2002 13 13 est $L1 B est être V indicative present 3 sg 5 para_reform 5 para_reform 1 dep_inherited I
M2002 13 14
M2002 13 15 ce $L1 B ce ce Pro 3 sg masc 13 pred 13 pred I
M2002 13 16
M2002 13 17 qu $L1 B qu' que Qu 21 obj 21 obj I
M2002 13 18 ' $L1 I I
M2002 13 19 on $L1 B on on Cl 3 sg masc 21 sub 21 sub I
M2002 13 20
M2002 13 21 appelle $L1 B appelle appeler V indicative present 3 sg 15 dep 15 dep I
M2002 13 22
M2002 13 23 un $L1 B un un D sg masc 25 dep 25 dep I
M2002 13 24
M2002 13 25 concept $L1 B concept concept N sg masc 21 pred 21 pred L
M2002 13 26
M2002 13 27 flou $L1 B flou flou Adj sg masc 25 dep 25 dep 9 dep_inherited O
M2002
M2002 14 1 c $L1 B c' ce Cl 3 sg masc 3 sub 3 sub O
M2002 14 2 ' $L1 I O
M2002 14 3 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 14 4
M2002 14 5 un $L1 B un un D sg masc 7 dep 7 dep O
M2002 14 6
M2002 14 7 philosophe $L1 B philosophe philosophe N sg masc 3 pred 3 pred O
M2002 14 8
M2002 14 9 euh $L1 B euh euh I 0 root 0 root O
M2002 14 10
M2002 14 11 américain $L1 B américain américain Adj sg masc 7 dep 7 dep O
M2002 14 12
M2002 14 13 euh $L1 B euh euh I 0 root 0 root O
M2002 14 14
M2002 14 15 disciple $L1 B disciple disciple N sg masc 7 dep 7 dep O
M2002 14 16
M2002 14 17 du $L1 B de+le de+le Pre+D sg masc 15 dep 15 dep O
M2002 14 18
M2002 14 19 philosophe $L1 B philosophe philosophe N sg masc 17 dep 17 dep O
M2002 14 20
M2002 14 21 anglo $L1 B anglo anglo Adj sg masc 19 dep 19 dep O
M2002 14 22
M2002 14 23 aus~ $L1 B aus~ aus~ Adj sg masc/fem 21 dep 21 dep U
M2002 14 24
M2002 14 25 autrichien $L1 B autrichien autrichien Adj sg masc 23 para_disfl 23 para_disfl 21 dep_inherited U
M2002 14 26
M2002 14 27 euh $L1 B euh euh I 0 root 0 root O
M2002 14 28
M2002 14 29 Wittgenstein $L1 B Wittgenstein Wittgenstein N sg masc 19 dep 19 dep O
M2002 14 30
M2002 14 31 qui $L1 B qui qui Qu 33 sub 33 sub O
M2002 14 32
M2002 14 33 a $L1 B a avoir V indicative present 3 sg 7 dep 7 dep O
M2002 14 34
M2002 14 35 euh $L1 B euh euh I 0 root 0 root O
M2002 14 36
M2002 14 37 avancé $L1 B avancé avancer V past_participle sg masc 33 pred 33 pred O
M2002 14 38
M2002 14 39 cette $L1 B cette ce D sg fem 41 dep 41 dep O
M2002 14 40
M2002 14 41 idée $L1 B idée idée N sg fem 37 obj 37 obj O
M2002 14 42
M2002 14 43 de $L1 B de de Pre 41 dep 41 dep O
M2002 14 44
M2002 14 45 l $L1 B l' le D sg masc 47 dep 47 dep B
M2002 14 46 ' $L1 I I
M2002 14 47 art $L1 B art art N sg masc 43 dep 43 dep I
M2002 14 48
M2002 14 49 comme $L1 B comme comme Pre 47 dep 47 dep I
M2002 14 50
M2002 14 51 concept $L1 B concept concept N sg masc 49 dep 49 dep I
M2002 14 52
M2002 14 53 flou $L1 B flou flou Adj sg masc 51 dep 51 dep L
M2002 14 54
M2002 14 55 c $L1 B c'est-à-dire c'est-à-dire J 47 junc 47 junc B
M2002 14 56 ' $L1 I I
M2002 14 57 est $L1 I I
M2002 14 58 - $L1 I I
M2002 14 59 à $L1 I I
M2002 14 60 - $L1 I I
M2002 14 61 dire $L1 I I
M2002 14 62
M2002 14 63 un $L1 B un un D sg masc 65 dep 65 dep B
M2002 14 64
M2002 14 65 art $L1 B art art N sg masc 55 junc 55 junc 47 para_reform 43 dep_inherited I
M2002 14 66
M2002 14 67 dont $L1 B dont dont Qu 71 dep 71 dep I
M2002 14 68
M2002 14 69 les $L1 B les le D pl masc/fem 71 dep 71 dep I
M2002 14 70
M2002 14 71 & B & & X 65 dep 65 dep
M2002 14 72
M2002 14 73 un $L1 B un un D sg masc 75 dep 75 dep
M2002 14 74
M2002 14 75 a~ $L1 B a~ a~ N sg masc 65 para_reform 65 para_reform 43 dep_inherited B
M2002
M2002 15 1 l $L1 B l' le D sg masc 3 dep 3 dep I
M2002 15 2 ' $L1 I I
M2002 15 3 art $L1 B art art N sg masc 5 sub 5 sub I
M2002 15 4
M2002 15 5 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 15 6
M2002 15 7 un $L1 B un un D sg masc 9 dep 9 dep O
M2002 15 8
M2002 15 9 concept $L1 B concept concept N sg masc 5 pred 5 pred O
M2002 15 10
M2002 15 11 dont $L1 B dont dont Qu 15 dep 15 dep O
M2002 15 12
M2002 15 13 les $L1 B les le D pl masc 15 dep 15 dep O
M2002 15 14
M2002 15 15 contours $L1 B contours contour N pl masc 17 sub 17 sub O
M2002 15 16
M2002 15 17 sont $L1 B sont être V indicative present 3 pl 9 dep 9 dep O
M2002 15 18
M2002 15 19 changeants $L1 B changeants changeant Adj pl masc 17 pred 17 pred O
M2002
M2002 16 1 c $L1 B c' ce Cl 3 sg masc 3 sub 3 sub O
M2002 16 2 ' $L1 I O
M2002 16 3 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 16 4
M2002 16 5 changeant $L1 B changeant changeant Adj sg masc 3 pred 3 pred O
M2002 16 6
M2002 16 7 selon $L1 B selon selon Pre 3 ad 3 ad O
M2002 16 8
M2002 16 9 les $L1 B les le D pl fem 11 dep 11 dep O
M2002 16 10
M2002 16 11 sociétés $L1 B sociétés société N pl fem 7 dep 7 dep O
M2002
M2002 17 1 euh $L1 B euh euh I 0 root 0 root O
M2002 17 2
M2002 17 3 c $L1 B c' ce Cl 3 sg masc 5 sub 5 sub O
M2002 17 4 ' $L1 I O
M2002 17 5 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 17 6
M2002 17 7 changeant $L1 B changeant changeant Adj sg masc 5 pred 5 pred O
M2002 17 8
M2002 17 9 selon $L1 B selon selon Pre 5 ad 5 ad B
M2002 17 10
M2002 17 11 euh $L1 B euh euh I 0 root 0 root I
M2002 17 12
M2002 17 13 euh $L1 B euh euh I 0 root 0 root L
M2002 17 14
M2002 17 15 selon $L1 B selon selon Pre 9 para_disfl 9 para_disfl 5 ad_inherited U
M2002 17 16
M2002 17 17 les $L1 B les le D pl fem 19 dep 19 dep O
M2002 17 18
M2002 17 19 formes $L1 B formes forme N pl fem 15 dep 15 dep 9 dep_inherited O
M2002 17 20
M2002 17 21 d $L1 B d' de Pre 19 dep 19 dep O
M2002 17 22 ' $L1 I O
M2002 17 23 art $L1 B art art N sg masc 21 dep 21 dep O
M2002 17 24
M2002 17 25 euh $L1 B euh euh I 0 root 0 root O
M2002 17 26
M2002 17 27 considérées $L1 B considérées considérer V past_participle pl fem 19 dep 19 dep O
M2002
M2002 18 1 et $L1 B et et J 0 root 0 root O
M2002 18 2
M2002 18 3 euh $L1 B euh euh I 0 root 0 root O
M2002 18 4
M2002 18 5 il $L1 B il il Cl 3 sg masc 7 sub 7 sub B
M2002 18 6
M2002 18 7 faut $L1 B faut falloir V indicative present 3 sg 1 dep 1 dep L
M2002 18 8
M2002 18 9 il $L1 B il il Cl 3 sg masc 11 sub 11 sub B
M2002 18 10
M2002 18 11 faut $L1 B faut falloir V indicative present 3 sg 7 para_disfl 7 para_disfl 1 dep_inherited L
M2002 18 12
M2002 18 13 apprendre $L1 B apprendre apprendre V infinitive 11 obj 11 obj 7 obj_inherited O
M2002 18 14
M2002 18 15 à $L1 B à à Pre 13 obl 13 obl U
M2002 18 16
M2002 18 17 à $L1 B à à Pre 15 para_disfl 15 para_disfl 13 obl_inherited U
M2002 18 18
M2002 18 19 s~ $L1 B s~ s~ Cl 3 sg/pl masc/fem 25 para_disfl 25 para_disfl 29 dep_inherited U
M2002 18 20
M2002 18 21 je $L1 B je je Cl 1 sg 23 sub 23 sub B
M2002 18 22
M2002 18 23 dirais $L1 B dirais dire V indicative conditional 1 sg 0 root 0 root I
M2002 18 24
M2002 18 25 se $L1 B se se Cl 3 pl masc/fem 27 para_disfl 27 para_disfl 29 dep_inherited L
M2002 18 26
M2002 18 27 se $L1 B se se Cl 3 pl masc/fem 29 dep 29 dep U
M2002 18 28
M2002 18 29 faire $L1 B faire faire V infinitive pl 17 dep 17 dep 15 dep_inherited O
M2002 18 30
M2002 18 31 à $L1 B à à Pre 29 obl 29 obl O
M2002 18 32
M2002 18 33 ces $L1 B ces ce D pl fem 35 dep 35 dep O
M2002 18 34
M2002 18 35 variations $L1 B variations variation N pl fem 31 dep 31 dep O
M2002
M2002 19 1 vous $L1 B vous vous Cl 2 pl 3 sub 3 sub O
M2002 19 2
M2002 19 3 voyez $L1 B voyez voir V indicative present 2 pl 0 root 0 root O
M2002 19 4
M2002 19 5 il $L1 B il il Cl 3 sg masc 7 sub 7 sub O
M2002 19 6
M2002 19 7 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 19 8
M2002 19 9 évident $L1 B évident évident Adj sg masc/fem 7 pred 7 pred O
M2002 19 10
M2002 19 11 qu $L1 B qu' que CS 9 dep 9 dep O
M2002 19 12 ' $L1 I O
M2002 19 13 il $L1 B il il Cl 3 sg masc 17 sub 17 sub O
M2002 19 14
M2002 19 15 y $L1 B y y Cl 17 dep 17 dep O
M2002 19 16
M2002 19 17 a $L1 B a avoir V indicative present 3 sg 11 dep 11 dep O
M2002 19 18
M2002 19 19 par $L1 B par par Pre 0 root 0 root O
M2002 19 20
M2002 19 21 exemple $L1 B exemple exemple N sg masc 19 dep 19 dep O
M2002 19 22
M2002 19 23 des $L1 B des un D pl fem 25 para_disfl 25 para_disfl 27 dep_inherited U
M2002 19 24
M2002 19 25 des $L1 B des un D pl fem 27 dep 27 dep U
M2002 19 26
M2002 19 27 formes $L1 B formes forme N pl fem 17 obj 17 obj O
M2002 19 28
M2002 19 29 d $L1 B d' de Pre 27 dep 27 dep O
M2002 19 30 ' $L1 I O
M2002 19 31 art $L1 B art art N sg masc 29 dep 29 dep O
M2002 19 32
M2002 19 33 qui $L1 B qui qui Qu 35 sub 35 sub O
M2002 19 34
M2002 19 35 sont $L1 B sont être V indicative present 3 pl 27 dep 27 dep O
M2002 19 36
M2002 19 37 très $L1 B très très Adv 39 ad 39 ad O
M2002 19 38
M2002 19 39 liées $L1 B liées lier V past_participle pl fem 35 pred 35 pred O
M2002 19 40
M2002 19 41 à $L1 B à à Pre 39 obl 39 obl O
M2002 19 42
M2002 19 43 la $L1 B la le D sg fem 45 dep 45 dep O
M2002 19 44
M2002 19 45 connaissance $L1 B connaissance connaissance N sg fem 41 dep 41 dep O
M2002 19 46
M2002 19 47 euh $L1 B euh euh I 0 root 0 root O
M2002 19 48
M2002 19 49 par $L1 B par par Pre 0 root 0 root O
M2002 19 50
M2002 19 51 ex~ $L1 B ex~ ex~ N sg masc/fem 49 dep 49 dep O
M2002 19 52
M2002 19 53 dans $L1 B dans dans Pre 39 ad 39 ad O
M2002 19 54
M2002 19 55 l $L1 B l' le D sg masc 57 dep 57 dep O
M2002 19 56 ' $L1 I O
M2002 19 57 art $L1 B art art N sg masc 53 dep 53 dep O
M2002 19 58
M2002 19 59 de $L1 B de de Pre 57 dep 57 dep O
M2002 19 60
M2002 19 61 la $L1 B la le D sg fem 63 dep 63 dep O
M2002 19 62
M2002 19 63 renaissance $L1 B renaissance renaissance N sg fem 59 dep 59 dep O
M2002
M2002 20 1 l $L1 B l' le D sg masc 3 dep 3 dep O
M2002 20 2 ' $L1 I O
M2002 20 3 art $L1 B art art N sg masc 11 sub 11 sub O
M2002 20 4
M2002 20 5 de $L1 B de de Pre 3 dep 3 dep O
M2002 20 6
M2002 20 7 la $L1 B la le D sg fem 9 dep 9 dep O
M2002 20 8
M2002 20 9 renaissance $L1 B renaissance renaissance N sg fem 5 dep 5 dep O
M2002 20 10
M2002 20 11 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 20 12
M2002 20 13 vu $L1 B vu voir V past_participle sg masc 11 pred 11 pred O
M2002 20 14
M2002 20 15 comme $L1 B comme comme Pre 13 ad 13 ad O
M2002 20 16
M2002 20 17 un $L1 B un un D sg masc 19 para_disfl 19 para_disfl 21 dep_inherited U
M2002 20 18
M2002 20 19 un $L1 B un un D sg masc 21 dep 21 dep U
M2002 20 20
M2002 20 21 art $L1 B art art N sg masc 15 dep 15 dep O
M2002 20 22
M2002 20 23 descriptif $L1 B descriptif descriptif Adj sg masc 21 dep 21 dep U
M2002 20 24
M2002 20 25 et $L1 B et et J 23 junc 23 junc B
M2002 20 26
M2002 20 27 qui $L1 B qui qui Qu 29 sub 29 sub I
M2002 20 28
M2002 20 29 doit $L1 B doit devoir V indicative present 3 sg 25 junc 25 junc 23 para_coord 21 dep_inherited I
M2002 20 30
M2002 20 31 nous $L1 B nous nous Cl 1 pl 33 obl 33 obl I
M2002 20 32
M2002 20 33 représenter $L1 B représenter représenter V infinitive 29 pred 29 pred I
M2002 20 34
M2002 20 35 les $L1 B les le D pl fem 37 dep 37 dep I
M2002 20 36
M2002 20 37 choses $L1 B choses chose N pl fem 33 obj 33 obj I
M2002 20 38
M2002 20 39 telles $L1 B telles tel Adv 33 ad 33 ad I
M2002 20 40
M2002 20 41 qu $L1 B qu' que CS 39 dep 39 dep I
M2002 20 42 ' $L1 I I
M2002 20 43 elles $L1 B elles elle Cl 3 pl fem 45 sub 45 sub I
M2002 20 44
M2002 20 45 sont $L1 B sont être V indicative present 3 pl 41 dep 41 dep I
M2002 20 46
M2002 20 47 euh $L1 B euh euh I 0 root 0 root I
M2002 20 48
M2002 20 49 quand $L1 B quand quand CS 45 ad 45 ad I
M2002 20 50
M2002 20 51 elles $L1 B elles elle Cl 3 pl fem 53 sub 53 sub I
M2002 20 52
M2002 20 53 sont $L1 B sont être V indicative present 3 pl 49 dep 49 dep I
M2002 20 54
M2002 20 55 correctement $L1 B correctement correctement Adv 57 ad 57 ad I
M2002 20 56
M2002 20 57 vues $L1 B vues voir V past_participle pl fem 53 pred 53 pred L
M2002
M2002 21 1 et $L1 B et puis et puis J 0 root 0 root O
M2002 21 2 I
M2002 21 3 puis $L1 I O
M2002 21 4
M2002 21 5 il $L1 B il il Cl 3 sg masc 9 sub 9 sub O
M2002 21 6
M2002 21 7 y $L1 B y y Cl 9 dep 9 dep O
M2002 21 8
M2002 21 9 a $L1 B a avoir V indicative present 3 sg 1 dep 1 dep O
M2002 21 10
M2002 21 11 des $L1 B des un D pl fem 13 dep 13 dep O
M2002 21 12
M2002 21 13 formes $L1 B formes forme N pl fem 9 obj 9 obj O
M2002 21 14
M2002 21 15 d $L1 B d' de Pre 13 dep 13 dep O
M2002 21 16 ' $L1 I O
M2002 21 17 art $L1 B art art N sg masc 15 dep 15 dep O
M2002 21 18
M2002 21 19 qui $L1 B qui qui Qu 21 sub 21 sub B
M2002 21 20
M2002 21 21 sont $L1 B sont être V indicative present 3 pl 13 dep 13 dep I
M2002 21 22
M2002 21 23 beaucoup $L1 B beaucoup beaucoup Adv 25 dep 25 dep I
M2002 21 24
M2002 21 25 plus $L1 B plus plus Adv 27 dep 27 dep I
M2002 21 26
M2002 21 27 hédonistes $L1 B hédonistes hédoniste Adj pl masc/fem 21 pred 21 pred L
M2002 21 28
M2002 21 29 et $L1 B et et J 21 junc 21 junc B
M2002 21 30
M2002 21 31 qui $L1 B qui qui Qu 35 sub 35 sub I
M2002 21 32
M2002 21 33 se $L1 B se se Cl 3 pl masc/fem 35 dep 35 dep I
M2002 21 34
M2002 21 35 préoccupent $L1 B préoccupent préoccuper V indicative present 3 pl 29 junc 29 junc 21 para_coord 13 dep_inherited I
M2002 21 36
M2002 21 37 très $L1 B très très Adv 39 dep 39 dep I
M2002 21 38
M2002 21 39 peu $L1 B peu peu Adv 35 ad 35 ad I
M2002 21 40
M2002 21 41 euh $L1 B euh euh I 0 root 0 root I
M2002 21 42
M2002 21 43 de $L1 B de de Pre 35 obl 35 obl B
M2002 21 44
M2002 21 45 euh $L1 B euh euh I 0 root 0 root L
M2002 21 46
M2002 21 47 de $L1 B de de Pre 43 para_disfl 43 para_disfl 35 obl_inherited U
M2002 21 48
M2002 21 49 la $L1 B la le D sg fem 51 dep 51 dep I
M2002 21 50
M2002 21 51 connaissance $L1 B connaissance connaissance N sg fem 47 dep 47 dep 43 dep_inherited L
M2002
M2002 22 1 alors $L1 B alors alors Adv 0 root 0 root O
M2002 22 2
M2002 22 3 euh $L1 B euh euh I 0 root 0 root O
M2002 22 4
M2002 22 5 l $L1 B l' le D sg masc 7 dep 7 dep O
M2002 22 6 ' $L1 I O
M2002 22 7 art $L1 B art art N sg masc 9 sub 9 sub O
M2002 22 8
M2002 22 9 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 22 10
M2002 22 11 un $L1 B un un D sg masc 13 dep 13 dep O
M2002 22 12
M2002 22 13 concept $L1 B concept concept N sg masc 9 pred 9 pred O
M2002 22 14
M2002 22 15 flou $L1 B flou flou Adj sg masc 13 dep 13 dep O
M2002
M2002 23 1 et $L1 B et et J 0 root 0 root O
M2002 23 2
M2002 23 3 euh $L1 B euh euh I 0 root 0 root O
M2002 23 4
M2002 23 5 il $L1 B il il Cl 3 sg masc 7 sub 7 sub O
M2002 23 6
M2002 23 7 faut $L1 B faut falloir V indicative present 3 sg 1 dep 1 dep O
M2002 23 8
M2002 23 9 faire $L1 B faire faire V infinitive 7 obj 7 obj O
M2002 23 10
M2002 23 11 un $L1 B un un D sg masc 15 dep 15 dep O
M2002 23 12
M2002 23 13 certain $L1 B certain certain Adj sg masc 15 dep 15 dep O
M2002 23 14
M2002 23 15 nombre $L1 B nombre nombre N sg masc 9 obj 9 obj O
M2002 23 16
M2002 23 17 de $L1 B de de Pre 15 dep 15 dep O
M2002 23 18
M2002 23 19 distinctions $L1 B distinctions distinction N pl fem 17 dep 17 dep O
M2002
M2002 24 1 euh $L1 B euh euh I 0 root 0 root O
M2002 24 2
M2002 24 3 ce $L1 B ce ce Cl 3 sg masc 5 sub 5 sub O
M2002 24 4
M2002 24 5 sera $L1 B sera être V indicative future 3 sg 0 root 0 root O
M2002 24 6
M2002 24 7 juste $L1 B juste juste Adv 5 ad 5 ad O
M2002 24 8
M2002 24 9 des $L1 B des un D pl fem 11 dep 11 dep O
M2002 24 10
M2002 24 11 distinctions $L1 B distinctions distinction N pl fem 5 pred 5 pred O
M2002 24 12
M2002 24 13 préliminaires $L1 B préliminaires préliminaire Adj pl fem 11 dep 11 dep O
M2002
M2002 25 1 d $L1 B d'abord d'abord Adv 0 root 0 root O
M2002 25 2 ' $L1 I O
M2002 25 3 abord $L1 I O
M2002 25 4
M2002 25 5 il $L1 B il il Cl 3 sg masc 9 sub 9 sub O
M2002 25 6
M2002 25 7 y $L1 B y y Cl 9 dep 9 dep O
M2002 25 8
M2002 25 9 a $L1 B a avoir V indicative present 3 sg 0 root 0 root O
M2002 25 10
M2002 25 11 une $L1 B une un D sg fem 15 dep 15 dep O
M2002 25 12
M2002 25 13 grande $L1 B grande grand Adj sg fem 15 dep 15 dep O
M2002 25 14
M2002 25 15 distinction $L1 B distinction distinction N sg fem 9 obj 9 obj O
M2002 25 16
M2002 25 17 euh $L1 B euh euh I 0 root 0 root O
M2002 25 18
M2002 25 19 que $L1 B que que Qu 25 obj 25 obj O
M2002 25 20
M2002 25 21 l $L1 B l'on l'on Cl 3 sg masc/fem 25 sub 25 sub O
M2002 25 22 ' $L1 I O
M2002 25 23 on $L1 I O
M2002 25 24
M2002 25 25 oublie $L1 B oublie oublier V indicative present 3 sg 15 dep 15 dep O
M2002 25 26
M2002 25 27 euh $L1 B euh euh I 0 root 0 root O
M2002 25 28
M2002 25 29 alors $L1 B alors que alors que CS 0 root 0 root O
M2002 25 30 I
M2002 25 31 que $L1 I O
M2002 25 32
M2002 25 33 tout $L1 B tout tout Adj sg masc 37 dep 37 dep B
M2002 25 34
M2002 25 35 le $L1 B le le D sg masc 37 dep 37 dep I
M2002 25 36
M2002 25 37 monde $L1 B monde monde N sg masc 41 sub 41 sub I
M2002 25 38
M2002 25 39 la $L1 B la le Cl 3 sg fem 41 obj 41 obj I
M2002 25 40
M2002 25 41 connaît $L1 B connaît connaître V indicative present 3 sg 29 dep 29 dep L
M2002 25 42
M2002 25 43 et $L1 B et et J 41 junc 41 junc B
M2002 25 44
M2002 25 45 tout $L1 B tout tout Adj sg masc 49 dep 49 dep I
M2002 25 46
M2002 25 47 le $L1 B le le D sg masc 49 dep 49 dep I
M2002 25 48
M2002 25 49 monde $L1 B monde monde N sg masc 53 sub 53 sub I
M2002 25 50
M2002 25 51 euh $L1 B euh euh I 0 root 0 root I
M2002 25 52
M2002 25 53 sait $L1 B sait savoir V indicative imperfect 3 sg 43 junc 43 junc 41 para_coord 29 dep_inherited I
M2002 25 54
M2002 25 55 de $L1 B de de Pre 63 obl 63 obl I
M2002 25 56
M2002 25 57 quoi $L1 B quoi quoi Qu 55 dep 55 dep I
M2002 25 58
M2002 25 59 il $L1 B il il Cl 3 sg masc 63 sub 63 sub I
M2002 25 60
M2002 25 61 s $L1 B s' se Cl 3 sg masc/fem 63 dep 63 dep I
M2002 25 62 ' $L1 I I
M2002 25 63 agit $L1 B agit agir V indicative present 3 sg 53 obj 53 obj L
M2002
M2002 26 1 première $L1 B première premier Adj sg fem 3 dep 3 dep O
M2002 26 2
M2002 26 3 distinction $L1 B distinction distinction N sg fem 0 root 0 root O
M2002 26 4
M2002 26 5 entre $L1 B entre entre Pre 3 dep 3 dep O
M2002 26 6
M2002 26 7 l $L1 B l' le D sg masc 9 dep 9 dep B
M2002 26 8 ' $L1 I I
M2002 26 9 art $L1 B art art N sg masc 5 dep 5 dep I
M2002 26 10
M2002 26 11 en $L1 B en tant en tant CS 9 dep 9 dep I
M2002 26 12 I
M2002 26 13 tant $L1 I I
M2002 26 14
M2002 26 15 qu $L1 B qu' que CS 11 dep 11 dep B
M2002 26 16 ' $L1 I I
M2002 26 17 on $L1 B on on Cl 3 sg masc 21 sub 21 sub I
M2002 26 18
M2002 26 19 le $L1 B le le Cl 3 sg masc 21 obj 21 obj I
M2002 26 20
M2002 26 21 fabrique $L1 B fabrique fabriquer V indicative present 3 sg 15 dep 15 dep L
M2002 26 22
M2002 26 23 qu $L1 B qu' que CS 15 para_hyper 15 para_hyper 11 dep_inherited B
M2002 26 24 ' $L1 I I
M2002 26 25 on $L1 B on on Cl 3 sg masc 29 sub 29 sub I
M2002 26 26
M2002 26 27 le $L1 B le le Cl 3 sg masc 29 obj 29 obj I
M2002 26 28
M2002 26 29 produit $L1 B produit produire V indicative present 3 sg 23 dep 23 dep L
M2002 26 30
M2002 26 31 qu $L1 B qu' que CS 23 para_hyper 23 para_hyper 11 dep_inherited B
M2002 26 32 ' $L1 I I
M2002 26 33 on $L1 B on on Cl 3 sg masc 37 sub 37 sub I
M2002 26 34
M2002 26 35 le $L1 B le le Cl 3 sg masc 37 obj 37 obj I
M2002 26 36
M2002 26 37 pratique $L1 B pratique pratiquer V indicative present 3 sg 31 dep 31 dep L
M2002 26 38
M2002 26 39 et $L1 B et puis et puis J 9 junc 9 junc B
M2002 26 40 I
M2002 26 41 puis $L1 I I
M2002 26 42
M2002 26 43 l $L1 B l' le D sg masc 45 dep 45 dep I
M2002 26 44 ' $L1 I I
M2002 26 45 art $L1 B art art N sg masc 39 junc 39 junc 9 para_coord 5 dep_inherited I
M2002 26 46
M2002 26 47 en $L1 B en tant en tant CS 45 dep 45 dep I
M2002 26 48 I
M2002 26 49 tant $L1 I I
M2002 26 50
M2002 26 51 qu $L1 B qu' que CS 47 dep 47 dep B
M2002 26 52 ' $L1 I I
M2002 26 53 on $L1 B on on Cl 3 sg masc 59 sub 59 sub I
M2002 26 54
M2002 26 55 euh $L1 B euh euh I 0 root 0 root I
M2002 26 56
M2002 26 57 le $L1 B le le Cl 3 sg masc 59 obj 59 obj I
M2002 26 58
M2002 26 59 reçoit $L1 B reçoit recevoir V indicative present 3 sg 51 dep 51 dep L
M2002 26 60
M2002 26 61 qu $L1 B qu' que CS 51 para_hyper 51 para_hyper 47 dep_inherited B
M2002 26 62 ' $L1 I I
M2002 26 63 on $L1 B on on Cl 3 sg masc 67 sub 67 sub I
M2002 26 64
M2002 26 65 l $L1 B l' le Cl 3 sg masc/fem 67 obj 67 obj I
M2002 26 66 ' $L1 I I
M2002 26 67 expérimente $L1 B expérimente expérimenter V indicative present 3 sg 61 dep 61 dep L
M2002 26 68
M2002 26 69 et $L1 B et et J 61 junc 61 junc B
M2002 26 70
M2002 26 71 qu $L1 B qu' que CS 69 junc 69 junc 47 dep_inherited I
M2002 26 72 ' $L1 I I
M2002 26 73 on $L1 B on on Cl 3 sg masc 75 sub 75 sub L
M2002 26 74
M2002 26 75 & B & & V 71 dep 71 dep
M2002 26 76
M2002 26 77 et $L1 B et et J 69 para_disfl 69 para_disfl 61 junc_inherited B
M2002 26 78
M2002 26 79 qu $L1 B qu' que CS 77 junc 77 junc 61 para_hyper 47 dep_inherited 69 junc_inherited I
M2002 26 80 ' $L1 I I
M2002 26 81 on $L1 B on on Cl 3 sg masc 85 sub 85 sub L
M2002 26 82
M2002 26 83 l $L1 B l' le Cl 3 sg masc/fem 85 obj 85 obj I
M2002 26 84 ' $L1 I I
M2002 26 85 éprouve $L1 B éprouve éprouver V indicative present 3 sg 79 dep 79 dep 71 dep_inherited L
M2002
M2002 27 1 c $L1 B c' ce Cl 3 sg masc 3 sub 3 sub O
M2002 27 2 ' $L1 I O
M2002 27 3 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 27 4
M2002 27 5 une $L1 B une un D sg fem 7 dep 7 dep O
M2002 27 6
M2002 27 7 distinction $L1 B distinction distinction N sg fem 3 pred 3 pred O
M2002 27 8
M2002 27 9 euh $L1 B euh euh I 0 root 0 root O
M2002 27 10
M2002 27 11 qui $L1 B qui qui Qu 13 sub 13 sub O
M2002 27 12
M2002 27 13 date $L1 B date dater V indicative present 3 sg 7 dep 7 dep O
M2002 27 14
M2002 27 15 depuis $L1 B depuis depuis Pre 13 ad 13 ad B
M2002 27 16
M2002 27 17 la $L1 B la le D sg fem 23 dep 23 dep I
M2002 27 18
M2002 27 19 plus $L1 B plus plus Adv 21 dep 21 dep I
M2002 27 20
M2002 27 21 haute $L1 B haute haut Adj sg fem 23 dep 23 dep I
M2002 27 22
M2002 27 23 antiquité $L1 B antiquité antiquité N sg fem 15 dep 15 dep L
M2002 27 24
M2002 27 25 en $L1 B en tout cas en tout cas Adv 15 junc 15 junc B
M2002 27 26 I
M2002 27 27 tout $L1 I I
M2002 27 28 I
M2002 27 29 cas $L1 I I
M2002 27 30
M2002 27 31 depuis $L1 B depuis depuis Pre 25 junc 25 junc 15 para_negot 13 ad_inherited I
M2002 27 32
M2002 27 33 Platon $L1 B Platon Platon N sg masc 31 dep 31 dep L
M2002
M2002 28 1 c $L1 B c' ce Cl 3 sg masc 3 sub 3 sub O
M2002 28 2 ' $L1 I O
M2002 28 3 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 28 4
M2002 28 5 qu $L1 B qu' que CS 3 pred 3 pred O
M2002 28 6 ' $L1 I O
M2002 28 7 il $L1 B il il Cl 3 sg masc 11 sub 11 sub O
M2002 28 8
M2002 28 9 y $L1 B y y Cl 11 dep 11 dep O
M2002 28 10
M2002 28 11 a $L1 B a avoir V indicative present 3 sg 5 dep 5 dep O
M2002 28 12
M2002 28 13 un $L1 B un un D sg masc 15 dep 15 dep O
M2002 28 14
M2002 28 15 art $L1 B art art N sg masc 11 obj 11 obj O
M2002 28 16
M2002 28 17 qui $L1 B qui qui Qu 19 sub 19 sub O
M2002 28 18
M2002 28 19 consiste $L1 B consiste consister V indicative present 3 sg 15 dep 15 dep O
M2002 28 20
M2002 28 21 à $L1 B à à Pre 19 obl 19 obl O
M2002 28 22
M2002 28 23 fabriquer $L1 B fabriquer fabriquer V infinitive 21 dep 21 dep O
M2002
M2002 29 1 poïésis $L1 B poïésis poïésis N sg fem 0 root 0 root O
M2002
M2002 30 1 faire $L1 B faire faire V infinitive 0 root 0 root O
M2002
M2002 31 1 euh $L1 B euh euh I 0 root 0 root O
M2002 31 2
M2002 31 3 de $L1 B de de Pre 7 obl 7 obl O
M2002 31 4
M2002 31 5 là $L1 B là là Adv 3 dep 3 dep O
M2002 31 6
M2002 31 7 vient $L1 B vient venir V indicative present 3 sg 0 root 0 root O
M2002 31 8
M2002 31 9 le $L1 B le le D sg masc 11 dep 11 dep O
M2002 31 10
M2002 31 11 terme $L1 B terme terme N sg masc 7 sub 7 sub O
M2002 31 12
M2002 31 13 de $L1 B de de Pre 11 dep 11 dep O
M2002 31 14
M2002 31 15 poésie $L1 B poésie poésie N sg fem 13 dep 13 dep O
M2002 31 16
M2002 31 17 hein $L1 B hein hein I 0 root 0 root O
M2002
M2002 32 1 au~ $L1 B au~ au~ Adv 3 para_disfl 3 para_disfl 5 dep_inherited U
M2002 32 2
M2002 32 3 aussi $L1 B aussi aussi Adv 5 dep 5 dep U
M2002 32 4
M2002 32 5 curieux $L1 B curieux curieux Adj sg masc 0 root 0 root O
M2002 32 6
M2002 32 7 que $L1 B que que CS 3 dep 3 dep 1 dep_inherited O
M2002 32 8
M2002 32 9 ça $L1 B ça ça Pro 3 sg masc 11 sub 11 sub O
M2002 32 10
M2002 32 11 puisse $L1 B puisse pouvoir V indicative present 3 sg 7 dep 7 dep O
M2002 32 12
M2002 32 13 paraître $L1 B paraître paraître V infinitive sg 11 pred 11 pred O
M2002
M2002 33 1 et $L1 B et puis et puis J 0 root 0 root O
M2002 33 2 I
M2002 33 3 puis $L1 I O
M2002 33 4
M2002 33 5 il $L1 B il il Cl 3 sg masc 9 sub 9 sub O
M2002 33 6
M2002 33 7 y $L1 B y y Cl 9 dep 9 dep O
M2002 33 8
M2002 33 9 a $L1 B a avoir V indicative present 3 sg 1 dep 1 dep O
M2002 33 10
M2002 33 11 un $L1 B un un D sg masc 15 dep 15 dep O
M2002 33 12
M2002 33 13 autre $L1 B autre autre Adj sg masc 15 dep 15 dep O
M2002 33 14
M2002 33 15 aspect $L1 B aspect aspect N sg masc 9 obj 9 obj O
M2002 33 16
M2002 33 17 qui $L1 B qui qui Qu 19 sub 19 sub O
M2002 33 18
M2002 33 19 consiste $L1 B consiste consister V indicative present 3 sg 15 dep 15 dep O
M2002 33 20
M2002 33 21 à $L1 B à à Pre 19 obl 19 obl O
M2002 33 22
M2002 33 23 exp~ $L1 B exp~ exp~ V infinitive 21 dep 21 dep U
M2002 33 24
M2002 33 25 éprouver $L1 B éprouver éprouver V infinitive 23 para_reform 23 para_reform 21 dep_inherited U
M2002 33 26
M2002 33 27 l $L1 B l' le D sg masc 29 dep 29 dep I
M2002 33 28 ' $L1 I I
M2002 33 29 art $L1 B art art N sg masc 25 obj 25 obj 23 obj_inherited L
M2002 33 30
M2002 33 31 le $L1 B le le Cl 3 sg masc 33 obj 33 obj B
M2002 33 32
M2002 33 33 ressentir $L1 B ressentir ressentir V infinitive 25 para_hyper 25 para_hyper 21 dep_inherited L
M2002 33 34
M2002 33 35 euh $L1 B euh euh I 0 root 0 root B
M2002 33 36
M2002 33 37 en $L1 B en en Cl 39 obl 39 obl I
M2002 33 38
M2002 33 39 faire $L1 B faire faire V infinitive 33 para_hyper 33 para_hyper 21 dep_inherited I
M2002 33 40
M2002 33 41 l $L1 B l' le D sg fem 43 dep 43 dep I
M2002 33 42 ' $L1 I I
M2002 33 43 expérience $L1 B expérience expérience N sg fem 39 obj 39 obj L
M2002 33 44
M2002 33 45 avoir $L1 B avoir avoir V infinitive 39 para_hyper 39 para_hyper 21 dep_inherited B
M2002 33 46
M2002 33 47 une $L1 B une un D sg fem 49 dep 49 dep I
M2002 33 48
M2002 33 49 sorte $L1 B sorte sorte N sg fem 45 obj 45 obj I
M2002 33 50
M2002 33 51 de $L1 B de de Pre 49 dep 49 dep U
M2002 33 52
M2002 33 53 de $L1 B de de Pre 51 para_disfl 51 para_disfl 49 dep_inherited U
M2002 33 54
M2002 33 55 vécu $L1 B vécu vécu N sg masc 53 dep 53 dep 51 dep_inherited I
M2002 33 56
M2002 33 57 de $L1 B de de Pre 55 dep 55 dep I
M2002 33 58
M2002 33 59 l $L1 B l' le D sg fem 61 dep 61 dep I
M2002 33 60 ' $L1 I I
M2002 33 61 expérience $L1 B expérience expérience N sg fem 57 dep 57 dep I
M2002 33 62
M2002 33 63 artistique $L1 B artistique artistique Adj sg fem 61 dep 61 dep L
M2002
M2002 34 1 et $L1 B et et J 0 root 0 root O
M2002 34 2
M2002 34 3 c $L1 B c' ce Cl 3 sg masc 5 sub 5 sub O
M2002 34 4 ' $L1 I O
M2002 34 5 est $L1 B est être V indicative present 3 sg 1 dep 1 dep O
M2002 34 6
M2002 34 7 ce $L1 B ce ce Pro 3 sg masc 5 pred 5 pred O
M2002 34 8
M2002 34 9 qu $L1 B qu' que Qu 13 obj 13 obj O
M2002 34 10 ' $L1 I O
M2002 34 11 on $L1 B on on Cl 3 sg masc 13 sub 13 sub O
M2002 34 12
M2002 34 13 appelle $L1 B appelle appeler V indicative present 3 sg 7 dep 7 dep O
M2002 34 14
M2002 34 15 l $L1 B l' le D sg masc 17 dep 17 dep O
M2002 34 16 ' $L1 I O
M2002 34 17 aisthesis $L1 B aisthesis aisthesis N sg masc 13 pred 13 pred O
M2002
M2002 35 1 euh $L1 B euh euh I 0 root 0 root O
M2002 35 2
M2002 35 3 aisthesis $L1 B aisthesis aisthesis N sg masc 0 root 0 root O
M2002 35 4
M2002 35 5 ça $L1 B ça ça Pro 3 sg/pl masc/fem 7 sub 7 sub O
M2002 35 6
M2002 35 7 veut $L1 B veut vouloir V indicative present 3 sg 0 root 0 root O
M2002 35 8
M2002 35 9 dire $L1 B dire dire V infinitive 7 pred 7 pred O
M2002 35 10
M2002 35 11 sensation $L1 B sensation sensation N sg fem 9 obj 9 obj O
M2002 35 12
M2002 35 13 euh $L1 B euh euh I 0 root 0 root O
M2002 35 14
M2002 35 15 en $L1 B en en Pre 9 ad 9 ad U
M2002 35 16
M2002 35 17 en $L1 B en en Pre 15 para_disfl 15 para_disfl 9 ad_inherited U
M2002 35 18
M2002 35 19 grec $L1 B grec grec N sg masc 17 dep 17 dep 15 dep_inherited O
M2002 35 20
M2002 35 21 euh $L1 B euh euh I 0 root 0 root O
M2002
M2002 36 1 et $L1 B et et J 0 root 0 root O
M2002 36 2
M2002 36 3 ça $L1 B ça ça Pro 3 sg masc 5 para_disfl 5 para_disfl 7 sub_inherited U
M2002 36 4
M2002 36 5 ça $L1 B ça ça Pro 3 sg masc 7 sub 7 sub U
M2002 36 6
M2002 36 7 & B & & V indicative present 3 sg 1 dep 1 dep
M2002
M2002 37 1 c $L1 B c' ce Cl 3 sg masc 3 sub 3 sub B
M2002 37 2 ' $L1 I I
M2002 37 3 est $L1 B est être V indicative present 3 sg 0 root 0 root L
M2002 37 4
M2002 37 5 c $L1 B c' ce Cl 3 sg masc 7 sub 7 sub B
M2002 37 6 ' $L1 I I
M2002 37 7 est $L1 B est être V indicative present 3 sg 3 para_disfl 3 para_disfl 0 root_inherited L
M2002 37 8
M2002 37 9 le $L1 B le le D sg masc 11 dep 11 dep O
M2002 37 10
M2002 37 11 phénomène $L1 B phénomène phénomène N sg masc 7 pred 7 pred 3 pred_inherited O
M2002 37 12
M2002 37 13 de $L1 B de de Pre 11 dep 11 dep U
M2002 37 14
M2002 37 15 de $L1 B de de Pre 13 para_disfl 13 para_disfl 11 dep_inherited U
M2002 37 16
M2002 37 17 recevoir $L1 B recevoir recevoir V infinitive 15 dep 15 dep 13 dep_inherited U
M2002 37 18
M2002 37 19 euh $L1 B euh euh I 0 root 0 root B
M2002 37 20
M2002 37 21 sen~ $L1 B sen~ sen~ V infinitive 17 para_reform 17 para_reform 15,13 dep_inherited L
M2002 37 22
M2002 37 23 ressentir $L1 B ressentir ressentir V infinitive 21 para_reform 21 para_reform 15,13 dep_inherited U
M2002
M2002 38 1 et $L1 B et et J 0 root 0 root O
M2002 38 2
M2002 38 3 ça $L1 B ça ça Pro 3 sg masc 5 sub 5 sub O
M2002 38 4
M2002 38 5 a $L1 B a avoir V indicative present 3 sg 1 dep 1 dep O
M2002 38 6
M2002 38 7 donné $L1 B donné donner V past_participle sg masc 5 pred 5 pred O
M2002 38 8
M2002 38 9 euh $L1 B euh euh I 0 root 0 root O
M2002 38 10
M2002 38 11 & B & & N sg masc/fem 7 obj 7 obj
M2002
M2002 39 1 si $L1 B si si CS 0 root 0 root O
M2002 39 2
M2002 39 3 poïésis $L1 B poïésis poïésis N sg masc/fem 5 sub 5 sub O
M2002 39 4
M2002 39 5 a $L1 B a avoir V indicative present 3 sg 1 dep 1 dep O
M2002 39 6
M2002 39 7 donné $L1 B donné donner V past_participle sg masc 5 pred 5 pred O
M2002 39 8
M2002 39 9 le $L1 B le le D sg masc 11 dep 11 dep O
M2002 39 10
M2002 39 11 mot $L1 B mot mot N sg masc 7 obj 7 obj O
M2002 39 12
M2002 39 13 poésie $L1 B poésie poésie N sg masc/fem 11 dep 11 dep O
M2002 39 14
M2002 39 15 euh $L1 B euh euh I 0 root 0 root O
M2002 39 16
M2002 39 17 aisthesis $L1 B aisthesis aisthesis N sg masc/fem 19 sub 19 sub O
M2002 39 18
M2002 39 19 a $L1 B a avoir V indicative present 3 sg 0 root 0 root O
M2002 39 20
M2002 39 21 donné $L1 B donné donner V past_participle sg masc 19 pred 19 pred O
M2002 39 22
M2002 39 23 le $L1 B le le D sg masc 25 dep 25 dep O
M2002 39 24
M2002 39 25 terme $L1 B terme terme N sg masc 21 obj 21 obj O
M2002 39 26
M2002 39 27 esthétique $L1 B esthétique esthétique N sg masc/fem 25 dep 25 dep O
M2002
M2002 40 1 et $L1 B et et J 0 root 0 root O
M2002 40 2
M2002 40 3 ce $L1 B ce ce Pro 3 sg masc 0 root 0 root O
M2002 40 4
M2002 40 5 qui $L1 B qui qui Qu 7 sub 7 sub O
M2002 40 6
M2002 40 7 est $L1 B est être V indicative present 3 sg 3 dep 3 dep O
M2002 40 8
M2002 40 9 intéressant $L1 B intéressant intéressant Adj sg masc 7 pred 7 pred O
M2002 40 10
M2002 40 11 à $L1 B à à Pre 9 dep 9 dep O
M2002 40 12
M2002 40 13 souligner $L1 B souligner souligner V infinitive 11 dep 11 dep O
M2002 40 14
M2002 40 15 euh $L1 B euh euh I 0 root 0 root O
M2002 40 16
M2002 40 17 si $L1 B si si CS 45 ad 45 ad O
M2002 40 18
M2002 40 19 vous $L1 B vous vous Cl 2 pl 21 sub 21 sub O
M2002 40 20
M2002 40 21 poursuivez $L1 B poursuivez poursuivre V indicative present 2 pl 17 dep 17 dep O
M2002 40 22
M2002 40 23 des $L1 B des un D pl fem 25 dep 25 dep O
M2002 40 24
M2002 40 25 études $L1 B études étude N pl fem 21 obj 21 obj O
M2002 40 26
M2002 40 27 d $L1 B d' de Pre 25 dep 25 dep O
M2002 40 28 ' $L1 I O
M2002 40 29 histoire $L1 B histoire histoire N sg fem 27 dep 27 dep O
M2002 40 30
M2002 40 31 de $L1 B de de Pre 29 dep 29 dep O
M2002 40 32
M2002 40 33 l $L1 B l' le D sg masc 35 dep 35 dep O
M2002 40 34 ' $L1 I O
M2002 40 35 art $L1 B art art N sg masc 31 dep 31 dep O
M2002 40 36
M2002 40 37 par $L1 B par par Pre 21 ad 21 ad O
M2002 40 38
M2002 40 39 exemple $L1 B exemple exemple N sg masc 37 dep 37 dep O
M2002 40 40
M2002 40 41 vous $L1 B vous vous Cl 2 pl 45 sub 45 sub O
M2002 40 42
M2002 40 43 le $L1 B le le Cl 3 sg masc 45 obj 45 obj O
M2002 40 44
M2002 40 45 verrez $L1 B verrez voir V indicative future 2 pl 0 root 0 root O
M2002 40 46
M2002 40 47 très $L1 B très très Adv 49 dep 49 dep O
M2002 40 48
M2002 40 49 bien $L1 B bien bien Adv 45 ad 45 ad O
M2002 40 50
M2002 40 51 c $L1 B c' ce Cl 3 sg masc 53 sub 53 sub O
M2002 40 52 ' $L1 I O
M2002 40 53 est $L1 B est être V indicative present 3 sg 1 dep 1 dep O
M2002 40 54
M2002 40 55 que $L1 B que que CS 53 pred 53 pred O
M2002 40 56
M2002 40 57 pendant $L1 B pendant pendant Pre 67 ad 67 ad O
M2002 40 58
M2002 40 59 très $L1 B très très Adv 61 dep 61 dep O
M2002 40 60
M2002 40 61 longtemps $L1 B longtemps longtemps Adv 57 dep 57 dep O
M2002 40 62
M2002 40 63 on $L1 B on on Cl 3 sg masc 67 sub 67 sub O
M2002 40 64
M2002 40 65 n $L1 B n' ne Cl 67 ad 67 ad O
M2002 40 66 ' $L1 I O
M2002 40 67 a $L1 B a avoir V indicative present 3 sg 55 dep 55 dep O
M2002 40 68
M2002 40 69 pas $L1 B pas pas Adv 67 ad 67 ad O
M2002 40 70
M2002 40 71 beaucoup $L1 B beaucoup beaucoup Adv 73 ad 73 ad O
M2002 40 72
M2002 40 73 parlé $L1 B parlé parler V past_participle sg masc 67 pred 67 pred O
M2002 40 74
M2002 40 75 d $L1 B d' de Pre 73 obl 73 obl O
M2002 40 76 ' $L1 I O
M2002 40 77 esthétique $L1 B esthétique esthétique N sg fem 75 dep 75 dep O
M2002
M2002 41 1 on $L1 B on on Cl 3 sg masc 5 sub 5 sub O
M2002 41 2
M2002 41 3 n $L1 B n' ne Cl 5 ad 5 ad O
M2002 41 4 ' $L1 I O
M2002 41 5 a $L1 B a avoir V indicative present 3 sg 0 root 0 root O
M2002 41 6
M2002 41 7 pas $L1 B pas pas Adv 5 ad 5 ad O
M2002 41 8
M2002 41 9 beaucoup $L1 B beaucoup beaucoup Adv 11 ad 11 ad O
M2002 41 10
M2002 41 11 parlé $L1 B parlé parler V past_participle sg masc 5 pred 5 pred O
M2002 41 12
M2002 41 13 de $L1 B de de Pre 11 obl 11 obl O
M2002 41 14
M2002 41 15 l $L1 B l' le D sg fem 17 dep 17 dep O
M2002 41 16 ' $L1 I O
M2002 41 17 expérience $L1 B expérience expérience N sg fem 13 dep 13 dep O
M2002 41 18
M2002 41 19 ressentie $L1 B ressentie ressentir V past_participle sg fem 17 dep 17 dep O
M2002 41 20
M2002 41 21 de $L1 B de de Pre 17 dep 17 dep O
M2002 41 22
M2002 41 23 l $L1 B l' le D sg masc 25 dep 25 dep O
M2002 41 24 ' $L1 I O
M2002 41 25 art $L1 B art art N sg masc 21 dep 21 dep O
M2002
M2002 42 1 euh $L1 B euh euh I 0 root 0 root O
M2002 42 2
M2002 42 3 on $L1 B on on Cl 3 sg masc 5 sub 5 sub O
M2002 42 4
M2002 42 5 a $L1 B a avoir V indicative present 3 sg 0 root 0 root O
M2002 42 6
M2002 42 7 parlé $L1 B parlé parler V past_participle sg masc 5 pred 5 pred O
M2002 42 8
M2002 42 9 surtout $L1 B surtout surtout Adv 7 ad 7 ad O
M2002 42 10
M2002 42 11 de $L1 B de de Pre 7 obl 7 obl O
M2002 42 12
M2002 42 13 l $L1 B l' le D sg masc 15 dep 15 dep O
M2002 42 14 ' $L1 I O
M2002 42 15 art $L1 B art art N sg masc 11 dep 11 dep O
M2002 42 16
M2002 42 17 en $L1 B en tant que en tant que Pre 15 dep 15 dep O
M2002 42 18 I
M2002 42 19 tant $L1 I O
M2002 42 20 I
M2002 42 21 que $L1 I O
M2002 42 22
M2002 42 23 fabrication $L1 B fabrication fabrication N sg fem 17 dep 17 dep O
M2002 42 24
M2002 42 25 parce $L1 B parce que parce que CS 7 ad 7 ad O
M2002 42 26 I
M2002 42 27 que $L1 I O
M2002 42 28
M2002 42 29 c $L1 B c' ce Cl 3 sg masc 31 sub 31 sub B
M2002 42 30 ' $L1 I I
M2002 42 31 était $L1 B était être V indicative imperfect 3 sg 25 dep 25 dep I
M2002 42 32
M2002 42 33 une $L1 B une un D sg fem 35 dep 35 dep I
M2002 42 34
M2002 42 35 affaire $L1 B affaire affaire N sg fem 31 pred 31 pred I
M2002 42 36
M2002 42 37 de $L1 B de de Pre 35 dep 35 dep I
M2002 42 38
M2002 42 39 spécialiste $L1 B spécialiste spécialiste N sg masc/fem 37 dep 37 dep L
M2002 42 40
M2002 42 41 c $L1 B c' ce Cl 3 sg masc 43 sub 43 sub B
M2002 42 42 ' $L1 I I
M2002 42 43 était $L1 B était être V indicative imperfect 3 sg 31 para_negot 31 para_negot 25 dep_inherited I
M2002 42 44
M2002 42 45 une $L1 B une un D sg fem 47 dep 47 dep I
M2002 42 46
M2002 42 47 affaire $L1 B affaire affaire N sg fem 43 pred 43 pred I
M2002 42 48
M2002 42 49 aussi $L1 B aussi aussi Adv 43 ad 43 ad I
M2002 42 50
M2002 42 51 de $L1 B de de Pre 47 dep 47 dep B
M2002 42 52
M2002 42 53 commanditaire $L1 B commanditaire commanditaire N sg masc 51 dep 51 dep L
M2002 42 54
M2002 42 55 de $L1 B de de Pre 51 para_reform 51 para_reform 47 dep_inherited B
M2002 42 56
M2002 42 57 qui $L1 B qui qui Qu 61 pred 61 pred B
M2002 42 58
M2002 42 59 c~ $L1 B c~ c~ X 61 sub 61 sub L
M2002 42 60
M2002 42 61 & B & & V indicative present 3 sg 55 dep 55 dep 47 dep_inherited
M2002 42 62
M2002 42 63 qui $L1 B qui qui Qu 67 pred 67 pred B
M2002 42 64
M2002 42 65 c $L1 B c' ce Cl 3 sg masc 67 sub 67 sub I
M2002 42 66 ' $L1 I I
M2002 42 67 est $L1 B est être V indicative present 3 sg 61 para_disfl 61 para_disfl 47 dep_inherited I
M2002 42 68
M2002 42 69 qui $L1 B qui qui Qu 71 sub 71 sub B
M2002 42 70
M2002 42 71 commandait $L1 B commandait commander V indicative imperfect 3 sg 63 dep 63 dep I
M2002 42 72
M2002 42 73 les $L1 B les le D pl fem 75 dep 75 dep I
M2002 42 74
M2002 42 75 oeuvres $L1 B oeuvres oeuvre N pl fem 71 obj 71 obj I
M2002 42 76
M2002 42 77 d $L1 B d' de Pre 75 dep 75 dep I
M2002 42 78 ' $L1 I I
M2002 42 79 art $L1 B art art N sg masc 77 dep 77 dep L
M2002 42 80
M2002 42 81 et $L1 B et et J 71 junc 71 junc B
M2002 42 82
M2002 42 83 qui $L1 B qui qui Qu 87 sub 87 sub I
M2002 42 84
M2002 42 85 les $L1 B les le Cl 3 pl masc/fem 87 obj 87 obj I
M2002 42 86
M2002 42 87 achetait $L1 B achetait acheter V indicative imperfect 3 sg 81 junc 81 junc 71 para_coord 63 dep_inherited I
M2002 42 88
M2002 42 89 en $L1 B en en Pre 87 ad 87 ad I
M2002 42 90
M2002 42 91 quelque $L1 B quelque quelque Adj sg fem 93 dep 93 dep I
M2002 42 92
M2002 42 93 sorte $L1 B sorte sorte N sg fem 89 dep 89 dep L
M2002 42 94
M2002 42 95 mais $L1 B mais mais J 43 junc 43 junc B
M2002 42 96
M2002 42 97 que $L1 B que que CS 95 junc 95 junc 43 para_coord 25 dep_inherited I
M2002 42 98
M2002 42 99 le $L1 B le le D sg masc 101 dep 101 dep I
M2002 42 100
M2002 42 101 point $L1 B point point N sg masc 111 sub 111 sub I
M2002 42 102
M2002 42 103 de $L1 B de de Pre 101 dep 101 dep I
M2002 42 104
M2002 42 105 vue $L1 B vue vue N sg fem 103 dep 103 dep I
M2002 42 106
M2002 42 107 du $L1 B de+le de+le Pre+D sg masc 105 dep 105 dep I
M2002 42 108
M2002 42 109 spectateur $L1 B spectateur spectateur N sg masc 107 dep 107 dep I
M2002 42 110
M2002 42 111 avait $L1 B avait avoir V indicative imperfect 3 sg 97 dep 97 dep I
M2002 42 112
M2002 42 113 pas $L1 B pas pas Adv 111 ad 111 ad I
M2002 42 114
M2002 42 115 beaucoup $L1 B beaucoup beaucoup Adv 111 obj 111 obj I
M2002 42 116
M2002 42 117 d $L1 B d' de Pre 115 dep 115 dep I
M2002 42 118 ' $L1 I I
M2002 42 119 importance $L1 B importance importance N sg fem 117 dep 117 dep L
M2002
M2002 43 1 euh $L1 B euh euh I 0 root 0 root O
M2002 43 2
M2002 43 3 jusqu $L1 B jusqu'à jusqu'à Pre 77 ad 77 ad B
M2002 43 4 ' $L1 I I
M2002 43 5 à $L1 I I
M2002 43 6
M2002 43 7 la $L1 B la le D sg fem 9 dep 9 dep I
M2002 43 8
M2002 43 9 renaissance $L1 B renaissance renaissance N sg fem 3 dep 3 dep L
M2002 43 10
M2002 43 11 et $L1 B et et J 3 junc 3 junc B
M2002 43 12
M2002 43 13 y $L1 B y compris y compris J 11 dep 11 dep I
M2002 43 14 I
M2002 43 15 compris $L1 I I
M2002 43 16
M2002 43 17 un $L1 B un un D sg masc 19 dep 19 dep B
M2002 43 18
M2002 43 19 peu $L1 B peu peu N sg masc 23 dep 23 dep I
M2002 43 20
M2002 43 21 l~ $L1 B l~ l~ X 23 dep 23 dep I
M2002 43 22
M2002 43 23 & B & & N sg masc/fem 13 junc 13 junc 3 para_coord 77 ad_inherited
M2002 43 24
M2002 43 25 un $L1 B un un D sg masc 27 dep 27 dep B
M2002 43 26
M2002 43 27 & B & & N sg masc 23 para_reform 23 para_reform 77 ad_inherited
M2002 43 28
M2002 43 29 jusqu $L1 B jusqu'à+le jusqu'à+le Pre+D 27 para_reform 27 para_reform 77 ad_inherited B
M2002 43 30 ' $L1 I I
M2002 43 31 au $L1 I I
M2002 43 32
M2002 43 33 dix $L1 B dix-huitième dix-huitième Adj sg masc 37 dep 37 dep I
M2002 43 34 - $L1 I I
M2002 43 35 huitième $L1 I I
M2002 43 36
M2002 43 37 siècle $L1 B siècle siècle N sg masc 29 dep 29 dep L
M2002 43 38
M2002 43 39 le $L1 B le le D sg masc 41 dep 41 dep B
M2002 43 40
M2002 43 41 point $L1 B point point N sg masc 59 para_reform 59 para_reform 77 sub_inherited I
M2002 43 42
M2002 43 43 de $L1 B de de Pre 41 dep 41 dep I
M2002 43 44
M2002 43 45 vue $L1 B vue vue N sg fem 43 dep 43 dep I
M2002 43 46
M2002 43 47 du $L1 B de+le de+le Pre+D sg masc 41 dep 41 dep U
M2002 43 48
M2002 43 49 & B & & N 47 dep 47 dep
M2002 43 50
M2002 43 51 de $L1 B de de Pre 47 para_disfl 47 para_disfl 41 dep_inherited U
M2002 43 52
M2002 43 53 la $L1 B la le D sg fem 55 dep 55 dep I
M2002 43 54
M2002 43 55 fabrication $L1 B fabrication fabrication N sg fem 51 dep 51 dep L
M2002 43 56
M2002 43 57 le $L1 B le le D sg masc 59 dep 59 dep B
M2002 43 58
M2002 43 59 point $L1 B point point N sg masc 77 sub 77 sub I
M2002 43 60
M2002 43 61 de $L1 B de de Pre 59 dep 59 dep I
M2002 43 62
M2002 43 63 vue $L1 B vue vue N sg fem 61 dep 61 dep I
M2002 43 64
M2002 43 65 de $L1 B de de Pre 59 dep 59 dep I
M2002 43 66
M2002 43 67 la $L1 B la le D sg fem 69 dep 69 dep I
M2002 43 68
M2002 43 69 production $L1 B production production N sg fem 65 dep 65 dep L
M2002 43 70
M2002 43 71 de $L1 B de de Pre 69 dep 69 dep 55 dep_inherited O
M2002 43 72
M2002 43 73 l $L1 B l' le D sg masc 75 dep 75 dep O
M2002 43 74 ' $L1 I O
M2002 43 75 art $L1 B art art N sg masc 71 dep 71 dep O
M2002 43 76
M2002 43 77 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 43 78
M2002 43 79 plus $L1 B plus plus Adv 81 dep 81 dep O
M2002 43 80
M2002 43 81 important $L1 B important important Adj sg masc 77 pred 77 pred O
M2002 43 82
M2002 43 83 que $L1 B que que CS 79 dep 79 dep O
M2002 43 84
M2002 43 85 le $L1 B le le D sg masc 87 dep 87 dep B
M2002 43 86
M2002 43 87 point $L1 B point point N sg masc 83 dep 83 dep I
M2002 43 88
M2002 43 89 de $L1 B de de Pre 87 dep 87 dep I
M2002 43 90
M2002 43 91 vue $L1 B vue vue N sg fem 89 dep 89 dep I
M2002 43 92
M2002 43 93 de $L1 B de de Pre 87 dep 87 dep I
M2002 43 94
M2002 43 95 l $L1 B l' le D sg fem 97 dep 97 dep I
M2002 43 96 ' $L1 I I
M2002 43 97 expérience $L1 B expérience expérience N sg fem 93 dep 93 dep I
M2002 43 98
M2002 43 99 de $L1 B de de Pre 97 dep 97 dep I
M2002 43 100
M2002 43 101 la $L1 B la le D sg fem 103 dep 103 dep I
M2002 43 102
M2002 43 103 réception $L1 B réception réception N sg fem 99 dep 99 dep I
M2002 43 104
M2002 43 105 de $L1 B de de Pre 103 dep 103 dep I
M2002 43 106
M2002 43 107 l $L1 B l' le D sg masc 109 dep 109 dep I
M2002 43 108 ' $L1 I I
M2002 43 109 art $L1 B art art N sg masc 105 dep 105 dep L
M2002 43 110
M2002 43 111 euh $L1 B euh euh I 0 root 0 root B
M2002 43 112
M2002 43 113 le $L1 B le le D sg masc 115 dep 115 dep I
M2002 43 114
M2002 43 115 point $L1 B point point N sg masc 87 para_reform 87 para_reform 83 dep_inherited I
M2002 43 116
M2002 43 117 de $L1 B de de Pre 115 dep 115 dep I
M2002 43 118
M2002 43 119 vue $L1 B vue vue N sg fem 117 dep 117 dep I
M2002 43 120
M2002 43 121 du $L1 B de+le de+le Pre+D sg masc 115 dep 115 dep I
M2002 43 122
M2002 43 123 spectateur $L1 B spectateur spectateur N sg masc 121 dep 121 dep L
M2002
M2002 44 1 le $L1 B le le D sg masc 3 dep 3 dep B
M2002 44 2
M2002 44 3 point $L1 B point point N sg masc 15 para_hyper 15 para_hyper 25 sub_inherited I
M2002 44 4
M2002 44 5 de $L1 B de de Pre 3 dep 3 dep I
M2002 44 6
M2002 44 7 vue $L1 B vue vue N sg fem 5 dep 5 dep I
M2002 44 8
M2002 44 9 du $L1 B de+le de+le Pre+D sg masc 3 dep 3 dep I
M2002 44 10
M2002 44 11 spectateur $L1 B spectateur spectateur N sg masc 9 dep 9 dep L
M2002 44 12
M2002 44 13 le $L1 B le le D sg masc 15 dep 15 dep B
M2002 44 14
M2002 44 15 point $L1 B point point N sg masc 25 sub 25 sub I
M2002 44 16
M2002 44 17 de $L1 B de de Pre 15 dep 15 dep I
M2002 44 18
M2002 44 19 vue $L1 B vue vue N sg fem 17 dep 17 dep I
M2002 44 20
M2002 44 21 esthétique $L1 B esthétique esthétique Adj sg fem 19 dep 19 dep L
M2002 44 22
M2002 44 23 se $L1 B se se Cl 3 sg masc/fem 25 obl 25 obl O
M2002 44 24
M2002 44 25 dégage $L1 B dégage dégager V indicative present 3 sg 0 root 0 root O
M2002 44 26
M2002 44 27 euh $L1 B euh euh I 0 root 0 root O
M2002 44 28
M2002 44 29 à $L1 B à à Pre 25 ad 25 ad B
M2002 44 30
M2002 44 31 la $L1 B la le D sg fem 33 dep 33 dep I
M2002 44 32
M2002 44 33 fin $L1 B fin fin N sg fem 29 dep 29 dep I
M2002 44 34
M2002 44 35 du $L1 B de+le de+le Pre+D sg masc 33 dep 33 dep I
M2002 44 36
M2002 44 37 dix $L1 B dix-septième dix-septième Adj sg masc 41 dep 41 dep I
M2002 44 38 - $L1 I I
M2002 44 39 septième $L1 I I
M2002 44 40
M2002 44 41 siècle $L1 B siècle siècle N sg masc 35 dep 35 dep L
M2002 44 42
M2002 44 43 au $L1 B à+le à+le Pre+D sg masc 29 para_reform 29 para_reform 25 ad_inherited B
M2002 44 44
M2002 44 45 dix $L1 B dix-huitième dix-huitième Adj sg masc 49 dep 49 dep I
M2002 44 46 - $L1 I I
M2002 44 47 huitième $L1 I I
M2002 44 48
M2002 44 49 siècle $L1 B siècle siècle N sg masc 43 dep 43 dep L
M2002
M2002 45 1 et $L1 B et puis et puis J 0 root 0 root O
M2002 45 2 I
M2002 45 3 puis $L1 I O
M2002 45 4
M2002 45 5 eh $L1 B eh ben eh bien I 0 root 0 root O
M2002 45 6 I
M2002 45 7 ben $L1 I O
M2002 45 8
M2002 45 9 c $L1 B c' ce Cl 3 sg masc 11 sub 11 sub O
M2002 45 10 ' $L1 I O
M2002 45 11 est $L1 B est être V indicative present 3 sg 1 dep 1 dep O
M2002 45 12
M2002 45 13 quelque $L1 B quelque chose chose Pro 3 sg masc/fem 11 pred 11 pred O
M2002 45 14 I
M2002 45 15 chose $L1 I O
M2002 45 16
M2002 45 17 que $L1 B que que Qu 23 obj 23 obj B
M2002 45 18
M2002 45 19 nous $L1 B nous nous Cl 1 pl 21 sub 21 sub I
M2002 45 20
M2002 45 21 sommes $L1 B sommes être V indicative present 3 sg 11 dep 11 dep I
M2002 45 22
M2002 45 23 & B & & X 21 pred 21 pred
M2002 45 24
M2002 45 25 euh $L1 B euh euh I 0 root 0 root B
M2002 45 26
M2002 45 27 que $L1 B que que Qu 35 obj 35 obj I
M2002 45 28
M2002 45 29 nous $L1 B nous nous Cl 1 pl 31 sub 31 sub I
M2002 45 30
M2002 45 31 avons $L1 B avons avoir V indicative present 1 pl 21 para_reform 21 para_reform 11 dep_inherited I
M2002 45 32
M2002 45 33 bien $L1 B bien bien Adv 35 ad 35 ad I
M2002 45 34
M2002 45 35 & B & & V past_participle 31 pred 31 pred
M2002 45 36
M2002 45 37 euh $L1 B euh euh I 0 root 0 root B
M2002 45 38
M2002 45 39 que $L1 B que que Qu 43 obj 43 obj I
M2002 45 40
M2002 45 41 nous $L1 B nous nous Cl 1 pl 43 sub 43 sub I
M2002 45 42
M2002 45 43 connaissons $L1 B connaissons connaître V indicative present 1 pl 31 para_reform 31 para_reform 11 dep_inherited I
M2002 45 44
M2002 45 45 bien $L1 B bien bien Adv 43 ad 43 ad L
M2002
M2002 46 1 mais $L1 B mais mais J 0 root 0 root O
M2002 46 2
M2002 46 3 faites $L1 B faites faire V indicative present 3 sg 1 dep 1 dep O
M2002 46 4
M2002 46 5 vous $L1 B vous vous Pro 2 pl 3 sub 3 sub O
M2002 46 6 - $L1 B -même même Adv 3 ad 3 ad O
M2002 46 7 même $L1 I O
M2002 46 8
M2002 46 9 la $L1 B la le D sg fem 11 dep 11 dep O
M2002 46 10
M2002 46 11 différence $L1 B différence différence N sg fem 3 obj 3 obj O
M2002 46 12
M2002 46 13 entre $L1 B entre entre Pre 11 dep 11 dep O
M2002 46 14
M2002 46 15 votre $L1 B votre son D sg fem 17 dep 17 dep B
M2002 46 16
M2002 46 17 expérience $L1 B expérience expérience N sg fem 13 dep 13 dep L
M2002 46 18
M2002 46 19 par $L1 B par par Pre 0 root 0 root B
M2002 46 20
M2002 46 21 exemple $L1 B exemple exemple N sg masc 19 dep 19 dep I
M2002 46 22
M2002 46 23 si $L1 B si si CS 0 root 0 root I
M2002 46 24
M2002 46 25 vous $L1 B vous vous Cl 2 pl 27 sub 27 sub I
M2002 46 26
M2002 46 27 pratiquez $L1 B pratiquez pratiquer V indicative present 2 pl 23 dep 23 dep I
M2002 46 28
M2002 46 29 la $L1 B la le D sg fem 31 dep 31 dep I
M2002 46 30
M2002 46 31 musique $L1 B musique musique N sg fem 27 obj 27 obj I
M2002 46 32
M2002 46 33 votre $L1 B votre son D sg fem 35 dep 35 dep I
M2002 46 34
M2002 46 35 expérience $L1 B expérience expérience N sg fem 17 para_disfl 17 para_disfl 13 dep_inherited L
M2002 46 36
M2002 46 37 en $L1 B en tant que en tant que Pre 35 dep 35 dep I
M2002 46 38 I
M2002 46 39 tant $L1 I I
M2002 46 40 I
M2002 46 41 que $L1 I I
M2002 46 42
M2002 46 43 pratiquant $L1 B pratiquant pratiquer V present_participle 37 dep 37 dep I
M2002 46 44
M2002 46 45 la $L1 B la le D sg fem 47 dep 47 dep I
M2002 46 46
M2002 46 47 musique $L1 B musique musique N sg fem 43 obj 43 obj L
M2002 46 48
M2002 46 49 et $L1 B et et J 35 junc 35 junc B
M2002 46 50
M2002 46 51 votre $L1 B votre son D sg masc/fem 53 dep 53 dep I
M2002 46 52
M2002 46 53 expérience $L1 B expérience expérience N sg masc/fem 49 junc 49 junc 35 para_coord 13 dep_inherited I
M2002 46 54
M2002 46 55 en $L1 B en tant que que Pre 53 dep 53 dep I
M2002 46 56 I
M2002 46 57 tant $L1 I I
M2002 46 58 I
M2002 46 59 que $L1 I I
M2002 46 60
M2002 46 61 consommateur $L1 B consommateur consommateur N sg masc 55 dep 55 dep I
M2002 46 62
M2002 46 63 de $L1 B de de Pre 61 dep 61 dep I
M2002 46 64
M2002 46 65 musique $L1 B musique musique N sg fem 63 dep 63 dep L
M2002
M2002 47 1 il $L1 B il il Cl 3 sg masc 3 sub 3 sub O
M2002 47 2
M2002 47 3 suffit $L1 B suffit suffire V indicative present 3 sg 0 root 0 root O
M2002 47 4
M2002 47 5 que $L1 B que que CS 3 obj 3 obj O
M2002 47 6
M2002 47 7 vous $L1 B vous vous Cl 2 pl 9 sub 9 sub O
M2002 47 8
M2002 47 9 ayez $L1 B ayez avoir V indicative present 2 pl 5 dep 5 dep O
M2002 47 10
M2002 47 11 un $L1 B un un D sg masc 13 dep 13 dep O
M2002 47 12
M2002 47 13 baladeur $L1 B baladeur baladeur N sg masc 9 obj 9 obj O
M2002 47 14
M2002 47 15 pour $L1 B pour pour Pre 3 obl 3 obl O
M2002 47 16
M2002 47 17 que $L1 B que que CS 15 dep 15 dep O
M2002 47 18
M2002 47 19 vous $L1 B vous vous Cl 2 pl 21 sub 21 sub O
M2002 47 20
M2002 47 21 connaissiez $L1 B connaissiez connaître V indicative imperfect 2 pl 17 dep 17 dep O
M2002 47 22
M2002 47 23 euh $L1 B euh euh I 0 root 0 root O
M2002 47 24
M2002 47 25 l $L1 B l' le D sg fem 27 dep 27 dep O
M2002 47 26 ' $L1 I O
M2002 47 27 expérience $L1 B expérience expérience N sg fem 21 obj 21 obj O
M2002 47 28
M2002 47 29 de $L1 B de de Pre 27 dep 27 dep O
M2002 47 30
M2002 47 31 consommateur $L1 B consommateur consommateur N sg masc 29 dep 29 dep O
M2002 47 32
M2002 47 33 de $L1 B de de Pre 31 dep 31 dep O
M2002 47 34
M2002 47 35 musique $L1 B musique musique N sg fem 33 dep 33 dep O
M2002 47 36
M2002 47 37 comme $L1 B comme comme Pre 21 ad 21 ad O
M2002 47 38
M2002 47 39 expérience $L1 B expérience expérience N sg fem 37 dep 37 dep O
M2002 47 40
M2002 47 41 de $L1 B de de Pre 39 dep 39 dep O
M2002 47 42
M2002 47 43 la $L1 B la le D sg fem 45 dep 45 dep O
M2002 47 44
M2002 47 45 réception $L1 B réception réception N sg fem 41 dep 41 dep O
M2002
M2002 48 1 et $L1 B et et J 0 root 0 root O
M2002 48 2
M2002 48 3 si $L1 B si si CS 0 root 0 root O
M2002 48 4
M2002 48 5 vous $L1 B vous vous Cl 2 pl 7 sub 7 sub O
M2002 48 6
M2002 48 7 faites $L1 B faites faire V indicative present 3 sg 3 dep 3 dep O
M2002 48 8
M2002 48 9 de $L1 B de la du D sg fem 13 dep 13 dep O
M2002 48 10 I
M2002 48 11 la $L1 I O
M2002 48 12
M2002 48 13 musique $L1 B musique musique N sg fem 7 obj 7 obj O
M2002 48 14
M2002 48 15 eh $L1 B eh bien eh bien I 0 root 0 root O
M2002 48 16 I
M2002 48 17 bien $L1 I O
M2002 48 18
M2002 48 19 vous $L1 B vous vous Cl 2 pl 21 sub 21 sub O
M2002 48 20
M2002 48 21 avez $L1 B avez avoir V indicative present 2 pl 1 dep 1 dep O
M2002 48 22
M2002 48 23 l $L1 B l' le D sg fem 25 dep 25 dep O
M2002 48 24 ' $L1 I O
M2002 48 25 expérience $L1 B expérience expérience N sg fem 21 obj 21 obj O
M2002 48 26
M2002 48 27 de $L1 B de de Pre 25 dep 25 dep B
M2002 48 28
M2002 48 29 la $L1 B la le D sg fem 31 dep 31 dep I
M2002 48 30
M2002 48 31 poïésis $L1 B poïésis poïésis N sg fem 27 dep 27 dep L
M2002 48 32
M2002 48 33 de $L1 B de de Pre 27 para_hyper 27 para_hyper 25 dep_inherited B
M2002 48 34
M2002 48 35 la $L1 B la le D sg fem 37 dep 37 dep L
M2002 48 36
M2002 48 37 & B & & N 33 dep 33 dep
M2002 48 38
M2002 48 39 de $L1 B de de Pre 33 para_disfl 33 para_disfl 25 dep_inherited B
M2002 48 40
M2002 48 41 la $L1 B la le D sg fem 43 dep 43 dep L
M2002 48 42
M2002 48 43 production $L1 B production production N sg fem 39 dep 39 dep I
M2002 48 44
M2002 48 45 musicale $L1 B musicale musical Adj sg fem 43 dep 43 dep L
M2002
M2002 49 1 euh $L1 B euh euh I 0 root 0 root O
M2002 49 2
M2002 49 3 première $L1 B première premier Adj sg fem 5 dep 5 dep O
M2002 49 4
M2002 49 5 distinction $L1 B distinction distinction N sg fem 0 root 0 root O
M2002 49 6
M2002 49 7 donc $L1 B donc donc Adv 0 root 0 root O
M2002 49 8
M2002 49 9 fondamentale $L1 B fondamentale fondamental Adj sg fem 5 dep 5 dep O
M2002 49 10
M2002 49 11 parce $L1 B parce que parce que CS 0 root 0 root O
M2002 49 12 I
M2002 49 13 que $L1 I O
M2002 49 14
M2002 49 15 je $L1 B je je Cl 1 sg 17 sub 17 sub O
M2002 49 16
M2002 49 17 veux $L1 B veux vouloir V indicative present 1 sg 0 root 0 root O
M2002 49 18
M2002 49 19 dire $L1 B dire dire V infinitive sg 17 pred 17 pred O
M2002 49 20
M2002 49 21 selon $L1 B selon selon Pre 0 root 0 root O
M2002 49 22
M2002 49 23 les $L1 B les le D pl fem 25 dep 25 dep O
M2002 49 24
M2002 49 25 sociétés $L1 B sociétés société N pl fem 21 dep 21 dep O
M2002 49 26
M2002 49 27 je $L1 B je je Cl 1 sg 29 sub 29 sub O
M2002 49 28
M2002 49 29 dirais $L1 B dirais dire V indicative conditional 1 sg 11 dep 11 dep O
M2002 49 30
M2002 49 31 que $L1 B que que CS 29 obj 29 obj O
M2002 49 32
M2002 49 33 la $L1 B la le D sg fem 37 para_disfl 37 para_disfl 39 dep_inherited B
M2002 49 34
M2002 49 35 euh $L1 B euh euh I 0 root 0 root L
M2002 49 36
M2002 49 37 la $L1 B la le D sg fem 39 dep 39 dep U
M2002 49 38
M2002 49 39 composante $L1 B composante composante N sg fem 57 sub 57 sub I
M2002 49 40
M2002 49 41 de $L1 B de de Pre 39 dep 39 dep I
M2002 49 42
M2002 49 43 production $L1 B production production N sg fem 41 dep 41 dep L
M2002 49 44
M2002 49 45 ou $L1 B ou ou J 39 junc 39 junc B
M2002 49 46
M2002 49 47 la $L1 B la le D sg fem 49 dep 49 dep I
M2002 49 48
M2002 49 49 composante $L1 B composante composante N sg fem 45 junc 45 junc 39 para_coord 57 sub_inherited I
M2002 49 50
M2002 49 51 de $L1 B de de Pre 49 dep 49 dep I
M2002 49 52
M2002 49 53 réception $L1 B réception réception N sg fem 51 dep 51 dep L
M2002 49 54
M2002 49 55 euh $L1 B euh euh I 0 root 0 root O
M2002 49 56
M2002 49 57 varie $L1 B varie varier V indicative present 3 sg 31 dep 31 dep O
M2002 49 58
M2002 49 59 beaucoup $L1 B beaucoup beaucoup Adv 57 ad 57 ad O
M2002
M2002 50 1 deuxième $L1 B deuxième deuxième Adj sg fem 3 dep 3 dep O
M2002 50 2
M2002 50 3 distinction $L1 B distinction distinction N sg fem 0 root 0 root O
M2002 50 4
M2002 50 5 eh $L1 B eh bien eh bien I 0 root 0 root O
M2002 50 6 I
M2002 50 7 bien $L1 I O
M2002 50 8
M2002 50 9 euh $L1 B euh euh I 0 root 0 root O
M2002 50 10
M2002 50 11 il $L1 B il il Cl 3 sg masc 13 sub 13 sub B
M2002 50 12
M2002 50 13 faut $L1 B faut falloir V indicative present 3 sg 0 root 0 root I
M2002 50 14
M2002 50 15 voir $L1 B voir voir V infinitive 13 obj 13 obj I
M2002 50 16
M2002 50 17 et $L1 B et et J 0 root 0 root I
M2002 50 18
M2002 50 19 c $L1 B c' ce Cl 3 sg masc 21 sub 21 sub I
M2002 50 20 ' $L1 I I
M2002 50 21 est $L1 B est être V indicative present 3 sg 17 dep 17 dep I
M2002 50 22
M2002 50 23 en $L1 B en en Pre 21 pred 21 pred I
M2002 50 24
M2002 50 25 ce $L1 B ce ce D sg masc 27 dep 27 dep I
M2002 50 26
M2002 50 27 sens $L1 B sens sens N sg masc 23 dep 23 dep I
M2002 50 28
M2002 50 29 que $L1 B que que Qu 35 ad 35 ad I
M2002 50 30
M2002 50 31 l $L1 B l' le D sg masc 33 dep 33 dep I
M2002 50 32 ' $L1 I I
M2002 50 33 art $L1 B art art N sg masc 35 sub 35 sub I
M2002 50 34
M2002 50 35 est $L1 B est être V indicative present 3 sg 21 dep 21 dep I
M2002 50 36
M2002 50 37 un $L1 B un un D sg masc 39 dep 39 dep I
M2002 50 38
M2002 50 39 concept $L1 B concept concept N sg masc 35 pred 35 pred I
M2002 50 40
M2002 50 41 flou $L1 B flou flou Adj sg masc 39 dep 39 dep L
M2002 50 42
M2002 50 43 c $L1 B c' ce Cl 3 sg masc 45 sub 45 sub B
M2002 50 44 ' $L1 I I
M2002 50 45 est $L1 B est être V indicative present 3 sg 13 para_reform 13 para_reform 0 root_inherited L
M2002 50 46
M2002 50 47 que $L1 B que que CS 45 obj 45 obj 15 obj_inherited O
M2002 50 48
M2002 50 49 l $L1 B l' le D sg masc 51 dep 51 dep O
M2002 50 50 ' $L1 I O
M2002 50 51 art $L1 B art art N sg masc 53 sub 53 sub O
M2002 50 52
M2002 50 53 a $L1 B a avoir V indicative present 3 sg 47 dep 47 dep O
M2002 50 54
M2002 50 55 des $L1 B des un D pl fem 57 dep 57 dep O
M2002 50 56
M2002 50 57 fonctions $L1 B fonctions fonction N pl fem 53 obj 53 obj O
M2002 50 58
M2002 50 59 extrêmement $L1 B extrêmement extrêmement Adv 61 dep 61 dep O
M2002 50 60
M2002 50 61 diverses $L1 B diverses divers Adj pl fem 57 dep 57 dep O
M2002 50 62
M2002 50 63 euh $L1 B euh euh I 0 root 0 root O
M2002 50 64
M2002 50 65 selon $L1 B selon selon Pre 53 ad 53 ad B
M2002 50 66
M2002 50 67 les $L1 B les le D pl fem 69 dep 69 dep I
M2002 50 68
M2002 50 69 époques $L1 B époques époque N pl fem 65 dep 65 dep L
M2002 50 70
M2002 50 71 et $L1 B et et J 65 junc 65 junc B
M2002 50 72
M2002 50 73 selon $L1 B selon selon Pre 71 junc 71 junc 65 para_coord 53 ad_inherited I
M2002 50 74
M2002 50 75 les $L1 B les le D pl fem 77 dep 77 dep I
M2002 50 76
M2002 50 77 sociétés $L1 B sociétés société N pl fem 73 dep 73 dep L
M2002
M2002 51 1 euh $L1 B euh euh I 0 root 0 root O
M2002 51 2
M2002 51 3 il $L1 B il il Cl 3 sg masc 7 sub 7 sub O
M2002 51 4
M2002 51 5 y $L1 B y y Cl 7 dep 7 dep O
M2002 51 6
M2002 51 7 a $L1 B a avoir V indicative present 3 sg 0 root 0 root O
M2002 51 8
M2002 51 9 des $L1 B des un D pl fem 11 dep 11 dep B
M2002 51 10
M2002 51 11 fonctions $L1 B fonctions fonction N pl fem 7 obj 7 obj I
M2002 51 12
M2002 51 13 euh $L1 B euh euh I 0 root 0 root I
M2002 51 14
M2002 51 15 religieuses $L1 B religieuses religieux Adj pl fem 11 dep 11 dep L
M2002 51 16
M2002 51 17 euh $L1 B euh euh I 0 root 0 root B
M2002 51 18
M2002 51 19 des $L1 B des un D pl fem 21 dep 21 dep I
M2002 51 20
M2002 51 21 fonctions $L1 B fonctions fonction N pl fem 11 para_reform 11 para_reform 7 obj_inherited I
M2002 51 22
M2002 51 23 presque $L1 B presque presque Adv 25 dep 25 dep I
M2002 51 24
M2002 51 25 sacrées $L1 B sacrées sacré Adj pl fem 21 dep 21 dep I
M2002 51 26
M2002 51 27 quelquefois $L1 B quelquefois quelquefois Adv 25 dep 25 dep L
M2002
M2002 52 1 euh $L1 B euh euh I 0 root 0 root O
M2002 52 2
M2002 52 3 l $L1 B l' le D sg masc 5 dep 5 dep O
M2002 52 4 ' $L1 I O
M2002 52 5 art $L1 B art art N sg masc 7 sub 7 sub O
M2002 52 6
M2002 52 7 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 52 8
M2002 52 9 utilisé $L1 B utilisé utiliser V past_participle sg masc 7 pred 7 pred O
M2002 52 10
M2002 52 11 dans $L1 B dans dans Pre 9 ad 9 ad O
M2002 52 12
M2002 52 13 des $L1 B des un D pl fem 15 dep 15 dep O
M2002 52 14
M2002 52 15 cérémonies $L1 B cérémonies cérémonie N pl fem 11 dep 11 dep O
M2002
M2002 53 1 et $L1 B et et J 0 root 0 root O
M2002 53 2
M2002 53 3 il $L1 B il il Cl 3 sg masc 7 sub 7 sub O
M2002 53 4
M2002 53 5 ne $L1 B ne ne Cl 7 ad 7 ad O
M2002 53 6
M2002 53 7 doit $L1 B doit devoir V indicative present 3 sg 1 dep 1 dep O
M2002 53 8
M2002 53 9 pas $L1 B pas pas Adv 7 ad 7 ad O
M2002 53 10
M2002 53 11 être $L1 B être être V infinitive 7 pred 7 pred O
M2002 53 12
M2002 53 13 utilisé $L1 B utilisé utiliser V past_participle sg masc 11 pred 11 pred O
M2002 53 14
M2002 53 15 en $L1 B en en Pre 13 ad 13 ad O
M2002 53 16
M2002 53 17 dehors $L1 B dehors dehors N sg masc 15 dep 15 dep O
M2002 53 18
M2002 53 19 des $L1 B de+les de+le Pre+D pl fem 17 dep 17 dep O
M2002 53 20
M2002 53 21 cérémonies $L1 B cérémonies cérémonie N pl fem 19 dep 19 dep O
M2002
M2002 54 1 c $L1 B c' ce Cl 3 sg masc 3 sub 3 sub O
M2002 54 2 ' $L1 I O
M2002 54 3 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 54 4
M2002 54 5 vrai $L1 B vrai vrai Adj sg masc 3 pred 3 pred O
M2002 54 6
M2002 54 7 encore $L1 B encore encore Adv 0 root 0 root O
M2002 54 8
M2002 54 9 pour $L1 B pour pour Pre 3 ad 3 ad O
M2002 54 10
M2002 54 11 pas $L1 B pas mal pas mal Adv 9 dep 9 dep O
M2002 54 12 I
M2002 54 13 mal $L1 I O
M2002 54 14
M2002 54 15 de $L1 B de de Pre 11 dep 11 dep O
M2002 54 16
M2002 54 17 masques $L1 B masques masque N pl masc 15 dep 15 dep O
M2002 54 18
M2002 54 19 africains $L1 B africains africain Adj pl masc 17 dep 17 dep O
M2002 54 20
M2002 54 21 par $L1 B par par Pre 3 ad 3 ad O
M2002 54 22
M2002 54 23 exemple $L1 B exemple exemple N sg masc 21 dep 21 dep O
M2002
M2002 55 1 euh $L1 B euh euh I 0 root 0 root O
M2002 55 2
M2002 55 3 bien $L1 B bien bien Adv 5 dep 5 dep O
M2002 55 4
M2002 55 5 évidemment $L1 B évidemment évidemment Adv 0 root 0 root O
M2002 55 6
M2002 55 7 c $L1 B c' ce Cl 3 sg masc 9 sub 9 sub O
M2002 55 8 ' $L1 I O
M2002 55 9 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 55 10
M2002 55 11 vrai $L1 B vrai vrai Adj sg masc 9 pred 9 pred O
M2002 55 12
M2002 55 13 pour $L1 B pour pour Pre 9 ad 9 ad O
M2002 55 14
M2002 55 15 la $L1 B la le D sg fem 17 dep 17 dep O
M2002 55 16
M2002 55 17 peinture $L1 B peinture peinture N sg fem 13 dep 13 dep O
M2002 55 18
M2002 55 19 religieuse $L1 B religieuse religieux Adj sg fem 17 dep 17 dep O
M2002 55 20
M2002 55 21 en $L1 B en en Pre 9 ad 9 ad O
M2002 55 22
M2002 55 23 Occident $L1 B Occident Occident N sg masc 21 dep 21 dep O
M2002
M2002 56 1 euh $L1 B euh euh I 0 root 0 root O
M2002 56 2
M2002 56 3 la $L1 B la le D sg fem 5 dep 5 dep B
M2002 56 4
M2002 56 5 peinture $L1 B peinture peinture N sg fem 31 para_disfl 31 para_disfl 39 sub_inherited I
M2002 56 6
M2002 56 7 de $L1 B de de Pre 5 dep 5 dep I
M2002 56 8
M2002 56 9 la $L1 B la le D sg fem 11 dep 11 dep I
M2002 56 10
M2002 56 11 renaissance $L1 B renaissance renaissance N sg fem 7 dep 7 dep I
M2002 56 12
M2002 56 13 euh $L1 B euh euh I 0 root 0 root I
M2002 56 14
M2002 56 15 jusqu $L1 B jusqu'à+le jusqu'à+le Pre+D 21 para_disfl 21 para_disfl 39 ad_inherited B
M2002 56 16 ' $L1 I I
M2002 56 17 au $L1 I L
M2002 56 18
M2002 56 19 & B & & N 15 dep 15 dep
M2002 56 20
M2002 56 21 jusqu $L1 B jusqu'à+le jusqu'à+le Pre+D 39 ad 39 ad B
M2002 56 22 ' $L1 I I
M2002 56 23 au $L1 I L
M2002 56 24
M2002 56 25 seizième $L1 B seizième seizième Adj sg masc 27 dep 27 dep I
M2002 56 26
M2002 56 27 siècle $L1 B siècle siècle N sg masc 21 dep 21 dep L
M2002 56 28
M2002 56 29 la $L1 B la le D sg fem 31 dep 31 dep B
M2002 56 30
M2002 56 31 peinture $L1 B peinture peinture N sg fem 39 sub 39 sub I
M2002 56 32
M2002 56 33 de $L1 B de de Pre 31 dep 31 dep I
M2002 56 34
M2002 56 35 la $L1 B la le D sg fem 37 dep 37 dep I
M2002 56 36
M2002 56 37 renaissance $L1 B renaissance renaissance N sg fem 33 dep 33 dep L
M2002 56 38
M2002 56 39 est $L1 B est être V indicative present 3 sg 0 root 0 root O
M2002 56 40
M2002 56 41 une $L1 B une un D sg fem 43 dep 43 dep O
M2002 56 42
M2002 56 43 peinture $L1 B peinture peinture N sg fem 39 pred 39 pred O
M2002 56 44
M2002 56 45 éminemment $L1 B éminemment éminemment Adv 47 dep 47 dep B
M2002 56 46
M2002 56 47 religieuse $L1 B religieuse religieux Adj sg fem 43 dep 43 dep L
M2002 56 48
M2002 56 49 avec $L1 B avec avec Pre 47 para_dform 47 para_dform 43 dep_inherited B
M2002 56 50
M2002 56 51 des $L1 B des un D pl fem 53 dep 53 dep I
M2002 56 52
M2002 56 53 fonctions $L1 B fonctions fonction N pl fem 49 dep 49 dep I
M2002 56 54
M2002 56 55 religieuses $L1 B religieuses religieux Adj pl fem 53 dep 53 dep L
M2002
M2002 57 1 je $L1 B je je Cl 1 sg 7 sub 7 sub O
M2002 57 2
M2002 57 3 vous $L1 B vous vous Cl 2 pl 7 obl 7 obl O
M2002 57 4
M2002 57 5 en $L1 B en en Cl 7 obl 7 obl O
M2002 57 6
M2002 57 7 parlerai $L1 B parlerai parler V indicative future sg masc 0 root 0 root O
M2002
M2002 58 1 et $L1 B et puis et puis J 0 root 0 root O
M2002 58 2 I
M2002 58 3 puis $L1 I O
M2002 58 4
M2002 58 5 il $L1 B il il Cl 3 sg masc 7 sub 7 sub O
M2002 58 6
M2002 58 7 peut $L1 B peut pouvoir V indicative present 3 sg 1 dep 1 dep O
M2002 58 8
M2002 58 9 avoir $L1 B avoir avoir V infinitive sg 7 pred 7 pred O
M2002 58 10
M2002 58 11 des $L1 B des un D pl fem 13 dep 13 dep O
M2002 58 12
M2002 58 13 fonctions $L1 B fonctions fonction N pl fem 9 obj 9 obj O
M2002 58 14
M2002 58 15 politiques $L1 B politiques politique Adj pl fem 13 dep 13 dep O
M2002 58 16
M2002 58 17 aussi $L1 B aussi aussi Adv 9 ad 9 ad O
M2002
M2002 59 1 l $L1 B l' le D sg masc 3 dep 3 dep O
M2002 59 2 ' $L1 I O
M2002 59 3 art $L1 B art art N sg masc 5 sub 5 sub 17,19 sub_inherited O
M2002 59 4
M2002 59 5 peut $L1 B peut pouvoir V indicative present 3 sg 0 root 0 root B
M2002 59 6
M2002 59 7 avoir $L1 B avoir avoir V infinitive sg 5 pred 5 pred I
M2002 59 8
M2002 59 9 des $L1 B des un D pl fem 11 dep 11 dep I
M2002 59 10
M2002 59 11 fonctions $L1 B fonctions fonction N pl fem 7 obj 7 obj I
M2002 59 12
M2002 59 13 politiques $L1 B politiques politique Adj pl fem 11 dep 11 dep L
M2002 59 14
M2002 59 15 et $L1 B et et J 5 junc 5 junc B
M2002 59 16
M2002 59 17 peut $L1 B peut pouvoir V indicative present 3 sg 15 junc 15 junc 5 para_coord 0 root_inherited U
M2002 59 18
M2002 59 19 peut $L1 B peut pouvoir V indicative present 3 sg 17 para_disfl 17 para_disfl 0 root_inherited U
M2002 59 20
M2002 59 21 avoir $L1 B avoir avoir V infinitive sg 19 pred 19 pred 17 pred_inherited I
M2002 59 22
M2002 59 23 des $L1 B des un D pl fem 25 dep 25 dep I
M2002 59 24
M2002 59 25 fonctions $L1 B fonctions fonction N pl fem 21 obj 21 obj I
M2002 59 26
M2002 59 27 décoratives $L1 B décoratives décoratif Adj pl fem 25 dep 25 dep I
M2002 59 28
M2002 59 29 aussi $L1 B aussi aussi Adv 21 ad 21 ad L
M2002
M2002 60 1 euh $L1 B euh euh I 0 root 0 root O
M2002 60 2
M2002 60 3 pensez $L1 B pensez penser V indicative present 2 pl 0 root 0 root O
M2002 60 4
M2002 60 5 au $L1 B à+le à+le Pre+D sg masc 3 obl 3 obl O
M2002 60 6
M2002 60 7 rôle $L1 B rôle rôle N sg masc 5 dep 5 dep O
M2002 60 8
M2002 60 9 de $L1 B de de Pre 7 dep 7 dep B
M2002 60 10
M2002 60 11 la $L1 B la le D sg fem 13 dep 13 dep L
M2002 60 12
M2002 60 13 & B & & N 9 dep 9 dep
M2002 60 14
M2002 60 15 de $L1 B de de Pre 9 para_disfl 9 para_disfl 7 dep_inherited B
M2002 60 16
M2002 60 17 la $L1 B la le D sg fem 19 dep 19 dep L
M2002 60 18
M2002 60 19 décoration $L1 B décoration décoration N sg fem 15 dep 15 dep O
M2002 60 20
M2002 60 21 par $L1 B par par Pre 3 ad 3 ad O
M2002 60 22
M2002 60 23 exemple $L1 B exemple exemple N sg masc 21 dep 21 dep O
M2002 60 24
M2002 60 25 euh $L1 B euh euh I 0 root 0 root O
M2002 60 26
M2002 60 27 quand $L1 B quand quand CS 3 ad 3 ad O
M2002 60 28
M2002 60 29 vous $L1 B vous vous Cl 2 pl 31 sub 31 sub O
M2002 60 30
M2002 60 31 regardez $L1 B regardez regarder V indicative present 2 pl 27 dep 27 dep O
M2002 60 32
M2002 60 33 dans $L1 B dans dans Pre 31 obl 31 obl O
M2002 60 34
M2002 60 35 les $L1 B les le D pl fem 39 para_reform 39 para_reform 41 dep_inherited U
M2002 60 36
M2002 60 37 euh $L1 B euh euh I 0 root 0 root B
M2002 60 38
M2002 60 39 certaines $L1 B certaines certain D pl fem 41 dep 41 dep L
M2002 60 40
M2002 60 41 stations $L1 B stations station N pl fem 33 dep 33 dep O
M2002 60 42
M2002 60 43 de $L1 B de de Pre 41 dep 41 dep O
M2002 60 44
M2002 60 45 métro $L1 B métro métro N sg masc 43 dep 43 dep O
M2002 60 46
M2002 60 47 qui $L1 B qui qui Qu 49 sub 49 sub O
M2002 60 48
M2002 60 49 sont $L1 B sont être V indicative present 3 pl 41 dep 41 dep O
M2002 60 50
M2002 60 51 euh $L1 B euh euh I 0 root 0 root O
M2002 60 52
M2002 60 53 décorées $L1 B décorées décorer V past_participle pl fem 49 pred 49 pred O
M2002 60 54
M2002 60 55 avec $L1 B avec avec Pre 53 ad 53 ad B
M2002 60 56
M2002 60 57 des $L1 B des un D pl fem 59 dep 59 dep I
M2002 60 58
M2002 60 59 oeuvres $L1 B oeuvres oeuvre N pl fem 55 dep 55 dep I
M2002 60 60
M2002 60 61 d $L1 B d' de Pre 59 dep 59 dep I
M2002 60 62 ' $L1 I I
M2002 60 63 art $L1 B art art N sg masc 61 dep 61 dep L
M2002 60 64
M2002 60 65 ou $L1 B ou ou J 55 junc 55 junc B
M2002 60 66
M2002 60 67 avec $L1 B avec avec Pre 65 junc 65 junc 55 para_coord 53 ad_inherited I
M2002 60 68
M2002 60 69 des $L1 B des un D pl masc 71 para_disfl 71 para_disfl 75 dep_inherited U
M2002 60 70
M2002 60 71 des $L1 B des un D pl masc 73 para_disfl 73 para_disfl 75 dep_inherited U
M2002 60 72
M2002 60 73 des $L1 B des un D pl masc 75 dep 75 dep U
M2002 60 74
M2002 60 75 travaux $L1 B travaux travail N pl masc 67 dep 67 dep I
M2002 60 76
M2002 60 77 de $L1 B de de Pre 75 dep 75 dep I
M2002 60 78
M2002 60 79 design $L1 B design design N sg masc 77 dep 77 dep L
M2002
M2002 61 1 il $L1 B il il Cl 3 sg masc 3 sub 3 sub O
M2002 61 2
M2002 61 3 peut $L1 B peut pouvoir V indicative present 3 sg 0 root 0 root O
M2002 61 4
M2002 61 5 avoir $L1 B avoir avoir V infinitive sg 3 pred 3 pred O
M2002 61 6
M2002 61 7 des $L1 B des un D pl masc/fem 9 dep 9 dep O
M2002 61 8
M2002 61 9 & B & & N pl masc/fem 5 obj 5 obj
M2002
M2002 62 1 l $L1 B l' le D sg masc 3 dep 3 dep O
M2002 62 2 ' $L1 I O
M2002 62 3 art $L1 B art art N sg masc 5 sub 5 sub O
M2002 62 4
M2002 62 5 peut $L1 B peut pouvoir V indicative present 3 sg 0 root 0 root O
M2002 62 6
M2002 62 7 avoir $L1 B avoir avoir V infinitive sg 5 pred 5 pred O
M2002 62 8
M2002 62 9 des $L1 B des un D pl fem 11 dep 11 dep B
M2002 62 10
M2002 62 11 fonctions $L1 B fonctions fonction N pl fem 7 obj 7 obj I
M2002 62 12
M2002 62 13 de $L1 B de de Pre 11 dep 11 dep I
M2002 62 14
M2002 62 15 connaissance $L1 B connaissance connaissance N sg fem 13 dep 13 dep I
M2002 62 16
M2002 62 17 aussi $L1 B aussi aussi Adv 7 ad 7 ad I
M2002 62 18
M2002 62 19 attendez $L1 B attendez attendre V indicative present 2 pl 0 root 0 root I
M2002 62 20
M2002 62 21 c $L1 B c' ce Cl 3 sg masc 23 sub 23 sub I
M2002 62 22 ' $L1 I I
M2002 62 23 est $L1 B est être V indicative present 3 sg 0 root 0 root I
M2002 62 24
M2002 62 25 & B & & X 23 pred 23 pred
M2002 62 26
M2002 62 27 des $L1 B des un D pl fem 29 dep 29 dep B
M2002 62 28
M2002 62 29 fonctions $L1 B fonctions fonction N pl fem 11 para_disfl 11 para_disfl 7 obj_inherited I
M2002 62 30
M2002 62 31 de $L1 B de de Pre 29 dep 29 dep I
M2002 62 32
M2002 62 33 connaissance $L1 B connaissance connaissance N sg fem 31 dep 31 dep L
M2002 62 34
M2002 62 35 des $L1 B des un D pl fem 37 dep 37 dep B
M2002 62 36
M2002 62 37 fonctions $L1 B fonctions fonction N pl fem 29 para_coord 29 para_coord 7 obj_inherited I
M2002 62 38
M2002 62 39 de $L1 B de de Pre 37 dep 37 dep I
M2002 62 40
M2002 62 41 critique $L1 B critique critique N sg fem 39 dep 39 dep L
M2002
M2002 63 1 il $L1 B il il Cl 3 sg masc 5 sub 5 sub O
M2002 63 2
M2002 63 3 y $L1 B y y Cl 5 dep 5 dep O
M2002 63 4
M2002 63 5 a $L1 B a avoir V indicative present 3 sg 0 root 0 root O
M2002 63 6
M2002 63 7 beaucoup $L1 B beaucoup beaucoup Adv 5 obj 5 obj O
M2002 63 8
M2002 63 9 de $L1 B de de Pre 7 dep 7 dep O
M2002 63 10
M2002 63 11 fonctions $L1 B fonctions fonction N pl fem 9 dep 9 dep O
M2002 63 12
M2002 63 13 différentes $L1 B différentes différent Adj pl fem 11 dep 11 dep O
M2002 63 14
M2002 63 15 dans $L1 B dans dans Pre 5 ad 5 ad O
M2002 63 16
M2002 63 17 l $L1 B l' le D sg masc 19 dep 19 dep O
M2002 63 18 ' $L1 I O
M2002 63 19 art $L1 B art art N sg masc 15 dep 15 dep O
M2002
M2002 64 1 et $L1 B et et J 0 root 0 root O
M2002 64 2
M2002 64 3 encore $L1 B encore encore Adv 7 dep 7 dep O
M2002 64 4
M2002 64 5 une $L1 B une un D sg fem 7 dep 7 dep O
M2002 64 6
M2002 64 7 fois $L1 B fois fois N sg fem 11 ad 11 ad O
M2002 64 8
M2002 64 9 elles $L1 B elles elle Cl 3 pl fem 11 sub 11 sub O
M2002 64 10
M2002 64 11 sont $L1 B sont être V indicative present 3 pl 1 dep 1 dep O
M2002 64 12
M2002 64 13 pas $L1 B pas pas Adv 11 ad 11 ad O
M2002 64 14
M2002 64 15 toutes $L1 B toutes tout D pl fem 19 dep 19 dep O
M2002 64 16
M2002 64 17 également $L1 B également également Adv 19 dep 19 dep O
M2002 64 18
M2002 64 19 présentes $L1 B présentes présent Adj pl fem 11 pred 11 pred O
M2002 64 20
M2002 64 21 euh $L1 B euh euh I 0 root 0 root O
M2002 64 22
M2002 64 23 selon $L1 B selon selon Pre 11 ad 11 ad B
M2002 64 24
M2002 64 25 les $L1 B les le D pl fem 27 dep 27 dep I
M2002 64 26
M2002 64 27 sociétés $L1 B sociétés société N pl fem 23 dep 23 dep L
M2002 64 28
M2002 64 29 et $L1 B et et J 23 junc 23 junc B
M2002 64 30
M2002 64 31 selon $L1 B selon selon Pre 29 junc 29 junc 23 para_coord 11 ad_inherited I
M2002 64 32
M2002 64 33 les $L1 B les le D pl fem 35 dep 35 dep I
M2002 64 34
M2002 64 35 époques $L1 B époques époque N pl fem 31 dep 31 dep L
M2002
M2002 65 1 il $L1 B il il Cl 3 sg masc 5 sub 5 sub O
M2002 65 2
M2002 65 3 y $L1 B y y Cl 5 dep 5 dep O
M2002 65 4
M2002 65 5 a $L1 B a avoir V indicative present 3 sg 0 root 0 root O
M2002 65 6
M2002 65 7 des $L1 B des un D pl fem 9 dep 9 dep O
M2002 65 8
M2002 65 9 sociétés $L1 B sociétés société N pl fem 5 obj 5 obj O
M2002 65 10
M2002 65 11 où $L1 B où où Qu 33 ad 33 ad O
M2002 65 12
M2002 65 13 la $L1 B la le D sg fem 15 dep 15 dep O
M2002 65 14
M2002 65 15 dimension $L1 B dimension dimension N sg fem 33 sub 33 sub O
M2002 65 16
M2002 65 17 de $L1 B de de Pre 15 dep 15 dep O
M2002 65 18
M2002 65 19 connaissance $L1 B connaissance connaissance N sg fem 17 dep 17 dep O
M2002 65 20
M2002 65 21 que $L1 B que que Qu 25 obj 25 obj O
M2002 65 22
M2002 65 23 j $L1 B j' je Cl 1 sg 25 sub 25 sub O
M2002 65 24 ' $L1 I O
M2002 65 25 appellerai $L1 B appellerai appeler V indicative future sg masc 15 dep 15 dep O
M2002 65 26
M2002 65 27 la $L1 B la le D sg fem 29 dep 29 dep O
M2002 65 28
M2002 65 29 dimension $L1 B dimension dimension N sg fem 25 pred 25 pred O
M2002 65 30
M2002 65 31 cognitive $L1 B cognitive cognitif Adj sg fem 29 dep 29 dep O
M2002 65 32
M2002 65 33 est $L1 B est être V indicative present 3 sg 9 dep 9 dep O
M2002 65 34
M2002 65 35 plus $L1 B plus plus Adv 37 dep 37 dep O
M2002 65 36
M2002 65 37 importante $L1 B importante important Adj sg fem 33 pred 33 pred O
M2002
M2002 66 1 il $L1 B il il Cl 3 sg masc 5 sub 5 sub O
M2002 66 2
M2002 66 3 y $L1 B y y Cl 5 dep 5 dep O
M2002 66 4
M2002 66 5 a $L1 B a avoir V indicative present 3 sg 0 root 0 root O
M2002 66 6
M2002 66 7 des $L1 B des le D pl fem 9 dep 9 dep O
M2002 66 8
M2002 66 9 sociétés $L1 B sociétés société N pl fem 5 obj 5 obj O
M2002 66 10
M2002 66 11 où $L1 B où où Qu 35 ad 35 ad O
M2002 66 12
M2002 66 13 la $L1 B la le D sg fem 15 dep 15 dep B
M2002 66 14
M2002 66 15 dimension $L1 B dimension dimension N sg fem 35 sub 35 sub I
M2002 66 16
M2002 66 17 euh $L1 B euh euh I 0 root 0 root I
M2002 66 18
M2002 66 19 d $L1 B d' de Pre 15 dep 15 dep B
M2002 66 20 ' $L1 I I
M2002 66 21 hédo~ $L1 B hédo~ hédo~ Adj sg masc/fem 19 dep 19 dep L
M2002 66 22
M2002 66 23 hédonistique $L1 B hédonistique hédonistique Adj sg masc/fem 21 para_disfl 21 para_disfl 19 dep_inherited U
M2002 66 24
M2002 66 25 que $L1 B que que Qu 27 obj 27 obj B
M2002 66 26
M2002 66 27 donne $L1 B donne donner V indicative present 3 sg 15 dep 15 dep I
M2002 66 28
M2002 66 29 l $L1 B l' le D sg fem 31 dep 31 dep I
M2002 66 30 ' $L1 I I
M2002 66 31 expérience $L1 B expérience expérience N sg fem 27 sub 27 sub I
M2002 66 32
M2002 66 33 artistique $L1 B artistique artistique Adj sg fem 31 dep 31 dep L
M2002 66 34
M2002 66 35 sont $L1 B sont être V indicative present 3 pl 9 dep 9 dep O
M2002 66 36
M2002 66 37 plus $L1 B plus plus Adv 39 dep 39 dep O
M2002 66 38
M2002 66 39 importantes $L1 B importantes important Adj pl fem 35 pred 35 pred O
M2002
|