summaryrefslogtreecommitdiffstats
path: root/conf.d/project/lua.d/doscript-helloworld.lua
blob: b70ba8d5d5523b7f9c50dfabbaac2f6afc131545 (plain)
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
--[[
  Copyright (C) 2016 "IoT.bzh"
  Author Fulup Ar Foll <fulup@iot.bzh>
 
  Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
 
  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.
  
 
  Simple API script to be use with AGL control LuaDoCall API
   - After the script is loaded by lua_docall
   - Controller start function=xxxx where xxxx is taken from script filename doscript-xxxx-anything 

--]]

function helloworld (request, query) 

    AFB:notice ("LUA HelloWorld: simple test  query=%s", query);

    if (query == nil) then
       AFB:error ("LUA HelloWorld:FX query should not be empty");
       AFB:fail  (request, "LUA HelloWorld: query should not be empty");
    else
       AFB:error  ("LUA HelloWorld:OK query=%s", query);
       AFB:sucess (request, {arg0="Demat", arg1="Bonjours", arg2="Gootentag", arg3="Morning"});
    end

end
395' href='#n395'>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
<html>

<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=Generator content="Microsoft Word 15 (filtered)">
<style>
<!--
 /* Font Definitions */
 @font-face
	{font-family:"Cambria Math";
	panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
	{font-family:Calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
	{font-family:Consolas;
	panose-1:2 11 6 9 2 2 4 3 2 4;}
@font-face
	{font-family:Tahoma;
	panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:8.0pt;
	margin-left:0in;
	line-height:107%;
	font-size:11.0pt;
	font-family:"Calibri",sans-serif;}
p.MsoPlainText, li.MsoPlainText, div.MsoPlainText
	{mso-style-link:"Plain Text Char";
	margin:0in;
	font-size:10.5pt;
	font-family:Consolas;}
span.PlainTextChar
	{mso-style-name:"Plain Text Char";
	mso-style-link:"Plain Text";
	font-family:Consolas;}
.MsoChpDefault
	{font-family:"Calibri",sans-serif;}
.MsoPapDefault
	{margin-bottom:8.0pt;
	line-height:107%;}
@page WordSection1
	{size:8.5in 11.0in;
	margin:1.0in 75.1pt 1.0in 75.05pt;}
div.WordSection1
	{page:WordSection1;}
-->
</style>

</head>

<body lang=EN-US style='word-wrap:break-word'>

<div class=WordSection1>

<p class=MsoPlainText><span style='font-size:10.0pt;font-family:"Arial",sans-serif'>
<p align="center"><b>Licensing Information for Intel(R) Software Development Tools</b></p>
<br>
The following list of Intel(R) Software Development Tools and associated licenses 
is for reference only. The controlling license for your Intel(R) Software 
Development Tools will be bundled with the distribution of the tool.<br>
<br>
Additionally, third party software, even if included with the distribution of 
the Intel(R) Software Development Tools, may be governed by separate license 
terms, including without limitation, third party license terms, open source 
software notices and terms, and/or other Intel software license terms. These 
separate license terms solely govern your use of the third party software. 
Additional information on third party software can be found in the Section 
entitled 'Toolkits for oneAPI and Associated Third Party Program Files.'<br>
<br>
<br>
<p><b>Intel(R) Software Development Tools Licensed under the Intel End User License 
Agreement for Developer Tools (Version April 2023)</b></p>
<ul>
<li>Intel(R) Advisor</li>
<li>Intel(R) DPC++ Compatibility Tool</li>
<li>Intel(R) Fortran Compiler</li>
<li>Intel(R) Inspector</li>
<li>Intel(R) oneAPI DPC++/C++ Compiler</li>
<li>Intel(R) Software Installer</li>
<li>Intel(R) Trace Analyzer and Collector</li>
<li>Intel(R) VTune(TM) Profiler</li>
</ul>
<p><b>Intel(R) Software Development Tools Licensed under the Intel Simplified Software 
License (Version October 2022)</b></p>
<ul>
 <li>Intel(R) Distribution for Python*</li>
 <li>Intel(R) Integrated Performance Primitives (Intel(R) IPP)</li>
 <li>Intel(R) Integrated Performance Primitives Cryptography (Intel(R) IPP Cryptography)</li>
 <li>Intel(R) oneAPI Math Kernel Library (oneMKL)</li>
 <li>Intel(R) MPI Library</li>
 <li>Intel(R) oneAPI Collective Communications Library (oneCCL) (also available under Apache 2.0)</li>
 <li>Intel(R) oneAPI Data Analytics Library (oneDAL) (also available under Apache 2.0)</li>
 <li>Intel(R) oneAPI Threading Building Blocks (oneTBB) (also available under Apache 2.0)</li>
</ul>
<p><b>Intel(R) Software Development Tools Licensed under Open Source Licenses Apache 
License, Version 2.0</b></p>
<ul>
 <li>Intel(R) Distribution of Modin*</li>
 <li>Intel(R) Embree</li>
 <li>Intel(R) Neural Compressor</li>
 <li>Intel(R) oneAPI Collective Communications Library (oneCCL)</li>
 <li>Intel(R) oneAPI Data Analytics Library (oneDAL)</li>
 <li>Intel(R) oneAPI Deep Neural Network Library (oneDNN)</li>
 <li>Intel(R) oneAPI Threading Building Blocks (oneTBB)</li>
 <li>Intel(R) Open Image Denoise</li>
 <li>Intel(R) Open Path Guiding Library (Intel(R) Open PGL)</li>
 <li>Intel(R) Open Volume Kernel Library (Intel(R) Open VKL)</li>
 <li>Intel(R) Optimization for TensorFlow*</li>
 <li>Intel(R) OSPRay</li>
 <li>Intel(R) OSPRay Studio</li>
 <li>Rendering Toolkit Utilities</li>
</ul>
<p><b>Apache License, Version 2.0 with LLVM Exception</b></p>
<ul>
 <li>Intel(R) oneAPI DPC++ Library (oneDPL)</li>
 <li>Intel(R) oneAPI DPC++/C++ Compiler</li>
</ul>
<p><b>3-Clause BSD</b></p>
<ul>
 <li>Diagnostics Utility for oneAPI</li>
 <li>Intel(R) Implicit SPMD Program Compiler (Intel(R) ISPC)</li>
 <li>Intel(R) Optimization for PyTorch*</li>
</ul>
<p><b>Eclipse Public License - v 2.0</b></p>
<ul>
 <li>Intel(R) Dev Utilities</li>
</ul>
<p><b>The GNU General Public License v3.0</b></p>
<ul>
 <li>Intel(R) Distribution for GDB*</li>
</ul>
<br>
<br>
<p align="center"><b>License Text Files (subject to change)</p></b>
<p><b><u>Intel End User License Agreement for Developer Tools (Version April 2023)</u></b></p>
<b>IMPORTANT NOTICE - PLEASE READ AND AGREE BEFORE DOWNLOADING, INSTALLING, COPYING 
OR USING</b><br>
<br>
This Agreement is between you, or the company or other legal entity that you represent and warrant
you have the legal authority to bind, (each, <b>&quot;You&quot;</b> or <b>&quot;Your&quot;</b>) and Intel Corporation and its subsidiaries
(collectively, <b>&quot;Intel&quot;</b>) regarding Your use of the Materials. By downloading, installing, copying or using
the Materials, You agree to be bound by the terms of this Agreement. If You do not agree to the terms of
this Agreement, or do not have legal authority or required age to agree to them, do not download, install,
copy or use the Materials.<br>
<br>
1. <b>LICENSE DEFINITIONS.</b><br>
<br>
A. <b>&quot;Cloud Provider&quot;</b> means a third party service provider offering a cloud-based platform,
infrastructure, application or storage services, such as Microsoft Azure, Google Cloud or Amazon
Web Services, which You may only utilize to host the Materials subject to the restrictions set forth
in Section 2.3 B.<br>
<br>
B. <b>&quot;Derivative Work&quot;</b> means a derivative work, as defined in 17 U.S.C. � 101, of the Source Code.<br>
<br>
C. <b>&quot;Executable Code&quot;</b> means computer programming code in binary form suitable for machine
execution by a processor without the intervening steps of interpretation or compilation.<br>
<br>
D. <b>&quot;Materials&quot;</b> mean the software, documentation, the software product serial number or product
keys, and other collateral, including any updates, made available to You by Intel under this
Agreement. Materials include Redistributables, Executable Code, Source Code, Sample Source
Code, and Pre-Release Materials, but do not include Third Party Software.<br>
<br>
E. <b>&quot;Pre-Release Materials&quot;</b> mean the Materials, or portions of the Materials, that are identified (in
the product release notes, on Intel�s download website for the Materials or elsewhere) or labeled
as pre-release, prototype, alpha or beta code and, as such, are deemed to be pre-release code (i)
which may not be fully functional or tested and may contain bugs or errors; (ii) which Intel may
substantially modify in its development of a production version; or (iii) for which Intel makes no
assurances that it will ever develop or make a production version generally available. Pre-Release
Materials are subject to the terms of Section 3.2 and not Section 2.1.<br>
<br>
F. <b>&quot;Reciprocal Open Source Software&quot;</b> means any software that is subject to a license which requires
that (i) it must be distributed in source code form; (ii) it must be licensed under the same open
source license terms; and (iii) its derivative works must be licensed under the same open source
license terms. Examples of this type of license are the GNU General Public License or the Mozilla
Public License.<br>
<br>
G. <b>&quot;Redistributables&quot;</b> mean the files (if any) listed in the
&quot;redist.txt,&quot; &quot;redist-rt.txt&quot; or similarly-named text files that may be included in the 
Materials. Redistributables include Sample Source Code.<br>
<br>
H. <b>&quot;Sample Source Code&quot;</b> means those portions of the Materials that are Source Code and are
identified as sample code. Sample Source Code may not have been tested or validated by Intel
and is provided purely as a programming example.<br>
<br>
I. <b>&quot;Source Code&quot;</b> means the software portion of the Materials provided in human readable format.<br>
<br>
J. <b>&quot;Third Party Software&quot;</b> mean the files (if any) listed in the &quot;third-party-software.txt&quot; or other
similarly-named text file that may be included in the Materials for the applicable software. Third
Party Software is subject to the terms of Section 2.2.<br>
<br>
K. <b>&quot;Your Product&quot;</b> means one or more applications, products or projects developed by or for You
using the Materials.<br>
<br>
2. <b>LICENSE GRANTS.</b><br>
<br>
2.1 <b><u>License to the Materials.</u></b> Subject to the terms and conditions of this Agreement, Intel grants You a
non-exclusive, worldwide, non-assignable, non-sublicensable, limited right and license under its
copyrights, to:<br>
<br>
A. reproduce internally a reasonable number of copies of the Materials for Your personal or business
use;<br>
<br>
B. use the Materials solely for Your personal or business use to develop Your Product, in accordance
with the documentation included as part of the Materials; <br>
<br>
C. modify or create Derivative Works only of the Redistributables, or any portions, that are provided
to You in Source Code;<br>
<br>
D. distribute (directly and through Your distributors, resellers, and other channel partners, if
applicable), the Redistributables, including any modifications to or Derivative Works of the
Redistributables or any portions made pursuant to Section 2.1.C subject to the following
conditions:<br>
<br>
(1) Any distribution of the Redistributables must only be as part of Your Product which must add
significant primary functionality different than that of the Redistributables themselves;<br>
<br>
(2) You must only distribute the Redistributables originally provided to You by Intel only in
Executable Code subject to a license agreement that prohibits reverse engineering,
decompiling or disassembling the Redistributables;<br>
<br>
(3) This distribution right includes a limited right to sublicense only the Intel copyrights in the
Redistributables and only to the extent necessary to perform, display, and distribute the Redistributables (including Your modifications and Derivative Works of the Redistributables
provided in Source Code) solely as incorporated in Your Product; and<br>
<br>
(4) You: (i) will be solely responsible to Your customers for any update, support obligation or
other obligation or liability which may arise from the distribution of Your Product, (ii) will
not make any statement that Your Product is &quot;certified&quot; or that its performance is
guaranteed by Intel or its suppliers, (iii) will not use Intel's or its suppliers� names or
trademarks to market Your Product, (iv) will comply with any additional restrictions which
are included in the text files with the Redistributables and in Section 3 below, (v) will
indemnify, hold harmless, and defend Intel and its suppliers from and against any claims or
lawsuits, costs, damages, and expenses, including attorney's fees, that arise or result from
(a) Your modifications or Derivative Works of the Materials or (b) Your distribution of Your
Product.<br>
<br>
2.2 <b><u>Third Party Software.</u></b> Third Party Software, even if included with the distribution of the Materials,
may be governed by separate license terms, including without limitation, third party license terms,
open source software notices and terms, and/or other Intel software license terms. These separate
license terms solely govern Your use of the Third Party Software.<br>
<br>
2.3 <b><u>Third Party Use.</u></b><br>
<br>
A. If You are an entity, Your contractors may use the Materials under the license specified in Section
2, provided: (i) their use of the Materials is solely on behalf of and in support of Your business, (ii)
they agree to the terms and conditions of this Agreement, and (iii) You are solely responsible for
their use, misuse or disclosure of the Materials.<br>
<br>
B. You may utilize a Cloud Provider to host the Materials for You, provided: (i) the Cloud Provider
may only host the Materials for Your exclusive use and may not use the Materials for any other
purpose whatsoever, including the restriction set forth in Section 3.1(xi); (ii) the Cloud Provider�s
use of the Materials must be solely on behalf of and in support of Your Product, and (iii) You will
indemnify, hold harmless, and defend Intel and its suppliers from and against any claims or
lawsuits, costs, damages, and expenses, including attorney's fees, that arise or result from Your
Cloud Provider�s use, misuse or disclosure of the Materials.<br>
<br>
3. <b>LICENSE CONDITIONS.</b><br>
<br>
3.1 <b><u>Restrictions.</u></b> Except as expressly provided in this Agreement, You may NOT: (i) use, reproduce,
disclose, distribute, or publicly display the Materials; (ii) share, publish, rent or lease the Materials to
any third party; (iii) assign this Agreement or transfer the Materials; (iv) modify, adapt, alter, or
translate the Materials in whole or in part, including during execution; (v) reverse engineer,
decompile, or disassemble the Materials, or otherwise attempt to derive the source code or operation
of the Materials; (vi) work around any technical limitations in the Materials; (vii) distribute, sublicense
or transfer any Source Code, modifications or Derivative Works of any Source Code to any third party;
(viii) remove, minimize, block or modify any notices of Intel or its suppliers in the Materials; (ix) include
the Redistributables in malicious, deceptive, or unlawful programs or products or use the Materials in
any way that is against the law; (x) modify, create a Derivative Work, link, or distribute the Materials
so that any part of it becomes Reciprocal Open Source Software; (xi) use the Materials directly or
indirectly for SaaS services or service bureau purposes (i.e., a service that allows use of or access to the Materials 
by a third party as part of that service, such as the salesforce.com service business model).<br>
<br>
3.2 <b><u>Pre-Release Materials.</u></b> If You receive Pre-Release Materials, You may reproduce a reasonable number
of copies and use the Pre-Release Materials for evaluation and testing purposes only. You may not (i)
modify or incorporate the Pre-Release Materials into Your Product; (ii) continue to use the PreRelease Materials once a 
commercial version is released; or (iii) disclose to any third party any benchmarks, performance results, or other information 
relating to the Pre-Release Materials. Intel may waive these restrictions in writing at its sole discretion; however, if You decide
 to use the PreRelease Materials in Your Product (even with Intel�s waiver), You acknowledge and agree that You are fully responsible 
 for any and all issues that result from such use.<br>
<br>
3.3 <b><u>Safety-Critical, and Life-Saving Applications; Indemnity.</u></b> The Materials may provide information
relevant to safety-critical applications (<b>&quot;Safety-Critical Applications&quot;</b>) to allow compliance with
functional safety standards or requirements. <b>You acknowledge and agree that safety is Your
responsibility. To the extent You use the Materials to create, or as part of, products used in Safety-Critical Applications,
 it is Your responsibility to design, manage, and ensure that there are systemlevel safeguards to anticipate, monitor, and 
 control system failures, and You agree that You are solely responsible for all applicable regulatory standards and safety-related requirements
concerning Your use of the Materials in Safety Critical Applications.</b><br>
<br>
Should You use the Materials for Safety-Critical Applications or in any type of a system or application
in which the failure of the Materials could create a situation where personal injury or death may occur
(e.g., medical systems, life-sustaining or life-saving systems) (<b>&quot;Life-Saving Applications&quot;</b>), You agree
to indemnify, defend, and hold Intel and its representatives harmless against any claims or lawsuits,
costs, damages, and expenses, including reasonable attorney fees, arising in any way out of Your use
of the Materials in Safety-Critical Applications or Life-Saving Applications and claims of product
liability, personal injury or death associated with those applications; even if such claims allege that
Intel was negligent or strictly liable regarding the design or manufacture of the Materials or its failure
to warn regarding the Materials.<br>
<br>
3.4 <b><u>Media Format Codecs and Digital Rights Management.</u></b> You acknowledge and agree that Your use of
the Materials or distribution of the Redistributables with Your Product as permitted by this Agreement
may require You to procure license(s) from third parties that may hold intellectual property rights
applicable to any media decoding, encoding or transcoding technology (e.g., the use of an audio or
video codec) and/or digital rights management capabilities of the Materials, if any. Should any such
additional licenses be required, You are solely responsible for obtaining any such licenses and agree
to obtain any such licenses at Your own expense.<br>
<br>
4. <b>DATA COLLECTION AND PRIVACY.</b><br>
<br>
4.1 <b><u>Data Collection.</u></b> The Materials may collect anonymous data and/or optional data (which may include
other anonymous and/or non-anonymous data) about the Materials and/or Your development
environment and transmit that data to Intel; however, optional data will not be transmitted to Intel
without Your permission. All data collection by Intel is performed pursuant to relevant privacy laws,
including notice and consent requirements.<br>
<br>
4.2 <b><u>Intel�s Privacy Notice.</u></b> Intel is committed to respecting Your privacy. To learn more about Intel�s
privacy practices, please visit
<a href="http://www.intel.com/privacy">http://www.intel.com/privacy</a>.<br>
<br>
5. <b>OWNERSHIP.</b> Title to the Materials and all copies remain with Intel or its suppliers. The Materials are
protected by intellectual property rights, including without limitation, United States copyright laws
and international treaty provisions. You will not remove any copyright or other proprietary notices
from the Materials. Except as expressly provided herein, no license or right is granted to You directly
or by implication, inducement, estoppel or otherwise; specifically, Intel does not grant any express or
implied right to You under Intel patents, copyrights, trademarks, or trade secrets.<br>
<br>
6. <b>NO WARRANTY AND NO SUPPORT.</b><br>
<br>
6.1 <b><u>No Warranty.</u> Disclaimer. Intel disclaims all warranties of any kind and the 
terms and remedies provided in this Agreement are instead of any other 
warranty or condition, express, implied or statutory, including those 
regarding merchantability, fitness for any particular purpose, 
non-infringement or any warranty arising out of any course of dealing, usage 
of trade, proposal, specification or sample. Intel does not assume (and does 
not authorize any person to assume on its behalf) any liability.</b><br>
<br>
6.2 <b><u>No Support; Priority Support.</u></b> Intel may make changes to the Materials, or to items referenced
therein, at any time without notice, but is not obligated to support, update or provide training for the
Materials under the terms of this Agreement. Intel offers free community and paid priority support
options. More information on these support options can be found at:
<a href="https://software.intel.com/content/www/us/en/develop/support/priority-support.html">
https://software.intel.com/content/www/us/en/develop/support/priority-support.html</a>.<br>
<br>
7. <b>LIMITATION OF LIABILITY.</b><br>
<br>
7.1 <b>Intel will not be liable for any of the following losses or damages (whether such losses or damages
were foreseen, foreseeable, known or otherwise): (i) loss of revenue; (ii) loss of actual or
anticipated profits; (iii) loss of the use of money; (iv) loss of anticipated savings; (v) loss of business;
(vi) loss of opportunity; (vii) loss of goodwill; (viii) loss of use of the Materials; (ix) loss of reputation;
(x) loss of, damage to, or corruption of data; or (xi) any indirect, incidental, special or consequential
loss of damage however caused (including loss or damage of the type specified in this Section 7).</b><br>
<br>
7.2 <b>Intel�s total cumulative liability to You, including for direct damages for claims relating to this
Agreement, and whether for breach of contract, negligence, or for any other reason, will not exceed
$100.</b><br>
<br>
7.3 <b>You acknowledge that the limitations of liability provided in this Section 7 are an essential part of
this Agreement. You agree that the limitations of liability provided in this Agreement with respect
to Intel will be conveyed to and made binding upon any customer of Yours that acquires the
Redistributables.</b><br>
<br>
8. <b>USER SUBMISSIONS.</b> Should you provide Intel with comments, modifications, corrections,
enhancements or other input (<b>&quot;Feedback&quot;</b>) related to the Materials, Intel will be free to use, disclose,
reproduce, license or otherwise distribute or exploit the Feedback in its sole discretion without any
obligations or restrictions of any kind, including without limitation, intellectual property rights or
licensing obligations. If You wish to provide Intel with information that You intend to be treated as 
confidential information, Intel requires that such confidential information be provided pursuant to a
non-disclosure agreement (<b>&quot;NDA&quot;</b>); please contact Your Intel representative to ensure the proper
NDA is in place.<br>
<br>
9. <b>NON-DISCLOSURE.</b> Information provided by Intel to You may include information marked as
confidential. You must treat such information as confidential under the terms of the applicable NDA
between Intel and You. If You have not entered into an NDA with Intel, You must not disclose,
distribute or make use of any information marked as confidential, except as expressly authorized in
writing by Intel. Intel retains all rights in and to its confidential information specifications, designs,
engineering details, discoveries, inventions, patents, copyrights, trademarks, trade secrets, and other
proprietary rights relating to the Materials. Any breach by You of the confidentiality obligations
provided for in this Section 9 will cause irreparable injury to Intel for which money damages may be
inadequate to compensate Intel for losses arising from such a breach. Intel may obtain equitable
relief, including injunctive relief, if You breach or threaten to breach Your confidentiality obligations.<br>
<br>
10. <b>TERM AND TERMINATION.</b> This Agreement becomes effective on the date You accept this Agreement
and will continue until terminated as provided for in this Agreement. This Agreement will terminate
immediately if You are in breach of any of its terms and conditions. The term for Pre-Release Materials
terminates immediately upon release of a commercial version or at any time upon notice from Intel.
Upon termination, You will promptly destroy the Materials and all copies. In the event of termination
of this Agreement, Your license to any Redistributables distributed by You in accordance with the
terms and conditions of this Agreement, prior to the effective date of such termination, will survive
any such termination of this Agreement. Sections 1, 2.1.D(4)(v), 2.2, 2.3.A(iii), 2.3.B(iii), 3.3, 5, 6, 7, 8,
9, 10 (with respect to these survival provisions in the last sentence), and 12 will survive expiration or
termination of this Agreement.<br>
<br>
11. <b>U.S. GOVERNMENT RESTRICTED RIGHTS.</b> The technical data and computer software covered by this
license is a &quot;Commercial Item,&quot; as such term is defined by the FAR 2.101 (48 C.F.R. 2.101) and is
&quot;commercial computer software&quot; and &quot;commercial computer software documentation&quot; as specified
under FAR 12.212 (48 C.F.R. 12.212) or DFARS 227.7202 (48 C.F.R. 227.7202), as applicable. This
commercial computer software and related documentation is provided to end users for use by and
on behalf of the U.S. Government with only those rights as are granted to all other end users pursuant
to the terms and conditions of this Agreement.<br>
<br>
12.<b> GENERAL PROVISIONS</b><br>
<br>
12.1 <b>ENTIRE AGREEMENT.</b> This Agreement contains the complete and exclusive agreement and
understanding between the parties concerning the subject matter of this Agreement, and
supersedes all prior and contemporaneous proposals, agreements, understanding, negotiations,
representations, warranties, conditions, and communications, oral or written, between the parties
relating to the same subject matter. Each party acknowledges and agrees that in entering into this
Agreement it has not relied on, and will not be entitled to rely on, any oral or written
representations, warranties, conditions, understanding, or communications between the parties
that are not expressly set forth in this Agreement. The express provisions of this Agreement control
over any course of performance, course of dealing, or usage of the trade inconsistent with any of
the provisions of this Agreement. The provisions of this Agreement will prevail notwithstanding any
different, conflicting, or additional provisions that may appear on any purchase order,
acknowledgement, invoice, or other writing issued by either party in connection with this 
Agreement. No modification or amendment to this Agreement will be effective unless in writing and
signed by authorized representatives of each party, and must specifically identify this Agreement
by its title and version (e.g., &quot;Intel End User License Agreement for Developer Tools (Version April
2023)&quot;). If You received a copy of this Agreement translated into another language, the English
language version of this Agreement will prevail in the event of any conflict between versions.<br>
<br>
12.2 <b>TRADE COMPLIANCE.</b> You must comply with all applicable laws and regulations of the U.S. and other
countries governing the export, re-export, import, transfer, distribution, use, and servicing
(&quot;<b>Export</b>&quot;) of the Materials and all related materials provided by Intel. In particular, but without
limitation, You must not, without first obtaining all authorizations required by all applicable laws
and regulations, Export Materials or any related materials (a) to any prohibited or restricted entity
or country; or (b) for the development, design, manufacture, or production of nuclear, missile,
chemical, or biological weapons, or for any other purpose prohibited by all applicable governments.
Upon Intel�s request, You will provide export classifications for all Materials and technical data. Intel
will not be obligated to perform any of its obligations under this Agreement if performance would
result in violation of any applicable trade or sanctions controls or restrictions. No failure or delay on
the part of Intel to exercise any right under this clause will operate as a waiver of this clause.<br>
<br>
12.3 <b>GOVERNING LAW, JURISDICTION, AND VENUE.</b> All disputes arising out of or related to this
Agreement, whether based on contract, tort, or any other legal or equitable theory, will in all
respects be governed by, and construed and interpreted under, the laws of the United States of
America and the State of Delaware, without reference to conflict of laws principles. The parties
agree that the United Nations Convention on Contracts for the International Sale of Goods (1980)
is specifically excluded from and will not apply to this Agreement. All disputes arising out of or
related to this Agreement, whether based on contract, tort, or any other legal or equitable theory,
will be subject to the exclusive jurisdiction of the courts of the State of Delaware or of the Federal
courts sitting in that State. Each party submits to the personal jurisdiction of those courts and waives
all objections to that jurisdiction and venue for those disputes.<br>
<br>
12.4 <b>SEVERABILITY.</b> The parties intend that if a court holds that any provision or part of this Agreement
is invalid or unenforceable under applicable law, the court will modify the provision to the minimum
extent necessary to make it valid and enforceable, or if it cannot be made valid and enforceable,
the parties intend that the court will sever and delete the provision or part from this Agreement.
Any change to or deletion of a provision or part of this Agreement under this Section will not affect
the validity or enforceability of the remainder of this Agreement, which will continue in full force
and effect.<br>
<br>
<br>
<p><b>Intel Simplified Software License (Version October 2022)</b></p>
Use and Redistribution.<span style='mso-spacerun:yes'> </span>You may use and
redistribute the software, which is provided in binary form only,(the &quot;Software&quot;), without modification, 
provided the following conditions are met:<br>
<br>
* Redistributions must reproduce the above copyright notice and these terms of use in the Software and in the documentation and/or other materials provided with the distribution.<br>
* Neither the name of Intel nor the names of its suppliers may be used to endorse or promote products derived from this Software without specific prior written permission.<br>
* No reverse engineering, decompilation, or disassembly of the Software is permitted, nor any modification or alteration of the Software or its operation at any time, including during execution.<br>
<br>
No other licenses.<span style='mso-spacerun:yes'> </span>Except as provided in the preceding section, Intel grants no licenses or other rights by implication, estoppel or otherwise to, patent, copyright, trademark, trade name, service mark or other intellectual property licenses or rights of Intel.<br>
<br>
Third party software.<span style='mso-spacerun:yes'> </span> &quot;Third Party Software&quot; means the files (if any) listed in the &quot;third-party-software.txt&quot; or other similarly-named text file that may be included with the Software. Third Party Software, even if included with the distribution of the Software, may be governed by separate license terms, including without limitation, third party license terms, open source software notices and terms, and/or other Intel software license terms. These separate license terms solely govern Your use of the Third Party Software.<br>
<br>
DISCLAIMER.<span style='mso-spacerun:yes'> </span>THIS SOFTWARE IS PROVIDED &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED. THIS SOFTWARE IS NOT INTENDED FOR USE IN SYSTEMS OR APPLICATIONS WHERE FAILURE OF THE SOFTWARE MAY CAUSE PERSONAL INJURY OR DEATH AND YOU AGREE THAT YOU ARE FULLY RESPONSIBLE FOR ANY CLAIMS, COSTS, DAMAGES, EXPENSES, AND ATTORNEYS' FEES ARISING OUT OF ANY SUCH USE, EVEN IF ANY CLAIM ALLEGES THAT INTEL WAS NEGLIGENT REGARDING THE DESIGN OR MANUFACTURE OF THE SOFTWARE.<br>
<br>
LIMITATION OF LIABILITY. IN NO EVENT WILL INTEL 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.<br>
<br>
No support.<span style='mso-spacerun:yes'> </span> Intel may make changes to the Software, at any time without notice, and is not obligated to support, update or provide training for the Software.<br>
<br>
Termination.<span style='mso-spacerun:yes'> </span>Your right to use the Software is terminated in the event of your breach of this license.<br>
<br>
Feedback.<span style='mso-spacerun:yes'> </span>Should you provide Intel with comments, modifications, corrections, enhancements or other input (&quot;Feedback&quot;) related to the Software, Intel will be free to use, disclose, reproduce, license or otherwise distribute or exploit the Feedback in its sole discretion without any obligations or restrictions of any kind, including without limitation, intellectual property rights or licensing obligations.<br>
<br>
Compliance with laws.<span style='mso-spacerun:yes'> </span>You agree to comply with all relevant laws and regulations governing your use, transfer, import or export (or prohibition thereof) of the Software.<br>
<br>
Governing law.<span style='mso-spacerun:yes'> </span>All disputes will be governed by the laws of the United States of America and the State of Delaware without reference to conflict of law principles and subject to the exclusive jurisdiction of the state or federal courts sitting in the State of Delaware, and each party agrees that it submits to the personal jurisdiction and venue of those courts and waives any objections. THE UNITED NATIONS CONVENTION ON CONTRACTS FOR THE INTERNATIONAL SALE OF GOODS (1980) IS SPECIFICALLY EXCLUDED AND WILL NOT APPLY TO THE SOFTWARE.<br>
<br>                     
<br>
<p><b>Apache License</b><br>
<br>
Version 2.0, January 2004<br>
<br>
<a href="http://www.apache.org/licenses/">http://www.apache.org/licenses/</a></p>
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION<br>
<br>
 1. Definitions.<br>
<br>
  &quot;License&quot; shall mean the terms and conditions for use, reproduction,
  and distribution as defined by Sections 1 through 9 of this document.<br>
<br>
  &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
  the copyright owner that is granting the License.<br>
<br>
  &quot;Legal Entity&quot; shall mean the union of the acting entity and all
  other entities that control, are controlled by, or are under common
  control with that entity. For the purposes of this definition,
  &quot;control&quot; 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.<br>
<br>
  &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
  exercising permissions granted by this License.<br>
<br>
  &quot;Source&quot; form shall mean the preferred form for making modifications,
  including but not limited to software source code, documentation
  source, and configuration files.<br>
<br>
  &quot;Object&quot; form shall mean any form resulting from mechanical
  transformation or translation of a Source form, including but
  not limited to compiled object code, generated documentation,
  and conversions to other media types.<br>
<br>
  &quot;Work&quot; shall mean the work of authorship, whether in Source or
  Object form, made available under the License, as indicated by a
  copyright notice that is included in or attached to the work
  (an example is provided in the Appendix below).<br>
<br>
  &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
  form, that is based on (or derived from) the Work and for which the
  editorial revisions, annotations, elaborations, or other modifications
  represent, as a whole, an original work of authorship. For the purposes
  of this License, Derivative Works shall not include works that remain
  separable from, or merely link (or bind by name) to the interfaces of,
  the Work and Derivative Works thereof.<br>
<br>
  &quot;Contribution&quot; shall mean any work of authorship, including
  the original version of the Work and any modifications or additions
  to that Work or Derivative Works thereof, that is intentionally
  submitted to Licensor for inclusion in the Work by the copyright owner
  or by an individual or Legal Entity authorized to submit on behalf of
  the copyright owner. For the purposes of this definition, &quot;submitted&quot;
  means any form of electronic, verbal, or written communication sent
  to the Licensor or its representatives, including but not limited to
  communication on electronic mailing lists, source code control systems,
  and issue tracking systems that are managed by, or on behalf of, the
  Licensor for the purpose of discussing and improving the Work, but
  excluding communication that is conspicuously marked or otherwise
  designated in writing by the copyright owner as &quot;Not a Contribution.&quot;<br>
<br>
  &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
  on behalf of whom a Contribution has been received by Licensor and
  subsequently incorporated within the Work.<br>
<br>
 2. Grant of Copyright License. Subject to the terms and conditions of
  this License, each Contributor hereby grants to You a perpetual,
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  copyright license to reproduce, prepare Derivative Works of,
  publicly display, publicly perform, sublicense, and distribute the
  Work and such Derivative Works in Source or Object form.<br>
<br>
 3. Grant of Patent License. Subject to the terms and conditions of
  this License, each Contributor hereby grants to You a perpetual,
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  (except as stated in this section) patent license to make, have made,
  use, offer to sell, sell, import, and otherwise transfer the Work,
  where such license applies only to those patent claims licensable
  by such Contributor that are necessarily infringed by their
  Contribution(s) alone or by combination of their Contribution(s)
  with the Work to which such Contribution(s) was submitted. If You
  institute patent litigation against any entity (including a
  cross-claim or counterclaim in a lawsuit) alleging that the Work
  or a Contribution incorporated within the Work constitutes direct
  or contributory patent infringement, then any patent licenses
  granted to You under this License for that Work shall terminate
  as of the date such litigation is filed.<br>
<br>
 4. Redistribution. You may reproduce and distribute copies of the
  Work or Derivative Works thereof in any medium, with or without
  modifications, and in Source or Object form, provided that You
  meet the following conditions:<br>
<br>
  (a) You must give any other recipients of the Work or
      Derivative Works a copy of this License; and<br>
<br>
  (b) You must cause any modified files to carry prominent notices
      stating that You changed the files; and<br>
<br>
  (c) You must retain, in the Source form of any Derivative Works
      that You distribute, all copyright, patent, trademark, and
      attribution notices from the Source form of the Work,
      excluding those notices that do not pertain to any part of
      the Derivative Works; and<br>
<br>
  (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
      distribution, then any Derivative Works that You distribute must
      include a readable copy of the attribution notices contained
      within such NOTICE file, excluding those notices that do not
      pertain to any part of the Derivative Works, in at least one
      of the following places: within a NOTICE text file distributed
      as part of the Derivative Works; within the Source form or
      documentation, if provided along with the Derivative Works; or,
      within a display generated by the Derivative Works, if and
      wherever such third-party notices normally appear. The contents
      of the NOTICE file are for informational purposes only and
      do not modify the License. You may add Your own attribution
      notices within Derivative Works that You distribute, alongside
      or as an addendum to the NOTICE text from the Work, provided
      that such additional attribution notices cannot be construed
      as modifying the License.<br>
<br>
  You may add Your own copyright statement to Your modifications and
  may provide additional or different license terms and conditions
  for use, reproduction, or distribution of Your modifications, or
  for any such Derivative Works as a whole, provided Your use,
  reproduction, and distribution of the Work otherwise complies with
  the conditions stated in this License.<br>
<br>
 5. Submission of Contributions. Unless You explicitly state otherwise,
  any Contribution intentionally submitted for inclusion in the Work
  by You to the Licensor shall be under the terms and conditions of
  this License, without any additional terms or conditions.
  Notwithstanding the above, nothing herein shall supersede or modify
  the terms of any separate license agreement you may have executed
  with Licensor regarding such Contributions.<br>
<br>
 6. Trademarks. This License does not grant permission to use the trade
  names, trademarks, service marks, or product names of the Licensor,
  except as required for reasonable and customary use in describing the
  origin of the Work and reproducing the content of the NOTICE file.<br>
<br>
 7. Disclaimer of Warranty. Unless required by applicable law or
  agreed to in writing, Licensor provides the Work (and each
  Contributor provides its Contributions) on an &quot;AS IS&quot; 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. You are solely responsible for determining the
  appropriateness of using or redistributing the Work and assume any
  risks associated with Your exercise of permissions under this License.<br>
<br>
 8. Limitation of Liability. In no event and under no legal theory,
  whether in tort (including negligence), contract, or otherwise,
  unless required by applicable law (such as deliberate and grossly
  negligent acts) or agreed to in writing, shall any Contributor be
  liable to You for damages, including any direct, indirect, special,
  incidental, or consequential damages of any character arising as a
  result of this License or out of the use or inability to use the
  Work (including but not limited to damages for loss of goodwill,
  work stoppage, computer failure or malfunction, or any and all
  other commercial damages or losses), even if such Contributor
  has been advised of the possibility of such damages.<br>
<br>
 9. Accepting Warranty or Additional Liability. While redistributing
  the Work or Derivative Works thereof, You may choose to offer,
  and charge a fee for, acceptance of support, warranty, indemnity,
  or other liability obligations and/or rights consistent with this
  License. However, in accepting such obligations, You may act only
  on Your own behalf and on Your sole responsibility, not on behalf
  of any other Contributor, and only if You agree to indemnify,
  defend, and hold each Contributor harmless for any liability
  incurred by, or claims asserted against, such Contributor by reason
  of your accepting any such warranty or additional liability.<br>
<br>
 END OF TERMS AND CONDITIONS<br>
<br>
 APPENDIX: How to apply the Apache License to your work.<br>
<br>
  To apply the Apache License to your work, attach the following
  boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
  replaced with your own identifying information. (Don't include
  the brackets!)  The text should be enclosed in the appropriate
  comment syntax for the file format. We also recommend that a
  file or class name and description of purpose be included on the
  same &quot;printed page&quot; as the copyright notice for easier
  identification within third-party archives.
 Copyright 2017, The TensorFlow Authors.<br>
<br>
 Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at<br>
<br>
  http://www.apache.org/licenses/LICENSE-2.0<br>
<br>
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an &quot;AS IS&quot; 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.<br>
<br>
<br>
<p><b>LLVM Exceptions to the Apache 2.0 License</b></p>
As an exception, if, as a result of your compiling your source code, portions of 
this Software are embedded into an Object form of such source code, you may 
redistribute such embedded portions in such Object form without complying with 
the conditions of Sections 4(a), 4(b) and 4(d) of the License.<br>
<br>
In addition, if you combine or link compiled forms of this Software with 
software that is licensed under the GPLv2 ("Combined Software") and if a court 
of competent jurisdiction determines that the patent provision (Section 3), the 
indemnity provision (Section 9) or other Section of the License conflicts with 
the conditions of the GPLv2, you may retroactively and prospectively choose to 
deem waived or otherwise exclude such Section(s) of the License, but only in 
their entirety and only with respect to the Combined Software.<br>
<br>
<br>
<p><b>3-Clause BSD license</b></p>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:<br>
<br>
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.<br>
<br>
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.<br>
<br>
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.<br>
<br>
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS
IS&quot;
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.<br>
<br>
<br>
<p><b>Eclipse Public License - v 2.0</b></p>
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR DISTRIBUTION
OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.<br>
<br>
1. DEFINITIONS<br>
<br>
&quot;Contribution&quot; means:<br>
<br>
a) in the case of the initial Contributor, the initial content
Distributed under this Agreement, and<br>
<br>
b) in the case of each subsequent Contributor:<br>
i) changes to the Program, and<br>
ii) additions to the Program;<br>
where such changes and/or additions to the Program originate from
and are Distributed by that particular Contributor. A Contribution
&quot;originates&quot; 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 changes or additions to the Program that
are not Modified Works.<br>
<br>
&quot;Contributor&quot; means any person or entity that Distributes the
Program.<br>
<br>
&quot;Licensed Patents&quot; 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.<br>
<br>
&quot;Program&quot; means the Contributions Distributed in accordance with
this Agreement.<br>
<br>
&quot;Recipient&quot; means anyone who receives the Program under this
Agreement or any Secondary License (as applicable), including Contributors.<br>
<br>
&quot;Derivative Works&quot; shall mean any work, whether in Source Code or
other
form, that is based on (or derived from) the Program and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship.<br>
<br>
&quot;Modified Works&quot; shall mean any work in Source Code or other form
that
7results from an addition to, deletion from, or modification of the
contents of the Program, including, for purposes of clarity any new file
in Source Code form that contains any contents of the Program. Modified
Works shall not include works that contain only declarations,
interfaces, types, classes, structures, or files of the Program solely
in each case in order to link to, bind by name, or subclass the Program
or Modified Works thereof.<br>
<br>
&quot;Distribute&quot; means the acts of a) distributing or b) making
available
in any manner that enables the transfer of a copy.<br>
<br>
&quot;Source Code&quot; means the form of a Program preferred for making
modifications, including but not limited to software source code,
documentation source, and configuration files.<br>
<br>
&quot;Secondary License&quot; means either the GNU General Public License,
Version 2.0, or any later versions of that license, including any
exceptions or additional permissions as identified by the initial<br>
Contributor.<br>
<br>
2. GRANT OF RIGHTS<br>
<br>
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.<br>
<br>
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 or other 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.<br>
<br>
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.<br>
<br>
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.<br>
<br>
e) Notwithstanding the terms of any Secondary License, no
Contributor makes additional grants to any Recipient (other than
those set forth in this Agreement) as a result of such Recipient's
receipt of the Program under the terms of a Secondary License
(if permitted under the terms of Section 3).<br>
<br>
3. REQUIREMENTS<br>
<br>
3.1 If a Contributor Distributes the Program in any form, then:<br>
<br>
a) the Program must also be made available as Source Code, in
accordance with section 3.2, and the Contributor must accompany
the Program with a statement that the Source Code for the Program
is available under this Agreement, and informs Recipients how to
obtain it in a reasonable manner on or through a medium customarily
used for software exchange; and<br>
<br>
b) the Contributor may Distribute the Program under a license
different than this Agreement, provided that such license:<br>
i) effectively disclaims on behalf of all other 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;<br>
<br>
ii) effectively excludes on behalf of all other Contributors all
liability for damages, including direct, indirect, special,
incidental and consequential damages, such as lost profits;<br>
<br>
iii) does not attempt to limit or alter the recipients' rights
in the Source Code under section 3.2; and<br>
<br>
iv) requires any subsequent distribution of the Program by any
party to be under a license that satisfies the requirements
of this section 3.<br>
<br>
3.2 When the Program is Distributed as Source Code:<br>
<br>
a) it must be made available under this Agreement, or if the
Program (i) is combined with other material in a separate file or
files made available under a Secondary License, and (ii) the initial
Contributor attached to the Source Code the notice described in
Exhibit A of this Agreement, then the Program may be made available
under the terms of such Secondary Licenses, and<br>
<br>
b) a copy of this Agreement must be included with each copy of
the Program.<br>
<br>
3.3 Contributors may not remove or alter any copyright, patent,
trademark, attribution notices, disclaimers of warranty, or limitations
of liability (&quot;notices&quot;) contained within the Program from any copy
of
the Program which they Distribute, provided that Contributors may add
their own appropriate notices.<br>
<br>
4. COMMERCIAL DISTRIBUTION<br>
<br>
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
(&quot;Commercial Contributor&quot;) hereby agrees to defend and indemnify
every
other Contributor (&quot;Indemnified Contributor&quot;) against any
losses,
damages and costs (collectively &quot;Losses&quot;) 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.<br>
<br>
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.<br>
<br>
5. NO WARRANTY<br>
<br>
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT
PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN &quot;AS
IS&quot;
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.<br>
<br>
6. DISCLAIMER OF LIABILITY<br>
<br>
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT
PERMITTED BY APPLICABLE LAW, 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.<br>
<br>
7. GENERAL<br>
<br>
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.<br>
<br>
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.<br>
<br>
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.<br>
<br>
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.<br>
<br>
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. Nothing in this Agreement is intended
to be enforceable by any entity that is not a Contributor or Recipient.
No third-party beneficiary rights are created under this Agreement.<br>
<br>
Exhibit A - Form of Secondary Licenses Notice<br>
<br>
&quot;This Source Code may also be made available under the following
Secondary Licenses when the conditions for such availability set forth
in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
version(s), and exceptions or additional permissions here}.&quot;<br>
<br>
Simply including a copy of this Agreement, including this Exhibit A
is not sufficient to license the Source Code under Secondary Licenses.<br>
<br>
If it is not possible or desirable to put the notice in a particular
file, then You may include the notice in a location (such as a LICENSE
file in a relevant directory) where a recipient would be likely to
look for such a notice.<br>
<br>
You may add additional accurate notices of copyright ownership.<br>
<br>
<br>
<p><b>GNU GENERAL PUBLIC LICENSE</b><br>
Version 3, 29 June 2007<br>
Copyright (C) 2007 Free Software Foundation, Inc. &lt;https://fsf.org/&gt;</p>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.<br>
<p>Preamble<p/>
The GNU General Public License is a free, copyleft license for
software and other kinds of works.<br>
<br>
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.<br>
<br>
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.<br>
<br>
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.<br>
<br>
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.<br>
<br>
Developers that use the GNU GPL protect your rights with two steps:<br>
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.<br>
<br>
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.<br>
<br>
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.<br>
<br>
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.<br>
<br>
The precise terms and conditions for copying, distribution and
modification follow.<br>
<p>TERMS AND CONDITIONS<p/>
0. Definitions.<br>
<br>
&quot;This License&quot; refers to version 3 of the GNU General Public
License.<br>
<br>
&quot;Copyright&quot; also means copyright-like laws that apply to other kinds
of
works, such as semiconductor masks.<br>
<br>
&quot;The Program&quot; refers to any copyrightable work licensed under
this
License. Each licensee is addressed as &quot;you&quot;. &quot;Licensees&quot;
and
&quot;recipients&quot; may be individuals or organizations.<br>
<br>
To &quot;modify&quot; a work means to copy from or adapt all or part of the
work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a &quot;modified version&quot; of
the
earlier work or a work &quot;based on&quot; the earlier work.<br>
<br>
A &quot;covered work&quot; means either the unmodified Program or a work
based
on the Program.<br>
<br>
To &quot;propagate&quot; a work means to do anything with it that,
without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.<br>
<br>
To &quot;convey&quot; a work means any kind of propagation that enables
other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.<br>
<br>
An interactive user interface displays &quot;Appropriate Legal
Notices&quot;
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.<br>
<br>
1. Source Code.<br>
<br>
The &quot;source code&quot; for a work means the preferred form of the
work
for making modifications to it. &quot;Object code&quot; means any
non-source
form of a work.<br>
<br>
A &quot;Standard Interface&quot; means an interface that either is an
official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.<br>
<br>
The &quot;System Libraries&quot; of an executable work include anything,
other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
&quot;Major Component&quot;, in this context, means a major essential
component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.<br>
<br>
The &quot;Corresponding Source&quot; for a work in object code form means
all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.<br>
<br>
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.<br>
<br>
The Corresponding Source for a work in source code form is that
same work.<br>
<br>
2. Basic Permissions.<br>
<br>
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.<br>
<br>
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.<br>
<br>
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.<br>
<br>
3. Protecting Users' Legal Rights From Anti-Circumvention Law.<br>
<br>
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.<br>
<br>
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.<br>
<br>
4. Conveying Verbatim Copies.<br>
<br>
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.<br>
<br>
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.<br>
<br>
5. Conveying Modified Source Versions.<br>
<br>
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:<br>
<br>
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.<br>
<br>
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
&quot;keep intact all notices&quot;.<br>
<br>
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.<br>
<br>
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.<br>
<br>
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
&quot;aggregate&quot; if the compilation and its resulting copyright are
not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.<br>
<br>
6. Conveying Non-Source Forms.<br>
<br>
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:<br>
<br>
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.<br>
<br>
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.<br>
<br>
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.<br>
<br>
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.<br>
<br>
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.<br>
<br>
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.<br>
<br>
A &quot;User Product&quot; is either (1) a &quot;consumer product&quot;, which
means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, &quot;normally used&quot; refers to
a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.<br>
<br>
&quot;Installation Information&quot; for a User Product means any
methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.<br>
<br>
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).<br>
<br>
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.<br>
<br>
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.<br>
<br>
7. Additional Terms.<br>
<br>
&quot;Additional permissions&quot; are terms that supplement the terms of
this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.<br>
<br>
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.<br>
<br>
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:<br>
<br>
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or<br>
<br>
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or<br>
<br>
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or<br>
<br>
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or<br>
<br>
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or<br>
<br>
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of<br>
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.<br>
<br>
All other non-permissive additional terms are considered &quot;further
restrictions&quot; within the meaning of section 10. If the Program as
you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.<br>
<br>
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.<br>
<br>
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.<br>
<br>
8. Termination.<br>
<br>
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).<br>
<br>
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.<br>
<br>
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.<br>
<br>
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.<br>
<br>
9. Acceptance Not Required for Having Copies.<br>
<br>
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.<br>
<br>
10. Automatic Licensing of Downstream Recipients.<br>
<br>
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.<br>
<br>
An &quot;entity transaction&quot; is a transaction transferring control of
an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.<br>
<br>
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.<br>
<br>
11. Patents.<br>
<br>
A &quot;contributor&quot; is a copyright holder who authorizes use under
this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's &quot;contributor
version&quot;.<br>
<br>
A contributor's &quot;essential patent claims&quot; are all patent
claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, &quot;control&quot; includes the right to
grant
patent sublicenses in a manner consistent with the requirements of
this License.<br>
<br>
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.<br>
<br>
In the following three paragraphs, a &quot;patent license&quot; is any
express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To &quot;grant&quot; such a patent license to
a
party means to make such an agreement or commitment not to enforce a
patent against the party.<br>
<br>
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. &quot;Knowingly relying&quot; means you
have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.<br>
<br>
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.<br>
<br>
A patent license is &quot;discriminatory&quot; if it does not include
within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.<br>
<br>
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.<br>
<br>
12. No Surrender of Others' Freedom.<br>
<br>
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may
not convey it at all. For example, if you agree to terms that obligate
you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.<br>
<br>
13. Use with the GNU Affero General Public License.<br>
<br>
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.<br>
<br>
14. Revised Versions of this License.<br>
<br>
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.<br>
<br>
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License &quot;or any later version&quot; applies to it, you have
the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.<br>
<br>
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.<br>
<br>
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.<br>
<br>
15. Disclaimer of Warranty.<br>
<br>
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM &quot;AS IS&quot; WITHOUT
WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.<br>
<br>
16. Limitation of Liability.<br>
<br>
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING
ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR
THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.<br>
<br>
17. Interpretation of Sections 15 and 16.<br>
<br>
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.<br>
<p>END OF TERMS AND CONDITIONS<p/>
<p>How to Apply These Terms to Your New Programs<p/>
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.<br>
<br>
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the &quot;copyright&quot; line and a pointer to where the full notice is
found.<br>
<br>
&lt;one line to give the program's name and a brief idea of what it
does.&gt;<br>
Copyright (C) &lt;year&gt; &lt;name of author&gt;<br>
<br>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.<br>
<br>
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.<br>
<br>
You should have received a copy of the GNU General Public License
along with this program. If not, see
&lt;http://www.gnu.org/licenses/&gt;.<br>
<br>
Also add information on how to contact you by electronic and paper mail.<br>
<br>
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:<br>
<br>
&lt;program&gt; Copyright (C) &lt;year&gt; &lt;name of author&gt;<br>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show
w'.<br>
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.<br>
<br>
The hypothetical commands `show w' and `show c' should show the
appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an &quot;about
box&quot;.<br>
<br>
You should also get your employer (if you work as a programmer) or
school,
if any, to sign a &quot;copyright disclaimer&quot; for the program, if
necessary.<br>
For more information on this, and how to apply and follow the GNU GPL,
see
&lt;http://www.gnu.org/licenses/&gt;.<br>
<br>
The GNU General Public License does not permit incorporating your
program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications
with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
&lt;http://www.gnu.org/philosophy/why-not-lgpl.html&gt;.<br>
<br>
<br>
<p><b>MIT License</b></p>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the &quot;Software&quot;),
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:<br>
<br>
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.<br>
<br>
THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, 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.<br>
<br>
<br>

