endorphin-ai 0.4.1 → 0.6.0

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 (208) hide show
  1. package/LICENSE.md +511 -199
  2. package/README.md +134 -54
  3. package/dist/bin/cli-handlers.d.ts +44 -0
  4. package/dist/bin/cli-handlers.d.ts.map +1 -0
  5. package/dist/bin/cli-handlers.js +145 -0
  6. package/dist/bin/cli-handlers.js.map +1 -0
  7. package/dist/bin/endorphin.d.ts +9 -0
  8. package/dist/bin/endorphin.d.ts.map +1 -0
  9. package/dist/bin/endorphin.js +265 -0
  10. package/dist/bin/endorphin.js.map +1 -0
  11. package/dist/examples/endorphin.config.d.ts +24 -0
  12. package/dist/examples/endorphin.config.d.ts.map +1 -0
  13. package/dist/examples/endorphin.config.js +26 -0
  14. package/dist/examples/endorphin.config.js.map +1 -0
  15. package/dist/examples/tests/sample-test.d.ts +14 -0
  16. package/dist/examples/tests/sample-test.d.ts.map +1 -0
  17. package/dist/examples/tests/sample-test.js +34 -0
  18. package/dist/examples/tests/sample-test.js.map +1 -0
  19. package/dist/framework/cli/init-command.d.ts +10 -0
  20. package/dist/framework/cli/init-command.d.ts.map +1 -0
  21. package/dist/framework/cli/init-command.js +287 -0
  22. package/dist/framework/cli/init-command.js.map +1 -0
  23. package/dist/framework/config/agent-config.d.ts +25 -0
  24. package/dist/framework/config/agent-config.d.ts.map +1 -0
  25. package/dist/framework/config/agent-config.js +39 -0
  26. package/dist/framework/config/agent-config.js.map +1 -0
  27. package/dist/framework/config/browser-config.d.ts +32 -0
  28. package/dist/framework/config/browser-config.d.ts.map +1 -0
  29. package/dist/framework/config/browser-config.js +37 -0
  30. package/dist/framework/config/browser-config.js.map +1 -0
  31. package/dist/framework/config/paths.d.ts +19 -0
  32. package/dist/framework/config/paths.d.ts.map +1 -0
  33. package/dist/framework/config/paths.js +27 -0
  34. package/dist/framework/config/paths.js.map +1 -0
  35. package/dist/framework/core/agent-setup.d.ts +17 -0
  36. package/dist/framework/core/agent-setup.d.ts.map +1 -0
  37. package/dist/framework/core/agent-setup.js +59 -0
  38. package/dist/framework/core/agent-setup.js.map +1 -0
  39. package/dist/framework/core/browser-framework.d.ts +73 -0
  40. package/dist/framework/core/browser-framework.d.ts.map +1 -0
  41. package/dist/framework/core/browser-framework.js +672 -0
  42. package/dist/framework/core/browser-framework.js.map +1 -0
  43. package/dist/framework/core/config-loader.d.ts +59 -0
  44. package/dist/framework/core/config-loader.d.ts.map +1 -0
  45. package/dist/framework/core/config-loader.js +333 -0
  46. package/dist/framework/core/config-loader.js.map +1 -0
  47. package/dist/framework/core/test-discovery.d.ts +81 -0
  48. package/dist/framework/core/test-discovery.d.ts.map +1 -0
  49. package/dist/framework/core/test-discovery.js +498 -0
  50. package/dist/framework/core/test-discovery.js.map +1 -0
  51. package/dist/framework/core/test-manager.d.ts +104 -0
  52. package/dist/framework/core/test-manager.d.ts.map +1 -0
  53. package/dist/framework/core/test-manager.js +298 -0
  54. package/dist/framework/core/test-manager.js.map +1 -0
  55. package/dist/framework/core/test-session.d.ts +40 -0
  56. package/dist/framework/core/test-session.d.ts.map +1 -0
  57. package/dist/framework/core/test-session.js +84 -0
  58. package/dist/framework/core/test-session.js.map +1 -0
  59. package/dist/framework/index.d.ts +33 -0
  60. package/dist/framework/index.d.ts.map +1 -0
  61. package/dist/framework/index.js +39 -0
  62. package/dist/framework/index.js.map +1 -0
  63. package/dist/framework/reporters/console-reporter.d.ts +75 -0
  64. package/dist/framework/reporters/console-reporter.d.ts.map +1 -0
  65. package/dist/framework/reporters/console-reporter.js +284 -0
  66. package/dist/framework/reporters/console-reporter.js.map +1 -0
  67. package/dist/framework/reporters/html-reporter.d.ts +108 -0
  68. package/dist/framework/reporters/html-reporter.d.ts.map +1 -0
  69. package/dist/framework/reporters/html-reporter.js +521 -0
  70. package/dist/framework/reporters/html-reporter.js.map +1 -0
  71. package/dist/framework/results/test-results-manager.d.ts +53 -0
  72. package/dist/framework/results/test-results-manager.d.ts.map +1 -0
  73. package/dist/framework/results/test-results-manager.js +147 -0
  74. package/dist/framework/results/test-results-manager.js.map +1 -0
  75. package/dist/framework/results/test-results-parser.d.ts +101 -0
  76. package/dist/framework/results/test-results-parser.d.ts.map +1 -0
  77. package/dist/framework/results/test-results-parser.js +208 -0
  78. package/dist/framework/results/test-results-parser.js.map +1 -0
  79. package/dist/framework/runner/task-executor.d.ts +36 -0
  80. package/dist/framework/runner/task-executor.d.ts.map +1 -0
  81. package/dist/framework/runner/task-executor.js +100 -0
  82. package/dist/framework/runner/task-executor.js.map +1 -0
  83. package/dist/framework/templates/reporter/report-template.html +365 -0
  84. package/dist/framework/templates/reporter/scripts.d.ts +104 -0
  85. package/dist/framework/templates/reporter/scripts.d.ts.map +1 -0
  86. package/{framework/templates → dist/framework/templates/reporter}/scripts.js +138 -59
  87. package/dist/framework/templates/reporter/scripts.js.map +1 -0
  88. package/dist/framework/templates/reporter/styles.css +400 -0
  89. package/dist/framework/test-recorder/index.d.ts +7 -0
  90. package/dist/framework/test-recorder/index.d.ts.map +1 -0
  91. package/dist/framework/test-recorder/index.js +7 -0
  92. package/dist/framework/test-recorder/index.js.map +1 -0
  93. package/dist/framework/test-recorder/interactive-recorder.d.ts +29 -0
  94. package/dist/framework/test-recorder/interactive-recorder.d.ts.map +1 -0
  95. package/dist/framework/test-recorder/interactive-recorder.js +177 -0
  96. package/dist/framework/test-recorder/interactive-recorder.js.map +1 -0
  97. package/dist/framework/test-recorder/session-recorder.d.ts +78 -0
  98. package/dist/framework/test-recorder/session-recorder.d.ts.map +1 -0
  99. package/dist/framework/test-recorder/session-recorder.js +257 -0
  100. package/dist/framework/test-recorder/session-recorder.js.map +1 -0
  101. package/dist/framework/tools/content.d.ts +28 -0
  102. package/dist/framework/tools/content.d.ts.map +1 -0
  103. package/dist/framework/tools/content.js +63 -0
  104. package/dist/framework/tools/content.js.map +1 -0
  105. package/dist/framework/tools/index.d.ts +12 -0
  106. package/dist/framework/tools/index.d.ts.map +1 -0
  107. package/dist/framework/tools/index.js +34 -0
  108. package/dist/framework/tools/index.js.map +1 -0
  109. package/dist/framework/tools/interaction.d.ts +64 -0
  110. package/dist/framework/tools/interaction.d.ts.map +1 -0
  111. package/dist/framework/tools/interaction.js +183 -0
  112. package/dist/framework/tools/interaction.js.map +1 -0
  113. package/dist/framework/tools/navigation.d.ts +22 -0
  114. package/dist/framework/tools/navigation.d.ts.map +1 -0
  115. package/dist/framework/tools/navigation.js +37 -0
  116. package/dist/framework/tools/navigation.js.map +1 -0
  117. package/dist/framework/tools/utilities.d.ts +46 -0
  118. package/dist/framework/tools/utilities.d.ts.map +1 -0
  119. package/dist/framework/tools/utilities.js +103 -0
  120. package/dist/framework/tools/utilities.js.map +1 -0
  121. package/dist/framework/tools/verification.d.ts +37 -0
  122. package/dist/framework/tools/verification.d.ts.map +1 -0
  123. package/dist/framework/tools/verification.js +81 -0
  124. package/dist/framework/tools/verification.js.map +1 -0
  125. package/dist/framework/types/agent.d.ts +46 -0
  126. package/dist/framework/types/agent.d.ts.map +1 -0
  127. package/dist/framework/types/agent.js +5 -0
  128. package/dist/framework/types/agent.js.map +1 -0
  129. package/dist/framework/types/browser.d.ts +45 -0
  130. package/dist/framework/types/browser.d.ts.map +1 -0
  131. package/dist/framework/types/browser.js +5 -0
  132. package/dist/framework/types/browser.js.map +1 -0
  133. package/dist/framework/types/cli.d.ts +18 -0
  134. package/dist/framework/types/cli.d.ts.map +1 -0
  135. package/dist/framework/types/cli.js +5 -0
  136. package/dist/framework/types/cli.js.map +1 -0
  137. package/dist/framework/types/config.d.ts +28 -0
  138. package/dist/framework/types/config.d.ts.map +1 -0
  139. package/dist/framework/types/config.js +5 -0
  140. package/dist/framework/types/config.js.map +1 -0
  141. package/dist/framework/types/errors.d.ts +19 -0
  142. package/dist/framework/types/errors.d.ts.map +1 -0
  143. package/dist/framework/types/errors.js +34 -0
  144. package/dist/framework/types/errors.js.map +1 -0
  145. package/dist/framework/types/index.d.ts +13 -0
  146. package/dist/framework/types/index.d.ts.map +1 -0
  147. package/dist/framework/types/index.js +7 -0
  148. package/dist/framework/types/index.js.map +1 -0
  149. package/dist/framework/types/recorder.d.ts +18 -0
  150. package/dist/framework/types/recorder.d.ts.map +1 -0
  151. package/dist/framework/types/recorder.js +5 -0
  152. package/dist/framework/types/recorder.js.map +1 -0
  153. package/dist/framework/types/reporter.d.ts +29 -0
  154. package/dist/framework/types/reporter.d.ts.map +1 -0
  155. package/dist/framework/types/reporter.js +5 -0
  156. package/dist/framework/types/reporter.js.map +1 -0
  157. package/dist/framework/types/test.d.ts +77 -0
  158. package/dist/framework/types/test.d.ts.map +1 -0
  159. package/dist/framework/types/test.js +5 -0
  160. package/dist/framework/types/test.js.map +1 -0
  161. package/examples/.env.example +5 -8
  162. package/examples/README-ENDORPHIN.md +57 -30
  163. package/examples/endorphin.config.ts +28 -0
  164. package/examples/test-results/.gitkeep +0 -0
  165. package/examples/tests/sample-test.ts +34 -0
  166. package/package.json +60 -23
  167. package/bin/endorphin.js +0 -360
  168. package/examples/endorphin.config.js +0 -22
  169. package/examples/test-results/HEALTH-001_2025-06-22T22-39-35-383Z/summary.json +0 -13
  170. package/examples/test-results/HEALTH-001_2025-06-22T22-39-35-383Z/test-session.json +0 -38
  171. package/examples/test-results/QE-001_2025-06-22T22-39-35-364Z/summary.json +0 -13
  172. package/examples/test-results/QE-001_2025-06-22T22-39-35-364Z/test-session.json +0 -38
  173. package/examples/tests/QE-001-basic-login-test.js +0 -18
  174. package/examples/tests/sample-test.js +0 -15
  175. package/framework/config/agent-config.js +0 -53
  176. package/framework/config/browser-config.js +0 -53
  177. package/framework/config/paths.js +0 -40
  178. package/framework/core/agent-setup.js +0 -75
  179. package/framework/core/browser-framework.js +0 -775
  180. package/framework/core/config-loader.js +0 -309
  181. package/framework/core/console-reporter.js +0 -317
  182. package/framework/core/init-command.js +0 -131
  183. package/framework/core/report-generator.js +0 -289
  184. package/framework/core/reporter.js +0 -275
  185. package/framework/core/test-discovery.js +0 -485
  186. package/framework/core/test-manager.js +0 -343
  187. package/framework/core/test-recorder.js +0 -303
  188. package/framework/core/test-results-parser.js +0 -225
  189. package/framework/core/test-runner.js +0 -133
  190. package/framework/core/test-session.js +0 -98
  191. package/framework/index.js +0 -43
  192. package/framework/interactive/enhanced-interactive-recorder.js +0 -223
  193. package/framework/interactive/index.js +0 -18
  194. package/framework/interactive/interactive-test-clean.js +0 -33
  195. package/framework/interactive/interactive-test.js +0 -33
  196. package/framework/templates/report-template.html +0 -364
  197. package/framework/templates/styles.css +0 -399
  198. package/framework/test-framework.js +0 -29
  199. package/framework/testing/index.js +0 -15
  200. package/framework/testing/test-interactive-recorder.js +0 -83
  201. package/framework/testing/test-modular-framework.js +0 -47
  202. package/framework/testing/verify-test-format.js +0 -58
  203. package/framework/tools/content.js +0 -67
  204. package/framework/tools/index.js +0 -52
  205. package/framework/tools/interaction.js +0 -180
  206. package/framework/tools/navigation.js +0 -43
  207. package/framework/tools/utilities.js +0 -99
  208. package/framework/tools/verification.js +0 -84
