File size: 188,516 Bytes
0ab56fa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 | [
{
"id": "000",
"base": "loss",
"collocate": "stunning",
"collocation": "stunning loss",
"label": "Magn",
"label_id": "0",
"context": "the five - time super bowl champion 49ers will also be out for a measure of revenge , after a stunning loss to the packers in last season 's national conference divisional playoffs .",
"paraphrases": [
"Shocking defeat",
"Overwhelming setback",
"Astonishing failure",
"Unexpected and crushing disappointment",
"Staggering and unbelievable loss"
]
},
{
"id": "001",
"base": "attention",
"collocate": "undivided",
"collocation": "undivided attention",
"label": "Magn",
"label_id": "0",
"context": "( bc - aids - teen - survivors - art-3rdtake - nyt ) on a good day , the pills go down easy most children with hiv , though , do not have the luxury of their parents ' undivided attention .",
"paraphrases": [
"Complete focus",
"Fully concentrated",
"Wholehearted attentiveness",
"Entire devotion",
"Exclusive concentration"
]
},
{
"id": "002",
"base": "tired",
"collocate": "completely",
"collocation": "completely tired",
"label": "Magn",
"label_id": "0",
"context": "so i asked jonas savimbi , who leads the rebel army , and he said : ` ` angolans are completely tired .",
"paraphrases": [
"Utterly exhausted",
"Thoroughly fatigued",
"Drained of all energy",
"Worn out entirely",
"Totally spent and weary"
]
},
{
"id": "003",
"base": "problem",
"collocate": "big",
"collocation": "big problem",
"label": "Magn",
"label_id": "0",
"context": "the fact that we have none , i think that 's a big problem . ''",
"paraphrases": [
"Significant issue",
"Major difficulty",
"Substantial challenge",
"Serious trouble",
"Considerable dilemma"
]
},
{
"id": "004",
"base": "light",
"collocate": "considerable",
"collocation": "considerable light",
"label": "Magn",
"label_id": "0",
"context": "( bc - brain - music - sci-2ndtake - nyt ) studies of brain - damaged patients shed considerable light on these circuits , said dr. isabelle peretz , a psychologist at the university of montreal .",
"paraphrases": [
"Significant illumination",
"Ample brightness",
"Substantial luminosity",
"Notable radiance",
"Extensive glow"
]
},
{
"id": "005",
"base": "reader",
"collocate": "voracious",
"collocation": "voracious reader",
"label": "Magn",
"label_id": "0",
"context": "a voracious reader with an unfettered imagination , gygax worked intensely until his health deteriorated in 2004 .",
"paraphrases": [
"Avid book consumer",
"Insatiable devourer of literature",
"Passionate and hungry for written works",
"Reads extensively with great enthusiasm",
"Consumes books with an unquenchable appetite"
]
},
{
"id": "006",
"base": "river",
"collocate": "big",
"collocation": "big river",
"label": "Magn",
"label_id": "0",
"context": "the supposed outside equity investor in chewco was an entity called big river , whose sole member was another entity called little river .",
"paraphrases": [
"Large waterway",
"Substantial flowing body of water",
"Mighty stream",
"Expansive river system",
"Vast fluvial course"
]
},
{
"id": "007",
"base": "relief",
"collocate": "great",
"collocation": "great relief",
"label": "Magn",
"label_id": "0",
"context": "` ` but , really , it 's a great relief to know it 's not really about the hairdo i ' m left with .",
"paraphrases": [
"Immense comfort",
"Tremendous solace",
"Significant ease",
"Profound respite",
"Remarkable alleviation"
]
},
{
"id": "008",
"base": "influence",
"collocate": "enormous",
"collocation": "enormous influence",
"label": "Magn",
"label_id": "0",
"context": "political analyst jim mcqueeny said such control gives senate presidents enormous influence , making it unlikely difrancesco or bennett - his second - in - command - will face much internal opposition .",
"paraphrases": [
"Significant impact",
"Tremendous sway",
"Profound effect",
"Immense power",
"Huge leverage"
]
},
{
"id": "009",
"base": "losses",
"collocate": "staggering",
"collocation": "staggering losses",
"label": "Magn",
"label_id": "0",
"context": "the staggering losses , expected to be booked by year 's end , have forced citic pacific to secure a us $ 1.5 billion standby loan from its major shareholder , beijing - based citic group .",
"paraphrases": [
"Overwhelming financial deficits",
"Huge, destabilizing setbacks",
"Immense, shocking damages",
"Devastating, crippling costs",
"Massive, debilitating shortfalls"
]
},
{
"id": "010",
"base": "different",
"collocate": "completely",
"collocation": "completely different",
"label": "Magn",
"label_id": "0",
"context": "` ` if mike had bitten someone else , this might ' ve been completely different , '' said tim hallmark , holyfield 's fitness trainer and one of his best friends .",
"paraphrases": [
"Entirely distinct",
"Utterly dissimilar",
"Totally unlike",
"Absolutely contrasting",
"Wholly diverse"
]
},
{
"id": "011",
"base": "guilty",
"collocate": "as sin",
"collocation": "guilty as sin",
"label": "Magn",
"label_id": "0",
"context": "former juror eleanor cook , a 79-year - old grandmother , is writing a tome called ` ` guilty as sin , free as a bird '' with the help of her granddaughter , while ray hultman , 62 , will pen ` ` the deliberator , '' along with stacy brown .",
"paraphrases": [
"Undeniably culpable",
"Unquestionably at fault",
"Indisputably responsible for wrongdoing",
"Clearly and definitively guilty",
"Absolutely blameworthy beyond doubt"
]
},
{
"id": "012",
"base": "consideration",
"collocate": "careful",
"collocation": "careful consideration",
"label": "Magn",
"label_id": "0",
"context": "` ` the government has not made this motion without careful consideration , '' wrote prosecutors larry r. parkinson , john m. campbell and thomas j. motley .",
"paraphrases": [
"Thorough deliberation",
"Mindful contemplation",
"Thoughtful reflection",
"Attentive analysis",
"Prudent examination"
]
},
{
"id": "013",
"base": "shooting",
"collocate": "fatal",
"collocation": "fatal shooting",
"label": "Magn",
"label_id": "0",
"context": "former police officer gets prison term for fatal shooting of new york ( bc - nyc - cop - sentenced - nyt ) a former new york city police officer received close to the maximum sentence in state supreme court on on friday for shooting a woman to death during an off - duty scuffle in a washington heights restaurant last year .",
"paraphrases": [
"Deadly gunfire",
"Lethal gun attack",
"Tragic firearm incident",
"Mortal shooting event",
"Life-ending bullet wounds"
]
},
{
"id": "014",
"base": "monitor",
"collocate": "closely",
"collocation": "closely monitor",
"label": "Magn",
"label_id": "0",
"context": "authorities urged local governments to closely monitor the habits and habitats of migratory birds and prevent people and livestock from entering them .",
"paraphrases": [
"Watch carefully",
"Keep a close eye on",
"Observe attentively",
"Scrutinize closely",
"Vigilantly supervise",
""
]
},
{
"id": "015",
"base": "role",
"collocate": "decisive",
"collocation": "decisive role",
"label": "Magn",
"label_id": "0",
"context": "intelisano charged that the 82-year - old priebke had a ` ` decisive role '' in preparing a list of and carrying out the murders of the 335 people in the caves .",
"paraphrases": [
"Crucial influence",
"Key factor",
"Pivotal part",
"Significant impact",
"Critical function"
]
},
{
"id": "016",
"base": "race",
"collocate": "close",
"collocation": "close race",
"label": "Magn",
"label_id": "0",
"context": "it 's going to be a close race , '' said kahne , whose lap of 30.293 seconds knocked evernham motorsports teammate scott riggs off the top spot .",
"paraphrases": [
"Tight competition",
"Neck-and-neck contest",
"Evenly matched competitors",
"Narrow margin between contenders",
"Photo finish event"
]
},
{
"id": "017",
"base": "defect",
"collocate": "serious",
"collocation": "serious defect",
"label": "Magn",
"label_id": "0",
"context": "the new study involved seven patients , ages 4 to 19 , with spina bifida , a serious birth defect of the spinal cord .",
"paraphrases": [
"Significant flaw",
"Major imperfection",
"Grave shortcoming",
"Severe fault",
"Critical deficiency"
]
},
{
"id": "018",
"base": "protest",
"collocate": "heated",
"collocation": "heated protest",
"label": "Magn",
"label_id": "0",
"context": "maddox , who is representing himself , interjected himself into the courtroom arguments between hardy and stanton several times with heated protest of his own .",
"paraphrases": [
"Passionate demonstration",
"Intense opposition",
"Fiery dissent",
"Fervent objection",
"Vehement remonstration"
]
},
{
"id": "019",
"base": "make money",
"collocate": "hand over fist",
"collocation": "make money hand over fist",
"label": "Magn",
"label_id": "0",
"context": "` ` these are businesses that were built for the exclusive reason of illegally exchanging copyrighted works and they make money hand over fist from it , '' riaa president cary sherman said .",
"paraphrases": [
"Earn large profits quickly",
"Amass wealth rapidly",
"Generate substantial income swiftly",
"Rake in cash at an impressive rate",
"Accumulate money at a staggering pace"
]
},
{
"id": "020",
"base": "headache",
"collocate": "splitting",
"collocation": "splitting headache",
"label": "Magn",
"label_id": "0",
"context": "then i decide whether i want a splitting headache or the chance of ` ` hives , shock , facial swelling and nervousness . ''",
"paraphrases": [
"Severe, intense pain in the head",
"Extremely painful headache",
"Unbearable, throbbing pain in the skull",
"Excruciating head pain that feels like splitting",
"Agonizing headache causing a sensation of head being split apart"
]
},
{
"id": "021",
"base": "hold",
"collocate": "good",
"collocation": "good hold",
"label": "Magn",
"label_id": "0",
"context": "i think ( the defender ) had a pretty good hold of me , but i was fortunate to get loose .",
"paraphrases": [
"Firm grip",
"Secure grasp",
"Strong clutch",
"Tight clasp",
"Solid hold"
]
},
{
"id": "022",
"base": "suffering",
"collocate": "extreme",
"collocation": "extreme suffering",
"label": "Magn",
"label_id": "0",
"context": "many doctors in france , after consulting with families , are known to discreetly stop treating some patients in extreme suffering who have no hope of being cured .",
"paraphrases": [
"Intense agony",
"Profound anguish",
"Severe torment",
"Excruciating pain",
"Unbearable misery"
]
},
{
"id": "023",
"base": "fail",
"collocate": "badly",
"collocation": "fail badly",
"label": "Magn",
"label_id": "0",
"context": "the patriots ' first - and second - stringers failed badly and quarterback drew bledsoe injured his right ankle , though it does n't seem to be serious and bledsoe is expected to be able to play in next week 's game against the dallas cowboys .",
"paraphrases": [
"Suffer a significant setback",
"Experience a devastating failure",
"Fail in a terrible manner",
"Undergo a disastrous defeat",
"Encounter a catastrophic downfall"
]
},
{
"id": "024",
"base": "apart",
"collocate": "poles",
"collocation": "poles apart",
"label": "Magn",
"label_id": "0",
"context": "two of these that are poles apart -- the socialists founded by milosevic and the liberal democrats whose leader cedomir jovanovic negotiated his arrest in 2001 -- are thus likely to have a key role in forming the next government .",
"paraphrases": [
"Completely different",
"Utterly dissimilar",
"Diametrically opposed",
"Worlds apart",
"Vastly contrasting"
]
},
{
"id": "025",
"base": "role",
"collocate": "lead",
"collocation": "lead role",
"label": "Magn",
"label_id": "0",
"context": "kd94 vatican claims it played lead role in passage of cairo plan vatican city , sept 14 ( afp ) the vatican claimed wednesday that its delegation to the un population conference in cairo deserved much of the merit for the passage of a global plan to control the world 's population .",
"paraphrases": [
"Main character",
"Starring part",
"Principal actor or actress",
"Protagonist",
"Primary performer"
]
},
{
"id": "026",
"base": "resentment",
"collocate": "bitter",
"collocation": "bitter resentment",
"label": "Magn",
"label_id": "0",
"context": "moves by iraq 's ousted leader saddam hussein to establish the arabs as the dominant community at the expense of kurds -- who suffered massive persecution -- has caused bitter resentment .",
"paraphrases": [
"Deep-seated anger",
"Intense grudge",
"Strong feelings of bitterness",
"Profound sense of animosity",
"Seething displeasure and indignation"
]
},
{
"id": "027",
"base": "debate",
"collocate": "lively",
"collocation": "lively debate",
"label": "Magn",
"label_id": "0",
"context": "the weekend duty editors are : in atlanta : diane fall , 678 - 592 - 8388 in washington : chuck holmes , 202 - 262 - 6061 international afghan - council _ kabul , afghanistan _ delegates to the national council sunday engaged in a lively debate reminiscent of america 's founding fathers over how to achieve fair representation in the parliament .",
"paraphrases": [
"Energetic discussion",
"Spirited exchange of ideas",
"Vigorous argument",
"Animated dialogue",
"Dynamic discourse"
]
},
{
"id": "028",
"base": "concern",
"collocate": "paramount",
"collocation": "paramount concern",
"label": "Magn",
"label_id": "0",
"context": "if we had had a policy of no rescues , we would have sent a clear message , a clear message that ocean safety has to be of paramount concern , of passengers , crews , and ocean shipping lines . ''",
"paraphrases": [
"Top priority",
"Of utmost importance",
"The primary consideration",
"The most critical issue",
"The main focus of attention"
]
},
{
"id": "029",
"base": "deny",
"collocate": "flatly",
"collocation": "flatly deny",
"label": "Magn",
"label_id": "0",
"context": "park , who was reached by telephone , flatly denied the press reports , and said labour representatives met with management in a boardroom to discuss their grievances .",
"paraphrases": [
"Completely reject",
"Absolutely refuse",
"Firmly negate",
"Categorically repudiate",
"Unequivocally disavow"
]
},
{
"id": "030",
"base": "criticize",
"collocate": "violently",
"collocation": "violently criticize",
"label": "Magn",
"label_id": "0",
"context": "the bill has yet to be signed into law by president askar akayev but was violently criticized by kyrgyz defense minister esen topoyev .",
"paraphrases": [
"Harshly condemn",
"Vehemently denounce",
"Fiercely berate",
"Aggressively reprimand",
"Severely castigate"
]
},
{
"id": "031",
"base": "wind",
"collocate": "strong",
"collocation": "strong wind",
"label": "Magn",
"label_id": "0",
"context": "the inferno was sparked by a gas canister used for cooking and fanned by strong winds it swept through the mina encampment , about five kilometers ( three miles ) south of mecca , witnesses said .",
"paraphrases": [
"Forceful gust",
"Powerful breeze",
"Intense air current",
"Mighty wind blast",
"Vigorous atmospheric movement"
]
},
{
"id": "032",
"base": "sigh",
"collocate": "heavy",
"collocation": "heavy sigh",
"label": "Magn",
"label_id": "0",
"context": "harris wilbanks , the medical assistant 's father , heaved a heavy sigh when asked wednesday if the charges were excessive .",
"paraphrases": [
"A deep, weary exhale",
"An audible breath expressing sadness or frustration",
"A forceful, melancholic exhalation",
"A profound sigh conveying emotional weight",
"A burdened, drawn-out breath"
]
},
{
"id": "033",
"base": "reform",
"collocate": "comprehensive",
"collocation": "comprehensive reform",
"label": "Magn",
"label_id": "0",
"context": "they were frustrated that the divisive debate over illegal immigration had overwhelmed efforts at comprehensive immigration reform .",
"paraphrases": [
"Thorough overhaul of a system",
"Complete restructuring and improvement",
"Wide-ranging changes for betterment",
"Exhaustive revamp and modification",
"All-encompassing enhancements and corrections"
]
},
{
"id": "034",
"base": "divergent",
"collocate": "widely",
"collocation": "widely divergent",
"label": "Magn",
"label_id": "0",
"context": "they say strasburg , 45 , has been more successful than his predecessors in unifying a membership with widely divergent economic interests and focusing them on a bottom line : scaling back rent protections .",
"paraphrases": [
"Greatly differing",
"Vastly dissimilar",
"Significantly varied",
"Substantially distinct",
"Extremely diverse"
]
},
{
"id": "035",
"base": "precision",
"collocate": "great",
"collocation": "great precision",
"label": "Magn",
"label_id": "0",
"context": "results from those tests can establish with great precision the source of blood or tissue samples , and the results in this case could form a major bulwark of either the prosecution or defense cases .",
"paraphrases": [
"Extremely accurate",
"Highly exact",
"Meticulous and precise",
"Pinpoint accuracy",
"Unerring precision"
]
},
{
"id": "036",
"base": "reduce",
"collocate": "drastically",
"collocation": "drastically reduce",
"label": "Magn",
"label_id": "0",
"context": "the ministers were to hold two days of debate on proposals unveiled by the eu 's executive commission two weeks ago to ban or drastically reduce fishing of some species such as cod in 2005 .",
"paraphrases": [
"Significantly decrease",
"Substantially cut down",
"Greatly diminish",
"Considerably lessen",
"Markedly lower"
]
},
{
"id": "037",
"base": "condition",
"collocate": "stringent",
"collocation": "stringent condition",
"label": "Magn",
"label_id": "0",
"context": "the decision brings to 190 million dollars the amount available to sri lanka under a 253-million - dollar standby credit line approved a year ago under stringent conditions that required colombo meet certain targets .",
"paraphrases": [
"Strict requirement",
"Rigorous stipulation",
"Uncompromising term",
"Exacting prerequisite",
"Demanding criterion"
]
},
{
"id": "038",
"base": "bored",
"collocate": "stiff",
"collocation": "bored stiff",
"label": "Magn",
"label_id": "0",
"context": "bored stiff with her position as lady of the manor , arabella wants to join the ranks of the social researchers and scientists of the day .",
"paraphrases": [
"Extremely bored",
"Utterly uninterested",
"Mind-numbingly dull",
"Exceedingly tedious",
"Boredom at its peak"
]
},
{
"id": "039",
"base": "approximation",
"collocate": "first",
"collocation": "first approximation",
"label": "AntiMagn",
"label_id": "1",
"context": "for mc6 to deliver results , it is of paramount importance that the ` ` first approximation '' of the document to be issued by ministers in hong kong be available by the end of july .",
"paraphrases": [
"Initial estimate",
"Rough calculation",
"Preliminary assessment",
"Tentative estimate",
"First-order approximation"
]
},
{
"id": "040",
"base": "applause",
"collocate": "faint",
"collocation": "faint applause",
"label": "AntiMagn",
"label_id": "1",
"context": "` ` i try to make clothes that are fun and comfortable , but not ordinary , '' said lau , whose futuristic jackets in black leather and shiny gray quilting drew faint applause .",
"paraphrases": [
"Weak clapping",
"Unenthusiastic praise",
"Halfhearted approval",
"Subdued recognition",
"Muted acclaim"
]
},
{
"id": "041",
"base": "living",
"collocate": "meager",
"collocation": "meager living",
"label": "AntiMagn",
"label_id": "1",
"context": "he lives in a basement in montmartre , makes a meager living sweeping up and is ridiculed by his neighbors because of his obesity and his disability .",
"paraphrases": [
"Scant earnings",
"Insufficient income",
"Barely making ends meet",
"Minimal subsistence",
"Struggling to get by"
]
},
{
"id": "042",
"base": "flow",
"collocate": "weak",
"collocation": "weak flow",
"label": "AntiMagn",
"label_id": "1",
"context": "devised by a renowned inventor , liu cheng - shih , the millwheel - shaped hydropower facility can generate electricity using the weak water flow in rice paddy irrigation systems , which would represent a new clean energy source suitable for agriculture and poultry farming .",
"paraphrases": [
"Feeble current",
"Sluggish movement of fluid",
"Low-pressure stream",
"Minimal liquid motion",
"Slow-moving flow"
]
},
{
"id": "043",
"base": "doubt",
"collocate": "slight",
"collocation": "slight doubt",
"label": "AntiMagn",
"label_id": "1",
"context": "the 21-year - old took over behind the wicket because of a slight fitness doubt over robert rollins and held five catches - equalling the most by an essex keeper in a one - day match .",
"paraphrases": [
"A hint of uncertainty",
"A small amount of skepticism",
"A trace of reservations",
"A modicum of hesitation",
"A touch of apprehension"
]
},
{
"id": "044",
"base": "coffee",
"collocate": "weak",
"collocation": "weak coffee",
"label": "AntiMagn",
"label_id": "1",
"context": "breakfast , on the other hand , was pretty close to perfect , the only exception being the weak coffee .",
"paraphrases": [
"Coffee with low caffeine content",
"Diluted coffee lacking strong flavor",
"Coffee made with insufficient grounds",
"Thin, watery coffee",
"Coffee with a mild taste"
]
},
{
"id": "045",
"base": "pressure",
"collocate": "low",
"collocation": "low pressure",
"label": "AntiMagn",
"label_id": "1",
"context": "puerto rico and u.s. virgin islands coastal waters out to 20 nm synopsis ... weak high pressure over the eastern atlantic combined with strong low pressure over the western atlantic will continue to produce a moderate south to southwest winds across the northeast caribbean through sunday .",
"paraphrases": [
"Minimal stress or urgency",
"Relaxed and easygoing environment",
"Situation with little to no coercion",
"Atmosphere of reduced expectations",
"Conditions that allow for calmness and tranquility"
]
},
{
"id": "046",
"base": "success",
"collocate": "indifferent",
"collocation": "indifferent success",
"label": "AntiMagn",
"label_id": "1",
"context": "union - backed candidates had only indifferent success , and the center for responsive politics calculates that even with re - energized union political spending , corporations still outspend the unions 11-to-1 in politics .",
"paraphrases": [
"Moderate achievement",
"Unremarkable accomplishment",
"Average outcome",
"Mediocre performance",
"Lackluster results"
]
},
{
"id": "047",
"base": "wind",
"collocate": "mild",
"collocation": "mild wind",
"label": "AntiMagn",
"label_id": "1",
"context": "with two spotters preventing the jet pack from drifting in a mild wind , the pilot hovered for 45 seconds and then set the device down as the audience applauded .",
"paraphrases": [
"Gentle breeze",
"Soft air current",
"Light gust",
"Tender zephyr",
"Delicate draft"
]
},
{
"id": "048",
"base": "taste",
"collocate": "bad",
"collocation": "bad taste",
"label": "AntiMagn",
"label_id": "1",
"context": "bad taste : jim jackson has been around long enough and played with enough teams over the years to understand organizations go in different directions from one season to the next .",
"paraphrases": [
"Poor judgment or lack of style",
"Unpleasant or undesirable quality",
"Offensive or inappropriate choice",
"Lacking refinement or sophistication",
"Distasteful or vulgar preference"
]
},
{
"id": "049",
"base": "drunk",
"collocate": "slightly",
"collocation": "drunk slightly",
"label": "AntiMagn",
"label_id": "1",
"context": "make no mistake : the 1997 ` ` long flat red '' _ 4 stars _ is a simple wine and meant to be drunk slightly chilled , but it 's also simply delightful .",
"paraphrases": [
"Mildly intoxicated",
"Somewhat inebriated",
"Feeling a bit tipsy",
"Having a light buzz",
"Under the influence of a small amount of alcohol"
]
},
{
"id": "050",
"base": "response",
"collocate": "limp",
"collocation": "limp response",
"label": "AntiMagn",
"label_id": "1",
"context": "critics have been dismayed by its limp response to what seems to be weekly recalls of lead - laden toys ( 20 million toys so far ) .",
"paraphrases": [
"Weak reaction",
"Feeble reply",
"Half-hearted answer",
"Unenthusiastic response",
"Listless retort"
]
},
{
"id": "051",
"base": "security",
"collocate": "lax",
"collocation": "lax security",
"label": "AntiMagn",
"label_id": "1",
"context": "no evidence has emerged that lax security allowed the terrorists to board the four planes that crashed that day .",
"paraphrases": [
"Weak protection measures",
"Inadequate safety protocols",
"Insufficient defense mechanisms",
"Subpar security standards",
"Careless safeguarding practices"
]
},
{
"id": "052",
"base": "crime",
"collocate": "petty",
"collocation": "petty crime",
"label": "AntiMagn",
"label_id": "1",
"context": "cowans , who had a record of petty crime before his arrest in the gallagher shooting , expressed confidence that he was turning his life around .",
"paraphrases": [
"Minor offenses",
"Small-scale illegal activities",
"Less serious criminal acts",
"Misdemeanors and infractions",
"Low-level law violations"
]
},
{
"id": "053",
"base": "variety",
"collocate": "limited",
"collocation": "limited variety",
"label": "AntiMagn",
"label_id": "1",
"context": "critics , however , warned the embrace signaled greater corporate encroachment on traditional agriculture , and said the limited variety of genetically engineered species available would create a class of poor farmers stuck in a cycle of debt to the small number of multinationals that own patents on the seeds .",
"paraphrases": [
"Restricted selection",
"Narrow range of options",
"Scant diversity",
"Minimal assortment",
"Constrained choice"
]
},
{
"id": "054",
"base": "argument",
"collocate": "flimsy",
"collocation": "flimsy argument",
"label": "AntiMagn",
"label_id": "1",
"context": "charig and his colleagues refuted the flimsy arguments so thoroughly and so convincingly in a 4,000-word paper in the journal ` ` science '' that he apologized for ` ` using a sledgehammer to crack a rather trivial nut . ''",
"paraphrases": [
"Weak and unconvincing reasoning",
"Poorly supported or baseless claim",
"An argument that lacks substance",
"Easily refutable or dismissible point",
"Fragile and unpersuasive line of thought"
]
},
{
"id": "055",
"base": "flurries",
"collocate": "a few",
"collocation": "a few flurries",
"label": "AntiMagn",
"label_id": "1",
"context": "a fresh surge of chilly air will move into the northern plains , producing a few flurries in northern minnesota .",
"paraphrases": [
"Light snowfall",
"Sporadic snow showers",
"Intermittent snowflakes",
"Occasional bursts of snow",
"Scattered flurries"
]
},
{
"id": "056",
"base": "crime",
"collocate": "minor",
"collocation": "minor crime",
"label": "AntiMagn",
"label_id": "1",
"context": "earlier this year , a st. petersburg city court jury convicted seven people with a minor crime of hooliganism in connection with the killing of a 9-year - old tajik girl -- a conviction that outraged rights activists .",
"paraphrases": [
"Small-scale illegal activity",
"Less serious criminal offense",
"Petty unlawful act",
"Misdemeanor or infraction",
"Non-violent, low-level crime"
]
},
{
"id": "057",
"base": "progress",
"collocate": "little",
"collocation": "little progress",
"label": "AntiMagn",
"label_id": "1",
"context": "report : japan to extend sanctions on north korea for 6 more months tokyo 2007 - 09 - 30 09:50:43 utc the japanese government plans to extend its economic sanctions against north korea for another six months because of little progress in the issue of japanese nationals kidnapped by the communist state , a media report said sunday .",
"paraphrases": [
"Minimal advancement",
"Slow development",
"Slight improvement",
"Insignificant gains",
"Barely moving forward"
]
},
{
"id": "058",
"base": "standard",
"collocate": "lax",
"collocation": "lax standard",
"label": "AntiMagn",
"label_id": "1",
"context": "but the latest revelation can only hurt her standing and complicate her efforts to break free of the lax ethical standards of her husband 's white house .",
"paraphrases": [
"Lenient criteria",
"Relaxed requirements",
"Loose guidelines",
"Slack regulations",
"Permissive benchmarks"
]
},
{
"id": "059",
"base": "illness",
"collocate": "slight",
"collocation": "slight illness",
"label": "AntiMagn",
"label_id": "1",
"context": "the source said that the italian protocol office , in canceling the meeting , cited a ` ` slight illness . ''",
"paraphrases": [
"Minor health issue",
"A small, non-serious ailment",
"A mild sickness or disorder",
"An insignificant medical condition",
"A trivial case of ill health"
]
},
{
"id": "060",
"base": "hope",
"collocate": "weak",
"collocation": "weak hope",
"label": "AntiMagn",
"label_id": "1",
"context": "leflea estimated that the rescue work will end in another 48 hours and anyone inside now has just a weak hope for survival after two days of ordeal .",
"paraphrases": [
"Faint possibility",
"Slim chance",
"Fragile optimism",
"Tenuous expectation",
"Feeble anticipation"
]
},
{
"id": "061",
"base": "blood pressure",
"collocate": "low",
"collocation": "low blood pressure",
"label": "AntiMagn",
"label_id": "1",
"context": "in the past , nasa has given astronauts salt and fluids shortly before re - entry to counter the problem of low blood pressure , convertino said .",
"paraphrases": [
"Hypotension",
"Decreased arterial pressure",
"Below normal blood pressure",
"Insufficient pressure in the circulatory system",
"Lower than usual force of blood against artery walls"
]
},
{
"id": "062",
"base": "mistake",
"collocate": "small",
"collocation": "small mistake",
"label": "AntiMagn",
"label_id": "1",
"context": "quick step actually made a small mistake with 1 km to go when the team briefly split up but they got away with it , regrouped and stormed to the finish line .",
"paraphrases": [
"Minor error",
"Slight oversight",
"Trivial blunder",
"Inconsequential slip-up",
"Tiny inaccuracy"
]
},
{
"id": "063",
"base": "approximation",
"collocate": "gross",
"collocation": "gross approximation",
"label": "AntiMagn",
"label_id": "1",
"context": "but the box will not provide information on many individual parts of the plane , and reading its information will be a little like watching an opera in a foreign language , providing only a gross approximation of what happened .",
"paraphrases": [
"Rough estimate",
"Crude calculation",
"Imprecise reckoning",
"Ballpark figure",
"Broad estimation"
]
},
{
"id": "064",
"base": "smile",
"collocate": "vague",
"collocation": "vague smile",
"label": "AntiMagn",
"label_id": "1",
"context": "` ` we will see how things turn out , '' yeltsin said with a vague smile .",
"paraphrases": [
"An unclear, indistinct smile",
"A smile lacking definition or clarity",
"An ambiguous facial expression resembling a smile",
"A smile that is hard to interpret",
"An enigmatic smile, open to interpretation",
""
]
},
{
"id": "065",
"base": "grind",
"collocate": "coarse",
"collocation": "coarse grind",
"label": "AntiMagn",
"label_id": "1",
"context": "cool and chop finely with a knife , or pulse in batches in a food processor to a very coarse grind .",
"paraphrases": [
"Roughly ground",
"Large, uneven particles",
"Chunky texture",
"Not finely milled",
"Granular consistency"
]
},
{
"id": "066",
"base": "review",
"collocate": "briefly",
"collocation": "briefly review",
"label": "AntiMagn",
"label_id": "1",
"context": "briefly reviewing the bilateral commercial ties , shi said that they lagged far behind the development of their economies .",
"paraphrases": [
"Concisely summarize",
"Quickly go over",
"Give a short overview",
"Succinctly examine",
"Rapidly assess"
]
},
{
"id": "067",
"base": "memory",
"collocate": "fleeting",
"collocation": "fleeting memory",
"label": "AntiMagn",
"label_id": "1",
"context": "jerry peligrano 's fleeting memory was of a bespectacled kid with pencils in a pocket protector .",
"paraphrases": [
"Short-lived recollection",
"Ephemeral remembrance",
"Transient mental impression",
"Brief cognitive trace",
"Momentary mind's eye image"
]
},
{
"id": "068",
"base": "distance",
"collocate": "small",
"collocation": "small distance",
"label": "AntiMagn",
"label_id": "1",
"context": "and technical matters slowed things up too -- electric batteries were liable to explode , electric cars ran out of power after relatively small distances , and recharging was painfully slow .",
"paraphrases": [
"Short length",
"Nearby",
"Close proximity",
"Not far",
"Little space between"
]
},
{
"id": "069",
"base": "dress",
"collocate": "light",
"collocation": "light dress",
"label": "AntiMagn",
"label_id": "1",
"context": "they continue to make light dresses with smocking and satin ribbons that look as if they came from a vintage clothing store .",
"paraphrases": [
"Thin, lightweight clothing",
"Garments made from breathable, airy fabric",
"Attire suitable for warm weather",
"Non-bulky, comfortable clothing",
"Breezy, easy-to-wear outfits"
]
},
{
"id": "070",
"base": "nap",
"collocate": "light",
"collocation": "light nap",
"label": "AntiMagn",
"label_id": "1",
"context": "everywhere yao goes , people ask how good he can be , but more than ponder this question all yao wants to do , frankly , is turn out the light and take a long nap .",
"paraphrases": [
"Brief sleep",
"Short rest",
"Quick snooze",
"Momentary doze",
"Fleeting slumber"
]
},
{
"id": "071",
"base": "doubt",
"collocate": "slightly",
"collocation": "slightly doubt",
"label": "AntiMagn",
"label_id": "1",
"context": "he told reporters ` ` i have not the slightly doubt of the capability of the management and staff of socog , who are excellent to deliver the outcome we need '' .",
"paraphrases": [
"Mildly uncertain",
"Somewhat skeptical",
"Vaguely question",
"Faintly suspicious",
"Moderately dubious"
]
},
{
"id": "072",
"base": "fare",
"collocate": "homely",
"collocation": "homely fare",
"label": "AntiMagn",
"label_id": "1",
"context": "prior to its reopening as a luxury hotel in september 1992 , the bela vista was a popular meeting place for local residents and foreign visitors , serving reasonably priced macanese - style homely fare in a mediterranean - style ambience .",
"paraphrases": [
"Simple, comforting food",
"Basic, wholesome meals",
"Humble, unpretentious cuisine",
"Plain, hearty dishes",
"Rustic, down-to-earth cooking"
]
},
{
"id": "073",
"base": "importance",
"collocate": "small",
"collocation": "small importance",
"label": "AntiMagn",
"label_id": "1",
"context": "given the relatively small importance of that particular slice of the combined companies ' business , selling it could be a small price to pay .",
"paraphrases": [
"minor significance",
"little consequence",
"minimal relevance",
"inconsequential value",
"trivial weight"
]
},
{
"id": "074",
"base": "portion",
"collocate": "small",
"collocation": "small portion",
"label": "AntiMagn",
"label_id": "1",
"context": "milosevic initially submitted a list of 1,400 names , but only a small portion can be called during the 150 days he has been given to present his case .",
"paraphrases": [
"Tiny amount",
"Little bit",
"Miniature serving",
"Modest helping",
"Meager share"
]
},
{
"id": "075",
"base": "personality",
"collocate": "weak",
"collocation": "weak personality",
"label": "AntiMagn",
"label_id": "1",
"context": "` ` abbas has a very weak personality and everyone deals with him knows that , '' said ahmed yousef , who is also a member of the coalition government , which was dismissed by abbas following hamas ' violent takeover of gaza .",
"paraphrases": [
"Lacks assertiveness and confidence",
"Easily influenced by others",
"Struggles to make decisions independently",
"Tends to be submissive and passive",
"Avoids confrontation and yielding to pressure"
]
},
{
"id": "076",
"base": "security",
"collocate": "careless",
"collocation": "careless security",
"label": "AntiMagn",
"label_id": "1",
"context": "careless security procedures have been a longstanding problem at america 's nuclear laboratories under democratic and republican administrations .",
"paraphrases": [
"Negligent safeguarding",
"Lax protection measures",
"Inattentive safety procedures",
"Reckless defense protocols",
"Heedless precautionary practices"
]
},
{
"id": "077",
"base": "future",
"collocate": "near",
"collocation": "near future",
"label": "AntiMagn",
"label_id": "1",
"context": "ting pointed out that mainland china 's high - tech products will certainly enter the international consumer market after the two sides of the taiwan strait are admitted into the world trade organization ( wto ) in the near future .",
"paraphrases": [
"Soon",
"In the coming days",
"Before long",
"Just around the corner",
"Within a short time"
]
},
{
"id": "078",
"base": "analysis",
"collocate": "careful",
"collocation": "careful analysis",
"label": "Ver",
"label_id": "2",
"context": "` ` we conducted a careful analysis of world performances in every field , '' said cui dalin , the vice president of china 's olympic committee and an assistant sports minister .",
"paraphrases": [
"Meticulous examination",
"Thorough investigation",
"Detailed study",
"Precise evaluation",
"Comprehensive assessment"
]
},
{
"id": "079",
"base": "attempt",
"collocate": "successful",
"collocation": "successful attempt",
"label": "Ver",
"label_id": "2",
"context": "houston police spokesman robert hurst said an investigation was conducted into threats by ` ` certain parties '' involved in dominique 's earlier successful attempt to become a legal adult .",
"paraphrases": [
"Effective effort",
"Triumphant try",
"Fruitful endeavor",
"Accomplishing the goal",
"Victorious venture"
]
},
{
"id": "080",
"base": "respect",
"collocate": "genuine",
"collocation": "genuine respect",
"label": "Ver",
"label_id": "2",
"context": "` ` what does n't come through is genuine respect for others , for their humanity and their right of self - determination .",
"paraphrases": [
"Sincere admiration and regard",
"Authentic appreciation and esteem",
"Heartfelt deference and honor",
"Unfeigned reverence and veneration",
"True recognition and consideration"
]
},
{
"id": "081",
"base": "message",
"collocate": "clear",
"collocation": "clear message",
"label": "Ver",
"label_id": "2",
"context": "if we had had a policy of no rescues , we would have sent a clear message , a clear message that ocean safety has to be of paramount concern , of passengers , crews , and ocean shipping lines . ''",
"paraphrases": [
"Explicit communication",
"Unambiguous statement",
"Unmistakable signal",
"Straightforward information",
"Precise and concise point"
]
},
{
"id": "082",
"base": "death",
"collocate": "natural",
"collocation": "natural death",
"label": "Ver",
"label_id": "2",
"context": "as for the anonymous donors , the hospital said mark 's was an 18-year - old man who died in a motorcycle accident in southern california and sandra 's was a woman in her late 20s who died a natural death in northern california .",
"paraphrases": [
"Dying from non-violent causes",
"Passing away without external intervention",
"Expiring due to age or illness",
"End of life through natural processes",
"Mortality resulting from inherent biological factors"
]
},
{
"id": "083",
"base": "speak",
"collocate": "fluently",
"collocation": "speak fluently",
"label": "Ver",
"label_id": "2",
"context": "but at the edges , some people are pushing the boundaries of free expression , mostly in performances and publications in english , which many malaysians do n't speak fluently .",
"paraphrases": [
"Talk with ease",
"Communicate effortlessly",
"Express oneself smoothly",
"Articulate thoughts fluidly",
"Converse without hesitation"
]
},
{
"id": "084",
"base": "objective",
"collocate": "realistic",
"collocation": "realistic objective",
"label": "Ver",
"label_id": "2",
"context": "` ` an announcement that we will begin formal talks remains the realistic objective , '' he said in anticipation of a new framework for enhanced ties .",
"paraphrases": [
"Achievable goal",
"Attainable target",
"Feasible aim",
"Practical purpose",
"Sensible aspiration"
]
},
{
"id": "085",
"base": "signal",
"collocate": "clear",
"collocation": "clear signal",
"label": "Ver",
"label_id": "2",
"context": "that will ` ` send a clear signal to the market that we are going to value investment in new technology . ''",
"paraphrases": [
"Unambiguous message",
"Distinct indication",
"Unmistakable sign",
"Obvious communication",
"Lucid directive"
]
},
{
"id": "086",
"base": "criticize",
"collocate": "soundly",
"collocation": "soundly criticize",
"label": "Ver",
"label_id": "2",
"context": "knin , croatia ( ap ) thousands of croatian soldiers armed with bandar seri begawan , brunei ( ap ) asian and pacific countries on wednesday soundly criticized france for its planned resumption of nuclear tests in the south pacific , and australia called it a betrayal of trust .",
"paraphrases": [
"Strongly disapprove",
"Harshly condemn",
"Firmly denounce",
"Severely reprimand",
"Vehemently rebuke"
]
},
{
"id": "087",
"base": "prediction",
"collocate": "prescient",
"collocation": "prescient prediction",
"label": "Ver",
"label_id": "2",
"context": "the 78-year - old former wildcatter , who now heads the dallas - based hedge fund bp capital , is credited with a history of prescient predictions about the direction of oil markets .",
"paraphrases": [
"Foresighted forecast",
"Insightful prognosis",
"Prophetic projection",
"Clairvoyant foreshadowing",
"Visionary anticipation"
]
},
{
"id": "088",
"base": "morale",
"collocate": "high",
"collocation": "high morale",
"label": "Ver",
"label_id": "2",
"context": "the army reiterated its defiance after a night of punishing strikes on more than 50 targets , saying the ` ` high morale of the units was preserved . ''",
"paraphrases": [
"Positive attitude and confidence",
"Strong enthusiasm and motivation",
"Elevated spirit and optimism",
"Great sense of purpose and determination",
"Excellent mental state and resilience"
]
},
{
"id": "089",
"base": "witness",
"collocate": "fair",
"collocation": "fair witness",
"label": "Ver",
"label_id": "2",
"context": "through the organization she founded three years ago , christians for fair witness on the middle east , sister lautt has frequently and sharply clashed with the very denominations housed under the god box 's roof .",
"paraphrases": [
"Impartial observer",
"Unbiased testimony",
"Neutral spectator",
"Objective bystander",
"Unprejudiced eyewitness"
]
},
{
"id": "090",
"base": "distinguish",
"collocate": "strictly",
"collocation": "strictly distinguish",
"label": "Ver",
"label_id": "2",
"context": "` ` but the international community should strictly distinguish between violences staged by terrorists in the region and actions by the government of the sovereign country to crack down on terrorism , '' he said .",
"paraphrases": [
"Clearly differentiate",
"Precisely separate",
"Distinctly categorize",
"Rigorously discriminate",
"Unequivocally discern"
]
},
{
"id": "091",
"base": "argue",
"collocate": "strongly",
"collocation": "strongly argue",
"label": "Ver",
"label_id": "2",
"context": "some even argue strongly that the reasons the party has a slim majority in the house have less to do with ideology and more with the fact that the 1990 census was conducted in the traditional way .",
"paraphrases": [
"forcefully assert",
"vehemently contend",
"vigorously debate",
"ardently maintain",
"passionately advocate"
]
},
{
"id": "092",
"base": "source",
"collocate": "reliable",
"collocation": "reliable source",
"label": "Ver",
"label_id": "2",
"context": "according to reliable sources , the hamburgers had been prepared by the u.s. embassy in china .",
"paraphrases": [
"Trustworthy origin of information",
"Dependable informant or reference",
"Credible basis for facts",
"Authoritative and accurate provider of data",
"Verifiable fountain of knowledge"
]
},
{
"id": "093",
"base": "competition",
"collocate": "fair",
"collocation": "fair competition",
"label": "Ver",
"label_id": "2",
"context": "the kmt will only win the people 's trust when its helps legislate a law on political party assets and cooperate with the government in building a mechanism for political parties to engage in fair competition , lee said .",
"paraphrases": [
"Equal opportunity for success",
"Level playing field for all participants",
"Unbiased rivalry among competitors",
"Just and equitable contest",
"Impartial and honest rivalry"
]
},
{
"id": "094",
"base": "businessman",
"collocate": "shrewd",
"collocation": "shrewd businessman",
"label": "Ver",
"label_id": "2",
"context": "and to officials of the sport 's owning and governing body , nascar , he was a shrewd businessman who helped steer a regional sport with a bootlegger past into the entertainment mainstream .",
"paraphrases": [
"Astute entrepreneur",
"Savvy business person",
"Sharp-witted industry leader",
"Cunning commercial strategist",
"Perceptive and clever in business dealings"
]
},
{
"id": "095",
"base": "progress",
"collocate": "steady",
"collocation": "steady progress",
"label": "Ver",
"label_id": "2",
"context": "one of the men , ryan wilson , remains in a hospital where officials said he is making steady progress .",
"paraphrases": [
"Consistent advancement",
"Continual improvement",
"Regular headway",
"Constant forward movement",
"Unwavering development"
]
},
{
"id": "096",
"base": "argument",
"collocate": "sound",
"collocation": "sound argument",
"label": "Ver",
"label_id": "2",
"context": "gore 's stance not only contradicts a clear position he took seven months ago , it also means that it 's going to be harder for him to return to his old , sound arguments in favor of higher fuel taxes if he wins and oil prices plummet .",
"paraphrases": [
"Logical and well-reasoned case",
"Valid and compelling reasoning",
"Solid and persuasive line of thought",
"Rational and coherent justification",
"Strong and convincing evidence-based claim"
]
},
{
"id": "097",
"base": "remark",
"collocate": "incisive",
"collocation": "incisive remark",
"label": "Ver",
"label_id": "2",
"context": "siew 's shared sovereignty proposal an incisive remark : hk press hong kong , oct. 16 ( cna ) ( by jorge liu & amp ; eva chen ) republic of china premier vincent siew 's proposed unification formula of ` ` one country , shared sovereignty '' was praised in the hong kong press as being ` ` reasonable and incisive . ''",
"paraphrases": [
"Sharp and perceptive comment",
"Insightful and cutting observation",
"Acute and penetrating statement",
"Keen and discerning assertion",
"Astute and trenchant utterance"
]
},
{
"id": "098",
"base": "example",
"collocate": "canonical",
"collocation": "canonical example",
"label": "Ver",
"label_id": "2",
"context": "a canonical example of the type is jan vermeer 's ` ` allegory of painting '' ( 1667 ) .",
"paraphrases": [
"A standard or typical case",
"A representative instance of a category",
"A quintessential illustration of a concept",
"An archetypal model or pattern",
"A classic or definitive specimen"
]
},
{
"id": "099",
"base": "return",
"collocate": "safe",
"collocation": "safe return",
"label": "Ver",
"label_id": "2",
"context": "italy 's opposition has backed the demonstration , which is as much an anti - war rally as a demand for the release of sgrena , and the safe return of her french colleague florence aubenas and her iraqi driver hussein hanun al - saadi , who went missing in iraq a month before the italian .",
"paraphrases": [
"Secure homecoming",
"Protected arrival",
"Unharmed reappearance",
"Sheltered reentry",
"Guarded comeback"
]
},
{
"id": "100",
"base": "source",
"collocate": "accurate",
"collocation": "accurate source",
"label": "Ver",
"label_id": "2",
"context": "espn , which , at last check , was a sports network , runs frequent trial updates that are so thorough that judge ito himself cited the channel as the most accurate source of trial news .",
"paraphrases": [
"Reliable origin",
"Trustworthy information provider",
"Precise reference point",
"Dependable fountain of knowledge",
"Authoritative wellspring of truth"
]
},
{
"id": "101",
"base": "improvement",
"collocate": "steady",
"collocation": "steady improvement",
"label": "Ver",
"label_id": "2",
"context": "shaq making steady improvement at the line el segundo , calif. ( bc - bkn - lakernotes - ladn ) because the upward swings are so often followed by swift plunges , it 's almost pointless to track shaquille o'neal 's free - throw success rate , much less try to graph his progress or predict its future path .",
"paraphrases": [
"Consistent progress",
"Gradual advancement",
"Continuous enhancement",
"Regular growth",
"Constant betterment"
]
},
{
"id": "102",
"base": "violation",
"collocate": "clear",
"collocation": "clear violation",
"label": "Ver",
"label_id": "2",
"context": "cavalese , italy _ the low - flying u.s. jet that severed a ski lift cable , sending 20 people to their death , was in clear violation of italy 's air space regulations , the prime minister of this outraged nation says .",
"paraphrases": [
"Obvious breach",
"Blatant infringement",
"Evident transgression",
"Undeniable contravention",
"Unambiguous defiance of rules or norms"
]
},
{
"id": "103",
"base": "distinguish",
"collocate": "clearly",
"collocation": "distinguish clearly",
"label": "Ver",
"label_id": "2",
"context": "officials here say boutros - ghali had been reluctant to name an american commander because he wanted to distinguish clearly between the u.s.-led military intervention in haiti -- which is a full - scale combat - ready operation - and a u.n. mission that will be limited to peacekeeping .",
"paraphrases": [
"Differentiate with clarity",
"Make a clear distinction",
"Discern the differences precisely",
"Unmistakably identify the disparities",
"Recognize the distinctions unambiguously"
]
},
{
"id": "104",
"base": "violation",
"collocate": "patent",
"collocation": "patent violation",
"label": "Ver",
"label_id": "2",
"context": "japan 's sharp sues taiwan firm over alleged lcd patent violation tokyo , june 10 ( afp ) japanese consumer electronics maker sharp corp. said thursday it has sued a taiwan firm for allegedly violating its patent on liquid crystal display ( lcd ) technology .",
"paraphrases": [
"Infringement of a patented invention",
"Unauthorized use of a patented product or process",
"Breach of patent rights",
"Unlawful exploitation of a patented innovation",
"Illegal use of a patent-protected technology"
]
},
{
"id": "105",
"base": "intelligence",
"collocate": "solid",
"collocation": "solid intelligence",
"label": "Ver",
"label_id": "2",
"context": "he said there was vague but solid intelligence about a possible attack against israeli tourists in egypt 's sinai , where as many as 12,000 israelis were traveling for the holidays , according to the israeli foreign ministry .",
"paraphrases": [
"Reliable information",
"Credible data",
"Trustworthy facts",
"Dependable knowledge",
"Verifiable evidence"
]
},
{
"id": "106",
"base": "confession",
"collocate": "frank",
"collocation": "frank confession",
"label": "Ver",
"label_id": "2",
"context": "the frank confession from the 30-year - old was a reversal of his claim on the eve of the games when he said he was in good condition and a sub-10 .00 sec run was on .",
"paraphrases": [
"Honest admission",
"Candid disclosure",
"Straightforward acknowledgment",
"Sincere revelation",
"Open declaration of truth"
]
},
{
"id": "107",
"base": "lie",
"collocate": "good",
"collocation": "good lie",
"label": "Ver",
"label_id": "2",
"context": "from a good lie in the right rough just short of a bunker on the 465-yard 18th , he flipped an 8-iron into 6 feet to close out another strong round .",
"paraphrases": [
"A convincing falsehood",
"A well-crafted deception",
"An effective untruth",
"A persuasive fabrication",
"A plausible fib"
]
},
{
"id": "108",
"base": "owner",
"collocate": "rightful",
"collocation": "rightful owner",
"label": "Ver",
"label_id": "2",
"context": "german authorities have since returned the chest of drawers to the woman after saying that sale records indicate she is its rightful owner .",
"paraphrases": [
"Legitimate possessor",
"Lawful proprietor",
"Legal titleholder",
"Authorized holder",
"Entitled claimant"
]
},
{
"id": "109",
"base": "indication",
"collocate": "strong",
"collocation": "strong indication",
"label": "Ver",
"label_id": "2",
"context": "so the coming three - game road trip may be a strong indication of whether the slide is only temporary , or a sign of things to come .",
"paraphrases": [
"Clear sign",
"Compelling evidence",
"Robust signal",
"Convincing hint",
"Powerful suggestion"
]
},
{
"id": "110",
"base": "hypothesis",
"collocate": "viable",
"collocation": "viable hypothesis",
"label": "Ver",
"label_id": "2",
"context": "` ` if we get to the point where we believe we have a viable hypothesis that works in the lab , then we have scientific grounds to go to turin and say , ` here 's what we think has happened to the shroud .",
"paraphrases": [
"Plausible explanation",
"Workable theory",
"Reasonable supposition",
"Feasible conjecture",
"Credible premise"
]
},
{
"id": "111",
"base": "question",
"collocate": "proper",
"collocation": "proper question",
"label": "Ver",
"label_id": "2",
"context": "'' the proper question , kennedy continued , was ` ` whether the prisoner made a reasonable attempt , in light of the information available at the time , to investigate and pursue claims in state court , '' not on whether the effort was successful .",
"paraphrases": [
"Appropriate inquiry",
"Fitting interrogative",
"Suitable query",
"Apt question",
"Correct inquiry"
]
},
{
"id": "112",
"base": "coverage",
"collocate": "adequate",
"collocation": "adequate coverage",
"label": "Ver",
"label_id": "2",
"context": "at the same time , many believe it has never been given adequate coverage in the classroom .",
"paraphrases": [
"Sufficient protection",
"Ample scope",
"Satisfactory extent",
"Proper inclusion",
"Acceptable range"
]
},
{
"id": "113",
"base": "mind",
"collocate": "sound",
"collocation": "sound mind",
"label": "Ver",
"label_id": "2",
"context": "arguments in court on the opening day of her trial focused on defence claims she was not of sound mind at the time of the killing .",
"paraphrases": [
"Rational thinking",
"Mentally stable",
"Healthy cognitive function",
"Clear and coherent thoughts",
"Psychologically well-balanced"
]
},
{
"id": "114",
"base": "source",
"collocate": "unimpeachable",
"collocation": "unimpeachable source",
"label": "Ver",
"label_id": "2",
"context": "the philippine star : -- former defense secretary renato de villa is preparing to bolt the ruling lakas - nucd party to continue his bid for the presidency in 1998 , an unimpeachable source said on thursday .",
"paraphrases": [
"Trustworthy origin",
"Reliable informant",
"Credible authority",
"Dependable provenance",
"Unquestionable root"
]
},
{
"id": "115",
"base": "tool",
"collocate": "sharp",
"collocation": "sharp tool",
"label": "Ver",
"label_id": "2",
"context": "hawass said carter 's team damaged the mummy as they used sharp tools to prize off the famous gold and blue mask .",
"paraphrases": [
"Precise instrument",
"Keen-edged implement",
"Razor-sharp utensil",
"Finely honed device",
"Acutely pointed apparatus"
]
},
{
"id": "116",
"base": "plans",
"collocate": "clear",
"collocation": "plans clear",
"label": "Ver",
"label_id": "2",
"context": "dpp chairman to make job plans clear by saturday taipei , may 22 ( cna ) ( by lilian wu ) lin yi - hsiung , chairman of the ruling democratic progressive party , on monday was still unwilling to give a clear indication whether he intends to stay on as party chairman .",
"paraphrases": [
"Objectives are well-defined",
"Goals are unambiguous",
"Intentions are straightforward",
"Strategies are transparent",
"Blueprints are lucid"
]
},
{
"id": "117",
"base": "define",
"collocate": "roughly",
"collocation": "roughly define",
"label": "AntiVer",
"label_id": "3",
"context": "to succeed , the antiviral drug tamiflu would have to be distributed to 90 percent of the targeted population , roughly defined as those within at least a three - mile radius of each case .",
"paraphrases": [
"Approximately outline",
"Broadly describe",
"Give a general idea",
"Loosely characterize",
"Imprecisely delineate"
]
},
{
"id": "118",
"base": "competition",
"collocate": "unscrupulous",
"collocation": "unscrupulous competition",
"label": "AntiVer",
"label_id": "3",
"context": "partly because of unscrupulous competition from bigger record companies , trumpet folded in 1955 , but the mcmurrys eventually managed to pay off its debts .",
"paraphrases": [
"Dishonest business practices",
"Unfair market rivalry",
"Unethical competitive tactics",
"Ruthless corporate behavior",
"Unprincipled industry contention"
]
},
{
"id": "119",
"base": "attempt",
"collocate": "vainly",
"collocation": "vainly attempt",
"label": "AntiVer",
"label_id": "3",
"context": "the woman vainly attempted to protect the children by wrapping them in her arms , he said .",
"paraphrases": [
"Try unsuccessfully",
"Futilely endeavor",
"Make a fruitless effort",
"Strive without success",
"Attempt in vain"
]
},
{
"id": "120",
"base": "claim",
"collocate": "unfounded",
"collocation": "unfounded claim",
"label": "AntiVer",
"label_id": "3",
"context": "bush 's over - reaction to a report that did nov { tpport his reasons for putting men and women in harm 's way was eerily reminiscent of his earlier unfounded claim after two empty trucks were discovered .",
"paraphrases": [
"Baseless assertion",
"Unsubstantiated statement",
"Claim lacking evidence",
"Allegation without proof",
"Groundless declaration"
]
},
{
"id": "121",
"base": "situation",
"collocate": "fluid",
"collocation": "fluid situation",
"label": "AntiVer",
"label_id": "3",
"context": "some belated schedule - juggling takes place in every political operation , as tacticians react to fluid situations or simply change their minds about the best way to use a candidate 's time .",
"paraphrases": [
"Constantly changing circumstances",
"Dynamic and evolving conditions",
"Rapidly shifting state of affairs",
"Unpredictable and variable environment",
"Ever-changing landscape of events"
]
},
{
"id": "122",
"base": "description",
"collocate": "inaccurate",
"collocation": "inaccurate description",
"label": "AntiVer",
"label_id": "3",
"context": "` ` smith barney management was not aware of the purchase of the ticket because the employee submitted an invoice containing an inaccurate description of the expense , '' the company said in a statement .",
"paraphrases": [
"Incorrect portrayal",
"Imprecise depiction",
"Inexact characterization",
"Erroneous representation",
"Faulty account"
]
},
{
"id": "123",
"base": "faucet",
"collocate": "leaky",
"collocation": "leaky faucet",
"label": "AntiVer",
"label_id": "3",
"context": "` ` you hate to even think about it , '' torre said , recalling how games had fallen off the lead like drops of water from a leaky faucet .",
"paraphrases": [
"Dripping tap",
"Water-wasting fixture",
"Constantly dripping spigot",
"Faucet with a slow leak",
"Plumbing fixture that needs repair",
""
]
},
{
"id": "124",
"base": "promise",
"collocate": "unfulfilled",
"collocation": "unfulfilled promise",
"label": "AntiVer",
"label_id": "3",
"context": "secondary school teachers strike in burundi bujumbura , may 13 ( afp ) thousands of secondary school teachers in burundi began a week - long strike monday to protest unfulfilled promises to improve pay and working conditions , an afp journalist reported .",
"paraphrases": [
"Broken commitment",
"Pledge not kept",
"Assurance left incomplete",
"Vow remained unaccomplished",
"Guarantee that fell short"
]
},
{
"id": "125",
"base": "hope",
"collocate": "idle",
"collocation": "idle hope",
"label": "AntiVer",
"label_id": "3",
"context": "` ` i can not stay idle hoping chris byrd , lewis or roy jones will fight me , '' holyfield said .",
"paraphrases": [
"Futile wish",
"Vain expectation",
"Unproductive desire",
"Pointless optimism",
"Unrealistic aspiration"
]
},
{
"id": "126",
"base": "bullet",
"collocate": "stray",
"collocation": "stray bullet",
"label": "AntiVer",
"label_id": "3",
"context": "three british soldiers also lost their lives _ one of them to a stray bullet from his own side .",
"paraphrases": [
"Random projectile",
"Unintended shot",
"Misdirected round",
"Wayward bullet",
"Errant ammunition"
]
},
{
"id": "127",
"base": "lie",
"collocate": "palpable",
"collocation": "palpable lie",
"label": "AntiVer",
"label_id": "3",
"context": "their claim to be fighting for the liberation of their country is a palpable lie .",
"paraphrases": [
"obvious falsehood",
"blatant untruth",
"evident deception",
"clear fabrication",
"unmistakable mendacity"
]
},
{
"id": "128",
"base": "charges",
"collocate": "baseless",
"collocation": "charges baseless",
"label": "AntiVer",
"label_id": "3",
"context": "in a motion filed with the marikina trial court , tan 's lawyer , former justice minister estelito mendoza , called the charges baseless .",
"paraphrases": [
"Accusations lack evidence",
"Allegations without foundation",
"Claims are groundless",
"Unsubstantiated assertions",
"Charges devoid of proof"
]
},
{
"id": "129",
"base": "escape",
"collocate": "hairbreadth",
"collocation": "hairbreadth escape",
"label": "AntiVer",
"label_id": "3",
"context": "the whole history of ` ` beowulf , '' the oldest poem in the english language , is one of hairbreadth escapes from fire , bombardment , disdain , neglect , the yawning boredom of undergraduates and the stony indifference of the english - speaking public .",
"paraphrases": [
"Narrowly avoided danger",
"Barely managed to flee",
"Escaped by a tiny margin",
"Just evaded peril",
"Avoided disaster by a hair's width"
]
},
{
"id": "130",
"base": "accuse",
"collocate": "falsely",
"collocation": "falsely accuse",
"label": "AntiVer",
"label_id": "3",
"context": "edmond begins the movie as a wide - eyed innocent , but his trust in man 's goodness is shattered when he 's falsely accused of treason and sent to prison .",
"paraphrases": [
"Wrongly blame",
"Unjustly incriminate",
"Erroneously charge",
"Incorrectly attribute guilt",
"Unfairly implicate"
]
},
{
"id": "131",
"base": "morale",
"collocate": "low",
"collocation": "low morale",
"label": "AntiVer",
"label_id": "3",
"context": "in a phone interview , lombardi cited low morale in the largely expatriate staff and the dollar 's weakness , which has undermined the competitiveness of imf salaries , especially for europeans .",
"paraphrases": [
"Lack of enthusiasm and motivation",
"Decreased confidence and optimism",
"Diminished drive and determination",
"Deflated spirit and zeal",
"Reduced passion and commitment"
]
},
{
"id": "132",
"base": "nose",
"collocate": "stuffed",
"collocation": "stuffed nose",
"label": "AntiVer",
"label_id": "3",
"context": "baxter tested positive for methamphetamine , a banned stimulant which was contained in an over - the - counter nasal inhaler he was taking for a stuffed nose .",
"paraphrases": [
"Congested nasal passages",
"Blocked sinus cavities",
"Difficulty breathing through the nose",
"Nasal obstruction causing discomfort",
"Feeling of fullness in the nostrils"
]
},
{
"id": "133",
"base": "combat",
"collocate": "losing",
"collocation": "losing combat",
"label": "AntiVer",
"label_id": "3",
"context": "` ` we must overcome the psychology of a transitional period when we were struggling for survival at any cost , even at the expense of losing combat readiness , '' he said .",
"paraphrases": [
"Being defeated in battle",
"Suffering losses in a fight",
"Failing to win a military engagement",
"Experiencing setbacks in warfare",
"Struggling in armed conflict"
]
},
{
"id": "134",
"base": "hope",
"collocate": "futile",
"collocation": "futile hope",
"label": "AntiVer",
"label_id": "3",
"context": "wajda 's film , which is called ` ` post mortem '' , will focus on the women who waited in anguish and eternal but futile hope for their menfolk to return from the killing fields of eastern europe .",
"paraphrases": [
"Pointless expectation",
"Vain aspiration",
"Useless optimism",
"Hopeless desire",
"Fruitless anticipation"
]
},
{
"id": "135",
"base": "lie",
"collocate": "crude",
"collocation": "crude lie",
"label": "AntiVer",
"label_id": "3",
"context": "in addition to arguing the perjury and obstruction of justice charges , the prosecutors also seemed to try to portray clinton as a lowlife , a user of women who cared so little about them that he was willing to tell crude lies about them to trusted aides .",
"paraphrases": [
"Blatant falsehood",
"Obvious untruth",
"Glaring deception",
"Flagrant fabrication",
"Overt mendacity"
]
},
{
"id": "136",
"base": "hope",
"collocate": "against hope",
"collocation": "hope against hope",
"label": "AntiVer",
"label_id": "3",
"context": "_ _ _ the lakers ( owner jerry buss excepted ) are hoping against hope that magic johnson simply decides he 's not a ' 90s kind of guy and hangs 'em up .",
"paraphrases": [
"Persist in hoping despite unlikely odds",
"Maintain optimism in the face of adversity",
"Cling to hope when success seems improbable",
"Refuse to abandon hope, even in dire circumstances",
"Hold onto faith against overwhelming odds"
]
},
{
"id": "137",
"base": "attempt",
"collocate": "unsuccessful",
"collocation": "unsuccessful attempt",
"label": "AntiVer",
"label_id": "3",
"context": "his first legal challenge in an atheist cause was an unsuccessful attempt to get the phrase ` ` in god we trust '' removed from us currency .",
"paraphrases": [
"Failed effort",
"Fruitless endeavor",
"Ineffective try",
"Unproductive venture",
"Futile undertaking"
]
},
{
"id": "138",
"base": "approach",
"collocate": "misguided",
"collocation": "misguided approach",
"label": "AntiVer",
"label_id": "3",
"context": "a decade and a half of ill - prepared young men coming out of school early in order to turn professional , combined with misguided approaches to the game itself , have combined to lower the level of talent coming into the league .",
"paraphrases": [
"Flawed strategy",
"Ill-advised method",
"Erroneous tactic",
"Misdirected course of action",
"Wayward plan"
]
},
{
"id": "139",
"base": "speak",
"collocate": "haltingly",
"collocation": "speak haltingly",
"label": "AntiVer",
"label_id": "3",
"context": "havel , who is recovering from pneumonia and spoke haltingly , said he would meet leaders of all three coalition parties sunday afternoon for talks .",
"paraphrases": [
"Talk with frequent pauses",
"Speak with hesitation",
"Converse in a stuttering manner",
"Communicate with intermittent breaks",
"Express oneself falteringly"
]
},
{
"id": "140",
"base": "argument",
"collocate": "fallacious",
"collocation": "fallacious argument",
"label": "AntiVer",
"label_id": "3",
"context": "castle said it 's ` ` a fallacious argument '' that the process will lead to cloning or that stem cell research should be blocked because of it .",
"paraphrases": [
"Incorrect reasoning",
"Flawed logic",
"Faulty premise",
"Unsound claim",
"Erroneous assertion"
]
},
{
"id": "141",
"base": "threat",
"collocate": "hollow",
"collocation": "hollow threat",
"label": "AntiVer",
"label_id": "3",
"context": "as some members of the dnc noted today , the threat not to seat the delegates of michigan and florida at the democratic convention is a hollow threat , '' sen. carl levin said in a written statement .",
"paraphrases": [
"Empty promise of harm or punishment",
"Intimidation without intent to follow through",
"Warning that lacks substance or credibility",
"Menacing statement unlikely to be carried out",
"Bluff or false threat of consequences"
]
},
{
"id": "142",
"base": "conditions",
"collocate": "harsh",
"collocation": "harsh conditions",
"label": "AntiVer",
"label_id": "3",
"context": "illegal immigrants face harsh conditions athens , greece ( ap ) most of the half - million illegal immigrants working in greece face harsh conditions , including low pay , a lack of medical care , fear of police and no education for their children .",
"paraphrases": [
"Difficult circumstances",
"Challenging environment",
"Severe situation",
"Demanding state of affairs",
"Tough predicament"
]
},
{
"id": "143",
"base": "fear",
"collocate": "groundless",
"collocation": "groundless fear",
"label": "AntiVer",
"label_id": "3",
"context": "some people may not even have assets worth $ 600,000 , the point at which estates become taxable , but they rush to put assets into trust on groundless fears that the irs will snatch the money away .",
"paraphrases": [
"Irrational anxiety",
"Unfounded apprehension",
"Baseless dread",
"Unsubstantiated terror",
"Illogical trepidation"
]
},
{
"id": "144",
"base": "heart",
"collocate": "weak",
"collocation": "weak heart",
"label": "AntiVer",
"label_id": "3",
"context": "rappe ordered deputies to take wempe , who suffers from diabetes and a weak heart , into custody in the courtroom .",
"paraphrases": [
"Cardiovascular fragility",
"Feeble cardiac muscle",
"Delicate heart condition",
"Frail circulatory organ",
"Vulnerable heart health"
]
},
{
"id": "145",
"base": "coverage",
"collocate": "inadequate",
"collocation": "inadequate coverage",
"label": "AntiVer",
"label_id": "3",
"context": "therefore , as concern mounts about the 45 million americans without health - care insurance , the increasingly overlooked problem is inadequate coverage for seniors despite medicare 's promise .",
"paraphrases": [
"Insufficient protection",
"Not enough insurance",
"Lacking necessary safeguards",
"Incomplete security measures",
"Deficient shielding or defense"
]
},
{
"id": "146",
"base": "accusation",
"collocate": "baseless",
"collocation": "accusation baseless",
"label": "AntiVer",
"label_id": "3",
"context": "through robert bennett , his lawyer , the president continued friday to call mrs. jones ' accusation baseless .",
"paraphrases": [
"Unfounded allegation",
"Claim without evidence",
"Unsubstantiated charge",
"Groundless accusation",
"Assertion lacking proof"
]
},
{
"id": "147",
"base": "arrest",
"collocate": "illegal",
"collocation": "illegal arrest",
"label": "AntiVer",
"label_id": "3",
"context": "the complaint filed tuesday accuses the officers of making an illegal arrest , causing bodily harm to mack , subjecting him to inhuman and degrading treatment and falsifying public documents , mack 's lawyer 's office said .",
"paraphrases": [
"Unlawful detention",
"Wrongful apprehension",
"Unjustified custody",
"Illicit confinement",
"Unauthorized capture"
]
},
{
"id": "148",
"base": "conception",
"collocate": "misguided",
"collocation": "misguided conception",
"label": "AntiVer",
"label_id": "3",
"context": "there has been ` ` a misguided conception that it should be a one - pound meatball nesting in the middle of a big pile of red - sauced noodles , '' says san francisco chef and mediterranean food expert joyce goldstein .",
"paraphrases": [
"Incorrect belief",
"Flawed understanding",
"Erroneous notion",
"Mistaken idea",
"Fallacious perception"
]
},
{
"id": "149",
"base": "view",
"collocate": "biased",
"collocation": "biased view",
"label": "AntiVer",
"label_id": "3",
"context": "says d'vorkin : ` ` the thing that excites me about online news is the notion of having an engaged audience ... . people think the news media offer biased views .",
"paraphrases": [
"Prejudiced perspective",
"Skewed outlook",
"One-sided opinion",
"Partial viewpoint",
"Slanted perception"
]
},
{
"id": "150",
"base": "belief",
"collocate": "mistaken",
"collocation": "mistaken belief",
"label": "AntiVer",
"label_id": "3",
"context": "kay said that massive intelligence failures led to the mistaken belief iraq had such arms in violation of un sanctions , calling for an independent investigation .",
"paraphrases": [
"Incorrect assumption",
"Faulty conviction",
"Erroneous impression",
"Misguided notion",
"False understanding"
]
},
{
"id": "151",
"base": "evidence",
"collocate": "unreliable",
"collocation": "unreliable evidence",
"label": "AntiVer",
"label_id": "3",
"context": "he is also the first to have successfully challenged his detention , when the special immigration appeals commission ruled he was behind locked up on the basis of ` ` wholly unreliable evidence '' .",
"paraphrases": [
"Untrustworthy proof",
"Questionable substantiation",
"Dubious testimony",
"Undependable corroboration",
"Unconvincing confirmation"
]
},
{
"id": "152",
"base": "shelves",
"collocate": "bare",
"collocation": "bare shelves",
"label": "AntiVer",
"label_id": "3",
"context": "zimbabwe opposition leader inspector empty shelves harare , aug 1 , 2007 ( afp ) zimbabwe 's opposition leader morgan tsvangirai found himself between bare shelves when he toured shops in harare on wednesday after a six - week government crackdown on businesses accused of profiteering .",
"paraphrases": [
"Empty shelves",
"Shelves lacking products",
"Shelves devoid of items",
"Shelves stripped bare",
"Shelves with no stock"
]
},
{
"id": "153",
"base": "landing",
"collocate": "emergency",
"collocation": "emergency landing",
"label": "AntiVer",
"label_id": "3",
"context": "the pilot tried to make an emergency landing , civil aviation director jose carlos said .",
"paraphrases": [
"Unplanned landing due to urgent situation",
"Forced landing to ensure safety",
"Precautionary landing in response to crisis",
"Prioritized landing necessitated by emergency",
"Unexpected landing prompted by critical circumstances"
]
},
{
"id": "154",
"base": "atmosphere",
"collocate": "febrile",
"collocation": "febrile atmosphere",
"label": "AntiVer",
"label_id": "3",
"context": "the iea forecast that extra supplies of crude oil and refined products such as gasoline would help cool the febrile atmosphere on world markets .",
"paraphrases": [
"Tense and restless environment",
"Highly charged and feverish ambiance",
"Nervous and agitated mood",
"Emotionally heated and frenzied setting",
"Excitable and fevered surroundings"
]
},
{
"id": "155",
"base": "health",
"collocate": "poor",
"collocation": "poor health",
"label": "AntiVer",
"label_id": "3",
"context": "in more recent years she has suffered poor health but this sudden news of her death comes as a shock , '' clark said in a statement .",
"paraphrases": [
"Ill and unhealthy condition",
"Suboptimal physical well-being",
"Lacking vitality and vigor",
"Deteriorated bodily state",
"Suffering from ailments and sickness"
]
},
{
"id": "156",
"base": "belief",
"collocate": "erroneous",
"collocation": "erroneous belief",
"label": "AntiVer",
"label_id": "3",
"context": "the highly respected glass ceiling commission recently concluded that ` ` serious barriers to advancement remain -- such as persistent stereotyping , erroneous beliefs that ` no qualified women or minorities are out there ' and plain old fear of change . ''",
"paraphrases": [
"Incorrect opinion",
"Mistaken conviction",
"Fallacious viewpoint",
"Inaccurate understanding",
"Flawed notion"
]
},
{
"id": "157",
"base": "steak",
"collocate": "tender",
"collocation": "tender steak",
"label": "Bon",
"label_id": "4",
"context": "washington there 's nothing like a tender steak from a free - range , grass - fed , hormone - free , antibiotic - free , organic and -- oh , yes -- cloned cow .",
"paraphrases": [
"Soft, juicy beef",
"Succulent, easy-to-cut meat",
"Melt-in-your-mouth steak",
"Delicate, flavorful cut of beef",
"Gently cooked, tender beef slices"
]
},
{
"id": "158",
"base": "mind",
"collocate": "beautiful",
"collocation": "beautiful mind",
"label": "Bon",
"label_id": "4",
"context": "` ` it 's pre - researched material , '' says producer brian grazer , who says his oscar - winning 2001 film ` ` a beautiful mind '' would ' ve been a tough sell if it had n't been based on a book .",
"paraphrases": [
"Brilliant and creative intellect",
"Exceptional intelligence and imagination",
"Gifted with remarkable mental abilities",
"Possessing a sharp and insightful mind",
"An extraordinary and innovative thinker"
]
},
{
"id": "159",
"base": "reception",
"collocate": "warm",
"collocation": "warm reception",
"label": "Bon",
"label_id": "4",
"context": "in contrast to lee , who enjoyed a warm unofficial reception from administration officials in washington earlier this year , roh has reportedly never visited the united states , and has said he would n't come here as president merely for a photo - op .",
"paraphrases": [
"Friendly welcome",
"Enthusiastic greeting",
"Cordial acknowledgment",
"Hearty acceptance",
"Amiable hospitality"
]
},
{
"id": "160",
"base": "record",
"collocate": "strong",
"collocation": "record strong",
"label": "Bon",
"label_id": "4",
"context": "many of mexico 's largest businesses fell as investors sold shares of companies that have recorded strong gains this year , traders said .",
"paraphrases": [
"Achieve impressive results",
"Deliver outstanding performance",
"Attain remarkable outcomes",
"Demonstrate exceptional accomplishments",
"Exhibit superior performance"
]
},
{
"id": "161",
"base": "intention",
"collocate": "good",
"collocation": "good intention",
"label": "Bon",
"label_id": "4",
"context": "unless we get behind the momentum already building and give it the push that only popular support can give to turn good intentions into political and economic realities , we may lose this great treasury .",
"paraphrases": [
"Positive motive",
"Well-meaning purpose",
"Benevolent aim",
"Sincere objective",
"Honorable goal"
]
},
{
"id": "162",
"base": "head",
"collocate": "great",
"collocation": "great head",
"label": "Bon",
"label_id": "4",
"context": "a few more weeks of training and we could have a great head - to - head battle to crack the world record . ''",
"paraphrases": [
"Excellent mind",
"Highly intelligent person",
"Someone with remarkable mental abilities",
"An individual with exceptional cognitive skills",
"A person possessing great intellectual capacity"
]
},
{
"id": "163",
"base": "diet",
"collocate": "healthy",
"collocation": "healthy diet",
"label": "Bon",
"label_id": "4",
"context": "boston ( ap ) people with high cholesterol need to exercise to get the full benefits of a healthy diet , a study concludes .",
"paraphrases": [
"Nutritious eating habits",
"Balanced food intake",
"Wholesome meal plan",
"Nutrient-rich cuisine",
"Health-promoting sustenance"
]
},
{
"id": "164",
"base": "industry",
"collocate": "thriving",
"collocation": "industry thriving",
"label": "Bon",
"label_id": "4",
"context": "marijuana industry thriving in british columbia vancouver ( ap ) _ it 's nearly harvest time and the pot plants are thriving .",
"paraphrases": [
"Booming business sector",
"Prosperous industrial growth",
"Flourishing manufacturing economy",
"Thriving commercial activities",
"Successful and expanding enterprises"
]
},
{
"id": "165",
"base": "condition",
"collocate": "mint",
"collocation": "mint condition",
"label": "Bon",
"label_id": "4",
"context": "it is in mint condition , but dusty , like a great piece of furniture discovered under a tarp at the back of a barn .",
"paraphrases": [
"Perfect and pristine state",
"As if brand new",
"Flawless and untouched condition",
"Impeccable and unblemished",
"Immaculate and unspoiled state"
]
},
{
"id": "166",
"base": "turn out",
"collocate": "well",
"collocation": "turn out well",
"label": "Bon",
"label_id": "4",
"context": "yesterday they talked about what they were going to do , today they did the operation and everything turned out well .",
"paraphrases": [
"Result in a positive outcome",
"End up being successful",
"Conclude favorably",
"Finish with a good result",
"Have a satisfactory conclusion"
]
},
{
"id": "167",
"base": "day",
"collocate": "bright",
"collocation": "bright day",
"label": "Bon",
"label_id": "4",
"context": "it was a bright day for the senate and a dark day for the judiciary . ''",
"paraphrases": [
"Sunny weather",
"Clear skies and radiant sunlight",
"A day filled with brilliant sunshine",
"Luminous daylight illuminating the surroundings",
"Dazzling sun rays on a cloudless day"
]
},
{
"id": "168",
"base": "escape",
"collocate": "lucky",
"collocation": "lucky escape",
"label": "Bon",
"label_id": "4",
"context": "kallis had a lucky escape on 61 when a delivery from spinner harbhajan singh hit his gloves and rolled on to the stumps , but did not dislodge the bails .",
"paraphrases": [
"Fortunate avoidance of danger",
"Narrow evasion of harm",
"Providential deliverance from peril",
"Serendipitous flight from misfortune",
"Blessed reprieve from jeopardy"
]
},
{
"id": "169",
"base": "weather",
"collocate": "good",
"collocation": "good weather",
"label": "Bon",
"label_id": "4",
"context": "bethesda also has one elevated deck that serves as the patio for black 's bar & amp ; kitchen and one old standby hangout , steamers , which is almost all deck , always covered but in good weather open - sided .",
"paraphrases": [
"Pleasant atmospheric conditions",
"Favorable climate for outdoor activities",
"Ideal temperature and minimal precipitation",
"Sunny skies and comfortable air",
"Optimal meteorological elements for enjoyment"
]
},
{
"id": "170",
"base": "explanation",
"collocate": "credible",
"collocation": "credible explanation",
"label": "Bon",
"label_id": "4",
"context": "` ` no one has given me any credible explanation why people living in wazir akbar khan have been evicted , '' he said .",
"paraphrases": [
"Believable reasoning",
"Plausible justification",
"Convincing rationale",
"Trustworthy clarification",
"Reliable elucidation"
]
},
{
"id": "171",
"base": "smile",
"collocate": "beguiling",
"collocation": "beguiling smile",
"label": "Bon",
"label_id": "4",
"context": "the nice - naughty image -- a sweet and beguiling smile matched with a curvacious figure and page 's propensity for burlesque films and bondage images -- proved highly combustible on the eve of america 's sexual revolution .",
"paraphrases": [
"Charming grin",
"Enchanting smirk",
"Alluring beam",
"Captivating simper",
"Mesmerizing smile"
]
},
{
"id": "172",
"base": "bread",
"collocate": "fresh",
"collocation": "fresh bread",
"label": "Bon",
"label_id": "4",
"context": "crusty , fresh white bread , butter , tasty preserves , papaya and mango juice and fabulous puerto rican coffee .",
"paraphrases": [
"Newly baked loaf",
"Recently made bread",
"Bread straight from the oven",
"Bread baked today",
"Warm, soft bread just baked"
]
},
{
"id": "173",
"base": "weather",
"collocate": "bright",
"collocation": "bright weather",
"label": "Bon",
"label_id": "4",
"context": "while chilly economic winds are blowing through the lower 48 , alaska is enjoying bright economic weather , created in large part by strong oil prices _ currently around $ 25 per barrel _ that translate into higher state revenue , higher employment and overall higher hopes .",
"paraphrases": [
"Sunny conditions",
"Clear, luminous skies",
"Radiant, fair weather",
"Brilliant, cloudless days",
"Dazzling, light-filled atmosphere"
]
},
{
"id": "174",
"base": "smile",
"collocate": "bright",
"collocation": "bright smile",
"label": "Bon",
"label_id": "4",
"context": "teresa legalley , formerly teresa garpstas , tall and slim with long brown hair and a bright smile , grew up in ohio and went to wright state college in dayton .",
"paraphrases": [
"Radiant grin",
"Beaming expression",
"Luminous smile",
"Brilliant, joyful countenance",
"Dazzling, cheerful smirk"
]
},
{
"id": "175",
"base": "condition",
"collocate": "superb",
"collocation": "superb condition",
"label": "Bon",
"label_id": "4",
"context": "these two countries enjoy a powerful combination : very low production costs and superb conditions for growing grapes .",
"paraphrases": [
"Excellent state",
"Perfect shape",
"Impeccable form",
"Flawless quality",
"Outstanding condition"
]
},
{
"id": "176",
"base": "example",
"collocate": "excellent",
"collocation": "excellent example",
"label": "Bon",
"label_id": "4",
"context": "` ` this is an excellent example of cooperation between the police forces of the two entities , a very high level of professionalism , and we will hope that this will become more the tradition rather than just an isolated incident , '' the un spokesman said .",
"paraphrases": [
"Perfect illustration",
"Prime specimen",
"Ideal representation",
"Quintessential model",
"Exemplary instance"
]
},
{
"id": "177",
"base": "smile",
"collocate": "dazzlingly",
"collocation": "smile dazzlingly",
"label": "Bon",
"label_id": "4",
"context": "nurses smile dazzlingly as they slip in and out of surgical rooms equipped with high - tech drills and chairs .",
"paraphrases": [
"Grin brilliantly",
"Flash a stunning smile",
"Beam with blinding radiance",
"Shine a captivating smile",
"Smile with mesmerizing brightness"
]
},
{
"id": "178",
"base": "tradition",
"collocate": "respectable",
"collocation": "respectable tradition",
"label": "Bon",
"label_id": "4",
"context": "she went on to say : ` ` if we ' ve grown up at the movies , we know that good work is not continuous with the academic , respectable tradition but with glimpses of something good in trash , but we want the subversive gesture carried to the domain of discovery .",
"paraphrases": [
"Time-honored custom",
"Venerable practice",
"Esteemed convention",
"Admirable heritage",
"Dignified and established way"
]
},
{
"id": "179",
"base": "idea",
"collocate": "promising",
"collocation": "promising idea",
"label": "Bon",
"label_id": "4",
"context": "the product extension prize narrowly eluded samsung , which this year had the promising idea of a two - level microwave .",
"paraphrases": [
"Concept with great potential",
"Notion that shows promise",
"Exciting and hopeful thought",
"Idea with a bright future",
"Promising and innovative plan"
]
},
{
"id": "180",
"base": "shape",
"collocate": "good",
"collocation": "good shape",
"label": "Bon",
"label_id": "4",
"context": "most of greenspan 's appearance before the committee was devoted to assessing the state of the banking system , which he said entered the economic slowdown in good shape .",
"paraphrases": [
"Physically fit",
"In optimal condition",
"Healthy and strong",
"Well-maintained and sound",
"Excellent physical form"
]
},
{
"id": "181",
"base": "cook",
"collocate": "to perfection",
"collocation": "cook to perfection",
"label": "Bon",
"label_id": "4",
"context": "stark and sleek , with amusing fish sculptures , toofey 's serves nori rolls of prawn and garfish ( a long , thin fish with delicate white flesh ) , seafood risotto and the freshest fish of the day cooked to perfection .",
"paraphrases": [
"Prepare food flawlessly",
"Achieve optimal culinary results",
"Create an ideal dish",
"Cook masterfully",
"Attain the perfect flavor and texture"
]
},
{
"id": "182",
"base": "hope",
"collocate": "bright",
"collocation": "bright hope",
"label": "Bon",
"label_id": "4",
"context": "the associated press ' mike silverman called licitra ` ` a bright hope '' and said ` ` his high notes are clean and strong , though he lacks that unique ` ping ' in the voice that made pavarotti 's high notes so thrilling in their effortlessness . ''",
"paraphrases": [
"Promising future",
"Optimistic outlook",
"Shining aspirations",
"Radiant expectations",
"Luminous anticipation"
]
},
{
"id": "183",
"base": "shot",
"collocate": "crack",
"collocation": "crack shot",
"label": "Bon",
"label_id": "4",
"context": "a crack shot , his guns and hunting expeditions were reported on in detail across the country .",
"paraphrases": [
"Expert marksman",
"Highly skilled shooter",
"Precise and accurate with a firearm",
"Consistently hits the target",
"Proficient in shooting with great aim"
]
},
{
"id": "184",
"base": "condition",
"collocate": "immaculate",
"collocation": "immaculate condition",
"label": "Bon",
"label_id": "4",
"context": "it 's the toughest of them all on the open rota and it 's in immaculate condition .",
"paraphrases": [
"Pristine state",
"Perfect shape",
"Flawless appearance",
"Spotless and unblemished",
"Excellent condition, like new"
]
},
{
"id": "185",
"base": "weather",
"collocate": "glorious",
"collocation": "glorious weather",
"label": "Bon",
"label_id": "4",
"context": "the glorious summer weather in hobart could scarcely have been a greater contrast to the tumultuous seas that five days ago brought havoc and death to the race fleet .",
"paraphrases": [
"Perfect sunny day",
"Splendid outdoor conditions",
"Magnificent atmospheric state",
"Ideal climate for activities",
"Spectacular meteorological situation"
]
},
{
"id": "186",
"base": "condition",
"collocate": "pristine",
"collocation": "pristine condition",
"label": "Bon",
"label_id": "4",
"context": "m. forman sent the entire cookbook that came with the mixer , copyright 1950 , in pristine condition .",
"paraphrases": [
"Perfect, unspoiled state",
"Like new, unblemished",
"Immaculate, as if untouched",
"Flawless, no signs of wear",
"In mint condition, impeccable"
]
},
{
"id": "187",
"base": "view",
"collocate": "excellent",
"collocation": "excellent view",
"label": "Bon",
"label_id": "4",
"context": "according to the document , 39 percent of those surveyed said they had an ` ` excellent '' view of ford .",
"paraphrases": [
"Stunning scenery",
"Breathtaking vista",
"Magnificent outlook",
"Superb panorama",
"Spectacular sight"
]
},
{
"id": "188",
"base": "picture",
"collocate": "rosy",
"collocation": "rosy picture",
"label": "Bon",
"label_id": "4",
"context": "that rosy picture of the job outlook was clouded by a private report today suggesting that ` ` demand for labor , while certainly not collapsing or weak , is maybe not quite as strong as some other figures would lead you to believe , '' said paul kasriel , chief domestic economist at the northern trust co. in chicago .",
"paraphrases": [
"Optimistic outlook",
"Positive perspective",
"Promising scenario",
"Encouraging view",
"Favorable situation"
]
},
{
"id": "189",
"base": "effect",
"collocate": "salutary",
"collocation": "salutary effect",
"label": "Bon",
"label_id": "4",
"context": "` ` the secretary general attaches great importance to the success of these efforts , which would have a highly salutary effect not only on the lives of the peoples of the two countries but also on regional and global stability . ''",
"paraphrases": [
"Beneficial impact",
"Positive influence",
"Healthful consequence",
"Advantageous outcome",
"Favorable result"
]
},
{
"id": "190",
"base": "steak",
"collocate": "juicy",
"collocation": "juicy steak",
"label": "Bon",
"label_id": "4",
"context": "few things are more treasured by argentines than a juicy steak sizzling on a grill .",
"paraphrases": [
"Succulent cut of beef",
"Tender, flavorful meat",
"Mouthwatering, prime steak",
"Delectable, perfectly cooked beef",
"Luscious, high-quality steak"
]
},
{
"id": "191",
"base": "career",
"collocate": "brilliant",
"collocation": "brilliant career",
"label": "Bon",
"label_id": "4",
"context": "mcgoogan resurrects the brilliant career of dr. elisha kent kane of philadelphia , who sailed north in 1853 to seek the northwest passage and john franklin , a missing british explorer .",
"paraphrases": [
"Outstanding professional journey",
"Remarkably successful work life",
"Exceptional achievements in one's field",
"Impressive and prosperous professional path",
"Accomplished and thriving vocation"
]
},
{
"id": "192",
"base": "judgment",
"collocate": "subtle",
"collocation": "subtle judgment",
"label": "Bon",
"label_id": "4",
"context": "their prophecies as to the economic future are not guided by unusually subtle judgment . ''",
"paraphrases": [
"Nuanced assessment",
"Delicate discernment",
"Fine-tuned evaluation",
"Refined perception",
"Understated appraisal"
]
},
{
"id": "193",
"base": "meal",
"collocate": "exquisite",
"collocation": "exquisite meal",
"label": "Bon",
"label_id": "4",
"context": "i serenely ate half of each , anticipating the second exquisite meal i would have the next night in my cottage .",
"paraphrases": [
"Delightful, flavorful dish",
"Superb, high-quality cuisine",
"Finely crafted, delectable food",
"Exceptional, mouthwatering fare",
"Gourmet, expertly prepared meal"
]
},
{
"id": "194",
"base": "figure",
"collocate": "impressive",
"collocation": "impressive figure",
"label": "Bon",
"label_id": "4",
"context": "this may not be such an impressive figure today as it was a few years ago since gigabyte ( gb ) - capacity devices are now widely available .",
"paraphrases": [
"Striking physique",
"Remarkable stature",
"Commanding presence",
"Imposing build",
"Stunning appearance"
]
},
{
"id": "195",
"base": "criticism",
"collocate": "constructive",
"collocation": "constructive criticism",
"label": "Bon",
"label_id": "4",
"context": "and , he used ` ` constructive criticism '' from sayuri takao , manager of joli - kobe , whom he had known at the institute .",
"paraphrases": [
"Helpful feedback",
"Useful suggestions for improvement",
"Beneficial critiquing",
"Valuable advice for growth",
"Productive evaluation and recommendations"
]
},
{
"id": "196",
"base": "fight",
"collocate": "unfair",
"collocation": "unfair fight",
"label": "AntiBon",
"label_id": "5",
"context": "cohen also knows how to rig an unfair fight , and to then wring maximum humiliation and humor out of each situation .",
"paraphrases": [
"Unequal contest",
"Mismatched battle",
"One-sided confrontation",
"Imbalanced competition",
"Disadvantaged struggle"
]
},
{
"id": "197",
"base": "murder",
"collocate": "ruthlessly",
"collocation": "ruthlessly murder",
"label": "AntiBon",
"label_id": "5",
"context": "1942 : the nazis ruthlessly murdered about 6 million european jews and about 5 million poles , gypsies and others .",
"paraphrases": [
"Brutally kill",
"Mercilessly slaughter",
"Viciously assassinate",
"Cruelly slay",
"Heartlessly butcher"
]
},
{
"id": "198",
"base": "character",
"collocate": "bad",
"collocation": "bad character",
"label": "AntiBon",
"label_id": "5",
"context": "in a national public radio interview friday , two of the jurors , both enlisted men , said they did not believe that the women lied or had bad characters .",
"paraphrases": [
"Morally flawed person",
"Untrustworthy individual",
"Someone with questionable ethics",
"A person of poor repute",
"An individual lacking integrity"
]
},
{
"id": "199",
"base": "crime",
"collocate": "despicable",
"collocation": "despicable crime",
"label": "AntiBon",
"label_id": "5",
"context": "` ` i condemn in the strongest possible terms the senseless brutality and violence of the perpetrators of this barbaric act , and call for all those responsible to be brought to justice for their despicable crimes , '' solana said in the letter .",
"paraphrases": [
"Heinous offense",
"Abhorrent wrongdoing",
"Deplorable act",
"Reprehensible misdeed",
"Detestable felony"
]
},
{
"id": "200",
"base": "lucre",
"collocate": "filthy",
"collocation": "filthy lucre",
"label": "AntiBon",
"label_id": "5",
"context": "so it is that ` ` single & amp ; single '' sets its sights on filthy lucre : the spell it casts and the prisoners it takes , whether in its false promises to the desperate or its poisonous allure to the power - hungry .",
"paraphrases": [
"Dirty money",
"Ill-gotten gains",
"Unethical profits",
"Morally tainted wealth",
"Dishonestly acquired riches"
]
},
{
"id": "201",
"base": "start",
"collocate": "rocky",
"collocation": "rocky start",
"label": "AntiBon",
"label_id": "5",
"context": "the session got off to a rocky start ; shortly after it began , it had to be suspended for a couple hours because of a lack of interpreters .",
"paraphrases": [
"Difficult beginning",
"Challenging commencement",
"Rough initiation",
"Bumpy launch",
"Turbulent onset"
]
},
{
"id": "202",
"base": "fight",
"collocate": "dirty",
"collocation": "dirty fight",
"label": "AntiBon",
"label_id": "5",
"context": "` ` i do n't expect a dirty fight , but you never can tell , '' said the 28-year - old trinidad , also speaking through an interpreter .",
"paraphrases": [
"Unfair tactics in a conflict",
"Engaging in unethical or underhanded methods",
"Using dishonorable means to win",
"Resorting to foul play during a confrontation",
"Fighting without rules or sportsmanship"
]
},
{
"id": "203",
"base": "weather",
"collocate": "rotten",
"collocation": "rotten weather",
"label": "AntiBon",
"label_id": "5",
"context": "the british open was played in rotten weather on a carnoustie course that was one of the toughest in the world eight years ago , but had to be scaled back .",
"paraphrases": [
"Extremely unpleasant weather conditions",
"Weather that is foul and disagreeable",
"Horrible, nasty weather",
"Weather so bad it's almost unbearable",
"Dreadful, miserable weather"
]
},
{
"id": "204",
"base": "habit",
"collocate": "filthy",
"collocation": "filthy habit",
"label": "AntiBon",
"label_id": "5",
"context": "` ` the act of spitting indescriminately is a filthy habit and it was an unfortunate coincidence that darren gough unthinkingly expectorated at the wrong time , giving the false impression it was directed at ian bishop , '' said reid .",
"paraphrases": [
"Unclean and unhealthy routine",
"Dirty and detrimental practice",
"Unsanitary and harmful custom",
"Foul and damaging tendency",
"Squalid and pernicious behavior"
]
},
{
"id": "205",
"base": "dressed",
"collocate": "poorly",
"collocation": "poorly dressed",
"label": "AntiBon",
"label_id": "5",
"context": "ukraine to elect a new president kiev , ukraine ( ap ) the poorly dressed , unkempt woman selling secondhand clothing at kiev 's sennoi flea market was furious .",
"paraphrases": [
"Wearing shabby clothes",
"Dressed in an unkempt manner",
"Attired in substandard garments",
"Clad in inferior clothing",
"Donning low-quality apparel"
]
},
{
"id": "206",
"base": "company",
"collocate": "bad",
"collocation": "bad company",
"label": "AntiBon",
"label_id": "5",
"context": "one of those husbands -- in a delicious bit of hollywood irony -- was action impresario jerry bruckheimer ( ` ` black hawk down '' ) whose latest film , ` ` bad company , '' opens the same day as ` ` ya - ya . ''",
"paraphrases": [
"Negative influences",
"Undesirable social circle",
"Harmful associations",
"Detrimental companions",
"Corrupting acquaintances"
]
},
{
"id": "207",
"base": "effect",
"collocate": "crippling",
"collocation": "crippling effect",
"label": "AntiBon",
"label_id": "5",
"context": "the radical economic changes backed by the world bank , which came with their share of crippling economic effects , have however bore fruit especially with the control of ballooning inflation from a triple digit figure of about 400 percent to about 30 percent by the end of last year .",
"paraphrases": [
"Debilitating impact",
"Severely damaging consequences",
"Paralyzingly destructive influence",
"Incapacitating repercussions",
"Devastating ramifications"
]
},
{
"id": "208",
"base": "attempt",
"collocate": "lame",
"collocation": "lame attempt",
"label": "AntiBon",
"label_id": "5",
"context": "mcveigh 's court statement appeared to be little more than a lame attempt to blame the government for his slaughter of innocent men , women and children .",
"paraphrases": [
"Feeble effort",
"Ineffective try",
"Half-hearted endeavor",
"Weak and unconvincing attempt",
"Disappointing and unimpressive effort"
]
},
{
"id": "209",
"base": "relations",
"collocate": "bumpy",
"collocation": "bumpy relations",
"label": "AntiBon",
"label_id": "5",
"context": "tensions have soared recently in the often bumpy relations between egypt and israel over claims that israeli soldiers killed egyptian prisoners during the 1967 middle east war .",
"paraphrases": [
"Turbulent interactions",
"Rocky connections",
"Uneven rapport",
"Rough dealings",
"Unstable association"
]
},
{
"id": "210",
"base": "relationship",
"collocate": "troubled",
"collocation": "troubled relationship",
"label": "AntiBon",
"label_id": "5",
"context": "that 's why president bush and congress should pass laws and enact policies that improve these troubled labor relationships .",
"paraphrases": [
"Strained partnership",
"Conflict-ridden connection",
"Turbulent bond",
"Dysfunctional rapport",
"Rocky affiliation"
]
},
{
"id": "211",
"base": "day",
"collocate": "dark",
"collocation": "dark day",
"label": "AntiBon",
"label_id": "5",
"context": "` ` in these dark days , you have to savor every pint of guinness like it 's your last , '' the painter told laughing workmates during a lunch break .",
"paraphrases": [
"Gloomy and depressing time",
"A day filled with sadness and despair",
"A period of misfortune and adversity",
"An occasion marked by tragedy or loss",
"A somber and melancholic day",
""
]
},
{
"id": "212",
"base": "motive",
"collocate": "selfish",
"collocation": "selfish motive",
"label": "AntiBon",
"label_id": "5",
"context": "` ` there is no room at all to give leniency for the selfish motive , '' the judge said , as quoted by the mainichi shimbun daily on its website .",
"paraphrases": [
"Self-serving intention",
"Personal gain as the driving force",
"Egocentric purpose",
"Self-centered incentive",
"Individualistic agenda"
]
},
{
"id": "213",
"base": "debate",
"collocate": "acrimonious",
"collocation": "acrimonious debate",
"label": "AntiBon",
"label_id": "5",
"context": "the second wave of requirements , like the first , is stirring acrimonious debate over the motives and goals of proponents , which include promoting harmony on multiracial campuses , expanding students ' knowledge of the world and encouraging diversification of curriculums long dominated by western thinkers .",
"paraphrases": [
"Bitter and hostile argument",
"Heated discussion filled with animosity",
"Rancorous exchange of opposing views",
"Caustic and antagonistic verbal confrontation",
"Venomous and ill-natured disputation"
]
},
{
"id": "214",
"base": "grimace",
"collocate": "ugly",
"collocation": "ugly grimace",
"label": "AntiBon",
"label_id": "5",
"context": "he reported that images on television and in newspapers in taiwan of a menacing zhu , his face in an ugly grimace and a finger stabbing the air for emphasis , has aroused nationalism on the island .",
"paraphrases": [
"Unpleasant facial contortion",
"Unsightly expression of disgust",
"Repulsive twist of the face",
"Hideous distortion of features",
"Grotesque scowl or sneer"
]
},
{
"id": "215",
"base": "character",
"collocate": "disreputable",
"collocation": "disreputable character",
"label": "AntiBon",
"label_id": "5",
"context": "` ` charles o. finley is one of the most disreputable characters ever to enter the american sports scene , '' missouri sen. stuart symington said in 1967 .",
"paraphrases": [
"Untrustworthy person",
"Individual with a bad reputation",
"Someone of questionable morals",
"A person lacking integrity",
"Shady or dubious figure"
]
},
{
"id": "216",
"base": "boss",
"collocate": "from hell",
"collocation": "boss from hell",
"label": "AntiBon",
"label_id": "5",
"context": "although the devil seems to have cast a kindly glance at the old folks who served him in ` ` rosemary 's baby , '' elsewhere he is literally the boss from hell .",
"paraphrases": [
"Horrible, abusive supervisor",
"Nightmare of a manager",
"Tyrannical and cruel employer",
"Leader who makes work miserable",
"Unbearable and tormenting boss"
]
},
{
"id": "217",
"base": "defeat",
"collocate": "shameful",
"collocation": "shameful defeat",
"label": "AntiBon",
"label_id": "5",
"context": "` ` if the us imperialists persistently pursue their hostile policy towards the dprk ( north korea ) and their design to invade it , they will suffer a more shameful defeat ( than in 1968 ) , '' said a statement carried by the korean central news agency .",
"paraphrases": [
"Humiliating loss",
"Embarrassing failure",
"Disgraceful downfall",
"Dishonorable trouncing",
"Ignominious rout"
]
},
{
"id": "218",
"base": "boss",
"collocate": "toxic",
"collocation": "toxic boss",
"label": "AntiBon",
"label_id": "5",
"context": "a monster poll says 70 percent of workers think they have a ` ` toxic boss . ''",
"paraphrases": [
"Abusive and demoralizing supervisor",
"Manager who creates a hostile work environment",
"Leader who negatively impacts employees' well-being",
"Harmful and destructive managerial behavior",
"Boss who poisons the workplace atmosphere"
]
},
{
"id": "219",
"base": "situation",
"collocate": "compromising",
"collocation": "compromising situation",
"label": "AntiBon",
"label_id": "5",
"context": "despite the compromising situations parvez gets into , we cheer for him to succeed and find happiness , even with a prostitute .",
"paraphrases": [
"An embarrassing or awkward circumstance",
"A position that could lead to scandal",
"A predicament that may damage one's reputation",
"A situation that puts one's integrity at risk",
"A compromising scenario that could have negative consequences"
]
},
{
"id": "220",
"base": "hotel",
"collocate": "sleazy",
"collocation": "sleazy hotel",
"label": "AntiBon",
"label_id": "5",
"context": "he said the blue ox was a bar in brainerd , not a sleazy hotel , like in the movie .",
"paraphrases": [
"Rundown, dirty, and disreputable lodging",
"A seedy and unpleasant place to stay",
"An unsavory and squalid accommodation",
"A flophouse with a dubious reputation",
"A sordid and unkempt temporary residence"
]
},
{
"id": "221",
"base": "weather",
"collocate": "foul",
"collocation": "foul weather",
"label": "AntiBon",
"label_id": "5",
"context": "mohamad nor said several trees were uprooted during the foul weather which resulted in heavy jams .",
"paraphrases": [
"Stormy conditions",
"Unpleasant and harsh weather",
"Inclement atmospheric state",
"Disagreeable meteorological situation",
"Unfavorable climatic circumstances"
]
},
{
"id": "222",
"base": "quality",
"collocate": "poor",
"collocation": "poor quality",
"label": "AntiBon",
"label_id": "5",
"context": "chinese farmers reduced their summer grain acreage because the central government has abandoned protective purchase price for poor quality grain .",
"paraphrases": [
"Substandard condition",
"Inferior grade",
"Lacking in excellence",
"Unsatisfactory caliber",
"Deficient in merit"
]
},
{
"id": "223",
"base": "record",
"collocate": "blemished",
"collocation": "blemished record",
"label": "AntiBon",
"label_id": "5",
"context": "but holyfield , 46 , has beaten the likes of mike tyson , james ' buster ' douglas , lennox lewis and riddick bowe in his long career with a blemished record of 42 wins , 27 knock - outs , two draws and nine defeats .",
"paraphrases": [
"Imperfect history",
"Tarnished reputation",
"Flawed background",
"Marred track record",
"Stained credentials"
]
},
{
"id": "224",
"base": "aggression",
"collocate": "brazen",
"collocation": "brazen aggression",
"label": "AntiBon",
"label_id": "5",
"context": "but what 's really unnerving is the way she nails sadie 's desperate blend of blind ambition and self - effacement , of brazen aggression laced with sincere apologies .",
"paraphrases": [
"Bold and shameless hostility",
"Audacious and unabashed antagonism",
"Impudent and insolent belligerence",
"Brash and unashamed combativeness",
"Barefaced and brazen confrontation"
]
},
{
"id": "225",
"base": "building",
"collocate": "in disrepair",
"collocation": "building in disrepair",
"label": "AntiBon",
"label_id": "5",
"context": "a few signs remain of that not - so - ancient history , with some buildings in disrepair and a skeletal pier jutting into the hudson .",
"paraphrases": [
"Dilapidated structure",
"Edifice in deterioration",
"Neglected and crumbling building",
"Construction in a state of decay",
"Rundown and poorly maintained building"
]
},
{
"id": "226",
"base": "weather",
"collocate": "filthy",
"collocation": "filthy weather",
"label": "AntiBon",
"label_id": "5",
"context": "to understand how macarthur , from derbyshire , has captured the world 's imagination you only had to look at kingfisher 's 90-foot mast and imagine macarthur _ urchin - like , just 5 feet 2 inches tall and 112 pounds in weight _ climbing it in filthy weather , alone in the middle of the ocean , to do repairs .",
"paraphrases": [
"Extremely dirty and unpleasant weather conditions",
"Weather that is disgustingly foul and nasty",
"Horrendous and revolting weather, utterly repulsive",
"Weather so vile it's almost sickening",
"Repugnantly polluted and squalid weather conditions"
]
},
{
"id": "227",
"base": "light",
"collocate": "dismal",
"collocation": "dismal light",
"label": "AntiBon",
"label_id": "5",
"context": "` ` i see the epidemic in a dismal light , '' said dr. victoria sharp , director of aids care at st. clare 's hospital and health center in new york city .",
"paraphrases": [
"Dim and depressing illumination",
"Gloomy and faint glow",
"Dreary and somber radiance",
"Melancholic and subdued brightness",
"Bleak and dull luminescence"
]
},
{
"id": "228",
"base": "color",
"collocate": "harsh",
"collocation": "harsh color",
"label": "AntiBon",
"label_id": "5",
"context": "makeup stays au naturel while fashion is coughing up harsh colors in clothing _ chartreuse , cobalt blue , neon pink _ makeup on the runways has remained surprisingly soft and natural .",
"paraphrases": [
"Intense, unpleasant hue",
"Grating, abrasive shade",
"Jarring, discordant tint",
"Severe, off-putting tone",
"Stridently vivid pigment"
]
},
{
"id": "229",
"base": "motive",
"collocate": "base",
"collocation": "base motive",
"label": "AntiBon",
"label_id": "5",
"context": "` ` whatever one may think of the quality of the strip and the taste of the world play ... the cartoonist can in no way be suspected of the base motives which are being attributed to him . ''",
"paraphrases": [
"Fundamental reason",
"Underlying intention",
"Primary purpose",
"Core incentive",
"Essential motivation"
]
},
{
"id": "230",
"base": "sleep",
"collocate": "troubled",
"collocation": "troubled sleep",
"label": "AntiBon",
"label_id": "5",
"context": "there are a vast number of medicines used to treat troubled sleep , aching joints , headaches and other symptoms .",
"paraphrases": [
"Restless slumber",
"Disturbed night's rest",
"Unsettled sleep patterns",
"Agitated repose",
"Disrupted sleep cycles"
]
},
{
"id": "231",
"base": "experience",
"collocate": "trying",
"collocation": "trying experience",
"label": "AntiBon",
"label_id": "5",
"context": "even some students who oppose the aggressive unionization efforts agree that teaching can prolong graduate studies and make it a more trying experience .",
"paraphrases": [
"Challenging ordeal",
"Difficult and testing situation",
"Arduous and demanding circumstance",
"Strenuous and taxing episode",
"Troublesome and formidable event"
]
},
{
"id": "232",
"base": "building",
"collocate": "tumbledown",
"collocation": "tumbledown building",
"label": "AntiBon",
"label_id": "5",
"context": "security at a price khan yunis is , even by gazan standards , a bastion of religious tradition , a sun - baked puzzle of tumbledown buildings and dirt streets , the wild west compared to the cosmopolitan gaza city .",
"paraphrases": [
"Dilapidated structure",
"Ramshackle edifice",
"Crumbling construction",
"Decrepit building",
"Rundown and deteriorating premises"
]
},
{
"id": "233",
"base": "mood",
"collocate": "dark",
"collocation": "dark mood",
"label": "AntiBon",
"label_id": "5",
"context": "no , when the outback steakhouse pro - am was nearing its end sunday afternoon , mark wiebe was just another guy with a white visor , a red face and a dark mood .",
"paraphrases": [
"Feeling gloomy and depressed",
"In a state of melancholy",
"Experiencing a somber disposition",
"Having a bleak outlook",
"Filled with sadness and despair"
]
},
{
"id": "234",
"base": "interest",
"collocate": "vested",
"collocation": "vested interest",
"label": "AntiBon",
"label_id": "5",
"context": "` ` the music community has a vested interest in trying to cordon off people so that they know where their market is at all times , '' he says .",
"paraphrases": [
"Personal stake",
"Invested concern",
"Committed involvement",
"Significant ownership",
"Direct benefit from an outcome"
]
},
{
"id": "235",
"base": "pig",
"collocate": "grunt",
"collocation": "pig grunt",
"label": "Son",
"label_id": "6",
"context": "smart pigs grunt their way along the inside of pipelines , using magnetic fields to find cracks , leaks , corrosion and other anomalies that cause a pipe to fail .",
"paraphrases": [
"A pig's low, guttural sound",
"The characteristic noise made by swine",
"The throaty vocalization of a hog",
"A pig's deep, short oink",
"The grumbling utterance of a porker"
]
},
{
"id": "236",
"base": "brake",
"collocate": "squeals",
"collocation": "brake squeals",
"label": "Son",
"label_id": "6",
"context": "as time goes on , the mechanic stops spending time diagnosing the reason for brake squeals .",
"paraphrases": [
"High-pitched noise from vehicle brakes",
"Screeching sound when applying brakes",
"Ear-piercing screams of stopping car",
"Brakes emit shrill, unpleasant noise",
"Squeaking, squealing from automobile's braking system"
]
},
{
"id": "237",
"base": "pigeon",
"collocate": "coo",
"collocation": "pigeon coo",
"label": "Son",
"label_id": "6",
"context": "the problem might be the unimaginative production ; neville 's fluttery tattooed - pigeon coo is better suited for spare arrangements , not schmaltzy ones .",
"paraphrases": [
"Soft, repetitive bird call",
"Gentle, rhythmic sounds made by pigeons",
"Soothing, low-pitched pigeon vocalization",
"Cooing noise produced by pigeons",
"Distinctive, calming sound of pigeons"
]
},
{
"id": "238",
"base": "crow",
"collocate": "caw",
"collocation": "caw crow",
"label": "Son",
"label_id": "6",
"context": "perhaps recognizing this , optimists in the upstate new york community of auburn ( pop : 31,000 humans , roughly 70,000 crows ) are trying to transform the hoarse caw of the crow into a siren call for tourists _ publishing maps to guide the curious to the best ` ` crow viewing '' sites during the winter roost .",
"paraphrases": [
"A crow's harsh, loud call",
"The distinct vocalization of a crow",
"The grating sound made by crows",
"A crow's signature cawing noise",
"The abrasive cry of a crow"
]
},
{
"id": "239",
"base": "door",
"collocate": "creaks",
"collocation": "door creaks",
"label": "Son",
"label_id": "6",
"context": "the door creaks shut , and suddenly you 're bathed in a weird , reddish glow .",
"paraphrases": [
"Hinges squeak as door opens",
"Door makes high-pitched sound when moved",
"Eerie noise emitted from old door",
"Rusty door produces creaking sound",
"Door whines when swung open or closed"
]
},
{
"id": "240",
"base": "thunder",
"collocate": "claps",
"collocation": "thunder claps",
"label": "Son",
"label_id": "6",
"context": "the 14 - and 16-inch guns of the battlewagons created great ear - shattering thunder claps as their shells sailed overhead like freight trains .",
"paraphrases": [
"Loud, explosive sounds from lightning strikes",
"Booming noises during a thunderstorm",
"Thunderous applause from the sky",
"Nature's percussion in a storm",
"Resounding cracks of thunder"
]
},
{
"id": "241",
"base": "thunder",
"collocate": "rolls",
"collocation": "thunder rolls",
"label": "Son",
"label_id": "6",
"context": "a scene piece on the swallow , pegged to the appearance tonight of the four songwriters who penned most of garth brooks ' biggest hits , including ` ` the dance '' and ` ` the thunder rolls . ''",
"paraphrases": [
"Loud, rumbling sound of thunder in the distance",
"Thunder claps and echoes across the sky",
"Continuous, deep thundering noise",
"Thunderous booms resounding through the atmosphere",
"Prolonged, reverberating sound of thunder"
]
},
{
"id": "242",
"base": "cricket",
"collocate": "chirps",
"collocation": "cricket chirps",
"label": "Son",
"label_id": "6",
"context": "research by thomas walker , an entomologist at the university of florida , has shown that cats learn to recognize cricket chirps and will come at a run when they hear the sound .",
"paraphrases": [
"Crickets producing high-pitched sounds",
"The noise made by crickets",
"Chirping noises emitted by crickets",
"Crickets singing their characteristic song",
"The stridulation of crickets"
]
},
{
"id": "243",
"base": "wind",
"collocate": "howls",
"collocation": "wind howls",
"label": "Son",
"label_id": "6",
"context": "meanwhile the clocks stop , the wind howls , and we are encouraged to believe -- or at least not to disbelieve -- our own eyes .",
"paraphrases": [
"Gusts of wind wail loudly",
"Blustery winds create an eerie sound",
"Fierce winds screech through the air",
"Gale-force winds produce a haunting noise",
"Strong winds moan and whine"
]
},
{
"id": "244",
"base": "bird",
"collocate": "chirps",
"collocation": "bird chirps",
"label": "Son",
"label_id": "6",
"context": "i hang in silence - not even a bird chirps - until mark points out landmarks like the sebastian inlet and kennedy space center .",
"paraphrases": [
"Melodic sounds made by avian species",
"High-pitched vocalizations of feathered creatures",
"Cheerful noises produced by birds",
"Tweets and trills from winged animals",
"Short, sharp calls emitted by birds"
]
},
{
"id": "245",
"base": "sail",
"collocate": "flap",
"collocation": "sail flap",
"label": "Son",
"label_id": "6",
"context": "the sail should flap with the wind like a flag ; this is called luffing .",
"paraphrases": [
"Fluttering sound of a sail in the wind",
"Sail fabric rippling in the breeze",
"Loose sail making a flapping noise",
"Sail whipping back and forth",
"Sail snapping due to wind"
]
},
{
"id": "246",
"base": "sheep",
"collocate": "baas",
"collocation": "sheep baas",
"label": "Son",
"label_id": "6",
"context": "a light went off in breaux 's head : he took 30 or so samples from the tape , added in cow moos and sheep baas for flavoring , and five months later 1,500 copies of ` ` jingle bellies '' were pressed .",
"paraphrases": [
"Sound made by sheep",
"Sheep's bleating noise",
"Characteristic sheep vocalization",
"Sheep's distinctive cry",
"Sheep's typical bleat"
]
},
{
"id": "247",
"base": "bullet",
"collocate": "zips",
"collocation": "bullet zips",
"label": "Son",
"label_id": "6",
"context": "and a bullet train now zips from tokyo to the mountainous city of nagano in 80 minutes .",
"paraphrases": [
"Bullet flies swiftly",
"Projectile moves at high speed",
"Round rapidly traverses",
"Ammo shot with great velocity",
"Bullet travels quickly through air"
]
},
{
"id": "248",
"base": "dog",
"collocate": "whine",
"collocation": "dog whine",
"label": "Son",
"label_id": "6",
"context": "when matthew would go to school , cindy said the dog would whine and race around the house searching for her master .",
"paraphrases": [
"Dog's high-pitched, plaintive cry",
"Canine's mournful, prolonged vocalization",
"Whimpering sound made by a dog",
"Puppy's sad, drawn-out bark",
"Dog's sorrowful, whining noise"
]
},
{
"id": "249",
"base": "bullet",
"collocate": "whistles",
"collocation": "bullet whistles",
"label": "Son",
"label_id": "6",
"context": "( bullet ) quick whistles : left wing / defenseman brad norton returned to the lineup after sitting for two games and might have wished he had n't .",
"paraphrases": [
"The sound of a speeding bullet",
"A bullet's high-pitched sound in flight",
"The whistle-like noise from a fired bullet",
"Distinctive sound made by a traveling bullet",
"Bullet whizzes through the air, creating a whistle"
]
},
{
"id": "250",
"base": "bird",
"collocate": "twitters",
"collocation": "bird twitters",
"label": "Son",
"label_id": "6",
"context": "in the pauses between , bird song twitters from the thick greenery along the road .",
"paraphrases": [
"Chirping sounds made by birds",
"Melodic vocalizations of avian species",
"High-pitched noises produced by feathered creatures",
"Cheerful twittering from winged animals",
"Birds' lively and repetitive calls"
]
},
{
"id": "251",
"base": "tree",
"collocate": "squeaks",
"collocation": "squeaks tree",
"label": "Son",
"label_id": "6",
"context": "one recent day , visitors to the shrine seemed lulled by the fierce summer heat , their voices barely audible above the drone of the cicadas and the squeaks of songbirds in the trees outside the shrine 's moss - covered walls .",
"paraphrases": [
"A tree that makes high-pitched sounds",
"Creaking noises emitted by a tree",
"Tree producing squeaking sounds",
"Squeaky sounds coming from a tree",
"A tree that squeaks when moved"
]
},
{
"id": "252",
"base": "keyboard",
"collocate": "clacks",
"collocation": "clacks keyboard",
"label": "Son",
"label_id": "6",
"context": "berkeley researchers sniff out passwords from keyboard clicks berkeley , california if spyware and key - logging software were n't a big enough threat to privacy , researchers have figured out a way to eavesdrop on your computer simply by listening to the clicks and clacks of the keyboard .",
"paraphrases": [
"Typing noisily",
"Loud key presses",
"Clacking on the keys",
"Tapping keys loudly",
"Striking the keyboard forcefully"
]
},
{
"id": "253",
"base": "tree",
"collocate": "rustles",
"collocation": "tree rustles",
"label": "Son",
"label_id": "6",
"context": "when i step closer , the tree rustles and , one by one , citrus - colored birds flap away .",
"paraphrases": [
"Leaves whisper in the wind",
"Branches sway, creating gentle sounds",
"Foliage stirs, producing soft noises",
"Tree's leaves flutter and murmur",
"Rustling sounds emanate from the tree"
]
},
{
"id": "254",
"base": "train",
"collocate": "rambles",
"collocation": "train rambles",
"label": "Son",
"label_id": "6",
"context": "by gene and adele malott ( distributed by new york times special features ) the montana daylight excursion train rambles across the mountainous portion of montana and upper idaho , giving passengers what may be their only look at the present - day american west .",
"paraphrases": [
"Slow-moving train",
"Leisurely train journey",
"Train meanders along the tracks",
"Unhurried train ride",
"Train ambles through the countryside"
]
},
{
"id": "255",
"base": "wind",
"collocate": "roars",
"collocation": "wind roars",
"label": "Son",
"label_id": "6",
"context": "imagine being cuddled up beside a crackling fireplace bundled snugly in warm clothing , enjoying a hot cup of cocoa with the family while a chilly wind roars outside your scottish - built bungalow ; or reeling in a thrashing big fish out at sea , then actually staying overnight with the fisherman and his family at their island village .",
"paraphrases": [
"Powerful gusts howl loudly",
"Fierce wind blows intensely",
"Gale force winds scream",
"Blustery weather creates a deafening noise",
"Strong winds produce a thunderous sound"
]
},
{
"id": "256",
"base": "dog",
"collocate": "howl",
"collocation": "dog howl",
"label": "Son",
"label_id": "6",
"context": "by now , though , the act is wearing distinctly thin _ can she ` ` ever '' sing a ballad quietly , and not go for notes that would make dogs howl ?",
"paraphrases": [
"Canine's mournful cry",
"Hound's prolonged, doleful wail",
"Pooch's sorrowful, drawn-out yelp",
"Pup's extended, melancholic baying",
"Dog's sustained, woeful ululation"
]
},
{
"id": "257",
"base": "dog",
"collocate": "snarl",
"collocation": "dog snarl",
"label": "Son",
"label_id": "6",
"context": "their attack - dog snarl alienated a globe asked to step in line or step aside .",
"paraphrases": [
"Aggressive growl from a dog",
"Canine's threatening vocalization",
"Menacing sound made by a dog",
"Dog's hostile and intimidating noise",
"Angry, guttural utterance from a canine"
]
},
{
"id": "258",
"base": "gull",
"collocate": "screech",
"collocation": "gull screech",
"label": "Son",
"label_id": "6",
"context": "seagull - call ( seattle ) _ tawnie keaton , 13 , mimics the shrill screech of a sea gull so masterfully that even seasoned bird watchers have trouble deciphering her call from the real thing .",
"paraphrases": [
"Shrill cry of a seagull",
"Piercing call made by gulls",
"High-pitched vocalization of a gull",
"Gull's harsh, ear-splitting shriek",
"Strident sound emitted by seabirds"
]
},
{
"id": "259",
"base": "mosquito",
"collocate": "buzzes",
"collocation": "mosquito buzzes",
"label": "Son",
"label_id": "6",
"context": "the male wolf - spider drums its abdomen on dry leaves to draw out a nearby female , bats use ultra - sound , while the female mosquito buzzes at a certain frequency to alert a male .",
"paraphrases": [
"Mosquito's high-pitched humming sound",
"Annoying whine of a mosquito",
"Mosquito's irritating buzzing noise",
"The drone of a mosquito",
"Mosquito's signature auditory presence"
]
},
{
"id": "260",
"base": "snow",
"collocate": "crunches",
"collocation": "snow crunches",
"label": "Son",
"label_id": "6",
"context": "features & amp ; arts : poland , other new eu members , debate balance between development and preserving environment rospuda river valley , poland -- a sharp wind rustles the brittle wetland grasses , and the snow crunches underfoot -- the only sounds in one of europe 's last and best preserved peat bogs .",
"paraphrases": [
"Footsteps compress snow, producing a crunching sound",
"Snow emits a crisp, crackling noise underfoot",
"The sound of snow being crushed and compacted",
"Walking on snow creates a distinctive crunching noise",
"Snow makes a crunch-like sound when stepped on"
]
},
{
"id": "261",
"base": "gunfire",
"collocate": "crackles",
"collocation": "gunfire crackles",
"label": "Son",
"label_id": "6",
"context": "sarajevo , bosnia - herzegovina _ the familiar sound of gunfire crackles in the streets of sarajevo early thursday , but this time it is a joyful noise _ soldiers and civilians firing in the air to usher in bosnia 's cease - fire .",
"paraphrases": [
"Gunshots burst in rapid succession",
"The staccato sound of gunshots",
"Bullets pop in quick, sharp bursts",
"Rapid, sharp cracks of gunfire",
"The snapping sound of gunshots",
""
]
},
{
"id": "262",
"base": "cow",
"collocate": "moo",
"collocation": "cow moo",
"label": "Son",
"label_id": "6",
"context": "san francisco -- rovingfeast -- now that we know cows moo with british burr , we can ponder the way accents add richness and diversity to a number of experiences -- even eating .",
"paraphrases": [
"Bovine vocalization",
"Sound made by cattle",
"Distinctive utterance of cows",
"Lowing noise from bovines",
"Characteristic call of cows"
]
},
{
"id": "263",
"base": "arrow",
"collocate": "zings",
"collocation": "arrow zings",
"label": "Son",
"label_id": "6",
"context": "then , with a soft thwang , a foot - long arrow zings away , perfectly piercing a half - dollar - sized dot on the target .",
"paraphrases": [
"The arrow swiftly flies through the air",
"A sharp, high-pitched sound as the arrow shoots",
"The arrow moves rapidly with a whooshing noise",
"The arrow darts through the sky, making a zinging sound",
"A fast-moving arrow produces a distinct, piercing sound"
]
},
{
"id": "264",
"base": "shot",
"collocate": "rings out",
"collocation": "shot rings out",
"label": "Son",
"label_id": "6",
"context": "she is tending to him with her white - gloved hands as the second shot rings out .",
"paraphrases": [
"Gunshot echoes loudly",
"Bullet fires with a bang",
"Gun discharges with a sharp noise",
"Firearm suddenly blasts",
"Weapon's loud report reverberates"
]
},
{
"id": "265",
"base": "banner",
"collocate": "flaps",
"collocation": "banner flaps",
"label": "Son",
"label_id": "6",
"context": "but each go - around we seem to have more state control over public schools while that ` ` less government '' banner flaps mightily in the breeze .",
"paraphrases": [
"Flag waving in the wind",
"Fabric banner rippling",
"Fluttering cloth sign",
"Pennant undulating in breeze",
"Waving banner moving with air currents"
]
},
{
"id": "266",
"base": "duck",
"collocate": "quacks",
"collocation": "duck quacks",
"label": "Son",
"label_id": "6",
"context": "hart -- backed by pat robertson 's christian coalition , a group formed to promote the televangelist 's political agenda -- said the book , in which a duck quacks at parent figures , taught children disrespect .",
"paraphrases": [
"Sound a duck makes",
"Noise produced by a duck",
"Characteristic vocalization of a duck",
"Quacking noise emitted by a duck",
"Distinctive call of a duck"
]
},
{
"id": "267",
"base": "battle",
"collocate": "rumbles",
"collocation": "battle rumbles",
"label": "Son",
"label_id": "6",
"context": "eu - us - software - company - competition - microsoft brussels : the european commission was poised to slap a fine of up to two million euros ( 2.5 million dollars ) a day on microsoft for failing to comply with its 2004 antitrust ruling as the long - running competition battle rumbles on .",
"paraphrases": [
"War sounds in the distance",
"Sounds of combat echo",
"Fighting noises resound",
"Conflict clamor reverberates",
"Clash of armies resonates"
]
},
{
"id": "268",
"base": "relationship",
"collocate": "have",
"collocation": "have relationship",
"label": "Oper1",
"label_id": "7",
"context": "` ` look , if we could one day have relationships among citizens in the states and citizens in mexico , we would both be surprised at what we are , '' said vicente fox , a central state governor and prominent opposition politician .",
"paraphrases": [
"Be romantically involved",
"Connect with someone intimately",
"Engage in a partnership",
"Share an emotional bond",
"Maintain a close association"
]
},
{
"id": "269",
"base": "claim",
"collocate": "make",
"collocation": "make claim",
"label": "Oper1",
"label_id": "7",
"context": "cayetano make the claim during debates on an impeachment complaint against arroyo over accusations _ all denied by arroyo _ such as rigging the 2004 election , violating the constitution and committing corruption and human rights abuses .",
"paraphrases": [
"Assert a right or entitlement",
"Demand something believed to be owed",
"File an insurance request for compensation",
"State something as true or factual",
"Formally request or seek reimbursement"
]
},
{
"id": "270",
"base": "answer",
"collocate": "make",
"collocation": "make answer",
"label": "Oper1",
"label_id": "7",
"context": "it chronicled his vain pursuit of then - general motors chairman roger smith , seeking to make smith answer for the devastation wrought by his decision to close the local gm plant .",
"paraphrases": [
"Respond",
"Reply",
"Provide a solution",
"Give a response",
"Answer the question"
]
},
{
"id": "271",
"base": "charm",
"collocate": "hold",
"collocation": "hold charm",
"label": "Oper1",
"label_id": "7",
"context": "( bc - means - column - hns ) the snow - speckled fields of corn stubble in the cold , flat plains of middle nebraska hold few charms for president clinton _ but he dutifully ventured there last friday anyway .",
"paraphrases": [
"Maintain appeal",
"Sustain attractiveness",
"Retain allure",
"Preserve enchantment",
"Keep captivating quality"
]
},
{
"id": "272",
"base": "division",
"collocate": "show",
"collocation": "show division",
"label": "Oper1",
"label_id": "7",
"context": "cor - gk / mo / ea04 flush with victory , us republicans show divisions by carlos hamann washington , nov 7 ( afp ) fresh from president george w. bush 's re - election win , a rift emerged between republican party moderates and conservatives over abortion .",
"paraphrases": [
"Reveal disagreement",
"Expose disunity",
"Display discord",
"Unveil split",
"Manifest separation"
]
},
{
"id": "273",
"base": "flight",
"collocate": "be",
"collocation": "be flight",
"label": "Oper1",
"label_id": "7",
"context": "china 's agriculture ministry warned last week of further bird flu epidemics in the nation during the winter months when migratory birds be in flight and weather conditions provide a good environment for the spread of the virus .",
"paraphrases": [
"Be in a state of fleeing or escaping",
"Currently airborne or in the process of flying",
"Exist in a condition of hasty departure",
"Presently engaged in traveling through the air",
"Be in the act of flying or running away"
]
},
{
"id": "274",
"base": "waste",
"collocate": "lay",
"collocation": "lay waste",
"label": "Oper1",
"label_id": "7",
"context": "remember when vcrs and then dvds were going to lay waste to the movie industry and ended up saving it instead ?",
"paraphrases": [
"Destroy completely",
"Cause massive destruction",
"Ravage utterly",
"Ruin entirely",
"Devastate thoroughly"
]
},
{
"id": "275",
"base": "assurance",
"collocate": "give",
"collocation": "give assurance",
"label": "Oper1",
"label_id": "7",
"context": "denard says comoros airport to reopen saturday : report pretoria , sept 29 ( afp ) french mercenary bob denard , who is leading a coup in the comoros , has give the assurance that the island 's main airport will be reopened early saturday , the domestic news agency sapa said friday .",
"paraphrases": [
"Provide confidence",
"Offer a guarantee",
"Reassure someone",
"Promise certainty",
"Ensure reliability"
]
},
{
"id": "276",
"base": "sermon",
"collocate": "preach",
"collocation": "preach sermon",
"label": "Oper1",
"label_id": "7",
"context": "when he preach a sermon , he gives the congregation ` ` the benefit of his colloquies with god .",
"paraphrases": [
"Deliver a religious discourse",
"Give a moral lecture",
"Present a spiritual message",
"Share a faith-based teaching",
"Proclaim a divine lesson"
]
},
{
"id": "277",
"base": "standing",
"collocate": "have",
"collocation": "have standing",
"label": "Oper1",
"label_id": "7",
"context": "others , however , suspect that the cigar industry took a page out of what was believed to be the cigarette manufacturers ' playbook : warned by label , the strategy went , consumers bear responsibility for the consequences of smoking and therefore have no standing to sue .",
"paraphrases": [
"Possess influence",
"Hold a position of authority",
"Be respected and recognized",
"Maintain a good reputation",
"Have a say in matters"
]
},
{
"id": "278",
"base": "work",
"collocate": "do",
"collocation": "do work",
"label": "Oper1",
"label_id": "7",
"context": "the report quoted defense minister robert hill as saying ` ` australians have not been operating in iraq and any questions about whether we are do covert work in other countries are hypothetical . ''",
"paraphrases": [
"Accomplish tasks",
"Perform duties",
"Complete assignments",
"Engage in labor",
"Carry out responsibilities"
]
},
{
"id": "279",
"base": "intervention",
"collocate": "make",
"collocation": "make intervention",
"label": "Oper1",
"label_id": "7",
"context": "with six different parties involved in the fighting , the situation make nato intervention extremely complicated , millon told vatican radio .",
"paraphrases": [
"Take action to improve a situation",
"Intercede to influence an outcome",
"Step in to alter the course of events",
"Interfere to create change",
"Act to modify circumstances"
]
},
{
"id": "280",
"base": "action",
"collocate": "exert",
"collocation": "exert action",
"label": "Oper1",
"label_id": "7",
"context": "` ` when you exert lethal actions against sadr city you are de facto going against a fairly poor sector of the shia populace , '' he said .",
"paraphrases": [
"Apply force",
"Put effort into",
"Take measures",
"Influence actively",
"Implement change"
]
},
{
"id": "281",
"base": "survey",
"collocate": "conduct",
"collocation": "conduct survey",
"label": "Oper1",
"label_id": "7",
"context": "to do that , the new rules say managed - care plans have to conduct surveys on the quality of patient care and make disclosures to the government about their pay practices .",
"paraphrases": [
"Carry out a study",
"Perform research",
"Administer a questionnaire",
"Execute an inquiry",
"Lead an investigation"
]
},
{
"id": "282",
"base": "sentence",
"collocate": "hand",
"collocation": "hand sentence",
"label": "Oper1",
"label_id": "7",
"context": "and ` where are you going ? , '' judge barrington black said in hand down sentence .",
"paraphrases": [
"Impose a punishment",
"Declare a judgment",
"Announce a verdict",
"Deliver a ruling",
"Pronounce a penalty"
]
},
{
"id": "283",
"base": "advantage",
"collocate": "enjoy",
"collocation": "enjoy advantage",
"label": "Oper1",
"label_id": "7",
"context": "the result left the outcome of the decider delicately balanced with asante enjoy home advantage on december 8 when the return match is staged in the central ghanaian city of kumasi .",
"paraphrases": [
"Benefit from a favorable position",
"Possess a superior edge",
"Have the upper hand",
"Profit from an advantageous situation",
"Relish a privileged circumstance"
]
},
{
"id": "284",
"base": "consequence",
"collocate": "have",
"collocation": "have consequence",
"label": "Oper1",
"label_id": "7",
"context": "the rs prime minister mladen ivanic said he did not expect plavsic 's plea to have any consequences for the serb - run entity , describing it as her ` ` personal view of ... how to best defend herself '' before the un tribunal .",
"paraphrases": [
"Result in outcomes",
"Lead to repercussions",
"Cause effects",
"Bring about ramifications",
"Generate impact",
""
]
},
{
"id": "285",
"base": "sex",
"collocate": "perform",
"collocation": "perform sex",
"label": "Oper1",
"label_id": "7",
"context": "he also pleaded guilty to corruption of minors for giving alcohol to a third girl and asking her to perform oral sex .",
"paraphrases": [
"Engage in sexual activity",
"Have sexual intercourse",
"Participate in intimate relations",
"Carry out the act of lovemaking",
"Take part in carnal knowledge"
]
},
{
"id": "286",
"base": "guess",
"collocate": "take",
"collocation": "take guess",
"label": "Oper1",
"label_id": "7",
"context": "speaking of olazabal , take a guess what he did on the first hole thursday at the german masters ?",
"paraphrases": [
"Make a conjecture",
"Venture an estimate",
"Hazard a supposition",
"Offer a speculation",
"Propose a hypothesis"
]
},
{
"id": "287",
"base": "vacations",
"collocate": "be",
"collocation": "be vacations",
"label": "Oper1",
"label_id": "7",
"context": "hendrick also said mears , who is leaving chip ganassi racing to take over the car driven by brian vickers , has be on vacations with his team and his family .",
"paraphrases": [
"Time off from work or school",
"Periods of leisure and relaxation",
"Breaks from daily routine",
"Scheduled time for rest and recreation",
"Intervals of freedom from obligations"
]
},
{
"id": "288",
"base": "efforts",
"collocate": "put",
"collocation": "put efforts",
"label": "Oper1",
"label_id": "7",
"context": "he called for put more efforts based on the asean spirit to achieve the asean 's goal .",
"paraphrases": [
"Work hard",
"Exert energy",
"Invest time and resources",
"Dedicate oneself",
"Strive diligently"
]
},
{
"id": "289",
"base": "gains",
"collocate": "make",
"collocation": "make gains",
"label": "Oper1",
"label_id": "7",
"context": "pakistan - elections : hard - line islamic candidates hoping to make gains islamabad , pakistan _ running on anti - american sentiment and sympathies for the taliban , hard - line islamic parties are fielding hundreds of candidates in hopes of making gains against supporters of president pervez musharraf .",
"paraphrases": [
"Progress forward",
"Advance in a positive direction",
"Achieve success or improvement",
"Obtain beneficial results",
"Accomplish growth or development"
]
},
{
"id": "290",
"base": "ties",
"collocate": "have",
"collocation": "have ties",
"label": "Oper1",
"label_id": "7",
"context": "in the span of a single day , the government : _ recanted claims three people and three organizations have deliberate ties to al - qaida .",
"paraphrases": [
"Be connected",
"Maintain relationships",
"Possess links",
"Have associations",
"Establish bonds"
]
},
{
"id": "291",
"base": "jury",
"collocate": "sit on",
"collocation": "sit on jury",
"label": "Oper1",
"label_id": "7",
"context": "` ` he is n't even old enough to buy a beer , let alone sit on a jury , '' said benjamin jealous , program coordinator for the national coalition to abolish the death penalty , a washington , d.c. , anti - death - penalty group .",
"paraphrases": [
"Serve as a juror in a trial",
"Participate in the legal decision-making process",
"Be part of a panel of jurors",
"Fulfill civic duty in a court case",
"Contribute to the jury's verdict deliberation"
]
},
{
"id": "292",
"base": "defeat",
"collocate": "endure",
"collocation": "endure defeat",
"label": "Oper1",
"label_id": "7",
"context": "another senior bush official said that while the governor could endure a defeat here next saturday , it would be a crippling setback with the potential to lead major supporters to defect to mccain .",
"paraphrases": [
"suffer loss",
"bear failure",
"withstand setback",
"stomach disappointment",
"tolerate being beaten",
""
]
},
{
"id": "293",
"base": "retreat",
"collocate": "beat",
"collocation": "beat retreat",
"label": "Oper1",
"label_id": "7",
"context": "the attack was ` ` blunted '' and government troops beat a retreat , leaving behind tanks and other weapons .",
"paraphrases": [
"Flee",
"Withdraw from battle",
"Escape quickly",
"Rapidly abandon position",
"Hurriedly leave"
]
},
{
"id": "294",
"base": "category",
"collocate": "fall",
"collocation": "fall category",
"label": "Oper1",
"label_id": "7",
"context": "for me , ` ` elle decor '' and ` ` architectural digest '' fall in this category .",
"paraphrases": [
"Belong to a specific group or type",
"Classified under a particular heading",
"Fit into a certain class or division",
"Categorized within a specific set",
"Placed in a distinct grouping or section"
]
},
{
"id": "295",
"base": "flavor",
"collocate": "have",
"collocation": "have flavor",
"label": "Oper1",
"label_id": "7",
"context": "can you imagine winston churchill quizzing a tobacconist about whether his cigars have a flavor of espresso with notes of hazelnut and dried orange peel on the palate and soft vegetal elements on the finish ?",
"paraphrases": [
"Possess a distinct taste",
"Be palatable or savory",
"Exhibit a particular tang",
"Feature a specific seasoning",
"Contain a recognizable essence"
]
},
{
"id": "296",
"base": "fever",
"collocate": "run",
"collocation": "run fever",
"label": "Oper1",
"label_id": "7",
"context": "national ( coded a ) valley - fever ( coalinga , calif. ) -- when any of the 5,300 inmates at pleasant valley state prison begin coughing and run a fever , doctors do not think flu , bronchitis or even the common cold .",
"paraphrases": [
"Have an elevated body temperature",
"Experience a higher than normal temperature",
"Suffer from a feverish condition",
"Be in a feverish state",
"Have a body temperature above the norm"
]
},
{
"id": "297",
"base": "leap",
"collocate": "make",
"collocation": "make leap",
"label": "Oper1",
"label_id": "7",
"context": "while few rock stars have successfully make the leap to become legitimate film actors , hip - hop performers have transitioned easily from the streets to the silver screen .",
"paraphrases": [
"Advance significantly",
"Progress rapidly",
"Jump ahead",
"Take a big step forward",
"Make substantial progress"
]
},
{
"id": "298",
"base": "burst",
"collocate": "shoot",
"collocation": "shoot burst",
"label": "Oper1",
"label_id": "7",
"context": "we hear some of them shoot a burst or two into what looks like a restaurant with a big coca - cola sign over the entrance .",
"paraphrases": [
"Fire multiple rounds rapidly",
"Discharge a quick succession of bullets",
"Unleash a flurry of gunshots",
"Let loose a volley of ammunition",
"Rapidly expel a series of projectiles",
""
]
},
{
"id": "299",
"base": "debut",
"collocate": "make",
"collocation": "make debut",
"label": "Oper1",
"label_id": "7",
"context": "_ _ _ on the net : www.teatrolacuadra.com that was the week that was by the associated press entertainment highlights during the week of sept. 16 - 22 : in 1964 , ` ` bewitched , '' starring elizabeth montgomery , make its debut on abc .",
"paraphrases": [
"First appearance",
"Initial performance",
"Premiere showing",
"Introductory presentation",
"Launch of career"
]
},
{
"id": "300",
"base": "place",
"collocate": "hold",
"collocation": "hold place",
"label": "Oper1",
"label_id": "7",
"context": "` ` there are numerous verses in the quran saying the prophet muhammad and other prophets hold a place of special esteem . ''",
"paraphrases": [
"Maintain position",
"Retain status",
"Keep rank",
"Preserve standing",
"Secure spot"
]
},
{
"id": "301",
"base": "analysis",
"collocate": "conduct",
"collocation": "conduct analysis",
"label": "Oper1",
"label_id": "7",
"context": "christie todd whitman was the epa administrator when the career employees say they were told not to conduct the analysis .",
"paraphrases": [
"Perform an examination",
"Carry out an assessment",
"Execute a study",
"Undertake an evaluation",
"Engage in research",
""
]
},
{
"id": "302",
"base": "analysis",
"collocate": "make",
"collocation": "make analysis",
"label": "Oper1",
"label_id": "7",
"context": "jennifer vasquez , an austin nurse , said the proposed textbooks do n't include enough information about contraceptives to make that analysis .",
"paraphrases": [
"Examine data thoroughly",
"Conduct a detailed study",
"Perform a comprehensive evaluation",
"Analyze information systematically",
"Assess data meticulously"
]
},
{
"id": "303",
"base": "part",
"collocate": "play",
"collocation": "play part",
"label": "Oper1",
"label_id": "7",
"context": "following the final game , ichiro 's response to my questions disclosed a little of his dismay , as well as the cultural difference that play a part in the distance that has grown between him and his teammates .",
"paraphrases": [
"contribute",
"have a role",
"be involved",
"participate",
"take part"
]
},
{
"id": "304",
"base": "call",
"collocate": "give",
"collocation": "give call",
"label": "Oper1",
"label_id": "7",
"context": "` ` i am give a call for a mission to make the nation corruption - free as its removal will be an important foundation for our nation .",
"paraphrases": [
"Phone someone",
"Contact via telephone",
"Reach out by calling",
"Make a phone call",
"Get in touch by phone"
]
}
] |