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
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Source: https://download.qt.io/official_releases/qt/*/submodules/
Files-Excluded: src/3rdparty/chromium/build/android/CheckInstallApk-debug.apk
src/3rdparty/chromium/build/android/stacktrace/java_deobfuscate.jar
src/3rdparty/chromium/buildtools/third_party/eu-strip/bin/eu-strip
src/3rdparty/chromium/net/tools/testserver/dist/*.pyd
src/3rdparty/chromium/third_party/angle/third_party/rapidjson/src/bin/jsonchecker
src/3rdparty/chromium/third_party/angle/third_party/vulkan-loader/src/loader/loader.aps
src/3rdparty/chromium/third_party/angle/third_party/vulkan-tools/src/external/x64/lib/vulkan-1.lib
src/3rdparty/chromium/third_party/angle/third_party/vulkan-tools/src/external/x86/lib/vulkan-1.lib
src/3rdparty/chromium/third_party/apple_apsl/*
src/3rdparty/chromium/third_party/blanketjs/src/blanket.js
src/3rdparty/chromium/third_party/blink/manual_tests/accessibility/resources/AppletTest.class
src/3rdparty/chromium/third_party/blink/manual_tests/plugins/*.swf
src/3rdparty/chromium/third_party/blink/manual_tests/resources/ArrayParameterTestApplet.class
src/3rdparty/chromium/third_party/blink/manual_tests/resources/CheckerApplet.class
src/3rdparty/chromium/third_party/blink/manual_tests/resources/DrawMessage.class
src/3rdparty/chromium/third_party/blink/manual_tests/resources/spinbox.swf
src/3rdparty/chromium/third_party/blink/manual_tests/resources/StringTypeTest.class
src/3rdparty/chromium/third_party/blink/manual_tests/resources/TestApplet.class
src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/mac/gcov/libgcov.a
src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/mac/testapp/crashduringload
src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/mac/testapp/crashInMain
src/3rdparty/chromium/third_party/breakpad/breakpad/src/tools/windows/binaries
src/3rdparty/chromium/third_party/breakpad/symupload.exe
src/3rdparty/chromium/third_party/bspatch/LICENSE
src/3rdparty/chromium/third_party/catapult
src/3rdparty/chromium/third_party/chaijs/chai.js
src/3rdparty/chromium/third_party/checkstyle/*
src/3rdparty/chromium/third_party/closure_compiler/compiler/compiler.jar
src/3rdparty/chromium/third_party/crashpad/crashpad/handler/win/z7_test.dll
src/3rdparty/chromium/third_party/crashpad/crashpad/snapshot/elf/elf_image_reader_fuzzer_corpus
src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/apple_cf/*
src/3rdparty/chromium/third_party/crashpad/crashpad/util/misc/capture_context_win_arm64.obj
src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/diff/diff_match_patch.js
src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/acorn/package/dist/acorn.js
src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/lighthouse-dt-bundle.js
src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/report-assets/report-generator.js
src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rollup/dist/rollup.browser.js
src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rollup/node_modules/fsevents/fsevents.node
src/3rdparty/chromium/third_party/devtools-frontend/src/scripts/closure/closure_runner/closure_runner.jar
src/3rdparty/chromium/third_party/devtools-frontend/src/scripts/closure/compiler.jar
src/3rdparty/chromium/third_party/devtools-frontend/src/scripts/jsdoc_validator/jsdoc_validator.jar
src/3rdparty/chromium/third_party/dom_distiller_js/dist/js/*.js
src/3rdparty/chromium/third_party/flatbuffers/src/android/gradle/wrapper/gradle-wrapper.jar
src/3rdparty/chromium/third_party/flatbuffers/src/samples/android/gradle/wrapper/gradle-wrapper.jar
src/3rdparty/chromium/third_party/google-closure-library/scripts/ci/CloseAdobeDialog.exe
src/3rdparty/chromium/third_party/gradle_wrapper/gradle/wrapper/gradle-wrapper.jar
src/3rdparty/chromium/third_party/jetifier_standalone/lib/jetifier-standalone.jar
src/3rdparty/chromium/third_party/jstemplate/jstemplate_compiled.js
src/3rdparty/chromium/third_party/lzma_sdk/7zr.exe
src/3rdparty/chromium/third_party/lzma_sdk/Executable/7za.exe
src/3rdparty/chromium/third_party/mako/doc
src/3rdparty/chromium/third_party/openh264/src/autotest/performanceTest/ios/fruitstrap
src/3rdparty/chromium/third_party/openh264/src/autotest/performanceTest/ios/iFileTransfer
src/3rdparty/chromium/third_party/pycoverage/coverage/htmlfiles/*.min.js
src/3rdparty/chromium/third_party/pyelftools/examples/sample_exe64.elf
src/3rdparty/chromium/third_party/skia/platform_tools/android/apps/gradle/wrapper/gradle-wrapper.jar
src/3rdparty/chromium/third_party/skia/platform_tools/android/bin/linux/perfhost
src/3rdparty/chromium/third_party/skia/platform_tools/android/bin/mac/perfhost
src/3rdparty/chromium/third_party/skia/resources/icc_profiles/AdobeRGB1998.icc
src/3rdparty/chromium/third_party/skia/resources/icc_profiles/srgb_lab_pcs.icc
src/3rdparty/chromium/third_party/skia/site/user/api/catalog.htm
src/3rdparty/chromium/third_party/skia/tools/perf-canvaskit-puppeteer/path_translate_assets/car.svg
src/3rdparty/chromium/third_party/spirv-cross/spirv-cross/tests-other/*.spv
src/3rdparty/chromium/third_party/unrar
src/3rdparty/chromium/third_party/vulkan_memory_allocator/bin/*.exe
src/3rdparty/chromium/third_party/vulkan_memory_allocator/bin/*.spv
src/3rdparty/chromium/third_party/vulkan_memory_allocator/docs
src/3rdparty/chromium/third_party/vulkan_memory_allocator/premake/premake5.exe
src/3rdparty/chromium/third_party/web-animations-js/sources/*.min.js
src/3rdparty/chromium/third_party/webrtc/data/voice_engine/stereo_rtp_files/rtpplay.exe
src/3rdparty/chromium/third_party/webrtc/examples/androidapp/third_party/autobanh
src/3rdparty/chromium/third_party/webxr_test_pages/webxr-samples/js/third-party/dat.gui/dat.gui.min.js
src/3rdparty/chromium/third_party/win_build_output
src/3rdparty/chromium/ui/accessibility/extensions/highcontrast/highcontrast.js
src/3rdparty/chromium/v8/third_party/wasm-api/example/*.wasm
tests/auto/widgets/resources/test.swf
Files: *
Copyright: 2006-2022 The Chromium Authors
2016-2022 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: debian/*
Copyright: 2016-2019 Scarlett Moore <sgmoore@kde.org>
2016-2017 Sandro Knauß <hefee@debian.org>
2017-2023 Dmitry Shachnev <mitya57@debian.org>
2023 Soren Stoutner <soren@stoutner.com>
License: LGPL-3
Files: config.tests/*
tests/*
tools/*
Copyright: 2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: examples/pdf/*
examples/webengine/*
examples/webenginewidgets/*
src/webengine/doc/snippets/qtwebengine_webengineview_newviewrequested.qml
src/webenginewidgets/doc/snippets/simple/main.cpp
tests/manual/quick/pdf/*
Copyright: 2016-2020 The Qt Company Ltd.
License: BSD-3-clause
Files: *.qdoc
Copyright: 2016-2020 The Qt Company Ltd.
License: GFDL-NIV-1.3
Files: src/3rdparty/chromium/*
Copyright: 2015-2021 The Chromium Authors
License: BSD-3-clause
Files: src/3rdparty/gn/*
Copyright: 2015-2020 The Chromium Authors
License: BSD-3-clause
Files: src/3rdparty/ninja/*
Copyright: 2011-2018 Google Inc.
License: Apache-2.0
## BEGIN AUTO GENERATED BLOCK
Files: examples/webengine/quicknanobrowser/icons/3rdparty/*
Copyright: Ulisse Perusin <uli.peru@gmail.com>
Steven Garrity <sgarrity@silverorange.com>
Lapo Calamandrei <calamandrei@gmail.com>
Ryan Collier <rcollier@novell.com>
Rodney Dawes <dobey@novell.com>
Andreas Nilsson <nisses.mail@home.se>
Tuomas Kuosmanen <tigert@tigert.com>
Garrett LeSage <garrett@novell.com>
Jakub Steiner <jimmac@novell.com>
License: public-domain
Files: examples/webengine/recipebrowser/resources/pages/assets/3rdparty/marked.js
Copyright: 2011-2018, Christopher Jeffrey
License: MIT
Files: examples/webengine/recipebrowser/resources/pages/assets/3rdparty/markdown.css
Copyright: 2011 Kevin Burke
Twitter Inc.
License: Apache-2.0
Files: examples/webenginewidgets/cookiebrowser/3rdparty/*
Copyright: Ulisse Perusin <uli.peru@gmail.com>
Steven Garrity <sgarrity@silverorange.com>
Lapo Calamandrei <calamandrei@gmail.com>
Ryan Collier <rcollier@novell.com>
Rodney Dawes <dobey@novell.com>
Andreas Nilsson <nisses.mail@home.se>
Tuomas Kuosmanen <tigert@tigert.com>
Garrett LeSage <garrett@novell.com>
Jakub Steiner <jimmac@novell.com>
License: public-domain
Files: examples/webenginewidgets/markdowneditor/resources/3rdparty/marked.js
Copyright: 2011-2018, Christopher Jeffrey
License: MIT
Files: examples/webenginewidgets/markdowneditor/resources/3rdparty/markdown.css
Copyright: 2011 Kevin Burke
Twitter Inc.
License: Apache-2.0
Files: examples/webenginewidgets/simplebrowser/data/3rdparty/*
Copyright: Ulisse Perusin <uli.peru@gmail.com>
Steven Garrity <sgarrity@silverorange.com>
Lapo Calamandrei <calamandrei@gmail.com>
Ryan Collier <rcollier@novell.com>
Rodney Dawes <dobey@novell.com>
Andreas Nilsson <nisses.mail@home.se>
Tuomas Kuosmanen <tigert@tigert.com>
Garrett LeSage <garrett@novell.com>
Jakub Steiner <jimmac@novell.com>
License: public-domain
Files: examples/webenginewidgets/stylesheetbrowser/3rdparty/*
Copyright: Ulisse Perusin <uli.peru@gmail.com>
Steven Garrity <sgarrity@silverorange.com>
Lapo Calamandrei <calamandrei@gmail.com>
Ryan Collier <rcollier@novell.com>
Rodney Dawes <dobey@novell.com>
Andreas Nilsson <nisses.mail@home.se>
Tuomas Kuosmanen <tigert@tigert.com>
Garrett LeSage <garrett@novell.com>
Jakub Steiner <jimmac@novell.com>
License: public-domain
Files: src/3rdparty/chromium/base/third_party/cityhash/*
Copyright: CityHash developers
License: MIT
Files: src/3rdparty/chromium/base/third_party/cityhash_v103/*
Copyright: cityhash developers
License: MIT
Files: src/3rdparty/chromium/base/third_party/double_conversion/*
Copyright: double-conversion developers
License: BSD-3-clause
Files: src/3rdparty/chromium/base/third_party/dynamic_annotations/*
Copyright: dynamic annotations developers
License: BSD-3-clause
Files: src/3rdparty/chromium/base/third_party/icu/*
Copyright: ICU developers
License: Unicode
Files: src/3rdparty/chromium/base/third_party/libevent/*
Copyright: libevent developers
License: BSD-3-clause
Files: src/3rdparty/chromium/base/third_party/nspr/*
Copyright: Netscape Portable Runtime (NSPR) developers
License: MPL-1.1 or GPL-2 or LGPL-2.1
Files: src/3rdparty/chromium/base/third_party/superfasthash/*
Copyright: SuperFastHash developers
License: BSD-3-clause
Files: src/3rdparty/chromium/base/third_party/symbolize/*
Copyright: google-glog's symbolization library developers
License: BSD-3-clause
Files: src/3rdparty/chromium/base/third_party/valgrind/*
Copyright: valgrind developers
License: BSD-3-clause
Files: src/3rdparty/chromium/base/third_party/xdg_mime/*
Copyright: xdg-mime developers
License: AFL-2.0 or LGPL-2
Files: src/3rdparty/chromium/base/third_party/xdg_user_dirs/*
Copyright: xdg-user-dirs developers
License: MIT
Files: src/3rdparty/chromium/buildtools/third_party/eu-strip/*
Copyright: eu-strip developers
License: LGPL-3
Files: src/3rdparty/chromium/net/third_party/mozilla_security_manager/*
Copyright: Mozilla Personal Security Manager developers
License: MPL-1.1 or GPL-2 or LGPL-2.1
Files: src/3rdparty/chromium/net/third_party/nist-pkits/*
Copyright: NIST PKITS developers
License: public-domain
Files: src/3rdparty/chromium/net/third_party/nss/*
Copyright: Network Security Services (NSS) developers
License: MPL-2.0
Files: src/3rdparty/chromium/net/third_party/quiche/*
Copyright: QUICHE developers
License: BSD-3-clause
Files: src/3rdparty/chromium/net/third_party/uri_template/*
Copyright: uri_template developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/Python-Markdown/*
Copyright: Python-Markdown developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/SPIRV-Tools/*
Copyright: SPIRV-Tools developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/abseil-cpp/*
Copyright: absl developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/angle/*
Copyright: ANGLE developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/angle/src/common/third_party/base/*
Copyright: base::numerics, base::MRUCachem, base::SHA1 developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/angle/src/common/third_party/smhasher/*
Copyright: SMHasher developers
License: MIT and public-domain
Files: src/3rdparty/chromium/third_party/angle/src/common/third_party/xxhash/*
Copyright: xxHash developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/third_party/ffx_spd/*
Copyright: ffx-spd developers
License: MIT
Files: src/3rdparty/chromium/third_party/angle/src/third_party/compiler/*
Copyright: WebKit developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/angle/src/third_party/libXNVCtrl/*
Copyright: libXNVCtrl developers
License: MIT
Files: src/3rdparty/chromium/third_party/angle/src/third_party/volk/*
Copyright: volk developers
License: MIT
Files: src/3rdparty/chromium/third_party/angle/third_party/glslang/*
Copyright: glslang developers
License: MIT
Files: src/3rdparty/chromium/third_party/angle/third_party/libpng/*
Copyright: libpng developers
License: libpng-2.0
Files: src/3rdparty/chromium/third_party/angle/third_party/rapidjson/*
Copyright: RapidJSON developers
License: MIT
Files: src/3rdparty/chromium/third_party/angle/third_party/spirv-cross/*
Copyright: spirv-cross developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/angle/third_party/spirv-headers/*
Copyright: spirv-headers developers
License: MIT
Files: src/3rdparty/chromium/third_party/angle/third_party/spirv-tools/*
Copyright: SPIRV-Tools developers
License: MIT
Files: src/3rdparty/chromium/third_party/angle/third_party/vulkan-headers/*
Copyright: Vulkan Headers developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/angle/third_party/vulkan-loader/*
Copyright: Vulkan Loader developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/angle/third_party/vulkan-tools/*
Copyright: Vulkan Mock ICD developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/angle/tools/flex-bison/third_party/m4sugar/*
Copyright: m4sugar developers
License: GPL-3
Files: src/3rdparty/chromium/third_party/angle/tools/flex-bison/third_party/skeletons/*
Copyright: Bison skeletons developers
License: GPL-3
Files: src/3rdparty/chromium/third_party/angle/util/android/third_party/*
Copyright: android_native_app_glue developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/angle/util/windows/third_party/StackWalker/*
Copyright: StackWalker developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/arcore-android-sdk-client/*
Copyright: com.google.ar:core-partner_chrome developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/arcore-android-sdk/*
Copyright: arcore developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/axe-core/*
Copyright: axe-core developers
License: MPL-2.0
Files: src/3rdparty/chromium/third_party/bazel/*
Copyright: (Components of) Bazel developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/bazel/desugar/*
Copyright: desugar developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/blanketjs/*
Copyright: Blanket developers
License: MIT
Files: src/3rdparty/chromium/third_party/blink/renderer/platform/testing/data/third_party/Noto/*
Copyright: Noto developers
License: OFL-1.1
Files: src/3rdparty/chromium/third_party/blink/renderer/platform/testing/data/third_party/Roboto/*
Copyright: roboto developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/boringssl/*
Copyright: BoringSSL developers
License: OpenSSL and SSLeay and ISC and MIT and BSD-3-clause
Files: src/3rdparty/chromium/third_party/boringssl/src/third_party/fiat/*
Copyright: fiat-crypto developers
License: MIT
Files: src/3rdparty/chromium/third_party/bouncycastle/*
Copyright: Bouncy Castle developers
License: MIT
Files: src/3rdparty/chromium/third_party/breakpad/*
Copyright: breakpad developers
License: BSD-3-clause and APSL-2.0 and Apache-2.0
Files: src/3rdparty/chromium/third_party/breakpad/breakpad/src/third_party/libdisasm/*
Copyright: libdisasm developers
License: ClArtistic
Files: src/3rdparty/chromium/third_party/brotli/*
Copyright: Brotli developers
License: MIT
Files: src/3rdparty/chromium/third_party/bspatch/*
Copyright: bspatch developers
License: BSD-2-clause
Files: src/3rdparty/chromium/third_party/byte_buddy/*
Copyright: Byte Buddy developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/ced/*
Copyright: ced developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/chaijs/*
Copyright: chai developers
License: MIT
Files: src/3rdparty/chromium/third_party/cld_3/*
Copyright: cld_3 developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/closure_compiler/*
Copyright: closure-compiler developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/crashpad/*
Copyright: crashpad developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/cpp-httplib/*
Copyright: cpp-httplib developers
License: MIT
Files: src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/edo/*
Copyright: EDO developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/getopt/*
Copyright: getopt developers
License: public-domain
Files: src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/glibc/*
Copyright: glibc developers
License: LGPL-2.1
Files: src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/googletest/*
Copyright: googletest developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/gyp/*
Copyright: gyp developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/lss/*
Copyright: lss developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/mini_chromium/*
Copyright: mini_chromium developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/xnu/*
Copyright: xnu developers
License: APSL-2.0
Files: src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/zlib/*
Copyright: zlib developers
License: Zlib
Files: src/3rdparty/chromium/third_party/crc32c/*
Copyright: crc32c developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/d3/*
Copyright: d3 developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/dav1d/*
Copyright: dav1d developers
License: BSD-2-clause
Files: src/3rdparty/chromium/third_party/dawn/*
Copyright: dawn developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/decklink/*
Copyright: Blackmagic DeckLink SDK - Mac developers
License: BSL-1.0
Files: src/3rdparty/chromium/third_party/devscripts/*
Copyright: devscripts developers
License: GPL-2
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-logical-assignment/*
Copyright: acorn-logical-assignment developers
License: MIT
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-loose/*
Copyright: acorn-loose developers
License: MIT
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-numeric-separator/*
Copyright: acorn-numeric-separator developers
License: MIT
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/acorn/*
Copyright: acorn developers
License: MIT
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/axe-core/*
Copyright: axe-core developers
License: MPL-2.0
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/codemirror/*
Copyright: CodeMirror developers
License: MIT
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/fabricjs/*
Copyright: fabricjs developers
License: MIT
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/i18n/*
Copyright: i18n developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/intl-messageformat/*
Copyright: intl-messageformat developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/*
Copyright: lighthouse developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lit-html/*
Copyright: lit-html developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lodash-isequal/*
Copyright: lodash.isequal developers
License: MIT
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/marked/*
Copyright: marked developers
License: MIT
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/puppeteer/*
Copyright: Puppeteer developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/wasmparser/*
Copyright: wasmparser developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/third_party/i18n/*
Copyright: i18n developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/third_party/pyjson5/*
Copyright: pyjson5 developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/devtools-frontend/src/third_party/typescript/*
Copyright: typescript developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/dom_distiller_js/*
Copyright: dom-distiller-js developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/dpkg-shlibdeps/*
Copyright: dpkg-shlibdeps developers
License: GPL-2
Files: src/3rdparty/chromium/third_party/emoji-segmenter/*
Copyright: emoji-segmenter developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/espresso/*
Copyright: espresso developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/expat/*
Copyright: expat developers
License: MIT
Files: src/3rdparty/chromium/third_party/ffmpeg/*
Copyright: ffmpeg developers
License: LGPL-2.1
Files: src/3rdparty/chromium/third_party/flac/*
Copyright: flac developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/flatbuffers/*
Copyright: flatbuffers developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/fontconfig/*
Copyright: fontconfig developers
License: MIT
Files: src/3rdparty/chromium/third_party/freetype/*
Copyright: FreeType developers
License: FTL
Files: src/3rdparty/chromium/third_party/fusejs/*
Copyright: Fuse.js developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/gif_player/*
Copyright: GifPlayer developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/glfw/*
Copyright: GLFW developers
License: Zlib
Files: src/3rdparty/chromium/third_party/glslang/*
Copyright: glslang developers
License: MIT
Files: src/3rdparty/chromium/third_party/google-closure-library/*
Copyright: closure-library developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/google-truth/*
Copyright: google-truth developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/googletest/*
Copyright: googletest developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/gradle_wrapper/*
Copyright: gradlew developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/guava/*
Copyright: guava developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/gvr-android-keyboard/*
Copyright: gvr-android-keyboard developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/gvr-android-sdk/*
Copyright: gvr developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/hamcrest/*
Copyright: hamcrest developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/harfbuzz-ng/*
Copyright: harfbuzz-ng developers
License: MIT
Files: src/3rdparty/chromium/third_party/hunspell/*
Copyright: hunspell developers
License: MPL-1.1 or GPL-2 or LGPL-2.1
Files: src/3rdparty/chromium/third_party/hyphenation-patterns/*
Copyright: hyphenation-patterns developers
License: LGPL-2.1 and MIT and Unicode and BSD-3-clause
Files: src/3rdparty/chromium/third_party/iaccessible2/*
Copyright: IAccessible2 developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/iccjpeg/*
Copyright: iccjpeg developers
License: IJG
Files: src/3rdparty/chromium/third_party/icu/*
Copyright: icu developers
License: MIT
Files: src/3rdparty/chromium/third_party/icu4j/*
Copyright: International Components for Unicode for Java (ICU4J) developers
License: MIT
Files: src/3rdparty/chromium/third_party/ijar/*
Copyright: ijar developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/ink/*
Copyright: ink developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/inspector_protocol/*
Copyright: inspector_protocol developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/isimpledom/*
Copyright: ISimpleDOM developers
License: MPL-1.1 or GPL-2 or LGPL-2.1
Files: src/3rdparty/chromium/third_party/jacoco/*
Copyright: JaCoCo developers
License: EPL-1.0
Files: src/3rdparty/chromium/third_party/javalang/*
Copyright: javalang developers
License: MIT
Files: src/3rdparty/chromium/third_party/jdk/*
Copyright: JDK developers
License: GPL-2
Files: src/3rdparty/chromium/third_party/jetifier_standalone/*
Copyright: Jetifier-standalone developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/jinja2/*
Copyright: jinja2 developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/jsoncpp/*
Copyright: jsoncpp developers
License: MIT
Files: src/3rdparty/chromium/third_party/jstemplate/*
Copyright: google-jstemplate developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/khronos/*
Copyright: khronos_headers developers
License: MIT/X11 and SGI-B-2.0
Files: src/3rdparty/chromium/third_party/leveldatabase/*
Copyright: leveldb developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libXNVCtrl/*
Copyright: libXNVCtrl developers
License: MIT
Files: src/3rdparty/chromium/third_party/libaddressinput/*
Copyright: libaddressinput developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/libaom/*
Copyright: libaom developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/fastfeat/*
Copyright: fastfeat developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/googletest/*
Copyright: googletest developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/libwebm/*
Copyright: libwebm developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/libyuv/*
Copyright: libyuv developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/vector/*
Copyright: vector developers
License: MIT
Files: src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/x86inc/*
Copyright: x86inc developers
License: ISC
Files: src/3rdparty/chromium/third_party/libavif/*
Copyright: avif developers
License: BSD-2-clause
Files: src/3rdparty/chromium/third_party/libbrlapi/*
Copyright: libbrlapi developers
License: LGPL-2.1
Files: src/3rdparty/chromium/third_party/libdrm/*
Copyright: libdrm developers
License: MIT and GPL-2
Files: src/3rdparty/chromium/third_party/libgav1/*
Copyright: libgav1 developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/libgifcodec/*
Copyright: libgifcodec developers
License: MPL-1.1 or GPL-2 or LGPL-2.1, and BSD-3-clause and BSD-2-clause
Files: src/3rdparty/chromium/third_party/libipp/*
Copyright: libipp developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libjingle_xmpp/*
Copyright: libjingle XMPP and xmllite libraries developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libjpeg_turbo/*
Copyright: libjpeg-turbo developers
License: IJG and BSD-3-clause and Zlib
Files: src/3rdparty/chromium/third_party/libpng/*
Copyright: libpng developers
License: libpng-2.0
Files: src/3rdparty/chromium/third_party/libprotobuf-mutator/*
Copyright: libprotobuf-mutator developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/libsecret/*
Copyright: libsecret developers
License: LGPL-2.1
Files: src/3rdparty/chromium/third_party/libsrtp/*
Copyright: libsrtp developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libsync/*
Copyright: Android Explicit Synchronization developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/libudev/*
Copyright: libudev developers
License: LGPL-2.1
Files: src/3rdparty/chromium/third_party/libusb/*
Copyright: libusbx developers
License: LGPL-2.1
Files: src/3rdparty/chromium/third_party/libvpx/*
Copyright: libvpx developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/googletest/*
Copyright: googletest developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/libwebm/*
Copyright: libwebm developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/libyuv/*
Copyright: libyuv developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/x86inc/*
Copyright: x86inc developers
License: ISC
Files: src/3rdparty/chromium/third_party/libwebm/*
Copyright: libwebm developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libwebp/*
Copyright: libwebp developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/libxml/*
Copyright: libxml developers
License: MIT
Files: src/3rdparty/chromium/third_party/libxslt/*
Copyright: libxslt developers
License: MIT
Files: src/3rdparty/chromium/third_party/libyuv/*
Copyright: libyuv developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/lottie/*
Copyright: lottie-web developers
License: MIT
Files: src/3rdparty/chromium/third_party/lzma_sdk/*
Copyright: lzma developers
License: public-domain
Files: src/3rdparty/chromium/third_party/mako/*
Copyright: python-mako developers
License: MIT
Files: src/3rdparty/chromium/third_party/markupsafe/*
Copyright: markupsafe developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/material_design_icons/*
Copyright: Material Design Icons developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/mesa_headers/*
Copyright: mesa_headers developers
License: MIT and SGI-B-2.0
Files: src/3rdparty/chromium/third_party/metrics_proto/*
Copyright: metrics_proto developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/microsoft_webauthn/*
Copyright: Windows webauthn.h developers
License: MIT
Files: src/3rdparty/chromium/third_party/minigbm/*
Copyright: minigbm developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/minizip/*
Copyright: minizip developers
License: Zlib
Files: src/3rdparty/chromium/third_party/mocha/*
Copyright: mocha developers
License: MIT
Files: src/3rdparty/chromium/third_party/mockito/*
Copyright: Mockito developers
License: MIT
Files: src/3rdparty/chromium/third_party/modp_b64/*
Copyright: stringencoders developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/motemplate/*
Copyright: motemplate developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/mozilla/*
Copyright: camino developers
License: MPL-1.1 or GPL-2 or LGPL-2.1
Files: src/3rdparty/chromium/third_party/nasm/*
Copyright: nasm developers
License: BSD-2-clause
Files: src/3rdparty/chromium/third_party/nearby/*
Copyright: Nearby developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/netty-tcnative/*
Copyright: netty-tcnative developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/netty4/*
Copyright: netty developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/node/*
Copyright: node developers
License: MIT
Files: src/3rdparty/chromium/third_party/objenesis/*
Copyright: Objenesis developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/ocmock/*
Copyright: ocmock developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/one_euro_filter/*
Copyright: 1€ filter developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/opencv/*
Copyright: opencv developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/openh264/*
Copyright: openh264 developers
License: BSD-2-clause
Files: src/3rdparty/chromium/third_party/openscreen/*
Copyright: openscreen developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/openxr/*
Copyright: OpenXR developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/opus/*
Copyright: opus developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/ots/*
Copyright: OTS (OpenType Sanitizer) developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/ow2_asm/*
Copyright: ASM developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/pdfium/third_party/agg23/*
Copyright: Anti-Grain Geometry developers
License: MIT
Files: src/3rdparty/chromium/third_party/pdfium/third_party/freetype/*
Copyright: FreeType developers
License: FTL
Files: src/3rdparty/chromium/third_party/pdfium/third_party/googletest/*
Copyright: googletest developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/pdfium/third_party/lcms/*
Copyright: Little CMS developers
License: MIT
Files: src/3rdparty/chromium/third_party/pdfium/third_party/libopenjpeg20/*
Copyright: OpenJPEG developers
License: BSD-2-clause
Files: src/3rdparty/chromium/third_party/pdfium/third_party/libpng16/*
Copyright: libpng developers
License: libpng-2.0
Files: src/3rdparty/chromium/third_party/pdfium/third_party/libtiff/*
Copyright: LibTIFF developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/pdfium/third_party/pymock/*
Copyright: mock developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/perfetto/*
Copyright: Perfetto developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/pexpect/*
Copyright: pexpect developers
License: MIT
Files: src/3rdparty/chromium/third_party/pffft/*
Copyright: PFFFT developers
License: custom-PFFFT
Copyright (c) 2013 Julien Pommier ( pommier@modartt.com )
.
Based on original fortran 77 code from FFTPACKv4 from NETLIB,
authored by Dr Paul Swarztrauber of NCAR, in 1985.
.
As confirmed by the NCAR fftpack software curators, the following
FFTPACKv5 license applies to FFTPACKv4 sources. My changes are
released under the same terms.
.
FFTPACK license:
.
http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html
.
Copyright (c) 2004 the University Corporation for Atmospheric
Research ("UCAR"). All rights reserved. Developed by NCAR's
Computational and Information Systems Laboratory, UCAR,
www.cisl.ucar.edu.
.
Redistribution and use of the Software in source and binary forms,
with or without modification, is permitted provided that the
following conditions are met:
.
- Neither the names of NCAR's Computational and Information Systems
Laboratory, the University Corporation for Atmospheric Research,
nor the names of its sponsors or contributors may be used to
endorse or promote products derived from this Software without
specific prior written permission.
.
- Redistributions of source code must retain the above copyright
notices, this list of conditions, and the disclaimer below.
.
- Redistributions in binary form must reproduce the above copyright
notice, this list of conditions, and the disclaimer below in the
documentation and/or other materials provided with the
distribution.
.
THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
SOFTWARE.
Files: src/3rdparty/chromium/third_party/ply/*
Copyright: PLY (Python Lex-Yacc) developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/polymer/*
Copyright: polymer developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/private-join-and-compute/*
Copyright: private-join-and-compute developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/private_membership/*
Copyright: PSM (Private Set Membership) client side developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/proguard/*
Copyright: Proguard developers
License: GPL-2
Files: src/3rdparty/chromium/third_party/protobuf/*
Copyright: protobuf developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/protoc_javalite/*
Copyright: protoc-gen-javalite developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/pycoverage/*
Copyright: coverage developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/pyelftools/*
Copyright: pyelftools developers
License: public-domain
Files: src/3rdparty/chromium/third_party/pyjson5/*
Copyright: pyjson5 developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/pystache/*
Copyright: Pystache developers
License: MIT
Files: src/3rdparty/chromium/third_party/pywebsocket3/*
Copyright: pywebsocket3 developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/qcms/*
Copyright: qcms developers
License: MIT
Files: src/3rdparty/chromium/third_party/quic_trace/*
Copyright: quic-trace developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/qunit/*
Copyright: QUnit developers
License: MIT
Files: src/3rdparty/chromium/third_party/r8/*
Copyright: R8 developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/re2/*
Copyright: re2 developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/requests/*
Copyright: Requests developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/rnnoise/*
Copyright: rnnoise developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/robolectric/*
Copyright: Robolectric developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/s2cellid/*
Copyright: s2cellid developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/schema_org/*
Copyright: schema_org developers
License: CC-BY-SA-3.0
Files: src/3rdparty/chromium/third_party/securemessage/*
Copyright: Secure Message developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/shaderc/*
Copyright: shaderc developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/shaka-player/*
Copyright: shaka-player developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/shell-encryption/*
Copyright: Simple Homomorphic Encryption Library with Lattices developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/simplejson/*
Copyright: simplejson developers
License: MIT
Files: src/3rdparty/chromium/third_party/sinonjs/*
Copyright: SinonJS developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/six/*
Copyright: six developers
License: MIT
Files: src/3rdparty/chromium/third_party/skia/*
Copyright: Skia developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/skia/third_party/etc1/*
Copyright: etc1 developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/skia/third_party/skcms/*
Copyright: skcms developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/smhasher/*
Copyright: SMHasher developers
License: MIT and public-domain
Files: src/3rdparty/chromium/third_party/snappy/*
Copyright: snappy developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/spirv-cross/*
Copyright: SPIRV-Cross developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/spirv-headers/*
Copyright: spirv-headers developers
License: MIT
Files: src/3rdparty/chromium/third_party/sqlite/*
Copyright: sqlite developers
License: public-domain
Files: src/3rdparty/chromium/third_party/sqlite4java/*
Copyright: Sqlite4java developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/subresource-filter-ruleset/*
Copyright: EasyList developers
License: CC-BY-SA-3.0
Files: src/3rdparty/chromium/third_party/sudden_motion_sensor/*
Copyright: smslib developers
License: NCSA
Files: src/3rdparty/chromium/third_party/tcmalloc/*
Copyright: gperftools developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/test_fonts/*
Copyright: test_fonts developers
License: OFL-1.1 and GPL-2 and bitstream-vera
Files: src/3rdparty/chromium/third_party/text-fragments-polyfill/*
Copyright: text-fragments-polyfill developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/tint/*
Copyright: tint developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/tlslite/*
Copyright: tlslite developers
License: public-domain and BSD-3-clause
Files: src/3rdparty/chromium/third_party/turbine/*
Copyright: turbine developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/ub-uiautomator/*
Copyright: uiautomator (unbundled) developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/ukey2/*
Copyright: Ukey2 developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/usb_ids/*
Copyright: usb-ids developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/usrsctp/*
Copyright: usrsctp developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/v4l-utils/*
Copyright: v4l-utils developers
License: LGPL-2.1
Files: src/3rdparty/chromium/third_party/vulkan_headers/*
Copyright: Vulkan developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/vulkan_memory_allocator/*
Copyright: VulkanMemoryAllocator developers
License: MIT
Files: src/3rdparty/chromium/third_party/wds/*
Copyright: WDS developers
License: LGPL-2.1
Files: src/3rdparty/chromium/third_party/web-animations-js/*
Copyright: web-animations-js developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/webdriver/*
Copyright: selenium developers
License: Apache-2.0 and MIT and GPL-2
Files: src/3rdparty/chromium/third_party/webgpu-cts/*
Copyright: webgpu-cts developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/webrtc/*
Copyright: WebRTC developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/webrtc/common_audio/third_party/ooura/*
Copyright: fft4g developers
License: custom-fft4g
/*
* http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html
* Copyright Takuya OOURA, 1996-2001
*
* You may use, copy, modify and distribute this code for any purpose (include
* commercial use) and without fee. Please refer to this package when you modify
* this code.
*/
Files: src/3rdparty/chromium/third_party/webrtc/common_audio/third_party/spl_sqrt_floor/*
Copyright: sql_sqrt_floor developers
License: public-domain
Files: src/3rdparty/chromium/third_party/webrtc/modules/third_party/fft/*
Copyright: fft developers
License: custom-fft
/*
* Copyright(c)1995,97 Mark Olesen <olesen@me.QueensU.CA>
* Queen's Univ at Kingston (Canada)
*
* Permission to use, copy, modify, and distribute this software for
* any purpose without fee is hereby granted, provided that this
* entire notice is included in all copies of any software which is
* or includes a copy or modification of this software and in all
* copies of the supporting documentation for such software.
*
* THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR QUEEN'S
* UNIVERSITY AT KINGSTON MAKES ANY REPRESENTATION OR WARRANTY OF ANY
* KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS
* FITNESS FOR ANY PARTICULAR PURPOSE.
*
* All of which is to say that you can do what you like with this
* source code provided you don't try to sell it as your own and you
* include an unaltered copy of this message (including the
* copyright).
*
* It is also implicitly understood that bug fixes and improvements
* should make their way back to the general Internet community so
* that everyone benefits.
*/
Files: src/3rdparty/chromium/third_party/webrtc/modules/third_party/g711/*
Copyright: g711 developers
License: custom-g711
/*
* SpanDSP - a series of DSP components for telephony
*
* g711.h - In line A-law and u-law conversion routines
*
* Written by Steve Underwood <steveu@coppice.org>
*
* Copyright (C) 2001 Steve Underwood
*
* Despite my general liking of the GPL, I place this code in the
* public domain for the benefit of all mankind - even the slimy
* ones who might try to proprietize my work and use it to my
* detriment.
*/
Files: src/3rdparty/chromium/third_party/webrtc/modules/third_party/g722/*
Copyright: g722 developers
License: custom-g722
/*
* SpanDSP - a series of DSP components for telephony
*
* g722_decode.c - The ITU G.722 codec, decode part.
*
* Written by Steve Underwood <steveu@coppice.org>
*
* Copyright (C) 2005 Steve Underwood
*
* Despite my general liking of the GPL, I place my own contributions
* to this code in the public domain for the benefit of all mankind -
* even the slimy ones who might try to proprietize my work and use it
* to my detriment.
*
* Based in part on a single channel G.722 codec which is:
*
* Copyright (c) CMU 1993
* Computer Science, Speech Group
* Chengxiang Lu and Alex Hauptmann
*/
Files: src/3rdparty/chromium/third_party/webrtc/modules/third_party/portaudio/*
Copyright: portaudio developers
License: custom-portaudio
/*
* $Id: pa_memorybarrier.h 1240 2007-07-17 13:05:07Z bjornroche $
* Portable Audio I/O Library
* Memory barrier utilities
*
* Author: Bjorn Roche, XO Audio, LLC
*
* This program uses the PortAudio Portable Audio Library.
* For more information see: http://www.portaudio.com
* Copyright (c) 1999-2000 Ross Bencina and Phil Burk
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.
/*
* The text above constitutes the entire PortAudio license; however,
* the PortAudio community also makes the following non-binding requests:
*
* Any person wishing to distribute modifications to the Software is
* requested to send the modifications to the original developer so that
* they can be incorporated into the canonical version. It is also
* requested that these non-binding requests be included along with the
* license above.
*/
.
/*
* $Id: pa_ringbuffer.c 1421 2009-11-18 16:09:05Z bjornroche $
* Portable Audio I/O Library
* Ring Buffer utility.
*
* Author: Phil Burk, http://www.softsynth.com
* modified for SMP safety on Mac OS X by Bjorn Roche
* modified for SMP safety on Linux by Leland Lucius
* also, allowed for const where possible
* modified for multiple-byte-sized data elements by Sven Fischer
*
* Note that this is safe only for a single-thread reader and a
* single-thread writer.
*
* This program uses the PortAudio Portable Audio Library.
* For more information see: http://www.portaudio.com
* Copyright (c) 1999-2000 Ross Bencina and Phil Burk
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.
/*
* The text above constitutes the entire PortAudio license; however,
* the PortAudio community also makes the following non-binding requests:
*
* Any person wishing to distribute modifications to the Software is
* requested to send the modifications to the original developer so that
* they can be incorporated into the canonical version. It is also
* requested that these non-binding requests be included along with the
* license above.
*/
Files: src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/base64/*
Copyright: base64 developers
License: custom-base64
//*********************************************************************
//* Base64 - a simple base64 encoder and decoder.
//*
//* Copyright (c) 1999, Bob Withers - bwit@pobox.com
//*
//* This code may be freely used for any purpose, either personal
//* or commercial, provided the authors copyright notice remains
//* intact.
//*
//* Enhancements by Stanley Yamane:
//* o reverse lookup table for the decode function
//* o reserve string buffer space in advance
//*
//*********************************************************************
Files: src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/sigslot/*
Copyright: sigslot developers
License: custom-sigslot
// sigslot.h: Signal/Slot classes
//
// Written by Sarah Thompson (sarah@telergy.com) 2002.
//
// License: Public domain. You are free to use this code however you like, with
// the proviso that the author takes on no responsibility or liability for any
// use.
Files: src/3rdparty/chromium/third_party/webrtc_overrides/*
Copyright: WebRTC developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/webxr_test_pages/*
Copyright: webxr-samples developers
License: MIT
Files: src/3rdparty/chromium/third_party/webxr_test_pages/webxr-samples/js/third-party/dat.gui/*
Copyright: dat.gui developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/webxr_test_pages/webxr-samples/js/third-party/gl-matrix/*
Copyright: gl-matrix developers
License: MIT
Files: src/3rdparty/chromium/third_party/weston/*
Copyright: Weston developers
License: MIT
Files: src/3rdparty/chromium/third_party/woff2/*
Copyright: woff2 developers
License: MIT
Files: src/3rdparty/chromium/third_party/wtl/*
Copyright: Windows Template Library (WTL) developers
License: MS-PL
Files: src/3rdparty/chromium/third_party/wuffs/*
Copyright: Wuffs developers
License: Apache-2.0
Files: src/3rdparty/chromium/third_party/xcbproto/*
Copyright: xcbproto developers
License: MIT
Files: src/3rdparty/chromium/third_party/xdg-utils/*
Copyright: xdg-utils developers
License: MIT
Files: src/3rdparty/chromium/third_party/xstream/*
Copyright: Xstream developers
License: BSD-3-clause
Files: src/3rdparty/chromium/third_party/zlib/*
Copyright: zlib developers
License: Zlib
Files: src/3rdparty/chromium/third_party/zlib/contrib/minizip/*
Copyright: minizip developers
License: Zlib
Files: src/3rdparty/chromium/third_party/zxcvbn-cpp/*
Copyright: zxcvbn-cpp developers
License: MIT
Files: src/3rdparty/chromium/tools/grit/third_party/six/*
Copyright: six developers
License: Apache-2.0
Files: src/3rdparty/chromium/tools/origin_trials/third_party/ed25519/*
Copyright: Ed25519 developers
License: public-domain
Files: src/3rdparty/chromium/tools/page_cycler/acid3/*
Copyright: Acid3 developers
License: public-domain
Files: src/3rdparty/chromium/tools/valgrind/asan/third_party/*
Copyright: asan_symbolize.py developers
License: NCSA
Files: src/3rdparty/chromium/url/third_party/mozilla/*
Copyright: url_parse developers
License: MPL-1.1 or GPL-2 or LGPL-2.1, and BSD-3-clause
Files: src/3rdparty/chromium/v8/src/third_party/utf8-decoder/*
Copyright: utf8-decoder developers
License: MIT
Files: src/3rdparty/chromium/v8/third_party/colorama/*
Copyright: colorama developers
License: BSD-3-clause
Files: src/3rdparty/chromium/v8/third_party/google_benchmark/*
Copyright: benchmark developers
License: Apache-2.0
Files: src/3rdparty/chromium/v8/third_party/googletest/*
Copyright: googletest developers
License: BSD-3-clause
Files: src/3rdparty/chromium/v8/third_party/inspector_protocol/*
Copyright: inspector_protocol developers
License: BSD-3-clause
Files: src/3rdparty/chromium/v8/third_party/jsoncpp/*
Copyright: jsoncpp developers
License: MIT
Files: src/3rdparty/chromium/v8/third_party/wasm-api/*
Copyright: wasm-c-api developers
License: Apache-2.0
Files: src/3rdparty/gn/base/third_party/icu/*
Copyright: ICU developers
License: Unicode
## END AUTO GENERATED BLOCK
License: AFL-2.0
--------------------------------------------------------------------------------
Academic Free License v. 2.0
--------------------------------------------------------------------------------
.
This Academic Free License (the "License") applies to any original work of
authorship (the "Original Work") whose owner (the "Licensor") has placed the
following notice immediately following the copyright notice for the Original
Work:
.
Licensed under the Academic Free License version 2.0
1) Grant of Copyright License. Licensor hereby grants You a world-wide,
royalty-free, non-exclusive, perpetual, sublicenseable license to do the
following:
.
a) to reproduce the Original Work in copies;
b) to prepare derivative works ("Derivative Works") based upon the Original
Work;
c) to distribute copies of the Original Work and Derivative Works to the
public;
d) to perform the Original Work publicly; and
e) to display the Original Work publicly.
.
2) Grant of Patent License. Licensor hereby grants You a world-wide,
royalty-free, non-exclusive, perpetual, sublicenseable license, under patent
claims owned or controlled by the Licensor that are embodied in the Original
Work as furnished by the Licensor, to make, use, sell and offer for sale the
Original Work and Derivative Works.
.
3) Grant of Source Code License. The term "Source Code" means the preferred
form of the Original Work for making modifications to it and all available
documentation describing how to modify the Original Work. Licensor hereby
agrees to provide a machine-readable copy of the Source Code of the Original
Work along with each copy of the Original Work that Licensor distributes.
Licensor reserves the right to satisfy this obligation by placing a
machine-readable copy of the Source Code in an information repository
reasonably calculated to permit inexpensive and convenient access by You for as
long as Licensor continues to distribute the Original Work, and by publishing
the address of that information repository in a notice immediately following
the copyright notice that applies to the Original Work.
.
4) Exclusions From License Grant. Neither the names of Licensor, nor the names
of any contributors to the Original Work, nor any of their trademarks or
service marks, may be used to endorse or promote products derived from this
Original Work without express prior written permission of the Licensor. Nothing
in this License shall be deemed to grant any rights to trademarks, copyrights,
patents, trade secrets or any other intellectual property of Licensor except as
expressly stated herein. No patent license is granted to make, use, sell or
offer to sell embodiments of any patent claims other than the licensed claims
defined in Section 2. No right is granted to the trademarks of Licensor even if
such marks are included in the Original Work. Nothing in this License shall be
interpreted to prohibit Licensor from licensing under different terms from this
License any Original Work that Licensor otherwise would have a right to
license.
.
5) This section intentionally omitted.
.
6) Attribution Rights. You must retain, in the Source Code of any Derivative
Works that You create, all copyright, patent or trademark notices from the
Source Code of the Original Work, as well as any notices of licensing and any
descriptive text identified therein as an "Attribution Notice." You must cause
the Source Code for any Derivative Works that You create to carry a prominent
Attribution Notice reasonably calculated to inform recipients that You have
modified the Original Work.
.
7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that
the copyright in and to the Original Work and the patent rights granted herein
by Licensor are owned by the Licensor or are sublicensed to You under the terms
of this License with the permission of the contributor(s) of those copyrights
and patent rights. Except as expressly stated in the immediately proceeding
sentence, the Original Work is provided under this License on an "AS IS" BASIS
and WITHOUT WARRANTY, either express or implied, including, without limitation,
the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU.
This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No
license to Original Work is granted hereunder except under this disclaimer.
.
8) Limitation of Liability. Under no circumstances and under no legal theory,
whether in tort (including negligence), contract, or otherwise, shall the
Licensor be liable to any person for any direct, indirect, special, incidental,
or consequential damages of any character arising as a result of this License
or the use of the Original Work including, without limitation, damages for loss
of goodwill, work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses. This limitation of liability shall not
apply to liability for death or personal injury resulting from Licensor's
negligence to the extent applicable law prohibits such limitation. Some
jurisdictions do not allow the exclusion or limitation of incidental or
consequential damages, so this exclusion and limitation may not apply to You.
.
9) Acceptance and Termination. If You distribute copies of the Original Work or
a Derivative Work, You must make a reasonable effort under the circumstances to
obtain the express assent of recipients to the terms of this License. Nothing
else but this License (or another written agreement between Licensor and You)
grants You permission to create Derivative Works based upon the Original Work
or to exercise any of the rights granted in Section 1 herein, and any attempt
to do so except under the terms of this License (or another written agreement
between Licensor and You) is expressly prohibited by U.S. copyright law, the
equivalent laws of other countries, and by international treaty. Therefore, by
exercising any of the rights granted to You in Section 1 herein, You indicate
Your acceptance of this License and all of its terms and conditions.
.
10) Termination for Patent Action. This License shall terminate automatically
and You may no longer exercise any of the rights granted to You by this License
as of the date You commence an action, including a cross-claim or counterclaim,
for patent infringement (i) against Licensor with respect to a patent
applicable to software or (ii) against any entity with respect to a patent
applicable to the Original Work (but excluding combinations of the Original
Work with other software or hardware).
.
11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this
License may be brought only in the courts of a jurisdiction wherein the
Licensor resides or in which Licensor conducts its primary business, and under
the laws of that jurisdiction excluding its conflict-of-law provisions. The
application of the United Nations Convention on Contracts for the International
Sale of Goods is expressly excluded. Any use of the Original Work outside the
scope of this License or after its termination shall be subject to the
requirements and penalties of the U.S. Copyright Act, 17 U.S.C. 101 et seq.,
the equivalent laws of other countries, and international treaty. This section
shall survive the termination of this License.
.
12) Attorneys Fees. In any action to enforce the terms of this License or
seeking damages relating thereto, the prevailing party shall be entitled to
recover its costs and expenses, including, without limitation, reasonable
attorneys' fees and costs incurred in connection with such action, including
any appeal of such action. This section shall survive the termination of this
License.
.
13) Miscellaneous. This License represents the complete agreement concerning
the subject matter hereof. If any provision of this License is held to be
unenforceable, such provision shall be reformed only to the extent necessary to
make it enforceable.
.
14) Definition of "You" in This License. "You" throughout this License, whether
in upper or lower case, means an individual or a legal entity exercising rights
under, and complying with all of the terms of, this License. For legal
entities, "You" includes any entity that controls, is controlled by, or is
under common control with you. For purposes of this definition, "control" means
(i) the power, direct or indirect, to cause the direction or management of such
entity, whether by contract or otherwise, or (ii) ownership of fifty percent
(50%) or more of the outstanding shares, or (iii) beneficial ownership of such
entity.
.
15) Right to Use. You may use the Original Work in all ways not otherwise
restricted or conditioned by this License or by law, and Licensor promises not
to interfere with or be responsible for such uses by You.
.
This license is Copyright (C) 2003 Lawrence E. Rosen. All rights reserved.
Permission is hereby granted to copy and distribute this license without
modification. This license may not be modified without the express written
permission of its copyright owner.
License: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
.
On Debian systems, the complete text of the Apache License 2.0 can
be found in /usr/share/common-licenses/Apache-2.0.
License: APSL-2.0
This file contains Original Code and/or Modifications of Original Code
as defined in and that are subject to the Apple Public Source License
Version 2.0 (the 'License'). You may not use this file except in
compliance with the License. Please obtain a copy of the License at
http://www.opensource.apple.com/apsl/ and read it before using this
file.
.
The Original Code and all software distributed under the License are
distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
Please see the License for the specific language governing rights and
limitations under the License.
License: bitstream-vera
Permission is hereby granted, free of charge, to any person obtaining a copy
of the fonts accompanying this license ("Fonts") and associated
documentation files (the "Font Software"), to reproduce and distribute the
Font Software, including without limitation the rights to use, copy, merge,
publish, distribute, and/or sell copies of the Font Software, and to permit
persons to whom the Font Software is furnished to do so, subject to the
following conditions:
.
The above copyright and trademark notices and this permission notice shall
be included in all copies of one or more of the Font Software typefaces.
.
The Font Software may be modified, altered, or added to, and in particular
the designs of glyphs or characters in the Fonts may be modified and
additional glyphs or characters may be added to the Fonts, only if the fonts
are renamed to names not containing either the words "Bitstream" or the word
"Vera".
.
This License becomes null and void to the extent applicable to Fonts or Font
Software that has been modified and is distributed under the "Bitstream
Vera" names.
.
The Font Software may be sold as part of a larger software package but no
copy of one or more of the Font Software typefaces may be sold by itself.
.
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME
FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING
ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE
FONT SOFTWARE.
.
Except as contained in this notice, the names of Gnome, the Gnome
Foundation, and Bitstream Inc., shall not be used in advertising or
otherwise to promote the sale, use or other dealings in this Font Software
without prior written authorization from the Gnome Foundation or Bitstream
Inc., respectively. For further information, contact: fonts at gnome dot
org.
License: BSD-2-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
.
THIS SOFTWARE IS PROVIDED BY APPLE, INC. ``AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE, INC. OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
.
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Neither the name of the authors nor the names of its contributors may
be used to endorse or promote products derived from this software
without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSL-1.0
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:
.
The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
License: CC-BY-SA-3.0
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
.
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE
TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY
BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS
CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
CONDITIONS.
.
1. Definitions
.
a. "Adaptation" means a work based upon the Work, or upon the Work and
other pre-existing works, such as a translation, adaptation,
derivative work, arrangement of music or other alterations of a
literary or artistic work, or phonogram or performance and includes
cinematographic adaptations or any other form in which the Work may be
recast, transformed, or adapted including in any form recognizably
derived from the original, except that a work that constitutes a
Collection will not be considered an Adaptation for the purpose of
this License. For the avoidance of doubt, where the Work is a musical
work, performance or phonogram, the synchronization of the Work in
timed-relation with a moving image ("synching") will be considered an
Adaptation for the purpose of this License.
b. "Collection" means a collection of literary or artistic works, such as
encyclopedias and anthologies, or performances, phonograms or
broadcasts, or other works or subject matter other than works listed
in Section 1(f) below, which, by reason of the selection and
arrangement of their contents, constitute intellectual creations, in
which the Work is included in its entirety in unmodified form along
with one or more other contributions, each constituting separate and
independent works in themselves, which together are assembled into a
collective whole. A work that constitutes a Collection will not be
considered an Adaptation (as defined below) for the purposes of this
License.
c. "Creative Commons Compatible License" means a license that is listed
at https://creativecommons.org/compatiblelicenses that has been
approved by Creative Commons as being essentially equivalent to this
License, including, at a minimum, because that license: (i) contains
terms that have the same purpose, meaning and effect as the License
Elements of this License; and, (ii) explicitly permits the relicensing
of adaptations of works made available under that license under this
License or a Creative Commons jurisdiction license with the same
License Elements as this License.
d. "Distribute" means to make available to the public the original and
copies of the Work or Adaptation, as appropriate, through sale or
other transfer of ownership.
e. "License Elements" means the following high-level license attributes
as selected by Licensor and indicated in the title of this License:
Attribution, ShareAlike.
f. "Licensor" means the individual, individuals, entity or entities that
offer(s) the Work under the terms of this License.
g. "Original Author" means, in the case of a literary or artistic work,
the individual, individuals, entity or entities who created the Work
or if no individual or entity can be identified, the publisher; and in
addition (i) in the case of a performance the actors, singers,
musicians, dancers, and other persons who act, sing, deliver, declaim,
play in, interpret or otherwise perform literary or artistic works or
expressions of folklore; (ii) in the case of a phonogram the producer
being the person or legal entity who first fixes the sounds of a
performance or other sounds; and, (iii) in the case of broadcasts, the
organization that transmits the broadcast.
h. "Work" means the literary and/or artistic work offered under the terms
of this License including without limitation any production in the
literary, scientific and artistic domain, whatever may be the mode or
form of its expression including digital form, such as a book,
pamphlet and other writing; a lecture, address, sermon or other work
of the same nature; a dramatic or dramatico-musical work; a
choreographic work or entertainment in dumb show; a musical
composition with or without words; a cinematographic work to which are
assimilated works expressed by a process analogous to cinematography;
a work of drawing, painting, architecture, sculpture, engraving or
lithography; a photographic work to which are assimilated works
expressed by a process analogous to photography; a work of applied
art; an illustration, map, plan, sketch or three-dimensional work
relative to geography, topography, architecture or science; a
performance; a broadcast; a phonogram; a compilation of data to the
extent it is protected as a copyrightable work; or a work performed by
a variety or circus performer to the extent it is not otherwise
considered a literary or artistic work.
i. "You" means an individual or entity exercising rights under this
License who has not previously violated the terms of this License with
respect to the Work, or who has received express permission from the
Licensor to exercise rights under this License despite a previous
violation.
j. "Publicly Perform" means to perform public recitations of the Work and
to communicate to the public those public recitations, by any means or
process, including by wire or wireless means or public digital
performances; to make available to the public Works in such a way that
members of the public may access these Works from a place and at a
place individually chosen by them; to perform the Work to the public
by any means or process and the communication to the public of the
performances of the Work, including by public digital performance; to
broadcast and rebroadcast the Work by any means including signs,
sounds or images.
k. "Reproduce" means to make copies of the Work by any means including
without limitation by sound or visual recordings and the right of
fixation and reproducing fixations of the Work, including storage of a
protected performance or phonogram in digital form or other electronic
medium.
.
2. Fair Dealing Rights. Nothing in this License is intended to reduce,
limit, or restrict any uses free from copyright or rights arising from
limitations or exceptions that are provided for in connection with the
copyright protection under copyright law or other applicable laws.
.
3. License Grant. Subject to the terms and conditions of this License,
Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
perpetual (for the duration of the applicable copyright) license to
exercise the rights in the Work as stated below:
.
a. to Reproduce the Work, to incorporate the Work into one or more
Collections, and to Reproduce the Work as incorporated in the
Collections;
b. to create and Reproduce Adaptations provided that any such Adaptation,
including any translation in any medium, takes reasonable steps to
clearly label, demarcate or otherwise identify that changes were made
to the original Work. For example, a translation could be marked "The
original work was translated from English to Spanish," or a
modification could indicate "The original work has been modified.";
c. to Distribute and Publicly Perform the Work including as incorporated
in Collections; and,
d. to Distribute and Publicly Perform Adaptations.
e. For the avoidance of doubt:
.
i. Non-waivable Compulsory License Schemes. In those jurisdictions in
which the right to collect royalties through any statutory or
compulsory licensing scheme cannot be waived, the Licensor
reserves the exclusive right to collect such royalties for any
exercise by You of the rights granted under this License;
ii. Waivable Compulsory License Schemes. In those jurisdictions in
which the right to collect royalties through any statutory or
compulsory licensing scheme can be waived, the Licensor waives the
exclusive right to collect such royalties for any exercise by You
of the rights granted under this License; and,
iii. Voluntary License Schemes. The Licensor waives the right to
collect royalties, whether individually or, in the event that the
Licensor is a member of a collecting society that administers
voluntary licensing schemes, via that society, from any exercise
by You of the rights granted under this License.
.
The above rights may be exercised in all media and formats whether now
known or hereafter devised. The above rights include the right to make
such modifications as are technically necessary to exercise the rights in
other media and formats. Subject to Section 8(f), all rights not expressly
granted by Licensor are hereby reserved.
.
4. Restrictions. The license granted in Section 3 above is expressly made
subject to and limited by the following restrictions:
.
a. You may Distribute or Publicly Perform the Work only under the terms
of this License. You must include a copy of, or the Uniform Resource
Identifier (URI) for, this License with every copy of the Work You
Distribute or Publicly Perform. You may not offer or impose any terms
on the Work that restrict the terms of this License or the ability of
the recipient of the Work to exercise the rights granted to that
recipient under the terms of the License. You may not sublicense the
Work. You must keep intact all notices that refer to this License and
to the disclaimer of warranties with every copy of the Work You
Distribute or Publicly Perform. When You Distribute or Publicly
Perform the Work, You may not impose any effective technological
measures on the Work that restrict the ability of a recipient of the
Work from You to exercise the rights granted to that recipient under
the terms of the License. This Section 4(a) applies to the Work as
incorporated in a Collection, but this does not require the Collection
apart from the Work itself to be made subject to the terms of this
License. If You create a Collection, upon notice from any Licensor You
must, to the extent practicable, remove from the Collection any credit
as required by Section 4(c), as requested. If You create an
Adaptation, upon notice from any Licensor You must, to the extent
practicable, remove from the Adaptation any credit as required by
Section 4(c), as requested.
b. You may Distribute or Publicly Perform an Adaptation only under the
terms of: (i) this License; (ii) a later version of this License with
the same License Elements as this License; (iii) a Creative Commons
jurisdiction license (either this or a later license version) that
contains the same License Elements as this License (e.g.,
Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible
License. If you license the Adaptation under one of the licenses
mentioned in (iv), you must comply with the terms of that license. If
you license the Adaptation under the terms of any of the licenses
mentioned in (i), (ii) or (iii) (the "Applicable License"), you must
comply with the terms of the Applicable License generally and the
following provisions: (I) You must include a copy of, or the URI for,
the Applicable License with every copy of each Adaptation You
Distribute or Publicly Perform; (II) You may not offer or impose any
terms on the Adaptation that restrict the terms of the Applicable
License or the ability of the recipient of the Adaptation to exercise
the rights granted to that recipient under the terms of the Applicable
License; (III) You must keep intact all notices that refer to the
Applicable License and to the disclaimer of warranties with every copy
of the Work as included in the Adaptation You Distribute or Publicly
Perform; (IV) when You Distribute or Publicly Perform the Adaptation,
You may not impose any effective technological measures on the
Adaptation that restrict the ability of a recipient of the Adaptation
from You to exercise the rights granted to that recipient under the
terms of the Applicable License. This Section 4(b) applies to the
Adaptation as incorporated in a Collection, but this does not require
the Collection apart from the Adaptation itself to be made subject to
the terms of the Applicable License.
c. If You Distribute, or Publicly Perform the Work or any Adaptations or
Collections, You must, unless a request has been made pursuant to
Section 4(a), keep intact all copyright notices for the Work and
provide, reasonable to the medium or means You are utilizing: (i) the
name of the Original Author (or pseudonym, if applicable) if supplied,
and/or if the Original Author and/or Licensor designate another party
or parties (e.g., a sponsor institute, publishing entity, journal) for
attribution ("Attribution Parties") in Licensor's copyright notice,
terms of service or by other reasonable means, the name of such party
or parties; (ii) the title of the Work if supplied; (iii) to the
extent reasonably practicable, the URI, if any, that Licensor
specifies to be associated with the Work, unless such URI does not
refer to the copyright notice or licensing information for the Work;
and (iv) , consistent with Ssection 3(b), in the case of an
Adaptation, a credit identifying the use of the Work in the Adaptation
(e.g., "French translation of the Work by Original Author," or
"Screenplay based on original Work by Original Author"). The credit
required by this Section 4(c) may be implemented in any reasonable
manner; provided, however, that in the case of a Adaptation or
Collection, at a minimum such credit will appear, if a credit for all
contributing authors of the Adaptation or Collection appears, then as
part of these credits and in a manner at least as prominent as the
credits for the other contributing authors. For the avoidance of
doubt, You may only use the credit required by this Section for the
purpose of attribution in the manner set out above and, by exercising
Your rights under this License, You may not implicitly or explicitly
assert or imply any connection with, sponsorship or endorsement by the
Original Author, Licensor and/or Attribution Parties, as appropriate,
of You or Your use of the Work, without the separate, express prior
written permission of the Original Author, Licensor and/or Attribution
Parties.
d. Except as otherwise agreed in writing by the Licensor or as may be
otherwise permitted by applicable law, if You Reproduce, Distribute or
Publicly Perform the Work either by itself or as part of any
Adaptations or Collections, You must not distort, mutilate, modify or
take other derogatory action in relation to the Work which would be
prejudicial to the Original Author's honor or reputation. Licensor
agrees that in those jurisdictions (e.g. Japan), in which any exercise
of the right granted in Section 3(b) of this License (the right to
make Adaptations) would be deemed to be a distortion, mutilation,
modification or other derogatory action prejudicial to the Original
Author's honor and reputation, the Licensor will waive or not assert,
as appropriate, this Section, to the fullest extent permitted by the
applicable national law, to enable You to reasonably exercise Your
right under Section 3(b) of this License (right to make Adaptations)
but not otherwise.
.
5. Representations, Warranties and Disclaimer
.
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR
OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY
KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,
INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,
FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF
LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,
WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION
OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
.
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE
LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR
ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES
ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
.
7. Termination
.
a. This License and the rights granted hereunder will terminate
automatically upon any breach by You of the terms of this License.
Individuals or entities who have received Adaptations or Collections
from You under this License, however, will not have their licenses
terminated provided such individuals or entities remain in full
compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
survive any termination of this License.
b. Subject to the above terms and conditions, the license granted here is
perpetual (for the duration of the applicable copyright in the Work).
Notwithstanding the above, Licensor reserves the right to release the
Work under different license terms or to stop distributing the Work at
any time; provided, however that any such election will not serve to
withdraw this License (or any other license that has been, or is
required to be, granted under the terms of this License), and this
License will continue in full force and effect unless terminated as
stated above.
.
8. Miscellaneous
.
a. Each time You Distribute or Publicly Perform the Work or a Collection,
the Licensor offers to the recipient a license to the Work on the same
terms and conditions as the license granted to You under this License.
b. Each time You Distribute or Publicly Perform an Adaptation, Licensor
offers to the recipient a license to the original Work on the same
terms and conditions as the license granted to You under this License.
c. If any provision of this License is invalid or unenforceable under
applicable law, it shall not affect the validity or enforceability of
the remainder of the terms of this License, and without further action
by the parties to this agreement, such provision shall be reformed to
the minimum extent necessary to make such provision valid and
enforceable.
d. No term or provision of this License shall be deemed waived and no
breach consented to unless such waiver or consent shall be in writing
and signed by the party to be charged with such waiver or consent.
e. This License constitutes the entire agreement between the parties with
respect to the Work licensed here. There are no understandings,
agreements or representations with respect to the Work not specified
here. Licensor shall not be bound by any additional provisions that
may appear in any communication from You. This License may not be
modified without the mutual written agreement of the Licensor and You.
f. The rights granted under, and the subject matter referenced, in this
License were drafted utilizing the terminology of the Berne Convention
for the Protection of Literary and Artistic Works (as amended on
September 28, 1979), the Rome Convention of 1961, the WIPO Copyright
Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996
and the Universal Copyright Convention (as revised on July 24, 1971).
These rights and subject matter take effect in the relevant
jurisdiction in which the License terms are sought to be enforced
according to the corresponding provisions of the implementation of
those treaty provisions in the applicable national law. If the
standard suite of rights granted under applicable copyright law
includes additional rights not granted under this License, such
additional rights are deemed to be included in the License; this
License is not intended to restrict the license of any rights under
applicable law.
.
Creative Commons Notice
.
Creative Commons is not a party to this License, and makes no warranty
whatsoever in connection with the Work. Creative Commons will not be
liable to You or any party on any legal theory for any damages
whatsoever, including without limitation any general, special,
incidental or consequential damages arising in connection to this
license. Notwithstanding the foregoing two (2) sentences, if Creative
Commons has expressly identified itself as the Licensor hereunder, it
shall have all rights and obligations of Licensor.
.
Except for the limited purpose of indicating to the public that the
Work is licensed under the CCPL, Creative Commons does not authorize
the use by either party of the trademark "Creative Commons" or any
related trademark or logo of Creative Commons without the prior
written consent of Creative Commons. Any permitted use will be in
compliance with Creative Commons' then-current trademark usage
guidelines, as may be published on its website or otherwise made
available upon request from time to time. For the avoidance of doubt,
this trademark restriction does not form part of the License.
.
Creative Commons may be contacted at https://creativecommons.org/.
License: ClArtistic
The "Clarified Artistic License"
.
Preamble
.
The intent of this document is to state the conditions under which a
Package may be copied, such that the Copyright Holder maintains some
semblance of artistic control over the development of the package,
while giving the users of the package the right to use and distribute
the Package in a more-or-less customary fashion, plus the right to make
reasonable modifications.
.
Definitions:
.
"Package" refers to the collection of files distributed by the
Copyright Holder, and derivatives of that collection of files
created through textual modification.
.
"Standard Version" refers to such a Package if it has not been
modified, or has been modified in accordance with the wishes
of the Copyright Holder as specified below.
.
"Copyright Holder" is whoever is named in the copyright or
copyrights for the package.
.
"You" is you, if you're thinking about copying or distributing
this Package.
.
"Distribution fee" is a fee you charge for providing a copy of this
Package to another party.
.
"Freely Available" means that no fee is charged for the right to use
the item, though there may be fees involved in handling the item.
.
1. You may make and give away verbatim copies of the source form of the
Standard Version of this Package without restriction, provided that you
duplicate all of the original copyright notices and associated disclaimers.
.
2. You may apply bug fixes, portability fixes and other modifications
derived from the Public Domain, or those made Freely Available, or from
the Copyright Holder. A Package modified in such a way shall still be
considered the Standard Version.
.
3. You may otherwise modify your copy of this Package in any way, provided
that you insert a prominent notice in each changed file stating how and
when you changed that file, and provided that you do at least ONE of the
following:
.
a) place your modifications in the Public Domain or otherwise make them
Freely Available, such as by posting said modifications to Usenet or
an equivalent medium, or placing the modifications on a major archive
site allowing unrestricted access to them, or by allowing the Copyright
Holder to include your modifications in the Standard Version of the
Package.
.
b) use the modified Package only within your corporation or organization.
.
c) rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided, and provide
a separate manual page for each non-standard executable that clearly
documents how it differs from the Standard Version.
.
d) make other distribution arrangements with the Copyright Holder.
.
e) permit and encourge anyone who receives a copy of the modified Package
permission to make your modifications Freely Available in some specific
way.
.
4. You may distribute the programs of this Package in object code or
executable form, provided that you do at least ONE of the following:
.
a) distribute a Standard Version of the executables and library files,
together with instructions (in the manual page or equivalent) on where
to get the Standard Version.
.
b) accompany the distribution with the machine-readable source of
the Package with your modifications.
.
c) give non-standard executables non-standard names, and clearly
document the differences in manual pages (or equivalent), together
with instructions on where to get the Standard Version.
.
d) make other distribution arrangements with the Copyright Holder.
.
e) offer the machine-readable source of the Package, with your
modifications, by mail order.
.
5. You may charge a distribution fee for any distribution of this Package.
If you offer support for this Package, you may charge any fee you choose
for that support. You may not charge a license fee for the right to use
this Package itself. You may distribute this Package in aggregate with
other (possibly commercial and possibly nonfree) programs as part of a
larger (possibly commercial and possibly nonfree) software distribution,
and charge license fees for other parts of that software distribution,
provided that you do not advertise this Package as a product of your own.
If the Package includes an interpreter, You may embed this Package's
interpreter within an executable of yours (by linking); this shall be
construed as a mere form of aggregation, provided that the complete
Standard Version of the interpreter is so embedded.
.
6. The scripts and library files supplied as input to or produced as
output from the programs of this Package do not automatically fall
under the copyright of this Package, but belong to whoever generated
them, and may be sold commercially, and may be aggregated with this
Package. If such scripts or library files are aggregated with this
Package via the so-called "undump" or "unexec" methods of producing a
binary executable image, then distribution of such an image shall
neither be construed as a distribution of this Package nor shall it
fall under the restrictions of Paragraphs 3 and 4, provided that you do
not represent such an executable image as a Standard Version of this
Package.
.
7. C subroutines (or comparably compiled subroutines in other
languages) supplied by you and linked into this Package in order to
emulate subroutines and variables of the language defined by this
Package shall not be considered part of this Package, but are the
equivalent of input as in Paragraph 6, provided these subroutines do
not change the language in any way that would cause it to fail the
regression tests for the language.
.
8. Aggregation of the Standard Version of the Package with a commercial
distribution is always permitted provided that the use of this Package is
embedded; that is, when no overt attempt is made to make this Package's
interfaces visible to the end user of the commercial distribution.
Such use shall not be construed as a distribution of this Package.
.
9. The name of the Copyright Holder may not be used to endorse or promote
products derived from this software without specific prior written permission.
.
10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
License: EPL-1.0
Eclipse Public License - v 1.0
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
.
1. DEFINITIONS
.
"Contribution" means:
.
a) in the case of the initial Contributor, the initial code and documentation
distributed under this Agreement, and
.
b) in the case of each subsequent Contributor:
.
i) changes to the Program, and
.
ii) additions to the Program;
.
where such changes and/or additions to the Program originate from and are
distributed by that particular Contributor. A Contribution 'originates' from
a Contributor if it was added to the Program by such Contributor itself or
anyone acting on such Contributor's behalf. Contributions do not include
additions to the Program which: (i) are separate modules of software
distributed in conjunction with the Program under their own license
agreement, and (ii) are not derivative works of the Program.
.
"Contributor" means any person or entity that distributes the Program.
.
"Licensed Patents" mean patent claims licensable by a Contributor which are
necessarily infringed by the use or sale of its Contribution alone or when
combined with the Program.
.
"Program" means the Contributions distributed in accordance with this
Agreement.
.
"Recipient" means anyone who receives the Program under this Agreement,
including all Contributors.
.
2. GRANT OF RIGHTS
.
a) Subject to the terms of this Agreement, each Contributor hereby grants
Recipient a non-exclusive, worldwide, royalty-free copyright license to
reproduce, prepare derivative works of, publicly display, publicly perform,
distribute and sublicense the Contribution of such Contributor, if any, and
such derivative works, in source code and object code form.
.
b) Subject to the terms of this Agreement, each Contributor hereby grants
Recipient a non-exclusive, worldwide, royalty-free patent license under
Licensed Patents to make, use, sell, offer to sell, import and otherwise
transfer the Contribution of such Contributor, if any, in source code and
object code form. This patent license shall apply to the combination of the
Contribution and the Program if, at the time the Contribution is added by the
Contributor, such addition of the Contribution causes such combination to be
covered by the Licensed Patents. The patent license shall not apply to any
other combinations which include the Contribution. No hardware per se is
licensed hereunder.
.
c) Recipient understands that although each Contributor grants the licenses
to its Contributions set forth herein, no assurances are provided by any
Contributor that the Program does not infringe the patent or other
intellectual property rights of any other entity. Each Contributor disclaims
any liability to Recipient for claims brought by any other entity based on
infringement of intellectual property rights or otherwise. As a condition to
exercising the rights and licenses granted hereunder, each Recipient hereby
assumes sole responsibility to secure any other intellectual property rights
needed, if any. For example, if a third party patent license is required to
allow Recipient to distribute the Program, it is Recipient's responsibility
to acquire that license before distributing the Program.
.
d) Each Contributor represents that to its knowledge it has sufficient
copyright rights in its Contribution, if any, to grant the copyright license
set forth in this Agreement.
.
3. REQUIREMENTS
.
A Contributor may choose to distribute the Program in object code form under
its own license agreement, provided that:
.
a) it complies with the terms and conditions of this Agreement; and
.
b) its license agreement:
.
i) effectively disclaims on behalf of all Contributors all warranties and
conditions, express and implied, including warranties or conditions of title
and non-infringement, and implied warranties or conditions of merchantability
and fitness for a particular purpose;
.
ii) effectively excludes on behalf of all Contributors all liability for
damages, including direct, indirect, special, incidental and consequential
damages, such as lost profits;
.
iii) states that any provisions which differ from this Agreement are offered
by that Contributor alone and not by any other party; and
.
iv) states that source code for the Program is available from such
Contributor, and informs licensees how to obtain it in a reasonable manner on
or through a medium customarily used for software exchange.
.
When the Program is made available in source code form:
.
a) it must be made available under this Agreement; and
.
b) a copy of this Agreement must be included with each copy of the Program.
.
Contributors may not remove or alter any copyright notices contained within
the Program.
.
Each Contributor must identify itself as the originator of its Contribution,
if any, in a manner that reasonably allows subsequent Recipients to identify
the originator of the Contribution.
.
4. COMMERCIAL DISTRIBUTION
.
Commercial distributors of software may accept certain responsibilities with
respect to end users, business partners and the like. While this license is
intended to facilitate the commercial use of the Program, the Contributor who
includes the Program in a commercial product offering should do so in a
manner which does not create potential liability for other Contributors.
Therefore, if a Contributor includes the Program in a commercial product
offering, such Contributor ("Commercial Contributor") hereby agrees to defend
and indemnify every other Contributor ("Indemnified Contributor") against any
losses, damages and costs (collectively "Losses") arising from claims,
lawsuits and other legal actions brought by a third party against the
Indemnified Contributor to the extent caused by the acts or omissions of such
Commercial Contributor in connection with its distribution of the Program in
a commercial product offering. The obligations in this section do not apply
to any claims or Losses relating to any actual or alleged intellectual
property infringement. In order to qualify, an Indemnified Contributor must:
a) promptly notify the Commercial Contributor in writing of such claim, and
b) allow the Commercial Contributor to control, and cooperate with the
Commercial Contributor in, the defense and any related settlement
negotiations. The Indemnified Contributor may participate in any such claim
at its own expense.
.
For example, a Contributor might include the Program in a commercial product
offering, Product X. That Contributor is then a Commercial Contributor. If
that Commercial Contributor then makes performance claims, or offers
warranties related to Product X, those performance claims and warranties are
such Commercial Contributor's responsibility alone. Under this section, the
Commercial Contributor would have to defend claims against the other
Contributors related to those performance claims and warranties, and if a
court requires any other Contributor to pay any damages as a result, the
Commercial Contributor must pay those damages.
.
5. NO WARRANTY
.
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON
AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER
EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR
CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A
PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the
appropriateness of using and distributing the Program and assumes all risks
associated with its exercise of rights under this Agreement , including but
not limited to the risks and costs of program errors, compliance with
applicable laws, damage to or loss of data, programs or equipment, and
unavailability or interruption of operations.
.
6. DISCLAIMER OF LIABILITY
.
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
OF SUCH DAMAGES.
.
7. GENERAL
.
If any provision of this Agreement is invalid or unenforceable under
applicable law, it shall not affect the validity or enforceability of the
remainder of the terms of this Agreement, and without further action by the
parties hereto, such provision shall be reformed to the minimum extent
necessary to make such provision valid and enforceable.
.
If Recipient institutes patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Program itself
(excluding combinations of the Program with other software or hardware)
infringes such Recipient's patent(s), then such Recipient's rights granted
under Section 2(b) shall terminate as of the date such litigation is filed.
.
All Recipient's rights under this Agreement shall terminate if it fails to
comply with any of the material terms or conditions of this Agreement and
does not cure such failure in a reasonable period of time after becoming
aware of such noncompliance. If all Recipient's rights under this Agreement
terminate, Recipient agrees to cease use and distribution of the Program as
soon as reasonably practicable. However, Recipient's obligations under this
Agreement and any licenses granted by Recipient relating to the Program shall
continue and survive.
.
Everyone is permitted to copy and distribute copies of this Agreement, but in
order to avoid inconsistency the Agreement is copyrighted and may only be
modified in the following manner. The Agreement Steward reserves the right to
publish new versions (including revisions) of this Agreement from time to
time. No one other than the Agreement Steward has the right to modify this
Agreement. The Eclipse Foundation is the initial Agreement Steward. The
Eclipse Foundation may assign the responsibility to serve as the Agreement
Steward to a suitable separate entity. Each new version of the Agreement will
be given a distinguishing version number. The Program (including
Contributions) may always be distributed subject to the version of the
Agreement under which it was received. In addition, after a new version of
the Agreement is published, Contributor may elect to distribute the Program
(including its Contributions) under the new version. Except as expressly
stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
licenses to the intellectual property of any Contributor under this
Agreement, whether expressly, by implication, estoppel or otherwise. All
rights in the Program not expressly granted under this Agreement are reserved.
.
This Agreement is governed by the laws of the State of New York and the
intellectual property laws of the United States of America. No party to this
Agreement will bring a legal action under this Agreement more than one year
after the cause of action arose. Each party waives its rights to a jury trial
in any resulting litigation.
License: FTL
The FreeType Project LICENSE
----------------------------
.
2000-Feb-08
.
Copyright 1996-2000 by
David Turner, Robert Wilhelm, and Werner Lemberg
.
.
.
Introduction
============
.
The FreeType Project is distributed in several archive packages;
some of them may contain, in addition to the FreeType font engine,
various tools and contributions which rely on, or relate to, the
FreeType Project.
.
This license applies to all files found in such packages, and
which do not fall under their own explicit license. The license
affects thus the FreeType font engine, the test programs,
documentation and makefiles, at the very least.
.
This license was inspired by the BSD, Artistic, and IJG
(Independent JPEG Group) licenses, which all encourage inclusion
and use of free software in commercial and freeware products
alike. As a consequence, its main points are that:
.
o We don't promise that this software works. However, we will be
interested in any kind of bug reports. (`as is' distribution)
.
o You can use this software for whatever you want, in parts or
full form, without having to pay us. (`royalty-free' usage)
.
o You may not pretend that you wrote this software. If you use
it, or only parts of it, in a program, you must acknowledge
somewhere in your documentation that you have used the
FreeType code. (`credits')
.
We specifically permit and encourage the inclusion of this
software, with or without modifications, in commercial products.
We disclaim all warranties covering The FreeType Project and
assume no liability related to The FreeType Project.
.
.
Legal Terms
===========
.
0. Definitions
--------------
.
Throughout this license, the terms `package', `FreeType Project',
and `FreeType archive' refer to the set of files originally
distributed by the authors (David Turner, Robert Wilhelm, and
Werner Lemberg) as the `FreeType Project', be they named as alpha,
beta or final release.
.
`You' refers to the licensee, or person using the project, where
`using' is a generic term including compiling the project's source
code as well as linking it to form a `program' or `executable'.
This program is referred to as `a program using the FreeType
engine'.
.
This license applies to all files distributed in the original
FreeType Project, including all source code, binaries and
documentation, unless otherwise stated in the file in its
original, unmodified form as distributed in the original archive.
If you are unsure whether or not a particular file is covered by
this license, you must contact us to verify this.
.
The FreeType Project is copyright (C) 1996-2000 by David Turner,
Robert Wilhelm, and Werner Lemberg. All rights reserved except as
specified below.
.
1. No Warranty
--------------
.
THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO
USE, OF THE FREETYPE PROJECT.
.
2. Redistribution
-----------------
.
This license grants a worldwide, royalty-free, perpetual and
irrevocable right and license to use, execute, perform, compile,
display, copy, create derivative works of, distribute and
sublicense the FreeType Project (in both source and object code
forms) and derivative works thereof for any purpose; and to
authorize others to exercise some or all of the rights granted
herein, subject to the following conditions:
.
o Redistribution of source code must retain this license file
(`LICENSE.TXT') unaltered; any additions, deletions or changes
to the original files must be clearly indicated in
accompanying documentation. The copyright notices of the
unaltered, original files must be preserved in all copies of
source files.
.
o Redistribution in binary form must provide a disclaimer that
states that the software is based in part of the work of the
FreeType Team, in the distribution documentation. We also
encourage you to put an URL to the FreeType web page in your
documentation, though this isn't mandatory.
.
These conditions apply to any software derived from or based on
the FreeType Project, not just the unmodified files. If you use
our work, you must acknowledge us. However, no fee need be paid
to us.
.
3. Advertising
--------------
.
Neither the FreeType authors and contributors nor you shall use
the name of the other for commercial, advertising, or promotional
purposes without specific prior written permission.
.
We suggest, but do not require, that you use one or more of the
following phrases to refer to this software in your documentation
or advertising materials: `FreeType Project', `FreeType Engine',
`FreeType library', or `FreeType Distribution'.
.
As you have not signed this license, you are not required to
accept it. However, as the FreeType Project is copyrighted
material, only this license, or another one contracted with the
authors, grants you the right to use, distribute, and modify it.
Therefore, by using, distributing, or modifying the FreeType
Project, you indicate that you understand and accept all the terms
of this license.
.
4. Contacts
-----------
.
There are two mailing lists related to FreeType:
.
o freetype@freetype.org
.
Discusses general use and applications of FreeType, as well as
future and wanted additions to the library and distribution.
If you are looking for support, start in this list if you
haven't found anything to help you in the documentation.
.
o devel@freetype.org
.
Discusses bugs, as well as engine internals, design issues,
specific licenses, porting, etc.
.
o http://www.freetype.org
.
Holds the current FreeType web page, which will allow you to
download our latest development version and read online
documentation.
.
You can also contact us individually at:
.
David Turner <david.turner@freetype.org>
Robert Wilhelm <robert.wilhelm@freetype.org>
Werner Lemberg <werner.lemberg@freetype.org>
License: GFDL-NIV-1.3
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
.
On Debian systems, the complete text of the GNU Free Documentation
License version 1.3 can be found in /usr/share/common-licenses/GFDL-1.3.
License: GPL-2
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
On Debian systems, the complete text of the GNU General Public
License version 2 can be found in /usr/share/common-licenses/GPL-2.
License: GPL-3
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3 as
published by the Free Software Foundation.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
On Debian systems, the complete text of the GNU General Public License
version 3 can be found in /usr/share/common-licenses/GPL-3.
License: GPL-3 with Qt-1.0 exception
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3 as
published by the Free Software Foundation.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
On Debian systems, the complete text of the GNU General Public License
version 3 can be found in /usr/share/common-licenses/GPL-3.
.
The Qt Company GPL Exception 1.0
Exception 1:
.
As a special exception you may create a larger work which contains the
output of this application and distribute that work under terms of your
choice, so long as the work is not otherwise derived from or based on
this application and so long as the work does not in itself generate
output that contains the output from this application in its original
or modified form.
.
Exception 2:
.
As a special exception, you have permission to combine this application
with Plugins licensed under the terms of your choice, to produce an
executable, and to copy and distribute the resulting executable under
the terms of your choice. However, the executable must be accompanied
by a prominent notice offering all users of the executable the entire
source code to this application, excluding the source code of the
independent modules, but including any changes you have made to this
application, under the terms of this license.
License: IJG
LICENSE extracted from IJG's jpeg distribution:
-----------------------------------------------
.
In plain English:
.
1. We don't promise that this software works. (But if you find any bugs,
please let us know!)
2. You can use this software for whatever you want. You don't have to pay us.
3. You may not pretend that you wrote this software. If you use it in a
program, you must acknowledge somewhere in your documentation that
you've used the IJG code.
.
In legalese:
.
The authors make NO WARRANTY or representation, either express or implied,
with respect to this software, its quality, accuracy, merchantability, or
fitness for a particular purpose. This software is provided "AS IS", and you,
its user, assume the entire risk as to its quality and accuracy.
.
This software is copyright (C) 1991-1998, Thomas G. Lane.
All Rights Reserved except as specified below.
.
Permission is hereby granted to use, copy, modify, and distribute this
software (or portions thereof) for any purpose, without fee, subject to these
conditions:
(1) If any part of the source code for this software is distributed, then this
README file must be included, with this copyright and no-warranty notice
unaltered; and any additions, deletions, or changes to the original files
must be clearly indicated in accompanying documentation.
(2) If only executable code is distributed, then the accompanying
documentation must state that "this software is based in part on the work of
the Independent JPEG Group".
(3) Permission for use of this software is granted only if the user accepts
full responsibility for any undesirable consequences; the authors accept
NO LIABILITY for damages of any kind.
.
These conditions apply to any software derived from or based on the IJG code,
not just to the unmodified library. If you use our work, you ought to
acknowledge us.
.
Permission is NOT granted for the use of any IJG author's name or company name
in advertising or publicity relating to this software or products derived from
it. This software may be referred to only as "the Independent JPEG Group's
software".
.
We specifically permit and encourage the use of this software as the basis of
commercial products, provided that all warranty or liability claims are
assumed by the product vendor.
License: ISC
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
License: LGPL-2
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License version 2
as published by the Free Software Foundation.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Library General Public License for more details.
.
On Debian systems, the complete text of the GNU Library General Public
License version 2 can be found in /usr/share/common-licenses/LGPL-2.
License: LGPL-2.1
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 2.1
as published by the Free Software Foundation.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
.
On Debian systems, the complete text of the GNU Lesser General Public
License version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1.
License: LGPL-3
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 3
as published by the Free Software Foundation.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
.
On Debian systems, the complete text of the GNU Lesser General Public
License version 3 can be found in /usr/share/common-licenses/LGPL-3.
License: libpng-2.0
The software is supplied "as is", without warranty of any kind,
express or implied, including, without limitation, the warranties
of merchantability, fitness for a particular purpose, title, and
non-infringement. In no event shall the Copyright owners, or
anyone distributing the software, be liable for any damages or
other liability, whether in contract, tort or otherwise, arising
from, out of, or in connection with the software, or the use or
other dealings in the software, even if advised of the possibility
of such damage.
.
Permission is hereby granted to use, copy, modify, and distribute
this software, or portions hereof, for any purpose, without fee,
subject to the following restrictions:
.
1. The origin of this software must not be misrepresented; you
must not claim that you wrote the original software. If you
use this software in a product, an acknowledgment in the product
documentation would be appreciated, but is not required.
.
2. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
.
3. This Copyright notice may not be removed or altered from any
source or altered source distribution.
License: MIT
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License: MIT/X11
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation, and that the name of the author(s) not be used in
advertising or publicity pertaining to distribution of the software without
specific, written prior permission. The authors make no
representations about the suitability of this software for any purpose. It
is provided "as is" without express or implied warranty.
.
THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
License: MPL-1.1
The contents of this file are subject to the Mozilla Public License Version
1.1 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
.
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
.
On Debian systems, the complete text of Mozilla Public License 1.1 can
be found in /usr/share/common-licenses/MPL-1.1.
License: MPL-2.0
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
.
On Debian systems, the complete text of Mozilla Public License 2.0 can
be found in /usr/share/common-licenses/MPL-2.0.
License: MS-PL
Microsoft Public License (MS-PL)
.
This license governs use of the accompanying software. If you use the software, you
accept this license. If you do not accept the license, do not use the software.
.
1. Definitions
The terms "reproduce," "reproduction," "derivative works," and "distribution" have the
same meaning here as under U.S. copyright law.
A "contribution" is the original software, or any additions or changes to the software.
A "contributor" is any person that distributes its contribution under this license.
"Licensed patents" are a contributor's patent claims that read directly on its contribution.
.
2. Grant of Rights
(A) Copyright Grant- Subject to the terms of this license, including the
license conditions and limitations in section 3, each contributor grants you
a non-exclusive, worldwide, royalty-free copyright license to reproduce its
contribution, prepare derivative works of its contribution, and distribute
its contribution or any derivative works that you create.
(B) Patent Grant- Subject to the terms of this license, including the license
conditions and limitations in section 3, each contributor grants you a
non-exclusive, worldwide, royalty-free license under its licensed patents to
make, have made, use, sell, offer for sale, import, and/or otherwise dispose
of its contribution in the software or derivative works of the contribution
in the software.
.
3. Conditions and Limitations
(A) No Trademark License- This license does not grant you rights to use any
contributors' name, logo, or trademarks.
(B) If you bring a patent claim against any contributor over patents that you
claim are infringed by the software, your patent license from such
contributor to the software ends automatically.
(C) If you distribute any portion of the software, you must retain all
copyright, patent, trademark, and attribution notices that are present in the
software.
(D) If you distribute any portion of the software in source code form, you
may do so only under this license by including a complete copy of this
license with your distribution. If you distribute any portion of the software
in compiled or object code form, you may only do so under a license that
complies with this license.
(E) The software is licensed "as-is." You bear the risk of using it. The
contributors give no express warranties, guarantees or conditions. You may
have additional consumer rights under your local laws which this license
cannot change. To the extent permitted under your local laws, the
contributors exclude the implied warranties of merchantability, fitness for a
particular purpose and non-infringement.
License: NCSA
University of Illinois/NCSA Open Source License
.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal with
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
.
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimers.
.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimers in the
documentation and/or other materials provided with the distribution.
.
* Neither the names of the LLVM Team, University of Illinois at
Urbana-Champaign, nor the names of its contributors may be used to
endorse or promote products derived from this Software without specific
prior written permission.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
SOFTWARE.
License: OFL-1.1
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
.
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font
creation efforts of academic and linguistic communities, and to
provide a free and open framework in which fonts may be shared and
improved in partnership with others.
.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply to
any document created using the fonts or their derivatives.
.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
.
"Original Version" refers to the collection of Font Software
components as distributed by the Copyright Holder(s).
.
"Modified Version" refers to any derivative made by adding to,
deleting, or substituting -- in part or in whole -- any of the
components of the Original Version, by changing formats or by porting
the Font Software to a new environment.
.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed,
modify, redistribute, and sell modified and unmodified copies of the
Font Software, subject to the following conditions:
.
1) Neither the Font Software nor any of its individual components, in
Original or Modified Versions, may be sold by itself.
.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the
corresponding Copyright Holder. This restriction only applies to the
primary font name as presented to the users.
.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created using
the Font Software.
.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
License: OpenSSL
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
.
3. All advertising materials mentioning features or use of this
software must display the following acknowledgment:
"This product includes software developed by the OpenSSL Project
for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
.
4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
endorse or promote products derived from this software without
prior written permission. For written permission, please contact
openssl-core@openssl.org.
.
5. Products derived from this software may not be called "OpenSSL"
nor may "OpenSSL" appear in their names without prior written
permission of the OpenSSL Project.
.
6. Redistributions of any form whatsoever must retain the following
acknowledgment:
"This product includes software developed by the OpenSSL Project
for use in the OpenSSL Toolkit (http://www.openssl.org/)"
.
THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
License: public-domain
The file are hereby placed in the public domain.
The author hereby disclaims copyright to this source code.
License: SGI-B-2.0
SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
.
The above copyright notice including the dates of first publication and either
this permission notice or a reference to http://oss.sgi.com/projects/FreeB/
shall be included in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON
GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
.
Except as contained in this notice, the name of Silicon Graphics, Inc. shall
not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from Silicon
Graphics, Inc.
License: SSLeay
This package is an SSL implementation written
by Eric Young (eay@cryptsoft.com).
The implementation was written so as to conform with Netscapes SSL.
.
This library is free for commercial and non-commercial use as long as
the following conditions are ahered to. The following conditions
apply to all code found in this distribution, be it the RC4, RSA,
lhash, DES, etc., code; not just the SSL code. The SSL documentation
included with this distribution is covered by the same copyright terms
except that the holder is Tim Hudson (tjh@cryptsoft.com).
.
Copyright remains Eric Young's, and as such any Copyright notices in
the code are not to be removed.
If this package is used in a product, Eric Young should be given attribution
as the author of the parts of the library used.
This can be in the form of a textual message at program startup or
in documentation (online or textual) provided with the package.
.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. All advertising materials mentioning features or use of this software
must display the following acknowledgement:
"This product includes cryptographic software written by
Eric Young (eay@cryptsoft.com)"
The word 'cryptographic' can be left out if the routines from the library
being used are not cryptographic related :-).
4. If you include any Windows specific code (or a derivative thereof) from
the apps directory (application code) you must include an acknowledgement:
"This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
.
THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
.
The licence and distribution terms for any publically available version or
derivative of this code cannot be changed. i.e. this code cannot simply be
copied and put under another distribution licence
[including the GNU General Public Licence.]
License: Unicode
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Unicode data files and any associated documentation
(the "Data Files") or Unicode software and any associated documentation
(the "Software") to deal in the Data Files or Software
without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, and/or sell copies of
the Data Files or Software, and to permit persons to whom the Data Files
or Software are furnished to do so, provided that either
(a) this copyright and permission notice appear with all copies
of the Data Files or Software, or
(b) this copyright and permission notice appear in associated
Documentation.
.
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT OF THIRD PARTY RIGHTS.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THE DATA FILES OR SOFTWARE.
.
Except as contained in this notice, the name of a copyright holder
shall not be used in advertising or otherwise to promote the sale,
use or other dealings in these Data Files or Software without prior
written authorization of the copyright holder.
License: Zlib
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
.
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
|