package/LICENSE.md CHANGED
@@ -1,209 +1,521 @@
1
- GNU AFFERO GENERAL PUBLIC LICENSE
2
- Version 3, 19 November 2007
1
+ GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007
3
2
 
4
3
  Copyright (C) 2007 Free Software Foundation, Inc. http://fsf.org/
5
4
 
6
- Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
7
-
8
- Preamble
9
- The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software.
10
-
11
- The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users.
12
-
13
-
14
- When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
15
-
16
- Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software.
17
-
18
- A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public.
19
-
20
- The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version.
21
-
22
-
23
- An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license.
24
-
25
- The precise terms and conditions for copying, distribution and modification follow.
26
-
27
- TERMS AND CONDITIONS
28
- 0. Definitions.
29
- "This License" refers to version 3 of the GNU Affero General Public License.
30
-
31
- "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
32
-
33
- "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations.
34
-
35
- To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work.
36
-
37
-
38
- A "covered work" means either the unmodified Program or a work based on the Program.
39
-
40
- To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
41
-
42
- To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
43
-
44
- An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
45
-
46
- 1. Source Code.
47
- The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work.
48
-
49
- A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
50
-
51
- The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
52
-
53
-
54
- The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
55
-
56
-
57
-
58
- The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
5
+ Everyone is permitted to copy and distribute verbatim copies of this license
6
+ document, but changing it is not allowed.
7
+
8
+ Preamble The GNU Affero General Public License is a free, copyleft license for
9
+ software and other kinds of works, specifically designed to ensure cooperation
10
+ with the community in the case of network server software.
11
+
12
+ The licenses for most software and other practical works are designed to take
13
+ away your freedom to share and change the works. By contrast, our General Public
14
+ Licenses are intended to guarantee your freedom to share and change all versions
15
+ of a program--to make sure it remains free software for all its users.
16
+
17
+ When we speak of free software, we are referring to freedom, not price. Our
18
+ General Public Licenses are designed to make sure that you have the freedom to
19
+ distribute copies of free software (and charge for them if you wish), that you
20
+ receive source code or can get it if you want it, that you can change the
21
+ software or use pieces of it in new free programs, and that you know you can do
22
+ these things.
23
+
24
+ Developers that use our General Public Licenses protect your rights with two
25
+ steps: (1) assert copyright on the software, and (2) offer you this License
26
+ which gives you legal permission to copy, distribute and/or modify the software.
27
+
28
+ A secondary benefit of defending all users' freedom is that improvements made in
29
+ alternate versions of the program, if they receive widespread use, become
30
+ available for other developers to incorporate. Many developers of free software
31
+ are heartened and encouraged by the resulting cooperation. However, in the case
32
+ of software used on network servers, this result may fail to come about. The GNU
33
+ General Public License permits making a modified version and letting the public
34
+ access it on a server without ever releasing its source code to the public.
35
+
36
+ The GNU Affero General Public License is designed specifically to ensure that,
37
+ in such cases, the modified source code becomes available to the community. It
38
+ requires the operator of a network server to provide the source code of the
39
+ modified version running there to the users of that server. Therefore, public
40
+ use of a modified version, on a publicly accessible server, gives the public
41
+ access to the source code of the modified version.
42
+
43
+ An older license, called the Affero General Public License and published by
44
+ Affero, was designed to accomplish similar goals. This is a different license,
45
+ not a version of the Affero GPL, but Affero has released a new version of the
46
+ Affero GPL which permits relicensing under this license.
47
+
48
+ The precise terms and conditions for copying, distribution and modification
49
+ follow.
50
+
51
+ TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the
52
+ GNU Affero General Public License.
53
+
54
+ "Copyright" also means copyright-like laws that apply to other kinds of works,
55
+ such as semiconductor masks.
56
+
57
+ "The Program" refers to any copyrightable work licensed under this License. Each
58
+ licensee is addressed as "you". "Licensees" and "recipients" may be individuals
59
+ or organizations.
60
+
61
+ To "modify" a work means to copy from or adapt all or part of the work in a
62
+ fashion requiring copyright permission, other than the making of an exact copy.
63
+ The resulting work is called a "modified version" of the earlier work or a work
64
+ "based on" the earlier work.
65
+
66
+ A "covered work" means either the unmodified Program or a work based on the
67
+ Program.
68
+
69
+ To "propagate" a work means to do anything with it that, without permission,
70
+ would make you directly or secondarily liable for infringement under applicable
71
+ copyright law, except executing it on a computer or modifying a private copy.
72
+ Propagation includes copying, distribution (with or without modification),
73
+ making available to the public, and in some countries other activities as well.
74
+
75
+ To "convey" a work means any kind of propagation that enables other parties to
76
+ make or receive copies. Mere interaction with a user through a computer network,
77
+ with no transfer of a copy, is not conveying.
78
+
79
+ An interactive user interface displays "Appropriate Legal Notices" to the extent
80
+ that it includes a convenient and prominently visible feature that (1) displays
81
+ an appropriate copyright notice, and (2) tells the user that there is no
82
+ warranty for the work (except to the extent that warranties are provided), that
83
+ licensees may convey the work under this License, and how to view a copy of this
84
+ License. If the interface presents a list of user commands or options, such as a
85
+ menu, a prominent item in the list meets this criterion.
86
+
87
+ 1. Source Code. The "source code" for a work means the preferred form of the
88
+ work for making modifications to it. "Object code" means any non-source form
89
+ of a work.
90
+
91
+ A "Standard Interface" means an interface that either is an official standard
92
+ defined by a recognized standards body, or, in the case of interfaces specified
93
+ for a particular programming language, one that is widely used among developers
94
+ working in that language.
95
+
96
+ The "System Libraries" of an executable work include anything, other than the
97
+ work as a whole, that (a) is included in the normal form of packaging a Major
98
+ Component, but which is not part of that Major Component, and (b) serves only to
99
+ enable use of the work with that Major Component, or to implement a Standard
100
+ Interface for which an implementation is available to the public in source code
101
+ form. A "Major Component", in this context, means a major essential component
102
+ (kernel, window system, and so on) of the specific operating system (if any) on
103
+ which the executable work runs, or a compiler used to produce the work, or an
104
+ object code interpreter used to run it.
105
+
106
+ The "Corresponding Source" for a work in object code form means all the source
107
+ code needed to generate, install, and (for an executable work) run the object
108
+ code and to modify the work, including scripts to control those activities.
109
+ However, it does not include the work's System Libraries, or general-purpose
110
+ tools or generally available free programs which are used unmodified in
111
+ performing those activities but which are not part of the work. For example,
112
+ Corresponding Source includes interface definition files associated with source
113
+ files for the work, and the source code for shared libraries and dynamically
114
+ linked subprograms that the work is specifically designed to require, such as by
115
+ intimate data communication or control flow between those subprograms and other
116
+ parts of the work.
117
+
118
+ The Corresponding Source need not include anything that users can regenerate
119
+ automatically from other parts of the Corresponding Source.
59
120
 
