From eb73a3d35f4f44ba08a1567bfb8f51a1b9704152 Mon Sep 17 00:00:00 2001 From: Kaloyan Raev Date: Mon, 23 Sep 2019 23:43:32 +0300 Subject: [PATCH] Windows installer for storage nodes (#2921) Co-authored-by: Michal Niewrzal --- .gitignore | 3 + installer/windows/.gitignore | 7 + .../windows/AllocatedBandwidthConfig.wxs | 28 ++ installer/windows/AllocatedStorageConfig.wxs | 25 ++ installer/windows/CustomInstallDir.wxs | 129 ++++++++ installer/windows/EmailConfig.wxs | 26 ++ installer/windows/IdentityDir.wxs | 28 ++ installer/windows/InstallDirConfig.wxs | 25 ++ installer/windows/Product.wxs | 98 +++++++ installer/windows/PublicAddressConfig.wxs | 27 ++ installer/windows/StorageDirConfig.wxs | 25 ++ installer/windows/Storj/CustomAction.config | 32 ++ installer/windows/Storj/CustomAction.cs | 185 ++++++++++++ .../windows/Storj/Properties/AssemblyInfo.cs | 35 +++ installer/windows/Storj/Storj.csproj | 55 ++++ installer/windows/ValidationError.wxs | 14 + installer/windows/WalletConfig.wxs | 27 ++ installer/windows/agpl-3.0.rtf | 277 ++++++++++++++++++ installer/windows/banner.bmp | Bin 0 -> 14570 bytes installer/windows/dialog.bmp | Bin 0 -> 155898 bytes installer/windows/storj.ico | Bin 0 -> 158559 bytes installer/windows/windows.sln | 31 ++ installer/windows/windows.wixproj | 67 +++++ 23 files changed, 1144 insertions(+) create mode 100644 installer/windows/.gitignore create mode 100644 installer/windows/AllocatedBandwidthConfig.wxs create mode 100644 installer/windows/AllocatedStorageConfig.wxs create mode 100644 installer/windows/CustomInstallDir.wxs create mode 100644 installer/windows/EmailConfig.wxs create mode 100644 installer/windows/IdentityDir.wxs create mode 100644 installer/windows/InstallDirConfig.wxs create mode 100644 installer/windows/Product.wxs create mode 100644 installer/windows/PublicAddressConfig.wxs create mode 100644 installer/windows/StorageDirConfig.wxs create mode 100644 installer/windows/Storj/CustomAction.config create mode 100644 installer/windows/Storj/CustomAction.cs create mode 100644 installer/windows/Storj/Properties/AssemblyInfo.cs create mode 100644 installer/windows/Storj/Storj.csproj create mode 100644 installer/windows/ValidationError.wxs create mode 100644 installer/windows/WalletConfig.wxs create mode 100644 installer/windows/agpl-3.0.rtf create mode 100644 installer/windows/banner.bmp create mode 100644 installer/windows/dialog.bmp create mode 100644 installer/windows/storj.ico create mode 100644 installer/windows/windows.sln create mode 100644 installer/windows/windows.wixproj diff --git a/.gitignore b/.gitignore index 63f850e25..740263e18 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,9 @@ /.vscode debug +# Visual Studio +/.vs + # Jetbrains .idea/ diff --git a/installer/windows/.gitignore b/installer/windows/.gitignore new file mode 100644 index 000000000..f149fd0a5 --- /dev/null +++ b/installer/windows/.gitignore @@ -0,0 +1,7 @@ +/.vs/ +/bin/ +/obj/ +*.exe +*.msi +*.wixobj +*.wixpdb \ No newline at end of file diff --git a/installer/windows/AllocatedBandwidthConfig.wxs b/installer/windows/AllocatedBandwidthConfig.wxs new file mode 100644 index 000000000..b4f837473 --- /dev/null +++ b/installer/windows/AllocatedBandwidthConfig.wxs @@ -0,0 +1,28 @@ + + + + + + + + + 1 + + + + + + + + + + + + + + Learn how to calculate the maximum monthly bandwidth you can enter here.]]> + + + + + diff --git a/installer/windows/AllocatedStorageConfig.wxs b/installer/windows/AllocatedStorageConfig.wxs new file mode 100644 index 000000000..c383b15ac --- /dev/null +++ b/installer/windows/AllocatedStorageConfig.wxs @@ -0,0 +1,25 @@ + + + + + + + + + 1 + + + + + + + + + + + + + + + + diff --git a/installer/windows/CustomInstallDir.wxs b/installer/windows/CustomInstallDir.wxs new file mode 100644 index 000000000..d75b73a57 --- /dev/null +++ b/installer/windows/CustomInstallDir.wxs @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + "1"]]> + + 1 + + NOT Installed + Installed AND PATCH + + 1 + LicenseAccepted = "1" + + 1 + 1 + NOT WIXUI_DONTVALIDATEPATH + "1"]]> + WIXUI_DONTVALIDATEPATH OR WIXUI_INSTALLDIR_VALID="1" + 1 + 1 + + 1 + 1 + 1 + "1"]]> + STORJ_IDENTITYDIR_VALID="1" + 1 + 1 + + 1 + 1 + 1 + "1"]]> + STORJ_WALLET_VALID="1" + + 1 + 1 + + 1 + 1 + + 1 + 1 + 1 + "1"]]> + STORJ_STORAGEDIR_VALID="1" + 1 + 1 + + 1 + 1 + 1 + "1"]]> + STORJ_STORAGE_VALID="1" + + 1 + 1 + 1 + "1"]]> + STORJ_BANDWIDTH_VALID="1" + + NOT Installed + Installed AND NOT PATCH + Installed AND PATCH + + 1 + + 1 + 1 + + + + + + + + diff --git a/installer/windows/EmailConfig.wxs b/installer/windows/EmailConfig.wxs new file mode 100644 index 000000000..73e6ddabf --- /dev/null +++ b/installer/windows/EmailConfig.wxs @@ -0,0 +1,26 @@ + + + + + + + 1 + + + + 1 + + + + + + + + + + + + + + + diff --git a/installer/windows/IdentityDir.wxs b/installer/windows/IdentityDir.wxs new file mode 100644 index 000000000..41a67aa52 --- /dev/null +++ b/installer/windows/IdentityDir.wxs @@ -0,0 +1,28 @@ + + + + + + + + + 1 + + + + + + + + + + + + + + Learn how to generate an identity for your storage node.]]> + + + + + diff --git a/installer/windows/InstallDirConfig.wxs b/installer/windows/InstallDirConfig.wxs new file mode 100644 index 000000000..4ca8e3871 --- /dev/null +++ b/installer/windows/InstallDirConfig.wxs @@ -0,0 +1,25 @@ + + + + + + + + + 1 + + + + + + + + + + + + + + + + diff --git a/installer/windows/Product.wxs b/installer/windows/Product.wxs new file mode 100644 index 000000000..7986b4663 --- /dev/null +++ b/installer/windows/Product.wxs @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSTALLFOLDER + IDENTITYDIR + STORAGEDIR + 1.0 + 2.0 + + + + + + + + + + + NOT Installed + + + \ No newline at end of file diff --git a/installer/windows/PublicAddressConfig.wxs b/installer/windows/PublicAddressConfig.wxs new file mode 100644 index 000000000..2f1470a2e --- /dev/null +++ b/installer/windows/PublicAddressConfig.wxs @@ -0,0 +1,27 @@ + + + + + + + + + 1 + + + + + + + + + + + + + Learn how to setup Port Forwarding.]]> + + + + + diff --git a/installer/windows/StorageDirConfig.wxs b/installer/windows/StorageDirConfig.wxs new file mode 100644 index 000000000..701b7d7d1 --- /dev/null +++ b/installer/windows/StorageDirConfig.wxs @@ -0,0 +1,25 @@ + + + + + + + + + 1 + + + + + + + + + + + + + + + + diff --git a/installer/windows/Storj/CustomAction.config b/installer/windows/Storj/CustomAction.config new file mode 100644 index 000000000..c837a2cee --- /dev/null +++ b/installer/windows/Storj/CustomAction.config @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + diff --git a/installer/windows/Storj/CustomAction.cs b/installer/windows/Storj/CustomAction.cs new file mode 100644 index 000000000..eea153e83 --- /dev/null +++ b/installer/windows/Storj/CustomAction.cs @@ -0,0 +1,185 @@ +using Microsoft.Deployment.WindowsInstaller; +using System; +using System.IO; + +namespace Storj +{ + public class CustomActions + { + private const long GB = 1000 * 1000 * 1000; + private const long TB = (long) 1000 * 1000 * 1000 * 1000; + private const long MinFreeSpace = 550 * GB; // (500 GB + 10% overhead) + + [CustomAction] + public static ActionResult ValidateIdentityDir(Session session) + { + string identityDir = session["IDENTITYDIR"]; + + if (string.IsNullOrEmpty(identityDir)) + { + session["STORJ_IDENTITYDIR_VALID"] = "You must select an identity folder."; + return ActionResult.Success; + } + + if (!Directory.Exists(identityDir)) + { + session["STORJ_IDENTITYDIR_VALID"] = string.Format("Folder '{0}' does not exist.", identityDir); + return ActionResult.Success; + } + + if (!File.Exists(Path.Combine(identityDir, "ca.cert"))) + { + session["STORJ_IDENTITYDIR_VALID"] = "File 'ca.cert' not found in the selected folder."; + return ActionResult.Success; + } + + if (!File.Exists(Path.Combine(identityDir, "ca.key"))) + { + session["STORJ_IDENTITYDIR_VALID"] = "File 'ca.key' not found in the selected folder."; + return ActionResult.Success; + } + + if (!File.Exists(Path.Combine(identityDir, "identity.cert"))) + { + session["STORJ_IDENTITYDIR_VALID"] = "File 'identity.cert' not found in the selected folder."; + return ActionResult.Success; + } + + if (!File.Exists(Path.Combine(identityDir, "identity.key"))) + { + session["STORJ_IDENTITYDIR_VALID"] = "File 'identity.key' not found in the selected folder."; + return ActionResult.Success; + } + + // Identity dir is valid + session["STORJ_IDENTITYDIR_VALID"] = "1"; + return ActionResult.Success; + } + + [CustomAction] + public static ActionResult ValidateWallet(Session session) + { + string wallet = session["STORJ_WALLET"]; + + if (string.IsNullOrEmpty(wallet)) + { + session["STORJ_WALLET_VALID"] = "The wallet address cannot be empty."; + return ActionResult.Success; + } + + if (!wallet.StartsWith("0x")) + { + session["STORJ_WALLET_VALID"] = "The wallet address must start with a '0x' prefix."; + return ActionResult.Success; + } + + // Remove 0x prefix + wallet = wallet.Substring(2); + + if (wallet.Length != 40) + { + session["STORJ_WALLET_VALID"] = "The wallet address must have 40 characters after the '0x' prefix."; + return ActionResult.Success; + } + + // TODO validate address checksum + + // Wallet is valid + session["STORJ_WALLET_VALID"] = "1"; + return ActionResult.Success; + } + [CustomAction] + public static ActionResult ValidateStorageDir(Session session) + { + string identityDir = session["STORAGEDIR"]; + + if (string.IsNullOrEmpty(identityDir)) + { + session["STORJ_STORAGEDIR_VALID"] = "You must select a storage folder."; + return ActionResult.Success; + } + + DirectoryInfo dir = new DirectoryInfo(identityDir); + DriveInfo drive = new DriveInfo(dir.Root.FullName); + + // TODO: Find a way to calculate the available free space + total size of existing pieces + if (drive.TotalSize < MinFreeSpace) + { + session["STORJ_STORAGEDIR_VALID"] = string.Format("The selected drive '{0}' has only {1:0.##} GB disk size. The minimum required is 550 GB.", + drive.Name, decimal.Divide(drive.TotalSize, GB)); + return ActionResult.Success; + } + + // Storage dir is valid + session["STORJ_STORAGEDIR_VALID"] = "1"; + return ActionResult.Success; + } + + [CustomAction] + public static ActionResult ValidateStorage(Session session) + { + string storageStr = session["STORJ_STORAGE"]; + + if (string.IsNullOrEmpty(storageStr)) + { + session["STORJ_STORAGE_VALID"] = "The value cannot be empty."; + return ActionResult.Success; + } + + if (!double.TryParse(storageStr, out double storage)) + { + session["STORJ_STORAGE_VALID"] = string.Format("'{0}' is not a valid number.", storageStr); + return ActionResult.Success; + } + + if (storage < 0.5) { + session["STORJ_STORAGE_VALID"] = "The allocated disk space cannot be less than 0.5 TB."; + return ActionResult.Success; + } + + DirectoryInfo dir = new DirectoryInfo(session["STORAGEDIR"]); + DriveInfo drive = new DriveInfo(dir.Root.FullName); + long storagePlusOverhead = Convert.ToInt64(storage * 1.1 * TB); + + // TODO: Find a way to calculate the available free space + total size of existing pieces + if (drive.TotalSize < storagePlusOverhead) + { + session["STORJ_STORAGE_VALID"] = string.Format("The disk size ({0:0.##} TB) on the selected drive {1} is less than the allocated disk space plus the 10% overhead ({2:0.##} TB total).", + decimal.Divide(drive.TotalSize, TB), drive.Name, decimal.Divide(storagePlusOverhead, TB)); + return ActionResult.Success; + } + + // Allocated Storage value is valid + session["STORJ_STORAGE_VALID"] = "1"; + return ActionResult.Success; + } + + [CustomAction] + public static ActionResult ValidateBandwidth(Session session) + { + string bandwidthStr = session["STORJ_BANDWIDTH"]; + + if (string.IsNullOrEmpty(bandwidthStr)) + { + session["STORJ_BANDWIDTH_VALID"] = "The value cannot be empty."; + return ActionResult.Success; + } + + if (!double.TryParse(bandwidthStr, out double bandwidth)) + { + session["STORJ_BANDWIDTH_VALID"] = string.Format("'{0}' is not a valid number.", bandwidthStr); + return ActionResult.Success; + } + + if (bandwidth < 2.0) + { + session["STORJ_BANDWIDTH_VALID"] = "The allocated bandwidth cannot be less than 2 TB."; + return ActionResult.Success; + } + + // Allocated Bandwidth value is valid + session["STORJ_BANDWIDTH_VALID"] = "1"; + return ActionResult.Success; + } + } +} diff --git a/installer/windows/Storj/Properties/AssemblyInfo.cs b/installer/windows/Storj/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..cf7282a5c --- /dev/null +++ b/installer/windows/Storj/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Storj")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyCompany("Storj")] +[assembly: AssemblyProduct("Storj")] +[assembly: AssemblyCopyright("Copyright © 2019 Storj Labs, Inc.")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("ddd766c6-0aed-44c9-b61a-2d752d811b56")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/installer/windows/Storj/Storj.csproj b/installer/windows/Storj/Storj.csproj new file mode 100644 index 000000000..807c708bd --- /dev/null +++ b/installer/windows/Storj/Storj.csproj @@ -0,0 +1,55 @@ + + + + Debug + x86 + 8.0.30703 + 2.0 + {DDD766C6-0AED-44C9-B61A-2D752D811B56} + Library + Properties + Storj + Storj + v2.0 + 512 + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + false + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + false + + + + + + + True + + + + + + + + + + + + + + \ No newline at end of file diff --git a/installer/windows/ValidationError.wxs b/installer/windows/ValidationError.wxs new file mode 100644 index 000000000..570f01ab6 --- /dev/null +++ b/installer/windows/ValidationError.wxs @@ -0,0 +1,14 @@ + + + + + + + 1 + + + + + + + diff --git a/installer/windows/WalletConfig.wxs b/installer/windows/WalletConfig.wxs new file mode 100644 index 000000000..d0b07bc10 --- /dev/null +++ b/installer/windows/WalletConfig.wxs @@ -0,0 +1,27 @@ + + + + + + + + + 1 + + + + + + + + + + + + + Learn how to obtain a valid payout address.]]> + + + + + diff --git a/installer/windows/agpl-3.0.rtf b/installer/windows/agpl-3.0.rtf new file mode 100644 index 000000000..5d7e4f27a --- /dev/null +++ b/installer/windows/agpl-3.0.rtf @@ -0,0 +1,277 @@ +{\rtf1\ansi\deff3\adeflang1025 +{\fonttbl{\f0\froman\fprq2\fcharset0 Times New Roman;}{\f1\froman\fprq2\fcharset2 Symbol;}{\f2\fswiss\fprq2\fcharset0 Arial;}{\f3\froman\fprq2\fcharset0 Liberation Serif{\*\falt Times New Roman};}{\f4\froman\fprq0\fcharset128 Helvetica{\*\falt Arial};}{\f5\froman\fprq0\fcharset128 Courier{\*\falt Courier New};}{\f6\froman\fprq0\fcharset128 Liberation Serif{\*\falt Times New Roman};}{\f7\fswiss\fprq0\fcharset128 Liberation Sans{\*\falt Arial};}{\f8\fnil\fprq0\fcharset128 FreeSans;}{\f9\fnil\fprq2\fcharset0 FreeSans;}{\f10\fswiss\fprq0\fcharset128 FreeSans;}{\f11\fnil\fprq2\fcharset0 Liberation Serif{\*\falt Times New Roman};}} +{\colortbl;\red0\green0\blue0;\red0\green0\blue128;\red128\green128\blue128;} +{\stylesheet{\s0\snext0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033 Normal;} +{\*\cs15\snext15\cf2\ul\ulc1\langfe255\alang255\lang255 Internet Link;} +{\s16\sbasedon0\snext17\ql\nowidctlpar\sb240\sa120\keepn\ltrpar\cf1\kerning1\dbch\af8\langfe2052\dbch\af9\afs28\alang1081\loch\f7\fs28\lang1033 Heading;} +{\s17\sbasedon0\snext17\sl288\slmult1\ql\nowidctlpar\sb0\sa140\ltrpar\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033 Text Body;} +{\s18\sbasedon17\snext18\sl288\slmult1\ql\nowidctlpar\sb0\sa140\ltrpar\cf1\kerning1\dbch\af8\langfe2052\dbch\af10\afs24\alang1081\loch\f6\fs24\lang1033 List;} +{\s19\sbasedon0\snext19\ql\nowidctlpar\sb120\sa120\noline\ltrpar\cf1\i\kerning1\dbch\af8\langfe2052\dbch\af10\afs24\alang1081\ai\loch\f6\fs24\lang1033 Caption;} +{\s20\sbasedon0\snext20\ql\nowidctlpar\noline\ltrpar\cf1\kerning1\dbch\af8\langfe2052\dbch\af10\afs24\alang1081\loch\f6\fs24\lang1033 Index;} +}{\info{\creatim\yr0\mo0\dy0\hr0\min0}{\revtim\yr0\mo0\dy0\hr0\min0}{\printim\yr0\mo0\dy0\hr0\min0}{\comment LibreOffice}{\vern67241986}}\deftab720 +\viewscale100 +{\*\pgdsctbl +{\pgdsc0\pgdscuse451\pgwsxn12240\pghsxn15840\marglsxn1800\margrsxn1800\margtsxn1440\margbsxn1440\pgdscnxt0 Default Style;}} +\formshade{\*\pgdscno0}\paperh15840\paperw12240\margl1800\margr1800\margt1440\margb1440\sectd\sbknone\sectunlocked1\pgndec\pgwsxn12240\pghsxn15840\marglsxn1800\margrsxn1800\margtsxn1440\margbsxn1440\ftnbj\ftnstart1\ftnrstcont\ftnnar\aenddoc\aftnrstcont\aftnstart1\aftnnrlc +\pgndec\pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\fs28\loch\f4 +GNU AFFERO GENERAL PUBLIC LICENSE} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +Version 3, 19 November 2007} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +Copyright \u169\'3f 2007 Free Software Foundation, Inc. <}{{\field{\*\fldinst HYPERLINK "https://fsf.org/" }{\fldrslt {\cf2\ul\ulc1\langfe255\alang255\lang255\cf2\ul\ulc1\langfe255\alang255\rtlch \ltrch\loch\lang255\loch\f4 +https://fsf.org/}{}}}\cf1\rtlch \ltrch\loch\loch\f4 +>.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\fs28\loch\f4 +Preamble} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +The precise terms and conditions for copying, distribution and modification follow.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\fs28\loch\f4 +TERMS AND CONDITIONS} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +0. Definitions.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +"This License" refers to version 3 of the GNU Affero General Public License.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +"Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +"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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +A "covered work" means either the unmodified Program or a work based on the Program.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +1. Source Code.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +The Corresponding Source for a work in source code form is that same work.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +2. Basic Permissions.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +3. Protecting Users' Legal Rights From Anti-Circumvention Law.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +4. Conveying Verbatim Copies.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +5. Conveying Modified Source Versions.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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:} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab a) The work must carry prominent notices stating that you modified it, and giving a relevant date.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab 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".} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab 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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab 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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +6. Conveying Non-Source Forms.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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:} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab 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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab 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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab 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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab 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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab 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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +"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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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).} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +7. Additional Terms.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +"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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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:} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab 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} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab 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} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab d) Limiting the use for publicity purposes of names of licensors or authors of the material; or} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi-360\sb0\sa0{\cf1\rtlch \ltrch\loch\f4 +\u8226\'3f}{\cf1\rtlch \ltrch\loch\loch\f4 +\tab 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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +8. Termination.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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).} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +9. Acceptance Not Required for Having Copies.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +10. Automatic Licensing of Downstream Recipients.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +11. Patents.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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".} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +12. No Surrender of Others' Freedom.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +13. Remote Network Interaction; Use with the GNU General Public License.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +14. Revised Versions of this License.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +15. Disclaimer of Warranty.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +16. Limitation of Liability.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\loch\f4 +17. Interpretation of Sections 15 and 16.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +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.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +END OF TERMS AND CONDITIONS} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\b\rtlch \ltrch\loch\fs28\loch\f4 +How to Apply These Terms to Your New Programs} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f5 +}{\rtlch \ltrch\loch +\line }{\cf1\rtlch \ltrch\loch\loch\f5 +Copyright (C) }{\rtlch \ltrch\loch +\line \line }{\cf1\rtlch \ltrch\loch\loch\f5 +This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.}{\rtlch \ltrch\loch +\line \line }{\cf1\rtlch \ltrch\loch\loch\f5 +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.}{\rtlch \ltrch\loch +\line \line }{\cf1\rtlch \ltrch\loch\loch\f5 +You should have received a copy of the GNU Affero General Public License along with this program. If not, see .} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +Also add information on how to contact you by electronic and paper mail.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements.} +\par \pard\plain \s0\ql\nowidctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf1\kerning1\dbch\af8\langfe2052\dbch\af11\afs24\alang1081\loch\f6\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\cf1\rtlch \ltrch\loch\loch\f4 +You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see <}{{\field{\*\fldinst HYPERLINK "https://www.gnu.org/licenses/" }{\fldrslt {\cf2\ul\ulc1\langfe255\alang255\lang255\cf2\ul\ulc1\langfe255\alang255\rtlch \ltrch\loch\lang255\loch\f4 +https://www.gnu.org/licenses/}{}}}\cf1\rtlch \ltrch\loch\loch\f4 +>.} +\par } diff --git a/installer/windows/banner.bmp b/installer/windows/banner.bmp new file mode 100644 index 0000000000000000000000000000000000000000..f0d12dfe34954b566d41fc79c7dabb2eebe0dcf7 GIT binary patch literal 14570 zcmeI2PiPZC6vkhYT4Mz%dJ+_Zw_YT8k}4kJ!GnK@dMjeRSP+$f9xO^pP6~n*b5JZH z(MqvJ&>lq49#S*`G0H+D5rnc4L2b28K`G6j-RGOxY}-vvUgu?CXV^_HzkItd^L=k4 zM;G>j8n0-+K*ypFpr2MBbgAoM`aHMAIeO`eJR*lqTvi|c$K-GMZtB1`cyM?RJUreH zQ)f@Y^wk)=yqSRPy(HwvQ&4#N7>YA5;Pbn;@bzO67Ah6^`&)ojt3m@UK$c^v!_7+f zj^3=~MkadKuUzx$%7l9iYZ(tX4{qx=;s`_Ty7AhaVaQ#|ei9SrdTW<)3$8b}b>rM4 zh27+az|^pVt~YntY=k}Ba0E-H)Ld_F+M~^Sxec`9`g6yZGhaO10lbSb{kdZ+&sIF# zn{bi?_brk(ufU!Eu?+@dgFK4v&v)7QY2b4SuDAnPEMQ)3SM{!IcBHr4w37oL=EUM$ z;ZhpQu=SXfTl0F3X8^VfTahB#_=CcGRn{1AlO3_{%aKAdD2%v!FhRI9Vyd>Y(R+8* z!G_HZMbG55MB99Q6m<4M`nb1>{2 zfd_;N+Bof7un_{-fxPxDeZm?RdFV2hM{u6_Io#*=!O%w2z5}E9%d``|G=7I&9DE7o zYo<-fqV(P5!^wxfXW>I-b}DNc1dKOwk^HhZs=E)3x8_Vi9ywE6uIT5HD^iXu`(iYl ze2rEXIWpC?kiuT&-p`_MU|nzR6HN}uj8*r#Mu48apg*mkIdCJ>J}@;3qOz{d(!{Fo zuk1*W;d>rPc7)6bzxR3&OGa5t2)CxmRqsBLOIkN_<`efstvtA;7g>9!M}qU<#xYUN lD4pGj33qMiyi4q?Ot`(!bk^Z+`$@FE(9v6KdE4NY;2-`k8)g6i literal 0 HcmV?d00001 diff --git a/installer/windows/dialog.bmp b/installer/windows/dialog.bmp new file mode 100644 index 0000000000000000000000000000000000000000..1b5807149f5bfd04baa13d1f4ab004f95ece18cf GIT binary patch literal 155898 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 U1jA5v-A#o*bRyO05diQ1AFX)iUjP6A literal 0 HcmV?d00001 diff --git a/installer/windows/storj.ico b/installer/windows/storj.ico new file mode 100644 index 0000000000000000000000000000000000000000..eb3004ea787d0eecf6f1148f635c859e66182571 GIT binary patch literal 158559 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 + + + Debug + x86 + 3.10 + 1fdef912-9783-4e0b-b656-fb80aa4b5f68 + 2.0 + storagenode + Package + + + bin\$(Configuration)\ + obj\$(Configuration)\ + Debug + + + bin\$(Configuration)\ + obj\$(Configuration)\ + + + + + + + + + + + + + + + + + $(WixExtDir)\WixFirewallExtension.dll + WixFirewallExtension + + + $(WixExtDir)\WixUIExtension.dll + WixUIExtension + + + + + Storj + {ddd766c6-0aed-44c9-b61a-2d752d811b56} + True + True + Binaries;Content;Satellites + INSTALLFOLDER + + + + + + + + + \ No newline at end of file