jekyll-theme-hydebetty 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (301) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +622 -0
  3. data/README.md +180 -0
  4. data/_includes/body/analytics.html +43 -0
  5. data/_includes/body/comments.html +6 -0
  6. data/_includes/body/footer.html +19 -0
  7. data/_includes/body/index.html +22 -0
  8. data/_includes/body/main.html +18 -0
  9. data/_includes/body/menu.html +24 -0
  10. data/_includes/body/nav.html +41 -0
  11. data/_includes/body/scripts.html +9 -0
  12. data/_includes/body/sidebar.html +47 -0
  13. data/_includes/components/about.html +8 -0
  14. data/_includes/components/author.html +24 -0
  15. data/_includes/components/avatar-tag.html +4 -0
  16. data/_includes/components/hy-img.html +40 -0
  17. data/_includes/components/link.html +12 -0
  18. data/_includes/components/message.html +14 -0
  19. data/_includes/components/pagination.html +15 -0
  20. data/_includes/components/post-list-item.html +7 -0
  21. data/_includes/components/post.html +49 -0
  22. data/_includes/components/related-posts.html +25 -0
  23. data/_includes/components/social-list-item.html +40 -0
  24. data/_includes/components/social.html +23 -0
  25. data/_includes/components/tag-list.html +26 -0
  26. data/_includes/head/feed-tag.html +1 -0
  27. data/_includes/head/index.html +9 -0
  28. data/_includes/head/links.html +33 -0
  29. data/_includes/head/meta.html +34 -0
  30. data/_includes/head/page-style.html +6 -0
  31. data/_includes/head/scripts.html +9 -0
  32. data/_includes/head/seo-fallback.html +13 -0
  33. data/_includes/head/seo-tag.html +4 -0
  34. data/_includes/head/styles.html +41 -0
  35. data/_includes/header.txt +13 -0
  36. data/_includes/icon-github.html +2 -0
  37. data/_includes/my-body.html +42 -0
  38. data/_includes/my-comments.html +24 -0
  39. data/_includes/my-head.html +13 -0
  40. data/_includes/my-scripts.html +55 -0
  41. data/_includes/scripts/cssrelpreload.min.js +1 -0
  42. data/_includes/scripts/load-js.js +60 -0
  43. data/_includes/scripts/load-js.min.js +0 -0
  44. data/_includes/scripts/loadCSS.min.js +1 -0
  45. data/_includes/scripts/nomodule.js +21 -0
  46. data/_includes/scripts/nomodule.min.js +0 -0
  47. data/_includes/scripts.html +33 -0
  48. data/_includes/smart-url.txt +1 -0
  49. data/_includes/styles/inline.scss +62 -0
  50. data/_includes/styles/page-style.scss +64 -0
  51. data/_includes/styles/style.scss +113 -0
  52. data/_includes/templates/animation.html +7 -0
  53. data/_includes/templates/back.html +6 -0
  54. data/_includes/templates/error.html +10 -0
  55. data/_includes/templates/forward.html +6 -0
  56. data/_includes/templates/index.html +12 -0
  57. data/_includes/templates/loading.html +6 -0
  58. data/_includes/templates/permalink.html +6 -0
  59. data/_layouts/about.html +43 -0
  60. data/_layouts/base.html +38 -0
  61. data/_layouts/blog.html +32 -0
  62. data/_layouts/compress.html +15 -0
  63. data/_layouts/default.html +56 -0
  64. data/_layouts/home.html +20 -0
  65. data/_layouts/list.html +46 -0
  66. data/_layouts/not-found.html +37 -0
  67. data/_layouts/page.html +27 -0
  68. data/_layouts/post.html +34 -0
  69. data/_layouts/redirect.html +23 -0
  70. data/_sass/_mixins.scss +63 -0
  71. data/_sass/_reboot-mod.scss +286 -0
  72. data/_sass/_spinner.scss +45 -0
  73. data/_sass/_syntax.scss +131 -0
  74. data/_sass/_variables.scss +63 -0
  75. data/_sass/hydejack/__inline__/_avatar.scss +48 -0
  76. data/_sass/hydejack/__inline__/_base.scss +73 -0
  77. data/_sass/hydejack/__inline__/_break-layout.scss +25 -0
  78. data/_sass/hydejack/__inline__/_content.scss +59 -0
  79. data/_sass/hydejack/__inline__/_footer.scss +25 -0
  80. data/_sass/hydejack/__inline__/_images.scss +38 -0
  81. data/_sass/hydejack/__inline__/_katex.scss +25 -0
  82. data/_sass/hydejack/__inline__/_links.scss +45 -0
  83. data/_sass/hydejack/__inline__/_mark-external.scss +25 -0
  84. data/_sass/hydejack/__inline__/_menu.scss +67 -0
  85. data/_sass/hydejack/__inline__/_sidebar.scss +144 -0
  86. data/_sass/hydejack/__inline__/_social.scss +58 -0
  87. data/_sass/hydejack/__inline__/_utilities.scss +45 -0
  88. data/_sass/hydejack/__link__/_avatar.scss +38 -0
  89. data/_sass/hydejack/__link__/_base.scss +42 -0
  90. data/_sass/hydejack/__link__/_break-layout.scss +64 -0
  91. data/_sass/hydejack/__link__/_content.scss +32 -0
  92. data/_sass/hydejack/__link__/_footer.scss +47 -0
  93. data/_sass/hydejack/__link__/_images.scss +90 -0
  94. data/_sass/hydejack/__link__/_katex.scss +57 -0
  95. data/_sass/hydejack/__link__/_links.scss +53 -0
  96. data/_sass/hydejack/__link__/_mark-external.scss +51 -0
  97. data/_sass/hydejack/__link__/_menu.scss +42 -0
  98. data/_sass/hydejack/__link__/_sidebar.scss +114 -0
  99. data/_sass/hydejack/__link__/_social.scss +33 -0
  100. data/_sass/hydejack/__link__/_utilities.scss +54 -0
  101. data/_sass/hydejack/_avatar.pre.scss +44 -0
  102. data/_sass/hydejack/_base.pre.scss +78 -0
  103. data/_sass/hydejack/_break-layout.pre.scss +55 -0
  104. data/_sass/hydejack/_content.pre.scss +56 -0
  105. data/_sass/hydejack/_footer.pre.scss +38 -0
  106. data/_sass/hydejack/_images.pre.scss +83 -0
  107. data/_sass/hydejack/_katex.pre.scss +48 -0
  108. data/_sass/hydejack/_links.pre.scss +47 -0
  109. data/_sass/hydejack/_mark-external.pre.scss +42 -0
  110. data/_sass/hydejack/_menu.pre.scss +74 -0
  111. data/_sass/hydejack/_sidebar.pre.scss +175 -0
  112. data/_sass/hydejack/_social.pre.scss +55 -0
  113. data/_sass/hydejack/_utilities.pre.scss +46 -0
  114. data/_sass/my-inline.scss +16 -0
  115. data/_sass/my-style.scss +9 -0
  116. data/_sass/my-variables.scss +1 -0
  117. data/_sass/pooleparty/__inline__/_base.scss +75 -0
  118. data/_sass/pooleparty/__inline__/_code.scss +25 -0
  119. data/_sass/pooleparty/__inline__/_footer.scss +25 -0
  120. data/_sass/pooleparty/__inline__/_footnotes.scss +25 -0
  121. data/_sass/pooleparty/__inline__/_message.scss +35 -0
  122. data/_sass/pooleparty/__inline__/_pagination.scss +25 -0
  123. data/_sass/pooleparty/__inline__/_posts.scss +49 -0
  124. data/_sass/pooleparty/__inline__/_read-more.scss +25 -0
  125. data/_sass/pooleparty/__inline__/_related.scss +38 -0
  126. data/_sass/pooleparty/__inline__/_table.scss +53 -0
  127. data/_sass/pooleparty/__inline__/_type.scss +88 -0
  128. data/_sass/pooleparty/__link__/_base.scss +40 -0
  129. data/_sass/pooleparty/__link__/_code.scss +75 -0
  130. data/_sass/pooleparty/__link__/_footer.scss +25 -0
  131. data/_sass/pooleparty/__link__/_footnotes.scss +80 -0
  132. data/_sass/pooleparty/__link__/_message.scss +25 -0
  133. data/_sass/pooleparty/__link__/_pagination.scss +90 -0
  134. data/_sass/pooleparty/__link__/_posts.scss +38 -0
  135. data/_sass/pooleparty/__link__/_read-more.scss +45 -0
  136. data/_sass/pooleparty/__link__/_related.scss +33 -0
  137. data/_sass/pooleparty/__link__/_table.scss +171 -0
  138. data/_sass/pooleparty/__link__/_type.scss +141 -0
  139. data/_sass/pooleparty/_base.pre.scss +74 -0
  140. data/_sass/pooleparty/_code.pre.scss +66 -0
  141. data/_sass/pooleparty/_footer.pre.scss +16 -0
  142. data/_sass/pooleparty/_footnotes.pre.scss +71 -0
  143. data/_sass/pooleparty/_message.pre.scss +26 -0
  144. data/_sass/pooleparty/_pagination.pre.scss +81 -0
  145. data/_sass/pooleparty/_posts.pre.scss +52 -0
  146. data/_sass/pooleparty/_read-more.pre.scss +36 -0
  147. data/_sass/pooleparty/_related.pre.scss +35 -0
  148. data/_sass/pooleparty/_table.pre.scss +180 -0
  149. data/_sass/pooleparty/_type.pre.scss +193 -0
  150. data/assets/Resume.pdf +0 -0
  151. data/assets/bower.json +11 -0
  152. data/assets/bower_components/html5shiv/.bower.json +26 -0
  153. data/assets/bower_components/html5shiv/Gruntfile.js +61 -0
  154. data/assets/bower_components/html5shiv/bower.json +15 -0
  155. data/assets/bower_components/html5shiv/dist/html5shiv-printshiv.js +524 -0
  156. data/assets/bower_components/html5shiv/dist/html5shiv-printshiv.min.js +4 -0
  157. data/assets/bower_components/html5shiv/dist/html5shiv.js +326 -0
  158. data/assets/bower_components/html5shiv/dist/html5shiv.min.js +4 -0
  159. data/assets/bower_components/html5shiv/package.json +16 -0
  160. data/assets/bower_components/katex/.bower.json +47 -0
  161. data/assets/bower_components/katex/LICENSE +21 -0
  162. data/assets/bower_components/katex/bower.json +36 -0
  163. data/assets/bower_components/katex/dist/contrib/auto-render.js +339 -0
  164. data/assets/bower_components/katex/dist/contrib/auto-render.min.js +1 -0
  165. data/assets/bower_components/katex/dist/contrib/auto-render.mjs +215 -0
  166. data/assets/bower_components/katex/dist/contrib/copy-tex.css +14 -0
  167. data/assets/bower_components/katex/dist/contrib/copy-tex.js +213 -0
  168. data/assets/bower_components/katex/dist/contrib/copy-tex.min.css +1 -0
  169. data/assets/bower_components/katex/dist/contrib/copy-tex.min.js +1 -0
  170. data/assets/bower_components/katex/dist/contrib/copy-tex.mjs +85 -0
  171. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.js +137 -0
  172. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.min.js +1 -0
  173. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.mjs +24 -0
  174. data/assets/bower_components/katex/dist/contrib/mhchem.js +3241 -0
  175. data/assets/bower_components/katex/dist/contrib/mhchem.min.js +1 -0
  176. data/assets/bower_components/katex/dist/contrib/mhchem.mjs +3109 -0
  177. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.ttf +0 -0
  178. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff +0 -0
  179. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  180. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  181. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  182. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  183. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  184. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  185. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  186. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  187. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  188. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  189. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  190. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  191. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  192. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.ttf +0 -0
  193. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff +0 -0
  194. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff2 +0 -0
  195. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  196. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  197. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  198. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.ttf +0 -0
  199. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff +0 -0
  200. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff2 +0 -0
  201. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.ttf +0 -0
  202. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff +0 -0
  203. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff2 +0 -0
  204. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  205. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  206. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  207. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.ttf +0 -0
  208. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff +0 -0
  209. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff2 +0 -0
  210. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  211. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  212. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  213. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  214. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  215. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  216. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  217. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  218. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  219. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.ttf +0 -0
  220. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff +0 -0
  221. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff2 +0 -0
  222. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.ttf +0 -0
  223. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff +0 -0
  224. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  225. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.ttf +0 -0
  226. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff +0 -0
  227. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  228. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.ttf +0 -0
  229. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff +0 -0
  230. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  231. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.ttf +0 -0
  232. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff +0 -0
  233. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  234. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  235. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  236. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  237. data/assets/bower_components/katex/dist/katex.css +1021 -0
  238. data/assets/bower_components/katex/dist/katex.js +16809 -0
  239. data/assets/bower_components/katex/dist/katex.min.css +1 -0
  240. data/assets/bower_components/katex/dist/katex.min.js +1 -0
  241. data/assets/bower_components/katex/dist/katex.mjs +16342 -0
  242. data/assets/bower_components/katex/yarn.lock +8952 -0
  243. data/assets/css/hydejack-7.5.2.css +3 -0
  244. data/assets/css/hydejack-8.5.2.css +3 -0
  245. data/assets/icomoon/fonts/icomoon.eot +0 -0
  246. data/assets/icomoon/fonts/icomoon.svg +96 -0
  247. data/assets/icomoon/fonts/icomoon.ttf +0 -0
  248. data/assets/icomoon/fonts/icomoon.woff +0 -0
  249. data/assets/icomoon/selection.json +1 -0
  250. data/assets/icomoon/style.css +284 -0
  251. data/assets/icons/favicon.ico +0 -0
  252. data/assets/icons/icon.png +0 -0
  253. data/assets/icons/icon@0,25x.png +0 -0
  254. data/assets/icons/icon@0,5x.png +0 -0
  255. data/assets/icons/icon@0,75x.png +0 -0
  256. data/assets/icons/icon@2x.png +0 -0
  257. data/assets/icons/icon@3x.png +0 -0
  258. data/assets/icons/tile-large.png +0 -0
  259. data/assets/icons/tile-medium.png +0 -0
  260. data/assets/icons/tile-small.png +0 -0
  261. data/assets/icons/tile-wide.png +0 -0
  262. data/assets/ieconfig.xml +15 -0
  263. data/assets/img/blog/COLOURlovers.com-Hydejack.png +0 -0
  264. data/assets/img/blog/blog-layout.jpg +0 -0
  265. data/assets/img/blog/caleb-george-old.jpg +0 -0
  266. data/assets/img/blog/caleb-george.jpg +0 -0
  267. data/assets/img/blog/cover-page.jpg +0 -0
  268. data/assets/img/blog/dark-mode-ii.jpg +0 -0
  269. data/assets/img/blog/dark-mode.jpg +0 -0
  270. data/assets/img/blog/example-content-ii.jpg +0 -0
  271. data/assets/img/blog/example-content-iii.jpg +0 -0
  272. data/assets/img/blog/hydejack-8.png +0 -0
  273. data/assets/img/blog/hydejack-8@0,25x.png +0 -0
  274. data/assets/img/blog/hydejack-8@0,5x.png +0 -0
  275. data/assets/img/blog/lazy-images.jpg +0 -0
  276. data/assets/img/blog/louis-hansel.jpg +0 -0
  277. data/assets/img/blog/resume.png +0 -0
  278. data/assets/img/blog/steve-harvey.jpg +0 -0
  279. data/assets/img/blog/w3m.png +0 -0
  280. data/assets/img/blog/wade-lambert.jpg +0 -0
  281. data/assets/img/docs/google-fonts.png +0 -0
  282. data/assets/img/projects/hy-drawer.svg +12 -0
  283. data/assets/img/projects/hy-img.svg +17 -0
  284. data/assets/img/projects/hy-push-state.svg +13 -0
  285. data/assets/img/sidebar-bg.jpg +0 -0
  286. data/assets/img/swipe.svg +22 -0
  287. data/assets/js/hydejack-8.5.2.js +161 -0
  288. data/assets/js/hydejack-legacy-8.5.2.js +190 -0
  289. data/assets/manifest.json +46 -0
  290. data/assets/version.json +3 -0
  291. data/assets/video/blog-layout.mp4 +0 -0
  292. data/assets/video/cover-page.mp4 +0 -0
  293. data/assets/video/dark-mode.mp4 +0 -0
  294. data/assets/video/lazy-images.mp4 +0 -0
  295. data/licenses/Apache-2.0.md +208 -0
  296. data/licenses/GPL-3.0.md +620 -0
  297. data/licenses/MIT.md +21 -0
  298. data/licenses/PRO.md +136 -0
  299. data/licenses/README.md +10 -0
  300. data/licenses/W3C.md +31 -0
  301. metadata +385 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a56d3d2fcf725c6deac9e7255f86d8468ee1fed3
