File size: 212,693 Bytes
209c0a8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 | [
{
"query": "What are the fifth-level classifications for molecules that have an ATC identifier greater than 92483 and a registration number greater than 1967564?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "Which ATC identifier and fifth-level classifications are linked to molecules that possess a registration number lower than 744428?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What fifth-level classification is associated with molecules that have a registration number below 1609148 and an ATC identifier of 92427?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "Which mol_atc_id and level5 classifications correspond to molecules with a molregno of 318321?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What is the average molregno for molecules that have a level5 classification of P02BA02 and a mol_atc_id within the range of 92358 to 93326?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What is the lowest protein_class_id and class_level?",
"table_ids": [
"protein classification_SEP_table_22"
]
},
{
"query": "What is the protein class description for protein_class_id values ranging from 990 to 1151 that have a parent_id of 1272.0?",
"table_ids": [
"protein classification_SEP_table_22"
]
},
{
"query": "How much is the average parent_id for the short name \"Adenosine receptor\" with a protein_class_id under 563?",
"table_ids": [
"protein classification_SEP_table_22"
]
},
{
"query": "Which entry has the highest protclasssyn_id among those with a syn_type of UMLS?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "What are the highest protclasssyn_id and the average protein_class_id for the synonym 'PTH Related Peptide Receptor'?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "Which five protein class synonyms are listed with a syn_type of CONCEPT_WIKI for protclasssyn_id 42664, sorted by protein_class_id from highest to lowest?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "Which unique identifier and synonym for the protein class are available for entries categorized under the CONCEPT_WIKI classification?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "Which protein class synonym and syn_type are linked to protclasssyn_id 33777?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "What protclasssyn_id and protein_class_id correspond to the synonym 'alpha, Estradiol Receptor' under the UMLS syn_type?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "Which warning_id is associated with the warnref_id `6123`?",
"table_ids": [
"warning refs_SEP_table_71"
]
},
{
"query": "Which database version and description correspond to components with a tax ID under 433534 from TREMBL?",
"table_ids": [
"component sequences_SEP_table_56"
]
},
{
"query": "Which is the lowest component ID for PROTEIN type components?",
"table_ids": [
"bio component sequences_SEP_table_41",
"component sequences_SEP_table_56"
]
},
{
"query": "Which is the smallest component ID for components classified as PROTEIN?",
"table_ids": [
"bio component sequences_SEP_table_41",
"component sequences_SEP_table_56"
]
},
{
"query": "What is the highest tax ID for components sourced from TREMBL?",
"table_ids": [
"component sequences_SEP_table_56"
]
},
{
"query": "What are the average tax ID and the highest component ID for PROTEIN type components?",
"table_ids": [
"bio component sequences_SEP_table_41",
"component sequences_SEP_table_56"
]
},
{
"query": "Which descriptions and organisms are associated with components classified as PROTEIN?",
"table_ids": [
"bio component sequences_SEP_table_41",
"component sequences_SEP_table_56"
]
},
{
"query": "Which sequence MD5 sum and sequence correspond to components with a component ID exceeding 2967?",
"table_ids": [
"component sequences_SEP_table_56",
"bio component sequences_SEP_table_41"
]
},
{
"query": "What species and type of component are linked to components with a component ID between 2037 and 15050 and an MD5 sum of \"a7304385fbc7627192b1408cd0b46dda\"?",
"table_ids": [
"component sequences_SEP_table_56"
]
},
{
"query": "What is the stem and unique identifier that relate to the category -ciclovir?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "Which stem is associated with the usan_stem_id 4038?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "What is the smallest usan_stem_id for the suffix stem class?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "What is the total of usan_stem_id for the stem -trilat and the specified annotation regarding endopeptidase inhibitors?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "What description is linked to the suffix classification of stems?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "Which biotherapeutics have a molregno exceeding 116979 and what are their helm notation and descriptions?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "Which biotherapeutics are included in the identifier range from 329794 to 392535, and what are their descriptions?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "Which biotherapeutic has the helm notation PEPTIDE1{[ac].[Nal].F.F.S.Y.[X1385].F.L.[dP].A.[am]}$$$$ and what are its molregno and description?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "Which descriptions and action types belong to the parent type 'OTHER'?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "Which descriptions and parent types are linked to the action type 'OTHER'?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "Which action types and their descriptions are found under the parent type 'OTHER'?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "What is the parent category and explanation linked to the action type 'INVERSE AGONIST'?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "Which descriptions correspond to the action type 'STABILISER' under the parent type 'OTHER'?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "Which chemical compound identifier and standard relation are present?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which activity ID and standard relation correspond to uo units UO_0000065?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which identifier from the Uberon ontology corresponds to the tissue with the Caloha reference \"TS-1082\" and a tissue identifier greater than \"1513416\"?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "What is the total sum of tissue identifiers for the tissue designated by the Caloha reference \"TS-1082\"?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "How does the average identifier for tissues compare for the tissue known as \"Hip bone\"?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "Which identifier from the Uberon ontology is linked to tissue identifiers that fall within the range of \"608123\" to \"4521960\"?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "What are the source tissues with a cell source tax ID exceeding `9739.15`?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "Which cell description corresponds to the chembl ID `CHEMBL3307607`?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "Which cell source tax ID and cellosaurus ID are associated with LINCS ID `LCL-1468`?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "Which chembl ID and cell description relate to CLO ID `CLO_0007636`?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "What is the highest cell ID for the description `MDA-MB-361` with LINCS ID `LCL-1468`?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "Which cell name is associated with cellosaurus ID `CVCL_2250` and the source tissue `Rb positive sarcoma cells`?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "Which values represent the lowest record id and highest tid for inhibitors?",
"table_ids": [
"drug mechanism_SEP_table_24"
]
},
{
"query": "Which \"molregno\" and \"cpd_str_alert_id\" correspond to the alert with \"alert_id\" 136?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which \"alert_id\" and \"cpd_str_alert_id\" are associated with the \"molregno\" of 106?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "How do the average \"molregno\" and minimum \"alert_id\" relate for alerts with \"cpd_str_alert_id\" under 76959784?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which five \"cpd_str_alert_id\" have the highest \"alert_id\" values above 1088?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "How do the average \"cpd_str_alert_id\" and maximum \"alert_id\" compare in the dataset?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which \"alert_id\" and \"cpd_str_alert_id\" are linked to the \"molregno\" of 4307?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which \"mol_hrac_id\" corresponds to \"molregno\" values in the range of 1164271 to 1352288?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "What is the lowest \"molregno\" for \"mol_hrac_id\" 31 with \"hrac_class_id\" exceeding 81?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "Which three \"molregno\" and \"hrac_class_id\" values are linked to \"mol_hrac_id\" 81, sorted by \"hrac_class_id\" from highest to lowest?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "Which \"molregno\" and \"hrac_class_id\" values are associated with \"mol_hrac_id\" 186?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "What are the lowest values for \"mol_hrac_id\" and \"molregno\"?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "What is the sum of \"mol_hrac_id\" for \"molregno\" 1590036 with \"hrac_class_id\" exceeding 2?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "How do we calculate the average \"metref_id\" for references with \"ref_id\" exceeding `6224381115985` and classified as `FDA`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which \"metref_id\" is associated with \"met_id\" `792` and the reference URL `http://europepmc.org/abstract/MED/12721102`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "How do we calculate the total of \"ref_id\" for the \"metref_id\" that is `11121`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which \"ref_type\" and \"ref_url\" are associated with \"met_id\" values ranging from `1741` to `2678`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which \"metref_id\" corresponds to the reference URL `http://europepmc.org/abstract/MED/12721102`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which prediction methods are associated with activity IDs below 2058956?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What are the highest activity ID and the lowest site ID for the 'Single domain' prediction method?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What are the average predicted binding IDs and the highest site ID where the certainty is elevated?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What is the average predicted binding ID for activities with IDs ranging from 340874 to 859864?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which site ID corresponds to the activity ID 1477412?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which activity IDs and predicted binding IDs exhibit a high level of certainty and have site IDs lower than 210?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What confidence values are found for activity IDs ranging from 1828132 to 2132291 and predicted binding IDs from 7705064 to 7707579?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What is the total of \"molregno\" for biotherapeutic components with a \"biocomp_id\" in the range of 2226 to 2458 and a \"component_id\" below 21788?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which \"component_id\" and \"biocomp_id\" are associated with biotherapeutic components that have a \"molregno\" of 1380222?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which \"component_id\" is associated with biotherapeutic components that have a \"biocomp_id\" of 1837?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which \"molregno\" corresponds to biotherapeutic components with a \"component_id\" below 22603?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which assay description corresponds to the type 'Functional'?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "What are the assay descriptions along with their types?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "What are the different assay descriptions and their types?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "What assay descriptions exist and what are their types?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "Which assay description corresponds to the type 'Physicochemical'?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "Which species group flag corresponds to the tax ID 358.0 for Beta-glucosidase?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "What is the highest target ID for tax IDs below 248604.92 and species group flags under 0?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "Which chembl IDs and tax IDs are associated with Homo sapiens?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "What are the organisms and their species group flags related to the chembl ID CHEMBL1949487?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "Which definitions and corresponding patent use codes are available?",
"table_ids": [
"patent use codes_SEP_table_2"
]
},
{
"query": "Which definition corresponds to the patent use code U-2860?",
"table_ids": [
"patent use codes_SEP_table_2"
]
},
{
"query": "Which definitions and their associated patent use codes are listed?",
"table_ids": [
"patent use codes_SEP_table_2"
]
},
{
"query": "Which descriptions and types are found for targets categorized as non-molecular?",
"table_ids": [
"target type_SEP_table_75"
]
},
{
"query": "What descriptions and comments regarding data validity can be found?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What explanation is linked to the remark \"Potential transcription error\"?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What comments and descriptions regarding data validity exist?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What are the available comments and descriptions related to data validity?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What descriptions and comments about data validity are present?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What comments and descriptions related to data validity can be found?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which confidence score corresponds to the description \"Homologous protein complex subunits assigned\"?",
"table_ids": [
"confidence score lookup_SEP_table_5"
]
},
{
"query": "What is the highest protclasssyn_id and protein_class_id?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "What is the smallest identifier for synonyms and protein class associated with 'Cyclin Dependent Kinase 1' in the CONCEPT_WIKI category?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "Which protclasssyn_ids and protein class synonyms correspond to protein class IDs above 1396?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "What is the highest protein class ID for 'Conjugase' with a protclasssyn_id below 42322?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "What type of synonym and protein class synonym correspond to the protein class identifier 226?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "Which are the top five protclasssyn_ids for 'Receptors, Ionotropic Glutamate' in the CONCEPT_WIKI category, sorted in descending order?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "Which cell source tissue and tax ID are associated with the efo_id EFO_0006589?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "Which efo_id and clo_id are related to the cell description B16F10Nex2 with a tax ID under 9973.90?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "Which cell names belong to the organism Mus musculus?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "How much is the average molregno and total of mol_atc_id for the classification A04AD51?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "How much is the total molregno for the classification J01MA22?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What are the molregno and level5 classification for the mol_atc_id of 91760?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What is the highest molregno and lowest mol_atc_id for the classification G03GA08?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What is the \"le\" value for the \"activity_id\" of 71021 with a \"sei\" of 9.7?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What are the highest \"sei\" and the lowest \"activity_id\" for \"bei\" values above 6.58 with \"le\" equal to 0.32?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What \"sei\" value corresponds to \"lle\" being less than 1.84 for \"activity_id\" 71021?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "Which \"lle\" and \"le\" values correspond to \"activity_id\" values below 45693?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "How much is the total of \"sei\" for \"le\" values exceeding 0.16?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "Which pathway ID is the lowest for the enzyme CYP3A4/3A5?",
"table_ids": [
"metabolism_SEP_table_11"
]
},
{
"query": "What is the lowest substrate record ID for the enzyme MsrB in the context of pathway key fig 7?",
"table_ids": [
"metabolism_SEP_table_11"
]
},
{
"query": "Which pathway keys correspond to drug record ID 2469804 and the comment Conditions:liver microsomes,hepatocytes, when ordered by drug record ID in ascending order, limited to 5?",
"table_ids": [
"metabolism_SEP_table_11"
]
},
{
"query": "Which metabolite comments and conversions are associated with pathway IDs that are below 4?",
"table_ids": [
"metabolism_SEP_table_11"
]
},
{
"query": "What are the highest frac_class_id and the average frac_code associated with KRESOXIM-METHYL?",
"table_ids": [
"frac classification_SEP_table_1"
]
},
{
"query": "What is the average unique identifier for THIABENDAZOLE in the fourth classification level B11A?",
"table_ids": [
"frac classification_SEP_table_1"
]
},
{
"query": "Which \"smarts\" and \"alert_id\" correspond to alert sets with an \"alert_set_id\" below 4?",
"table_ids": [
"structural alerts_SEP_table_76"
]
},
{
"query": "What are the alert set IDs and names that are categorized within a range of importance from 4 to 5?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "How does the average level of importance of the alert set named BMS compare?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "What is the highest alert set ID associated with the alert set named Dundee?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "How much is the total priority and what is the average alert set ID for the alert set called BMS?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "Which alert sets have a level of importance of 6, and what are their names and alert set IDs?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "Which three largest unique identifiers are there, and what are their associated helm notations?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "What helm notation and description are associated with the molregno of 378360?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "What is the smallest unique identifier value?",
"table_ids": [
"biotherapeutics_SEP_table_30",
"drug warning_SEP_table_47",
"compound structures_SEP_table_74",
"molecule frac classification_SEP_table_50",
"molecule hrac classification_SEP_table_27",
"drug indication_SEP_table_66",
"activities_SEP_table_52",
"biotherapeutic components_SEP_table_10",
"molecule atc classification_SEP_table_33",
"formulations_SEP_table_61",
"molecule irac classification_SEP_table_70",
"molecule synonyms_SEP_table_51",
"compound properties_SEP_table_7",
"drug mechanism_SEP_table_24",
"molecule hierarchy_SEP_table_36",
"compound records_SEP_table_6",
"molecule dictionary_SEP_table_54",
"compound structural alerts_SEP_table_72"
]
},
{
"query": "What description corresponds to the helm notation PEPTIDE1{R.[dP].[dK].P.[dQ].Q.[dF].[dF].G.L.M.[am]}$$$$ for molregno values exceeding 135555?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "What helm notations and their corresponding molregno values are available?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "What activity IDs correspond to \"le\" values under 0.49 and \"sei\" values ranging from 18.86 to 42.51?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "Which \"bei\" values exist when \"sei\" exceeds 1.14?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "How much do the \"bei\" values total when \"le\" is above 0.48 and \"lle\" is exactly 0.95?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What is the lowest \"activity_id\" for records where \"lle\" is 4.93?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "Which \"lle\" values exist when \"sei\" is over 220.79?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "Which domain name corresponds to the source domain ID 'PF03446'?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "How much do the domain IDs add up to for 'NAD_binding_2' with source domain ID 'PF03446'?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which domain type and source domain ID are associated with 'A_deaminase'?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which domain ID and type are linked to the source domain ID 'PF01513'?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which domain IDs and names are available?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which standard units and types correspond to standard activity IDs below 100?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "Which standard units and types are associated with standard activity IDs above 14 that have the definition \"Log(Apparent permeability)\"?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "What is the average maximum normal range for standard activity IDs above 140 that are measured in U.L-1?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "Which standard activity IDs and definitions fall within the normal range maximum values of 6034272.87 to 708418977.15?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "What standard units correspond to the description \"A measurement of the pancreatic lipase in a biological specimen\"?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "Which data validity comments and action types correspond to values in the range of 279.68 to 1786.24?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "What is the record ID that is associated with the molecular registration number 1503334?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which standard type and relation are found for a value of 44.4 and a pChEMBL value of 7.35?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "What are the average value of \"comp_go_id\" and the lowest value of \"component_id\" for \"go_id\" GO:0016020?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "How much is the average of \"comp_go_id\" for \"go_id\" GO:0003674?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "How much is the average of \"component_id\" and the total of \"comp_go_id\" for \"go_id\" GO:0003723?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "What is the \"go_id\" for the \"comp_go_id\" of 2548254?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "What are the \"comp_go_id\" values for \"component_id\" greater than 162 with \"go_id\" GO:0016740?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "Which actsm_id has the highest value and what is the lowest support mapping identifier for activity identifiers ranging from 17126994 to 17127673?",
"table_ids": [
"activity supp map_SEP_table_58"
]
},
{
"query": "Which smid has the highest value for actsm_id values ranging from 2192 to 2472?",
"table_ids": [
"activity supp map_SEP_table_58"
]
},
{
"query": "What activity identifiers and activity connection identifiers are associated with support mapping identifiers that are less than 9611?",
"table_ids": [
"activity supp map_SEP_table_58"
]
},
{
"query": "Which support mapping identifiers and activity connection identifiers are linked to activity identifiers that are greater than 17127274?",
"table_ids": [
"activity supp map_SEP_table_58"
]
},
{
"query": "Which smid and actsm_id values correspond to activity_id values that are above 17128627?",
"table_ids": [
"activity supp map_SEP_table_58"
]
},
{
"query": "What is the smallest taxonomic ID related to the identifier P11086?",
"table_ids": [
"variant sequences_SEP_table_16",
"component sequences_SEP_table_56"
]
},
{
"query": "Which variant ID is linked to the identifier P35439 in the species Rattus norvegicus?",
"table_ids": [
"variant sequences_SEP_table_16"
]
},
{
"query": "What details are linked to the curator entry \"Intermediate\"?",
"table_ids": [
"assays_SEP_table_65",
"curation lookup_SEP_table_67"
]
},
{
"query": "What details are associated with the curator entry \"Autocuration\"?",
"table_ids": [
"assays_SEP_table_65",
"curation lookup_SEP_table_67"
]
},
{
"query": "Which unique identifiers for predicted binding domains have an activity identifier that is lower than 1285230?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What levels of certainty are linked to activity identifiers that are greater than 2202861?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What is the average predbind_id for high confidence entries that use the 'Single domain' prediction method?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which predbind_id and confidence values correspond to the 'Single domain' prediction method?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which unique identifiers for predicted binding domains and their corresponding activity identifiers exhibit a high level of certainty?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which unique identifiers for predicted binding domains and the methods used for prediction are linked to a specific location of 706 and a high level of certainty?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which assay class map IDs are associated with assay class ID 62 and have an assay ID lower than 59248?",
"table_ids": [
"assay class map_SEP_table_42"
]
},
{
"query": "Which assay IDs correspond to assay class ID 159?",
"table_ids": [
"assay class map_SEP_table_42"
]
},
{
"query": "Which assay IDs correspond to assay class IDs that are under 408 and have an assay class map ID of 2456818?",
"table_ids": [
"assay class map_SEP_table_42"
]
},
{
"query": "What is the mean assay class ID for assay class map IDs that are below 2471119 and assay IDs that are under 88348?",
"table_ids": [
"assay class map_SEP_table_42"
]
},
{
"query": "Which \"ass_cls_map_id\" and \"assay_id\" correspond to assay class ID 140?",
"table_ids": [
"assay class map_SEP_table_42"
]
},
{
"query": "What are the highest assay class ID and the average of assay class map IDs for assay IDs below 78239?",
"table_ids": [
"assay class map_SEP_table_42"
]
},
{
"query": "Which \"ass_cls_map_id\" and \"assay_id\" correspond to assay class IDs exceeding 26?",
"table_ids": [
"assay class map_SEP_table_42"
]
},
{
"query": "Which assay class ID and \"ass_cls_map_id\" are associated with assay IDs above 24613?",
"table_ids": [
"assay class map_SEP_table_42"
]
},
{
"query": "Which \"ass_cls_map_id\" and assay class ID correspond to assay IDs ranging from 20910 to 94793?",
"table_ids": [
"assay class map_SEP_table_42"
]
},
{
"query": "Which \"ass_cls_map_id\" corresponds to assay class IDs above 445?",
"table_ids": [
"assay class map_SEP_table_42"
]
},
{
"query": "Which are the first three \"ass_cls_map_id\" and \"assay_id\" when sorted by assay class ID in ascending order?",
"table_ids": [
"assay class map_SEP_table_42"
]
},
{
"query": "Which ref_url and ref_type are linked to indref_id 597641 and ref_id NCT03970655?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "How can we determine the average drug indication identifier for DailyMed references related to the reference identifier fabf285f-3fa3-4444-b15e-14a4edac59c3?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which ref_types and ref_urls correspond to drugind_ids that exceed 111535?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which drugind_ids are associated with DailyMed references?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "What reference identifiers are associated with the web address https://clinicaltrials.gov/search?term=NCT02564068 within the range of reference entry identifiers from 595216 to 598089?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which relationship type corresponds to the description \"Homologous protein target assigned\"?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "What relationship types and descriptions are available?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which relationship type is associated with the description \"Molecular target other than protein assigned\"?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which relationship type is linked to the description \"Non-molecular target assigned\"?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "What relationship types and their corresponding descriptions exist?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which relationship descriptions are associated with which relationship types?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which bao_id is linked to the label \"Kd\"?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which bao_id and label exist in the table?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "What identifiers and their corresponding names are included in the table?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "What titles and their associated identifiers can be found in the table?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "What names and their respective codes are listed in the table?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which alert_set_ids and set_names have priorities below 5?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "Which priority is associated with the alert set called 'PAINS'?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "Which alert set ID is associated with 'MLSMR' that has a significance level between 4 and 7?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "What is the sum of priorities for the alert set 'Glaxo' with an ID above 1?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "What are the average values for alert set ID and priority for 'MLSMR'?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "Which priority and set name correspond to the alert set with an ID of 3?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "Which entries contain curated_by and description in the curation lookup?",
"table_ids": [
"curation lookup_SEP_table_67",
"assays_SEP_table_65"
]
},
{
"query": "Which entries contain curated_by and description in the curation lookup?",
"table_ids": [
"curation lookup_SEP_table_67",
"assays_SEP_table_65"
]
},
{
"query": "Which records include the curator method and the details in the curation reference?",
"table_ids": [
"curation lookup_SEP_table_67",
"assays_SEP_table_65"
]
},
{
"query": "Which entries feature the curation method and the accompanying details in the curation reference?",
"table_ids": [
"curation lookup_SEP_table_67",
"assays_SEP_table_65"
]
},
{
"query": "Which assay descriptions and types are available?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "Which assay descriptions and types are available?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "Which assay description corresponds to the assay type 'P'?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "Which sources and assay class IDs correspond to the \"In vivo efficacy\" classification?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "Which assay class ID pertains to \"Gastric Function\"?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "Which assay class IDs and sources are found in the \"ALIMENTARY TRACT AND METABOLISM\" category with the \"In vivo efficacy\" classification?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "Which class type and l1 correspond to assays related to \"Perfused Hindquarter Preparation with Sympathetic Nerve Stimulation in Rats\"?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "Which assay description corresponds to the unassigned assay type?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "Which assay type corresponds to the description \"ADME\"?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "What are the descriptions and types of all assays?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "Which assay type is associated with the description \"Physicochemical\"?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "Which assay type is linked to the description \"ADME\"?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "What are the types and descriptions of all assays?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "Which assay type is related to the description \"Toxicity\"?",
"table_ids": [
"assay type_SEP_table_48"
]
},
{
"query": "Which patent use codes and definitions are available?",
"table_ids": [
"patent use codes_SEP_table_2"
]
},
{
"query": "Which patent use codes and definitions can be found?",
"table_ids": [
"patent use codes_SEP_table_2"
]
},
{
"query": "Which definitions and patent use codes are present?",
"table_ids": [
"patent use codes_SEP_table_2"
]
},
{
"query": "Which \"comp_go_id\" and \"go_id\" correspond to the component ID 147?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "Which \"component_id\" corresponds to the \"go_id\" GO:0005575 with a \"comp_go_id\" exceeding 2555802?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "Which three \"comp_go_id\" values are the highest for \"component_id\" under 41 and \"go_id\" GO:0007165?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "What is the highest \"component_id\" for \"comp_go_id\" that is more than 2550097?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "Which \"go_id\" and \"component_id\" correspond to \"comp_go_id\" in the range of 2548202 to 2554667?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "How much is the average molregno for MAGAININ 2?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "Which unique identifier is associated with MAGAININ 2?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "Which description matches the molregno 312192 and the helm notation 'PEPTIDE1{A.V.[Sar].F.Y}$$$$'?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "What is the highest molregno for MAGAININ 2 with the helm notation 'PEPTIDE1{G.I.G.K.F.L.H.S.A.K.K.F.G.K.A.F.V.G.E.I.M.N.S}$$$$'?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "What is the highest molregno associated with MAGAININ 2 and the helm notation 'PEPTIDE1{G.I.G.K.F.L.H.S.A.K.K.F.G.K.A.F.V.G.E.I.M.N.S}$$$$'?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "What is the total sum of the unique identifiers for MAGAININ 2?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "What is the total sum of the unique identifiers for the helm notation 'PEPTIDE1{Y.G.G.F.M.E.[am]}$$$$'?",
"table_ids": [
"biotherapeutics_SEP_table_30"
]
},
{
"query": "Which GO ID and aspect are associated with the parent GO ID `GO:0005515`?",
"table_ids": [
"go classification_SEP_table_9"
]
},
{
"query": "What is the lowest classification level for the category `C` and the parent GO ID `GO:0005575`?",
"table_ids": [
"go classification_SEP_table_9"
]
},
{
"query": "How much is the sum of class levels for the parent GO ID `GO:0005575`?",
"table_ids": [
"go classification_SEP_table_9"
]
},
{
"query": "Which classifications correspond to level 4 and level 1 for decitabine?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which level 2 description and level 4 classification correspond to level 3 classification S01A and level 2 classification S01?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which level 3 classification and level 4 description are related to M03BA and the description 'MUSCULO-SKELETAL SYSTEM'?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which level 5 and level 4 classifications are associated with the description 'ANTERIOR PITUITARY LOBE HORMONES AND ANALOGUES' and 'SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS'?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which level 2 classifications are associated with the level 3 classification P03A?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which level 4 description and level 5 classification are related to the classification P03A?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which level 2 classification corresponds to fenetylline and the level 4 description 'Centrally acting sympathomimetics'?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Who are the curators and what are their descriptions?",
"table_ids": [
"curation lookup_SEP_table_67",
"assays_SEP_table_65"
]
},
{
"query": "What descriptions correspond to each curator?",
"table_ids": [
"curation lookup_SEP_table_67",
"assays_SEP_table_65"
]
},
{
"query": "Which descriptions belong to the curator \"Autocuration\"?",
"table_ids": [
"assays_SEP_table_65",
"curation lookup_SEP_table_67"
]
},
{
"query": "Which curator is associated with the phrase \"Curated against extractor target assignment\"?",
"table_ids": [
"curation lookup_SEP_table_67"
]
},
{
"query": "Who are the curators and what descriptions do they have?",
"table_ids": [
"curation lookup_SEP_table_67",
"assays_SEP_table_65"
]
},
{
"query": "Who curated the items and what are their descriptions?",
"table_ids": [
"curation lookup_SEP_table_67",
"assays_SEP_table_65"
]
},
{
"query": "Which curator is connected to the phrase \"Curated against ChEMBL target assignment from assay description\"?",
"table_ids": [
"curation lookup_SEP_table_67"
]
},
{
"query": "What comments correspond to the date 2024-03-28?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "What comments are associated with ChEMBL_34 on the date 2024-03-28?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "What descriptions and names are available for the date 2024-03-28?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "What comments and names exist for the date 2024-03-28?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "Which assay identifier and type of tissue are associated with the unique identifier '80628' and cell identifier '850.0'?",
"table_ids": [
"assays_SEP_table_65"
]
},
{
"query": "What aidx is associated with the cell ID '478.0'?",
"table_ids": [
"assays_SEP_table_65"
]
},
{
"query": "Which assay strain corresponds to the tissue ID '1474.0'?",
"table_ids": [
"assays_SEP_table_65"
]
},
{
"query": "What are the activity IDs where \"bei\" is less than 30.52 and \"sei\" is less than 224.35?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "How much is the total of \"lle\" for \"sei\" values less than 11.51?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "How much is the total of \"bei\" for activity IDs less than 51616 and \"sei\" values between 89.50 and 93.33?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "Which \"bei\" values correspond to \"lle\" being 0.25 and \"le\" being 0.19?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What is the total of the identifiers for the binding site labeled \"Amiloride-sensitive cation channel 3, ASC domain\"?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "Which site_name corresponds to tid 17124 and has a site_id greater than 24731?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What is the average value of tid for site_ids that are below 35175?",
"table_ids": [
"binding sites_SEP_table_8",
"drug mechanism_SEP_table_24"
]
},
{
"query": "What are the identifiers and unique numbers that correspond to the binding site named \"Tryptophan 2,3-dioxygenase, Trp_dioxygenase domain\"?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "Which site_id and site_name are associated with tid 10696?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What is the lowest confidence score associated with the statement 'Multiple direct protein targets may be assigned' and the target mapping 'Multiple proteins'?",
"table_ids": [
"confidence score lookup_SEP_table_5"
]
},
{
"query": "Which three descriptions are associated with the target mapping 'Subcellular fraction' and have confidence scores between 0 and 3, sorted by confidence score from highest to lowest?",
"table_ids": [
"confidence score lookup_SEP_table_5"
]
},
{
"query": "What is the highest confidence score linked to the statement 'Target assigned is molecular non-protein target'?",
"table_ids": [
"confidence score lookup_SEP_table_5"
]
},
{
"query": "Which target mapping and description correspond to a confidence score of 2?",
"table_ids": [
"confidence score lookup_SEP_table_5"
]
},
{
"query": "Which descriptions have confidence scores between 1 and 6 and are associated with the target mapping 'Multiple proteins'?",
"table_ids": [
"confidence score lookup_SEP_table_5"
]
},
{
"query": "What is the lowest confidence score associated with the target mapping 'Subcellular fraction'?",
"table_ids": [
"confidence score lookup_SEP_table_5"
]
},
{
"query": "Which component IDs and protein classification IDs are present for a component classification identifier that is less than 2418?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "What are the protein class IDs and comp class IDs for component IDs ranging from 306 to 7920?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "What is the smallest component identifier for protein classification IDs greater than 552 and component classification IDs that fall between 2410 and 10805?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "What component IDs correspond to a comp_class_id of 10298 with protein_class_id between 624 and 765?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "What component classification IDs and protein classification IDs are associated with component identifiers that are less than 8638?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "Which protein classification IDs and component identifiers are linked to a component classification identifier that is below 10198?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "Which description is associated with the identifier BAO_0002793?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which bao_id corresponds to the label \"enzyme kinetic constant\"?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which label is associated with the bao_id BAO_0000366?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which labels and bao_ids can be found?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "What is the highest identifier number for the research stem \"CKD\"?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "How does the average res_stem_id for the research stem \"VRX\" compare?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "Which res_stem_id is the highest for the research stem \"ISF\"?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "What research stem is linked to the res_stem_id of 141?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "Which identifier corresponds to the research stem \"AZ\"?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "What version of the database is linked to the identifier Q9JM51?",
"table_ids": [
"component sequences_SEP_table_56"
]
},
{
"query": "What are the minimum component ID and the average tax ID for components that have the database version 2024_01?",
"table_ids": [
"component sequences_SEP_table_56"
]
},
{
"query": "Which bao_id and label can be found in the table?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which label and bao_id exist in the table?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "What is the unique identifier linked to the term 'AC26 absolute'?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "What term is associated with the unique identifier 'BAO_0003005'?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "How much is the total tax ID for Homo sapiens?",
"table_ids": [
"component sequences_SEP_table_56",
"target dictionary_SEP_table_78",
"metabolism_SEP_table_11",
"bio component sequences_SEP_table_41",
"variant sequences_SEP_table_16"
]
},
{
"query": "What are the average variant forms and the lowest tax identification number for versions below 3.46?",
"table_ids": [
"variant sequences_SEP_table_16"
]
},
{
"query": "What is the average version for accession P25440 with tax IDs ranging from 88887.98 to 344340.57?",
"table_ids": [
"variant sequences_SEP_table_16"
]
},
{
"query": "Which living entity and tax identification number are linked to the unique identifier P23979 for versions below 1.21?",
"table_ids": [
"variant sequences_SEP_table_16"
]
},
{
"query": "Which organism and isoform are associated with accession P30419?",
"table_ids": [
"variant sequences_SEP_table_16"
]
},
{
"query": "Which descriptions and data validity comments can be found?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What data validity comment corresponds to the description indicating missing data?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which data validity comments and descriptions are available?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which description corresponds to the data validity comment regarding author confirmation of an error?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which description is associated with the data validity comment about being outside the typical range?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which descriptions and data validity comments exist?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which data validity comments and descriptions can be found?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What are the average tax ID and the lowest species group flag for the chembl ID CHEMBL613130?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "Which species group flag corresponds to the tax ID of 9606.0?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "Which pref name and chembl ID are associated with the organism 'Rift Valley fever virus'?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "Which pref names belong to the target type ORGANISM?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "Which class level is the highest for the parent GO ID `GO:0019835`?",
"table_ids": [
"go classification_SEP_table_9"
]
},
{
"query": "Which class level is the lowest for the preferred name `ligase activity` and the GO ID `GO:0016874`?",
"table_ids": [
"go classification_SEP_table_9"
]
},
{
"query": "What is the lowest class level for the preferred name `cytokine activity` within the category `F`?",
"table_ids": [
"go classification_SEP_table_9"
]
},
{
"query": "Which formulation identifier and entry number are the highest within the chemical registration number range of 1552192 to 1804350?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "What is the highest entry number and what is the average product formulation identifier for the item identified as PRODUCT_021471_001 with a chemical registration number below 1215203?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "Which molregno and formulation_id correspond to the strength of EQ 0.9% PHOSPHATE?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "Which product formulation identifier and product identifier are linked to entry numbers exceeding 1343988 and chemical registration numbers greater than 1227901?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "Which values and standard classifications are linked to the standard units of 'mg.kg-1' with a connection of '='?",
"table_ids": [
"activity properties_SEP_table_13",
"activities_SEP_table_52",
"assay parameters_SEP_table_37"
]
},
{
"query": "Which assay parameter IDs and standard units correspond to assay IDs above 304436 with a text value of 'Intravenous'?",
"table_ids": [
"assay parameters_SEP_table_37"
]
},
{
"query": "What are the total sums of assay parameter IDs and their corresponding values?",
"table_ids": [
"assay parameters_SEP_table_37"
]
},
{
"query": "What is the average measurement associated with the category 'DOSE'?",
"table_ids": [
"activity properties_SEP_table_13",
"activities_SEP_table_52",
"assay parameters_SEP_table_37"
]
},
{
"query": "What are the details and parent category related to the degrader action type?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "Which parent category and details are associated with the hydrolytic enzyme action type?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "Which \"res_stem_id\" is associated with molecules that have a \"molregno\" less than 656490 and are identified as TCMDC-134142?",
"table_ids": [
"molecule synonyms_SEP_table_51"
]
},
{
"query": "Which \"res_stem_id\" and \"syn_type\" are found for molecules that have \"molsyn_id\" under 8351?",
"table_ids": [
"molecule synonyms_SEP_table_51"
]
},
{
"query": "What is the average \"molregno\" for molecules that are identified as U-73777E?",
"table_ids": [
"molecule synonyms_SEP_table_51"
]
},
{
"query": "Which \"syn_type\" and highest \"molsyn_id\" exist for molecules with \"molregno\" above 606493, grouped by \"syn_type\" with a maximum \"molsyn_id\" exceeding 13574?",
"table_ids": [
"molecule synonyms_SEP_table_51"
]
},
{
"query": "How much is the total of \"res_stem_id\" and what is the lowest \"molregno\" for molecules that have \"molsyn_id\" as 20156 and synonyms as E322?",
"table_ids": [
"molecule synonyms_SEP_table_51"
]
},
{
"query": "Which \"res_stem_id\" and \"syn_type\" correspond to molecules that have \"molsyn_id\" exceeding 3910?",
"table_ids": [
"molecule synonyms_SEP_table_51"
]
},
{
"query": "How do the average pubmed_id values compare for documents with volumes ranging from 20 to 30 and doc_ids from 1714 to 4353?",
"table_ids": [
"docs_SEP_table_15"
]
},
{
"query": "What are the smallest final page number and the largest edition number?",
"table_ids": [
"docs_SEP_table_15"
]
},
{
"query": "Which comments regarding data validity and their explanations can be found?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which data validity comment corresponds to the description \"Error in publication - Author confirmed (personal communication)\"?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which data validity comments and their explanations are available?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which comments regarding data validity and their descriptions exist?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which molecular entity identifier and mechanism of action ID are linked to record IDs greater than 1667918 and a molecular mechanism value of 1?",
"table_ids": [
"drug mechanism_SEP_table_24"
]
},
{
"query": "What are the average values of molecular mechanism and the highest record ID for inhibitors?",
"table_ids": [
"drug mechanism_SEP_table_24"
]
},
{
"query": "What does the binding site comment say?",
"table_ids": [
"drug mechanism_SEP_table_24"
]
},
{
"query": "What selectivity remarks and therapeutic indication IDs are related to site ID 2627.0 and molecular entity identifiers that are less than 716474?",
"table_ids": [
"drug mechanism_SEP_table_24"
]
},
{
"query": "What indref_id and ref_url exist for the ref_type labeled as DailyMed?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which taxonomic identifier and organism identifier are linked to organisms categorized as \"Gram-Negative\"?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "Which l3 and tax_id values correspond to organisms with oc_id values below 3512?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "What is the highest organism identifier for species classified under \"Viridiplantae\"?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "What are the values for the third level and second level of classification for organisms identified as \"Fungi\" with a taxonomic identifier less than 2448306?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "Which l3 and l1 values correspond to organisms with tax_id values ranging from 62948 to 1157742?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "Which entity type and chembl ID are associated with the assay that has a last active value of 34.0 and an entity ID of 508537?",
"table_ids": [
"chembl id lookup_SEP_table_63"
]
},
{
"query": "What status do entities have if their entity ID falls between 88587 and 264963 and their last active value is 34.0?",
"table_ids": [
"chembl id lookup_SEP_table_63"
]
},
{
"query": "What are the average last active value and the highest entity ID for the chembl ID CHEMBL1003837?",
"table_ids": [
"chembl id lookup_SEP_table_63"
]
},
{
"query": "What are the average entity ID and the lowest last active value for active status entities?",
"table_ids": [
"chembl id lookup_SEP_table_63"
]
},
{
"query": "What are the lowest last active value and the average entity ID for entities that are active?",
"table_ids": [
"chembl id lookup_SEP_table_63"
]
},
{
"query": "What is the lowest entity ID for entities classified as assays?",
"table_ids": [
"chembl id lookup_SEP_table_63"
]
},
{
"query": "Which patent_ids and their corresponding total years are found for documents with first_page under 2270, grouped by patent_id, with years summing between 1992.26 and 1997.39?",
"table_ids": [
"docs_SEP_table_15"
]
},
{
"query": "What are the values that show the lowest molecule identifier and the sum of the standard measurement for document number 10048?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which values show the minimum activity_id and the total of standard_value for data validity comments that are \"Outside typical range\"?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "What are the average document identifier and the lowest activity identifier values?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which values correspond to value and standard_units?",
"table_ids": [
"activities_SEP_table_52",
"assay parameters_SEP_table_37",
"activity supp_SEP_table_40",
"activity properties_SEP_table_13"
]
},
{
"query": "What is the lowest value recorded?",
"table_ids": [
"activities_SEP_table_52",
"assay parameters_SEP_table_37",
"activity supp_SEP_table_40",
"activity properties_SEP_table_13"
]
},
{
"query": "What is the lowest activity property identifier for standard units that are measured in hours?",
"table_ids": [
"activity properties_SEP_table_13"
]
},
{
"query": "Which reference URLs correspond to FDA warning IDs that are below `2222`?",
"table_ids": [
"warning refs_SEP_table_71"
]
},
{
"query": "Which reference IDs have their average warning IDs calculated when grouped by reference ID?",
"table_ids": [
"warning refs_SEP_table_71"
]
},
{
"query": "Which value represents the maximum warning ID for the reference ID `48244614-53ec-47e6-ad48-50814bdcceb7` and the specified reference URL?",
"table_ids": [
"warning refs_SEP_table_71"
]
},
{
"query": "Which values represent the average warnref ID and the minimum warning ID for the reference URL `https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid=4e5c06f1-f279-4f2f-b10d-0f70005a27e6`?",
"table_ids": [
"warning refs_SEP_table_71"
]
},
{
"query": "Which values are the smallest for \"molregno\" and \"record_id\"?",
"table_ids": [
"formulations_SEP_table_61",
"drug warning_SEP_table_47",
"drug mechanism_SEP_table_24",
"drug indication_SEP_table_66",
"activities_SEP_table_52",
"compound records_SEP_table_6"
]
},
{
"query": "Which are the highest \"record_id\" and \"formulation_id\" for the product identified as `PRODUCT_021870_002`?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "How do the average \"formulation_id\" and total \"record_id\" values compare for the component \"FLUDEOXYGLUCOSE F-18\"?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "What total do we get for \"formulation_id\" when \"molregno\" falls within the range of `377007` to `2287218`?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "Which \"molregno\" and \"formulation_id\" are associated with records that have an ID exceeding `2057101`?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "Which \"molregno\" and \"ingredient\" can be found for \"formulation_id\" under `67122` and \"record_id\" within the range of `1343602` to `1344303`?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "What total do we obtain for \"record_id\" when \"formulation_id\" is below `47778`?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "Which is the highest \"molregno\" for records with IDs ranging from `1391389` to `1453182`?",
"table_ids": [
"formulations_SEP_table_61",
"drug warning_SEP_table_47",
"drug mechanism_SEP_table_24",
"drug indication_SEP_table_66",
"activities_SEP_table_52",
"compound records_SEP_table_6"
]
},
{
"query": "Which are the lowest values of \"cx_most_apka\" and \"hba_lipinski\" for compounds with \"cx_most_bpka\" in the range of 7.31 to 9.23 and \"cx_logp\" below 1.92?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "What are the average \"cx_logd\" and the minimum \"heavy_atoms\" for compounds with \"hba\" exceeding 5.09 and \"hba_lipinski\" below 10.98?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "What is the \"heavy_atoms\" count for the compound with \"cx_most_apka\" equal to 3.51 and a full molecular formula of C27H29N3O6?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "Which values of \"hba\" and \"full_mwt\" correspond to compounds with a \"psa\" of 103.26 and fewer than 28.77 heavy atoms?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "Which \"frac_class_id\" and \"molregno\" correspond to the \"mol_frac_id\" of 115?",
"table_ids": [
"molecule frac classification_SEP_table_50"
]
},
{
"query": "What are the highest \"molregno\" and the average \"mol_frac_id\" when \"frac_class_id\" exceeds 667?",
"table_ids": [
"molecule frac classification_SEP_table_50"
]
},
{
"query": "Which \"molregno\" values correspond to \"mol_frac_id\" that is below 43?",
"table_ids": [
"molecule frac classification_SEP_table_50"
]
},
{
"query": "What \"mol_frac_id\" and \"frac_class_id\" are associated with \"molregno\" values that fall between 677380 and 942498?",
"table_ids": [
"molecule frac classification_SEP_table_50"
]
},
{
"query": "Which \"frac_class_id\" values correspond to \"mol_frac_id\" that is above 116?",
"table_ids": [
"molecule frac classification_SEP_table_50"
]
},
{
"query": "Which \"mol_frac_id\" and \"molregno\" correspond to \"frac_class_id\" values that lie between 548 and 659?",
"table_ids": [
"molecule frac classification_SEP_table_50"
]
},
{
"query": "Which \"molregno\" and \"standard_flag\" correspond to the \"bao_endpoint\" BAO_0003036?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which \"bao_endpoint\" and \"activity_id\" are present in the records?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which \"text_value\" corresponds to \"standard_value\" below 313558.36?",
"table_ids": [
"activities_SEP_table_52",
"assay parameters_SEP_table_37",
"activity supp_SEP_table_40",
"activity properties_SEP_table_13"
]
},
{
"query": "Which \"type\" values can be found in the records?",
"table_ids": [
"activities_SEP_table_52",
"assay parameters_SEP_table_37",
"activity supp_SEP_table_40",
"activity properties_SEP_table_13"
]
},
{
"query": "How much is the total \"pchembl_value\" and what is the lowest \"value\" in the records?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which metref_id corresponds to the reference URL `http://www.isbnsearch.org/isbn/9780071624428` with a ref_id exceeding `2432396309551`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "How much is the sum of met_id for ref_id values exceeding `6731722487671`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "What is the minimum met_id and the average ref_id for entries with a ref_type of `PMID`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which ref_id corresponds to the ref_type `ISBN` with metref_id values ranging from `12357` to `13048`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which record ID and molregno correspond to the warning ID 1864?",
"table_ids": [
"drug warning_SEP_table_47"
]
},
{
"query": "Which warning class and description are associated with the term hepatotoxicity?",
"table_ids": [
"drug warning_SEP_table_47"
]
},
{
"query": "Which type of warning is associated with chemical substance identifiers between 713859 and 1129237 that have the warning class identifier of EFO:0011048?",
"table_ids": [
"drug warning_SEP_table_47"
]
},
{
"query": "Which warning class corresponds to the year 1974.0?",
"table_ids": [
"drug warning_SEP_table_47"
]
},
{
"query": "Which efo_id_for_warning_class is associated with the description \"potent photosensitizer capable of causing disabling skin disorders\"?",
"table_ids": [
"drug warning_SEP_table_47"
]
},
{
"query": "What is the earliest year of warnings recorded and what is the average number of warning IDs for the identifier EFO:0000701?",
"table_ids": [
"drug warning_SEP_table_47"
]
},
{
"query": "Which comments and when was the Bioassay Ontology 2.0 created?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "Which comments and when was ChEMBL_Structure_Pipeline 1.2.0 created?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "Which names and comments are linked to the creation date of 2024-03-28?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "Which additional information and titles are associated with the creation date of 2024-03-28?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "Which comments and names correspond to the creation date of 2024-03-28?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "Which \"res_stem_id\" and \"previous_company\" correspond to companies in Germany?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "Which companies are situated in Japan?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "Which \"country\" is associated with companies that were previously linked to Byk Gulden Lomberg Chemische Fabrik?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "Which tax_id is the smallest for the accession P21452?",
"table_ids": [
"component sequences_SEP_table_56",
"variant sequences_SEP_table_16"
]
},
{
"query": "Which organisms and accessions correspond to variant_ids in the range of 187 to 520?",
"table_ids": [
"variant sequences_SEP_table_16"
]
},
{
"query": "What organisms are associated with version 2.0?",
"table_ids": [
"variant sequences_SEP_table_16"
]
},
{
"query": "What are the highest isoform and the average version for the accession P10253?",
"table_ids": [
"variant sequences_SEP_table_16"
]
},
{
"query": "Which sequences and mutations are found in the organism Homo sapiens?",
"table_ids": [
"variant sequences_SEP_table_16"
]
},
{
"query": "Which short name is associated with the source ID 39 that describes Curated Drug Pharmacokinetic Data?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "Which descriptions and IDs belong to the first five sources labeled INN when sorted by ID in ascending order?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "Which delist flag and patent number correspond to products submitted on 2010-09-30 with a drug product flag ranging from 0 to 0?",
"table_ids": [
"product patents_SEP_table_39"
]
},
{
"query": "How much is the total of drug product flags for products with a product patent ID below 5922?",
"table_ids": [
"product patents_SEP_table_39"
]
},
{
"query": "Which patent expiration date and patent number are associated with the product identified as PRODUCT_205552_001?",
"table_ids": [
"product patents_SEP_table_39"
]
},
{
"query": "What is the delist flag for patents that have a patent number below 10447209?",
"table_ids": [
"product patents_SEP_table_39"
]
},
{
"query": "Which comment corresponds to the ATC code J05AB18 and is measured in grams?",
"table_ids": [
"defined daily dose_SEP_table_38"
]
},
{
"query": "What are the values and comments for defined daily doses with IDs ranging from 1364 to 3350 and an administration route of 'O'?",
"table_ids": [
"defined daily dose_SEP_table_38"
]
},
{
"query": "Which ATC codes and IDs correspond to defined daily doses with an administration route of 'O'?",
"table_ids": [
"defined daily dose_SEP_table_38"
]
},
{
"query": "What are the maximum organism identifier and the total taxonomic identifier for the Eukaryotes category?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "What is the minimum organism identifier and taxonomic identifier for organisms categorized as Bacteria?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "What are the total values of the organism identifier and taxonomic identifier for Eukaryotes classified under Viridiplantae?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "How much is the total of chembl_release_id on the date of 2011-11-18?",
"table_ids": [
"chembl release_SEP_table_12"
]
},
{
"query": "Which chembl_release and its corresponding chembl_release_id were created on 2021-07-01?",
"table_ids": [
"chembl release_SEP_table_12"
]
},
{
"query": "What is the mean value of chembl_release_id for CHEMBL_14 created on 2012-06-27?",
"table_ids": [
"chembl release_SEP_table_12"
]
},
{
"query": "Which chembl_release_id and creation_date correspond to CHEMBL_14?",
"table_ids": [
"chembl release_SEP_table_12"
]
},
{
"query": "Which version of the ChEMBL database and its date of creation are associated with the identifier of 17?",
"table_ids": [
"chembl release_SEP_table_12"
]
},
{
"query": "What is the smallest unique identifier for a ChEMBL release on the date of July 1, 2021?",
"table_ids": [
"chembl release_SEP_table_12"
]
},
{
"query": "Which met_id and metref_id are associated with ref_type PMID and a ref_id greater than 4866500718942?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "What is the average identifier for metabolites that have a reference type of FDA?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which ref_type corresponds to the ref_url http://europepmc.org/abstract/MED/20947616 with metref_id values ranging from 3879 to 4260?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which is the highest metref_id for met_id values that are below 1453?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which ref_type and met_id are associated with ref_id values exceeding 3049212525097?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which ref_id values fall within the range of met_id from 511 to 1551?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which values represent the smallest rgid and the total of smid for standard text value minimal?",
"table_ids": [
"activity supp_SEP_table_40"
]
},
{
"query": "How much is the total of rgid and the smallest smid?",
"table_ids": [
"activity supp_SEP_table_40"
]
},
{
"query": "How high is the maximum as_id?",
"table_ids": [
"activity supp_SEP_table_40"
]
},
{
"query": "What is the average of \"hrac_class_id\" and \"molregno\" for molecules with a \"mol_hrac_id\" exceeding 31?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "Which \"molregno\" and \"mol_hrac_id\" correspond to classifications with an \"hrac_class_id\" below 143?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "What total do we get for \"mol_hrac_id\" in classifications with an \"hrac_class_id\" ranging from 12 to 26 and a \"molregno\" under 341639?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "What is the minimum \"molregno\" and \"hrac_class_id\" for molecules that have a \"mol_hrac_id\" exceeding 33?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "Which smid value is the smallest?",
"table_ids": [
"activity smid_SEP_table_77",
"activity supp_SEP_table_40",
"activity supp map_SEP_table_58"
]
},
{
"query": "What is the total of all the values listed under the identifier?",
"table_ids": [
"activity smid_SEP_table_77",
"activity supp_SEP_table_40",
"activity supp map_SEP_table_58"
]
},
{
"query": "What is the mean value of smid?",
"table_ids": [
"activity smid_SEP_table_77",
"activity supp_SEP_table_40",
"activity supp map_SEP_table_58"
]
},
{
"query": "Which relationship type corresponds to the description \"Molecular target other than protein assigned\"?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which relationship type is associated with the description \"Non-molecular target assigned\"?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which description is linked to the relationship type \"N\"?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which relationship descriptions and their associated types can be found?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which relationship types exist along with their descriptions?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which definitions correspond to standard units of nM and standard activity IDs ranging from 52 to 122?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "Which standard types and definitions have a normal range maximum exceeding 60221722.62 and standard units of nM?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "What are the highest standard activity ID and the lowest normal range minimum for standards with a normal range maximum of 10000.0?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "Which standard units and total normal range maximums correspond to the definition of Minimum inhibitory concentration in 70% of population, with normal range minimums exceeding 44.87 and a total greater than 774451393.94?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "Which standard types and definitions have a normal range maximum of 5000.0 and standard activity IDs ranging from 36 to 142?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "Which normal range maximums and definitions correspond to standard activity IDs below 128?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "Which standard types and total normal range minimums are associated with a standard activity ID of 116 and standard units of -?",
"table_ids": [
"activity stds lookup_SEP_table_45"
]
},
{
"query": "When was the Swiss-Prot 2024_01 entry created that has the comments \"UniProtKB version used for component_sequences data (https://www.expasy.org/resources/uniprotkb)\"?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "Which level 2 description corresponds to HRAC class ID 167 and HRAC code H?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which level 2 description and level 1 are associated with level 3 B119 and HRAC class ID below 29?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which active ingredient corresponds to level 2 B1 and level 1 B?",
"table_ids": [
"frac classification_SEP_table_1",
"hrac classification_SEP_table_62"
]
},
{
"query": "What total do the HRAC class IDs reach for level 2 C14?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "What is the mean of HRAC class IDs for level 2 C21 with the level 2 description UREA?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which biocomp_id values are associated with molregno and component_id that exceed 1933452 and 21106, respectively?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "What are the average molregno and the lowest component_id for biocomp_id values exceeding 3196?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which molecular registration numbers and biotherapeutic component identifiers are associated with component identifiers that are greater than 20751?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which component_id and biocomp_id are associated with molregno values below 2488349?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which three biocomp_id values are the lowest within the molregno range of 1421440 to 2632554?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which maximum values of max_phase_for_ind and drugind_id correspond to molregno less than 449114?",
"table_ids": [
"drug indication_SEP_table_66"
]
},
{
"query": "What are the compound names and record IDs that have a source identifier below 1 and a classification identifier equal to CLD0?",
"table_ids": [
"compound records_SEP_table_6"
]
},
{
"query": "Which record IDs and compound names are linked to a document identifier that is less than 5159 and a molecular registry number that falls between 343923 and 1512467?",
"table_ids": [
"compound records_SEP_table_6"
]
},
{
"query": "Which molregno corresponds to the doc_id of 12247?",
"table_ids": [
"compound records_SEP_table_6"
]
},
{
"query": "What identifier is linked to the research stem labeled AZD?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "What is the smallest identifier associated with the research stem named RTP?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "What is the total value of identifiers for the research stem MB?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "What is the highest \"drugind_id\" associated with the \"indref_id\" of `603472`?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "What are the lowest \"drugind_id\" and highest \"indref_id\" values?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "What \"drugind_id\" corresponds to the reference ID `NCT02117648`?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which minimum tax ID and maximum component ID correspond to the sequence with the MD5 sum `fefba7e2270a1e24650069638b164abe` in Streptococcus pneumoniae serotype 4 (strain ATCC BAA-334 / TIGR4)?",
"table_ids": [
"component sequences_SEP_table_56"
]
},
{
"query": "What is the total of component IDs and the minimum tax ID for the sequence `MVWKVAVFLSVALGIGAVPIDDPEDGGKHWVVIVAGSNGWYNYRHQADACHAYQIIHRNGIPDEQIVVMMYDDIAYSEDNPTPGIVINRPNGTDVYQGVPKDYTGEDVTPQNFLAVLRGDAEAVKGIGSGKVLKSGPQDHVFIYFTDHGSTGILVFPNEDLHVKDLNETIHYMYKHKMYRKMVFYIEACESGSMMNHLPDNINVYATTAANPRESSYACYYDEKRSTYLGDWYSVNWMEDSDVEDLTKETLHKQYHLVKSHTNTSHVMQYGNKTISTMKVMQFQGMKRKASSPVPLPPVTHLDLTPSPDVPLTIMKRKLMNTNDLEESRQLTEEIQRHLDARHLIEKSVRKIVSLLAASEAEVEQLLSERAPLTGHSCYPEALLHFRTHCFNWHSPTYEYALRHLYVLVNLCEKPYPLHRIKLSMDHVCLGHY` with the MD5 sum `716f46c43c4c97f7df8bd390b5e55ac3`?",
"table_ids": [
"component sequences_SEP_table_56"
]
},
{
"query": "What is the lowest tax ID for the database version `2024_01` in the SWISS-PROT database?",
"table_ids": [
"component sequences_SEP_table_56"
]
},
{
"query": "What is the average tax ID and the highest component ID for the identifier `Q8VHN2` in Rattus norvegicus?",
"table_ids": [
"component sequences_SEP_table_56"
]
},
{
"query": "How much is the total of component IDs for the PROTEIN type described as `UDP-glucuronosyltransferase 1A4`?",
"table_ids": [
"component sequences_SEP_table_56"
]
},
{
"query": "Which accessions correspond to the organism Homo sapiens?",
"table_ids": [
"variant sequences_SEP_table_16",
"component sequences_SEP_table_56"
]
},
{
"query": "Which component ID is associated with the sequence that has the MD5 sum `4ce8c8dc7838edc8533a7f7f5d57fabd`?",
"table_ids": [
"component sequences_SEP_table_56"
]
},
{
"query": "Which descriptions and action types are associated with the parent type 'OTHER'?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "Which description is associated with the action type 'INHIBITOR' under the parent type 'NEGATIVE MODULATOR'?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "Which parent type is associated with the action type 'SUBSTRATE'?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "What data validity comments and descriptions are available?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What descriptions and data validity comments can be found?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What are the top three assay class IDs and their types for the 'NERVOUS SYSTEM'?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "How much is the sum of assay class IDs for 'In vivo efficacy' from 'Vogel_2008'?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "What class types and assay class IDs correspond to 'Local Anesthetic Activity' from 'Hock_2016'?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "Which sources and class types relate to 'Hypnotic Activity'?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "What is the lowest assay class ID for 'Hypothalamic Hormones' under 'In vivo efficacy'?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "What descriptions and data validity comments can be found in the table?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What data validity comment is associated with the description regarding author confirmation of an error?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What is the value of \"sei\" when \"lle\" is 5.98?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What is the value of \"bei\" for \"activity_id\" 75325?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "Which values correspond to \"sei\" and \"activity_id\" when \"bei\" is 11.36?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What value does \"lle\" take when \"le\" is below 1.37 and \"activity_id\" falls between 32382 and 36952?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What are the total of \"le\" and the smallest \"lle\" for \"activity_id\" 80287 with \"sei\" below 20.48?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What is the lowest \"lle\" and the highest \"bei\" for \"le\" values above 0.20 and \"activity_id\" ranging from 61992 to 71607?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What is the lowest \"mw_monoisotopic\" value for compounds with \"qed_weighted\" below 0.36?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "What are the \"molregno\" and \"num_ro5_violations\" for compounds that have a \"full_mwt\" of 238.33 and \"mw_monoisotopic\" values ranging from 467.12 to 1056.58?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "What values of \"aromatic_rings\" and \"ro3_pass\" correspond to compounds with \"cx_logp\" exceeding 7.34?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "How many \"heavy_atoms\" are there on average for compounds with \"cx_logp\" over 0.21?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "Which \"cx_logd\" and \"hbd\" values are associated with compounds that have more than 5.19 \"aromatic_rings\"?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "What are the lowest \"psa\" value and the total of \"full_mwt\"?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "Which active ingredient corresponds to level 2 C31 and HRAC code C3?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which level 2 classifications and HRAC codes match the description \"PHENYL-CARBAMATE\"?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which level 2 descriptions and active ingredients correspond to level 2 classification C14?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which HRAC codes and their average HRAC class IDs are associated with the description \"PHENYL-CARBAMATE\" and level 1 description \"INHIBITION OF PHOTOSYNTHESIS AT PHOTOSYSTEM II\", grouped by HRAC code with an average less than 106?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which caloha_id corresponds to the tissue identified by uberon_id UBERON:0001301 and a tissue_id below 7613641?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "Which tissue identifier and Caloha reference are connected to the ChEMBL identifier CHEMBL3988141?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "What is the smallest tissue identifier for the tissue that is referred to as Small intestine and has the EFO identifier EFO:0000841?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "Which Caloha reference is associated with the tissue that has the identifier 2108 and the EFO identifier EFO:0000841?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "What is the highest tissue_id for the tissue identified by uberon_id UBERON:0001965 and pref_name Substantia nigra pars compacta?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "Which caloha_id and uberon_id are associated with the tissue that has the pref_name Umbilical cord and efo_id EFO:0001415?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "Which pref_name corresponds to the tissue with a tissue_id exceeding 2891583 and chembl_id CHEMBL3988042?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "Which Uberon identifier corresponds to the tissues that have identifiers ranging from 3139015 to 8742578?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "What is the smallest tissue identifier for the tissue that has the BTO identifier BTO:0000408 and the Uberon identifier UBERON:0001301?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "Which alert_id corresponds to cpd_str_alert_id values exceeding 76423480?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which values represent the highest cpd_str_alert_id and lowest molregno for alert_id values above 58?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "What is the smallest molecule identifier for the specific structural alert ID of 76994496 and alert identifier of 1028?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "What is the maximum alert identifier for structural alert IDs that are less than 78522650?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which values indicate the highest alert identifier and the highest structural alert ID for molecule identifiers that are below 3026?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "What is the average unique identifier for research companies associated with Novartis in Switzerland?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "Which values indicate the highest unique identifier for companies and the lowest research identifier for those linked to Sankyo?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "What company has Corgentech as its previous company?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "Which co_stem_ids belong to companies in Switzerland?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "How do the average research identifier and the maximum unique identifier for Anesiva compare regarding their prior connection with Corgentech?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "What is the average unique identifier for GlaxoSmithKline when the research identifier is 667?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "Which values represent the highest black box warning and total topical for OPTIPRANOLOL?",
"table_ids": [
"products_SEP_table_26"
]
},
{
"query": "What is the lowest oral value for injectable products approved on January 1, 1982?",
"table_ids": [
"products_SEP_table_26"
]
},
{
"query": "What descriptions and data validity comments can be found in the table?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What descriptions and data validity comments can be found in the table?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which description corresponds to the data validity comment regarding a potential transcription error?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which synonym type corresponds to the component ID exceeding 1044 and having the synonym FPGS?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "Which synonym type and compsyn_id are associated with the component ID greater than 159 and the synonym Atrial natriuretic peptide clearance receptor?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "Which type of synonym is linked to the component with a unique identifier for synonyms that is greater than 1655870?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "Which identifier for components and their corresponding synonyms are linked to UNIPROT synonyms?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "Which type of synonym is related to the synonym PBP-4 and a component identifier that is less than 149?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "How much is the total of site IDs and what is the average of TIDs for the site called \"Carbepenem-hydrolyzing beta-lactamase KPC, Beta-lactamase2 domain\"?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "Which site name and TID correspond to the site ID of 2357?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What is the highest identifier for the site named \"Mitogen-activated protein kinase 6, Pkinase domain\" that has a site ID less than 27700?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "Which TIDs and site names correspond to site IDs that are below 9634?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What are the assay_param_ids for values exceeding 109.30?",
"table_ids": [
"assay parameters_SEP_table_37"
]
},
{
"query": "What are the assay_param_ids for the type and standard type both being regeneration_stabilization_period?",
"table_ids": [
"assay parameters_SEP_table_37"
]
},
{
"query": "What are the average assay_param_id and total sum of assay_id for the standard_text_value being Oral?",
"table_ids": [
"assay parameters_SEP_table_37"
]
},
{
"query": "How is the average \"activity_id\" calculated for ligands with \"lle\" below 5.89?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What are the maximum \"lle\" and total \"le\" for ligands that have \"sei\" below 35.78 and \"bei\" equal to 17.03?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "Which ligands have \"bei\" and \"sei\" values when \"lle\" falls within the range of 1.84 to 7.20?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "How do the average \"le\" and maximum \"sei\" values compare for ligands with \"bei\" under 22.30 and \"lle\" equal to 6.44?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What are the total \"lle\" and highest \"activity_id\" for ligands with \"le\" below 0.25 and \"bei\" ranging from 26.58 to 45.64?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "Which level 3 description corresponds to Tumor necrosis factor alpha (TNF-alpha) inhibitors?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which level 1 codes and level 4 descriptions relate to antiinfectives for systemic use?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which who name is associated with the level 2 code J01 and level 4 code J01EC?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which descriptions and data validity comments can be found?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which description is linked to the data validity comment about an author-confirmed error?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which are the highest cell source tax ID and cell ID for Homo sapiens?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "Which cell source tax ID and cell source organism are associated with cell IDs exceeding 5699?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "Which cell source tissue and organism are related to the chembl_id CHEMBL3308717 and cell name CAL-51?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "Which is the minimum record ID for the EFO ID EFO:0001421 associated with \"Liver Diseases\"?",
"table_ids": [
"drug indication_SEP_table_66"
]
},
{
"query": "What are the average drugind ID and the minimum molregno for the record ID 1696513 that corresponds to the EFO term \"neoplasm\"?",
"table_ids": [
"drug indication_SEP_table_66"
]
},
{
"query": "What is the highest unique identifier for the primary classification K1 that has the description MICROTUBULE ASSEMBLY INHIBITION?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "What classifications at the second and third levels are linked to the unique identifier O and the description PHENOXY-CARBOXYLIC-ACID?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which reference ID and warning ID are associated with FDA reference types for warn reference IDs below 4988?",
"table_ids": [
"warning refs_SEP_table_71"
]
},
{
"query": "Which warn reference ID and reference ID are associated with warning IDs exceeding 1528?",
"table_ids": [
"warning refs_SEP_table_71"
]
},
{
"query": "Which warning ID and reference type are linked to the reference ID `f2edb3ed-da20-4093-88ea-00fe781e47e0`?",
"table_ids": [
"warning refs_SEP_table_71"
]
},
{
"query": "What definitions and patent use codes can be found?",
"table_ids": [
"patent use codes_SEP_table_2"
]
},
{
"query": "What is the description linked to the patent use code U-797?",
"table_ids": [
"patent use codes_SEP_table_2"
]
},
{
"query": "Which definition corresponds to the patent use code U-2584?",
"table_ids": [
"patent use codes_SEP_table_2"
]
},
{
"query": "Which patent use codes and definitions are available?",
"table_ids": [
"patent use codes_SEP_table_2"
]
},
{
"query": "Which source has the description \"Donated Chemical Probes - SGC Frankfurt\" and what are its short name and ID?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "Which source identifier corresponds to the description \"Millipore Kinase Screening (DEPRECATED - MERGED WITH SRC_ID = 1\" and the abbreviated name \"MILLIPORE\"?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "Which short name corresponds to the description \"Open Source Malaria Screening\"?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "What is the mean source ID for the short name \"DONATED_PROBES\"?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "Which description and ID correspond to the short name \"TP_TRANSPORTER\"?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "Which minimum \"mol_atc_id\" and \"molregno\" correspond to the level5 classification J01CA09?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "Which mol_atc_ids are associated with molregno values that are less than 2332354?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What are the three highest molecule identifiers along with their associated registration numbers?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What is the lowest molregno for the level5 classification J05AD01 within the range of mol_atc_ids from 93659 to 95049?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "Which comments are related to ChEMBL_34 on the date 2024-03-28?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "How much is the sum of \"met_id\" for the PMID reference type?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "What are the highest \"met_id\" and the lowest \"metref_id\" for the PMID reference type with a \"ref_id\" of 22587987?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "What are the \"met_id\" and \"metref_id\" values for the PMID reference type with \"ref_id\" in the range of 2552162338878 to 5726559959864?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "How much is the sum of \"met_id\" for the PMID reference type with \"ref_id\" exceeding 8450352646485?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "What are the \"met_id\" and \"ref_type\" for the \"ref_id\" 0443051488 with \"metref_id\" in the range of 493 to 8911?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which \"ref_id\" is associated with the PMID reference type for the \"ref_url\" http://europepmc.org/abstract/MED/24447964?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "How much is the sum of \"ref_id\" for \"metref_id\" values below 10573?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "What descriptions are associated with their respective data validity comments?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What is the explanation linked to the data validity comment concerning potential missing data?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What is the explanation that relates to the data validity comment about an author confirmed error?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What descriptions are linked to their respective data validity comments?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What are the action types and their corresponding maximum standard values?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which standard units and activity comments are associated with a standard flag less than 0 and QUDT units of micrograms per milliliter?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "What are the average standard flag and the lowest assay ID?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which bao_id corresponds to the label 'result'?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which labels and bao_ids can be found?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which label corresponds to the bao_id 'BAO_0000219'?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "What is the label linked to the identifier 'BAO_0000086'?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which identifier is related to the description 'cell-based format'?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which label is associated with the bao_id 'BAO_0002794'?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which label is associated with the bao_id 'BAO_0000219'?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which tax ID and sequence are available?",
"table_ids": [
"bio component sequences_SEP_table_41",
"component sequences_SEP_table_56",
"variant sequences_SEP_table_16"
]
},
{
"query": "How much is the sum of component IDs for the Protein type?",
"table_ids": [
"component sequences_SEP_table_56",
"bio component sequences_SEP_table_41"
]
},
{
"query": "Which sequence and description are associated with the MD5 sum `5f13f79acb702b2662f2ee03697e2351`?",
"table_ids": [
"bio component sequences_SEP_table_41"
]
},
{
"query": "Which component type and sequence correspond to the MD5 sum `51a54f25396c1163ed26c756f1e77b88`?",
"table_ids": [
"bio component sequences_SEP_table_41"
]
},
{
"query": "What additional information is associated with ChEMBL_34, which was created on 2024-03-28?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "What are the creation date and comments associated with Gene Ontology 2024-02-22?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "What title and additional information are linked to the entry created on 2024-03-28?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "What are the creation date and title associated with the additional information \"BAO version used for assays (http://bioassayontology.org/)\"?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "Which name and comments belong to the entry created on 2024-03-28?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "What creation date corresponds to the entry named RDKit 2022.09.4?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "What is the creation date and additional information related to the entry named Gene Ontology 2024-02-22?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "What title is associated with the additional information \"EFO version used for indication and warning data (https://www.ebi.ac.uk/efo/)\"?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "Which level3 corresponds to the level2 description of PHENYLPYRAZOLE?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which level1 description and hrac_class_id are related to level2 N3?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which hrac_code and level2 are associated with level1 F1 and the description of BLEACHING: INHIBITION OF CAROTENOID BIOSYNTHESIS AT THE PHYTOENE DESATURASE STEP (PDS)?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "What is the lowest hrac_class_id for level1 Z with hrac_code Z?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which bao_id and label correspond to the bioassay ontology?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "What identifiers and their corresponding names are present in the bioassay ontology?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "Which bao_id and label are included in the bioassay ontology?",
"table_ids": [
"bioassay ontology_SEP_table_4"
]
},
{
"query": "What \"standard_value\" and \"value\" correspond to a \"standard_text_value\" of minimal with \"as_id\" under 1821?",
"table_ids": [
"activity supp_SEP_table_40"
]
},
{
"query": "How much is the sum of \"usan_stem_id\" for the -virsen subgroup?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "Which \"usan_stem_id\" corresponds to the annotation of prostaglandins in the GPCR major class?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "Which \"subgroup\" values are associated with \"usan_stem_id\" less than 3689 and a suffix stem class?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "Which entry has the highest \"usan_stem_id\" in the ion channel major class with a suffix stem class?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "Which \"subgroup\" and \"stem\" are associated with the description of antibacterial antibiotics that are analogs of chloramphenicol, specifically for \"usan_stem_id\" values below 3848?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "Which \"major_class\" entries fall within the \"usan_stem_id\" range of 3375 to 3990 with a suffix stem class, showing the top three results?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "Which \"ddd_units\" and \"ddd_id\" correspond to \"ddd_value\" over 181.06 for \"atc_code\" R03AC05?",
"table_ids": [
"defined daily dose_SEP_table_38"
]
},
{
"query": "What are the sum of \"ddd_value\" and the smallest \"ddd_id\"?",
"table_ids": [
"defined daily dose_SEP_table_38"
]
},
{
"query": "Which \"ddd_units\" correspond to \"ddd_id\" 1603 with a \"ddd_value\" under 70.01?",
"table_ids": [
"defined daily dose_SEP_table_38"
]
},
{
"query": "How much is the sum of \"ddd_id\" for \"ddd_admr\" R with \"ddd_value\" exceeding 19.93?",
"table_ids": [
"defined daily dose_SEP_table_38"
]
},
{
"query": "Which units and result flags correspond to activities with standard units of hours and application IDs ranging from 2990 to 9342?",
"table_ids": [
"activity properties_SEP_table_13"
]
},
{
"query": "What relations are found for activities whose IDs exceed 17126398?",
"table_ids": [
"activity properties_SEP_table_13",
"activities_SEP_table_52"
]
},
{
"query": "What is the total of application IDs and the average of result flags?",
"table_ids": [
"activity properties_SEP_table_13"
]
},
{
"query": "Which activity IDs and result flags correspond to activities with standard units of hours?",
"table_ids": [
"activity properties_SEP_table_13"
]
},
{
"query": "What are the support mechanism identifiers for activity identifiers in the range of 17127769 to 17127837 with activity-support mapping IDs below 2071?",
"table_ids": [
"activity supp map_SEP_table_58"
]
},
{
"query": "What are the average actsm_id and the minimum smid for activity_ids above 17128721?",
"table_ids": [
"activity supp map_SEP_table_58"
]
},
{
"query": "What is the highest activity identifier for activity-support mapping IDs greater than 9872 with a support mechanism identifier of 2906?",
"table_ids": [
"activity supp map_SEP_table_58"
]
},
{
"query": "What are the support mechanism identifiers for the mapping ID equal to 8262 with activity identifiers ranging from 17127111 to 17127946?",
"table_ids": [
"activity supp map_SEP_table_58"
]
},
{
"query": "How does the average \"hba\" value compare for compounds with \"cx_most_bpka\" under 8.62 and \"mw_freebase\" ranging from 207.77 to 416.51?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "Which \"num_lipinski_ro5_violations\" and \"molecular_species\" correspond to the compound with \"molregno\" 9334 and 32.0 heavy atoms?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "What is the average \"mw_freebase\" and the lowest \"num_ro5_violations\" found in the dataset?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "Which EFO ID corresponds to the IST-MEL1 cell description?",
"table_ids": [
"cell dictionary_SEP_table_28"
]
},
{
"query": "Which mol_atc_id corresponds to the classification D07AC05 with a molregno exceeding 2531514?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "Which registration number is linked to the classification V08AD04 with a molecule ATC identifier below 94887?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What is the smallest registration number for the classification C08CA17 with a molecule ATC identifier less than 93493?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What is the total of the molecule ATC identifiers, and what is the highest registration number for the classification A11CC05?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "Which \"site_id\" corresponds to the site \"Vasopressin V1a receptor, 7tm_1 domain\"?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What is the highest \"tid\" and the lowest \"site_id\" for the site \"Apelin receptor, 7tm_1 domain\"?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "Which \"tid\" is associated with the site \"Protein Gpr39, 7tm_1 domain\"?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "Which \"site_name\" and \"site_id\" correspond to entries where \"tid\" is greater than 9524?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "Which \"site_name\" is associated with \"site_id\" values between 24520 and 37854 and a \"tid\" exceeding 103241?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What is the lowest \"tid\" and the average \"site_id\" for the site \"Neuromedin B receptor, 7tm_1 domain\"?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What is the lowest \"site_id\" and the total of \"tid\" for the site \"Nicotinic acetylcholine receptor alpha-4/beta-2, Neur_chan_LBD domain\"?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "How much is the sum of source IDs for 'ATLAS'?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "Which source ID corresponds to the description 'GSK Published Kinase Inhibitor Set' and the source short name 'GSK_PKIS'?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "How much is the sum of source IDs for 'METABOLISM' with the description 'Curated Drug Metabolism Pathways'?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "Which source description is associated with 'EUBOPEN_CGL' and has a source ID under 20?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "Which source IDs and short names correspond to the description 'Gene Expression Atlas Compounds'?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "Which protein class synonyms and their protclasssyn_ids exist for protein_class_id exceeding 1495?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "What are the average protclasssyn_id and the highest protein_class_id for 'AMP-Activated Protein Kinases' under the syn_type 'CONCEPT_WIKI'?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "Which protein class synonyms are linked to the source type 'UMLS'?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "What is the average protclasssyn_id for 'ConceptWiki:99b6483c-9835-4fb1-8175-e439416a5c81' with protein_class_id below 866?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "What is the highest level of importance for the alert set 'MLSMR' with an alert set ID between 1 and 3?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "What priority does the alert set 'Glaxo' have?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "What is the set name and level of importance associated with the alert set ID of 3?",
"table_ids": [
"structural alert sets_SEP_table_18"
]
},
{
"query": "How can we determine the average ID for USAN stems in the '-dutide' category that have a suffix stem class?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "What method can we use to find the average ID for USAN stems in the '-glustat' category that possess a suffix stem class?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "Which major class corresponds to the stems annotated as 'nociceptin opion receptor (NOP) agonists' with a suffix stem class?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "How can we compute the total sum of IDs for USAN stems in the '-glustat' category that are classified as enzyme inhibitors of glucosyltransferase?",
"table_ids": [
"usan stems_SEP_table_43"
]
},
{
"query": "What type of reference is associated with the reference ID NCT01027910 within the range of unique reference identifiers from 595867 to 596461?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "What type of reference is related to drug indication identifiers greater than 32751 and the reference URL https://clinicaltrials.gov/search?term=NCT01027910?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "What is the lowest value for indref_id and drugind_id in the dataset?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which reference IDs and drug indication IDs are associated with the ClinicalTrials reference type?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which average component ID corresponds to compsyn IDs below 1729071 and the synonym 2.4.1.80?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "How much is the sum of compsyn IDs for the component that has an ID of 516?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "Which average values of component ID and compsyn ID are associated with the synonym \"Cytochrome P450 7A1\"?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "What is the highest component ID linked to the synonym \"MAPK 10\"?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "Which component synonym and average compsyn ID are found for the component ID 280, with an average compsyn ID exceeding 1390914?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "Which compsyn ID corresponds to the synonym \"Synonyms=FUR\" and component ID 946?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "What are the highest compsyn ID and lowest component ID associated with the synonym \"2.4.1.80\" and synonym type \"EC_NUMBER\"?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "Which synonym type is found for compsyn IDs below 1690556 and component IDs ranging from 156 to 1298?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "Which component ID falls within the range of compsyn IDs from 918260 to 1342993?",
"table_ids": [
"component synonyms_SEP_table_60"
]
},
{
"query": "Which classifications at the fifth level and corresponding molecule ATC identifiers are linked to substances with registration numbers ranging from 1876092 to 2344175?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What is the highest registration number for the level5 classification S01GA02?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What is the total of the registration numbers for the molecule identifier 95284 and the fifth-level classification D07XC05?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "Which level5 classification is associated with the molecule that has a registration number of 675343 and a mol_atc_id in the range of 92918 to 94363?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "Which \"irac_class_id\" and \"molregno\" correspond to molecules with \"mol_irac_id\" below 176?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "Which \"mol_irac_id\" and \"irac_class_id\" correspond to molecules that have a \"molregno\" exceeding 1466715?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "Which \"mol_irac_id\" and \"irac_class_id\" are linked to molecules that have a \"molregno\" greater than 1478391?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "Which \"molregno\" values correspond to molecules that have a \"mol_irac_id\" above 33?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "What is the total of \"irac_class_id\" and the highest \"molregno\" for molecules that have a \"mol_irac_id\" in the range of 182 to 182?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "What is the lowest \"irac_class_id\" and the total of \"mol_irac_id\" for molecules that have a \"molregno\" below 138650?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "What are the InChI and SMILES representations associated with the unique identifier CJQKTFJEKWXTLH-UHFFFAOYSA-N?",
"table_ids": [
"compound structures_SEP_table_74"
]
},
{
"query": "What unique identifier corresponds to the numerical values of compounds ranging from 3856 to 9943, given the full InChI representation InChI=1S/C21H26ClN3O3/c1-3-25(4-2)14-13-23-21(27)16-5-9-18(10-6-16)24-20(26)15-28-19-11-7-17(22)8-12-19/h5-12H,3-4,13-15H2,1-2H3,(H,23,27)(H,24,26)?",
"table_ids": [
"compound structures_SEP_table_74"
]
},
{
"query": "What is the full InChI representation for the compound identified by the number 5051?",
"table_ids": [
"compound structures_SEP_table_74"
]
},
{
"query": "Which standard_inchi values are found for molregno between 2183 and 5910, associated with the standard_inchi_key `QREITGQFANCVJU-UHFFFAOYSA-N`, sorted by molregno in descending order, with a limit of 5?",
"table_ids": [
"compound structures_SEP_table_74"
]
},
{
"query": "What value indicates the average numerical identifier for the chemical structure represented by the SMILES string CCN(CC)CCNC(=O)c1ccc(NC(=O)COc2ccc(Cl)cc2)cc1?",
"table_ids": [
"compound structures_SEP_table_74"
]
},
{
"query": "Which descriptions correspond to the target mapping 'Protein complex' and have a confidence score in the range of 5 to 8?",
"table_ids": [
"confidence score lookup_SEP_table_5"
]
},
{
"query": "What descriptions and confidence scores are linked to the target mapping 'Protein'?",
"table_ids": [
"confidence score lookup_SEP_table_5"
]
},
{
"query": "Which descriptions correspond to confidence scores that are below 7?",
"table_ids": [
"confidence score lookup_SEP_table_5",
"assays_SEP_table_65"
]
},
{
"query": "Which descriptions are linked to the target mapping 'Homologous protein complex' that have a confidence score between 1 and 7?",
"table_ids": [
"confidence score lookup_SEP_table_5"
]
},
{
"query": "What are the comments linked to the creation date of \"2024-03-28\"?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "When was the version \"Gene Ontology 2024-02-22\" created?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "Which protein has the preferred name associated with the short name 'M2'?",
"table_ids": [
"protein classification_SEP_table_22"
]
},
{
"query": "Which preferred name and protein class description are associated with the protein ID '809' and short name 'CPA2'?",
"table_ids": [
"protein classification_SEP_table_22"
]
},
{
"query": "What are the minimum class level and total sum of parent IDs for the protein identified by the short name 'M17'?",
"table_ids": [
"protein classification_SEP_table_22"
]
},
{
"query": "What is the total sum of parent IDs for proteins classified at class level '3'?",
"table_ids": [
"protein classification_SEP_table_22"
]
},
{
"query": "Which unique identifier corresponds to the alert named 'thio_dibenzo(23)' with the provided smarts?",
"table_ids": [
"structural alerts_SEP_table_76"
]
},
{
"query": "Which alert_set_id and smarts are linked to the alert with alert_id 496?",
"table_ids": [
"structural alerts_SEP_table_76"
]
},
{
"query": "What is the highest alert_set_id for the alert named 'anil_NH_alk_A(5)' that has alert_id 481?",
"table_ids": [
"structural alerts_SEP_table_76"
]
},
{
"query": "What is the smallest group identifier and the largest individual identifier for the alert named 'tertiary_halide_sulfate' with the provided smarts?",
"table_ids": [
"structural alerts_SEP_table_76"
]
},
{
"query": "Which names and structural representations are linked to alerts that have an individual identifier below 726?",
"table_ids": [
"structural alerts_SEP_table_76"
]
},
{
"query": "Which alert_set_id corresponds to the alert named 'N3 Saponin derivatives'?",
"table_ids": [
"structural alerts_SEP_table_76"
]
},
{
"query": "Which alert_name and smarts are linked to alerts that have an alert_set_id ranging from 2 to 3 and an alert_id from 174 to 672?",
"table_ids": [
"structural alerts_SEP_table_76"
]
},
{
"query": "Which polymer flags and oral statuses do the molecules have?",
"table_ids": [
"molecule dictionary_SEP_table_54"
]
},
{
"query": "What is the handedness of the compound identified by CHEMBL10673 that has a skin application value less than 0?",
"table_ids": [
"molecule dictionary_SEP_table_54"
]
},
{
"query": "What are the average unique identifier for the binding site and the minimum target identifier for \"Gonadotropin-releasing hormone receptor, 7tm_1 domain\"?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "Which site_id corresponds to \"Steroid 5-alpha-reductase 2, Steroid_dh domain\" where tid equals 11594?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What target identifier and unique binding site identifier correspond to \"Matrix metalloproteinase-2, Peptidase_M10 domain\"?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "How much is the total of tid for \"Dual specificity mitogen-activated protein kinase kinase 1, Pkinase domain\"?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "How much is the average tid for \"Matrix metalloproteinase-2, Peptidase_M10 domain\" where site_id exceeds 1499?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "Which descriptions and short names are associated with source IDs that are below 17?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "How much is the sum of source IDs for the description 'External Project Compounds'?",
"table_ids": [
"source_SEP_table_55"
]
},
{
"query": "Which site_id and prediction_method correspond to activity_id 1701853 and predbind_id in the range of 7706415 to 7707887?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which unique identifiers for predicted binding domains are linked to activity values below 2251490?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What is the highest activity value for the method of prediction classified as 'Single domain'?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which predbind_id values are linked to activity_id below 805812 with a confidence level of 'high'?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What is the smallest binding site identifier for activities that are within the range of 1313670 to 2319409?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What is the average value of unique identifiers for predicted binding domains for entries that have a certainty level of 'high'?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What is the average activity value and the minimum binding site identifier for the prediction method 'Single domain' where the unique identifiers for predicted binding domains fall between 7705171 and 7707257?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which metref_id corresponds to the ref_url `http://europepmc.org/abstract/MED/22859782`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "How can you determine the average reference identifier for reference entries associated with identifiers greater than 10852 that correspond to a metabolite identifier of 1075?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "What are the values that indicate the highest reference identifier and the lowest reference entry identifier for a metabolite identifier of 1815 with a reference type of PMID?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "What are the minimum met_id and the total sum of ref_id for the ref_url `http://europepmc.org/abstract/MED/22859782`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "How is the average ref_id determined for metref_id values below 8302?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "What web addresses are available for reference entries with identifiers between 6208 and 8641 that have a reference identifier lower than `6915786856036`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "How do the average target identifier and average binding site identifier compare for the Receptor-type tyrosine-protein phosphatase S, Y_phosphatase domain?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What is the target identifier that corresponds to the unique identifier 2832 and the binding site named Receptor-type tyrosine-protein phosphatase S, Y_phosphatase domain?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "Which unique identifier is linked to the Gamma-aminobutyric acid receptor subunit alpha-1/beta-2/beta-3/gamma-2, Neur_chan_LBD domain and has a target identifier less than 71095?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What target identifier and binding site identifier are associated with the Heparanase, Glyco_hydro_79n domain?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What are the minimum site_id and total tid for the Dual specificity protein kinase CLK3, Pkinase domain?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What is the target identifier linked to the unique identifier 2450 and the binding site named Neuronal acetylcholine receptor; alpha3/beta4, Neur_chan_LBD domain?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What is the lowest tid and the total of site_id for the Heparanase, Glyco_hydro_79n domain?",
"table_ids": [
"binding sites_SEP_table_8"
]
},
{
"query": "What synonym type and protein class identifier are linked to records with a protclasssyn identifier exceeding 39639 and an alternative name of NK-3 Receptor?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "What is the highest protclasssyn_id and the average protein_class_id for entries that have a protein_class_synonym of 17,20-Desmolase and a syn_type of UMLS?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "What is the highest protclasssyn_id and the average protein_class_id for all entries?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "How do the average protclasssyn identifier and total protein class identifier compare for records with a synonym type of UMLS and an alternative name of Receptor, Ca-Sensing?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "What is the average protein_class_id for entries that have a protclasssyn_id below 40519 and a protein_class_synonym of Receptor, Ca-Sensing?",
"table_ids": [
"protein class synonyms_SEP_table_31"
]
},
{
"query": "Which domain_id corresponds to the domain called 'Reprolysin_2' in the 'Pfam-A' category?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which source_domain_id and domain_type are associated with domain_ids that are below 12027?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which domain_name and domain_description are linked to domain_ids that exceed 6077?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "How much is the average of domain_ids for the source_domain_id 'PF00334' in the 'Pfam-A' category?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which domain_description and average of domain_ids correspond to the source_domain_id 'PF17689' in the 'Pfam-A' category, with the average being greater than 8103?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "What is the lowest value of domain_id?",
"table_ids": [
"domains_SEP_table_64",
"site components_SEP_table_44"
]
},
{
"query": "Which pathway ID and enzyme name correspond to a tax ID below 9499.43 and a metabolite record ID of 2472340?",
"table_ids": [
"metabolism_SEP_table_11"
]
},
{
"query": "What prediction techniques and levels of certainty are associated with predicted binding domains that have a unique identifier below 7706165 and a location identifier of 380?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What average activity_id do predicted binding domains have when the site_id is below 1296 and the prediction method is Multi domain?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What prediction techniques and their average activity measures are present for predicted binding domains with a unique identifier between 7703633 and 7704903 and a location identifier ranging from 1218 to 2758?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What is the smallest unique identifier for predicted binding domains that have a biological activity level greater than 1313671 and a high level of certainty?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which prediction methods and confidence levels are found in predicted binding domains with a predbind_id below 7707694?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What are the average unique identifier and the maximum location identifier for predicted binding domains that utilize a Single domain prediction method and exhibit a high level of certainty?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which tissue identifier is linked to the Caloha reference TS-0942?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "Which Caloha reference is connected to the ChEMBL identifier CHEMBL3987629 and the Uberon identifier UBERON:0009758?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "What is the highest tissue identifier for the preferred name \"Abdominal ganglion\" and the ChEMBL identifier CHEMBL3987629?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "How much is the total of tissue_ids for the preferred name Small intestine?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "Which uberon_id corresponds to the preferred name Caudal fin?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "What is the average value of the tissue identifier for the BTO identifier BTO:0000227?",
"table_ids": [
"tissue dictionary_SEP_table_68"
]
},
{
"query": "Which values represent the highest irac_class_id and the lowest molregno?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "How much is the total of mol_irac_id and what is the average of molregno for irac_class_id values ranging from 3 to 132?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "Which mol_irac_id and irac_class_id correspond to molregno values that fall between 1282720 and 1319744?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "What is the maximum registration number for molecule identifiers that fall between 56 and 143 and have a classification category below 159?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "What is the sum of registration numbers, and what is the average of molecule identifiers for classification categories that range from 100 to 125?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "Which molecule identifier is associated with a registration number of 328162 and a classification category that is less than 52?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "What is the highest classification category for a registration number of 264584 and a molecule identifier of 18?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "Which relationship type corresponds to the description \"Molecular target other than protein assigned\"?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which relationship type is associated with the description \"Default value - Target has yet to be curated\"?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which description corresponds to the relationship type \"H\"?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which relationship types and descriptions are available?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which description is linked to the relationship type \"N\"?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which relationship types and descriptions can be found?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "Which relationship types and descriptions exist?",
"table_ids": [
"relationship type_SEP_table_53"
]
},
{
"query": "How much is the total of \"molregno\" and the lowest \"cpd_str_alert_id\" for alerts with an \"alert_id\" below 1057?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "How much is the total of \"cpd_str_alert_id\" for alerts with an \"alert_id\" below 294 and \"molregno\" equal to 4011?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which \"molregno\" and \"cpd_str_alert_id\" correspond to alerts with an \"alert_id\" above 291?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which \"cpd_str_alert_id\" corresponds to records with \"molregno\" ranging from 117 to 4400 and \"alert_id\" equal to 1026?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which \"molregno\" and \"alert_id\" correspond to records with a \"cpd_str_alert_id\" exceeding 75030208?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which comments are linked to the version \"ChEMBL_34\"?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "What details can be found regarding the creation date and comments for the version \"MeSH 2024\"?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "Which version name corresponds to the creation date \"2024-03-28\"?",
"table_ids": [
"version_SEP_table_35"
]
},
{
"query": "What are the sequence MD5 sum and organism for PROTEIN components?",
"table_ids": [
"bio component sequences_SEP_table_41",
"component sequences_SEP_table_56"
]
},
{
"query": "What is the mean component ID for Homo sapiens?",
"table_ids": [
"bio component sequences_SEP_table_41",
"component sequences_SEP_table_56"
]
},
{
"query": "Which component type corresponds to component IDs above `11726`?",
"table_ids": [
"component sequences_SEP_table_56",
"bio component sequences_SEP_table_41"
]
},
{
"query": "Which record ID and molregno correspond to the strength of 5GM/100ML?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "Which three components are linked to the product identifier PRODUCT_017844_001 when sorted by formulation identifier?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "Which formulation identifiers are included within the entry number range of 1564613 to 2266927 and the chemical registration number range of 615543 to 1998956?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "Which level 2 classification and level 1 description are associated with the level 5 code A07EC01?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which level 1 classification and level 1 description correspond to the D08A level 3 classification and D08AC level 4 classification?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which level1 classifications and active ingredients correspond to level3 C1111 with an hrac_class_id below 54?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "What is the lowest identifier associated with the active ingredient FLUAZOLATE?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which level2 classifications and level1 descriptions are associated with hrac_code N?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which active ingredients and hrac_codes are linked to level3 F341 and level2 description DIPHENYLETHER?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "What classification code and primary description are linked to the active ingredient DIMETHACHLOR?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which is the lowest drug indication ID for entries with an indication reference ID exceeding 598968 and a reference ID of NCT00206310?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "What is the highest indication reference ID for drug indication IDs that fall within the range of 55133 to 138657?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which reference types and reference IDs are associated with drug indication IDs that exceed 42819?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "What is the average indication reference ID and the lowest drug indication ID?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which reference IDs and reference types are found for indication reference IDs ranging from 594908 to 597795 with a reference URL of https://clinicaltrials.gov/search?term=NCT00424060?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which \"relation\" and \"rgid\" values are present in the records?",
"table_ids": [
"activity supp_SEP_table_40"
]
},
{
"query": "How much is the total of \"tid\" for \"related_tid\" values below 8809?",
"table_ids": [
"target relations_SEP_table_19"
]
},
{
"query": "How much is the total of \"related_tid\" for \"tid\" values exceeding 62314?",
"table_ids": [
"target relations_SEP_table_19"
]
},
{
"query": "What is the highest \"related_tid\" for \"tid\" equal to 104840?",
"table_ids": [
"target relations_SEP_table_19"
]
},
{
"query": "What is the maximum \"tid\" and the average of \"targrel_id\" for the association labeled \"OVERLAPS WITH\"?",
"table_ids": [
"target relations_SEP_table_19"
]
},
{
"query": "What is the smallest \"targrel_id\" and the average of \"related_tid\" for \"tid\" values ranging from 28146 to 48752?",
"table_ids": [
"target relations_SEP_table_19"
]
},
{
"query": "What is the highest \"tid\" and the highest \"related_tid\" for \"targrel_id\" values ranging from 490512 to 496632 with the association labeled \"OVERLAPS WITH\"?",
"table_ids": [
"target relations_SEP_table_19"
]
},
{
"query": "How much is the average of \"related_tid\" for the relationship \"OVERLAPS WITH\" when \"tid\" exceeds 93786?",
"table_ids": [
"target relations_SEP_table_19"
]
},
{
"query": "Which three \"targrel_id\" and \"related_tid\" values are listed in ascending order of \"related_tid\"?",
"table_ids": [
"target relations_SEP_table_19"
]
},
{
"query": "Which values represent the total of \"ref_id\" and the highest \"met_id\" for the URL `http://www.isbnsearch.org/isbn/9780071624428`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which \"ref_type\" and \"met_id\" correspond to \"ref_id\" values in the range of `423231047204` to `9107538639400` with \"metref_id\" being less than `11732`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which \"ref_id\" corresponds to the \"ref_type\" `PMID` with \"met_id\" exceeding `337`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "What average value of \"met_id\" is found for \"metref_id\" below `1780` with \"ref_type\" being `ISBN`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which \"metref_id\" is linked to the \"ref_type\" `ISBN` with \"met_id\" equal to `1366`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which values represent the total of \"met_id\" and the lowest \"metref_id\" for the URL `http://europepmc.org/abstract/MED/22942317` with \"ref_id\" exceeding `7777188818809`?",
"table_ids": [
"metabolism refs_SEP_table_23"
]
},
{
"query": "Which values correspond to \"res_stem_id\" and \"research_stem\"?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "Which values are associated with \"res_stem_id\" and \"research_stem\"?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "How much is the average \"res_stem_id\" for the research stem \"TG\"?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "Which values are linked to \"res_stem_id\" and \"research_stem\"?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "Which values are associated with \"research_stem\" and \"res_stem_id\"?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "How high is the maximum \"res_stem_id\" for the research stem \"AXP\"?",
"table_ids": [
"research stem_SEP_table_20"
]
},
{
"query": "Which drug corresponds to level 3 `N07X` and level 1 `N`?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "What are the level 4 description and level 5 classification for drugs in level 4 `R01AD`?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which drug is classified under level 4 `A03BB` and level 2 `A03`?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which level 1 and level 3 classifications correspond to the drug `antiinfectives, combinations` that is classified as antiinfectives?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which drug name and level 2 classification correspond to level 3 `C07B` and level 1 `C`?",
"table_ids": [
"atc classification_SEP_table_3"
]
},
{
"query": "Which irac_class_id corresponds to mol_irac_id 79?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "What is the sum of the registration numbers and the lowest unique identifier for the classification category 27?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "Which unique identifiers for molecules are associated with registration numbers that are greater than 1157655?",
"table_ids": [
"molecule irac classification_SEP_table_70"
]
},
{
"query": "How much is the average of activity ID and the total of SEI for entries with LE in the range of 0.12 to 0.48?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What are the values of the last metric and activity ID for the entries where the second metric is less than 42.22 and the first metric equals 20.06?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What values of the last metric can be found in entries where the third measurement is below 0.54?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What is the minimum value of the last metric for entries where the first measurement is less than 51.87?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "Which values of SEI and LLE correspond to entries with LE below 0.32 and BEI under 8.10?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "What is the total of activity IDs and the lowest SEI for entries with BEI over 40.02 and LE above 0.46?",
"table_ids": [
"ligand eff_SEP_table_32"
]
},
{
"query": "Which is the lowest \"molregno\" for biocomp_id exceeding 2328?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which \"molregno\" corresponds to a component_id below 22332 and a biocomp_id of 3280?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which \"component_id\" is associated with a molregno of 1380620 and a biocomp_id under 2949?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which \"component_id\" is associated with a biocomp_id less than 1337 and a molecular registration number that falls between 230426 and 2547370?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "What is the maximum \"component_id\" and the sum of \"molregno\" values for biocomp_id values that are below 1549?",
"table_ids": [
"biotherapeutic components_SEP_table_10"
]
},
{
"query": "Which predicted binding IDs and site IDs correspond to single domain predictions that have high confidence?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which predicted binding IDs and prediction methods are associated with high confidence predictions?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What are the average activity ID and average predicted binding ID for sites with a high level of certainty that have IDs lower than 14886?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which site IDs are associated with predictions that use the single domain method?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What average activity ID corresponds to high confidence predictions at site ID 163?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "What are the maximum activity ID and total of predicted binding IDs for high confidence predictions?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which prediction methods are linked to medium confidence predictions with activity IDs exceeding 876223?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "How much is the sum of hrac_class_id where level1 is B?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "What is the smallest hrac_class_id for level1 Z and level2 Z4?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "What is the average numerical identifier for the primary classification Z?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which level3 and level2_description correspond to hrac_code B and level2 B1?",
"table_ids": [
"hrac classification_SEP_table_62"
]
},
{
"query": "Which record ID corresponds to the ingredient HYDROCORTISONE ACETATE and molregno 150313?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "What are the highest record identifier and the lowest formulation identifier for the compound hydrocortisone at a concentration of 0.5%?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "What is the maximum formulation ID and average record ID for FAMOTIDINE with a strength of 10MG/ML?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "What is the concentration associated with the product identifier PRODUCT_021172_004?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "What is the record identifier that is linked to the compound lidocaine hydrochloride and the product identifier PRODUCT_083627_002?",
"table_ids": [
"formulations_SEP_table_61"
]
},
{
"query": "Which compounds have \"cx_logp\" values given that they have less than 2.42 aromatic rings and more than 9.81 hba_lipinski?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "Which values of \"heavy_atoms\" and \"cx_most_bpka\" correspond to compounds that have a psa of 105.4 and a cx_logp of 5.89?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "What is the mean value of \"mw_monoisotopic\" for compounds with \"full_mwt\" ranging from 212.66 to 685.92?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "How much is the total of \"cx_logp\" for compounds that have \"ro3_pass\" equal to N?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "Which values of \"cx_logd\" and \"hbd_lipinski\" correspond to compounds with \"rtb\" values ranging from 0.24 to 2.95?",
"table_ids": [
"compound properties_SEP_table_7"
]
},
{
"query": "What is the smallest target identifier for Escherichia coli K-12?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "Which species and chemical identifier correspond to the taxonomy ID 42434.0?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "What are the lowest target identifier and highest species group flag for the protein known as Vascular endothelial growth factor receptor 2 with a taxonomy ID below 88703.99?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "Which target_type and tax_id are associated with Homo sapiens?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "Which species is associated with the taxonomy identifier 9606.0?",
"table_ids": [
"variant sequences_SEP_table_16",
"metabolism_SEP_table_11",
"bio component sequences_SEP_table_41",
"target dictionary_SEP_table_78"
]
},
{
"query": "Which pref_name and organism are associated with a species_group_flag greater than 0 and tid equal to 106594?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "Which taxonomy identifier and preferred name are associated with the target classification SINGLE PROTEIN?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "What are the minimum tax_id and minimum tid for a species_group_flag of 0 and target_type SINGLE PROTEIN?",
"table_ids": [
"target dictionary_SEP_table_78"
]
},
{
"query": "What are the identifiers for the compound and alert that correspond to a structural alert ID greater than 78052651?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "What are the maximum compound structural alert ID and the average alert ID for molregnos ranging from 4211 to 4679?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which compound structural alert ID corresponds to an alert ID less than 801 and a molregno of 1484?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "What are the structural alert ID and alert ID linked to the compound identifier 4966?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which compound structural alert IDs are associated with molregnos below 740?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which alert ID is linked to the compound identifier 1267?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which descriptions and data validity comments can be found?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which descriptions and data validity comments can be found?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which data validity comments and descriptions exist?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What is the minimum measurement and the lowest assay parameter ID for assay IDs that are less than 884882 and have a standard text description of Biacore T200?",
"table_ids": [
"assay parameters_SEP_table_37"
]
},
{
"query": "What are the assay parameter IDs that are classified as standard type DOSE?",
"table_ids": [
"assay parameters_SEP_table_37"
]
},
{
"query": "Which warning ID corresponds to the term 'hepatotoxicity'?",
"table_ids": [
"drug warning_SEP_table_47"
]
},
{
"query": "What is the lowest record ID associated with the warning 'Not safe for use in asthma'?",
"table_ids": [
"drug warning_SEP_table_47"
]
},
{
"query": "Which EFO ID for warning class and what is the corresponding warning class for 'EFO:0011052'?",
"table_ids": [
"drug warning_SEP_table_47"
]
},
{
"query": "What are the target description and parent type for a metal?",
"table_ids": [
"target type_SEP_table_75"
]
},
{
"query": "What description is given to a chimeric protein that has a parent type of protein?",
"table_ids": [
"target type_SEP_table_75"
]
},
{
"query": "What are the target description and parent type for a protein-protein interaction?",
"table_ids": [
"target type_SEP_table_75"
]
},
{
"query": "What description is provided for a metal target?",
"table_ids": [
"target type_SEP_table_75"
]
},
{
"query": "Which upper values and potential duplicates are available?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which data validity comments and their corresponding sums of assay_ids exceed 219734?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "How much is the average standard value for records with a record_id of 73513 and a standard type of Reduction?",
"table_ids": [
"activities_SEP_table_52"
]
},
{
"query": "Which compound structural alert ID and molecule registration number are linked to alerts with an alert identifier less than 426?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which alert identifier and compound structural alert ID are associated with molecule registration numbers that are greater than 4784?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which molregno is associated with cpd_str_alert_id values that are higher than 78016309?",
"table_ids": [
"compound structural alerts_SEP_table_72"
]
},
{
"query": "Which \"ref_id\" is associated with the URL https://clinicaltrials.gov/search?term=NCT03575793%20NCT05745350?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which \"ref_type\" corresponds to \"drugind_id\" values that are below 44736?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "How do you find the average \"indref_id\" for the URL https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid=f6b6bf90-bd82-45d6-9150-65b370458bbe?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which \"drugind_id\" and \"indref_id\" are linked to the URL https://clinicaltrials.gov/search?term=NCT00004036 and \"ref_type\" ClinicalTrials?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "Which \"ref_id\" corresponds to the \"ref_type\" DailyMed with \"indref_id\" 601678?",
"table_ids": [
"indication refs_SEP_table_17"
]
},
{
"query": "How much is the sum of record_ids for doc_ids that exceed 7903?",
"table_ids": [
"compound records_SEP_table_6",
"activities_SEP_table_52"
]
},
{
"query": "What are the highest compound_key and the total sum of src_ids for cidx as CLD0 and molregno above 147592?",
"table_ids": [
"compound records_SEP_table_6"
]
},
{
"query": "What is the smallest value of the document identifier?",
"table_ids": [
"compound records_SEP_table_6",
"assays_SEP_table_65",
"docs_SEP_table_15",
"activities_SEP_table_52"
]
},
{
"query": "Which maximum \"co_stem_id\" and \"res_stem_id\" correspond to the previous company \"Chugai\"?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "Which \"res_stem_id\" and \"co_stem_id\" are associated with the previous company \"Sanofi Research\"?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "Which \"country\" and \"res_stem_id\" are linked to the previous company \"Sanofi Research\"?",
"table_ids": [
"research companies_SEP_table_14"
]
},
{
"query": "Which short name and protein class ID correspond to the preferred name \"Tyrosine protein kinase Fak family\" with a class level exceeding 3?",
"table_ids": [
"protein classification_SEP_table_22"
]
},
{
"query": "How much is the average tid for assays involving Glycine max and the chembl_id CHEMBL615387?",
"table_ids": [
"assays_SEP_table_65"
]
},
{
"query": "Which relationship types are associated with assays that use CHO cell types?",
"table_ids": [
"assays_SEP_table_65"
]
},
{
"query": "Which source assay identifier and type of test are associated with assays that have a source ID less than '1'?",
"table_ids": [
"assays_SEP_table_65"
]
},
{
"query": "What are the average values of the synonym identifier and the registration number for the synonym HU-308 categorized as RESEARCH_CODE?",
"table_ids": [
"molecule synonyms_SEP_table_51"
]
},
{
"query": "What is the lowest res_stem_id associated with the synonym HU-308 classified as RESEARCH_CODE?",
"table_ids": [
"molecule synonyms_SEP_table_51"
]
},
{
"query": "What is the average of the synonym identifiers and the maximum of the registration numbers for the RESEARCH_CODE category?",
"table_ids": [
"molecule synonyms_SEP_table_51"
]
},
{
"query": "Which synonyms and their corresponding molregno are there for the RESEARCH_CODE type, sorted by res_stem_id from highest to lowest, with a limit of 5?",
"table_ids": [
"molecule synonyms_SEP_table_51"
]
},
{
"query": "What is the lowest registration number associated with the synonym WIN-63480 categorized as RESEARCH_CODE?",
"table_ids": [
"molecule synonyms_SEP_table_51"
]
},
{
"query": "What are the component IDs for protein class IDs in the range of 1080 to 1115?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "How much is the total of protein class IDs and what is the smallest component ID for component class IDs exceeding 1696?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "What component IDs correspond to protein class IDs that are below 287 and have a component class ID of 8449?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "What are the protein class IDs for component IDs in the range of 701 to 18461 with component class IDs exceeding 5201?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "How do the average component ID and the smallest protein class ID compare for component class IDs below 11986?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "What are the component IDs and their corresponding component class IDs for protein class IDs under 1410?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "How do the minimum component ID and the average protein class ID relate for component class IDs in the range of 4959 to 6599?",
"table_ids": [
"component class_SEP_table_73"
]
},
{
"query": "What does \"l2\" represent for the assay class ID 326 and \"Novelty Induced Hypophagia Test\"?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "What is the highest assay class ID associated with \"Novelty Induced Hypophagia Test\"?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "Which \"l2\" and \"l3\" values are found in the assays from Vogel_2008?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "Which assay class IDs and \"l2\" values are associated with Hock_2016 and the class type \"In vivo efficacy\"?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "What is the cumulative sum of assay class IDs for \"Electroshock in Mice\"?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "What is the total sum of assay class IDs for \"General Hyperlipidemia Models\" that come from the phenotype source?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "Which \"go_id\" and \"comp_go_id\" correspond to \"component_id\" values exceeding 122?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "What is the average value of \"component_id\" for \"go_id\" GO:0005575 when \"comp_go_id\" is 2549984?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "Which \"comp_go_id\" and \"go_id\" correspond to \"component_id\" values that are below 438?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "Which \"go_id\" and \"comp_go_id\" are associated with \"component_id\" 181?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "What is the lowest \"component_id\" associated with \"go_id\" GO:0043167?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "What is the average value of \"comp_go_id\" for \"go_id\" GO:0005737?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "What is the highest \"component_id\" for \"go_id\" GO:0043167 when \"comp_go_id\" is between 2556649 and 2557196?",
"table_ids": [
"component go_SEP_table_69"
]
},
{
"query": "Which action types and descriptions are associated with the parent type of positive modulators?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "What description is associated with the negative modulator parent type?",
"table_ids": [
"action type_SEP_table_21"
]
},
{
"query": "Which oc_id and l1 correspond to Eudicotyledons in the Viridiplantae class?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "Which third-level classification corresponds to organisms with unique identifiers ranging from 2646 to 4314 in the Viruses category?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "Which l3 values are found for organisms with oc_id below 4280?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "What are the second-level classifications and unique identifiers for organisms categorized as Other in the Bacteria class?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "Which first-level classifications are linked to organisms in the Gram-Negative category that have a taxonomic identifier greater than 2009242?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "What is the highest taxonomic identifier found among organisms in the Lepidoptera category?",
"table_ids": [
"organism class_SEP_table_34"
]
},
{
"query": "Which l1 and l2 values correspond to assay class ID 486 and l3 \"Repetitive Transcranial Magnetic Stimulation\"?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "How do we calculate the average assay class ID for the category \"SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS\"?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "What is the total of assay class IDs for the assay categorized as \"General Behavioural Responses\"?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "How can we calculate the mean assay class ID for the assay identified as \"Repetitive Transcranial Magnetic Stimulation\" within the category \"NERVOUS SYSTEM\"?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "Which l2 values are associated with assay class IDs that are below 470 in the \"CARDIOVASCULAR SYSTEM\"?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "Which l2 values correspond to the category \"BLOOD AND BLOOD FORMING ORGANS\" for assay class IDs exceeding 163?",
"table_ids": [
"assay classification_SEP_table_57"
]
},
{
"query": "Which confidence values correspond to activity IDs in the range of 49808 to 2190351?",
"table_ids": [
"predicted binding domains_SEP_table_25"
]
},
{
"query": "Which mol_hrac_id applies to molecules with a molregno in the range of 1014460 to 1570295 and an hrac_class_id under 147?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "What is the maximum molecule classification identifier and the highest herbicide action classification identifier for substances with a registration number lower than 1369314?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "What is the highest molecule classification identifier and the total of the herbicide action classification identifiers for substances with a registration number between 788802 and 1523826?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "What are the smallest herbicide action classification identifier and the overall total of registration numbers?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "Which hrac_class_id and molregno correspond to molecules with a mol_hrac_id exceeding 43?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "Which registration number is associated with substances that have a molecule classification identifier of 181 and a herbicide action classification identifier greater than 95?",
"table_ids": [
"molecule hrac classification_SEP_table_27"
]
},
{
"query": "Which URLs and their corresponding minimum warning reference IDs are associated with DailyMed references?",
"table_ids": [
"warning refs_SEP_table_71"
]
},
{
"query": "What comments and descriptions are available regarding data validity?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which descriptions and comments can be found?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which comment is associated with the description about unusual units for the activity type?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "What comments and descriptions exist?",
"table_ids": [
"data validity lookup_SEP_table_29"
]
},
{
"query": "Which values of \"cidx\" and \"src_compound_id\" correspond to \"src_id\" equal to 1 and \"doc_id\" within the range of 4879 to 15190?",
"table_ids": [
"compound records_SEP_table_6"
]
},
{
"query": "How do we calculate the average of \"compound_key\" and the total of \"src_id\"?",
"table_ids": [
"compound records_SEP_table_6"
]
},
{
"query": "What is the lowest \"molregno\" and the highest \"record_id\"?",
"table_ids": [
"compound records_SEP_table_6",
"drug warning_SEP_table_47",
"drug mechanism_SEP_table_24",
"drug indication_SEP_table_66",
"activities_SEP_table_52",
"formulations_SEP_table_61"
]
},
{
"query": "Which \"molregno\" values are associated with \"record_id\" values that are below 7213?",
"table_ids": [
"compound records_SEP_table_6",
"drug warning_SEP_table_47",
"drug mechanism_SEP_table_24",
"drug indication_SEP_table_66",
"activities_SEP_table_52",
"formulations_SEP_table_61"
]
},
{
"query": "Which \"doc_id\" and \"src_id\" values are found for \"cidx\" equal to CLD0, sorted by \"molregno\" from highest to lowest, and limited to five entries?",
"table_ids": [
"compound records_SEP_table_6"
]
},
{
"query": "Which molecule registration numbers are associated with active molecule registration numbers in the range of 169401 to 327066?",
"table_ids": [
"molecule hierarchy_SEP_table_36"
]
},
{
"query": "Which parent and active molecule registration numbers correspond to the molecule registration number 6101?",
"table_ids": [
"molecule hierarchy_SEP_table_36"
]
},
{
"query": "Which types correspond to assay IDs in the range of 188800 to 1009474?",
"table_ids": [
"assay parameters_SEP_table_37",
"activities_SEP_table_52"
]
},
{
"query": "What is the mean of the numerical measurement and the mean of the assay parameter ID?",
"table_ids": [
"assay parameters_SEP_table_37"
]
},
{
"query": "What are the maximum sample ID and the minimum analysis ID?",
"table_ids": [
"activity supp_SEP_table_40"
]
},
{
"query": "What is the highest as_id and the lowest rgid?",
"table_ids": [
"activity supp_SEP_table_40"
]
},
{
"query": "Which text values and standard values are available?",
"table_ids": [
"activity supp_SEP_table_40",
"assay parameters_SEP_table_37",
"activities_SEP_table_52",
"activity properties_SEP_table_13"
]
},
{
"query": "Which routes correspond to NDA type A?",
"table_ids": [
"products_SEP_table_26"
]
},
{
"query": "What is the lowest parenteral value for transdermal products classified as NDA type N?",
"table_ids": [
"products_SEP_table_26"
]
},
{
"query": "What are the values that indicate the smallest molecule ATC identifier and the mean registration number for the classification M03BB53?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "Which molecule ATC identifier and registration number are associated with the classification D04AB07?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "What is the total registration number for the classification C10AA06?",
"table_ids": [
"molecule atc classification_SEP_table_33"
]
},
{
"query": "Which tax identification numbers and MD5 hash values are associated with the term \"Light chain\"?",
"table_ids": [
"bio component sequences_SEP_table_41"
]
},
{
"query": "How do the component IDs average out?",
"table_ids": [
"bio component sequences_SEP_table_41",
"component class_SEP_table_73",
"component synonyms_SEP_table_60",
"biotherapeutic components_SEP_table_10",
"site components_SEP_table_44",
"component go_SEP_table_69",
"component sequences_SEP_table_56",
"target components_SEP_table_46"
]
},
{
"query": "Which organisms are linked to the given sequence MD5 sum, sorted by component ID in ascending order, with a maximum of 5 results?",
"table_ids": [
"bio component sequences_SEP_table_41"
]
},
{
"query": "What descriptions and component types exist for component IDs below `22587`?",
"table_ids": [
"bio component sequences_SEP_table_41",
"component sequences_SEP_table_56"
]
},
{
"query": "What is the average of the component IDs for the term \"Heavy chain\"?",
"table_ids": [
"bio component sequences_SEP_table_41"
]
},
{
"query": "How do you find the average ref_id and the highest mecref_id for records with the ref_url https://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId=3633 and ref_type IUPHAR?",
"table_ids": [
"mechanism refs_SEP_table_59"
]
},
{
"query": "Which five domain IDs and their source domain IDs come first in order?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which domain IDs belong to the domain type 'Pfam-A'?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which domain type and domain name correspond to the source domain ID 'PF21336'?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which domain ID is associated with the source domain ID 'PF01035' and the domain name 'DNA_binding_1'?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which source domain ID corresponds to the domain ID '13847'?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "What is the highest domain ID associated with the source domain ID 'PF00575'?",
"table_ids": [
"domains_SEP_table_64"
]
},
{
"query": "Which source domain IDs are paired with their domain names?",
"table_ids": [
"domains_SEP_table_64"
]
}
] |