60
121
  The Corresponding Source for a work in source code form is that same work.
61
122
 
62
- 2. Basic Permissions.
63
- All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
64
-
65
-
66
-
67
- You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
68
-
69
-
70
- Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
71
-
72
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
73
- No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
74
-
75
- When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
76
-
77
- 4. Conveying Verbatim Copies.
78
- You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
79
-
80
- You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
81
-
82
- 5. Conveying Modified Source Versions.
83
- You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
84
-
85
- a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
86
- b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices".
87
- c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
88
-
89
- d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
90
- A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
91
-
92
-
93
- 6. Conveying Non-Source Forms.
94
- You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
95
-
96
- a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
97
- b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
98
- c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
99
- d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
100
-
101
- e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
102
- A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
103
-
104
- A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
105
-
106
-
107
- "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
108
-
109
- If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
110
-
111
-
112
- The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
113
-
114
-
115
- Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
116
-
117
- 7. Additional Terms.
118
- "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
119
-
120
-
121
- When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
122
-
123
- Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
124
-
125
- a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
126
- b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
127
- c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
128
- d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
129
- e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
130
- f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
131
- All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
132
-
133
-
134
- If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
135
-
136
- Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
137
-
138
- 8. Termination.
139
- You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
140
-
141
- However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
142
-
143
- Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
144
-
145
- Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
146
-
147
- 9. Acceptance Not Required for Having Copies.
148
- You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
149
-
150
-
151
- 10. Automatic Licensing of Downstream Recipients.
152
- Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
153
-
154
- An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
155
-
156
- You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
157
-
158
- 11. Patents.
159
- A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version".
160
-
161
- A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
162
-
163
- Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
164
-
165
- In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
166
-
167
- If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
168
-
169
- If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
170
-
171
- A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
172
-
173
-
174
- Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
175
-
176
- 12. No Surrender of Others' Freedom.
177
- If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
123
+ 2. Basic Permissions. All rights granted under this License are granted for the
124
+ term of copyright on the Program, and are irrevocable provided the stated
125
+ conditions are met. This License explicitly affirms your unlimited permission
126
+ to run the unmodified Program. The output from running a covered work is
127
+ covered by this License only if the output, given its content, constitutes a
128
+ covered work. This License acknowledges your rights of fair use or other
129
+ equivalent, as provided by copyright law.
130
+
131
+ You may make, run and propagate covered works that you do not convey, without
132
+ conditions so long as your license otherwise remains in force. You may convey
133
+ covered works to others for the sole purpose of having them make modifications
134
+ exclusively for you, or provide you with facilities for running those works,
135
+ provided that you comply with the terms of this License in conveying all
136
+ material for which you do not control copyright. Those thus making or running
137
+ the covered works for you must do so exclusively on your behalf, under your
138
+ direction and control, on terms that prohibit them from making any copies of
139
+ your copyrighted material outside their relationship with you.
140
+
141
+ Conveying under any other circumstances is permitted solely under the conditions
142
+ stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
143
+
144
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work
145
+ shall be deemed part of an effective technological measure under any
146
+ applicable law fulfilling obligations under article 11 of the WIPO copyright
147
+ treaty adopted on 20 December 1996, or similar laws prohibiting or
148
+ restricting circumvention of such measures.
149
+
150
+ When you convey a covered work, you waive any legal power to forbid
151
+ circumvention of technological measures to the extent such circumvention is
152
+ effected by exercising rights under this License with respect to the covered
153
+ work, and you disclaim any intention to limit operation or modification of the
154
+ work as a means of enforcing, against the work's users, your or third parties'
155
+ legal rights to forbid circumvention of technological measures.
156
+
157
+ 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's
158
+ source code as you receive it, in any medium, provided that you conspicuously
159
+ and appropriately publish on each copy an appropriate copyright notice; keep
160
+ intact all notices stating that this License and any non-permissive terms
161
+ added in accord with section 7 apply to the code; keep intact all notices of
162
+ the absence of any warranty; and give all recipients a copy of this License
163
+ along with the Program.
164
+
165
+ You may charge any price or no price for each copy that you convey, and you may
166
+ offer support or warranty protection for a fee.
167
+
168
+ 5. Conveying Modified Source Versions. You may convey a work based on the
169
+ Program, or the modifications to produce it from the Program, in the form of
170
+ source code under the terms of section 4, provided that you also meet all of
171
+ these conditions:
172
+
173
+ a) The work must carry prominent notices stating that you modified it, and
174
+ giving a relevant date. b) The work must carry prominent notices stating that it
175
+ is released under this License and any conditions added under section 7. This
176
+ requirement modifies the requirement in section 4 to "keep intact all notices".
177
+ c) You must license the entire work, as a whole, under this License to anyone
178
+ who comes into possession of a copy. This License will therefore apply, along
179
+ with any applicable section 7 additional terms, to the whole of the work, and
180
+ all its parts, regardless of how they are packaged. This License gives no
181
+ permission to license the work in any other way, but it does not invalidate such
182
+ permission if you have separately received it.
183
+
184
+ d) If the work has interactive user interfaces, each must display Appropriate
185
+ Legal Notices; however, if the Program has interactive interfaces that do not
186
+ display Appropriate Legal Notices, your work need not make them do so. A
187
+ compilation of a covered work with other separate and independent works, which
188
+ are not by their nature extensions of the covered work, and which are not
189
+ combined with it such as to form a larger program, in or on a volume of a
190
+ storage or distribution medium, is called an "aggregate" if the compilation and
191
+ its resulting copyright are not used to limit the access or legal rights of the
192
+ compilation's users beyond what the individual works permit. Inclusion of a
193
+ covered work in an aggregate does not cause this License to apply to the other
194
+ parts of the aggregate.
195
+
196
+ 6. Conveying Non-Source Forms. You may convey a covered work in object code form
197
+ under the terms of sections 4 and 5, provided that you also convey the
198
+ machine-readable Corresponding Source under the terms of this License, in one
199
+ of these ways:
200
+
201
+ a) Convey the object code in, or embodied in, a physical product (including a
202
+ physical distribution medium), accompanied by the Corresponding Source fixed on
203
+ a durable physical medium customarily used for software interchange. b) Convey
204
+ the object code in, or embodied in, a physical product (including a physical
205
+ distribution medium), accompanied by a written offer, valid for at least three
206
+ years and valid for as long as you offer spare parts or customer support for
207
+ that product model, to give anyone who possesses the object code either (1) a
208
+ copy of the Corresponding Source for all the software in the product that is
209
+ covered by this License, on a durable physical medium customarily used for
210
+ software interchange, for a price no more than your reasonable cost of
211
+ physically performing this conveying of source, or (2) access to copy the
212
+ Corresponding Source from a network server at no charge. c) Convey individual
213
+ copies of the object code with a copy of the written offer to provide the
214
+ Corresponding Source. This alternative is allowed only occasionally and
215
+ noncommercially, and only if you received the object code with such an offer, in
216
+ accord with subsection 6b. d) Convey the object code by offering access from a
217
+ designated place (gratis or for a charge), and offer equivalent access to the
218
+ Corresponding Source in the same way through the same place at no further
219
+ charge. You need not require recipients to copy the Corresponding Source along
220
+ with the object code. If the place to copy the object code is a network server,
221
+ the Corresponding Source may be on a different server (operated by you or a
222
+ third party) that supports equivalent copying facilities, provided you maintain
223
+ clear directions next to the object code saying where to find the Corresponding
224
+ Source. Regardless of what server hosts the Corresponding Source, you remain
225
+ obligated to ensure that it is available for as long as needed to satisfy these
226
+ requirements.
227
+
228
+ e) Convey the object code using peer-to-peer transmission, provided you inform
229
+ other peers where the object code and Corresponding Source of the work are being
230
+ offered to the general public at no charge under subsection 6d. A separable
231
+ portion of the object code, whose source code is excluded from the Corresponding
232
+ Source as a System Library, need not be included in conveying the object code
233
+ work.
234
+
235
+ A "User Product" is either (1) a "consumer product", which means any tangible
236
+ personal property which is normally used for personal, family, or household
237
+ purposes, or (2) anything designed or sold for incorporation into a dwelling. In
238
+ determining whether a product is a consumer product, doubtful cases shall be
239
+ resolved in favor of coverage. For a particular product received by a particular
240
+ user, "normally used" refers to a typical or common use of that class of
241
+ product, regardless of the status of the particular user or of the way in which
242
+ the particular user actually uses, or expects or is expected to use, the
243
+ product. A product is a consumer product regardless of whether the product has
244
+ substantial commercial, industrial or non-consumer uses, unless such uses
245
+ represent the only significant mode of use of the product.
246
+
247
+ "Installation Information" for a User Product means any methods, procedures,
248
+ authorization keys, or other information required to install and execute
249
+ modified versions of a covered work in that User Product from a modified version
250
+ of its Corresponding Source. The information must suffice to ensure that the
251
+ continued functioning of the modified object code is in no case prevented or
252
+ interfered with solely because modification has been made.
253
+
254
+ If you convey an object code work under this section in, or with, or
255
+ specifically for use in, a User Product, and the conveying occurs as part of a
256
+ transaction in which the right of possession and use of the User Product is
257
+ transferred to the recipient in perpetuity or for a fixed term (regardless of
258
+ how the transaction is characterized), the Corresponding Source conveyed under
259
+ this section must be accompanied by the Installation Information. But this
260
+ requirement does not apply if neither you nor any third party retains the
261
+ ability to install modified object code on the User Product (for example, the
262
+ work has been installed in ROM).
263
+
264
+ The requirement to provide Installation Information does not include a
265
+ requirement to continue to provide support service, warranty, or updates for a
266
+ work that has been modified or installed by the recipient, or for the User
267
+ Product in which it has been modified or installed. Access to a network may be
268
+ denied when the modification itself materially and adversely affects the
269
+ operation of the network or violates the rules and protocols for communication
270
+ across the network.
271
+
272
+ Corresponding Source conveyed, and Installation Information provided, in accord
273
+ with this section must be in a format that is publicly documented (and with an
274
+ implementation available to the public in source code form), and must require no
275
+ special password or key for unpacking, reading or copying.
276
+
277
+ 7. Additional Terms. "Additional permissions" are terms that supplement the
278
+ terms of this License by making exceptions from one or more of its
279
+ conditions. Additional permissions that are applicable to the entire Program
280
+ shall be treated as though they were included in this License, to the extent
281
+ that they are valid under applicable law. If additional permissions apply
282
+ only to part of the Program, that part may be used separately under those
283
+ permissions, but the entire Program remains governed by this License without
284
+ regard to the additional permissions.
285
+
286
+ When you convey a copy of a covered work, you may at your option remove any
287
+ additional permissions from that copy, or from any part of it. (Additional
288
+ permissions may be written to require their own removal in certain cases when
289
+ you modify the work.) You may place additional permissions on material, added by
290
+ you to a covered work, for which you have or can give appropriate copyright
291
+ permission.
292
+
293
+ Notwithstanding any other provision of this License, for material you add to a
294
+ covered work, you may (if authorized by the copyright holders of that material)
295
+ supplement the terms of this License with terms:
296
+
297
+ a) Disclaiming warranty or limiting liability differently from the terms of
298
+ sections 15 and 16 of this License; or b) Requiring preservation of specified
299
+ reasonable legal notices or author attributions in that material or in the
300
+ Appropriate Legal Notices displayed by works containing it; or c) Prohibiting
301
+ misrepresentation of the origin of that material, or requiring that modified
302
+ versions of such material be marked in reasonable ways as different from the
303
+ original version; or d) Limiting the use for publicity purposes of names of
304
+ licensors or authors of the material; or e) Declining to grant rights under
305
+ trademark law for use of some trade names, trademarks, or service marks; or f)
306
+ Requiring indemnification of licensors and authors of that material by anyone
307
+ who conveys the material (or modified versions of it) with contractual
308
+ assumptions of liability to the recipient, for any liability that these
309
+ contractual assumptions directly impose on those licensors and authors. All
310
+ other non-permissive additional terms are considered "further restrictions"
311
+ within the meaning of section 10. If the Program as you received it, or any part
312
+ of it, contains a notice stating that it is governed by this License along with
313
+ a term that is a further restriction, you may remove that term. If a license
314
+ document contains a further restriction but permits relicensing or conveying
315
+ under this License, you may add to a covered work material governed by the terms
316
+ of that license document, provided that the further restriction does not survive
317
+ such relicensing or conveying.
318
+
319
+ If you add terms to a covered work in accord with this section, you must place,
320
+ in the relevant source files, a statement of the additional terms that apply to
321
+ those files, or a notice indicating where to find the applicable terms.
322
+
323
+ Additional terms, permissive or non-permissive, may be stated in the form of a
324
+ separately written license, or stated as exceptions; the above requirements
325
+ apply either way.
326
+
327
+ 8. Termination. You may not propagate or modify a covered work except as
328
+ expressly provided under this License. Any attempt otherwise to propagate or
329
+ modify it is void, and will automatically terminate your rights under this
330
+ License (including any patent licenses granted under the third paragraph of
331
+ section 11).
332
+
333
+ However, if you cease all violation of this License, then your license from a
334
+ particular copyright holder is reinstated (a) provisionally, unless and until
335
+ the copyright holder explicitly and finally terminates your license, and (b)
336
+ permanently, if the copyright holder fails to notify you of the violation by
337
+ some reasonable means prior to 60 days after the cessation.
338
+
339
+ Moreover, your license from a particular copyright holder is reinstated
340
+ permanently if the copyright holder notifies you of the violation by some
341
+ reasonable means, this is the first time you have received notice of violation
342
+ of this License (for any work) from that copyright holder, and you cure the
343
+ violation prior to 30 days after your receipt of the notice.
344
+
345
+ Termination of your rights under this section does not terminate the licenses of
346
+ parties who have received copies or rights from you under this License. If your
347
+ rights have been terminated and not permanently reinstated, you do not qualify
348
+ to receive new licenses for the same material under section 10.
349
+
350
+ 9. Acceptance Not Required for Having Copies. You are not required to accept
351
+ this License in order to receive or run a copy of the Program. Ancillary
352
+ propagation of a covered work occurring solely as a consequence of using
353
+ peer-to-peer transmission to receive a copy likewise does not require
354
+ acceptance. However, nothing other than this License grants you permission to
355
+ propagate or modify any covered work. These actions infringe copyright if you
356
+ do not accept this License. Therefore, by modifying or propagating a covered
357
+ work, you indicate your acceptance of this License to do so.
358
+
359
+ 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered
360
+ work, the recipient automatically receives a license from the original
361
+ licensors, to run, modify and propagate that work, subject to this License.
362
+ You are not responsible for enforcing compliance by third parties with this
363
+ License.
364
+
365
+ An "entity transaction" is a transaction transferring control of an
366
+ organization, or substantially all assets of one, or subdividing an
367
+ organization, or merging organizations. If propagation of a covered work results
368
+ from an entity transaction, each party to that transaction who receives a copy
369
+ of the work also receives whatever licenses to the work the party's predecessor
370
+ in interest had or could give under the previous paragraph, plus a right to
371
+ possession of the Corresponding Source of the work from the predecessor in
372
+ interest, if the predecessor has it or can get it with reasonable efforts.
373
+
374
+ You may not impose any further restrictions on the exercise of the rights
375
+ granted or affirmed under this License. For example, you may not impose a
376
+ license fee, royalty, or other charge for exercise of rights granted under this
377
+ License, and you may not initiate litigation (including a cross-claim or
378
+ counterclaim in a lawsuit) alleging that any patent claim is infringed by
379
+ making, using, selling, offering for sale, or importing the Program or any
380
+ portion of it.
381
+
382
+ 11. Patents. A "contributor" is a copyright holder who authorizes use under this
383
+ License of the Program or a work on which the Program is based. The work
384
+ thus licensed is called the contributor's "contributor version".
385
+
386
+ A contributor's "essential patent claims" are all patent claims owned or
387
+ controlled by the contributor, whether already acquired or hereafter acquired,
388
+ that would be infringed by some manner, permitted by this License, of making,
389
+ using, or selling its contributor version, but do not include claims that would
390
+ be infringed only as a consequence of further modification of the contributor
391
+ version. For purposes of this definition, "control" includes the right to grant
392
+ patent sublicenses in a manner consistent with the requirements of this License.
393
+
394
+ Each contributor grants you a non-exclusive, worldwide, royalty-free patent
395
+ license under the contributor's essential patent claims, to make, use, sell,
396
+ offer for sale, import and otherwise run, modify and propagate the contents of
397
+ its contributor version.
398
+
399
+ In the following three paragraphs, a "patent license" is any express agreement
400
+ or commitment, however denominated, not to enforce a patent (such as an express
401
+ permission to practice a patent or covenant not to sue for patent infringement).
402
+ To "grant" such a patent license to a party means to make such an agreement or
403
+ commitment not to enforce a patent against the party.
404
+
405
+ If you convey a covered work, knowingly relying on a patent license, and the
406
+ Corresponding Source of the work is not available for anyone to copy, free of
407
+ charge and under the terms of this License, through a publicly available network
408
+ server or other readily accessible means, then you must either (1) cause the
409
+ Corresponding Source to be so available, or (2) arrange to deprive yourself of
410
+ the benefit of the patent license for this particular work, or (3) arrange, in a
411
+ manner consistent with the requirements of this License, to extend the patent
412
+ license to downstream recipients. "Knowingly relying" means you have actual
413
+ knowledge that, but for the patent license, your conveying the covered work in a
414
+ country, or your recipient's use of the covered work in a country, would
415
+ infringe one or more identifiable patents in that country that you have reason
416
+ to believe are valid.
417
+
418
+ If, pursuant to or in connection with a single transaction or arrangement, you
419
+ convey, or propagate by procuring conveyance of, a covered work, and grant a
420
+ patent license to some of the parties receiving the covered work authorizing
421
+ them to use, propagate, modify or convey a specific copy of the covered work,
422
+ then the patent license you grant is automatically extended to all recipients of
423
+ the covered work and works based on it.
424
+
425
+ A patent license is "discriminatory" if it does not include within the scope of
426
+ its coverage, prohibits the exercise of, or is conditioned on the non-exercise
427
+ of one or more of the rights that are specifically granted under this License.
428
+ You may not convey a covered work if you are a party to an arrangement with a
429
+ third party that is in the business of distributing software, under which you
430
+ make payment to the third party based on the extent of your activity of
431
+ conveying the work, and under which the third party grants, to any of the
432
+ parties who would receive the covered work from you, a discriminatory patent
433
+ license (a) in connection with copies of the covered work conveyed by you (or
434
+ copies made from those copies), or (b) primarily for and in connection with
435
+ specific products or compilations that contain the covered work, unless you
436
+ entered into that arrangement, or that patent license was granted, prior to 28
437
+ March 2007.
438
+
439
+ Nothing in this License shall be construed as excluding or limiting any implied
440
+ license or other defenses to infringement that may otherwise be available to you
441
+ under applicable patent law.
442
+
443
+ 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether
444
+ by court order, agreement or otherwise) that contradict the conditions of
445
+ this License, they do not excuse you from the conditions of this License. If
446
+ you cannot convey a covered work so as to satisfy simultaneously your
447
+ obligations under this License and any other pertinent obligations, then as
448
+ a consequence you may not convey it at all. For example, if you agree to
449
+ terms that obligate you to collect a royalty for further conveying from
450
+ those to whom you convey the Program, the only way you could satisfy both
451
+ those terms and this License would be to refrain entirely from conveying the
452
+ Program.
178
453
 
