├── .gitignore ├── README.md ├── imaxV8_demo └── x32 │ ├── demo.py │ └── imaxV8.dll ├── imaxV8_mul_demo ├── x32 │ ├── demo.e │ ├── demo.py │ └── imaxV8_mul.dll └── x64 │ ├── demo.py │ └── imaxV8_mul.dll ├── python-3.12.0-embed-amd64 ├── LICENSE.txt ├── _asyncio.pyd ├── _bz2.pyd ├── _ctypes.pyd ├── _decimal.pyd ├── _elementtree.pyd ├── _hashlib.pyd ├── _lzma.pyd ├── _msi.pyd ├── _multiprocessing.pyd ├── _overlapped.pyd ├── _queue.pyd ├── _socket.pyd ├── _sqlite3.pyd ├── _ssl.pyd ├── _uuid.pyd ├── _wmi.pyd ├── _zoneinfo.pyd ├── libcrypto-3.dll ├── libffi-8.dll ├── libssl-3.dll ├── pyexpat.pyd ├── python.cat ├── python.exe ├── python3.dll ├── python312._pth ├── python312.dll ├── python312.zip ├── pythonw.exe ├── select.pyd ├── sqlite3.dll ├── unicodedata.pyd ├── vcruntime140.dll ├── vcruntime140_1.dll └── winsound.pyd ├── python-3.12.0-embed-win32 ├── LICENSE.txt ├── _asyncio.pyd ├── _bz2.pyd ├── _ctypes.pyd ├── _decimal.pyd ├── _elementtree.pyd ├── _hashlib.pyd ├── _lzma.pyd ├── _msi.pyd ├── _multiprocessing.pyd ├── _overlapped.pyd ├── _queue.pyd ├── _socket.pyd ├── _sqlite3.pyd ├── _ssl.pyd ├── _uuid.pyd ├── _wmi.pyd ├── _zoneinfo.pyd ├── libcrypto-3.dll ├── libffi-8.dll ├── libssl-3.dll ├── pyexpat.pyd ├── python.cat ├── python.exe ├── python3.dll ├── python312._pth ├── python312.dll ├── python312.zip ├── pythonw.exe ├── select.pyd ├── sqlite3.dll ├── unicodedata.pyd ├── vcruntime140.dll └── winsound.pyd └── vx.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | .idea/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # imaxV8 2 | 纯净v8 dll 多线程版 运行js代码 3 | 4 | # 起因 5 | 由于本人需要使用32位dll跑js代码,但是去网上找了一圈都没有看到一个开源的32位v8dll,并且找不到支持 es6 语法的dll,导致很多js代码无法执行,为了能支持 **es6 语法**,于是自己百度研究研究,自己编译了一个32位v8引擎,在这,本着开源奉献的精神,分享给大家。 6 | 7 | # 更新 8 | 上周已经开源了一个[v8 32位 dll(点击跳转)](https://mp.weixin.qq.com/s/DyM91_XIL2rT0xdgtagg2Q),但是由于在这一周的使用情况来看,确实有着很多的不足,我给出的示例是python写的,但是我去尝试了其他的编程语言,发现还是有一些使用兼容的问题。于是通过我的不懈努力(哈哈哈哈哈),重新编译了一份v8 32 dll,能更好的支持多线程的运行,更好的兼容其他编程语言。 9 | 10 | 最新更新:新增 **64位** 多线程版 dll,使用方法和 32位 dll 一致。 11 | 12 | 以下给出一些编程示例。 13 | 14 | # 代码示例 15 | ## imaxV8_mul.dll 多线程版 16 | 17 | ### x32 18 | 19 | #### python 20 | 21 | ```python 22 | import ctypes 23 | 24 | # 加载 DLL 25 | v8_dll = ctypes.cdll.LoadLibrary("./imaxV8_mul_demo/x32/imaxV8_mul.dll") 26 | 27 | # 导出函数 28 | runJs_func = v8_dll.__getattr__('_runJs@12') 29 | runJs_func.argtypes = [ctypes.c_char_p, ctypes.c_char_p, ctypes.c_int] 30 | runJs_func.restype = None 31 | # 导出函数 32 | createIsolate_func = v8_dll.__getattr__('_createIsolate@0') 33 | createIsolate_func.restype = ctypes.c_int 34 | createIsolate_func.argtypes = [] 35 | 36 | # 创建一个运行实例,这一步是必须的,创建的实例是有限制的,需要和对应的线程一一对应 37 | isolate_index = createIsolate_func() 38 | # 创建一个缓冲区用于存储结果 39 | result_buffer = ctypes.create_string_buffer(2048) 40 | 41 | 42 | def runJs(js_code): 43 | # 运行 JavaScript 代码,需要传入一个运行实例 44 | runJs_func(js_code.encode(), result_buffer, isolate_index) 45 | return result_buffer.value.decode() 46 | 47 | 48 | if __name__ == '__main__': 49 | js_code = r""" 50 | 'hello, ' + 'world' 51 | """ 52 | for i in range(3): 53 | res = runJs(js_code) 54 | print("JavaScript 执行结果:", res) 55 | ``` 56 | 57 | #### 易语言 58 | 59 | ``` 60 | 项目根目录下面:/imaxV8_mul_demo/x32/demo.e 文件,运行此实例,需要将imaxV8_mul.dll放置同一个目录下 61 | ``` 62 | ### x64 63 | 64 | #### python 65 | 66 | ```python 67 | import ctypes 68 | 69 | # 加载 DLL 70 | v8_dll = ctypes.cdll.LoadLibrary("./imaxV8_mul_demo/x64/imaxV8_mul.dll") 71 | 72 | # 导出函数 73 | runJs_func = v8_dll.__getattr__('runJs') 74 | runJs_func.argtypes = [ctypes.c_char_p, ctypes.c_char_p, ctypes.c_int] 75 | runJs_func.restype = None 76 | # 导出函数 77 | createIsolate_func = v8_dll.__getattr__('createIsolate') 78 | createIsolate_func.restype = ctypes.c_int 79 | createIsolate_func.argtypes = [] 80 | 81 | # 创建一个运行实例,这一步是必须的,创建的实例是有限制的,需要和对应的线程一一对应 82 | isolate_index = createIsolate_func() 83 | # 创建一个缓冲区用于存储结果 84 | result_buffer = ctypes.create_string_buffer(2048) 85 | 86 | 87 | def runJs(js_code): 88 | # 运行 JavaScript 代码,需要传入一个运行实例 89 | runJs_func(js_code.encode(), result_buffer, isolate_index) 90 | return result_buffer.value.decode() 91 | 92 | 93 | if __name__ == '__main__': 94 | js_code = r""" 95 | 'hello, ' + 'world' 96 | """ 97 | for i in range(3): 98 | res = runJs(js_code) 99 | print("JavaScript 执行结果:", res) 100 | ``` 101 | 102 | 103 | 104 | ## imaxV8.dll 105 | 106 | ### x32 107 | 108 | #### python 109 | 110 | ```python 111 | import ctypes 112 | import time 113 | 114 | def runJs(): 115 | # 加载 DLL 116 | mymodule = ctypes.CDLL("./imaxV8_demo/x32/imaxV8.dll") 117 | 118 | # 初始化 V8 119 | mymodule.initializeV8() 120 | 121 | # 准备 JavaScript 代码 122 | js_code = r''' 123 | 'hello' + ' world'; 124 | ''' 125 | 126 | # 调用 runJs 函数执行 JavaScript 代码 127 | result_ptr = mymodule.runJs(js_code.encode("utf-8")) 128 | 129 | if result_ptr: 130 | # 将返回的字符串指针转换为 Python 字符串 131 | result = ctypes.string_at(result_ptr).decode("utf-8") 132 | # 释放返回结果的内存 133 | mymodule.free_result(result_ptr) 134 | 135 | # 销毁 V8 136 | mymodule.disposeV8() 137 | 138 | # 释放DLL, 不释放会报错 139 | if hasattr(ctypes, 'windll'): 140 | # Windows平台上使用Win32 API FreeLibrary() 141 | kernel32 = ctypes.windll.kernel32 142 | kernel32.FreeLibrary(mymodule._handle) 143 | return result 144 | 145 | 146 | if __name__ == '__main__': 147 | for i in range(1): 148 | start_time = time.time() # 记录开始时间 149 | result = runJs() 150 | end_time = time.time() # 记录结束时间 151 | print("代码执行时间:", end_time - start_time, "Result:", result) 152 | 153 | ``` 154 | 155 | # 运行示例 156 | ```shell 157 | # x32 158 | $ .\python-3.12.0-embed-win32\python.exe imaxV8_mul_demo\x32\demo.py 159 | 160 | # x64 161 | $ .\python-3.12.0-embed-amd64\python.exe imaxV8_mul_demo\x64\demo.py 162 | 163 | # 为了方便调用,项目采用免安装版 python 来调用,读者使用对应位数的python来调用dll即可 164 | 165 | # 运行结果 166 | $ JavaScript 执行结果: hello, world 167 | $ JavaScript 执行结果: hello, world 168 | $ JavaScript 执行结果: hello, world 169 | ``` 170 | 171 | # 说明 172 | imaxV8.dll 是第一版打包的dll,单线程运行,对于某些编程语言可能有兼容性问题。 173 | 174 | imaxV8_mul.dll 是第二版打包的dll,支持多线程执行,目前给出了两种编程范例,当然由于python本身多线程一个限制,示例只写出来单线程调用,具体多线程写法同单线程类似,大家可以自己研究一下,后续有其他编程范例会更新到项目中。 175 | 176 | 两个版本都支持 **es6 语法** 177 | 178 | # 代码地址 179 | ```javascript 180 | // 项目地址 181 | https://github.com/GitHub-ZC/imaxV8 182 | ``` 183 | 184 | # 交流群 185 | ## 加好友(备注交流群) 186 | 187 | ![请添加图片描述](./vx.jpg) 188 | 189 | 190 | # 免责声明 191 | 本项目中提供的V8 DLL(动态链接库)是基于个人编译的版本,仅供参考和学习之用。作者尽力确保其准确性和稳定性,但不对其适用性、可靠性或完整性作任何明示或暗示的保证。因使用该 DLL 而造成的任何直接或间接损失,包括但不限于数据丢失、利润损失等,作者概不负责。任何基于该 DLL 进行的修改、二次开发或应用需自行承担风险。使用者应自行评估并遵守相关法律法规,对于任何因使用本项目而产生的法律责任,作者概不承担。 192 | 193 | -------------------------------------------------------------------------------- /imaxV8_demo/x32/demo.py: -------------------------------------------------------------------------------- 1 | import ctypes 2 | import time 3 | 4 | def runJs(): 5 | # 加载 DLL 6 | mymodule = ctypes.CDLL("./imaxV8_demo/x32/imaxV8.dll") 7 | 8 | # 初始化 V8 9 | mymodule.initializeV8() 10 | 11 | # 准备 JavaScript 代码 12 | js_code = r''' 13 | 'hello' + ' world'; 14 | ''' 15 | 16 | # 调用 runJs 函数执行 JavaScript 代码 17 | result_ptr = mymodule.runJs(js_code.encode("utf-8")) 18 | 19 | if result_ptr: 20 | # 将返回的字符串指针转换为 Python 字符串 21 | result = ctypes.string_at(result_ptr).decode("utf-8") 22 | # 释放返回结果的内存 23 | mymodule.free_result(result_ptr) 24 | 25 | # 销毁 V8 26 | mymodule.disposeV8() 27 | 28 | # 释放DLL, 不释放会报错 29 | if hasattr(ctypes, 'windll'): 30 | # Windows平台上使用Win32 API FreeLibrary() 31 | kernel32 = ctypes.windll.kernel32 32 | kernel32.FreeLibrary(mymodule._handle) 33 | return result 34 | 35 | 36 | if __name__ == '__main__': 37 | for i in range(1): 38 | start_time = time.time() # 记录开始时间 39 | result = runJs() 40 | end_time = time.time() # 记录结束时间 41 | print("代码执行时间:", end_time - start_time, "Result:", result) 42 | -------------------------------------------------------------------------------- /imaxV8_demo/x32/imaxV8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/imaxV8_demo/x32/imaxV8.dll -------------------------------------------------------------------------------- /imaxV8_mul_demo/x32/demo.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/imaxV8_mul_demo/x32/demo.e -------------------------------------------------------------------------------- /imaxV8_mul_demo/x32/demo.py: -------------------------------------------------------------------------------- 1 | import ctypes 2 | 3 | # 加载 DLL 4 | v8_dll = ctypes.cdll.LoadLibrary("./imaxV8_mul_demo/x32/imaxV8_mul.dll") 5 | 6 | # 导出函数 7 | runJs_func = v8_dll.__getattr__('_runJs@12') 8 | runJs_func.argtypes = [ctypes.c_char_p, ctypes.c_char_p, ctypes.c_int] 9 | runJs_func.restype = None 10 | # 导出函数 11 | createIsolate_func = v8_dll.__getattr__('_createIsolate@0') 12 | createIsolate_func.restype = ctypes.c_int 13 | createIsolate_func.argtypes = [] 14 | 15 | # 创建一个运行实例,这一步是必须的,创建的实例是有限制的,需要和对应的线程一一对应 16 | isolate_index = createIsolate_func() 17 | # 创建一个缓冲区用于存储结果 18 | result_buffer = ctypes.create_string_buffer(2048) 19 | 20 | 21 | def runJs(js_code): 22 | # 运行 JavaScript 代码,需要传入一个运行实例 23 | runJs_func(js_code.encode(), result_buffer, isolate_index) 24 | return result_buffer.value.decode() 25 | 26 | 27 | if __name__ == '__main__': 28 | js_code = r""" 29 | 'hello, ' + 'world' 30 | """ 31 | for i in range(3): 32 | res = runJs(js_code) 33 | print("JavaScript 执行结果:", res) -------------------------------------------------------------------------------- /imaxV8_mul_demo/x32/imaxV8_mul.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/imaxV8_mul_demo/x32/imaxV8_mul.dll -------------------------------------------------------------------------------- /imaxV8_mul_demo/x64/demo.py: -------------------------------------------------------------------------------- 1 | import ctypes 2 | 3 | # 加载 DLL 4 | v8_dll = ctypes.cdll.LoadLibrary("./imaxV8_mul_demo/x64/imaxV8_mul.dll") 5 | 6 | # 导出函数 7 | runJs_func = v8_dll.__getattr__('runJs') 8 | runJs_func.argtypes = [ctypes.c_char_p, ctypes.c_char_p, ctypes.c_int] 9 | runJs_func.restype = None 10 | # 导出函数 11 | createIsolate_func = v8_dll.__getattr__('createIsolate') 12 | createIsolate_func.restype = ctypes.c_int 13 | createIsolate_func.argtypes = [] 14 | 15 | # 创建一个运行实例,这一步是必须的,创建的实例是有限制的,需要和对应的线程一一对应 16 | isolate_index = createIsolate_func() 17 | # 创建一个缓冲区用于存储结果 18 | result_buffer = ctypes.create_string_buffer(2048) 19 | 20 | 21 | def runJs(js_code): 22 | # 运行 JavaScript 代码,需要传入一个运行实例 23 | runJs_func(js_code.encode(), result_buffer, isolate_index) 24 | return result_buffer.value.decode() 25 | 26 | 27 | if __name__ == '__main__': 28 | js_code = r""" 29 | 'hello, ' + 'world' 30 | """ 31 | for i in range(3): 32 | res = runJs(js_code) 33 | print("JavaScript 执行结果:", res) -------------------------------------------------------------------------------- /imaxV8_mul_demo/x64/imaxV8_mul.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/imaxV8_mul_demo/x64/imaxV8_mul.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/LICENSE.txt: -------------------------------------------------------------------------------- 1 | A. HISTORY OF THE SOFTWARE 2 | ========================== 3 | 4 | Python was created in the early 1990s by Guido van Rossum at Stichting 5 | Mathematisch Centrum (CWI, see https://www.cwi.nl) in the Netherlands 6 | as a successor of a language called ABC. Guido remains Python's 7 | principal author, although it includes many contributions from others. 8 | 9 | In 1995, Guido continued his work on Python at the Corporation for 10 | National Research Initiatives (CNRI, see https://www.cnri.reston.va.us) 11 | in Reston, Virginia where he released several versions of the 12 | software. 13 | 14 | In May 2000, Guido and the Python core development team moved to 15 | BeOpen.com to form the BeOpen PythonLabs team. In October of the same 16 | year, the PythonLabs team moved to Digital Creations, which became 17 | Zope Corporation. In 2001, the Python Software Foundation (PSF, see 18 | https://www.python.org/psf/) was formed, a non-profit organization 19 | created specifically to own Python-related Intellectual Property. 20 | Zope Corporation was a sponsoring member of the PSF. 21 | 22 | All Python releases are Open Source (see https://opensource.org for 23 | the Open Source Definition). Historically, most, but not all, Python 24 | releases have also been GPL-compatible; the table below summarizes 25 | the various releases. 26 | 27 | Release Derived Year Owner GPL- 28 | from compatible? (1) 29 | 30 | 0.9.0 thru 1.2 1991-1995 CWI yes 31 | 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes 32 | 1.6 1.5.2 2000 CNRI no 33 | 2.0 1.6 2000 BeOpen.com no 34 | 1.6.1 1.6 2001 CNRI yes (2) 35 | 2.1 2.0+1.6.1 2001 PSF no 36 | 2.0.1 2.0+1.6.1 2001 PSF yes 37 | 2.1.1 2.1+2.0.1 2001 PSF yes 38 | 2.1.2 2.1.1 2002 PSF yes 39 | 2.1.3 2.1.2 2002 PSF yes 40 | 2.2 and above 2.1.1 2001-now PSF yes 41 | 42 | Footnotes: 43 | 44 | (1) GPL-compatible doesn't mean that we're distributing Python under 45 | the GPL. All Python licenses, unlike the GPL, let you distribute 46 | a modified version without making your changes open source. The 47 | GPL-compatible licenses make it possible to combine Python with 48 | other software that is released under the GPL; the others don't. 49 | 50 | (2) According to Richard Stallman, 1.6.1 is not GPL-compatible, 51 | because its license has a choice of law clause. According to 52 | CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 53 | is "not incompatible" with the GPL. 54 | 55 | Thanks to the many outside volunteers who have worked under Guido's 56 | direction to make these releases possible. 57 | 58 | 59 | B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON 60 | =============================================================== 61 | 62 | Python software and documentation are licensed under the 63 | Python Software Foundation License Version 2. 64 | 65 | Starting with Python 3.8.6, examples, recipes, and other code in 66 | the documentation are dual licensed under the PSF License Version 2 67 | and the Zero-Clause BSD license. 68 | 69 | Some software incorporated into Python is under different licenses. 70 | The licenses are listed with code falling under that license. 71 | 72 | 73 | PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 74 | -------------------------------------------- 75 | 76 | 1. This LICENSE AGREEMENT is between the Python Software Foundation 77 | ("PSF"), and the Individual or Organization ("Licensee") accessing and 78 | otherwise using this software ("Python") in source or binary form and 79 | its associated documentation. 80 | 81 | 2. Subject to the terms and conditions of this License Agreement, PSF hereby 82 | grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, 83 | analyze, test, perform and/or display publicly, prepare derivative works, 84 | distribute, and otherwise use Python alone or in any derivative version, 85 | provided, however, that PSF's License Agreement and PSF's notice of copyright, 86 | i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 87 | 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Python Software Foundation; 88 | All Rights Reserved" are retained in Python alone or in any derivative version 89 | prepared by Licensee. 90 | 91 | 3. In the event Licensee prepares a derivative work that is based on 92 | or incorporates Python or any part thereof, and wants to make 93 | the derivative work available to others as provided herein, then 94 | Licensee hereby agrees to include in any such work a brief summary of 95 | the changes made to Python. 96 | 97 | 4. PSF is making Python available to Licensee on an "AS IS" 98 | basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR 99 | IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND 100 | DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS 101 | FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT 102 | INFRINGE ANY THIRD PARTY RIGHTS. 103 | 104 | 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 105 | FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS 106 | A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, 107 | OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. 108 | 109 | 6. This License Agreement will automatically terminate upon a material 110 | breach of its terms and conditions. 111 | 112 | 7. Nothing in this License Agreement shall be deemed to create any 113 | relationship of agency, partnership, or joint venture between PSF and 114 | Licensee. This License Agreement does not grant permission to use PSF 115 | trademarks or trade name in a trademark sense to endorse or promote 116 | products or services of Licensee, or any third party. 117 | 118 | 8. By copying, installing or otherwise using Python, Licensee 119 | agrees to be bound by the terms and conditions of this License 120 | Agreement. 121 | 122 | 123 | BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 124 | ------------------------------------------- 125 | 126 | BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 127 | 128 | 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an 129 | office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the 130 | Individual or Organization ("Licensee") accessing and otherwise using 131 | this software in source or binary form and its associated 132 | documentation ("the Software"). 133 | 134 | 2. Subject to the terms and conditions of this BeOpen Python License 135 | Agreement, BeOpen hereby grants Licensee a non-exclusive, 136 | royalty-free, world-wide license to reproduce, analyze, test, perform 137 | and/or display publicly, prepare derivative works, distribute, and 138 | otherwise use the Software alone or in any derivative version, 139 | provided, however, that the BeOpen Python License is retained in the 140 | Software, alone or in any derivative version prepared by Licensee. 141 | 142 | 3. BeOpen is making the Software available to Licensee on an "AS IS" 143 | basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR 144 | IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND 145 | DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS 146 | FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT 147 | INFRINGE ANY THIRD PARTY RIGHTS. 148 | 149 | 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE 150 | SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS 151 | AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY 152 | DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. 153 | 154 | 5. This License Agreement will automatically terminate upon a material 155 | breach of its terms and conditions. 156 | 157 | 6. This License Agreement shall be governed by and interpreted in all 158 | respects by the law of the State of California, excluding conflict of 159 | law provisions. Nothing in this License Agreement shall be deemed to 160 | create any relationship of agency, partnership, or joint venture 161 | between BeOpen and Licensee. This License Agreement does not grant 162 | permission to use BeOpen trademarks or trade names in a trademark 163 | sense to endorse or promote products or services of Licensee, or any 164 | third party. As an exception, the "BeOpen Python" logos available at 165 | http://www.pythonlabs.com/logos.html may be used according to the 166 | permissions granted on that web page. 167 | 168 | 7. By copying, installing or otherwise using the software, Licensee 169 | agrees to be bound by the terms and conditions of this License 170 | Agreement. 171 | 172 | 173 | CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 174 | --------------------------------------- 175 | 176 | 1. This LICENSE AGREEMENT is between the Corporation for National 177 | Research Initiatives, having an office at 1895 Preston White Drive, 178 | Reston, VA 20191 ("CNRI"), and the Individual or Organization 179 | ("Licensee") accessing and otherwise using Python 1.6.1 software in 180 | source or binary form and its associated documentation. 181 | 182 | 2. Subject to the terms and conditions of this License Agreement, CNRI 183 | hereby grants Licensee a nonexclusive, royalty-free, world-wide 184 | license to reproduce, analyze, test, perform and/or display publicly, 185 | prepare derivative works, distribute, and otherwise use Python 1.6.1 186 | alone or in any derivative version, provided, however, that CNRI's 187 | License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) 188 | 1995-2001 Corporation for National Research Initiatives; All Rights 189 | Reserved" are retained in Python 1.6.1 alone or in any derivative 190 | version prepared by Licensee. Alternately, in lieu of CNRI's License 191 | Agreement, Licensee may substitute the following text (omitting the 192 | quotes): "Python 1.6.1 is made available subject to the terms and 193 | conditions in CNRI's License Agreement. This Agreement together with 194 | Python 1.6.1 may be located on the internet using the following 195 | unique, persistent identifier (known as a handle): 1895.22/1013. This 196 | Agreement may also be obtained from a proxy server on the internet 197 | using the following URL: http://hdl.handle.net/1895.22/1013". 198 | 199 | 3. In the event Licensee prepares a derivative work that is based on 200 | or incorporates Python 1.6.1 or any part thereof, and wants to make 201 | the derivative work available to others as provided herein, then 202 | Licensee hereby agrees to include in any such work a brief summary of 203 | the changes made to Python 1.6.1. 204 | 205 | 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" 206 | basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR 207 | IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND 208 | DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS 209 | FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT 210 | INFRINGE ANY THIRD PARTY RIGHTS. 211 | 212 | 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 213 | 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS 214 | A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, 215 | OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. 216 | 217 | 6. This License Agreement will automatically terminate upon a material 218 | breach of its terms and conditions. 219 | 220 | 7. This License Agreement shall be governed by the federal 221 | intellectual property law of the United States, including without 222 | limitation the federal copyright law, and, to the extent such 223 | U.S. federal law does not apply, by the law of the Commonwealth of 224 | Virginia, excluding Virginia's conflict of law provisions. 225 | Notwithstanding the foregoing, with regard to derivative works based 226 | on Python 1.6.1 that incorporate non-separable material that was 227 | previously distributed under the GNU General Public License (GPL), the 228 | law of the Commonwealth of Virginia shall govern this License 229 | Agreement only as to issues arising under or with respect to 230 | Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this 231 | License Agreement shall be deemed to create any relationship of 232 | agency, partnership, or joint venture between CNRI and Licensee. This 233 | License Agreement does not grant permission to use CNRI trademarks or 234 | trade name in a trademark sense to endorse or promote products or 235 | services of Licensee, or any third party. 236 | 237 | 8. By clicking on the "ACCEPT" button where indicated, or by copying, 238 | installing or otherwise using Python 1.6.1, Licensee agrees to be 239 | bound by the terms and conditions of this License Agreement. 240 | 241 | ACCEPT 242 | 243 | 244 | CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 245 | -------------------------------------------------- 246 | 247 | Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, 248 | The Netherlands. All rights reserved. 249 | 250 | Permission to use, copy, modify, and distribute this software and its 251 | documentation for any purpose and without fee is hereby granted, 252 | provided that the above copyright notice appear in all copies and that 253 | both that copyright notice and this permission notice appear in 254 | supporting documentation, and that the name of Stichting Mathematisch 255 | Centrum or CWI not be used in advertising or publicity pertaining to 256 | distribution of the software without specific, written prior 257 | permission. 258 | 259 | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO 260 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 261 | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE 262 | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 263 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 264 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT 265 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 266 | 267 | ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION 268 | ---------------------------------------------------------------------- 269 | 270 | Permission to use, copy, modify, and/or distribute this software for any 271 | purpose with or without fee is hereby granted. 272 | 273 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 274 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 275 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 276 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 277 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 278 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 279 | PERFORMANCE OF THIS SOFTWARE. 280 | 281 | 282 | 283 | Additional Conditions for this Windows binary build 284 | --------------------------------------------------- 285 | 286 | This program is linked with and uses Microsoft Distributable Code, 287 | copyrighted by Microsoft Corporation. The Microsoft Distributable Code 288 | is embedded in each .exe, .dll and .pyd file as a result of running 289 | the code through a linker. 290 | 291 | If you further distribute programs that include the Microsoft 292 | Distributable Code, you must comply with the restrictions on 293 | distribution specified by Microsoft. In particular, you must require 294 | distributors and external end users to agree to terms that protect the 295 | Microsoft Distributable Code at least as much as Microsoft's own 296 | requirements for the Distributable Code. See Microsoft's documentation 297 | (included in its developer tools and on its website at microsoft.com) 298 | for specific details. 299 | 300 | Redistribution of the Windows binary build of the Python interpreter 301 | complies with this agreement, provided that you do not: 302 | 303 | - alter any copyright, trademark or patent notice in Microsoft's 304 | Distributable Code; 305 | 306 | - use Microsoft's trademarks in your programs' names or in a way that 307 | suggests your programs come from or are endorsed by Microsoft; 308 | 309 | - distribute Microsoft's Distributable Code to run on a platform other 310 | than Microsoft operating systems, run-time technologies or application 311 | platforms; or 312 | 313 | - include Microsoft Distributable Code in malicious, deceptive or 314 | unlawful programs. 315 | 316 | These restrictions apply only to the Microsoft Distributable Code as 317 | defined above, not to Python itself or any programs running on the 318 | Python interpreter. The redistribution of the Python interpreter and 319 | libraries is governed by the Python Software License included with this 320 | file, or by other licenses as marked. 321 | 322 | 323 | 324 | -------------------------------------------------------------------------- 325 | 326 | This program, "bzip2", the associated library "libbzip2", and all 327 | documentation, are copyright (C) 1996-2019 Julian R Seward. All 328 | rights reserved. 329 | 330 | Redistribution and use in source and binary forms, with or without 331 | modification, are permitted provided that the following conditions 332 | are met: 333 | 334 | 1. Redistributions of source code must retain the above copyright 335 | notice, this list of conditions and the following disclaimer. 336 | 337 | 2. The origin of this software must not be misrepresented; you must 338 | not claim that you wrote the original software. If you use this 339 | software in a product, an acknowledgment in the product 340 | documentation would be appreciated but is not required. 341 | 342 | 3. Altered source versions must be plainly marked as such, and must 343 | not be misrepresented as being the original software. 344 | 345 | 4. The name of the author may not be used to endorse or promote 346 | products derived from this software without specific prior written 347 | permission. 348 | 349 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 350 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 351 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 352 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 353 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 354 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 355 | GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 356 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 357 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 358 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 359 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 360 | 361 | Julian Seward, jseward@acm.org 362 | bzip2/libbzip2 version 1.0.8 of 13 July 2019 363 | 364 | -------------------------------------------------------------------------- 365 | 366 | libffi - Copyright (c) 1996-2022 Anthony Green, Red Hat, Inc and others. 367 | See source files for details. 368 | 369 | Permission is hereby granted, free of charge, to any person obtaining 370 | a copy of this software and associated documentation files (the 371 | ``Software''), to deal in the Software without restriction, including 372 | without limitation the rights to use, copy, modify, merge, publish, 373 | distribute, sublicense, and/or sell copies of the Software, and to 374 | permit persons to whom the Software is furnished to do so, subject to 375 | the following conditions: 376 | 377 | The above copyright notice and this permission notice shall be 378 | included in all copies or substantial portions of the Software. 379 | 380 | THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, 381 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 382 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 383 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 384 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 385 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 386 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 387 | 388 | 389 | Apache License 390 | Version 2.0, January 2004 391 | https://www.apache.org/licenses/ 392 | 393 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 394 | 395 | 1. Definitions. 396 | 397 | "License" shall mean the terms and conditions for use, reproduction, 398 | and distribution as defined by Sections 1 through 9 of this document. 399 | 400 | "Licensor" shall mean the copyright owner or entity authorized by 401 | the copyright owner that is granting the License. 402 | 403 | "Legal Entity" shall mean the union of the acting entity and all 404 | other entities that control, are controlled by, or are under common 405 | control with that entity. For the purposes of this definition, 406 | "control" means (i) the power, direct or indirect, to cause the 407 | direction or management of such entity, whether by contract or 408 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 409 | outstanding shares, or (iii) beneficial ownership of such entity. 410 | 411 | "You" (or "Your") shall mean an individual or Legal Entity 412 | exercising permissions granted by this License. 413 | 414 | "Source" form shall mean the preferred form for making modifications, 415 | including but not limited to software source code, documentation 416 | source, and configuration files. 417 | 418 | "Object" form shall mean any form resulting from mechanical 419 | transformation or translation of a Source form, including but 420 | not limited to compiled object code, generated documentation, 421 | and conversions to other media types. 422 | 423 | "Work" shall mean the work of authorship, whether in Source or 424 | Object form, made available under the License, as indicated by a 425 | copyright notice that is included in or attached to the work 426 | (an example is provided in the Appendix below). 427 | 428 | "Derivative Works" shall mean any work, whether in Source or Object 429 | form, that is based on (or derived from) the Work and for which the 430 | editorial revisions, annotations, elaborations, or other modifications 431 | represent, as a whole, an original work of authorship. For the purposes 432 | of this License, Derivative Works shall not include works that remain 433 | separable from, or merely link (or bind by name) to the interfaces of, 434 | the Work and Derivative Works thereof. 435 | 436 | "Contribution" shall mean any work of authorship, including 437 | the original version of the Work and any modifications or additions 438 | to that Work or Derivative Works thereof, that is intentionally 439 | submitted to Licensor for inclusion in the Work by the copyright owner 440 | or by an individual or Legal Entity authorized to submit on behalf of 441 | the copyright owner. For the purposes of this definition, "submitted" 442 | means any form of electronic, verbal, or written communication sent 443 | to the Licensor or its representatives, including but not limited to 444 | communication on electronic mailing lists, source code control systems, 445 | and issue tracking systems that are managed by, or on behalf of, the 446 | Licensor for the purpose of discussing and improving the Work, but 447 | excluding communication that is conspicuously marked or otherwise 448 | designated in writing by the copyright owner as "Not a Contribution." 449 | 450 | "Contributor" shall mean Licensor and any individual or Legal Entity 451 | on behalf of whom a Contribution has been received by Licensor and 452 | subsequently incorporated within the Work. 453 | 454 | 2. Grant of Copyright License. Subject to the terms and conditions of 455 | this License, each Contributor hereby grants to You a perpetual, 456 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 457 | copyright license to reproduce, prepare Derivative Works of, 458 | publicly display, publicly perform, sublicense, and distribute the 459 | Work and such Derivative Works in Source or Object form. 460 | 461 | 3. Grant of Patent License. Subject to the terms and conditions of 462 | this License, each Contributor hereby grants to You a perpetual, 463 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 464 | (except as stated in this section) patent license to make, have made, 465 | use, offer to sell, sell, import, and otherwise transfer the Work, 466 | where such license applies only to those patent claims licensable 467 | by such Contributor that are necessarily infringed by their 468 | Contribution(s) alone or by combination of their Contribution(s) 469 | with the Work to which such Contribution(s) was submitted. If You 470 | institute patent litigation against any entity (including a 471 | cross-claim or counterclaim in a lawsuit) alleging that the Work 472 | or a Contribution incorporated within the Work constitutes direct 473 | or contributory patent infringement, then any patent licenses 474 | granted to You under this License for that Work shall terminate 475 | as of the date such litigation is filed. 476 | 477 | 4. Redistribution. You may reproduce and distribute copies of the 478 | Work or Derivative Works thereof in any medium, with or without 479 | modifications, and in Source or Object form, provided that You 480 | meet the following conditions: 481 | 482 | (a) You must give any other recipients of the Work or 483 | Derivative Works a copy of this License; and 484 | 485 | (b) You must cause any modified files to carry prominent notices 486 | stating that You changed the files; and 487 | 488 | (c) You must retain, in the Source form of any Derivative Works 489 | that You distribute, all copyright, patent, trademark, and 490 | attribution notices from the Source form of the Work, 491 | excluding those notices that do not pertain to any part of 492 | the Derivative Works; and 493 | 494 | (d) If the Work includes a "NOTICE" text file as part of its 495 | distribution, then any Derivative Works that You distribute must 496 | include a readable copy of the attribution notices contained 497 | within such NOTICE file, excluding those notices that do not 498 | pertain to any part of the Derivative Works, in at least one 499 | of the following places: within a NOTICE text file distributed 500 | as part of the Derivative Works; within the Source form or 501 | documentation, if provided along with the Derivative Works; or, 502 | within a display generated by the Derivative Works, if and 503 | wherever such third-party notices normally appear. The contents 504 | of the NOTICE file are for informational purposes only and 505 | do not modify the License. You may add Your own attribution 506 | notices within Derivative Works that You distribute, alongside 507 | or as an addendum to the NOTICE text from the Work, provided 508 | that such additional attribution notices cannot be construed 509 | as modifying the License. 510 | 511 | You may add Your own copyright statement to Your modifications and 512 | may provide additional or different license terms and conditions 513 | for use, reproduction, or distribution of Your modifications, or 514 | for any such Derivative Works as a whole, provided Your use, 515 | reproduction, and distribution of the Work otherwise complies with 516 | the conditions stated in this License. 517 | 518 | 5. Submission of Contributions. Unless You explicitly state otherwise, 519 | any Contribution intentionally submitted for inclusion in the Work 520 | by You to the Licensor shall be under the terms and conditions of 521 | this License, without any additional terms or conditions. 522 | Notwithstanding the above, nothing herein shall supersede or modify 523 | the terms of any separate license agreement you may have executed 524 | with Licensor regarding such Contributions. 525 | 526 | 6. Trademarks. This License does not grant permission to use the trade 527 | names, trademarks, service marks, or product names of the Licensor, 528 | except as required for reasonable and customary use in describing the 529 | origin of the Work and reproducing the content of the NOTICE file. 530 | 531 | 7. Disclaimer of Warranty. Unless required by applicable law or 532 | agreed to in writing, Licensor provides the Work (and each 533 | Contributor provides its Contributions) on an "AS IS" BASIS, 534 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 535 | implied, including, without limitation, any warranties or conditions 536 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 537 | PARTICULAR PURPOSE. You are solely responsible for determining the 538 | appropriateness of using or redistributing the Work and assume any 539 | risks associated with Your exercise of permissions under this License. 540 | 541 | 8. Limitation of Liability. In no event and under no legal theory, 542 | whether in tort (including negligence), contract, or otherwise, 543 | unless required by applicable law (such as deliberate and grossly 544 | negligent acts) or agreed to in writing, shall any Contributor be 545 | liable to You for damages, including any direct, indirect, special, 546 | incidental, or consequential damages of any character arising as a 547 | result of this License or out of the use or inability to use the 548 | Work (including but not limited to damages for loss of goodwill, 549 | work stoppage, computer failure or malfunction, or any and all 550 | other commercial damages or losses), even if such Contributor 551 | has been advised of the possibility of such damages. 552 | 553 | 9. Accepting Warranty or Additional Liability. While redistributing 554 | the Work or Derivative Works thereof, You may choose to offer, 555 | and charge a fee for, acceptance of support, warranty, indemnity, 556 | or other liability obligations and/or rights consistent with this 557 | License. However, in accepting such obligations, You may act only 558 | on Your own behalf and on Your sole responsibility, not on behalf 559 | of any other Contributor, and only if You agree to indemnify, 560 | defend, and hold each Contributor harmless for any liability 561 | incurred by, or claims asserted against, such Contributor by reason 562 | of your accepting any such warranty or additional liability. 563 | 564 | END OF TERMS AND CONDITIONS 565 | 566 | This software is copyrighted by the Regents of the University of 567 | California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState 568 | Corporation and other parties. The following terms apply to all files 569 | associated with the software unless explicitly disclaimed in 570 | individual files. 571 | 572 | The authors hereby grant permission to use, copy, modify, distribute, 573 | and license this software and its documentation for any purpose, provided 574 | that existing copyright notices are retained in all copies and that this 575 | notice is included verbatim in any distributions. No written agreement, 576 | license, or royalty fee is required for any of the authorized uses. 577 | Modifications to this software may be copyrighted by their authors 578 | and need not follow the licensing terms described here, provided that 579 | the new terms are clearly indicated on the first page of each file where 580 | they apply. 581 | 582 | IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY 583 | FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 584 | ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY 585 | DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE 586 | POSSIBILITY OF SUCH DAMAGE. 587 | 588 | THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, 589 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, 590 | FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE 591 | IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE 592 | NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR 593 | MODIFICATIONS. 594 | 595 | GOVERNMENT USE: If you are acquiring this software on behalf of the 596 | U.S. government, the Government shall have only "Restricted Rights" 597 | in the software and related documentation as defined in the Federal 598 | Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you 599 | are acquiring the software on behalf of the Department of Defense, the 600 | software shall be classified as "Commercial Computer Software" and the 601 | Government shall have only "Restricted Rights" as defined in Clause 602 | 252.227-7014 (b) (3) of DFARs. Notwithstanding the foregoing, the 603 | authors grant the U.S. Government and others acting in its behalf 604 | permission to use and distribute the software in accordance with the 605 | terms specified in this license. 606 | 607 | This software is copyrighted by the Regents of the University of 608 | California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState 609 | Corporation, Apple Inc. and other parties. The following terms apply to 610 | all files associated with the software unless explicitly disclaimed in 611 | individual files. 612 | 613 | The authors hereby grant permission to use, copy, modify, distribute, 614 | and license this software and its documentation for any purpose, provided 615 | that existing copyright notices are retained in all copies and that this 616 | notice is included verbatim in any distributions. No written agreement, 617 | license, or royalty fee is required for any of the authorized uses. 618 | Modifications to this software may be copyrighted by their authors 619 | and need not follow the licensing terms described here, provided that 620 | the new terms are clearly indicated on the first page of each file where 621 | they apply. 622 | 623 | IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY 624 | FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 625 | ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY 626 | DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE 627 | POSSIBILITY OF SUCH DAMAGE. 628 | 629 | THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, 630 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, 631 | FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE 632 | IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE 633 | NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR 634 | MODIFICATIONS. 635 | 636 | GOVERNMENT USE: If you are acquiring this software on behalf of the 637 | U.S. government, the Government shall have only "Restricted Rights" 638 | in the software and related documentation as defined in the Federal 639 | Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you 640 | are acquiring the software on behalf of the Department of Defense, the 641 | software shall be classified as "Commercial Computer Software" and the 642 | Government shall have only "Restricted Rights" as defined in Clause 643 | 252.227-7013 (b) (3) of DFARs. Notwithstanding the foregoing, the 644 | authors grant the U.S. Government and others acting in its behalf 645 | permission to use and distribute the software in accordance with the 646 | terms specified in this license. 647 | 648 | Copyright (c) 1993-1999 Ioi Kim Lam. 649 | Copyright (c) 2000-2001 Tix Project Group. 650 | Copyright (c) 2004 ActiveState 651 | 652 | This software is copyrighted by the above entities 653 | and other parties. The following terms apply to all files associated 654 | with the software unless explicitly disclaimed in individual files. 655 | 656 | The authors hereby grant permission to use, copy, modify, distribute, 657 | and license this software and its documentation for any purpose, provided 658 | that existing copyright notices are retained in all copies and that this 659 | notice is included verbatim in any distributions. No written agreement, 660 | license, or royalty fee is required for any of the authorized uses. 661 | Modifications to this software may be copyrighted by their authors 662 | and need not follow the licensing terms described here, provided that 663 | the new terms are clearly indicated on the first page of each file where 664 | they apply. 665 | 666 | IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY 667 | FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 668 | ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY 669 | DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE 670 | POSSIBILITY OF SUCH DAMAGE. 671 | 672 | THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, 673 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, 674 | FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE 675 | IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE 676 | NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR 677 | MODIFICATIONS. 678 | 679 | GOVERNMENT USE: If you are acquiring this software on behalf of the 680 | U.S. government, the Government shall have only "Restricted Rights" 681 | in the software and related documentation as defined in the Federal 682 | Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you 683 | are acquiring the software on behalf of the Department of Defense, the 684 | software shall be classified as "Commercial Computer Software" and the 685 | Government shall have only "Restricted Rights" as defined in Clause 686 | 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the 687 | authors grant the U.S. Government and others acting in its behalf 688 | permission to use and distribute the software in accordance with the 689 | terms specified in this license. 690 | 691 | ---------------------------------------------------------------------- 692 | 693 | Parts of this software are based on the Tcl/Tk software copyrighted by 694 | the Regents of the University of California, Sun Microsystems, Inc., 695 | and other parties. The original license terms of the Tcl/Tk software 696 | distribution is included in the file docs/license.tcltk. 697 | 698 | Parts of this software are based on the HTML Library software 699 | copyrighted by Sun Microsystems, Inc. The original license terms of 700 | the HTML Library software distribution is included in the file 701 | docs/license.html_lib. 702 | 703 | -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_asyncio.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_asyncio.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_bz2.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_ctypes.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_decimal.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_decimal.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_elementtree.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_hashlib.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_lzma.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_msi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_msi.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_multiprocessing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_multiprocessing.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_overlapped.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_overlapped.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_queue.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_queue.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_socket.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_sqlite3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_sqlite3.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_ssl.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_uuid.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_uuid.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_wmi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_wmi.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/_zoneinfo.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/_zoneinfo.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/libcrypto-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/libcrypto-3.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/libffi-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/libffi-8.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/libssl-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/libssl-3.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/pyexpat.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/python.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/python.cat -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/python.exe -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/python3.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/python312._pth: -------------------------------------------------------------------------------- 1 | python312.zip 2 | . 3 | 4 | # Uncomment to run site.main() automatically 5 | #import site 6 | -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/python312.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/python312.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/python312.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/python312.zip -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/pythonw.exe -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/select.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/sqlite3.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/unicodedata.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/vcruntime140.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/vcruntime140_1.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-amd64/winsound.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-amd64/winsound.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/LICENSE.txt: -------------------------------------------------------------------------------- 1 | A. HISTORY OF THE SOFTWARE 2 | ========================== 3 | 4 | Python was created in the early 1990s by Guido van Rossum at Stichting 5 | Mathematisch Centrum (CWI, see https://www.cwi.nl) in the Netherlands 6 | as a successor of a language called ABC. Guido remains Python's 7 | principal author, although it includes many contributions from others. 8 | 9 | In 1995, Guido continued his work on Python at the Corporation for 10 | National Research Initiatives (CNRI, see https://www.cnri.reston.va.us) 11 | in Reston, Virginia where he released several versions of the 12 | software. 13 | 14 | In May 2000, Guido and the Python core development team moved to 15 | BeOpen.com to form the BeOpen PythonLabs team. In October of the same 16 | year, the PythonLabs team moved to Digital Creations, which became 17 | Zope Corporation. In 2001, the Python Software Foundation (PSF, see 18 | https://www.python.org/psf/) was formed, a non-profit organization 19 | created specifically to own Python-related Intellectual Property. 20 | Zope Corporation was a sponsoring member of the PSF. 21 | 22 | All Python releases are Open Source (see https://opensource.org for 23 | the Open Source Definition). Historically, most, but not all, Python 24 | releases have also been GPL-compatible; the table below summarizes 25 | the various releases. 26 | 27 | Release Derived Year Owner GPL- 28 | from compatible? (1) 29 | 30 | 0.9.0 thru 1.2 1991-1995 CWI yes 31 | 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes 32 | 1.6 1.5.2 2000 CNRI no 33 | 2.0 1.6 2000 BeOpen.com no 34 | 1.6.1 1.6 2001 CNRI yes (2) 35 | 2.1 2.0+1.6.1 2001 PSF no 36 | 2.0.1 2.0+1.6.1 2001 PSF yes 37 | 2.1.1 2.1+2.0.1 2001 PSF yes 38 | 2.1.2 2.1.1 2002 PSF yes 39 | 2.1.3 2.1.2 2002 PSF yes 40 | 2.2 and above 2.1.1 2001-now PSF yes 41 | 42 | Footnotes: 43 | 44 | (1) GPL-compatible doesn't mean that we're distributing Python under 45 | the GPL. All Python licenses, unlike the GPL, let you distribute 46 | a modified version without making your changes open source. The 47 | GPL-compatible licenses make it possible to combine Python with 48 | other software that is released under the GPL; the others don't. 49 | 50 | (2) According to Richard Stallman, 1.6.1 is not GPL-compatible, 51 | because its license has a choice of law clause. According to 52 | CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 53 | is "not incompatible" with the GPL. 54 | 55 | Thanks to the many outside volunteers who have worked under Guido's 56 | direction to make these releases possible. 57 | 58 | 59 | B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON 60 | =============================================================== 61 | 62 | Python software and documentation are licensed under the 63 | Python Software Foundation License Version 2. 64 | 65 | Starting with Python 3.8.6, examples, recipes, and other code in 66 | the documentation are dual licensed under the PSF License Version 2 67 | and the Zero-Clause BSD license. 68 | 69 | Some software incorporated into Python is under different licenses. 70 | The licenses are listed with code falling under that license. 71 | 72 | 73 | PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 74 | -------------------------------------------- 75 | 76 | 1. This LICENSE AGREEMENT is between the Python Software Foundation 77 | ("PSF"), and the Individual or Organization ("Licensee") accessing and 78 | otherwise using this software ("Python") in source or binary form and 79 | its associated documentation. 80 | 81 | 2. Subject to the terms and conditions of this License Agreement, PSF hereby 82 | grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, 83 | analyze, test, perform and/or display publicly, prepare derivative works, 84 | distribute, and otherwise use Python alone or in any derivative version, 85 | provided, however, that PSF's License Agreement and PSF's notice of copyright, 86 | i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 87 | 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Python Software Foundation; 88 | All Rights Reserved" are retained in Python alone or in any derivative version 89 | prepared by Licensee. 90 | 91 | 3. In the event Licensee prepares a derivative work that is based on 92 | or incorporates Python or any part thereof, and wants to make 93 | the derivative work available to others as provided herein, then 94 | Licensee hereby agrees to include in any such work a brief summary of 95 | the changes made to Python. 96 | 97 | 4. PSF is making Python available to Licensee on an "AS IS" 98 | basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR 99 | IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND 100 | DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS 101 | FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT 102 | INFRINGE ANY THIRD PARTY RIGHTS. 103 | 104 | 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 105 | FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS 106 | A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, 107 | OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. 108 | 109 | 6. This License Agreement will automatically terminate upon a material 110 | breach of its terms and conditions. 111 | 112 | 7. Nothing in this License Agreement shall be deemed to create any 113 | relationship of agency, partnership, or joint venture between PSF and 114 | Licensee. This License Agreement does not grant permission to use PSF 115 | trademarks or trade name in a trademark sense to endorse or promote 116 | products or services of Licensee, or any third party. 117 | 118 | 8. By copying, installing or otherwise using Python, Licensee 119 | agrees to be bound by the terms and conditions of this License 120 | Agreement. 121 | 122 | 123 | BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 124 | ------------------------------------------- 125 | 126 | BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 127 | 128 | 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an 129 | office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the 130 | Individual or Organization ("Licensee") accessing and otherwise using 131 | this software in source or binary form and its associated 132 | documentation ("the Software"). 133 | 134 | 2. Subject to the terms and conditions of this BeOpen Python License 135 | Agreement, BeOpen hereby grants Licensee a non-exclusive, 136 | royalty-free, world-wide license to reproduce, analyze, test, perform 137 | and/or display publicly, prepare derivative works, distribute, and 138 | otherwise use the Software alone or in any derivative version, 139 | provided, however, that the BeOpen Python License is retained in the 140 | Software, alone or in any derivative version prepared by Licensee. 141 | 142 | 3. BeOpen is making the Software available to Licensee on an "AS IS" 143 | basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR 144 | IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND 145 | DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS 146 | FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT 147 | INFRINGE ANY THIRD PARTY RIGHTS. 148 | 149 | 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE 150 | SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS 151 | AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY 152 | DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. 153 | 154 | 5. This License Agreement will automatically terminate upon a material 155 | breach of its terms and conditions. 156 | 157 | 6. This License Agreement shall be governed by and interpreted in all 158 | respects by the law of the State of California, excluding conflict of 159 | law provisions. Nothing in this License Agreement shall be deemed to 160 | create any relationship of agency, partnership, or joint venture 161 | between BeOpen and Licensee. This License Agreement does not grant 162 | permission to use BeOpen trademarks or trade names in a trademark 163 | sense to endorse or promote products or services of Licensee, or any 164 | third party. As an exception, the "BeOpen Python" logos available at 165 | http://www.pythonlabs.com/logos.html may be used according to the 166 | permissions granted on that web page. 167 | 168 | 7. By copying, installing or otherwise using the software, Licensee 169 | agrees to be bound by the terms and conditions of this License 170 | Agreement. 171 | 172 | 173 | CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 174 | --------------------------------------- 175 | 176 | 1. This LICENSE AGREEMENT is between the Corporation for National 177 | Research Initiatives, having an office at 1895 Preston White Drive, 178 | Reston, VA 20191 ("CNRI"), and the Individual or Organization 179 | ("Licensee") accessing and otherwise using Python 1.6.1 software in 180 | source or binary form and its associated documentation. 181 | 182 | 2. Subject to the terms and conditions of this License Agreement, CNRI 183 | hereby grants Licensee a nonexclusive, royalty-free, world-wide 184 | license to reproduce, analyze, test, perform and/or display publicly, 185 | prepare derivative works, distribute, and otherwise use Python 1.6.1 186 | alone or in any derivative version, provided, however, that CNRI's 187 | License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) 188 | 1995-2001 Corporation for National Research Initiatives; All Rights 189 | Reserved" are retained in Python 1.6.1 alone or in any derivative 190 | version prepared by Licensee. Alternately, in lieu of CNRI's License 191 | Agreement, Licensee may substitute the following text (omitting the 192 | quotes): "Python 1.6.1 is made available subject to the terms and 193 | conditions in CNRI's License Agreement. This Agreement together with 194 | Python 1.6.1 may be located on the internet using the following 195 | unique, persistent identifier (known as a handle): 1895.22/1013. This 196 | Agreement may also be obtained from a proxy server on the internet 197 | using the following URL: http://hdl.handle.net/1895.22/1013". 198 | 199 | 3. In the event Licensee prepares a derivative work that is based on 200 | or incorporates Python 1.6.1 or any part thereof, and wants to make 201 | the derivative work available to others as provided herein, then 202 | Licensee hereby agrees to include in any such work a brief summary of 203 | the changes made to Python 1.6.1. 204 | 205 | 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" 206 | basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR 207 | IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND 208 | DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS 209 | FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT 210 | INFRINGE ANY THIRD PARTY RIGHTS. 211 | 212 | 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 213 | 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS 214 | A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, 215 | OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. 216 | 217 | 6. This License Agreement will automatically terminate upon a material 218 | breach of its terms and conditions. 219 | 220 | 7. This License Agreement shall be governed by the federal 221 | intellectual property law of the United States, including without 222 | limitation the federal copyright law, and, to the extent such 223 | U.S. federal law does not apply, by the law of the Commonwealth of 224 | Virginia, excluding Virginia's conflict of law provisions. 225 | Notwithstanding the foregoing, with regard to derivative works based 226 | on Python 1.6.1 that incorporate non-separable material that was 227 | previously distributed under the GNU General Public License (GPL), the 228 | law of the Commonwealth of Virginia shall govern this License 229 | Agreement only as to issues arising under or with respect to 230 | Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this 231 | License Agreement shall be deemed to create any relationship of 232 | agency, partnership, or joint venture between CNRI and Licensee. This 233 | License Agreement does not grant permission to use CNRI trademarks or 234 | trade name in a trademark sense to endorse or promote products or 235 | services of Licensee, or any third party. 236 | 237 | 8. By clicking on the "ACCEPT" button where indicated, or by copying, 238 | installing or otherwise using Python 1.6.1, Licensee agrees to be 239 | bound by the terms and conditions of this License Agreement. 240 | 241 | ACCEPT 242 | 243 | 244 | CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 245 | -------------------------------------------------- 246 | 247 | Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, 248 | The Netherlands. All rights reserved. 249 | 250 | Permission to use, copy, modify, and distribute this software and its 251 | documentation for any purpose and without fee is hereby granted, 252 | provided that the above copyright notice appear in all copies and that 253 | both that copyright notice and this permission notice appear in 254 | supporting documentation, and that the name of Stichting Mathematisch 255 | Centrum or CWI not be used in advertising or publicity pertaining to 256 | distribution of the software without specific, written prior 257 | permission. 258 | 259 | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO 260 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 261 | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE 262 | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 263 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 264 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT 265 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 266 | 267 | ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION 268 | ---------------------------------------------------------------------- 269 | 270 | Permission to use, copy, modify, and/or distribute this software for any 271 | purpose with or without fee is hereby granted. 272 | 273 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 274 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 275 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 276 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 277 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 278 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 279 | PERFORMANCE OF THIS SOFTWARE. 280 | 281 | 282 | 283 | Additional Conditions for this Windows binary build 284 | --------------------------------------------------- 285 | 286 | This program is linked with and uses Microsoft Distributable Code, 287 | copyrighted by Microsoft Corporation. The Microsoft Distributable Code 288 | is embedded in each .exe, .dll and .pyd file as a result of running 289 | the code through a linker. 290 | 291 | If you further distribute programs that include the Microsoft 292 | Distributable Code, you must comply with the restrictions on 293 | distribution specified by Microsoft. In particular, you must require 294 | distributors and external end users to agree to terms that protect the 295 | Microsoft Distributable Code at least as much as Microsoft's own 296 | requirements for the Distributable Code. See Microsoft's documentation 297 | (included in its developer tools and on its website at microsoft.com) 298 | for specific details. 299 | 300 | Redistribution of the Windows binary build of the Python interpreter 301 | complies with this agreement, provided that you do not: 302 | 303 | - alter any copyright, trademark or patent notice in Microsoft's 304 | Distributable Code; 305 | 306 | - use Microsoft's trademarks in your programs' names or in a way that 307 | suggests your programs come from or are endorsed by Microsoft; 308 | 309 | - distribute Microsoft's Distributable Code to run on a platform other 310 | than Microsoft operating systems, run-time technologies or application 311 | platforms; or 312 | 313 | - include Microsoft Distributable Code in malicious, deceptive or 314 | unlawful programs. 315 | 316 | These restrictions apply only to the Microsoft Distributable Code as 317 | defined above, not to Python itself or any programs running on the 318 | Python interpreter. The redistribution of the Python interpreter and 319 | libraries is governed by the Python Software License included with this 320 | file, or by other licenses as marked. 321 | 322 | 323 | 324 | -------------------------------------------------------------------------- 325 | 326 | This program, "bzip2", the associated library "libbzip2", and all 327 | documentation, are copyright (C) 1996-2019 Julian R Seward. All 328 | rights reserved. 329 | 330 | Redistribution and use in source and binary forms, with or without 331 | modification, are permitted provided that the following conditions 332 | are met: 333 | 334 | 1. Redistributions of source code must retain the above copyright 335 | notice, this list of conditions and the following disclaimer. 336 | 337 | 2. The origin of this software must not be misrepresented; you must 338 | not claim that you wrote the original software. If you use this 339 | software in a product, an acknowledgment in the product 340 | documentation would be appreciated but is not required. 341 | 342 | 3. Altered source versions must be plainly marked as such, and must 343 | not be misrepresented as being the original software. 344 | 345 | 4. The name of the author may not be used to endorse or promote 346 | products derived from this software without specific prior written 347 | permission. 348 | 349 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 350 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 351 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 352 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 353 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 354 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 355 | GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 356 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 357 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 358 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 359 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 360 | 361 | Julian Seward, jseward@acm.org 362 | bzip2/libbzip2 version 1.0.8 of 13 July 2019 363 | 364 | -------------------------------------------------------------------------- 365 | 366 | libffi - Copyright (c) 1996-2022 Anthony Green, Red Hat, Inc and others. 367 | See source files for details. 368 | 369 | Permission is hereby granted, free of charge, to any person obtaining 370 | a copy of this software and associated documentation files (the 371 | ``Software''), to deal in the Software without restriction, including 372 | without limitation the rights to use, copy, modify, merge, publish, 373 | distribute, sublicense, and/or sell copies of the Software, and to 374 | permit persons to whom the Software is furnished to do so, subject to 375 | the following conditions: 376 | 377 | The above copyright notice and this permission notice shall be 378 | included in all copies or substantial portions of the Software. 379 | 380 | THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, 381 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 382 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 383 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 384 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 385 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 386 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 387 | 388 | 389 | Apache License 390 | Version 2.0, January 2004 391 | https://www.apache.org/licenses/ 392 | 393 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 394 | 395 | 1. Definitions. 396 | 397 | "License" shall mean the terms and conditions for use, reproduction, 398 | and distribution as defined by Sections 1 through 9 of this document. 399 | 400 | "Licensor" shall mean the copyright owner or entity authorized by 401 | the copyright owner that is granting the License. 402 | 403 | "Legal Entity" shall mean the union of the acting entity and all 404 | other entities that control, are controlled by, or are under common 405 | control with that entity. For the purposes of this definition, 406 | "control" means (i) the power, direct or indirect, to cause the 407 | direction or management of such entity, whether by contract or 408 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 409 | outstanding shares, or (iii) beneficial ownership of such entity. 410 | 411 | "You" (or "Your") shall mean an individual or Legal Entity 412 | exercising permissions granted by this License. 413 | 414 | "Source" form shall mean the preferred form for making modifications, 415 | including but not limited to software source code, documentation 416 | source, and configuration files. 417 | 418 | "Object" form shall mean any form resulting from mechanical 419 | transformation or translation of a Source form, including but 420 | not limited to compiled object code, generated documentation, 421 | and conversions to other media types. 422 | 423 | "Work" shall mean the work of authorship, whether in Source or 424 | Object form, made available under the License, as indicated by a 425 | copyright notice that is included in or attached to the work 426 | (an example is provided in the Appendix below). 427 | 428 | "Derivative Works" shall mean any work, whether in Source or Object 429 | form, that is based on (or derived from) the Work and for which the 430 | editorial revisions, annotations, elaborations, or other modifications 431 | represent, as a whole, an original work of authorship. For the purposes 432 | of this License, Derivative Works shall not include works that remain 433 | separable from, or merely link (or bind by name) to the interfaces of, 434 | the Work and Derivative Works thereof. 435 | 436 | "Contribution" shall mean any work of authorship, including 437 | the original version of the Work and any modifications or additions 438 | to that Work or Derivative Works thereof, that is intentionally 439 | submitted to Licensor for inclusion in the Work by the copyright owner 440 | or by an individual or Legal Entity authorized to submit on behalf of 441 | the copyright owner. For the purposes of this definition, "submitted" 442 | means any form of electronic, verbal, or written communication sent 443 | to the Licensor or its representatives, including but not limited to 444 | communication on electronic mailing lists, source code control systems, 445 | and issue tracking systems that are managed by, or on behalf of, the 446 | Licensor for the purpose of discussing and improving the Work, but 447 | excluding communication that is conspicuously marked or otherwise 448 | designated in writing by the copyright owner as "Not a Contribution." 449 | 450 | "Contributor" shall mean Licensor and any individual or Legal Entity 451 | on behalf of whom a Contribution has been received by Licensor and 452 | subsequently incorporated within the Work. 453 | 454 | 2. Grant of Copyright License. Subject to the terms and conditions of 455 | this License, each Contributor hereby grants to You a perpetual, 456 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 457 | copyright license to reproduce, prepare Derivative Works of, 458 | publicly display, publicly perform, sublicense, and distribute the 459 | Work and such Derivative Works in Source or Object form. 460 | 461 | 3. Grant of Patent License. Subject to the terms and conditions of 462 | this License, each Contributor hereby grants to You a perpetual, 463 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 464 | (except as stated in this section) patent license to make, have made, 465 | use, offer to sell, sell, import, and otherwise transfer the Work, 466 | where such license applies only to those patent claims licensable 467 | by such Contributor that are necessarily infringed by their 468 | Contribution(s) alone or by combination of their Contribution(s) 469 | with the Work to which such Contribution(s) was submitted. If You 470 | institute patent litigation against any entity (including a 471 | cross-claim or counterclaim in a lawsuit) alleging that the Work 472 | or a Contribution incorporated within the Work constitutes direct 473 | or contributory patent infringement, then any patent licenses 474 | granted to You under this License for that Work shall terminate 475 | as of the date such litigation is filed. 476 | 477 | 4. Redistribution. You may reproduce and distribute copies of the 478 | Work or Derivative Works thereof in any medium, with or without 479 | modifications, and in Source or Object form, provided that You 480 | meet the following conditions: 481 | 482 | (a) You must give any other recipients of the Work or 483 | Derivative Works a copy of this License; and 484 | 485 | (b) You must cause any modified files to carry prominent notices 486 | stating that You changed the files; and 487 | 488 | (c) You must retain, in the Source form of any Derivative Works 489 | that You distribute, all copyright, patent, trademark, and 490 | attribution notices from the Source form of the Work, 491 | excluding those notices that do not pertain to any part of 492 | the Derivative Works; and 493 | 494 | (d) If the Work includes a "NOTICE" text file as part of its 495 | distribution, then any Derivative Works that You distribute must 496 | include a readable copy of the attribution notices contained 497 | within such NOTICE file, excluding those notices that do not 498 | pertain to any part of the Derivative Works, in at least one 499 | of the following places: within a NOTICE text file distributed 500 | as part of the Derivative Works; within the Source form or 501 | documentation, if provided along with the Derivative Works; or, 502 | within a display generated by the Derivative Works, if and 503 | wherever such third-party notices normally appear. The contents 504 | of the NOTICE file are for informational purposes only and 505 | do not modify the License. You may add Your own attribution 506 | notices within Derivative Works that You distribute, alongside 507 | or as an addendum to the NOTICE text from the Work, provided 508 | that such additional attribution notices cannot be construed 509 | as modifying the License. 510 | 511 | You may add Your own copyright statement to Your modifications and 512 | may provide additional or different license terms and conditions 513 | for use, reproduction, or distribution of Your modifications, or 514 | for any such Derivative Works as a whole, provided Your use, 515 | reproduction, and distribution of the Work otherwise complies with 516 | the conditions stated in this License. 517 | 518 | 5. Submission of Contributions. Unless You explicitly state otherwise, 519 | any Contribution intentionally submitted for inclusion in the Work 520 | by You to the Licensor shall be under the terms and conditions of 521 | this License, without any additional terms or conditions. 522 | Notwithstanding the above, nothing herein shall supersede or modify 523 | the terms of any separate license agreement you may have executed 524 | with Licensor regarding such Contributions. 525 | 526 | 6. Trademarks. This License does not grant permission to use the trade 527 | names, trademarks, service marks, or product names of the Licensor, 528 | except as required for reasonable and customary use in describing the 529 | origin of the Work and reproducing the content of the NOTICE file. 530 | 531 | 7. Disclaimer of Warranty. Unless required by applicable law or 532 | agreed to in writing, Licensor provides the Work (and each 533 | Contributor provides its Contributions) on an "AS IS" BASIS, 534 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 535 | implied, including, without limitation, any warranties or conditions 536 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 537 | PARTICULAR PURPOSE. You are solely responsible for determining the 538 | appropriateness of using or redistributing the Work and assume any 539 | risks associated with Your exercise of permissions under this License. 540 | 541 | 8. Limitation of Liability. In no event and under no legal theory, 542 | whether in tort (including negligence), contract, or otherwise, 543 | unless required by applicable law (such as deliberate and grossly 544 | negligent acts) or agreed to in writing, shall any Contributor be 545 | liable to You for damages, including any direct, indirect, special, 546 | incidental, or consequential damages of any character arising as a 547 | result of this License or out of the use or inability to use the 548 | Work (including but not limited to damages for loss of goodwill, 549 | work stoppage, computer failure or malfunction, or any and all 550 | other commercial damages or losses), even if such Contributor 551 | has been advised of the possibility of such damages. 552 | 553 | 9. Accepting Warranty or Additional Liability. While redistributing 554 | the Work or Derivative Works thereof, You may choose to offer, 555 | and charge a fee for, acceptance of support, warranty, indemnity, 556 | or other liability obligations and/or rights consistent with this 557 | License. However, in accepting such obligations, You may act only 558 | on Your own behalf and on Your sole responsibility, not on behalf 559 | of any other Contributor, and only if You agree to indemnify, 560 | defend, and hold each Contributor harmless for any liability 561 | incurred by, or claims asserted against, such Contributor by reason 562 | of your accepting any such warranty or additional liability. 563 | 564 | END OF TERMS AND CONDITIONS 565 | 566 | This software is copyrighted by the Regents of the University of 567 | California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState 568 | Corporation and other parties. The following terms apply to all files 569 | associated with the software unless explicitly disclaimed in 570 | individual files. 571 | 572 | The authors hereby grant permission to use, copy, modify, distribute, 573 | and license this software and its documentation for any purpose, provided 574 | that existing copyright notices are retained in all copies and that this 575 | notice is included verbatim in any distributions. No written agreement, 576 | license, or royalty fee is required for any of the authorized uses. 577 | Modifications to this software may be copyrighted by their authors 578 | and need not follow the licensing terms described here, provided that 579 | the new terms are clearly indicated on the first page of each file where 580 | they apply. 581 | 582 | IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY 583 | FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 584 | ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY 585 | DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE 586 | POSSIBILITY OF SUCH DAMAGE. 587 | 588 | THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, 589 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, 590 | FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE 591 | IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE 592 | NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR 593 | MODIFICATIONS. 594 | 595 | GOVERNMENT USE: If you are acquiring this software on behalf of the 596 | U.S. government, the Government shall have only "Restricted Rights" 597 | in the software and related documentation as defined in the Federal 598 | Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you 599 | are acquiring the software on behalf of the Department of Defense, the 600 | software shall be classified as "Commercial Computer Software" and the 601 | Government shall have only "Restricted Rights" as defined in Clause 602 | 252.227-7014 (b) (3) of DFARs. Notwithstanding the foregoing, the 603 | authors grant the U.S. Government and others acting in its behalf 604 | permission to use and distribute the software in accordance with the 605 | terms specified in this license. 606 | 607 | This software is copyrighted by the Regents of the University of 608 | California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState 609 | Corporation, Apple Inc. and other parties. The following terms apply to 610 | all files associated with the software unless explicitly disclaimed in 611 | individual files. 612 | 613 | The authors hereby grant permission to use, copy, modify, distribute, 614 | and license this software and its documentation for any purpose, provided 615 | that existing copyright notices are retained in all copies and that this 616 | notice is included verbatim in any distributions. No written agreement, 617 | license, or royalty fee is required for any of the authorized uses. 618 | Modifications to this software may be copyrighted by their authors 619 | and need not follow the licensing terms described here, provided that 620 | the new terms are clearly indicated on the first page of each file where 621 | they apply. 622 | 623 | IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY 624 | FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 625 | ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY 626 | DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE 627 | POSSIBILITY OF SUCH DAMAGE. 628 | 629 | THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, 630 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, 631 | FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE 632 | IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE 633 | NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR 634 | MODIFICATIONS. 635 | 636 | GOVERNMENT USE: If you are acquiring this software on behalf of the 637 | U.S. government, the Government shall have only "Restricted Rights" 638 | in the software and related documentation as defined in the Federal 639 | Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you 640 | are acquiring the software on behalf of the Department of Defense, the 641 | software shall be classified as "Commercial Computer Software" and the 642 | Government shall have only "Restricted Rights" as defined in Clause 643 | 252.227-7013 (b) (3) of DFARs. Notwithstanding the foregoing, the 644 | authors grant the U.S. Government and others acting in its behalf 645 | permission to use and distribute the software in accordance with the 646 | terms specified in this license. 647 | 648 | Copyright (c) 1993-1999 Ioi Kim Lam. 649 | Copyright (c) 2000-2001 Tix Project Group. 650 | Copyright (c) 2004 ActiveState 651 | 652 | This software is copyrighted by the above entities 653 | and other parties. The following terms apply to all files associated 654 | with the software unless explicitly disclaimed in individual files. 655 | 656 | The authors hereby grant permission to use, copy, modify, distribute, 657 | and license this software and its documentation for any purpose, provided 658 | that existing copyright notices are retained in all copies and that this 659 | notice is included verbatim in any distributions. No written agreement, 660 | license, or royalty fee is required for any of the authorized uses. 661 | Modifications to this software may be copyrighted by their authors 662 | and need not follow the licensing terms described here, provided that 663 | the new terms are clearly indicated on the first page of each file where 664 | they apply. 665 | 666 | IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY 667 | FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 668 | ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY 669 | DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE 670 | POSSIBILITY OF SUCH DAMAGE. 671 | 672 | THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, 673 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, 674 | FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE 675 | IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE 676 | NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR 677 | MODIFICATIONS. 678 | 679 | GOVERNMENT USE: If you are acquiring this software on behalf of the 680 | U.S. government, the Government shall have only "Restricted Rights" 681 | in the software and related documentation as defined in the Federal 682 | Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you 683 | are acquiring the software on behalf of the Department of Defense, the 684 | software shall be classified as "Commercial Computer Software" and the 685 | Government shall have only "Restricted Rights" as defined in Clause 686 | 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the 687 | authors grant the U.S. Government and others acting in its behalf 688 | permission to use and distribute the software in accordance with the 689 | terms specified in this license. 690 | 691 | ---------------------------------------------------------------------- 692 | 693 | Parts of this software are based on the Tcl/Tk software copyrighted by 694 | the Regents of the University of California, Sun Microsystems, Inc., 695 | and other parties. The original license terms of the Tcl/Tk software 696 | distribution is included in the file docs/license.tcltk. 697 | 698 | Parts of this software are based on the HTML Library software 699 | copyrighted by Sun Microsystems, Inc. The original license terms of 700 | the HTML Library software distribution is included in the file 701 | docs/license.html_lib. 702 | 703 | -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_asyncio.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_asyncio.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_bz2.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_ctypes.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_decimal.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_decimal.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_elementtree.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_hashlib.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_lzma.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_msi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_msi.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_multiprocessing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_multiprocessing.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_overlapped.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_overlapped.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_queue.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_queue.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_socket.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_sqlite3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_sqlite3.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_ssl.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_uuid.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_uuid.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_wmi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_wmi.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/_zoneinfo.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/_zoneinfo.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/libcrypto-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/libcrypto-3.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/libffi-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/libffi-8.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/libssl-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/libssl-3.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/pyexpat.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/python.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/python.cat -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/python.exe -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/python3.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/python312._pth: -------------------------------------------------------------------------------- 1 | python312.zip 2 | . 3 | 4 | # Uncomment to run site.main() automatically 5 | #import site 6 | -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/python312.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/python312.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/python312.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/python312.zip -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/pythonw.exe -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/select.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/sqlite3.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/unicodedata.pyd -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/vcruntime140.dll -------------------------------------------------------------------------------- /python-3.12.0-embed-win32/winsound.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/python-3.12.0-embed-win32/winsound.pyd -------------------------------------------------------------------------------- /vx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/imaxV8/f7d28c4503c27916f694754fe0b4e4f859f320e8/vx.jpg --------------------------------------------------------------------------------