<p><b>Toolkits for oneAPI and Associated Third Party Program File Locations</b></p>
<p><i><u>Note</u></i>: All paths are relative to the Intel(R) oneAPI Toolkits installation 
directory, which defaults to: /opt/intel/oneapi</p>

<p><b>Intel(R) oneAPI Base Toolkit (Base Kit):</b></p>
<ul>
 <li>Intel(R) oneAPI DPC++/C++ Compiler &lt;install_dir&gt;/share/doc/compiler/licensing/c/third-party-programs.txt</li>
 <li>Intel(R) oneAPI DPC++ Library (oneDPL) &lt;install_dir&gt;/share/doc/dpl/licensing/third-party-programs.txt</li>
 <li>Intel(R) oneAPI Math Kernel Library (oneMKL) &lt;install_dir&gt;/share/doc/mkl/licensing/third-party-programs.txt</li>
 <li>Intel(R) oneAPI Threading Building Blocks (oneTBB) &lt;install_dir&gt;/share/doc/tbb/licensing/third-party-programs.txt</li>
 <li>Intel(R) oneAPI Data Analytics Library (oneDAL) &lt;install_dir&gt;/share/doc/dal/licensing/third-party-programs.txt</li>
 <li>Intel(R) oneAPI Collective Communications Library (oneCCL) &lt;install_dir&gt;/share/doc/ccl/licensing/third-party-programs.txt</li>
 <li>Intel(R) oneAPI Deep Neural Network Library (oneDNN) &lt;install_dir&gt;/share/doc/dnnl/THIRD-PARTY-PROGRAMS</li>
 <li>Intel(R) DPC++ Compatibility Tool &lt;install_dir&gt;/share/doc/dpct/licensing/third-party-programs.txt</li>
 <li>Intel(R) Distribution for GDB* &lt;install_dir&gt;/share/doc/debugger/licensing/third-party-programs.txt</li>
 <li>Intel(R) Integrated Performance Primitives (Intel(R) IPP) &lt;install_dir&gt;/share/doc/ipp/licensing/third-party-programs.txt</li>
 <li>Intel(R) Integrated Performance Primitives Cryptography (Intel(R) IPP Cryptography) &lt;install_dir&gt;/share/doc/ippcp/licensing/third-party-programs.txt</li>
 <li>Intel(R) VTune(TM) Profiler &lt;install_dir&gt;/vtune_profiler/latest/licensing/third-party-programs.txt</li>
 <li>Intel(R) Advisor &lt;install_dir&gt;/advisor/latest/licensing/third-party-programs.txt</li>
 <li>Intel(R) Dev Utilities &lt;install_dir&gt;/share/doc/dev-utilities/licensing/third-party-programs.txt</li>
 <li>Diagnostics Utility for oneAPI &lt;install_dir&gt;/share/doc/diagnostics/licensing/third-party-programs.txt</li>
 <li>Intel(R) Software Installer &lt;install_dir&gt;/installer/third-party-programs.txt</li>