179
454
  13. Remote Network Interaction; Use with the GNU General Public License.
180
- Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph.
181
-
182
- Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License.
183
-
184
- 14. Revised Versions of this License.
185
- The Free Software Foundation may publish revised and/or new versions of the GNU Affero 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.
186
-
187
- Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation.
188
-
189
- If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
190
-
191
- Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
192
-
193
- 15. Disclaimer of Warranty.
194
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "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 PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
195
-
196
- 16. Limitation of Liability.
197
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
198
-
199
- 17. Interpretation of Sections 15 and 16.
200
- If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
455
+ Notwithstanding any other provision of this License, if you modify the
456
+ Program, your modified version must prominently offer all users interacting
457
+ with it remotely through a computer network (if your version supports such
458
+ interaction) an opportunity to receive the Corresponding Source of your
459
+ version by providing access to the Corresponding Source from a network
460
+ server at no charge, through some standard or customary means of
461
+ facilitating copying of software. This Corresponding Source shall include
462
+ the Corresponding Source for any work covered by version 3 of the GNU
463
+ General Public License that is incorporated pursuant to the following
464
+ paragraph.
465
+
466
+ Notwithstanding any other provision of this License, you have permission to link
467
+ or combine any covered work with a work licensed under version 3 of the GNU
468
+ General Public License into a single combined work, and to convey the resulting
469
+ work. The terms of this License will continue to apply to the part which is the
470
+ covered work, but the work with which it is combined will remain governed by
471
+ version 3 of the GNU General Public License.
472
+
473
+ 14. Revised Versions of this License. The Free Software Foundation may publish
474
+ revised and/or new versions of the GNU Affero General Public License from
475
+ time to time. Such new versions will be similar in spirit to the present
476
+ version, but may differ in detail to address new problems or concerns.
477
+
478
+ Each version is given a distinguishing version number. If the Program specifies
479
+ that a certain numbered version of the GNU Affero General Public License "or any
480
+ later version" applies to it, you have the option of following the terms and
481
+ conditions either of that numbered version or of any later version published by
482
+ the Free Software Foundation. If the Program does not specify a version number
483
+ of the GNU Affero General Public License, you may choose any version ever
484
+ published by the Free Software Foundation.
485
+
486
+ If the Program specifies that a proxy can decide which future versions of the
487
+ GNU Affero General Public License can be used, that proxy's public statement of
488
+ acceptance of a version permanently authorizes you to choose that version for
489
+ the Program.
490
+
491
+ Later license versions may give you additional or different permissions.
492
+ However, no additional obligations are imposed on any author or copyright holder
493
+ as a result of your choosing to follow a later version.
494
+
495
+ 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT
496
+ PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE
497
+ COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
498
+ WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
499
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
500
+ PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
501
+ PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST
502
+ OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
503
+
504
+ 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR
505
+ AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO
506
+ MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR
507
+ DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
508
+ ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT
509
+ LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES
510
+ SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE
511
+ WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN
512
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
513
+
514
+ 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and
515
+ limitation of liability provided above cannot be given local legal effect
516
+ according to their terms, reviewing courts shall apply local law that most
517
+ closely approximates an absolute waiver of all civil liability in connection
518
+ with the Program, unless a warranty or assumption of liability accompanies a
519
+ copy of the Program in return for a fee.
201
520
 
202
521
  END OF TERMS AND CONDITIONS
203
-
204
-
205
-
206
-
207
-
208
-
209
-