masai-framework 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. masai_framework-0.1.0/LICENSE +1483 -0
  2. masai_framework-0.1.0/MANIFEST.in +10 -0
  3. masai_framework-0.1.0/PKG-INFO +469 -0
  4. masai_framework-0.1.0/README.md +438 -0
  5. masai_framework-0.1.0/pyproject.toml +49 -0
  6. masai_framework-0.1.0/setup.cfg +4 -0
  7. masai_framework-0.1.0/src/masai/AgentManager/AgentManager.py +205 -0
  8. masai_framework-0.1.0/src/masai/AgentManager/__init__.py +1 -0
  9. masai_framework-0.1.0/src/masai/Agents/__init__.py +1 -0
  10. masai_framework-0.1.0/src/masai/Agents/singular_agent.py +316 -0
  11. masai_framework-0.1.0/src/masai/GenerativeModel/__init__.py +1 -0
  12. masai_framework-0.1.0/src/masai/GenerativeModel/baseGenerativeModel/basegenerativeModel.py +195 -0
  13. masai_framework-0.1.0/src/masai/GenerativeModel/generativeModels.py +203 -0
  14. masai_framework-0.1.0/src/masai/MultiAgents/MultiAgent.py +439 -0
  15. masai_framework-0.1.0/src/masai/MultiAgents/__init__.py +1 -0
  16. masai_framework-0.1.0/src/masai/OMAN/__init__.py +1 -0
  17. masai_framework-0.1.0/src/masai/OMAN/oman.py +132 -0
  18. masai_framework-0.1.0/src/masai/Tools/PARSERs/json_parser.py +198 -0
  19. masai_framework-0.1.0/src/masai/Tools/__init__.py +23 -0
  20. masai_framework-0.1.0/src/masai/Tools/calendarTools.py +211 -0
  21. masai_framework-0.1.0/src/masai/Tools/emailTools.py +242 -0
  22. masai_framework-0.1.0/src/masai/Tools/logging_setup/logger.py +45 -0
  23. masai_framework-0.1.0/src/masai/Tools/mathTools.py +11 -0
  24. masai_framework-0.1.0/src/masai/Tools/searchTools.py +1075 -0
  25. masai_framework-0.1.0/src/masai/Tools/utilities/tokenGenerationTool.py +202 -0
  26. masai_framework-0.1.0/src/masai/Tools/visiontools.py +69 -0
  27. masai_framework-0.1.0/src/masai/__init__.py +1 -0
  28. masai_framework-0.1.0/src/masai/prompts/prompt_templates.py +62 -0
  29. masai_framework-0.1.0/src/masai/pydanticModels/AnswerModel.py +40 -0
  30. masai_framework-0.1.0/src/masai/pydanticModels/omanModel.py +13 -0
  31. masai_framework-0.1.0/src/masai/pydanticModels/supervisorModels.py +13 -0
  32. masai_framework-0.1.0/src/masai_framework.egg-info/PKG-INFO +469 -0
  33. masai_framework-0.1.0/src/masai_framework.egg-info/SOURCES.txt +34 -0
  34. masai_framework-0.1.0/src/masai_framework.egg-info/dependency_links.txt +1 -0
  35. masai_framework-0.1.0/src/masai_framework.egg-info/requires.txt +23 -0
  36. masai_framework-0.1.0/src/masai_framework.egg-info/top_level.txt +1 -0