</ul>
<p><b>Intel(R) HPC Toolkit (HPC Kit):</b></p>
<ul>
 <li>Intel(R) oneAPI DPC++/C++ Compiler &lt;install_dir&gt;/share/doc/compiler/licensing/c/third-party-programs.txt</li>
 <li>Intel(R) Fortran Compiler &lt;install_dir&gt;/share/doc/compiler/licensing/fortran/third-party-programs.txt</li>
 <li>Intel(R) MPI Library &lt;install_dir&gt;/share/doc/mpi/third-party-programs.txt</li>
 <li>Intel(R) Dev Utilities &lt;install_dir&gt;/share/doc/dev-utilities/licensing/third-party-programs.txt</li>
 <li>Diagnostics Utility for oneAPI &lt;install_dir&gt;/share/doc/diagnostics/licensing/third-party-programs.txt</li>
 <li>Intel(R) Software Installer &lt;install_dir&gt;/installer/third-party-programs.txt</li>
</ul>
<p><b>Intel(R) Rendering Toolkit (Render Kit):</b></p>
<ul>
 <li>Intel(R) Embree &lt;install_dir&gt;/share/doc/embree/licensing/third-party-programs.txt</li>
 <li>Intel(R) OSPRay &lt;install_dir&gt;/share/doc/ospray/licensing/third-party-programs.txt</li>
 <li>Intel(R) Open Image Denoise &lt;install_dir&gt;/share/doc/oidn/licensing/third-party-programs.txt</li>
 <li>Intel(R) Open Path Guiding Library (Intel(R) Open PGL) &lt;install_dir&gt;/share/doc/openpgl/licensing/third-party-programs.txt</li>
 <li>Intel(R) Open Volume Kernel Library (Intel(R) Open VKL) &lt;install_dir&gt;/share/doc/openvkl/licensing/third-party-programs.txt</li>
 <li>Intel(R) OSPRay Studio &lt;install_dir&gt;/share/doc/ospray_studio/licensing/third-party-programs.txt</li>
 <li>Intel(R) Implicit SPMD Program Compiler (Intel(R) ISPC) &lt;install_dir&gt;/share/doc/ispc/licensing/third-party-programs.txt</li>
 <li>Rendering Toolkit Utilities &lt;install_dir&gt;/share/doc/rkutil/licensing/third-party-programs.txt</li>
 <li>Intel(R) Software Installer &lt;install_dir&gt;/installer/third-party-programs.txt</li>
</ul>
<p><b>AI Tools:</b></p>
<ul>
 <li>Intel(R) Distribution for Python* &lt;install_dir&gt;/intelpython/latest/licensing/third-party-programs.txt</li>
 <li>Intel(R) Distribution of Modin* &lt;install_dir&gt;/modin/latest/licensing/third_party_programs.txt</li>
 <li>Intel(R) Optimization for TensorFlow* &lt;install_dir&gt;/tensorflow/latest/licensing/tensorflow/third-party-programs.txt</li>
 <li>Intel(R) Optimization for PyTorch* &lt;install_dir&gt;/pytorch/latest/licensing/third-party-programs.txt</li>
 <li>Intel(R) Neural Compressor &lt;install_dir&gt;/neural-compressor/latest/licensing/third-party-programs.txt</li>
 <li>Intel(R) Dev Utilities &lt;install_dir&gt;/share/doc/dev-utilities/licensing/third-party-programs.txt</li>
 <li>Intel(R) Software Installer &lt;install_dir&gt;/installer/third-party-programs.txt</li>
</ul>
</span></p>

</div>

</body>

</html>