4
+ data.tar.gz: bfe5dbedfc48f99bbae361ba95d1bcc86c9ee30b
5
+ SHA512:
6
+ metadata.gz: 35da922d88b8dbf5db3da3828ad58b83acc5e566c3848a686c032a87af12fc974a24f4268324c750d9f701d9dab31bdf9f6d8e03af992e843ca7a331e509f06c
7
+ data.tar.gz: 83ab6c2cb14dc835ed65ba38f31e066b50f1ad9b50b4e2f70849470ada76bafe3b30914d70ad11456b674297b7fda96f88b1e8d6cd2b4a655fa28b906beb9f9f
data/LICENSE.md ADDED
@@ -0,0 +1,622 @@
1
+ # LICENSE
2
+
3
+ ## GNU GENERAL PUBLIC LICENSE
4
+
5
+ Version 3, 29 June 2007
6
+
7
+ Copyright (C) 2007 Free Software Foundation, Inc.
8
+ <http://fsf.org/>
9
+
10
+ Everyone is permitted to copy and distribute verbatim copies of this
11
+ license document, but changing it is not allowed.
12
+
13
+ ### Preamble
14
+
15
+ The GNU General Public License is a free, copyleft license for
16
+ software and other kinds of works.
17
+
18
+ The licenses for most software and other practical works are designed
19
+ to take away your freedom to share and change the works. By contrast,
20
+ the GNU General Public License is intended to guarantee your freedom
21
+ to share and change all versions of a program--to make sure it remains
22
+ free software for all its users. We, the Free Software Foundation, use
23
+ the GNU General Public License for most of our software; it applies
24
+ also to any other work released this way by its authors. You can apply
25
+ it to your programs, too.
26
+
27
+ When we speak of free software, we are referring to freedom, not
28
+ price. Our General Public Licenses are designed to make sure that you
29
+ have the freedom to distribute copies of free software (and charge for
30
+ them if you wish), that you receive source code or can get it if you
31
+ want it, that you can change the software or use pieces of it in new
32
+ free programs, and that you know you can do these things.
33
+
34
+ To protect your rights, we need to prevent others from denying you
35
+ these rights or asking you to surrender the rights. Therefore, you
36
+ have certain responsibilities if you distribute copies of the
37
+ software, or if you modify it: responsibilities to respect the freedom
38
+ of others.
39
+
40
+ For example, if you distribute copies of such a program, whether
41
+ gratis or for a fee, you must pass on to the recipients the same
42
+ freedoms that you received. You must make sure that they, too, receive
43
+ or can get the source code. And you must show them these terms so they
44
+ know their rights.
45
+
46
+ Developers that use the GNU GPL protect your rights with two steps:
47
+ (1) assert copyright on the software, and (2) offer you this License
48
+ giving you legal permission to copy, distribute and/or modify it.
49
+
50
+ For the developers' and authors' protection, the GPL clearly explains
51
+ that there is no warranty for this free software. For both users' and
52
+ authors' sake, the GPL requires that modified versions be marked as
53
+ changed, so that their problems will not be attributed erroneously to
54
+ authors of previous versions.
55
+
56
+ Some devices are designed to deny users access to install or run
57
+ modified versions of the software inside them, although the
58
+ manufacturer can do so. This is fundamentally incompatible with the
59
+ aim of protecting users' freedom to change the software. The
60
+ systematic pattern of such abuse occurs in the area of products for
61
+ individuals to use, which is precisely where it is most unacceptable.
62
+ Therefore, we have designed this version of the GPL to prohibit the
63
+ practice for those products. If such problems arise substantially in
64
+ other domains, we stand ready to extend this provision to those
65
+ domains in future versions of the GPL, as needed to protect the
66
+ freedom of users.
67
+
68
+ Finally, every program is threatened constantly by software patents.
69
+ States should not allow patents to restrict development and use of
70
+ software on general-purpose computers, but in those that do, we wish
71
+ to avoid the special danger that patents applied to a free program
72
+ could make it effectively proprietary. To prevent this, the GPL
73
+ assures that patents cannot be used to render the program non-free.
74
+
75
+ The precise terms and conditions for copying, distribution and
76
+ modification follow.
77
+
78
+ ### TERMS AND CONDITIONS
79
+
80
+ #### 0. Definitions
81
+
82
+ "This License" refers to version 3 of the GNU General Public License.
83
+
84
+ "Copyright" also means copyright-like laws that apply to other kinds
85
+ of works, such as semiconductor masks.
86
+
87
+ "The Program" refers to any copyrightable work licensed under this
88
+ License. Each licensee is addressed as "you". "Licensees" and
89
+ "recipients" may be individuals or organizations.
90
+
91
+ To "modify" a work means to copy from or adapt all or part of the work
92
+ in a fashion requiring copyright permission, other than the making of
93
+ an exact copy. The resulting work is called a "modified version" of
94
+ the earlier work or a work "based on" the earlier work.
95
+
96
+ A "covered work" means either the unmodified Program or a work based
97
+ on the Program.
98
+
99
+ To "propagate" a work means to do anything with it that, without
100
+ permission, would make you directly or secondarily liable for
101
+ infringement under applicable copyright law, except executing it on a
102
+ computer or modifying a private copy. Propagation includes copying,
103
+ distribution (with or without modification), making available to the
104
+ public, and in some countries other activities as well.
105
+
106
+ To "convey" a work means any kind of propagation that enables other
107
+ parties to make or receive copies. Mere interaction with a user
108
+ through a computer network, with no transfer of a copy, is not
109
+ conveying.
110
+
111
+ An interactive user interface displays "Appropriate Legal Notices" to
112
+ the extent that it includes a convenient and prominently visible
113
+ feature that (1) displays an appropriate copyright notice, and (2)
114
+ tells the user that there is no warranty for the work (except to the
115
+ extent that warranties are provided), that licensees may convey the
116
+ work under this License, and how to view a copy of this License. If
117
+ the interface presents a list of user commands or options, such as a
118
+ menu, a prominent item in the list meets this criterion.
119
+
120
+ #### 1. Source Code
121
+
122
+ The "source code" for a work means the preferred form of the work for
123
+ making modifications to it. "Object code" means any non-source form of
124
+ a work.
125
+
126
+ A "Standard Interface" means an interface that either is an official
127
+ standard defined by a recognized standards body, or, in the case of
128
+ interfaces specified for a particular programming language, one that
129
+ is widely used among developers working in that language.
130
+
131
+ The "System Libraries" of an executable work include anything, other
132
+ than the work as a whole, that (a) is included in the normal form of
133
+ packaging a Major Component, but which is not part of that Major
134
+ Component, and (b) serves only to enable use of the work with that
135
+ Major Component, or to implement a Standard Interface for which an
136
+ implementation is available to the public in source code form. A
137
+ "Major Component", in this context, means a major essential component
138
+ (kernel, window system, and so on) of the specific operating system
139
+ (if any) on which the executable work runs, or a compiler used to
140
+ produce the work, or an object code interpreter used to run it.
141
+
142
+ The "Corresponding Source" for a work in object code form means all
143
+ the source code needed to generate, install, and (for an executable
144
+ work) run the object code and to modify the work, including scripts to
145
+ control those activities. However, it does not include the work's
146
+ System Libraries, or general-purpose tools or generally available free
147
+ programs which are used unmodified in performing those activities but
148
+ which are not part of the work. For example, Corresponding Source
149
+ includes interface definition files associated with source files for
150
+ the work, and the source code for shared libraries and dynamically
151
+ linked subprograms that the work is specifically designed to require,
152
+ such as by intimate data communication or control flow between those
153
+ subprograms and other parts of the work.
154
+
155
+ The Corresponding Source need not include anything that users can
156
+ regenerate automatically from other parts of the Corresponding Source.
157
+
158
+ The Corresponding Source for a work in source code form is that same
159
+ work.
160
+
161
+ #### 2. Basic Permissions
162
+
163
+ All rights granted under this License are granted for the term of
164
+ copyright on the Program, and are irrevocable provided the stated
165
+ conditions are met. This License explicitly affirms your unlimited
166
+ permission to run the unmodified Program. The output from running a
167
+ covered work is covered by this License only if the output, given its
168
+ content, constitutes a covered work. This License acknowledges your
169
+ rights of fair use or other equivalent, as provided by copyright law.
170
+
171
+ You may make, run and propagate covered works that you do not convey,
172
+ without conditions so long as your license otherwise remains in force.
173
+ You may convey covered works to others for the sole purpose of having
174
+ them make modifications exclusively for you, or provide you with
175
+ facilities for running those works, provided that you comply with the
176
+ terms of this License in conveying all material for which you do not
177
+ control copyright. Those thus making or running the covered works for
178
+ you must do so exclusively on your behalf, under your direction and
179
+ control, on terms that prohibit them from making any copies of your
180
+ copyrighted material outside their relationship with you.
181
+
182
+ Conveying under any other circumstances is permitted solely under the
183
+ conditions stated below. Sublicensing is not allowed; section 10 makes
184
+ it unnecessary.
185
+
186
+ #### 3. Protecting Users' Legal Rights From Anti-Circumvention Law
187
+
188
+ No covered work shall be deemed part of an effective technological
189
+ measure under any applicable law fulfilling obligations under article
190
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
191
+ similar laws prohibiting or restricting circumvention of such
192
+ measures.
193
+
194
+ When you convey a covered work, you waive any legal power to forbid
195
+ circumvention of technological measures to the extent such
196
+ circumvention is effected by exercising rights under this License with
197
+ respect to the covered work, and you disclaim any intention to limit
198
+ operation or modification of the work as a means of enforcing, against
199
+ the work's users, your or third parties' legal rights to forbid
200
+ circumvention of technological measures.
201
+
202
+ #### 4. Conveying Verbatim Copies
203
+
204
+ You may convey verbatim copies of the Program's source code as you
205
+ receive it, in any medium, provided that you conspicuously and
206
+ appropriately publish on each copy an appropriate copyright notice;
207
+ keep intact all notices stating that this License and any
208
+ non-permissive terms added in accord with section 7 apply to the code;
209
+ keep intact all notices of the absence of any warranty; and give all
210
+ recipients a copy of this License along with the Program.
211
+
212
+ You may charge any price or no price for each copy that you convey,
213
+ and you may offer support or warranty protection for a fee.
214
+
215
+ #### 5. Conveying Modified Source Versions
216
+
217
+ You may convey a work based on the Program, or the modifications to
218
+ produce it from the Program, in the form of source code under the
219
+ terms of section 4, provided that you also meet all of these
220
+ conditions:
221
+
222
+ {:style="list-style-type:lower-latin"}
223
+ 1. The work must carry prominent notices stating that you modified
224
+ it, and giving a relevant date.
225
+ 2. The work must carry prominent notices stating that it is
226
+ released under this License and any conditions added under
227
+ section 7. This requirement modifies the requirement in section 4
228
+ to "keep intact all notices".
229
+ 3. You must license the entire work, as a whole, under this
230
+ License to anyone who comes into possession of a copy. This
231
+ License will therefore apply, along with any applicable section 7
232
+ additional terms, to the whole of the work, and all its parts,
233
+ regardless of how they are packaged. This License gives no
234
+ permission to license the work in any other way, but it does not
235
+ invalidate such permission if you have separately received it.
236
+ 4. If the work has interactive user interfaces, each must display
237
+ Appropriate Legal Notices; however, if the Program has interactive
238
+ interfaces that do not display Appropriate Legal Notices, your
239
+ work need not make them do so.
240
+
241
+ A compilation of a covered work with other separate and independent
242
+ works, which are not by their nature extensions of the covered work,
243
+ and which are not combined with it such as to form a larger program,
244
+ in or on a volume of a storage or distribution medium, is called an
245
+ "aggregate" if the compilation and its resulting copyright are not
246
+ used to limit the access or legal rights of the compilation's users
247
+ beyond what the individual works permit. Inclusion of a covered work
248
+ in an aggregate does not cause this License to apply to the other
249
+ parts of the aggregate.
250
+
251
+ #### 6. Conveying Non-Source Forms
252
+
253
+ You may convey a covered work in object code form under the terms of
254
+ sections 4 and 5, provided that you also convey the machine-readable
255
+ Corresponding Source under the terms of this License, in one of these
256
+ ways:
257
+
258
+ {:style="list-style-type:lower-latin"}
259
+ 1. Convey the object code in, or embodied in, a physical product
260
+ (including a physical distribution medium), accompanied by the
261
+ Corresponding Source fixed on a durable physical medium
262
+ customarily used for software interchange.
263
+ 2. Convey the object code in, or embodied in, a physical product
264
+ (including a physical distribution medium), accompanied by a
265
+ written offer, valid for at least three years and valid for as
266
+ long as you offer spare parts or customer support for that product
267
+ model, to give anyone who possesses the object code either (1) a
268
+ copy of the Corresponding Source for all the software in the
269
+ product that is covered by this License, on a durable physical
270
+ medium customarily used for software interchange, for a price no
271
+ more than your reasonable cost of physically performing this
272
+ conveying of source, or (2) access to copy the Corresponding
273
+ Source from a network server at no charge.
274
+ 3. Convey individual copies of the object code with a copy of the
275
+ written offer to provide the Corresponding Source. This
276
+ alternative is allowed only occasionally and noncommercially, and
277
+ only if you received the object code with such an offer, in accord
278
+ with subsection 6b.
279
+ 4. Convey the object code by offering access from a designated
280
+ place (gratis or for a charge), and offer equivalent access to the
281
+ Corresponding Source in the same way through the same place at no
282
+ further charge. You need not require recipients to copy the
283
+ Corresponding Source along with the object code. If the place to
284
+ copy the object code is a network server, the Corresponding Source
285
+ may be on a different server (operated by you or a third party)
286
+ that supports equivalent copying facilities, provided you maintain
287
+ clear directions next to the object code saying where to find the
288
+ Corresponding Source. Regardless of what server hosts the
289
+ Corresponding Source, you remain obligated to ensure that it is
290
+ available for as long as needed to satisfy these requirements.
291
+ 5. Convey the object code using peer-to-peer transmission,
292
+ provided you inform other peers where the object code and
293
+ Corresponding Source of the work are being offered to the general
294
+ public at no charge under subsection 6d.
295
+
296
+ A separable portion of the object code, whose source code is excluded
297
+ from the Corresponding Source as a System Library, need not be
298
+ included in conveying the object code work.
299
+
300
+ A "User Product" is either (1) a "consumer product", which means any
301
+ tangible personal property which is normally used for personal,
302
+ family, or household purposes, or (2) anything designed or sold for
303
+ incorporation into a dwelling. In determining whether a product is a
304
+ consumer product, doubtful cases shall be resolved in favor of
305
+ coverage. For a particular product received by a particular user,
306
+ "normally used" refers to a typical or common use of that class of
307
+ product, regardless of the status of the particular user or of the way
308
+ in which the particular user actually uses, or expects or is expected
309
+ to use, the product. A product is a consumer product regardless of
310
+ whether the product has substantial commercial, industrial or
311
+ non-consumer uses, unless such uses represent the only significant
312
+ mode of use of the product.
313
+
314
+ "Installation Information" for a User Product means any methods,
315
+ procedures, authorization keys, or other information required to
316
+ install and execute modified versions of a covered work in that User
317
+ Product from a modified version of its Corresponding Source. The
318
+ information must suffice to ensure that the continued functioning of
319
+ the modified object code is in no case prevented or interfered with
320
+ solely because modification has been made.
321
+
322
+ If you convey an object code work under this section in, or with, or
323
+ specifically for use in, a User Product, and the conveying occurs as
324
+ part of a transaction in which the right of possession and use of the
325
+ User Product is transferred to the recipient in perpetuity or for a
326
+ fixed term (regardless of how the transaction is characterized), the
327
+ Corresponding Source conveyed under this section must be accompanied
328
+ by the Installation Information. But this requirement does not apply
329
+ if neither you nor any third party retains the ability to install
330
+ modified object code on the User Product (for example, the work has
331
+ been installed in ROM).
332
+
333
+ The requirement to provide Installation Information does not include a
334
+ requirement to continue to provide support service, warranty, or
335
+ updates for a work that has been modified or installed by the
336
+ recipient, or for the User Product in which it has been modified or
337
+ installed. Access to a network may be denied when the modification
338
+ itself materially and adversely affects the operation of the network
339
+ or violates the rules and protocols for communication across the
340
+ network.
341
+
342
+ Corresponding Source conveyed, and Installation Information provided,
343
+ in accord with this section must be in a format that is publicly
344
+ documented (and with an implementation available to the public in
345
+ source code form), and must require no special password or key for
346
+ unpacking, reading or copying.
347
+
348
+ #### 7. Additional Terms
349
+
350
+ "Additional permissions" are terms that supplement the terms of this
351
+ License by making exceptions from one or more of its conditions.
352
+ Additional permissions that are applicable to the entire Program shall
353
+ be treated as though they were included in this License, to the extent
354
+ that they are valid under applicable law. If additional permissions
355
+ apply only to part of the Program, that part may be used separately
356
+ under those permissions, but the entire Program remains governed by
357
+ this License without regard to the additional permissions.
358
+
359
+ When you convey a copy of a covered work, you may at your option
360
+ remove any additional permissions from that copy, or from any part of
361
+ it. (Additional permissions may be written to require their own
362
+ removal in certain cases when you modify the work.) You may place
363
+ additional permissions on material, added by you to a covered work,
364
+ for which you have or can give appropriate copyright permission.
365
+
366
+ Notwithstanding any other provision of this License, for material you
367
+ add to a covered work, you may (if authorized by the copyright holders
368
+ of that material) supplement the terms of this License with terms:
369
+
370
+ {:style="list-style-type:lower-latin"}
371
+ 1. Disclaiming warranty or limiting liability differently from the
372
+ terms of sections 15 and 16 of this License; or
373
+ 2. Requiring preservation of specified reasonable legal notices or
374
+ author attributions in that material or in the Appropriate Legal
375
+ Notices displayed by works containing it; or
376
+ 3. Prohibiting misrepresentation of the origin of that material,
377
+ or requiring that modified versions of such material be marked in
378
+ reasonable ways as different from the original version; or
379
+ 4. Limiting the use for publicity purposes of names of licensors
380
+ or authors of the material; or
381
+ 5. Declining to grant rights under trademark law for use of some
382
+ trade names, trademarks, or service marks; or
383
+ 6. Requiring indemnification of licensors and authors of that
384
+ material by anyone who conveys the material (or modified versions
385
+ of it) with contractual assumptions of liability to the recipient,
386
+ for any liability that these contractual assumptions directly
387
+ impose on those licensors and authors.
388
+
389
+ All other non-permissive additional terms are considered "further
390
+ restrictions" within the meaning of section 10. If the Program as you
391
+ received it, or any part of it, contains a notice stating that it is
392
+ governed by this License along with a term that is a further
393
+ restriction, you may remove that term. If a license document contains
394
+ a further restriction but permits relicensing or conveying under this
395
+ License, you may add to a covered work material governed by the terms
396
+ of that license document, provided that the further restriction does
397
+ not survive such relicensing or conveying.
398
+
399
+ If you add terms to a covered work in accord with this section, you
400
+ must place, in the relevant source files, a statement of the
401
+ additional terms that apply to those files, or a notice indicating
402
+ where to find the applicable terms.
403
+
404
+ Additional terms, permissive or non-permissive, may be stated in the
405
+ form of a separately written license, or stated as exceptions; the
406
+ above requirements apply either way.
407
+
408
+ #### 8. Termination
409
+
410
+ You may not propagate or modify a covered work except as expressly
411
+ provided under this License. Any attempt otherwise to propagate or
412
+ modify it is void, and will automatically terminate your rights under
413
+ this License (including any patent licenses granted under the third
414
+ paragraph of section 11).
415
+
416
+ However, if you cease all violation of this License, then your license
417
+ from a particular copyright holder is reinstated (a) provisionally,
418
+ unless and until the copyright holder explicitly and finally
419
+ terminates your license, and (b) permanently, if the copyright holder
420
+ fails to notify you of the violation by some reasonable means prior to
421
+ 60 days after the cessation.
422
+
423
+ Moreover, your license from a particular copyright holder is
424
+ reinstated permanently if the copyright holder notifies you of the
425
+ violation by some reasonable means, this is the first time you have
426
+ received notice of violation of this License (for any work) from that
427
+ copyright holder, and you cure the violation prior to 30 days after
428
+ your receipt of the notice.
429
+
430
+ Termination of your rights under this section does not terminate the
431
+ licenses of parties who have received copies or rights from you under
432
+ this License. If your rights have been terminated and not permanently
433
+ reinstated, you do not qualify to receive new licenses for the same
434
+ material under section 10.
435
+
436
+ #### 9. Acceptance Not Required for Having Copies
437
+
438
+ You are not required to accept this License in order to receive or run
439
+ a copy of the Program. Ancillary propagation of a covered work
440
+ occurring solely as a consequence of using peer-to-peer transmission
441
+ to receive a copy likewise does not require acceptance. However,
442
+ nothing other than this License grants you permission to propagate or
443
+ modify any covered work. These actions infringe copyright if you do
444
+ not accept this License. Therefore, by modifying or propagating a
445
+ covered work, you indicate your acceptance of this License to do so.
446
+
447
+ #### 10. Automatic Licensing of Downstream Recipients
448
+
449
+ Each time you convey a covered work, the recipient automatically
450
+ receives a license from the original licensors, to run, modify and
451
+ propagate that work, subject to this License. You are not responsible
452
+ for enforcing compliance by third parties with this License.
453
+
454
+ An "entity transaction" is a transaction transferring control of an
455
+ organization, or substantially all assets of one, or subdividing an
456
+ organization, or merging organizations. If propagation of a covered
457
+ work results from an entity transaction, each party to that
458
+ transaction who receives a copy of the work also receives whatever
459
+ licenses to the work the party's predecessor in interest had or could
460
+ give under the previous paragraph, plus a right to possession of the
461
+ Corresponding Source of the work from the predecessor in interest, if
462
+ the predecessor has it or can get it with reasonable efforts.
463
+
464
+ You may not impose any further restrictions on the exercise of the
465
+ rights granted or affirmed under this License. For example, you may
466
+ not impose a license fee, royalty, or other charge for exercise of
467
+ rights granted under this License, and you may not initiate litigation
468
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
469
+ any patent claim is infringed by making, using, selling, offering for
470
+ sale, or importing the Program or any portion of it.
471
+
472
+ #### 11. Patents
473
+
474
+ A "contributor" is a copyright holder who authorizes use under this
475
+ License of the Program or a work on which the Program is based. The
476
+ work thus licensed is called the contributor's "contributor version".
477
+
478
+ A contributor's "essential patent claims" are all patent claims owned
479
+ or controlled by the contributor, whether already acquired or
480
+ hereafter acquired, that would be infringed by some manner, permitted
481
+ by this License, of making, using, or selling its contributor version,
482
+ but do not include claims that would be infringed only as a
483
+ consequence of further modification of the contributor version. For
484
+ purposes of this definition, "control" includes the right to grant
485
+ patent sublicenses in a manner consistent with the requirements of
486
+ this License.
487
+
488
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
489
+ patent license under the contributor's essential patent claims, to
490
+ make, use, sell, offer for sale, import and otherwise run, modify and
491
+ propagate the contents of its contributor version.
492
+
493
+ In the following three paragraphs, a "patent license" is any express
494
+ agreement or commitment, however denominated, not to enforce a patent
495
+ (such as an express permission to practice a patent or covenant not to
496
+ sue for patent infringement). To "grant" such a patent license to a
497
+ party means to make such an agreement or commitment not to enforce a
498
+ patent against the party.
499
+
500
+ If you convey a covered work, knowingly relying on a patent license,
501
+ and the Corresponding Source of the work is not available for anyone
502
+ to copy, free of charge and under the terms of this License, through a
503
+ publicly available network server or other readily accessible means,
504
+ then you must either (1) cause the Corresponding Source to be so
505
+ available, or (2) arrange to deprive yourself of the benefit of the
506
+ patent license for this particular work, or (3) arrange, in a manner
507
+ consistent with the requirements of this License, to extend the patent
508
+ license to downstream recipients. "Knowingly relying" means you have
509
+ actual knowledge that, but for the patent license, your conveying the
510
+ covered work in a country, or your recipient's use of the covered work
511
+ in a country, would infringe one or more identifiable patents in that
512
+ country that you have reason to believe are valid.
513
+
514
+ If, pursuant to or in connection with a single transaction or
515
+ arrangement, you convey, or propagate by procuring conveyance of, a
516
+ covered work, and grant a patent license to some of the parties
517
+ receiving the covered work authorizing them to use, propagate, modify
518
+ or convey a specific copy of the covered work, then the patent license
519
+ you grant is automatically extended to all recipients of the covered
520
+ work and works based on it.
521
+
522
+ A patent license is "discriminatory" if it does not include within the
523
+ scope of its coverage, prohibits the exercise of, or is conditioned on
524
+ the non-exercise of one or more of the rights that are specifically
525
+ granted under this License. You may not convey a covered work if you
526
+ are a party to an arrangement with a third party that is in the
527
+ business of distributing software, under which you make payment to the
528
+ third party based on the extent of your activity of conveying the
529
+ work, and under which the third party grants, to any of the parties
530
+ who would receive the covered work from you, a discriminatory patent
531
+ license (a) in connection with copies of the covered work conveyed by
532
+ you (or copies made from those copies), or (b) primarily for and in
533
+ connection with specific products or compilations that contain the
534
+ covered work, unless you entered into that arrangement, or that patent
535
+ license was granted, prior to 28 March 2007.
536
+
537
+ Nothing in this License shall be construed as excluding or limiting
538
+ any implied license or other defenses to infringement that may
539
+ otherwise be available to you under applicable patent law.
540
+
541
+ #### 12. No Surrender of Others' Freedom
542
+
543
+ If conditions are imposed on you (whether by court order, agreement or
544
+ otherwise) that contradict the conditions of this License, they do not
545
+ excuse you from the conditions of this License. If you cannot convey a
546
+ covered work so as to satisfy simultaneously your obligations under
547
+ this License and any other pertinent obligations, then as a
548
+ consequence you may not convey it at all. For example, if you agree to
549
+ terms that obligate you to collect a royalty for further conveying
550
+ from those to whom you convey the Program, the only way you could
551
+ satisfy both those terms and this License would be to refrain entirely
552
+ from conveying the Program.
553
+
554
+ #### 13. Use with the GNU Affero General Public License
555
+
556
+ Notwithstanding any other provision of this License, you have
557
+ permission to link or combine any covered work with a work licensed
558
+ under version 3 of the GNU Affero General Public License into a single
559
+ combined work, and to convey the resulting work. The terms of this
560
+ License will continue to apply to the part which is the covered work,
561
+ but the special requirements of the GNU Affero General Public License,
562
+ section 13, concerning interaction through a network will apply to the
563
+ combination as such.
564
+
565
+ #### 14. Revised Versions of this License
566
+
567
+ The Free Software Foundation may publish revised and/or new versions
568
+ of the GNU General Public License from time to time. Such new versions
569
+ will be similar in spirit to the present version, but may differ in
570
+ detail to address new problems or concerns.
571
+
572
+ Each version is given a distinguishing version number. If the Program
573
+ specifies that a certain numbered version of the GNU General Public
574
+ License "or any later version" applies to it, you have the option of
575
+ following the terms and conditions either of that numbered version or
576
+ of any later version published by the Free Software Foundation. If the
577
+ Program does not specify a version number of the GNU General Public
578
+ License, you may choose any version ever published by the Free
579
+ Software Foundation.
580
+
581
+ If the Program specifies that a proxy can decide which future versions
582
+ of the GNU General Public License can be used, that proxy's public
583
+ statement of acceptance of a version permanently authorizes you to
584
+ choose that version for the Program.
585
+
586
+ Later license versions may give you additional or different
587
+ permissions. However, no additional obligations are imposed on any
588
+ author or copyright holder as a result of your choosing to follow a
589
+ later version.
590
+
591
+ #### 15. Disclaimer of Warranty
592
+
593
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
594
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
595
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
596
+ WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
597
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
598
+ A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
599
+ PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
600
+ DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
601
+ CORRECTION.
602
+
603
+ #### 16. Limitation of Liability
604
+
605
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
606
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
607
+ CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
608
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
609
+ ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
610
+ NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
611
+ LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM
612
+ TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
613
+ PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
614
+
615
+ #### 17. Interpretation of Sections 15 and 16
616
+
617
+ If the disclaimer of warranty and limitation of liability provided
618
+ above cannot be given local legal effect according to their terms,
619
+ reviewing courts shall apply local law that most closely approximates
620
+ an absolute waiver of all civil liability in connection with the
621
+ Program, unless a warranty or assumption of liability accompanies a
622
+ copy of the Program in return for a fee.