@@ -0,0 +1,1483 @@
1
+ The following applies to all products licensed under the Apache 2.0 License:
2
+
3
+ You may not use the identified files except in compliance with the Apache License, Version 2.0 (the "License.")
4
+
5
+ You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. A copy of the license is also reproduced below.
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
8
+
9
+ See the License for the specific language governing permissions and limitations under the License.
10
+
11
+ Apache License
12
+
13
+ Version 2.0, January 2004
14
+
15
+ http://www.apache.org/licenses/
16
+
17
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
18
+
19
+ 1. Definitions.
20
+
21
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
22
+
23
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
24
+
25
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
26
+
27
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
28
+
29
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
32
+
33
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
34
+
35
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
36
+
37
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
38
+
39
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
40
+
41
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
42
+
43
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
44
+
45
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
46
+
47
+ (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
48
+
49
+ (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
50
+
51
+ (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
52
+
53
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
54
+
55
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
56
+
57
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work\ by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
58
+
59
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
60
+
61
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
62
+
63
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
64
+
65
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
66
+
67
+ END OF TERMS AND CONDITIONS
68
+
69
+ APPENDIX: How to apply the Apache License to your work
70
+
71
+ To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[ ]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
72
+
73
+ Copyright [yyyy] [name of copyright owner]
74
+
75
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
76
+
77
+ http://www.apache.org/licenses/LICENSE-2.0
78
+
79
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
80
+
81
+ Parent topic: Open Source Software License Text
82
+
83
+ GNU Lesser General Public License, Version 2.1
84
+ Preamble
85
+
86
+ The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users.
87
+
88
+ This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below.
89
+
90
+ When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things.
91
+
92
+ To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it.
93
+
94
+ For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights.
95
+
96
+ We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library.
97
+
98
+ To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others.
99
+
100
+ Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license.
101
+
102
+ Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs.
103
+
104
+ When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library.
105
+
106
+ We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances.
107
+
108
+ For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License.
109
+
110
+ In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system.
111
+
112
+ Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library.
113
+
114
+ The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run.
115
+
116
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
117
+
118
+ 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you".
119
+
120
+ A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables.
121
+
122
+ The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".)
123
+
124
+ "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library.
125
+
126
+ Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does.
127
+
128
+ 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library.
129
+
130
+ You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.
131
+
132
+ 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:
133
+
134
+ a) The modified work must itself be a software library.
135
+
136
+ b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change.
137
+
138
+ c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License.
139
+
140
+ d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful.
141
+
142
+ (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.)
143
+
144
+ These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.
145
+
146
+ Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library.
147
+
148
+ In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.
149
+
150
+ 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices.
151
+
152
+ Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy.
153
+
154
+ This option is useful when you wish to copy part of the code of the Library into a program that is not a library.
155
+
156
+ 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange.
157
+
158
+ If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code.
159
+
160
+ 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License.
161
+
162
+ However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables.
163
+
164
+ When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law.
165
+
166
+ If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.)
167
+
168
+ Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself.
169
+
170
+ 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications.
171
+
172
+ You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things:
173
+
174
+ a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.)
175
+
176
+ b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with.
177
+
178
+ c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution.
179
+
180
+ d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place.
181
+
182
+ e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy.
183
+
184
+ For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.
185
+
186
+ It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute.
187
+
188
+ 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things:
189
+
190
+ a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above.
191
+
192
+ b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.
193
+
194
+ 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.
195
+
196
+ 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it.
197
+
198
+ 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License.
199
+
200
+ 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library.
201
+
202
+ If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances.
203
+
204
+ It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.
205
+
206
+ This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.
207
+
208
+ 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.
209
+
210
+ 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
211
+
212
+ Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation.
213
+
214
+ 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.
215
+
216
+ NO WARRANTY
217
+
218
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
219
+
220
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
221
+
222
+ END OF TERMS AND CONDITIONS
223
+
224
+ How to Apply These Terms to Your New Libraries
225
+
226
+ If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License).
227
+
228
+ To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.
229
+
230
+ one line to give the library's name and an idea of what it does. Copyright (C) year name of author This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
231
+
232
+ Also add information on how to contact you by electronic and paper mail.
233
+
234
+ You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names:
235
+
236
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. signature of Ty Coon, 1 April 1990 Ty Coon, President of Vice
237
+
238
+ That's all there is to it!
239
+
240
+ Parent topic: Open Source Software License Text
241
+
242
+ COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1
243
+ 1. Definitions.
244
+
245
+ 1.1. "Contributor" means each individual or entity that creates or
246
+
247
+ contributes to the creation of Modifications.
248
+
249
+ 1.2. "Contributor Version" means the combination of the Original
250
+
251
+ Software, prior Modifications used by a Contributor (if any), and
252
+
253
+ the Modifications made by that particular Contributor.
254
+
255
+ 1.3. "Covered Software" means (a) the Original Software, or (b)
256
+
257
+ Modifications, or (c) the combination of files containing Original
258
+
259
+ Software with files containing Modifications, in each case including
260
+
261
+ portions thereof.
262
+
263
+ 1.4. "Executable" means the Covered Software in any form other than
264
+
265
+ Source Code.
266
+
267
+ 1.5. "Initial Developer" means the individual or entity that first
268
+
269
+ makes Original Software available under this License.
270
+
271
+ 1.6. "Larger Work" means a work which combines Covered Software or
272
+
273
+ portions thereof with code not governed by the terms of this License.
274
+
275
+ 1.7. "License" means this document.
276
+
277
+ 1.8. "Licensable" means having the right to grant, to the maximum
278
+
279
+ extent possible, whether at the time of the initial grant or
280
+
281
+ subsequently acquired, any and all of the rights conveyed herein.
282
+
283
+ 1.9. "Modifications" means the Source Code and Executable form of
284
+
285
+ any of the following:
286
+
287
+ A. Any file that results from an addition to, deletion from or
288
+
289
+ modification of the contents of a file containing Original Software
290
+
291
+ or previous Modifications;
292
+
293
+ B. Any new file that contains any part of the Original Software or
294
+
295
+ previous Modification; or
296
+
297
+ C. Any new file that is contributed or otherwise made available
298
+
299
+ under the terms of this License.
300
+
301
+ 1.10. "Original Software" means the Source Code and Executable form
302
+
303
+ of computer software code that is originally released under this
304
+
305
+ License.
306
+
307
+ 1.11. "Patent Claims" means any patent claim(s), now owned or
308
+
309
+ hereafter acquired, including without limitation, method, process,
310
+
311
+ and apparatus claims, in any patent Licensable by grantor.
312
+
313
+ 1.12. "Source Code" means (a) the common form of computer software
314
+
315
+ code in which modifications are made and (b) associated
316
+
317
+ documentation included in or with such code.
318
+
319
+ 1.13. "You" (or "Your") means an individual or a legal entity
320
+
321
+ exercising rights under, and complying with all of the terms of,
322
+
323
+ this License. For legal entities, "You" includes any entity which
324
+
325
+ controls, is controlled by, or is under common control with You. For
326
+
327
+ purposes of this definition, "control" means (a) the power, direct
328
+
329
+ or indirect, to cause the direction or management of such entity,
330
+
331
+ whether by contract or otherwise, or (b) ownership of more than
332
+
333
+ fifty percent (50%) of the outstanding shares or beneficial
334
+
335
+ ownership of such entity.
336
+
337
+ 2. License Grants.
338
+
339
+ 2.1. The Initial Developer Grant.
340
+
341
+ Conditioned upon Your compliance with Section 3.1 below and subject
342
+
343
+ to third party intellectual property claims, the Initial Developer
344
+
345
+ hereby grants You a world-wide, royalty-free, non-exclusive license:
346
+
347
+ (a) under intellectual property rights (other than patent or
348
+
349
+ trademark) Licensable by Initial Developer, to use, reproduce,
350
+
351
+ modify, display, perform, sublicense and distribute the Original
352
+
353
+ Software (or portions thereof), with or without Modifications,
354
+
355
+ and/or as part of a Larger Work; and
356
+
357
+ (b) under Patent Claims infringed by the making, using or selling of
358
+
359
+ Original Software, to make, have made, use, practice, sell, and
360
+
361
+ offer for sale, and/or otherwise dispose of the Original Software
362
+
363
+ (or portions thereof).
364
+
365
+ (c) The licenses granted in Sections 2.1(a) and (b) are effective on
366
+
367
+ the date Initial Developer first distributes or otherwise makes the
368
+
369
+ Original Software available to a third party under the terms of this
370
+
371
+ License.
372
+
373
+ (d) Notwithstanding Section 2.1(b) above, no patent license is
374
+
375
+ granted: (1) for code that You delete from the Original Software, or
376
+
377
+ (2) for infringements caused by: (i) the modification of the
378
+
379
+ Original Software, or (ii) the combination of the Original Software
380
+
381
+ with other software or devices.
382
+
383
+ 2.2. Contributor Grant.
384
+
385
+ Conditioned upon Your compliance with Section 3.1 below and subject
386
+
387
+ to third party intellectual property claims, each Contributor hereby
388
+
389
+ grants You a world-wide, royalty-free, non-exclusive license:
390
+
391
+ (a) under intellectual property rights (other than patent or
392
+
393
+ trademark) Licensable by Contributor to use, reproduce, modify,
394
+
395
+ display, perform, sublicense and distribute the Modifications
396
+
397
+ created by such Contributor (or portions thereof), either on an
398
+
399
+ unmodified basis, with other Modifications, as Covered Software
400
+
401
+ and/or as part of a Larger Work; and
402
+
403
+ (b) under Patent Claims infringed by the making, using, or selling
404
+
405
+ of Modifications made by that Contributor either alone and/or in
406
+
407
+ combination with its Contributor Version (or portions of such
408
+
409
+ combination), to make, use, sell, offer for sale, have made, and/or
410
+
411
+ otherwise dispose of: (1) Modifications made by that Contributor (or
412
+
413
+ portions thereof); and (2) the combination of Modifications made by
414
+
415
+ that Contributor with its Contributor Version (or portions of such
416
+
417
+ combination).
418
+
419
+ (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective
420
+
421
+ on the date Contributor first distributes or otherwise makes the
422
+
423
+ Modifications available to a third party.
424
+
425
+ (d) Notwithstanding Section 2.2(b) above, no patent license is
426
+
427
+ granted: (1) for any code that Contributor has deleted from the
428
+
429
+ Contributor Version; (2) for infringements caused by: (i) third
430
+
431
+ party modifications of Contributor Version, or (ii) the combination
432
+
433
+ of Modifications made by that Contributor with other software
434
+
435
+ (except as part of the Contributor Version) or other devices; or (3)
436
+
437
+ under Patent Claims infringed by Covered Software in the absence of
438
+
439
+ Modifications made by that Contributor.
440
+
441
+ 3. Distribution Obligations.
442
+
443
+ 3.1. Availability of Source Code.
444
+
445
+ Any Covered Software that You distribute or otherwise make available
446
+
447
+ in Executable form must also be made available in Source Code form
448
+
449
+ and that Source Code form must be distributed only under the terms
450
+
451
+ of this License. You must include a copy of this License with every
452
+
453
+ copy of the Source Code form of the Covered Software You distribute
454
+
455
+ or otherwise make available. You must inform recipients of any such
456
+
457
+ Covered Software in Executable form as to how they can obtain such
458
+
459
+ Covered Software in Source Code form in a reasonable manner on or
460
+
461
+ through a medium customarily used for software exchange.
462
+
463
+ 3.2. Modifications.
464
+
465
+ The Modifications that You create or to which You contribute are
466
+
467
+ governed by the terms of this License. You represent that You
468
+
469
+ believe Your Modifications are Your original creation(s) and/or You
470
+
471
+ have sufficient rights to grant the rights conveyed by this License.
472
+
473
+ 3.3. Required Notices.
474
+
475
+ You must include a notice in each of Your Modifications that
476
+
477
+ identifies You as the Contributor of the Modification. You may not
478
+
479
+ remove or alter any copyright, patent or trademark notices contained
480
+
481
+ within the Covered Software, or any notices of licensing or any
482
+
483
+ descriptive text giving attribution to any Contributor or the
484
+
485
+ Initial Developer.
486
+
487
+ 3.4. Application of Additional Terms.
488
+
489
+ You may not offer or impose any terms on any Covered Software in
490
+
491
+ Source Code form that alters or restricts the applicable version of
492
+
493
+ this License or the recipients' rights hereunder. You may choose to
494
+
495
+ offer, and to charge a fee for, warranty, support, indemnity or
496
+
497
+ liability obligations to one or more recipients of Covered Software.
498
+
499
+ However, you may do so only on Your own behalf, and not on behalf of
500
+
501
+ the Initial Developer or any Contributor. You must make it
502
+
503
+ absolutely clear that any such warranty, support, indemnity or
504
+
505
+ liability obligation is offered by You alone, and You hereby agree
506
+
507
+ to indemnify the Initial Developer and every Contributor for any
508
+
509
+ liability incurred by the Initial Developer or such Contributor as a
510
+
511
+ result of warranty, support, indemnity or liability terms You offer.
512
+
513
+ 3.5. Distribution of Executable Versions.
514
+
515
+ You may distribute the Executable form of the Covered Software under
516
+
517
+ the terms of this License or under the terms of a license of Your
518
+
519
+ choice, which may contain terms different from this License,
520
+
521
+ provided that You are in compliance with the terms of this License
522
+
523
+ and that the license for the Executable form does not attempt to
524
+
525
+ limit or alter the recipient's rights in the Source Code form from
526
+
527
+ the rights set forth in this License. If You distribute the Covered
528
+
529
+ Software in Executable form under a different license, You must make
530
+
531
+ it absolutely clear that any terms which differ from this License
532
+
533
+ are offered by You alone, not by the Initial Developer or
534
+
535
+ Contributor. You hereby agree to indemnify the Initial Developer and
536
+
537
+ every Contributor for any liability incurred by the Initial
538
+
539
+ Developer or such Contributor as a result of any such terms You offer.
540
+
541
+ 3.6. Larger Works.
542
+
543
+ You may create a Larger Work by combining Covered Software with
544
+
545
+ other code not governed by the terms of this License and distribute
546
+
547
+ the Larger Work as a single product. In such a case, You must make
548
+
549
+ sure the requirements of this License are fulfilled for the Covered
550
+
551
+ Software.
552
+
553
+ 4. Versions of the License.
554
+
555
+ 4.1. New Versions.
556
+
557
+ Oracle is the initial license steward and may publish revised and/or
558
+
559
+ new versions of this License from time to time. Each version will be
560
+
561
+ given a distinguishing version number. Except as provided in Section
562
+
563
+ 4.3, no one other than the license steward has the right to modify
564
+
565
+ this License.
566
+
567
+ 4.2. Effect of New Versions.
568
+
569
+ You may always continue to use, distribute or otherwise make the
570
+
571
+ Covered Software available under the terms of the version of the
572
+
573
+ License under which You originally received the Covered Software. If
574
+
575
+ the Initial Developer includes a notice in the Original Software
576
+
577
+ prohibiting it from being distributed or otherwise made available
578
+
579
+ under any subsequent version of the License, You must distribute and
580
+
581
+ make the Covered Software available under the terms of the version
582
+
583
+ of the License under which You originally received the Covered
584
+
585
+ Software. Otherwise, You may also choose to use, distribute or
586
+
587
+ otherwise make the Covered Software available under the terms of any
588
+
589
+ subsequent version of the License published by the license steward.
590
+
591
+ 4.3. Modified Versions.
592
+
593
+ When You are an Initial Developer and You want to create a new
594
+
595
+ license for Your Original Software, You may create and use a
596
+
597
+ modified version of this License if You: (a) rename the license and
598
+
599
+ remove any references to the name of the license steward (except to
600
+
601
+ note that the license differs from this License); and (b) otherwise
602
+
603
+ make it clear that the license contains terms which differ from this
604
+
605
+ License.
606
+
607
+ 5. DISCLAIMER OF WARRANTY.
608
+
609
+ COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
610
+
611
+ WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
612
+
613
+ INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE
614
+
615
+ IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR
616
+
617
+ NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF
618
+
619
+ THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE
620
+
621
+ DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY
622
+
623
+ OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING,
624
+
625
+ REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN
626
+
627
+ ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS
628
+
629
+ AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
630
+
631
+ 6. TERMINATION.
632
+
633
+ 6.1. This License and the rights granted hereunder will terminate
634
+
635
+ automatically if You fail to comply with terms herein and fail to
636
+
637
+ cure such breach within 30 days of becoming aware of the breach.
638
+
639
+ Provisions which, by their nature, must remain in effect beyond the
640
+
641
+ termination of this License shall survive.
642
+
643
+ 6.2. If You assert a patent infringement claim (excluding
644
+
645
+ declaratory judgment actions) against Initial Developer or a
646
+
647
+ Contributor (the Initial Developer or Contributor against whom You
648
+
649
+ assert such claim is referred to as "Participant") alleging that the
650
+
651
+ Participant Software (meaning the Contributor Version where the
652
+
653
+ Participant is a Contributor or the Original Software where the
654
+
655
+ Participant is the Initial Developer) directly or indirectly
656
+
657
+ infringes any patent, then any and all rights granted directly or
658
+
659
+ indirectly to You by such Participant, the Initial Developer (if the
660
+
661
+ Initial Developer is not the Participant) and all Contributors under
662
+
663
+ Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice
664
+
665
+ from Participant terminate prospectively and automatically at the
666
+
667
+ expiration of such 60 day notice period, unless if within such 60
668
+
669
+ day period You withdraw Your claim with respect to the Participant
670
+
671
+ Software against such Participant either unilaterally or pursuant to
672
+
673
+ a written agreement with Participant.
674
+
675
+ 6.3. If You assert a patent infringement claim against Participant
676
+
677
+ alleging that the Participant Software directly or indirectly
678
+
679
+ infringes any patent where such claim is resolved (such as by
680
+
681
+ license or settlement) prior to the initiation of patent
682
+
683
+ infringement litigation, then the reasonable value of the licenses
684
+
685
+ granted by such Participant under Sections 2.1 or 2.2 shall be taken
686
+
687
+ into account in determining the amount or value of any payment or
688
+
689
+ license.
690
+
691
+ 6.4. In the event of termination under Sections 6.1 or 6.2 above,
692
+
693
+ all end user licenses that have been validly granted by You or any
694
+
695
+ distributor hereunder prior to termination (excluding licenses
696
+
697
+ granted to You by any distributor) shall survive termination.
698
+
699
+ 7. LIMITATION OF LIABILITY.
700
+
701
+ UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
702
+
703
+ (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE
704
+
705
+ INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
706
+
707
+ COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE
708
+
709
+ TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR
710
+
711
+ CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
712
+
713
+ LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER
714
+
715
+ FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR
716
+
717
+ LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE
718
+
719
+ POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT
720
+
721
+ APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH
722
+
723
+ PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH
724
+
725
+ LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR
726
+
727
+ LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION
728
+
729
+ AND LIMITATION MAY NOT APPLY TO YOU.
730
+
731
+ 8. U.S. GOVERNMENT END USERS.
732
+
733
+ The Covered Software is a "commercial item," as that term is defined
734
+
735
+ in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
736
+
737
+ software" (as that term is defined at 48 C.F.R. §
738
+
739
+ 252.227-7014(a)(1)) and "commercial computer software documentation"
740
+
741
+ as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent
742
+
743
+ with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4
744
+
745
+ (June 1995), all U.S. Government End Users acquire Covered Software
746
+
747
+ with only those rights set forth herein. This U.S. Government Rights
748
+
749
+ clause is in lieu of, and supersedes, any other FAR, DFAR, or other
750
+
751
+ clause or provision that addresses Government rights in computer
752
+
753
+ software under this License.
754
+
755
+ 9. MISCELLANEOUS.
756
+
757
+ This License represents the complete agreement concerning subject
758
+
759
+ matter hereof. If any provision of this License is held to be
760
+
761
+ unenforceable, such provision shall be reformed only to the extent
762
+
763
+ necessary to make it enforceable. This License shall be governed by
764
+
765
+ the law of the jurisdiction specified in a notice contained within
766
+
767
+ the Original Software (except to the extent applicable law, if any,
768
+
769
+ provides otherwise), excluding such jurisdiction's conflict-of-law
770
+
771
+ provisions. Any litigation relating to this License shall be subject
772
+
773
+ to the jurisdiction of the courts located in the jurisdiction and
774
+
775
+ venue specified in a notice contained within the Original Software,
776
+
777
+ with the losing party responsible for costs, including, without
778
+
779
+ limitation, court costs and reasonable attorneys' fees and expenses.
780
+
781
+ The application of the United Nations Convention on Contracts for
782
+
783
+ the International Sale of Goods is expressly excluded. Any law or
784
+
785
+ regulation which provides that the language of a contract shall be
786
+
787
+ construed against the drafter shall not apply to this License. You
788
+
789
+ agree that You alone are responsible for compliance with the United
790
+
791
+ States export administration regulations (and the export control
792
+
793
+ laws and regulation of any other countries) when You use, distribute
794
+
795
+ or otherwise make available any Covered Software.
796
+
797
+ 10. RESPONSIBILITY FOR CLAIMS.
798
+
799
+ As between Initial Developer and the Contributors, each party is
800
+
801
+ responsible for claims and damages arising, directly or indirectly,
802
+
803
+ out of its utilization of rights under this License and You agree to
804
+
805
+ work with Initial Developer and Contributors to distribute such
806
+
807
+ responsibility on an equitable basis. Nothing herein is intended or
808
+
809
+ shall be deemed to constitute any admission of liability.
810
+
811
+ ------------------------------------------------------------------------
812
+
813
+ NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION
814
+
815
+ LICENSE (CDDL)
816
+
817
+ The code released under the CDDL shall be governed by the laws of the
818
+
819
+ State of California (excluding conflict-of-law provisions). Any
820
+
821
+ litigation relating to this License shall be subject to the jurisdiction
822
+
823
+ of the Federal Courts of the Northern District of California and the
824
+
825
+ state courts of the State of California, with venue lying in Santa Clara
826
+
827
+ County, California.
828
+
829
+ The GNU General Public License (GPL) Version 2, June 1991
830
+
831
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
832
+
833
+ 51 Franklin Street, Fifth Floor
834
+
835
+ Boston, MA 02110-1335
836
+
837
+ USA
838
+
839
+ Everyone is permitted to copy and distribute verbatim copies
840
+
841
+ of this license document, but changing it is not allowed.
842
+
843
+ Preamble
844
+
845
+ The licenses for most software are designed to take away your freedom to
846
+
847
+ share and change it. By contrast, the GNU General Public License is
848
+
849
+ intended to guarantee your freedom to share and change free software--to
850
+
851
+ make sure the software is free for all its users. This General Public
852
+
853
+ License applies to most of the Free Software Foundation's software and
854
+
855
+ to any other program whose authors commit to using it. (Some other Free
856
+
857
+ Software Foundation software is covered by the GNU Library General
858
+
859
+ Public License instead.) You can apply it to your programs, too.
860
+
861
+ When we speak of free software, we are referring to freedom, not price.
862
+
863
+ Our General Public Licenses are designed to make sure that you have the
864
+
865
+ freedom to distribute copies of free software (and charge for this
866
+
867
+ service if you wish), that you receive source code or can get it if you
868
+
869
+ want it, that you can change the software or use pieces of it in new
870
+
871
+ free programs; and that you know you can do these things.
872
+
873
+ To protect your rights, we need to make restrictions that forbid anyone
874
+
875
+ to deny you these rights or to ask you to surrender the rights. These
876
+
877
+ restrictions translate to certain responsibilities for you if you
878
+
879
+ distribute copies of the software, or if you modify it.
880
+
881
+ For example, if you distribute copies of such a program, whether gratis
882
+
883
+ or for a fee, you must give the recipients all the rights that you have.
884
+
885
+ You must make sure that they, too, receive or can get the source code.
886
+
887
+ And you must show them these terms so they know their rights.
888
+
889
+ We protect your rights with two steps: (1) copyright the software, and
890
+
891
+ (2) offer you this license which gives you legal permission to copy,
892
+
893
+ distribute and/or modify the software.
894
+
895
+ Also, for each author's protection and ours, we want to make certain
896
+
897
+ that everyone understands that there is no warranty for this free
898
+
899
+ software. If the software is modified by someone else and passed on, we
900
+
901
+ want its recipients to know that what they have is not the original, so
902
+
903
+ that any problems introduced by others will not reflect on the original
904
+
905
+ authors' reputations.
906
+
907
+ Finally, any free program is threatened constantly by software patents.
908
+
909
+ We wish to avoid the danger that redistributors of a free program will
910
+
911
+ individually obtain patent licenses, in effect making the program
912
+
913
+ proprietary. To prevent this, we have made it clear that any patent must
914
+
915
+ be licensed for everyone's free use or not licensed at all.
916
+
917
+ The precise terms and conditions for copying, distribution and
918
+
919
+ modification follow.
920
+
921
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
922
+
923
+ 0. This License applies to any program or other work which contains a
924
+
925
+ notice placed by the copyright holder saying it may be distributed under
926
+
927
+ the terms of this General Public License. The "Program", below, refers
928
+
929
+ to any such program or work, and a "work based on the Program" means
930
+
931
+ either the Program or any derivative work under copyright law: that is
932
+
933
+ to say, a work containing the Program or a portion of it, either
934
+
935
+ verbatim or with modifications and/or translated into another language.
936
+
937
+ (Hereinafter, translation is included without limitation in the term
938
+
939
+ "modification".) Each licensee is addressed as "you".
940
+
941
+ Activities other than copying, distribution and modification are not
942
+
943
+ covered by this License; they are outside its scope. The act of running
944
+
945
+ the Program is not restricted, and the output from the Program is
946
+
947
+ covered only if its contents constitute a work based on the Program
948
+
949
+ (independent of having been made by running the Program). Whether that
950
+
951
+ is true depends on what the Program does.
952
+
953
+ 1. You may copy and distribute verbatim copies of the Program's source
954
+
955
+ code as you receive it, in any medium, provided that you conspicuously
956
+
957
+ and appropriately publish on each copy an appropriate copyright notice
958
+
959
+ and disclaimer of warranty; keep intact all the notices that refer to
960
+
961
+ this License and to the absence of any warranty; and give any other
962
+
963
+ recipients of the Program a copy of this License along with the Program.
964
+
965
+ You may charge a fee for the physical act of transferring a copy, and
966
+
967
+ you may at your option offer warranty protection in exchange for a fee.
968
+
969
+ 2. You may modify your copy or copies of the Program or any portion of
970
+
971
+ it, thus forming a work based on the Program, and copy and distribute
972
+
973
+ such modifications or work under the terms of Section 1 above, provided
974
+
975
+ that you also meet all of these conditions:
976
+
977
+ a) You must cause the modified files to carry prominent notices
978
+
979
+ stating that you changed the files and the date of any change.
980
+
981
+ b) You must cause any work that you distribute or publish, that in
982
+
983
+ whole or in part contains or is derived from the Program or any part
984
+
985
+ thereof, to be licensed as a whole at no charge to all third parties
986
+
987
+ under the terms of this License.
988
+
989
+ c) If the modified program normally reads commands interactively
990
+
991
+ when run, you must cause it, when started running for such
992
+
993
+ interactive use in the most ordinary way, to print or display an
994
+
995
+ announcement including an appropriate copyright notice and a notice
996
+
997
+ that there is no warranty (or else, saying that you provide a
998
+
999
+ warranty) and that users may redistribute the program under these
1000
+
1001
+ conditions, and telling the user how to view a copy of this License.
1002
+
1003
+ (Exception: if the Program itself is interactive but does not
1004
+
1005
+ normally print such an announcement, your work based on the Program
1006
+
1007
+ is not required to print an announcement.)
1008
+
1009
+ These requirements apply to the modified work as a whole. If
1010
+
1011
+ identifiable sections of that work are not derived from the Program, and
1012
+
1013
+ can be reasonably considered independent and separate works in
1014
+
1015
+ themselves, then this License, and its terms, do not apply to those
1016
+
1017
+ sections when you distribute them as separate works. But when you
1018
+
1019
+ distribute the same sections as part of a whole which is a work based on
1020
+
1021
+ the Program, the distribution of the whole must be on the terms of this
1022
+
1023
+ License, whose permissions for other licensees extend to the entire
1024
+
1025
+ whole, and thus to each and every part regardless of who wrote it.
1026
+
1027
+ Thus, it is not the intent of this section to claim rights or contest
1028
+
1029
+ your rights to work written entirely by you; rather, the intent is to
1030
+
1031
+ exercise the right to control the distribution of derivative or
1032
+
1033
+ collective works based on the Program.
1034
+
1035
+ In addition, mere aggregation of another work not based on the Program
1036
+
1037
+ with the Program (or with a work based on the Program) on a volume of a
1038
+
1039
+ storage or distribution medium does not bring the other work under the
1040
+
1041
+ scope of this License.
1042
+
1043
+ 3. You may copy and distribute the Program (or a work based on it,
1044
+
1045
+ under Section 2) in object code or executable form under the terms of
1046
+
1047
+ Sections 1 and 2 above provided that you also do one of the following:
1048
+
1049
+ a) Accompany it with the complete corresponding machine-readable
1050
+
1051
+ source code, which must be distributed under the terms of Sections 1
1052
+
1053
+ and 2 above on a medium customarily used for software interchange; or,
1054
+
1055
+ b) Accompany it with a written offer, valid for at least three
1056
+
1057
+ years, to give any third party, for a charge no more than your cost
1058
+
1059
+ of physically performing source distribution, a complete
1060
+
1061
+ machine-readable copy of the corresponding source code, to be
1062
+
1063
+ distributed under the terms of Sections 1 and 2 above on a medium
1064
+
1065
+ customarily used for software interchange; or,
1066
+
1067
+ c) Accompany it with the information you received as to the offer to
1068
+
1069
+ distribute corresponding source code. (This alternative is allowed
1070
+
1071
+ only for noncommercial distribution and only if you received the
1072
+
1073
+ program in object code or executable form with such an offer, in
1074
+
1075
+ accord with Subsection b above.)
1076
+
1077
+ The source code for a work means the preferred form of the work for
1078
+
1079
+ making modifications to it. For an executable work, complete source code
1080
+
1081
+ means all the source code for all modules it contains, plus any
1082
+
1083
+ associated interface definition files, plus the scripts used to control
1084
+
1085
+ compilation and installation of the executable. However, as a special
1086
+
1087
+ exception, the source code distributed need not include anything that is
1088
+
1089
+ normally distributed (in either source or binary form) with the major
1090
+
1091
+ components (compiler, kernel, and so on) of the operating system on
1092
+
1093
+ which the executable runs, unless that component itself accompanies the
1094
+
1095
+ executable.
1096
+
1097
+ If distribution of executable or object code is made by offering access
1098
+
1099
+ to copy from a designated place, then offering equivalent access to copy
1100
+
1101
+ the source code from the same place counts as distribution of the source
1102
+
1103
+ code, even though third parties are not compelled to copy the source
1104
+
1105
+ along with the object code.
1106
+
1107
+ 4. You may not copy, modify, sublicense, or distribute the Program
1108
+
1109
+ except as expressly provided under this License. Any attempt otherwise
1110
+
1111
+ to copy, modify, sublicense or distribute the Program is void, and will
1112
+
1113
+ automatically terminate your rights under this License. However, parties
1114
+
1115
+ who have received copies, or rights, from you under this License will
1116
+
1117
+ not have their licenses terminated so long as such parties remain in
1118
+
1119
+ full compliance.
1120
+
1121
+ 5. You are not required to accept this License, since you have not
1122
+
1123
+ signed it. However, nothing else grants you permission to modify or
1124
+
1125
+ distribute the Program or its derivative works. These actions are
1126
+
1127
+ prohibited by law if you do not accept this License. Therefore, by
1128
+
1129
+ modifying or distributing the Program (or any work based on the
1130
+
1131
+ Program), you indicate your acceptance of this License to do so, and all
1132
+
1133
+ its terms and conditions for copying, distributing or modifying the
1134
+
1135
+ Program or works based on it.
1136
+
1137
+ 6. Each time you redistribute the Program (or any work based on the
1138
+
1139
+ Program), the recipient automatically receives a license from the
1140
+
1141
+ original licensor to copy, distribute or modify the Program subject to
1142
+
1143
+ these terms and conditions. You may not impose any further restrictions
1144
+
1145
+ on the recipients' exercise of the rights granted herein. You are not
1146
+
1147
+ responsible for enforcing compliance by third parties to this License.
1148
+
1149
+ 7. If, as a consequence of a court judgment or allegation of patent
1150
+
1151
+ infringement or for any other reason (not limited to patent issues),
1152
+
1153
+ conditions are imposed on you (whether by court order, agreement or
1154
+
1155
+ otherwise) that contradict the conditions of this License, they do not
1156
+
1157
+ excuse you from the conditions of this License. If you cannot distribute
1158
+
1159
+ so as to satisfy simultaneously your obligations under this License and
1160
+
1161
+ any other pertinent obligations, then as a consequence you may not
1162
+
1163
+ distribute the Program at all. For example, if a patent license would
1164
+
1165
+ not permit royalty-free redistribution of the Program by all those who
1166
+
1167
+ receive copies directly or indirectly through you, then the only way you
1168
+
1169
+ could satisfy both it and this License would be to refrain entirely from
1170
+
1171
+ distribution of the Program.
1172
+
1173
+ If any portion of this section is held invalid or unenforceable under
1174
+
1175
+ any particular circumstance, the balance of the section is intended to
1176
+
1177
+ apply and the section as a whole is intended to apply in other
1178
+
1179
+ circumstances.
1180
+
1181
+ It is not the purpose of this section to induce you to infringe any
1182
+
1183
+ patents or other property right claims or to contest validity of any
1184
+
1185
+ such claims; this section has the sole purpose of protecting the
1186
+
1187
+ integrity of the free software distribution system, which is implemented
1188
+
1189
+ by public license practices. Many people have made generous
1190
+
1191
+ contributions to the wide range of software distributed through that
1192
+
1193
+ system in reliance on consistent application of that system; it is up to
1194
+
1195
+ the author/donor to decide if he or she is willing to distribute
1196
+
1197
+ software through any other system and a licensee cannot impose that choice.
1198
+
1199
+ This section is intended to make thoroughly clear what is believed to be
1200
+
1201
+ a consequence of the rest of this License.
1202
+
1203
+ 8. If the distribution and/or use of the Program is restricted in
1204
+
1205
+ certain countries either by patents or by copyrighted interfaces, the
1206
+
1207
+ original copyright holder who places the Program under this License may
1208
+
1209
+ add an explicit geographical distribution limitation excluding those
1210
+
1211
+ countries, so that distribution is permitted only in or among countries
1212
+
1213
+ not thus excluded. In such case, this License incorporates the
1214
+
1215
+ limitation as if written in the body of this License.
1216
+
1217
+ 9. The Free Software Foundation may publish revised and/or new
1218
+
1219
+ versions of the General Public License from time to time. Such new
1220
+
1221
+ versions will be similar in spirit to the present version, but may
1222
+
1223
+ differ in detail to address new problems or concerns.
1224
+
1225
+ Each version is given a distinguishing version number. If the Program
1226
+
1227
+ specifies a version number of this License which applies to it and "any
1228
+
1229
+ later version", you have the option of following the terms and
1230
+
1231
+ conditions either of that version or of any later version published by
1232
+
1233
+ the Free Software Foundation. If the Program does not specify a version
1234
+
1235
+ number of this License, you may choose any version ever published by the
1236
+
1237
+ Free Software Foundation.
1238
+
1239
+ 10. If you wish to incorporate parts of the Program into other free
1240
+
1241
+ programs whose distribution conditions are different, write to the
1242
+
1243
+ author to ask for permission. For software which is copyrighted by the
1244
+
1245
+ Free Software Foundation, write to the Free Software Foundation; we
1246
+
1247
+ sometimes make exceptions for this. Our decision will be guided by the
1248
+
1249
+ two goals of preserving the free status of all derivatives of our free
1250
+
1251
+ software and of promoting the sharing and reuse of software generally.
1252
+
1253
+ NO WARRANTY
1254
+
1255
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
1256
+
1257
+ WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
1258
+
1259
+ EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
1260
+
1261
+ OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND,
1262
+
1263
+ EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1264
+
1265
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
1266
+
1267
+ ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH
1268
+
1269
+ YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
1270
+
1271
+ NECESSARY SERVICING, REPAIR OR CORRECTION.
1272
+
1273
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
1274
+
1275
+ WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
1276
+
1277
+ AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR
1278
+
1279
+ DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL
1280
+
1281
+ DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM
1282
+
1283
+ (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED
1284
+
1285
+ INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF
1286
+
1287
+ THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR
1288
+
1289
+ OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
1290
+
1291
+ END OF TERMS AND CONDITIONS
1292
+
1293
+ How to Apply These Terms to Your New Programs
1294
+
1295
+ If you develop a new program, and you want it to be of the greatest
1296
+
1297
+ possible use to the public, the best way to achieve this is to make it
1298
+
1299
+ free software which everyone can redistribute and change under these terms.
1300
+
1301
+ To do so, attach the following notices to the program. It is safest to
1302
+
1303
+ attach them to the start of each source file to most effectively convey
1304
+
1305
+ the exclusion of warranty; and each file should have at least the
1306
+
1307
+ "copyright" line and a pointer to where the full notice is found.
1308
+
1309
+ One line to give the program's name and a brief idea of what it does.
1310
+
1311
+ Copyright (C) <year> <name of author>
1312
+
1313
+ This program is free software; you can redistribute it and/or modify
1314
+
1315
+ it under the terms of the GNU General Public License as published by
1316
+
1317
+ the Free Software Foundation; either version 2 of the License, or
1318
+
1319
+ (at your option) any later version.
1320
+
1321
+ This program is distributed in the hope that it will be useful, but
1322
+
1323
+ WITHOUT ANY WARRANTY; without even the implied warranty of
1324
+
1325
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1326
+
1327
+ General Public License for more details.
1328
+
1329
+ You should have received a copy of the GNU General Public License
1330
+
1331
+ along with this program; if not, write to the Free Software
1332
+
1333
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA
1334
+
1335
+ Also add information on how to contact you by electronic and paper mail.
1336
+
1337
+ If the program is interactive, make it output a short notice like this
1338
+
1339
+ when it starts in an interactive mode:
1340
+
1341
+ Gnomovision version 69, Copyright (C) year name of author
1342
+
1343
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type
1344
+
1345
+ `show w'. This is free software, and you are welcome to redistribute
1346
+
1347
+ it under certain conditions; type `show c' for details.
1348
+
1349
+ The hypothetical commands `show w' and `show c' should show the
1350
+
1351
+ appropriate parts of the General Public License. Of course, the commands
1352
+
1353
+ you use may be called something other than `show w' and `show c'; they
1354
+
1355
+ could even be mouse-clicks or menu items--whatever suits your program.
1356
+
1357
+ You should also get your employer (if you work as a programmer) or your
1358
+
1359
+ school, if any, to sign a "copyright disclaimer" for the program, if
1360
+
1361
+ necessary. Here is a sample; alter the names:
1362
+
1363
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
1364
+
1365
+ program `Gnomovision' (which makes passes at compilers) written by
1366
+
1367
+ James Hacker.
1368
+
1369
+ signature of Ty Coon, 1 April 1989
1370
+
1371
+ Ty Coon, President of Vice
1372
+
1373
+ This General Public License does not permit incorporating your program
1374
+
1375
+ into proprietary programs. If your program is a subroutine library, you
1376
+
1377
+ may consider it more useful to permit linking proprietary applications
1378
+
1379
+ with the library. If this is what you want to do, use the GNU Library
1380
+
1381
+ General Public License instead of this License.
1382
+
1383
+ #
1384
+
1385
+ Certain source files distributed by Oracle America, Inc. and/or its
1386
+
1387
+ affiliates are subject to the following clarification and special
1388
+
1389
+ exception to the GPLv2, based on the GNU Project exception for its
1390
+
1391
+ Classpath libraries, known as the GNU Classpath Exception, but only
1392
+
1393
+ where Oracle has expressly included in the particular source file's
1394
+
1395
+ header the words "Oracle designates this particular file as subject to
1396
+
1397
+ the "Classpath" exception as provided by Oracle in the LICENSE file
1398
+
1399
+ that accompanied this code."
1400
+
1401
+ You should also note that Oracle includes multiple, independent
1402
+
1403
+ programs in this software package. Some of those programs are provided
1404
+
1405
+ under licenses deemed incompatible with the GPLv2 by the Free Software
1406
+
1407
+ Foundation and others. For example, the package includes programs
1408
+
1409
+ licensed under the Apache License, Version 2.0. Such programs are
1410
+
1411
+ licensed to you under their original licenses.
1412
+
1413
+ Oracle facilitates your further distribution of this package by adding
1414
+
1415
+ the Classpath Exception to the necessary parts of its GPLv2 code, which
1416
+
1417
+ permits you to use that code in combination with other independent
1418
+
1419
+ modules not licensed under the GPLv2. However, note that this would
1420
+
1421
+ not permit you to commingle code under an incompatible license with
1422
+
1423
+ Oracle's GPLv2 licensed code by, for example, cutting and pasting such
1424
+
1425
+ code into a file also containing Oracle's GPLv2 licensed code and then
1426
+
1427
+ distributing the result. Additionally, if you were to remove the
1428
+
1429
+ Classpath Exception from any of the files to which it applies and
1430
+
1431
+ distribute the result, you would likely be required to license some or
1432
+
1433
+ all of the other code in that distribution under the GPLv2 as well, and
1434
+
1435
+ since the GPLv2 is incompatible with the license terms of some items
1436
+
1437
+ included in the distribution by Oracle, removing the Classpath
1438
+
1439
+ Exception could therefore effectively compromise your ability to
1440
+
1441
+ further distribute the package.
1442
+
1443
+ Proceed with caution and we recommend that you obtain the advice of a
1444
+
1445
+ lawyer skilled in open source matters before removing the Classpath
1446
+
1447
+ Exception or making modifications to this package which may
1448
+
1449
+ subsequently be redistributed and/or involve the use of third party
1450
+
1451
+ software.
1452
+
1453
+ CLASSPATH EXCEPTION
1454
+
1455
+ Linking this library statically or dynamically with other modules is
1456
+
1457
+ making a combined work based on this library. Thus, the terms and
1458
+
1459
+ conditions of the GNU General Public License version 2 cover the whole
1460
+
1461
+ combination.
1462
+
1463
+ As a special exception, the copyright holders of this library give you
1464
+
1465
+ permission to link this library with independent modules to produce an
1466
+
1467
+ executable, regardless of the license terms of these independent
1468
+
1469
+ modules, and to copy and distribute the resulting executable under
1470
+
1471
+ terms of your choice, provided that you also meet, for each linked
1472
+
1473
+ independent module, the terms and conditions of the license of that
1474
+
1475
+ module. An independent module is a module which is not derived from or
1476
+
1477
+ based on this library. If you modify this library, you may extend this
1478
+
1479
+ exception to your version of the library, but you are not obligated to
1480
+
1481
+ do so. If you do not wish to do so, delete this exception statement
1482
+
1483
+ from your version.