diff --git a/.gitignore b/.gitignore index 3582cea..cb9e776 100644 --- a/.gitignore +++ b/.gitignore @@ -379,3 +379,9 @@ FodyWeavers.xsd # HxD bin backup files *.bin.bak + +# InnoSetup output +Installer/Output/ + +# InnoSetup environment-specific file +Installer/folders.txt diff --git a/.gitmodules b/.gitmodules index ae3f241..7cf66e1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "Scripts/whitespace"] path = Scripts/whitespace url = https://github.com/TollyH/whitespace +[submodule "Installer/InnoDependencyInstaller"] + path = Installer/InnoDependencyInstaller + url = https://github.com/DomGries/InnoDependencyInstaller diff --git a/Installer/AssEmbly Installer.iss b/Installer/AssEmbly Installer.iss new file mode 100644 index 0000000..be03521 --- /dev/null +++ b/Installer/AssEmbly Installer.iss @@ -0,0 +1,94 @@ +; IMPORTANT: These variables must be populated before compilation! +#define CLIRepositoryPath "" +#define VSCodeRepositoryPath "" +#define DebuggerGUIRepositoryPath "" +#define VBCCRepositoryPath "" +; Nothing beyond this point requires editing for compilation to work. + +#define MyAppName "AssEmbly" +#define MyAppVersion "4.1.0" +#define MyAppPublisher "Tolly Hill" +#define MyAppURL "https://github.com/TollyH/AssEmbly" + +#define VSCodeExtVersion "4.1.0" + +#define public Dependency_Path_NetCoreCheck "InnoDependencyInstaller\dependencies\" +#include "InnoDependencyInstaller\CodeDependencies.iss" + +[Setup] +; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications. +; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) +AppId={{635B54D8-4BE9-4D6F-83AC-30615F2CB0A2} +AppName={#MyAppName} +AppVersion={#MyAppVersion} +;AppVerName={#MyAppName} {#MyAppVersion} +AppPublisher={#MyAppPublisher} +AppPublisherURL={#MyAppURL} +AppSupportURL={#MyAppURL} +AppUpdatesURL={#MyAppURL} +DefaultDirName={autopf}\{#MyAppName} +; "ArchitecturesAllowed=x64compatible" specifies that Setup cannot run +; on anything but x64 and Windows 11 on Arm. +ArchitecturesAllowed=x64compatible +; "ArchitecturesInstallIn64BitMode=x64compatible" requests that the +; install be done in "64-bit mode" on x64 or Windows 11 on Arm, +; meaning it should use the native 64-bit Program Files directory and +; the 64-bit view of the registry. +ArchitecturesInstallIn64BitMode=x64compatible +DefaultGroupName={#MyAppName} +AllowNoIcons=yes +LicenseFile={#CLIRepositoryPath}\Installer\LICENSE.rtf +InfoBeforeFile={#CLIRepositoryPath}\Installer\Pre-install.rtf +InfoAfterFile={#CLIRepositoryPath}\Installer\Post-install.rtf +; Uncomment the following line to run in non administrative install mode (install for current user only.) +;PrivilegesRequired=lowest +PrivilegesRequiredOverridesAllowed=dialog +OutputBaseFilename=AssEmbly +Compression=lzma +SolidCompression=yes +WizardStyle=modern +ChangesEnvironment=yes + +[Code] +function InitializeSetup: Boolean; +begin + Dependency_AddDotNet80Desktop; + Result := True; +end; + +[Languages] +Name: "english"; MessagesFile: "compiler:Default.isl" + +[Components] +Name: cli; Description: "{#MyAppName} Command-Line (Recommended)"; Types: full compact +Name: docs; Description: "Reference Manual"; Types: full compact +Name: vscode; Description: "Visual Studio Code Extension (VSCode must be installed on PATH)"; Types: full +Name: dbggui; Description: "Debugger GUI"; Types: full +Name: vbcc; Description: "C Compiler"; Types: full + +[Tasks] +Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked; Components: docs or dbggui +Name: "addpath"; Description: "Add {#MyAppName} folder to PATH (recommended)"; GroupDescription: "Advanced options:"; Components: cli or vbcc + +[Files] +Source: "{#CLIRepositoryPath}\Publish\win-x64\{#MyAppName}.exe"; DestDir: "{app}"; Flags: ignoreversion; Components: cli +Source: "{#CLIRepositoryPath}\Documentation\ReferenceManual\Build\*"; DestDir: "{app}\Documentation"; Flags: ignoreversion; Components: docs +Source: "{#VSCodeRepositoryPath}\{#MyAppName}-tolly-{#VSCodeExtVersion}.vsix"; DestDir: "{app}"; Flags: ignoreversion; Components: vscode +Source: "{#DebuggerGUIRepositoryPath}\Publish\{#MyAppName}.DebuggerGUI.exe"; DestDir: "{app}"; Flags: ignoreversion; Components: dbggui +Source: "{#VBCCRepositoryPath}\bin\*"; DestDir: "{app}\vbcc"; Flags: ignoreversion recursesubdirs createallsubdirs; Components: vbcc +; NOTE: Don't use "Flags: ignoreversion" on any shared system files + +[Registry] +Root: HKLM; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; ValueType: expandsz; ValueName: "Path"; ValueData: "{olddata};{app};{app}\vbcc" + +[Icons] +Name: "{group}\{#MyAppName} Reference Manual"; Filename: "{app}\Documentation"; Components: docs +Name: "{group}\{#MyAppName} Debugger GUI"; Filename: "{app}\{#MyAppName}.DebuggerGUI.exe"; Components: dbggui +Name: "{group}\{#MyAppName} GitHub Repository"; Filename: "{#MyAppURL}" +Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}" +Name: "{autodesktop}\{#MyAppName} Reference Manual"; Filename: "{app}\Documentation"; Tasks: desktopicon; Components: docs +Name: "{autodesktop}\{#MyAppName} Debugger GUI"; Filename: "{app}\{#MyAppName}.DebuggerGUI.exe"; Tasks: desktopicon; Components: dbggui + +[Run] +Filename: "{app}\Documentation\ReferenceManual.html"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')} Reference Manual}"; Flags: nowait postinstall skipifsilent shellexec; Components: docs +Filename: "code"; Parameters: "--install-extension ""{app}\{#MyAppName}-tolly-{#VSCodeExtVersion}.vsix"""; Description: "Install VSCode extension"; Flags: shellexec waituntilterminated; Components: vscode diff --git a/Installer/InnoDependencyInstaller b/Installer/InnoDependencyInstaller new file mode 160000 index 0000000..350142d --- /dev/null +++ b/Installer/InnoDependencyInstaller @@ -0,0 +1 @@ +Subproject commit 350142dfade82a17ae2e222b56c95eb31970e1af diff --git a/Installer/LICENSE.rtf b/Installer/LICENSE.rtf new file mode 100644 index 0000000..8ad96ca --- /dev/null +++ b/Installer/LICENSE.rtf @@ -0,0 +1,1384 @@ +{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff31507\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi31507\deflang2057\deflangfe1041\themelang2057\themelangfe1041\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1\fbidi \fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Arial;} +{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;}{\f35\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0400000000000000}Yu Gothic{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};} +{\f42\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0300000000000000}Yu Gothic Light{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};}{\f72\fbidi \fmodern\fcharset0\fprq1{\*\panose 020b0609020204030204}Consolas;} +{\f174\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0400000000000000}@Yu Gothic;}{\f179\fbidi \fswiss\fcharset128\fprq2 @Yu Gothic Light;}{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} +{\fdbmajor\f31501\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0300000000000000}Yu Gothic Light{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};}{\fhimajor\f31502\fbidi \fswiss\fcharset0\fprq2 Aptos Display;} +{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} +{\fdbminor\f31505\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0400000000000000}Yu Gothic{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2 Aptos;} +{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1330\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f1331\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\f1333\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f1334\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f1335\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\f1336\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f1337\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f1338\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f1340\fbidi \fswiss\fcharset238\fprq2 Arial CE;} +{\f1341\fbidi \fswiss\fcharset204\fprq2 Arial Cyr;}{\f1343\fbidi \fswiss\fcharset161\fprq2 Arial Greek;}{\f1344\fbidi \fswiss\fcharset162\fprq2 Arial Tur;}{\f1345\fbidi \fswiss\fcharset177\fprq2 Arial (Hebrew);} +{\f1346\fbidi \fswiss\fcharset178\fprq2 Arial (Arabic);}{\f1347\fbidi \fswiss\fcharset186\fprq2 Arial Baltic;}{\f1348\fbidi \fswiss\fcharset163\fprq2 Arial (Vietnamese);}{\f1670\fbidi \froman\fcharset238\fprq2 Cambria Math CE;} +{\f1671\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}{\f1673\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f1674\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f1677\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;} +{\f1678\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}{\f1682\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Western{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};} +{\f1680\fbidi \fswiss\fcharset238\fprq2 Yu Gothic CE{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};}{\f1681\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Cyr{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};} +{\f1683\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Greek{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};}{\f1684\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Tur{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};} +{\f1687\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Baltic{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};}{\f1752\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Light Western{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};} +{\f1750\fbidi \fswiss\fcharset238\fprq2 Yu Gothic Light CE{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};}{\f1751\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Light Cyr{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};} +{\f1753\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Light Greek{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};}{\f1754\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Light Tur{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};} +{\f1757\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Light Baltic{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};}{\f2050\fbidi \fmodern\fcharset238\fprq1 Consolas CE;}{\f2051\fbidi \fmodern\fcharset204\fprq1 Consolas Cyr;} +{\f2053\fbidi \fmodern\fcharset161\fprq1 Consolas Greek;}{\f2054\fbidi \fmodern\fcharset162\fprq1 Consolas Tur;}{\f2057\fbidi \fmodern\fcharset186\fprq1 Consolas Baltic;}{\f2058\fbidi \fmodern\fcharset163\fprq1 Consolas (Vietnamese);} +{\f3072\fbidi \fswiss\fcharset0\fprq2 @Yu Gothic Western;}{\f3070\fbidi \fswiss\fcharset238\fprq2 @Yu Gothic CE;}{\f3071\fbidi \fswiss\fcharset204\fprq2 @Yu Gothic Cyr;}{\f3073\fbidi \fswiss\fcharset161\fprq2 @Yu Gothic Greek;} +{\f3074\fbidi \fswiss\fcharset162\fprq2 @Yu Gothic Tur;}{\f3077\fbidi \fswiss\fcharset186\fprq2 @Yu Gothic Baltic;}{\f3122\fbidi \fswiss\fcharset0\fprq2 @Yu Gothic Light Western;}{\f3120\fbidi \fswiss\fcharset238\fprq2 @Yu Gothic Light CE;} +{\f3121\fbidi \fswiss\fcharset204\fprq2 @Yu Gothic Light Cyr;}{\f3123\fbidi \fswiss\fcharset161\fprq2 @Yu Gothic Light Greek;}{\f3124\fbidi \fswiss\fcharset162\fprq2 @Yu Gothic Light Tur;}{\f3127\fbidi \fswiss\fcharset186\fprq2 @Yu Gothic Light Baltic;} +{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} +{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} +{\fdbmajor\f31520\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Light Western{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};}{\fdbmajor\f31518\fbidi \fswiss\fcharset238\fprq2 Yu Gothic Light CE{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};} +{\fdbmajor\f31519\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Light Cyr{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};} +{\fdbmajor\f31521\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Light Greek{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};} +{\fdbmajor\f31522\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Light Tur{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};} +{\fdbmajor\f31525\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Light Baltic{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e Light};}{\fhimajor\f31528\fbidi \fswiss\fcharset238\fprq2 Aptos Display CE;} +{\fhimajor\f31529\fbidi \fswiss\fcharset204\fprq2 Aptos Display Cyr;}{\fhimajor\f31531\fbidi \fswiss\fcharset161\fprq2 Aptos Display Greek;}{\fhimajor\f31532\fbidi \fswiss\fcharset162\fprq2 Aptos Display Tur;} +{\fhimajor\f31535\fbidi \fswiss\fcharset186\fprq2 Aptos Display Baltic;}{\fhimajor\f31536\fbidi \fswiss\fcharset163\fprq2 Aptos Display (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} +{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} +{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} +{\fdbminor\f31560\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Western{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};}{\fdbminor\f31558\fbidi \fswiss\fcharset238\fprq2 Yu Gothic CE{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};} +{\fdbminor\f31559\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Cyr{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};}{\fdbminor\f31561\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Greek{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};} +{\fdbminor\f31562\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Tur{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};}{\fdbminor\f31565\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Baltic{\*\falt \'9f\'e0\'83\'53\'83\'56\'83\'62\'83\'4e};} +{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Aptos CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Aptos Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Aptos Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Aptos Tur;} +{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Aptos Baltic;}{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Aptos (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} +{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} +{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0; +\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red0\green0\blue0;\red0\green0\blue0; +\caccentone\ctint255\cshade191\red15\green71\blue97;\ctextone\ctint166\cshade255\red89\green89\blue89;\ctextone\ctint216\cshade255\red39\green39\blue39;\ctextone\ctint191\cshade255\red64\green64\blue64;}{\*\defchp +\fs22\kerning2\loch\af31506\hich\af31506\dbch\af31505 }{\*\defpap \ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa160\sl259\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 \fs24\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 +\snext0 \sqformat \spriority0 \styrsid12867389 Normal;}{\s1\ql \li0\ri0\sb240\sl480\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31503\afs32\alang1025 \ltrch\fcs0 +\fs32\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \sautoupd \slink17 \sqformat \spriority9 \styrsid12657365 heading 1;}{\s2\ql \li0\ri0\sb40\sl259\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31503\afs26\alang1025 \ltrch\fcs0 \fs28\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \sautoupd \slink18 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid12867389 heading 2;}{\s3\ql \li0\ri0\sb160\sa80\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0 +\rtlch\fcs1 \af31503\afs28\alang1025 \ltrch\fcs0 \fs28\cf19\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink19 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid883442 heading 3;}{ +\s4\ql \li0\ri0\sb80\sa40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel3\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ai\af31503\afs22\alang1025 \ltrch\fcs0 +\i\fs24\cf19\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink20 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid883442 heading 4;}{\s5\ql \li0\ri0\sb80\sa40\sl259\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel4\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31503\afs22\alang1025 \ltrch\fcs0 \fs24\cf19\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink21 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid883442 heading 5;}{\s6\ql \li0\ri0\sb40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel5\adjustright\rin0\lin0\itap0 \rtlch\fcs1 +\ai\af31503\afs22\alang1025 \ltrch\fcs0 \i\fs24\cf20\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink22 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid883442 heading 6;}{ +\s7\ql \li0\ri0\sb40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel6\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31503\afs22\alang1025 \ltrch\fcs0 +\fs24\cf20\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink23 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid883442 heading 7;}{\s8\ql \li0\ri0\sl259\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel7\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ai\af31503\afs22\alang1025 \ltrch\fcs0 \i\fs24\cf21\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink24 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid883442 heading 8;}{\s9\ql \li0\ri0\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel8\adjustright\rin0\lin0\itap0 \rtlch\fcs1 +\af31503\afs22\alang1025 \ltrch\fcs0 \fs24\cf21\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink25 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid883442 heading 9;}{\*\cs10 +\additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* +\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa160\sl259\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 \fs22\lang2057\langfe1041\kerning2\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp2057\langfenp1041 +\snext11 \ssemihidden \sunhideused Normal Table;}{\s15\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\contextualspace \rtlch\fcs1 \af31503\afs56\alang1025 \ltrch\fcs0 +\fs56\expnd-2\expndtw-10\lang2057\langfe1041\kerning28\loch\f1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \sautoupd \slink16 \sqformat \spriority10 \styrsid12867389 Title;}{\*\cs16 \additive \rtlch\fcs1 \af31503\afs56 +\ltrch\fcs0 \fs56\expnd-2\expndtw-10\kerning28\loch\f1\hich\af1\dbch\af31501 \sbasedon10 \slink15 \spriority10 \styrsid12867389 Title Char;}{\*\cs17 \additive \rtlch\fcs1 \af31503\afs32 \ltrch\fcs0 \fs32\kerning0\loch\f1\hich\af1\dbch\af31501 +\sbasedon10 \slink1 \spriority9 \styrsid12657365 Heading 1 Char;}{\*\cs18 \additive \rtlch\fcs1 \af31503\afs26 \ltrch\fcs0 \fs26\loch\f1\hich\af1\dbch\af31501 \sbasedon10 \slink2 \ssemihidden \spriority9 \styrsid12867389 Heading 2 Char;}{\*\cs19 +\additive \rtlch\fcs1 \af31503\afs28 \ltrch\fcs0 \fs28\cf19\kerning0\dbch\af31501 \sbasedon10 \slink3 \ssemihidden \spriority9 \styrsid883442 Heading 3 Char;}{\*\cs20 \additive \rtlch\fcs1 \ai\af31503 \ltrch\fcs0 \i\fs24\cf19\kerning0\dbch\af31501 +\sbasedon10 \slink4 \ssemihidden \spriority9 \styrsid883442 Heading 4 Char;}{\*\cs21 \additive \rtlch\fcs1 \af31503 \ltrch\fcs0 \fs24\cf19\kerning0\dbch\af31501 \sbasedon10 \slink5 \ssemihidden \spriority9 \styrsid883442 Heading 5 Char;}{\*\cs22 +\additive \rtlch\fcs1 \ai\af31503 \ltrch\fcs0 \i\fs24\cf20\kerning0\dbch\af31501 \sbasedon10 \slink6 \ssemihidden \spriority9 \styrsid883442 Heading 6 Char;}{\*\cs23 \additive \rtlch\fcs1 \af31503 \ltrch\fcs0 \fs24\cf20\kerning0\dbch\af31501 +\sbasedon10 \slink7 \ssemihidden \spriority9 \styrsid883442 Heading 7 Char;}{\*\cs24 \additive \rtlch\fcs1 \ai\af31503 \ltrch\fcs0 \i\fs24\cf21\kerning0\dbch\af31501 \sbasedon10 \slink8 \ssemihidden \spriority9 \styrsid883442 Heading 8 Char;}{\*\cs25 +\additive \rtlch\fcs1 \af31503 \ltrch\fcs0 \fs24\cf21\kerning0\dbch\af31501 \sbasedon10 \slink9 \ssemihidden \spriority9 \styrsid883442 Heading 9 Char;}{\s26\ql \li0\ri0\sa160\sl259\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ilvl1\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31503\afs28\alang1025 \ltrch\fcs0 \fs28\expnd3\expndtw15\cf20\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink27 \sqformat \spriority11 \styrsid883442 Subtitle;}{\*\cs27 \additive \rtlch\fcs1 \af31503\afs28 \ltrch\fcs0 \fs28\expnd3\expndtw15\cf20\kerning0\dbch\af31501 \sbasedon10 \slink26 \spriority11 \styrsid883442 Subtitle Char;}{ +\s28\qc \li0\ri0\sb160\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ai\af31507\afs22\alang1025 \ltrch\fcs0 +\i\fs24\cf22\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink29 \sqformat \spriority29 \styrsid883442 Quote;}{\*\cs29 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f1\fs24\cf22\kerning0 +\sbasedon10 \slink28 \spriority29 \styrsid883442 Quote Char;}{\s30\ql \li720\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\contextualspace \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 +\fs24\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext30 \sqformat \spriority34 \styrsid883442 List Paragraph;}{\*\cs31 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\cf19 +\sbasedon10 \sqformat \spriority21 \styrsid883442 Intense Emphasis;}{\s32\qc \li864\ri864\sb360\sa360\sl259\slmult1\widctlpar\brdrt\brdrs\brdrw10\brsp200\brdrcf19 \brdrb\brdrs\brdrw10\brsp200\brdrcf19 +\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin864\lin864\itap0 \rtlch\fcs1 \ai\af31507\afs22\alang1025 \ltrch\fcs0 \i\fs24\cf19\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink33 \sqformat \spriority30 \styrsid883442 Intense Quote;}{\*\cs33 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f1\fs24\cf19\kerning0 \sbasedon10 \slink32 \spriority30 \styrsid883442 Intense Quote Char;}{\*\cs34 \additive +\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\scaps\expnd1\expndtw5\cf19 \sbasedon10 \sqformat \spriority32 \styrsid883442 Intense Reference;}}{\*\pgptbl {\pgp\ipgp0\itap0\li0\ri0\sb0\sa0}}{\*\rsidtbl \rsid873632\rsid883442\rsid8215624\rsid8486658\rsid12657365 +\rsid12867389}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\author Tolly Hill}{\operator Tolly Hill}{\creatim\yr2024\mo6\dy24\hr19\min21} +{\revtim\yr2024\mo6\dy24\hr19\min31}{\version3}{\edmins10}{\nofpages37}{\nofwords8309}{\nofchars47365}{\nofcharsws55563}{\vern97}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}} +\paperw11906\paperh16838\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect +\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen +\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1440\dgvorigin1440\dghshow1\dgvshow1 +\jexpand\viewkind1\viewscale100\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct +\asianbrkrule\rsidroot883442\newtblstyruls\nogrowautofit\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal \nouicompat \fet0 +{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\headery708\footery708\colsx708\endnhere\sectlinegrid360\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2 +\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6 +\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang +{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\s1\ql \li0\ri0\sb240\sl480\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid12657365 \rtlch\fcs1 \af31503\afs32\alang1025 \ltrch\fcs0 +\fs32\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af31503 \ltrch\fcs0 \insrsid873632\charrsid12657365 \hich\af1\dbch\af31501\loch\f1 Program License (\hich\af1\dbch\af31501\loch\f1 CLI +\hich\af1\dbch\af31501\loch\f1 &\hich\af1\dbch\af31501\loch\f1 Debugger GUI\hich\af1\dbch\af31501\loch\f1 ) +\par }\pard\plain \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid873632 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 +\fs24\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \f72\fs22\insrsid873632\charrsid12657365 \hich\af72\dbch\af31505\loch\f72 GNU GENERAL PUBLIC LICENSE +\par \hich\af72\dbch\af31505\loch\f72 Version 3, 29 June 2007 +\par +\par \hich\af72\dbch\af31505\loch\f72 Copyright (C) 2007 Free Software Foundation, Inc. +\par \hich\af72\dbch\af31505\loch\f72 Everyone is permitted to copy and distribute verbatim copies +\par \hich\af72\dbch\af31505\loch\f72 of this license document, but changing it is not allowed. +\par +\par \hich\af72\dbch\af31505\loch\f72 Preamble +\par +\par \hich\af72\dbch\af31505\loch\f72 The GNU General Public License is a free, copyleft license for +\par \hich\af72\dbch\af31505\loch\f72 software and other kinds of works. +\par +\par \hich\af72\dbch\af31505\loch\f72 The licenses for most software and other practical works are designed +\par \hich\af72\dbch\af31505\loch\f72 to take away your freedom to share and change the works. By contrast, +\par \hich\af72\dbch\af31505\loch\f72 the GNU General Public License is intended to guarantee your freedom to +\par \hich\af72\dbch\af31505\loch\f72 share and change all versions of a p\hich\af72\dbch\af31505\loch\f72 rogram--to make sure it remains free +\par \hich\af72\dbch\af31505\loch\f72 software for all its users. We, the Free Software Foundation, use the +\par \hich\af72\dbch\af31505\loch\f72 GNU General Public License for most of our software; it applies also to +\par \hich\af72\dbch\af31505\loch\f72 any other work released this way by its authors. You can apply it to +\par \hich\af72\dbch\af31505\loch\f72 your programs, too. +\par +\par \hich\af72\dbch\af31505\loch\f72 When we speak of free software, we are referring to freedom, not +\par \hich\af72\dbch\af31505\loch\f72 price. Our General Public Licenses are designed to make sure that you +\par \hich\af72\dbch\af31505\loch\f72 have the freedom to distribute copies of free software (and charge for +\par \hich\af72\dbch\af31505\loch\f72 them if you wish), that you rece\hich\af72\dbch\af31505\loch\f72 ive source code or can get it if you +\par \hich\af72\dbch\af31505\loch\f72 want it, that you can change the software or use pieces of it in new +\par \hich\af72\dbch\af31505\loch\f72 free programs, and that you know you can do these things. +\par +\par \hich\af72\dbch\af31505\loch\f72 To protect your rights, we need to prevent others from denying you +\par \hich\af72\dbch\af31505\loch\f72 these rights or asking you to surrender the rights. Therefore, you have +\par \hich\af72\dbch\af31505\loch\f72 certain responsibilities if you distribute copies of the software, or if +\par \hich\af72\dbch\af31505\loch\f72 you modify it: responsibilities to respect the freedom of others. +\par +\par \hich\af72\dbch\af31505\loch\f72 For example, if you distribute copies of such a program, whether +\par \hich\af72\dbch\af31505\loch\f72 gratis or for a fee, you must pass on to the recipients the same +\par \hich\af72\dbch\af31505\loch\f72 freedoms that you received. You must make sure that they, too, receive +\par \hich\af72\dbch\af31505\loch\f72 or can get the source code\hich\af72\dbch\af31505\loch\f72 . And you must show them these terms so they +\par \hich\af72\dbch\af31505\loch\f72 know their rights. +\par +\par \hich\af72\dbch\af31505\loch\f72 Developers that use the GNU GPL protect your rights with two steps: +\par \hich\af72\dbch\af31505\loch\f72 (1) assert copyright on the software, and (2) offer you this License +\par \hich\af72\dbch\af31505\loch\f72 giving you legal permission to copy, distribute and/or modify it. +\par +\par \hich\af72\dbch\af31505\loch\f72 For the developers' and authors' protection, the GPL clearly explains +\par \hich\af72\dbch\af31505\loch\f72 that there is no warranty for this free software. For both users' and +\par \hich\af72\dbch\af31505\loch\f72 authors' sake, the GPL requires that modified versions be marked as +\par \hich\af72\dbch\af31505\loch\f72 changed, so that their proble\hich\af72\dbch\af31505\loch\f72 ms will not be attributed erroneously to +\par \hich\af72\dbch\af31505\loch\f72 authors of previous versions. +\par +\par \hich\af72\dbch\af31505\loch\f72 Some devices are designed to deny users access to install or run +\par \hich\af72\dbch\af31505\loch\f72 modified versions of the software inside them, although the manufacturer +\par \hich\af72\dbch\af31505\loch\f72 can do so. This is fundamentally incompatible with the aim of +\par \hich\af72\dbch\af31505\loch\f72 protecting users' freedom to change the software. The systematic +\par \hich\af72\dbch\af31505\loch\f72 pattern of such abuse occurs in the area of products for individuals to +\par \hich\af72\dbch\af31505\loch\f72 use, which is precisely where it is most unacceptable. Therefore, we +\par \hich\af72\dbch\af31505\loch\f72 have designed this version of\hich\af72\dbch\af31505\loch\f72 the GPL to prohibit the practice for those +\par \hich\af72\dbch\af31505\loch\f72 products. If such problems arise substantially in other domains, we +\par \hich\af72\dbch\af31505\loch\f72 stand ready to extend this provision to those domains in future versions +\par \hich\af72\dbch\af31505\loch\f72 of the GPL, as needed to protect the freedom of users. +\par +\par \hich\af72\dbch\af31505\loch\f72 Finally, every program is threatened constantly by software patents. +\par \hich\af72\dbch\af31505\loch\f72 States should not allow patents to restrict development and use of +\par \hich\af72\dbch\af31505\loch\f72 software on general-purpose computers, but in those that do, we wish to +\par \hich\af72\dbch\af31505\loch\f72 avoid the special danger that patents applied to a free program could +\par \hich\af72\dbch\af31505\loch\f72 make it effectively proprietary. To prevent this, the GPL assures that +\par \hich\af72\dbch\af31505\loch\f72 patents cannot be used to rende\hich\af72\dbch\af31505\loch\f72 r the program non-free. +\par +\par \hich\af72\dbch\af31505\loch\f72 The precise terms and conditions for copying, distribution and +\par \hich\af72\dbch\af31505\loch\f72 modification follow. +\par +\par \hich\af72\dbch\af31505\loch\f72 TERMS AND CONDITIONS +\par +\par \hich\af72\dbch\af31505\loch\f72 0. Definitions. +\par +\par \hich\af72\dbch\af31505\loch\f72 "This License" refers to version 3 of the GNU General Public License. +\par +\par \hich\af72\dbch\af31505\loch\f72 "Copyright" also means copyright-like laws that apply to other kinds of +\par \hich\af72\dbch\af31505\loch\f72 works, such as semiconductor masks. +\par +\par \hich\af72\dbch\af31505\loch\f72 "The Program" refers to any copyrightable work licensed under this +\par \hich\af72\dbch\af31505\loch\f72 License. Each licensee is addressed as "you". "Licensees" and +\par \hich\af72\dbch\af31505\loch\f72 "recipients" may be\hich\af72\dbch\af31505\loch\f72 individuals or organizations. +\par +\par \hich\af72\dbch\af31505\loch\f72 To "modify" a work means to copy from or adapt all or part of the work +\par \hich\af72\dbch\af31505\loch\f72 in a fashion requiring copyright permission, other than the making of an +\par \hich\af72\dbch\af31505\loch\f72 exact copy. The resulting work is called a "modified version" of the +\par \hich\af72\dbch\af31505\loch\f72 earlier work or a work "based on" the earlier work. +\par +\par \hich\af72\dbch\af31505\loch\f72 A "covered work" means either the unmodified Program or a work based +\par \hich\af72\dbch\af31505\loch\f72 on the Program. +\par +\par \hich\af72\dbch\af31505\loch\f72 To "propagate" a work means to do anything with it that, without +\par \hich\af72\dbch\af31505\loch\f72 permission, would make you directly or secondarily liable for +\par \hich\af72\dbch\af31505\loch\f72 infringement under applicable copyright law, except executing it on a +\par \hich\af72\dbch\af31505\loch\f72 computer or modifying a private copy. Propagation includes copying, +\par \hich\af72\dbch\af31505\loch\f72 distribution (with or without modification), making available to the +\par \hich\af72\dbch\af31505\loch\f72 public, and in some countries othe\hich\af72\dbch\af31505\loch\f72 r activities as well. +\par +\par \hich\af72\dbch\af31505\loch\f72 To "convey" a work means any kind of propagation that enables other +\par \hich\af72\dbch\af31505\loch\f72 parties to make or receive copies. Mere interaction with a user through +\par \hich\af72\dbch\af31505\loch\f72 a computer network, with no transfer of a copy, is not conveying. +\par +\par \hich\af72\dbch\af31505\loch\f72 An interactive user interface displays "Appropriate Legal Notices" +\par \hich\af72\dbch\af31505\loch\f72 to the extent that it includes a convenient and prominently visible +\par \hich\af72\dbch\af31505\loch\f72 feature that (1) displays an appropriate copyright notice, and (2) +\par \hich\af72\dbch\af31505\loch\f72 tells the user that there is no warranty for the work (except to the +\par \hich\af72\dbch\af31505\loch\f72 extent\hich\af72\dbch\af31505\loch\f72 that warranties are provided), that licensees may convey the +\par \hich\af72\dbch\af31505\loch\f72 work under this License, and how to view a copy of this License. If +\par \hich\af72\dbch\af31505\loch\f72 the interface presents a list of user commands or options, such as a +\par \hich\af72\dbch\af31505\loch\f72 menu, a prominent item in the list meets this criterion. +\par +\par \hich\af72\dbch\af31505\loch\f72 1. Source Code. +\par +\par \hich\af72\dbch\af31505\loch\f72 The "source code" for a work means the preferred form of the work +\par \hich\af72\dbch\af31505\loch\f72 for making modifications to it. "Object code" means any non-source +\par \hich\af72\dbch\af31505\loch\f72 form of a work. +\par +\par \hich\af72\dbch\af31505\loch\f72 A "Standard Interface" means an interface that either is an official +\par \hich\af72\dbch\af31505\loch\f72 standard defined by a recognized standards body, or, in the case of +\par \hich\af72\dbch\af31505\loch\f72 interfaces specified for a particular programming language, one that +\par \hich\af72\dbch\af31505\loch\f72 is widely used among developers working in that language. +\par +\par \hich\af72\dbch\af31505\loch\f72 The "System Libraries" of an executable work include anything, other +\par \hich\af72\dbch\af31505\loch\f72 than the work as a whole, that (a) is included in the normal form of +\par \hich\af72\dbch\af31505\loch\f72 packaging a Major Component, but which is not part of that Major +\par \hich\af72\dbch\af31505\loch\f72 Component, and (b) serves only to enable\hich\af72\dbch\af31505\loch\f72 use of the work with that +\par \hich\af72\dbch\af31505\loch\f72 Major Component, or to implement a Standard Interface for which an +\par \hich\af72\dbch\af31505\loch\f72 implementation is available to the public in source code form. A +\par \hich\af72\dbch\af31505\loch\f72 "Major Component", in this context, means a major essential component +\par \hich\af72\dbch\af31505\loch\f72 (kernel, window system, and so on) of the specific operating system +\par \hich\af72\dbch\af31505\loch\f72 (if any) on which the executable work runs, or a compiler used to +\par \hich\af72\dbch\af31505\loch\f72 produce the work, or an object code interpreter used to run it. +\par +\par \hich\af72\dbch\af31505\loch\f72 The "Corresponding Source" for a work in object code form means all +\par \hich\af72\dbch\af31505\loch\f72 the source co\hich\af72\dbch\af31505\loch\f72 de needed to generate, install, and (for an executable +\par \hich\af72\dbch\af31505\loch\f72 work) run the object code and to modify the work, including scripts to +\par \hich\af72\dbch\af31505\loch\f72 control those activities. However, it does not include the work's +\par \hich\af72\dbch\af31505\loch\f72 System Libraries, or general-purpose tools or generally available free +\par \hich\af72\dbch\af31505\loch\f72 programs which are used unmodified in performing those activities but +\par \hich\af72\dbch\af31505\loch\f72 which are not part of the work. For example, Corresponding Source +\par \hich\af72\dbch\af31505\loch\f72 includes interface definition files associated with source files for +\par \hich\af72\dbch\af31505\loch\f72 the work, and the source code for shared l\hich\af72\dbch\af31505\loch\f72 ibraries and dynamically +\par \hich\af72\dbch\af31505\loch\f72 linked subprograms that the work is specifically designed to require, +\par \hich\af72\dbch\af31505\loch\f72 such as by intimate data communication or control flow between those +\par \hich\af72\dbch\af31505\loch\f72 subprograms and other parts of the work. +\par +\par \hich\af72\dbch\af31505\loch\f72 The Corresponding Source need not include anything that users +\par \hich\af72\dbch\af31505\loch\f72 can regenerate automatically from other parts of the Corresponding +\par \hich\af72\dbch\af31505\loch\f72 Source. +\par +\par \hich\af72\dbch\af31505\loch\f72 The Corresponding Source for a work in source code form is that +\par \hich\af72\dbch\af31505\loch\f72 same work. +\par +\par \hich\af72\dbch\af31505\loch\f72 2. Basic Permissions. +\par +\par \hich\af72\dbch\af31505\loch\f72 All rights granted under this License are granted for the term of +\par \hich\af72\dbch\af31505\loch\f72 copyright on the Program, and are irrevocable provided the stated +\par \hich\af72\dbch\af31505\loch\f72 conditions are met. This License explicitly affirms your unlimited +\par \hich\af72\dbch\af31505\loch\f72 permission to run the unmodified Program. The output from running \hich\af72\dbch\af31505\loch\f72 a +\par \hich\af72\dbch\af31505\loch\f72 covered work is covered by this License only if the output, given its +\par \hich\af72\dbch\af31505\loch\f72 content, constitutes a covered work. This License acknowledges your +\par \hich\af72\dbch\af31505\loch\f72 rights of fair use or other equivalent, as provided by copyright law. +\par +\par \hich\af72\dbch\af31505\loch\f72 You may make, run and propagate covered works that you do not +\par \hich\af72\dbch\af31505\loch\f72 convey, without conditions so long as your license otherwise remains +\par \hich\af72\dbch\af31505\loch\f72 in force. You may convey covered works to others for the sole purpose +\par \hich\af72\dbch\af31505\loch\f72 of having them make modifications exclusively for you, or provide you +\par \hich\af72\dbch\af31505\loch\f72 with facilities for runnin\hich\af72\dbch\af31505\loch\f72 g those works, provided that you comply with +\par \hich\af72\dbch\af31505\loch\f72 the terms of this License in conveying all material for which you do +\par \hich\af72\dbch\af31505\loch\f72 not control copyright. Those thus making or running the covered works +\par \hich\af72\dbch\af31505\loch\f72 for you must do so exclusively on your behalf, under your direction +\par \hich\af72\dbch\af31505\loch\f72 and control, on terms that prohibit them from making any copies of +\par \hich\af72\dbch\af31505\loch\f72 your copyrighted material outside their relationship with you. +\par +\par \hich\af72\dbch\af31505\loch\f72 Conveying under any other circumstances is permitted solely under +\par \hich\af72\dbch\af31505\loch\f72 the conditions stated below. Sublicensing is not allowed; section 10 +\par \hich\af72\dbch\af31505\loch\f72 makes it unnecessary. +\par +\par \hich\af72\dbch\af31505\loch\f72 3. Protecting Users' Legal Rights From Anti-Circumvention Law. +\par +\par \hich\af72\dbch\af31505\loch\f72 No covered work shall be deemed part of an effective technological +\par \hich\af72\dbch\af31505\loch\f72 measure under any applicable law fulfilling obligations under article +\par \hich\af72\dbch\af31505\loch\f72 11 of the WIPO copyright treaty adopted on 20 December 1996, or +\par \hich\af72\dbch\af31505\loch\f72 similar laws prohibiting or restricting circumvention of such +\par \hich\af72\dbch\af31505\loch\f72 measures. +\par +\par \hich\af72\dbch\af31505\loch\f72 When yo\hich\af72\dbch\af31505\loch\f72 u convey a covered work, you waive any legal power to forbid +\par \hich\af72\dbch\af31505\loch\f72 circumvention of technological measures to the extent such circumvention +\par \hich\af72\dbch\af31505\loch\f72 is effected by exercising rights under this License with respect to +\par \hich\af72\dbch\af31505\loch\f72 the covered work, and you disclaim any intention to limit operation or +\par \hich\af72\dbch\af31505\loch\f72 modification of the work as a means of enforcing, against the work's +\par \hich\af72\dbch\af31505\loch\f72 users, your or third parties' legal rights to forbid circumvention of +\par \hich\af72\dbch\af31505\loch\f72 technological measures. +\par +\par \hich\af72\dbch\af31505\loch\f72 4. Conveying Verbatim Copies. +\par +\par \hich\af72\dbch\af31505\loch\f72 You may convey verbatim copies of the Pr\hich\af72\dbch\af31505\loch\f72 ogram's source code as you +\par \hich\af72\dbch\af31505\loch\f72 receive it, in any medium, provided that you conspicuously and +\par \hich\af72\dbch\af31505\loch\f72 appropriately publish on each copy an appropriate copyright notice; +\par \hich\af72\dbch\af31505\loch\f72 keep intact all notices stating that this License and any +\par \hich\af72\dbch\af31505\loch\f72 non-permissive terms added in accord with section 7 apply to the code; +\par \hich\af72\dbch\af31505\loch\f72 keep intact all notices of the absence of any warranty; and give all +\par \hich\af72\dbch\af31505\loch\f72 recipients a copy of this License along with the Program. +\par +\par \hich\af72\dbch\af31505\loch\f72 You may charge any price or no price for each copy that you convey, +\par \hich\af72\dbch\af31505\loch\f72 and you may offer support or warranty protection for a fee. +\par +\par \hich\af72\dbch\af31505\loch\f72 5. Conveying Modified Source Versions. +\par +\par \hich\af72\dbch\af31505\loch\f72 You may convey a work based on the Program, or the modifications to +\par \hich\af72\dbch\af31505\loch\f72 produce it from the Program, in the form of source code under the +\par \hich\af72\dbch\af31505\loch\f72 terms of section 4, provided that you also meet all of these conditions: +\par +\par \hich\af72\dbch\af31505\loch\f72 a) The work must carry prominent notices stating that you modified +\par \hich\af72\dbch\af31505\loch\f72 it, and giving a relevant date. +\par +\par \hich\af72\dbch\af31505\loch\f72 b) The work must \hich\af72\dbch\af31505\loch\f72 carry prominent notices stating that it is +\par \hich\af72\dbch\af31505\loch\f72 released under this License and any conditions added under section +\par \hich\af72\dbch\af31505\loch\f72 7. This requirement modifies the requirement in section 4 to +\par \hich\af72\dbch\af31505\loch\f72 "keep intact all notices". +\par +\par \hich\af72\dbch\af31505\loch\f72 c) You must license the entire work, as a whole, under this +\par \hich\af72\dbch\af31505\loch\f72 License to anyone who comes into possession of a copy. This +\par \hich\af72\dbch\af31505\loch\f72 License will therefore apply, along with any applicable section 7 +\par \hich\af72\dbch\af31505\loch\f72 additional terms, to the whole of the work, and all its parts, +\par \hich\af72\dbch\af31505\loch\f72 regardless of how they are pac\hich\af72\dbch\af31505\loch\f72 kaged. This License gives no +\par \hich\af72\dbch\af31505\loch\f72 permission to license the work in any other way, but it does not +\par \hich\af72\dbch\af31505\loch\f72 invalidate such permission if you have separately received it. +\par +\par \hich\af72\dbch\af31505\loch\f72 d) If the work has interactive user interfaces, each must display +\par \hich\af72\dbch\af31505\loch\f72 Appropriate Legal Notices; however, if the Program has interactive +\par \hich\af72\dbch\af31505\loch\f72 interfaces that do not display Appropriate Legal Notices, your +\par \hich\af72\dbch\af31505\loch\f72 work need not make them do so. +\par +\par \hich\af72\dbch\af31505\loch\f72 A compilation of a covered work with other separate and independent +\par \hich\af72\dbch\af31505\loch\f72 works, which are not by their nature extensions of the covered work, +\par \hich\af72\dbch\af31505\loch\f72 and which are not combined with it such as to form a larger program, +\par \hich\af72\dbch\af31505\loch\f72 in or on a volume of a storage or distribution medium, is called an +\par \hich\af72\dbch\af31505\loch\f72 "aggregate" if the compilation and its resulting copyright are not +\par \hich\af72\dbch\af31505\loch\f72 used to limit the access or legal rights of the compilation's users +\par \hich\af72\dbch\af31505\loch\f72 beyond what the individual works permit. Inclusion of a covered work +\par \hich\af72\dbch\af31505\loch\f72 in an aggregate does not cause \hich\af72\dbch\af31505\loch\f72 this License to apply to the other +\par \hich\af72\dbch\af31505\loch\f72 parts of the aggregate. +\par +\par \hich\af72\dbch\af31505\loch\f72 6. Conveying Non-Source Forms. +\par +\par \hich\af72\dbch\af31505\loch\f72 You may convey a covered work in object code form under the terms +\par \hich\af72\dbch\af31505\loch\f72 of sections 4 and 5, provided that you also convey the +\par \hich\af72\dbch\af31505\loch\f72 machine-readable Corresponding Source under the terms of this License, +\par \hich\af72\dbch\af31505\loch\f72 in one of these ways: +\par +\par \hich\af72\dbch\af31505\loch\f72 a) Convey the object code in, or embodied in, a physical product +\par \hich\af72\dbch\af31505\loch\f72 (including a physical distribution medium), accompanied by the +\par \hich\af72\dbch\af31505\loch\f72 Corresponding Source fixed on a durable physical medium +\par \hich\af72\dbch\af31505\loch\f72 c\hich\af72\dbch\af31505\loch\f72 ustomarily used for software interchange. +\par +\par \hich\af72\dbch\af31505\loch\f72 b) Convey the object code in, or embodied in, a physical product +\par \hich\af72\dbch\af31505\loch\f72 (including a physical distribution medium), accompanied by a +\par \hich\af72\dbch\af31505\loch\f72 written offer, valid for at least three years and valid for as +\par \hich\af72\dbch\af31505\loch\f72 long as you offer spare parts or customer support for that product +\par \hich\af72\dbch\af31505\loch\f72 model, to give anyone who possesses the object code either (1) a +\par \hich\af72\dbch\af31505\loch\f72 copy of the Corresponding Source for all the software in the +\par \hich\af72\dbch\af31505\loch\f72 product that is covered by this License, on a durable physical +\par \hich\af72\dbch\af31505\loch\f72 medium customarily used for software interchange, for a price no +\par \hich\af72\dbch\af31505\loch\f72 more than your reasonable cost of physically performing this +\par \hich\af72\dbch\af31505\loch\f72 conveying of source, or (2) access to copy the +\par \hich\af72\dbch\af31505\loch\f72 Corresponding Source from a network server at no charge. +\par +\par \hich\af72\dbch\af31505\loch\f72 c) Convey individual copies of the object code with a copy of the +\par \hich\af72\dbch\af31505\loch\f72 written offer to provide the Corresponding Source. This +\par \hich\af72\dbch\af31505\loch\f72 \hich\af72\dbch\af31505\loch\f72 alternative is allowed only occasionally and noncommercially, and +\par \hich\af72\dbch\af31505\loch\f72 only if you received the object code with such an offer, in accord +\par \hich\af72\dbch\af31505\loch\f72 with subsection 6b. +\par +\par \hich\af72\dbch\af31505\loch\f72 d) Convey the object code by offering access from a designated +\par \hich\af72\dbch\af31505\loch\f72 place (gratis or for a charge), and offer equivalent access to the +\par \hich\af72\dbch\af31505\loch\f72 Corresponding Source in the same way through the same place at no +\par \hich\af72\dbch\af31505\loch\f72 further charge. You need not require recipients to copy the +\par \hich\af72\dbch\af31505\loch\f72 Corresponding Source along with the object code. If the place to +\par \hich\af72\dbch\af31505\loch\f72 c\hich\af72\dbch\af31505\loch\f72 opy the object code is a network server, the Corresponding Source +\par \hich\af72\dbch\af31505\loch\f72 may be on a different server (operated by you or a third party) +\par \hich\af72\dbch\af31505\loch\f72 that supports equivalent copying facilities, provided you maintain +\par \hich\af72\dbch\af31505\loch\f72 clear directions next to the object code saying where to find the +\par \hich\af72\dbch\af31505\loch\f72 Corresponding Source. Regardless of what server hosts the +\par \hich\af72\dbch\af31505\loch\f72 Corresponding Source, you remain obligated to ensure that it is +\par \hich\af72\dbch\af31505\loch\f72 available for as long as needed to satisfy these requirements. +\par +\par \hich\af72\dbch\af31505\loch\f72 e) Convey the object code using pe\hich\af72\dbch\af31505\loch\f72 er-to-peer transmission, provided +\par \hich\af72\dbch\af31505\loch\f72 you inform other peers where the object code and Corresponding +\par \hich\af72\dbch\af31505\loch\f72 Source of the work are being offered to the general public at no +\par \hich\af72\dbch\af31505\loch\f72 charge under subsection 6d. +\par +\par \hich\af72\dbch\af31505\loch\f72 A separable portion of the object code, whose source code is excluded +\par \hich\af72\dbch\af31505\loch\f72 from the Corresponding Source as a System Library, need not be +\par \hich\af72\dbch\af31505\loch\f72 included in conveying the object code work. +\par +\par \hich\af72\dbch\af31505\loch\f72 A "User Product" is either (1) a "consumer product", which means any +\par \hich\af72\dbch\af31505\loch\f72 tangible personal property which is normally used for personal, family, +\par \hich\af72\dbch\af31505\loch\f72 or household purposes, or (2) anything designed or sold for incorporation +\par \hich\af72\dbch\af31505\loch\f72 into a dwelling. In determining whether a product is a consumer product, +\par \hich\af72\dbch\af31505\loch\f72 doubtful cases shall be resolved in favor\hich\af72\dbch\af31505\loch\f72 of coverage. For a particular +\par \hich\af72\dbch\af31505\loch\f72 product received by a particular user, "normally used" refers to a +\par \hich\af72\dbch\af31505\loch\f72 typical or common use of that class of product, regardless of the status +\par \hich\af72\dbch\af31505\loch\f72 of the particular user or of the way in which the particular user +\par \hich\af72\dbch\af31505\loch\f72 actually uses, or expects or is expected to use, the product. A product +\par \hich\af72\dbch\af31505\loch\f72 is a consumer product regardless of whether the product has substantial +\par \hich\af72\dbch\af31505\loch\f72 commercial, industrial or non-consumer uses, unless such uses represent +\par \hich\af72\dbch\af31505\loch\f72 the only significant mode of use of the product. +\par +\par \hich\af72\dbch\af31505\loch\f72 "Inst\hich\af72\dbch\af31505\loch\f72 allation Information" for a User Product means any methods, +\par \hich\af72\dbch\af31505\loch\f72 procedures, authorization keys, or other information required to install +\par \hich\af72\dbch\af31505\loch\f72 and execute modified versions of a covered work in that User Product from +\par \hich\af72\dbch\af31505\loch\f72 a modified version of its Corresponding Source. The information must +\par \hich\af72\dbch\af31505\loch\f72 suffice to ensure that the continued functioning of the modified object +\par \hich\af72\dbch\af31505\loch\f72 code is in no case prevented or interfered with solely because +\par \hich\af72\dbch\af31505\loch\f72 modification has been made. +\par +\par \hich\af72\dbch\af31505\loch\f72 If you convey an object code work under this section in, or with, or +\par \hich\af72\dbch\af31505\loch\f72 specifically for use in, a User Product, and the conveying occurs as +\par \hich\af72\dbch\af31505\loch\f72 part of a transaction in which the right of possession and use of the +\par \hich\af72\dbch\af31505\loch\f72 User Product is transferred to the recipient in perpetuity or for a +\par \hich\af72\dbch\af31505\loch\f72 fixed term (regardless of how the transaction is characterized), the +\par \hich\af72\dbch\af31505\loch\f72 Corresponding Source conveyed under this section must be accompanied +\par \hich\af72\dbch\af31505\loch\f72 by the Installation Information. But this requirement does not apply +\par \hich\af72\dbch\af31505\loch\f72 if neither you nor any third party retains the ability to install +\par \hich\af72\dbch\af31505\loch\f72 modified object code on the Use\hich\af72\dbch\af31505\loch\f72 r Product (for example, the work has +\par \hich\af72\dbch\af31505\loch\f72 been installed in ROM). +\par +\par \hich\af72\dbch\af31505\loch\f72 The requirement to provide Installation Information does not include a +\par \hich\af72\dbch\af31505\loch\f72 requirement to continue to provide support service, warranty, or updates +\par \hich\af72\dbch\af31505\loch\f72 for a work that has been modified or installed by the recipient, or for +\par \hich\af72\dbch\af31505\loch\f72 the User Product in which it has been modified or installed. Access to a +\par \hich\af72\dbch\af31505\loch\f72 network may be denied when the modification itself materially and +\par \hich\af72\dbch\af31505\loch\f72 adversely affects the operation of the network or violates the rules and +\par \hich\af72\dbch\af31505\loch\f72 protocols for commu\hich\af72\dbch\af31505\loch\f72 nication across the network. +\par +\par \hich\af72\dbch\af31505\loch\f72 Corresponding Source conveyed, and Installation Information provided, +\par \hich\af72\dbch\af31505\loch\f72 in accord with this section must be in a format that is publicly +\par \hich\af72\dbch\af31505\loch\f72 documented (and with an implementation available to the public in +\par \hich\af72\dbch\af31505\loch\f72 source code form), and must require no special password or key for +\par \hich\af72\dbch\af31505\loch\f72 unpacking, reading or copying. +\par +\par \hich\af72\dbch\af31505\loch\f72 7. Additional Terms. +\par +\par \hich\af72\dbch\af31505\loch\f72 "Additional permissions" are terms that supplement the terms of this +\par \hich\af72\dbch\af31505\loch\f72 License by making exceptions from one or more of its conditions. +\par \hich\af72\dbch\af31505\loch\f72 Additional permissio\hich\af72\dbch\af31505\loch\f72 ns that are applicable to the entire Program shall +\par \hich\af72\dbch\af31505\loch\f72 be treated as though they were included in this License, to the extent +\par \hich\af72\dbch\af31505\loch\f72 that they are valid under applicable law. If additional permissions +\par \hich\af72\dbch\af31505\loch\f72 apply only to part of the Program, that part may be used separately +\par \hich\af72\dbch\af31505\loch\f72 under those permissions, but the entire Program remains governed by +\par \hich\af72\dbch\af31505\loch\f72 this License without regard to the additional permissions. +\par +\par \hich\af72\dbch\af31505\loch\f72 When you convey a copy of a covered work, you may at your option +\par \hich\af72\dbch\af31505\loch\f72 remove any additional permissions from that copy, or from any part of +\par \hich\af72\dbch\af31505\loch\f72 it. (Additional permissions may be written to require their own +\par \hich\af72\dbch\af31505\loch\f72 removal in certain cases when you modify the \hich\af72\dbch\af31505\loch\f72 work.) You may place +\par \hich\af72\dbch\af31505\loch\f72 additional permissions on material, added by you to a covered work, +\par \hich\af72\dbch\af31505\loch\f72 for which you have or can give appropriate copyright permission. +\par +\par \hich\af72\dbch\af31505\loch\f72 Notwithstanding any other provision of this License, for material you +\par \hich\af72\dbch\af31505\loch\f72 add to a covered work, you may (if authorized by the copyright holders of +\par \hich\af72\dbch\af31505\loch\f72 that material) supplement the terms of this License with terms: +\par +\par \hich\af72\dbch\af31505\loch\f72 a) Disclaiming warranty or limiting liability differently from the +\par \hich\af72\dbch\af31505\loch\f72 terms of sections 15 and 16 of this License; or +\par +\par \hich\af72\dbch\af31505\loch\f72 b) Requiring pres\hich\af72\dbch\af31505\loch\f72 ervation of specified reasonable legal notices or +\par \hich\af72\dbch\af31505\loch\f72 author attributions in that material or in the Appropriate Legal +\par \hich\af72\dbch\af31505\loch\f72 Notices displayed by works containing it; or +\par +\par \hich\af72\dbch\af31505\loch\f72 c) Prohibiting misrepresentation of the origin of that material, or +\par \hich\af72\dbch\af31505\loch\f72 requiring that modified versions of such material be marked in +\par \hich\af72\dbch\af31505\loch\f72 reasonable ways as different from the original version; or +\par +\par \hich\af72\dbch\af31505\loch\f72 d) Limiting the use for publicity purposes of names of licensors or +\par \hich\af72\dbch\af31505\loch\f72 authors of the material; or +\par +\par \hich\af72\dbch\af31505\loch\f72 e) Declining to grant rights under trademark law for use of some +\par \hich\af72\dbch\af31505\loch\f72 trade names, trademarks, or service marks; or +\par +\par \hich\af72\dbch\af31505\loch\f72 f) Requiring indemnification of licensors and authors of that +\par \hich\af72\dbch\af31505\loch\f72 material by anyone who conveys the material (or modified versions of +\par \hich\af72\dbch\af31505\loch\f72 it) with contractual assumptions of liability to the recipient, for +\par \hich\af72\dbch\af31505\loch\f72 any liability that these contractual assumptions directly impose on +\par \hich\af72\dbch\af31505\loch\f72 those licensors and authors. +\par +\par \hich\af72\dbch\af31505\loch\f72 All other non-permissive additional terms are considered "further +\par \hich\af72\dbch\af31505\loch\f72 restric\hich\af72\dbch\af31505\loch\f72 tions" within the meaning of section 10. If the Program as you +\par \hich\af72\dbch\af31505\loch\f72 received it, or any part of it, contains a notice stating that it is +\par \hich\af72\dbch\af31505\loch\f72 governed by this License along with a term that is a further +\par \hich\af72\dbch\af31505\loch\f72 restriction, you may remove that term. If a license document contains +\par \hich\af72\dbch\af31505\loch\f72 a further restriction but permits relicensing or conveying under this +\par \hich\af72\dbch\af31505\loch\f72 License, you may add to a covered work material governed by the terms +\par \hich\af72\dbch\af31505\loch\f72 of that license document, provided that the further restriction does +\par \hich\af72\dbch\af31505\loch\f72 not survive such relicensing or convey\hich\af72\dbch\af31505\loch\f72 ing. +\par +\par \hich\af72\dbch\af31505\loch\f72 If you add terms to a covered work in accord with this section, you +\par \hich\af72\dbch\af31505\loch\f72 must place, in the relevant source files, a statement of the +\par \hich\af72\dbch\af31505\loch\f72 additional terms that apply to those files, or a notice indicating +\par \hich\af72\dbch\af31505\loch\f72 where to find the applicable terms. +\par +\par \hich\af72\dbch\af31505\loch\f72 Additional terms, permissive or non-permissive, may be stated in the +\par \hich\af72\dbch\af31505\loch\f72 form of a separately written license, or stated as exceptions; +\par \hich\af72\dbch\af31505\loch\f72 the above requirements apply either way. +\par +\par \hich\af72\dbch\af31505\loch\f72 8. Termination. +\par +\par \hich\af72\dbch\af31505\loch\f72 You may not propagate or modify a covered work except as expressly +\par \hich\af72\dbch\af31505\loch\f72 provided under this License. Any attempt otherwise to propagate or +\par \hich\af72\dbch\af31505\loch\f72 modify it is void, and will automatically terminate your rights under +\par \hich\af72\dbch\af31505\loch\f72 this License (including any patent licenses granted under the third +\par \hich\af72\dbch\af31505\loch\f72 paragraph of section 11). +\par +\par \hich\af72\dbch\af31505\loch\f72 However, if you cease all violation of this License, then your +\par \hich\af72\dbch\af31505\loch\f72 license from a particular copyright holder is reinstated (a) +\par \hich\af72\dbch\af31505\loch\f72 provisionally, unless and until the copyright holder explicitly and +\par \hich\af72\dbch\af31505\loch\f72 finally terminat\hich\af72\dbch\af31505\loch\f72 es your license, and (b) permanently, if the copyright +\par \hich\af72\dbch\af31505\loch\f72 holder fails to notify you of the violation by some reasonable means +\par \hich\af72\dbch\af31505\loch\f72 prior to 60 days after the cessation. +\par +\par \hich\af72\dbch\af31505\loch\f72 Moreover, your license from a particular copyright holder is +\par \hich\af72\dbch\af31505\loch\f72 reinstated permanently if the copyright holder notifies you of the +\par \hich\af72\dbch\af31505\loch\f72 violation by some reasonable means, this is the first time you have +\par \hich\af72\dbch\af31505\loch\f72 received notice of violation of this License (for any work) from that +\par \hich\af72\dbch\af31505\loch\f72 copyright holder, and you cure the violation prior to 30 days after +\par \hich\af72\dbch\af31505\loch\f72 your receipt \hich\af72\dbch\af31505\loch\f72 of the notice. +\par +\par \hich\af72\dbch\af31505\loch\f72 Termination of your rights under this section does not terminate the +\par \hich\af72\dbch\af31505\loch\f72 licenses of parties who have received copies or rights from you under +\par \hich\af72\dbch\af31505\loch\f72 this License. If your rights have been terminated and not permanently +\par \hich\af72\dbch\af31505\loch\f72 reinstated, you do not qualify to receive new licenses for the same +\par \hich\af72\dbch\af31505\loch\f72 material under section 10. +\par +\par \hich\af72\dbch\af31505\loch\f72 9. Acceptance Not Required for Having Copies. +\par +\par \hich\af72\dbch\af31505\loch\f72 You are not required to accept this License in order to receive or +\par \hich\af72\dbch\af31505\loch\f72 run a copy of the Program. Ancillary propagation of a covered work +\par \hich\af72\dbch\af31505\loch\f72 occurring solely as a consequence of using peer-to-peer transmission +\par \hich\af72\dbch\af31505\loch\f72 to receive a copy likewise does not require acceptance. However, +\par \hich\af72\dbch\af31505\loch\f72 nothing other than this License grants you permission to propagate or +\par \hich\af72\dbch\af31505\loch\f72 modify any covered work. These actions infringe copyright if you do +\par \hich\af72\dbch\af31505\loch\f72 not accept this License. Therefore, by modifying or propagating a +\par \hich\af72\dbch\af31505\loch\f72 covered work, you indicate your acceptance of this License to do so. +\par +\par \hich\af72\dbch\af31505\loch\f72 10. Automatic Licensing of Down\hich\af72\dbch\af31505\loch\f72 stream Recipients. +\par +\par \hich\af72\dbch\af31505\loch\f72 Each time you convey a covered work, the recipient automatically +\par \hich\af72\dbch\af31505\loch\f72 receives a license from the original licensors, to run, modify and +\par \hich\af72\dbch\af31505\loch\f72 propagate that work, subject to this License. You are not responsible +\par \hich\af72\dbch\af31505\loch\f72 for enforcing compliance by third parties with this License. +\par +\par \hich\af72\dbch\af31505\loch\f72 An "entity transaction" is a transaction transferring control of an +\par \hich\af72\dbch\af31505\loch\f72 organization, or substantially all assets of one, or subdividing an +\par \hich\af72\dbch\af31505\loch\f72 organization, or merging organizations. If propagation of a covered +\par \hich\af72\dbch\af31505\loch\f72 work results from \hich\af72\dbch\af31505\loch\f72 an entity transaction, each party to that +\par \hich\af72\dbch\af31505\loch\f72 transaction who receives a copy of the work also receives whatever +\par \hich\af72\dbch\af31505\loch\f72 licenses to the work the party's predecessor in interest had or could +\par \hich\af72\dbch\af31505\loch\f72 give under the previous paragraph, plus a right to possession of the +\par \hich\af72\dbch\af31505\loch\f72 Corresponding Source of the work from the predecessor in interest, if +\par \hich\af72\dbch\af31505\loch\f72 the predecessor has it or can get it with reasonable efforts. +\par +\par \hich\af72\dbch\af31505\loch\f72 You may not impose any further restrictions on the exercise of the +\par \hich\af72\dbch\af31505\loch\f72 rights granted or affirmed under this License. For example, you may +\par \hich\af72\dbch\af31505\loch\f72 not impose a license fee, royalty, or other charge for exercise of +\par \hich\af72\dbch\af31505\loch\f72 rights granted under this License, and you may not initiate litigation +\par \hich\af72\dbch\af31505\loch\f72 (including a cross-claim or counterclaim in a lawsuit) alleging that +\par \hich\af72\dbch\af31505\loch\f72 any patent claim is infringed by making, using, selling, offering for +\par \hich\af72\dbch\af31505\loch\f72 sale, or importing the Program or any portion of it. +\par +\par \hich\af72\dbch\af31505\loch\f72 11. Patents. +\par +\par \hich\af72\dbch\af31505\loch\f72 A "contributor" is a copyright holder who authorizes use under this +\par \hich\af72\dbch\af31505\loch\f72 License of the Program or \hich\af72\dbch\af31505\loch\f72 a work on which the Program is based. The +\par \hich\af72\dbch\af31505\loch\f72 work thus licensed is called the contributor's "contributor version". +\par +\par \hich\af72\dbch\af31505\loch\f72 A contributor's "essential patent claims" are all patent claims +\par \hich\af72\dbch\af31505\loch\f72 owned or controlled by the contributor, whether already acquired or +\par \hich\af72\dbch\af31505\loch\f72 hereafter acquired, that would be infringed by some manner, permitted +\par \hich\af72\dbch\af31505\loch\f72 by this License, of making, using, or selling its contributor version, +\par \hich\af72\dbch\af31505\loch\f72 but do not include claims that would be infringed only as a +\par \hich\af72\dbch\af31505\loch\f72 consequence of further modification of the contributor version.\hich\af72\dbch\af31505\loch\f72 For +\par \hich\af72\dbch\af31505\loch\f72 purposes of this definition, "control" includes the right to grant +\par \hich\af72\dbch\af31505\loch\f72 patent sublicenses in a manner consistent with the requirements of +\par \hich\af72\dbch\af31505\loch\f72 this License. +\par +\par \hich\af72\dbch\af31505\loch\f72 Each contributor grants you a non-exclusive, worldwide, royalty-free +\par \hich\af72\dbch\af31505\loch\f72 patent license under the contributor's essential patent claims, to +\par \hich\af72\dbch\af31505\loch\f72 make, use, sell, offer for sale, import and otherwise run, modify and +\par \hich\af72\dbch\af31505\loch\f72 propagate the contents of its contributor version. +\par +\par \hich\af72\dbch\af31505\loch\f72 In the following three paragraphs, a "patent license" is any express +\par \hich\af72\dbch\af31505\loch\f72 agreement or commitment, however denominated, not to enforce a patent +\par \hich\af72\dbch\af31505\loch\f72 (such as an express permission to practice a patent or covenant not to +\par \hich\af72\dbch\af31505\loch\f72 sue for patent infringement). To "grant" such a patent license to a +\par \hich\af72\dbch\af31505\loch\f72 party means to make such an agreement or commitment not to enforce a +\par \hich\af72\dbch\af31505\loch\f72 patent against the party. +\par +\par \hich\af72\dbch\af31505\loch\f72 If you convey a covered work, knowingly relying on a patent license, +\par \hich\af72\dbch\af31505\loch\f72 and the Corresponding Source of the work is not available for anyone +\par \hich\af72\dbch\af31505\loch\f72 to copy, free of charge and under the terms of this License, throu\hich\af72\dbch\af31505\loch\f72 gh a +\par \hich\af72\dbch\af31505\loch\f72 publicly available network server or other readily accessible means, +\par \hich\af72\dbch\af31505\loch\f72 then you must either (1) cause the Corresponding Source to be so +\par \hich\af72\dbch\af31505\loch\f72 available, or (2) arrange to deprive yourself of the benefit of the +\par \hich\af72\dbch\af31505\loch\f72 patent license for this particular work, or (3) arrange, in a manner +\par \hich\af72\dbch\af31505\loch\f72 consistent with the requirements of this License, to extend the patent +\par \hich\af72\dbch\af31505\loch\f72 license to downstream recipients. "Knowingly relying" means you have +\par \hich\af72\dbch\af31505\loch\f72 actual knowledge that, but for the patent license, your conveying the +\par \hich\af72\dbch\af31505\loch\f72 covered work in a country\hich\af72\dbch\af31505\loch\f72 , or your recipient's use of the covered work +\par \hich\af72\dbch\af31505\loch\f72 in a country, would infringe one or more identifiable patents in that +\par \hich\af72\dbch\af31505\loch\f72 country that you have reason to believe are valid. +\par +\par \hich\af72\dbch\af31505\loch\f72 If, pursuant to or in connection with a single transaction or +\par \hich\af72\dbch\af31505\loch\f72 arrangement, you convey, or propagate by procuring conveyance of, a +\par \hich\af72\dbch\af31505\loch\f72 covered work, and grant a patent license to some of the parties +\par \hich\af72\dbch\af31505\loch\f72 receiving the covered work authorizing them to use, propagate, modify +\par \hich\af72\dbch\af31505\loch\f72 or convey a specific copy of the covered work, then the patent license +\par \hich\af72\dbch\af31505\loch\f72 you gra\hich\af72\dbch\af31505\loch\f72 nt is automatically extended to all recipients of the covered +\par \hich\af72\dbch\af31505\loch\f72 work and works based on it. +\par +\par \hich\af72\dbch\af31505\loch\f72 A patent license is "discriminatory" if it does not include within +\par \hich\af72\dbch\af31505\loch\f72 the scope of its coverage, prohibits the exercise of, or is +\par \hich\af72\dbch\af31505\loch\f72 conditioned on the non-exercise of one or more of the rights that are +\par \hich\af72\dbch\af31505\loch\f72 specifically granted under this License. You may not convey a covered +\par \hich\af72\dbch\af31505\loch\f72 work if you are a party to an arrangement with a third party that is +\par \hich\af72\dbch\af31505\loch\f72 in the business of distributing software, under which you make payment +\par \hich\af72\dbch\af31505\loch\f72 to the third party based on the extent of your activity of conveying +\par \hich\af72\dbch\af31505\loch\f72 the work, and under which the third party grants, to any of the +\par \hich\af72\dbch\af31505\loch\f72 parties who would receive the covered \hich\af72\dbch\af31505\loch\f72 work from you, a discriminatory +\par \hich\af72\dbch\af31505\loch\f72 patent license (a) in connection with copies of the covered work +\par \hich\af72\dbch\af31505\loch\f72 conveyed by you (or copies made from those copies), or (b) primarily +\par \hich\af72\dbch\af31505\loch\f72 for and in connection with specific products or compilations that +\par \hich\af72\dbch\af31505\loch\f72 contain the covered work, unless you entered into that arrangement, +\par \hich\af72\dbch\af31505\loch\f72 or that patent license was granted, prior to 28 March 2007. +\par +\par \hich\af72\dbch\af31505\loch\f72 Nothing in this License shall be construed as excluding or limiting +\par \hich\af72\dbch\af31505\loch\f72 any implied license or other defenses to infringement that may +\par \hich\af72\dbch\af31505\loch\f72 otherwise be avail\hich\af72\dbch\af31505\loch\f72 able to you under applicable patent law. +\par +\par \hich\af72\dbch\af31505\loch\f72 12. No Surrender of Others' Freedom. +\par +\par \hich\af72\dbch\af31505\loch\f72 If conditions are imposed on you (whether by court order, agreement or +\par \hich\af72\dbch\af31505\loch\f72 otherwise) that contradict the conditions of this License, they do not +\par \hich\af72\dbch\af31505\loch\f72 excuse you from the conditions of this License. If you cannot convey a +\par \hich\af72\dbch\af31505\loch\f72 covered work so as to satisfy simultaneously your obligations under this +\par \hich\af72\dbch\af31505\loch\f72 License and any other pertinent obligations, then as a consequence you may +\par \hich\af72\dbch\af31505\loch\f72 not convey it at all. For example, if you agree to terms that obl\hich\af72\dbch\af31505\loch\f72 igate you +\par \hich\af72\dbch\af31505\loch\f72 to collect a royalty for further conveying from those to whom you convey +\par \hich\af72\dbch\af31505\loch\f72 the Program, the only way you could satisfy both those terms and this +\par \hich\af72\dbch\af31505\loch\f72 License would be to refrain entirely from conveying the Program. +\par +\par \hich\af72\dbch\af31505\loch\f72 13. Use with the GNU Affero General Public License. +\par +\par \hich\af72\dbch\af31505\loch\f72 Notwithstanding any other provision of this License, you have +\par \hich\af72\dbch\af31505\loch\f72 permission to link or combine any covered work with a work licensed +\par \hich\af72\dbch\af31505\loch\f72 under version 3 of the GNU Affero General Public License into a single +\par \hich\af72\dbch\af31505\loch\f72 combined work, and to convey the resulting work. The terms of this +\par \hich\af72\dbch\af31505\loch\f72 License will continue to apply to the part which is the covered work, +\par \hich\af72\dbch\af31505\loch\f72 but the special requirements of the GNU Affero General Public License, +\par \hich\af72\dbch\af31505\loch\f72 section 13, concerning interaction through a \hich\af72\dbch\af31505\loch\f72 network will apply to the +\par \hich\af72\dbch\af31505\loch\f72 combination as such. +\par +\par \hich\af72\dbch\af31505\loch\f72 14. Revised Versions of this License. +\par +\par \hich\af72\dbch\af31505\loch\f72 The Free Software Foundation may publish revised and/or new versions of +\par \hich\af72\dbch\af31505\loch\f72 the GNU General Public License from time to time. Such new versions will +\par \hich\af72\dbch\af31505\loch\f72 be similar in spirit to the present version, but may differ in detail to +\par \hich\af72\dbch\af31505\loch\f72 address new problems or concerns. +\par +\par \hich\af72\dbch\af31505\loch\f72 Each version is given a distinguishing version number. If the +\par \hich\af72\dbch\af31505\loch\f72 Program specifies that a certain numbered version of the GNU General +\par \hich\af72\dbch\af31505\loch\f72 Public License "or any later vers\hich\af72\dbch\af31505\loch\f72 ion" applies to it, you have the +\par \hich\af72\dbch\af31505\loch\f72 option of following the terms and conditions either of that numbered +\par \hich\af72\dbch\af31505\loch\f72 version or of any later version published by the Free Software +\par \hich\af72\dbch\af31505\loch\f72 Foundation. If the Program does not specify a version number of the +\par \hich\af72\dbch\af31505\loch\f72 GNU General Public License, you may choose any version ever published +\par \hich\af72\dbch\af31505\loch\f72 by the Free Software Foundation. +\par +\par \hich\af72\dbch\af31505\loch\f72 If the Program specifies that a proxy can decide which future +\par \hich\af72\dbch\af31505\loch\f72 versions of the GNU General Public License can be used, that proxy's +\par \hich\af72\dbch\af31505\loch\f72 public statement of acceptance of a version permanently authorizes you +\par \hich\af72\dbch\af31505\loch\f72 to choose that version for the Program. +\par +\par \hich\af72\dbch\af31505\loch\f72 Later license versions may give you additional or different +\par \hich\af72\dbch\af31505\loch\f72 permissions. However, no additional obligations are imposed on any +\par \hich\af72\dbch\af31505\loch\f72 author or copyright holder as a result of your choosing to follow a +\par \hich\af72\dbch\af31505\loch\f72 later version. +\par +\par \hich\af72\dbch\af31505\loch\f72 15. Disclaimer of Warranty. +\par +\par \hich\af72\dbch\af31505\loch\f72 THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +\par \hich\af72\dbch\af31505\loch\f72 APPLICABLE LAW. EX\hich\af72\dbch\af31505\loch\f72 CEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +\par \hich\af72\dbch\af31505\loch\f72 HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +\par \hich\af72\dbch\af31505\loch\f72 OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +\par \hich\af72\dbch\af31505\loch\f72 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +\par \hich\af72\dbch\af31505\loch\f72 PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +\par \hich\af72\dbch\af31505\loch\f72 IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +\par \hich\af72\dbch\af31505\loch\f72 ALL NECESSARY SERVICING, REPAIR OR CORRECTION. +\par +\par \hich\af72\dbch\af31505\loch\f72 16. Limitation of Liability. +\par +\par \hich\af72\dbch\af31505\loch\f72 IN NO EVENT \hich\af72\dbch\af31505\loch\f72 UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +\par \hich\af72\dbch\af31505\loch\f72 WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +\par \hich\af72\dbch\af31505\loch\f72 THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +\par \hich\af72\dbch\af31505\loch\f72 GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +\par \hich\af72\dbch\af31505\loch\f72 USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +\par \hich\af72\dbch\af31505\loch\f72 DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +\par \hich\af72\dbch\af31505\loch\f72 PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +\par \hich\af72\dbch\af31505\loch\f72 EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +\par \hich\af72\dbch\af31505\loch\f72 SUCH DAMAGES. +\par +\par \hich\af72\dbch\af31505\loch\f72 17. Interpretation of Sections 15 and 16. +\par +\par \hich\af72\dbch\af31505\loch\f72 If the disclaimer of warranty and limitation of liability provided +\par \hich\af72\dbch\af31505\loch\f72 above cannot be given local legal effect according to their terms, +\par \hich\af72\dbch\af31505\loch\f72 reviewing courts shall apply local law that most closely approximates +\par \hich\af72\dbch\af31505\loch\f72 an absolute waiver of all civil liability in connection with the +\par \hich\af72\dbch\af31505\loch\f72 Program, unless a warranty or assumption of liability accompanies a +\par \hich\af72\dbch\af31505\loch\f72 copy of the Program in return for a fee. +\par +\par \hich\af72\dbch\af31505\loch\f72 END OF TERMS AND CONDITIONS +\par +\par \hich\af72\dbch\af31505\loch\f72 How to Apply These Terms to Your New Programs +\par +\par \hich\af72\dbch\af31505\loch\f72 If you develop a new program, and you want it to be of the greatest +\par \hich\af72\dbch\af31505\loch\f72 possible use to the public, the best way to achieve this is to make it +\par \hich\af72\dbch\af31505\loch\f72 free software which everyone can redistribute and change under these terms. +\par +\par \hich\af72\dbch\af31505\loch\f72 To do so, attach the following notices to the program. It is safest +\par \hich\af72\dbch\af31505\loch\f72 to attach them to the start of each source file to most effectively +\par \hich\af72\dbch\af31505\loch\f72 state the exclusion of warranty; and each f\hich\af72\dbch\af31505\loch\f72 ile should have at least +\par \hich\af72\dbch\af31505\loch\f72 the "copyright" line and a pointer to where the full notice is found. +\par +\par \hich\af72\dbch\af31505\loch\f72 +\par \hich\af72\dbch\af31505\loch\f72 Copyright (C) +\par +\par \hich\af72\dbch\af31505\loch\f72 This program is free software: you can redistribute it and/or modify +\par \hich\af72\dbch\af31505\loch\f72 it under the terms of the GNU General Public License as published by +\par \hich\af72\dbch\af31505\loch\f72 the Free Software Foundation, either version 3 of the License, or +\par \hich\af72\dbch\af31505\loch\f72 (at your option) any later version. +\par +\par \hich\af72\dbch\af31505\loch\f72 This program is distributed in the hope that it will be useful, +\par \hich\af72\dbch\af31505\loch\f72 but WITHOUT ANY WARRANTY; without even the implied warranty of +\par \hich\af72\dbch\af31505\loch\f72 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +\par \hich\af72\dbch\af31505\loch\f72 GNU General Public License for more details. +\par +\par \hich\af72\dbch\af31505\loch\f72 You should have received a copy of the GNU General Public License +\par \hich\af72\dbch\af31505\loch\f72 along with this program. If not, see . +\par +\par \hich\af72\dbch\af31505\loch\f72 Also add information on how to contact you by electronic and paper mail. +\par +\par \hich\af72\dbch\af31505\loch\f72 If the program does terminal interactio\hich\af72\dbch\af31505\loch\f72 n, make it output a short +\par \hich\af72\dbch\af31505\loch\f72 notice like this when it starts in an interactive mode: +\par +\par \hich\af72\dbch\af31505\loch\f72 Copyright (C) +\par \hich\af72\dbch\af31505\loch\f72 This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. +\par \hich\af72\dbch\af31505\loch\f72 This is free software, and you are welcome to redistribute it +\par \hich\af72\dbch\af31505\loch\f72 under certain conditions; type `show c' for details. +\par +\par \hich\af72\dbch\af31505\loch\f72 The hypothetical commands `show w' and `show c' should show the appropriate +\par \hich\af72\dbch\af31505\loch\f72 parts of the General Public License. Of course, your program's commands +\par \hich\af72\dbch\af31505\loch\f72 might be different; for\hich\af72\dbch\af31505\loch\f72 a GUI interface, you would use an "about box". +\par +\par \hich\af72\dbch\af31505\loch\f72 You should also get your employer (if you work as a programmer) or school, +\par \hich\af72\dbch\af31505\loch\f72 if any, to sign a "copyright disclaimer" for the program, if necessary. +\par \hich\af72\dbch\af31505\loch\f72 For more information on this, and how to apply and follow the GNU GPL, see +\par \hich\af72\dbch\af31505\loch\f72 . +\par +\par \hich\af72\dbch\af31505\loch\f72 The GNU General Public License does not permit incorporating your program +\par \hich\af72\dbch\af31505\loch\f72 into proprietary programs. If your program is a subroutine library, you +\par \hich\af72\dbch\af31505\loch\f72 may consider it more useful to permit linking proprietary applications with +\par \hich\af72\dbch\af31505\loch\f72 the library. If this is what you want to do, use the GNU Lesser General +\par \hich\af72\dbch\af31505\loch\f72 Public License instead of this License. But first, please read +\par \hich\af72\dbch\af31505\loch\f72 .}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \f72\fs22\insrsid8215624 +\par }\pard \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid12657365 \page }{\rtlch\fcs1 \af31503\afs32 \ltrch\fcs0 \fs32\dbch\af31501\insrsid12657365 + +\par }\pard\plain \ltrpar\s1\ql \li0\ri0\sb240\sl480\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid12657365 \rtlch\fcs1 \af31503\afs32\alang1025 \ltrch\fcs0 +\fs32\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af31503 \ltrch\fcs0 \insrsid12657365 \hich\af1\dbch\af31501\loch\f1 Documentation}{\rtlch\fcs1 \af31503 \ltrch\fcs0 \insrsid12657365\charrsid12657365 +\hich\af1\dbch\af31501\loch\f1 License (}{\rtlch\fcs1 \af31503 \ltrch\fcs0 \insrsid12657365 \hich\af1\dbch\af31501\loch\f1 Reference Manual}{\rtlch\fcs1 \af31503 \ltrch\fcs0 \insrsid12657365\charrsid12657365 \hich\af1\dbch\af31501\loch\f1 ) +\par }\pard\plain \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12657365 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 +\fs24\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \f72\fs22\insrsid12657365\charrsid12657365 \hich\af72\dbch\af31505\loch\f72 Attribution-ShareAlike 4.0 International +\par +\par \hich\af72\dbch\af31505\loch\f72 ======================================================================= +\par +\par \hich\af72\dbch\af31505\loch\f72 Creative Commons Corporation ("Creative Commons") is not a law firm and +\par \hich\af72\dbch\af31505\loch\f72 does not provide legal services or legal advice. Distribution of +\par \hich\af72\dbch\af31505\loch\f72 Creative Commons public licenses does not create a lawyer-client or +\par \hich\af72\dbch\af31505\loch\f72 other relationship. Creative Commons makes its licenses and related +\par \hich\af72\dbch\af31505\loch\f72 information available on an "as-is" basis. Creative Commons gives no +\par \hich\af72\dbch\af31505\loch\f72 warranties regarding its licenses, any material license\hich\af72\dbch\af31505\loch\f72 d under their +\par \hich\af72\dbch\af31505\loch\f72 terms and conditions, or any related information. Creative Commons +\par \hich\af72\dbch\af31505\loch\f72 disclaims all liability for damages resulting from their use to the +\par \hich\af72\dbch\af31505\loch\f72 fullest extent possible. +\par +\par \hich\af72\dbch\af31505\loch\f72 Using Creative Commons Public Licenses +\par +\par \hich\af72\dbch\af31505\loch\f72 Creative Commons public licenses provide a standard set of terms and +\par \hich\af72\dbch\af31505\loch\f72 conditions that creators and other rights holders may use to share +\par \hich\af72\dbch\af31505\loch\f72 original works of authorship and other material subject to copyright +\par \hich\af72\dbch\af31505\loch\f72 and certain other rights specified in the public license below. The +\par \hich\af72\dbch\af31505\loch\f72 following considerations are for informational purposes only, are not +\par \hich\af72\dbch\af31505\loch\f72 exhaustive, and do not form part of our licenses. +\par +\par \hich\af72\dbch\af31505\loch\f72 Considerations for licensors: Our public licenses are +\par \hich\af72\dbch\af31505\loch\f72 intended for use by those authorized to give the public +\par \hich\af72\dbch\af31505\loch\f72 permission to use material in ways otherwise restricted by +\par \hich\af72\dbch\af31505\loch\f72 copyright and certain other rights. Our licenses are +\par \hich\af72\dbch\af31505\loch\f72 irrevoc\hich\af72\dbch\af31505\loch\f72 able. Licensors should read and understand the terms +\par \hich\af72\dbch\af31505\loch\f72 and conditions of the license they choose before applying it. +\par \hich\af72\dbch\af31505\loch\f72 Licensors should also secure all rights necessary before +\par \hich\af72\dbch\af31505\loch\f72 applying our licenses so that the public can reuse the +\par \hich\af72\dbch\af31505\loch\f72 material as expected. Licensors should clearly mark any +\par \hich\af72\dbch\af31505\loch\f72 material not subject to the license. This includes other CC- +\par \hich\af72\dbch\af31505\loch\f72 licensed material, or material used under an exception or +\par \hich\af72\dbch\af31505\loch\f72 limitation to copyright. More considerations for licensors: +\par \hich\af72\dbch\af31505\loch\f72 wiki.creati\hich\af72\dbch\af31505\loch\f72 vecommons.org/Considerations_for_licensors +\par +\par \hich\af72\dbch\af31505\loch\f72 Considerations for the public: By using one of our public +\par \hich\af72\dbch\af31505\loch\f72 licenses, a licensor grants the public permission to use the +\par \hich\af72\dbch\af31505\loch\f72 licensed material under specified terms and conditions. If +\par \hich\af72\dbch\af31505\loch\f72 the licensor's permission is not necessary for any reason--for +\par \hich\af72\dbch\af31505\loch\f72 example, because of any applicable exception or limitation to +\par \hich\af72\dbch\af31505\loch\f72 copyright--then that use is not regulated by the license. Our +\par \hich\af72\dbch\af31505\loch\f72 licenses grant only permissions under copyright and certain +\par \hich\af72\dbch\af31505\loch\f72 oth\hich\af72\dbch\af31505\loch\f72 er rights that a licensor has authority to grant. Use of +\par \hich\af72\dbch\af31505\loch\f72 the licensed material may still be restricted for other +\par \hich\af72\dbch\af31505\loch\f72 reasons, including because others have copyright or other +\par \hich\af72\dbch\af31505\loch\f72 rights in the material. A licensor may make special requests, +\par \hich\af72\dbch\af31505\loch\f72 such as asking that all changes be marked or described. +\par \hich\af72\dbch\af31505\loch\f72 Although not required by our licenses, you are encouraged to +\par \hich\af72\dbch\af31505\loch\f72 respect those requests where reasonable. More considerations +\par \hich\af72\dbch\af31505\loch\f72 for the public: +\par \hich\af72\dbch\af31505\loch\f72 wiki.creativecommons.org/Considerations_for_licensees +\par +\par \hich\af72\dbch\af31505\loch\f72 ======================================================================= +\par +\par \hich\af72\dbch\af31505\loch\f72 Creative Commons Attribution-ShareAlike 4.0 International Public +\par \hich\af72\dbch\af31505\loch\f72 License +\par +\par \hich\af72\dbch\af31505\loch\f72 By exercising the License\hich\af72\dbch\af31505\loch\f72 d Rights (defined below), You accept and agree +\par \hich\af72\dbch\af31505\loch\f72 to be bound by the terms and conditions of this Creative Commons +\par \hich\af72\dbch\af31505\loch\f72 Attribution-ShareAlike 4.0 International Public License ("Public +\par \hich\af72\dbch\af31505\loch\f72 License"). To the extent this Public License may be interpreted as a +\par \hich\af72\dbch\af31505\loch\f72 contract, You are granted the Licensed Rights in consideration of Your +\par \hich\af72\dbch\af31505\loch\f72 acceptance of these terms and conditions, and the Licensor grants You +\par \hich\af72\dbch\af31505\loch\f72 such rights in consideration of benefits the Licensor receives from +\par \hich\af72\dbch\af31505\loch\f72 making the Licensed Material available under these terms \hich\af72\dbch\af31505\loch\f72 and +\par \hich\af72\dbch\af31505\loch\f72 conditions. +\par +\par +\par \hich\af72\dbch\af31505\loch\f72 Section 1 -- Definitions. +\par +\par \hich\af72\dbch\af31505\loch\f72 a. Adapted Material means material subject to Copyright and Similar +\par \hich\af72\dbch\af31505\loch\f72 Rights that is derived from or based upon the Licensed Material +\par \hich\af72\dbch\af31505\loch\f72 and in which the Licensed Material is translated, altered, +\par \hich\af72\dbch\af31505\loch\f72 arranged, transformed, or otherwise modified in a manner requiring +\par \hich\af72\dbch\af31505\loch\f72 permission under the Copyright and Similar Rights held by the +\par \hich\af72\dbch\af31505\loch\f72 Licensor. For purposes of this Public License, where the Licensed +\par \hich\af72\dbch\af31505\loch\f72 Material is a musical work, performance, or sound recording, +\par \hich\af72\dbch\af31505\loch\f72 Adapted Material is always produced where the Licensed Material is +\par \hich\af72\dbch\af31505\loch\f72 synched in timed relation with a moving image. +\par +\par \hich\af72\dbch\af31505\loch\f72 b. Adapter's License means the license You ap\hich\af72\dbch\af31505\loch\f72 ply to Your Copyright +\par \hich\af72\dbch\af31505\loch\f72 and Similar Rights in Your contributions to Adapted Material in +\par \hich\af72\dbch\af31505\loch\f72 accordance with the terms and conditions of this Public License. +\par +\par \hich\af72\dbch\af31505\loch\f72 c. BY-SA Compatible License means a license listed at +\par \hich\af72\dbch\af31505\loch\f72 creativecommons.org/compatiblelicenses, approved by Creative +\par \hich\af72\dbch\af31505\loch\f72 Commons as essentially the equivalent of this Public License. +\par +\par \hich\af72\dbch\af31505\loch\f72 d. Copyright and Similar Rights means copyright and/or similar rights +\par \hich\af72\dbch\af31505\loch\f72 closely related to copyright including, without limitation, +\par \hich\af72\dbch\af31505\loch\f72 performance, broad\hich\af72\dbch\af31505\loch\f72 cast, sound recording, and Sui Generis Database +\par \hich\af72\dbch\af31505\loch\f72 Rights, without regard to how the rights are labeled or +\par \hich\af72\dbch\af31505\loch\f72 categorized. For purposes of this Public License, the rights +\par \hich\af72\dbch\af31505\loch\f72 specified in Section 2(b)(1)-(2) are not Copyright and Similar +\par \hich\af72\dbch\af31505\loch\f72 Rights. +\par +\par \hich\af72\dbch\af31505\loch\f72 e. Effective Technological Measures means those measures that, in the +\par \hich\af72\dbch\af31505\loch\f72 absence of proper authority, may not be circumvented under laws +\par \hich\af72\dbch\af31505\loch\f72 fulfilling obligations under Article 11 of the WIPO Copyright +\par \hich\af72\dbch\af31505\loch\f72 Treaty adopted on December 20, 1996, and/o\hich\af72\dbch\af31505\loch\f72 r similar international +\par \hich\af72\dbch\af31505\loch\f72 agreements. +\par +\par \hich\af72\dbch\af31505\loch\f72 f. Exceptions and Limitations means fair use, fair dealing, and/or +\par \hich\af72\dbch\af31505\loch\f72 any other exception or limitation to Copyright and Similar Rights +\par \hich\af72\dbch\af31505\loch\f72 that applies to Your use of the Licensed Material. +\par +\par \hich\af72\dbch\af31505\loch\f72 g. License Elements means the license attributes listed in the name +\par \hich\af72\dbch\af31505\loch\f72 of a Creative Commons Public License. The License Elements of this +\par \hich\af72\dbch\af31505\loch\f72 Public License are Attribution and ShareAlike. +\par +\par \hich\af72\dbch\af31505\loch\f72 h. Licensed Material means the artistic or literary work, database, +\par \hich\af72\dbch\af31505\loch\f72 or other material to which the Licensor applied this Public +\par \hich\af72\dbch\af31505\loch\f72 License. +\par +\par \hich\af72\dbch\af31505\loch\f72 i. Licensed Rights means the rights granted to You subject to the +\par \hich\af72\dbch\af31505\loch\f72 terms and conditions of this Public L\hich\af72\dbch\af31505\loch\f72 icense, which are limited to +\par \hich\af72\dbch\af31505\loch\f72 all Copyright and Similar Rights that apply to Your use of the +\par \hich\af72\dbch\af31505\loch\f72 Licensed Material and that the Licensor has authority to license. +\par +\par \hich\af72\dbch\af31505\loch\f72 j. Licensor means the individual(s) or entity(ies) granting rights +\par \hich\af72\dbch\af31505\loch\f72 under this Public License. +\par +\par \hich\af72\dbch\af31505\loch\f72 k. Share means to provide material to the public by any means or +\par \hich\af72\dbch\af31505\loch\f72 process that requires permission under the Licensed Rights, such +\par \hich\af72\dbch\af31505\loch\f72 as reproduction, public display, public performance, distribution, +\par \hich\af72\dbch\af31505\loch\f72 dissemination, communicatio\hich\af72\dbch\af31505\loch\f72 n, or importation, and to make material +\par \hich\af72\dbch\af31505\loch\f72 available to the public including in ways that members of the +\par \hich\af72\dbch\af31505\loch\f72 public may access the material from a place and at a time +\par \hich\af72\dbch\af31505\loch\f72 individually chosen by them. +\par +\par \hich\af72\dbch\af31505\loch\f72 l. Sui Generis Database Rights means rights other than copyright +\par \hich\af72\dbch\af31505\loch\f72 resulting from Directive 96/9/EC of the European Parliament and of +\par \hich\af72\dbch\af31505\loch\f72 the Council of 11 March 1996 on the legal protection of databases, +\par \hich\af72\dbch\af31505\loch\f72 as amended and/or succeeded, as well as other essentially +\par \hich\af72\dbch\af31505\loch\f72 equivalent rights anywhere in the world. +\par +\par \hich\af72\dbch\af31505\loch\f72 m. You means the individual or entity exercising the Licensed Rights +\par \hich\af72\dbch\af31505\loch\f72 under this Public License. Your has a corresponding meaning. +\par +\par +\par \hich\af72\dbch\af31505\loch\f72 Section 2 -- Scope. +\par +\par \hich\af72\dbch\af31505\loch\f72 a. License grant. +\par +\par \hich\af72\dbch\af31505\loch\f72 1. \hich\af72\dbch\af31505\loch\f72 Subject to the terms and conditions of this Public License, +\par \hich\af72\dbch\af31505\loch\f72 the Licensor hereby grants You a worldwide, royalty-free, +\par \hich\af72\dbch\af31505\loch\f72 non-sublicensable, non-exclusive, irrevocable license to +\par \hich\af72\dbch\af31505\loch\f72 exercise the Licensed Rights in the Licensed Material to: +\par +\par \hich\af72\dbch\af31505\loch\f72 a. reproduce and Share the Licensed Material, in whole or +\par \hich\af72\dbch\af31505\loch\f72 in part; and +\par +\par \hich\af72\dbch\af31505\loch\f72 b. produce, reproduce, and Share Adapted Material. +\par +\par \hich\af72\dbch\af31505\loch\f72 2. Exceptions and Limitations. For the avoidance of doubt, where +\par \hich\af72\dbch\af31505\loch\f72 Exc\hich\af72\dbch\af31505\loch\f72 eptions and Limitations apply to Your use, this Public +\par \hich\af72\dbch\af31505\loch\f72 License does not apply, and You do not need to comply with +\par \hich\af72\dbch\af31505\loch\f72 its terms and conditions. +\par +\par \hich\af72\dbch\af31505\loch\f72 3. Term. The term of this Public License is specified in Section +\par \hich\af72\dbch\af31505\loch\f72 6(a). +\par +\par \hich\af72\dbch\af31505\loch\f72 4. Media and formats; technical modifications allowed. The +\par \hich\af72\dbch\af31505\loch\f72 Licensor authorizes You to exercise the Licensed Rights in +\par \hich\af72\dbch\af31505\loch\f72 all media and formats whether now known or hereafter created, +\par \hich\af72\dbch\af31505\loch\f72 and to make technical modifications necessary to do so. The +\par \hich\af72\dbch\af31505\loch\f72 Licensor waives and/or agrees not to assert any right or +\par \hich\af72\dbch\af31505\loch\f72 authority to forbid You from making technical modifications +\par \hich\af72\dbch\af31505\loch\f72 \hich\af72\dbch\af31505\loch\f72 necessary to exercise the Licensed Rights, including +\par \hich\af72\dbch\af31505\loch\f72 technical modifications necessary to circumvent Effective +\par \hich\af72\dbch\af31505\loch\f72 Technological Measures. For purposes of this Public License, +\par \hich\af72\dbch\af31505\loch\f72 simply making modifications authorized by this Section 2(a) +\par \hich\af72\dbch\af31505\loch\f72 (4) never produces Adapted Material. +\par +\par \hich\af72\dbch\af31505\loch\f72 5. Downstream recipients. +\par +\par \hich\af72\dbch\af31505\loch\f72 a. Offer from the Licensor -- Licensed Material. Every +\par \hich\af72\dbch\af31505\loch\f72 recipient of the Licensed Material automatically +\par \hich\af72\dbch\af31505\loch\f72 receives an offer fro\hich\af72\dbch\af31505\loch\f72 m the Licensor to exercise the +\par \hich\af72\dbch\af31505\loch\f72 Licensed Rights under the terms and conditions of this +\par \hich\af72\dbch\af31505\loch\f72 Public License. +\par +\par \hich\af72\dbch\af31505\loch\f72 b. Additional offer from the Licensor -- Adapted Material. +\par \hich\af72\dbch\af31505\loch\f72 Every recipient of Adapted Material from You +\par \hich\af72\dbch\af31505\loch\f72 automatically receives an offer from the Licensor to +\par \hich\af72\dbch\af31505\loch\f72 exercise the Licensed Rights in the Adapted Material +\par \hich\af72\dbch\af31505\loch\f72 under the conditions of the Adapter's License You apply. +\par +\par \hich\af72\dbch\af31505\loch\f72 c. No downstream restrictions. You may not offer or impose +\par \hich\af72\dbch\af31505\loch\f72 any additional or different terms or conditions on, or +\par \hich\af72\dbch\af31505\loch\f72 apply any Effective Technological Measures to, the +\par \hich\af72\dbch\af31505\loch\f72 Licensed Material if doing so restricts exercise of the +\par \hich\af72\dbch\af31505\loch\f72 Licensed Rights by any recipient of the Licensed +\par \hich\af72\dbch\af31505\loch\f72 Material. +\par +\par \hich\af72\dbch\af31505\loch\f72 6. No endorsement. Nothing in this Public License constitutes or +\par \hich\af72\dbch\af31505\loch\f72 may be construed as permission to assert or imply that You +\par \hich\af72\dbch\af31505\loch\f72 \hich\af72\dbch\af31505\loch\f72 are, or that Your use of the Licensed Material is, connected +\par \hich\af72\dbch\af31505\loch\f72 with, or sponsored, endorsed, or granted official status by, +\par \hich\af72\dbch\af31505\loch\f72 the Licensor or others designated to receive attribution as +\par \hich\af72\dbch\af31505\loch\f72 provided in Section 3(a)(1)(A)(i). +\par +\par \hich\af72\dbch\af31505\loch\f72 b. Other rights. +\par +\par \hich\af72\dbch\af31505\loch\f72 1. Moral rights, such as the right of integrity, are not +\par \hich\af72\dbch\af31505\loch\f72 licensed under this Public License, nor are publicity, +\par \hich\af72\dbch\af31505\loch\f72 privacy, and/or other similar personality rights; however, to +\par \hich\af72\dbch\af31505\loch\f72 the extent possible, the L\hich\af72\dbch\af31505\loch\f72 icensor waives and/or agrees not to +\par \hich\af72\dbch\af31505\loch\f72 assert any such rights held by the Licensor to the limited +\par \hich\af72\dbch\af31505\loch\f72 extent necessary to allow You to exercise the Licensed +\par \hich\af72\dbch\af31505\loch\f72 Rights, but not otherwise. +\par +\par \hich\af72\dbch\af31505\loch\f72 2. Patent and trademark rights are not licensed under this +\par \hich\af72\dbch\af31505\loch\f72 Public License. +\par +\par \hich\af72\dbch\af31505\loch\f72 3. To the extent possible, the Licensor waives any right to +\par \hich\af72\dbch\af31505\loch\f72 collect royalties from You for the exercise of the Licensed +\par \hich\af72\dbch\af31505\loch\f72 Rights, whether directly or through a collecting society +\par \hich\af72\dbch\af31505\loch\f72 under any voluntary or waivable statutory or compulsory +\par \hich\af72\dbch\af31505\loch\f72 licensing scheme. In all other cases the Licensor expressly +\par \hich\af72\dbch\af31505\loch\f72 reserves any right to collect such royalties. +\par +\par +\par \hich\af72\dbch\af31505\loch\f72 Section 3 -- License Conditions. +\par +\par \hich\af72\dbch\af31505\loch\f72 Your exercise of the Licensed Rights is expressly made subject to the +\par \hich\af72\dbch\af31505\loch\f72 following conditions. +\par +\par \hich\af72\dbch\af31505\loch\f72 a. Attribution. +\par +\par \hich\af72\dbch\af31505\loch\f72 1. If You Share the Licensed Material (including in modified +\par \hich\af72\dbch\af31505\loch\f72 form), You must: +\par +\par \hich\af72\dbch\af31505\loch\f72 \hich\af72\dbch\af31505\loch\f72 a. retain the following if it is supplied by the Licensor +\par \hich\af72\dbch\af31505\loch\f72 with the Licensed Material: +\par +\par \hich\af72\dbch\af31505\loch\f72 i. identification of the creator(s) of the Licensed +\par \hich\af72\dbch\af31505\loch\f72 Material and any others designated to receive +\par \hich\af72\dbch\af31505\loch\f72 attribution, in any reasonable manner requested by +\par \hich\af72\dbch\af31505\loch\f72 the Licensor (including by pseudonym if +\par \hich\af72\dbch\af31505\loch\f72 designated); +\par +\par \hich\af72\dbch\af31505\loch\f72 ii. a copyright notice; +\par +\par \hich\af72\dbch\af31505\loch\f72 iii. a notice that refers to this Public License; +\par +\par \hich\af72\dbch\af31505\loch\f72 iv. a notice that refers to the disclaimer of +\par \hich\af72\dbch\af31505\loch\f72 warranties; +\par +\par \hich\af72\dbch\af31505\loch\f72 v. a URI or hyperlink to the Licensed Material to the +\par \hich\af72\dbch\af31505\loch\f72 extent reasonably practicable; +\par +\par \hich\af72\dbch\af31505\loch\f72 b. indicate if You modified the Licensed Material and +\par \hich\af72\dbch\af31505\loch\f72 retain an indication of any previous modifications; and +\par +\par \hich\af72\dbch\af31505\loch\f72 c. indicate the Licensed Material is licensed under this +\par \hich\af72\dbch\af31505\loch\f72 Public License, and include the text of, or the URI or +\par \hich\af72\dbch\af31505\loch\f72 hy\hich\af72\dbch\af31505\loch\f72 perlink to, this Public License. +\par +\par \hich\af72\dbch\af31505\loch\f72 2. You may satisfy the conditions in Section 3(a)(1) in any +\par \hich\af72\dbch\af31505\loch\f72 reasonable manner based on the medium, means, and context in +\par \hich\af72\dbch\af31505\loch\f72 which You Share the Licensed Material. For example, it may be +\par \hich\af72\dbch\af31505\loch\f72 reasonable to satisfy the conditions by providing a URI or +\par \hich\af72\dbch\af31505\loch\f72 hyperlink to a resource that includes the required +\par \hich\af72\dbch\af31505\loch\f72 information. +\par +\par \hich\af72\dbch\af31505\loch\f72 3. If requested by the Licensor, You must remove any of the +\par \hich\af72\dbch\af31505\loch\f72 information required by Section 3(a)(\hich\af72\dbch\af31505\loch\f72 1)(A) to the extent +\par \hich\af72\dbch\af31505\loch\f72 reasonably practicable. +\par +\par \hich\af72\dbch\af31505\loch\f72 b. ShareAlike. +\par +\par \hich\af72\dbch\af31505\loch\f72 In addition to the conditions in Section 3(a), if You Share +\par \hich\af72\dbch\af31505\loch\f72 Adapted Material You produce, the following conditions also apply. +\par +\par \hich\af72\dbch\af31505\loch\f72 1. The Adapter's License You apply must be a Creative Commons +\par \hich\af72\dbch\af31505\loch\f72 license with the same License Elements, this version or +\par \hich\af72\dbch\af31505\loch\f72 later, or a BY-SA Compatible License. +\par +\par \hich\af72\dbch\af31505\loch\f72 2. You must include the text of, or the URI or hyperlink to, the +\par \hich\af72\dbch\af31505\loch\f72 Adapter's License You apply. You may satisfy this condition +\par \hich\af72\dbch\af31505\loch\f72 in any reasonable manner based on the medium, means, and +\par \hich\af72\dbch\af31505\loch\f72 context in which You Share Adapted Material. +\par +\par \hich\af72\dbch\af31505\loch\f72 3. You may not offer or impose any additional or differe\hich\af72\dbch\af31505\loch\f72 nt terms +\par \hich\af72\dbch\af31505\loch\f72 or conditions on, or apply any Effective Technological +\par \hich\af72\dbch\af31505\loch\f72 Measures to, Adapted Material that restrict exercise of the +\par \hich\af72\dbch\af31505\loch\f72 rights granted under the Adapter's License You apply. +\par +\par +\par \hich\af72\dbch\af31505\loch\f72 Section 4 -- Sui Generis Database Rights. +\par +\par \hich\af72\dbch\af31505\loch\f72 Where the Licensed Rights include Sui Generis Database Rights that +\par \hich\af72\dbch\af31505\loch\f72 apply to Your use of the Licensed Material: +\par +\par \hich\af72\dbch\af31505\loch\f72 a. for the avoidance of doubt, Section 2(a)(1) grants You the right +\par \hich\af72\dbch\af31505\loch\f72 to extract, reuse, reproduce, and Share all or a substantial +\par \hich\af72\dbch\af31505\loch\f72 portio\hich\af72\dbch\af31505\loch\f72 n of the contents of the database; +\par +\par \hich\af72\dbch\af31505\loch\f72 b. if You include all or a substantial portion of the database +\par \hich\af72\dbch\af31505\loch\f72 contents in a database in which You have Sui Generis Database +\par \hich\af72\dbch\af31505\loch\f72 Rights, then the database in which You have Sui Generis Database +\par \hich\af72\dbch\af31505\loch\f72 Rights (but not its individual contents) is Adapted Material, +\par \hich\af72\dbch\af31505\loch\f72 including for purposes of Section 3(b); and +\par +\par \hich\af72\dbch\af31505\loch\f72 c. You must comply with the conditions in Section 3(a) if You Share +\par \hich\af72\dbch\af31505\loch\f72 all or a substantial portion of the contents of the database. +\par +\par \hich\af72\dbch\af31505\loch\f72 For the avoidance of doubt, this Section 4 supplements and does not +\par \hich\af72\dbch\af31505\loch\f72 replace Your obligations under this Public License where the Licensed +\par \hich\af72\dbch\af31505\loch\f72 Rights include other Copyright and Similar Rights. +\par +\par +\par \hich\af72\dbch\af31505\loch\f72 Section 5 -- Disclaimer of Warranties and Limitation of Liability. +\par +\par \hich\af72\dbch\af31505\loch\f72 a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE +\par \hich\af72\dbch\af31505\loch\f72 EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS +\par \hich\af72\dbch\af31505\loch\f72 AND AS-AVAILABLE, AND MAKES NO REPRESENTAT\hich\af72\dbch\af31505\loch\f72 IONS OR WARRANTIES OF +\par \hich\af72\dbch\af31505\loch\f72 ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, +\par \hich\af72\dbch\af31505\loch\f72 IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, +\par \hich\af72\dbch\af31505\loch\f72 WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR +\par \hich\af72\dbch\af31505\loch\f72 PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, +\par \hich\af72\dbch\af31505\loch\f72 ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT +\par \hich\af72\dbch\af31505\loch\f72 KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT +\par \hich\af72\dbch\af31505\loch\f72 ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. +\par +\par \hich\af72\dbch\af31505\loch\f72 b. TO THE\hich\af72\dbch\af31505\loch\f72 EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE +\par \hich\af72\dbch\af31505\loch\f72 TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, +\par \hich\af72\dbch\af31505\loch\f72 NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, +\par \hich\af72\dbch\af31505\loch\f72 INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, +\par \hich\af72\dbch\af31505\loch\f72 COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR +\par \hich\af72\dbch\af31505\loch\f72 USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN +\par \hich\af72\dbch\af31505\loch\f72 ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR +\par \hich\af72\dbch\af31505\loch\f72 DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR +\par \hich\af72\dbch\af31505\loch\f72 IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. +\par +\par \hich\af72\dbch\af31505\loch\f72 c. The disclaimer of warranties and limitation of liability provided +\par \hich\af72\dbch\af31505\loch\f72 above shall be interpreted in a manner that, to the extent +\par \hich\af72\dbch\af31505\loch\f72 possible, most closely approximates an absolute disclaimer and +\par \hich\af72\dbch\af31505\loch\f72 waiver of all liability. +\par +\par +\par \hich\af72\dbch\af31505\loch\f72 Section 6 -- Term and Termination. +\par +\par \hich\af72\dbch\af31505\loch\f72 a. This Public License applies for the term of the Copyright and +\par \hich\af72\dbch\af31505\loch\f72 Similar Rights licensed here. However, if Yo\hich\af72\dbch\af31505\loch\f72 u fail to comply with +\par \hich\af72\dbch\af31505\loch\f72 this Public License, then Your rights under this Public License +\par \hich\af72\dbch\af31505\loch\f72 terminate automatically. +\par +\par \hich\af72\dbch\af31505\loch\f72 b. Where Your right to use the Licensed Material has terminated under +\par \hich\af72\dbch\af31505\loch\f72 Section 6(a), it reinstates: +\par +\par \hich\af72\dbch\af31505\loch\f72 1. automatically as of the date the violation is cured, provided +\par \hich\af72\dbch\af31505\loch\f72 it is cured within 30 days of Your discovery of the +\par \hich\af72\dbch\af31505\loch\f72 violation; or +\par +\par \hich\af72\dbch\af31505\loch\f72 2. upon express reinstatement by the Licensor. +\par +\par \hich\af72\dbch\af31505\loch\f72 For the avoidance of doubt, this Section 6(b) does not affect an\hich\af72\dbch\af31505\loch\f72 y +\par \hich\af72\dbch\af31505\loch\f72 right the Licensor may have to seek remedies for Your violations +\par \hich\af72\dbch\af31505\loch\f72 of this Public License. +\par +\par \hich\af72\dbch\af31505\loch\f72 c. For the avoidance of doubt, the Licensor may also offer the +\par \hich\af72\dbch\af31505\loch\f72 Licensed Material under separate terms or conditions or stop +\par \hich\af72\dbch\af31505\loch\f72 distributing the Licensed Material at any time; however, doing so +\par \hich\af72\dbch\af31505\loch\f72 will not terminate this Public License. +\par +\par \hich\af72\dbch\af31505\loch\f72 d. Sections 1, 5, 6, 7, and 8 survive termination of this Public +\par \hich\af72\dbch\af31505\loch\f72 License. +\par +\par +\par \hich\af72\dbch\af31505\loch\f72 Section 7 -- Other Terms and Conditions. +\par +\par \hich\af72\dbch\af31505\loch\f72 a. The Licensor shall not be bound by any additional or different +\par \hich\af72\dbch\af31505\loch\f72 terms or conditions communicated by You unless expressly agreed. +\par +\par \hich\af72\dbch\af31505\loch\f72 b. Any arrangements, understandings, or agreements regarding th\hich\af72\dbch\af31505\loch\f72 e +\par \hich\af72\dbch\af31505\loch\f72 Licensed Material not stated herein are separate from and +\par \hich\af72\dbch\af31505\loch\f72 independent of the terms and conditions of this Public License. +\par +\par +\par \hich\af72\dbch\af31505\loch\f72 Section 8 -- Interpretation. +\par +\par \hich\af72\dbch\af31505\loch\f72 a. For the avoidance of doubt, this Public License does not, and +\par \hich\af72\dbch\af31505\loch\f72 shall not be interpreted to, reduce, limit, restrict, or impose +\par \hich\af72\dbch\af31505\loch\f72 conditions on any use of the Licensed Material that could lawfully +\par \hich\af72\dbch\af31505\loch\f72 be made without permission under this Public License. +\par +\par \hich\af72\dbch\af31505\loch\f72 b. To the extent possible, if any provision of this Public License is +\par \hich\af72\dbch\af31505\loch\f72 d\hich\af72\dbch\af31505\loch\f72 eemed unenforceable, it shall be automatically reformed to the +\par \hich\af72\dbch\af31505\loch\f72 minimum extent necessary to make it enforceable. If the provision +\par \hich\af72\dbch\af31505\loch\f72 cannot be reformed, it shall be severed from this Public License +\par \hich\af72\dbch\af31505\loch\f72 without affecting the enforceability of the remaining terms and +\par \hich\af72\dbch\af31505\loch\f72 conditions. +\par +\par \hich\af72\dbch\af31505\loch\f72 c. No term or condition of this Public License will be waived and no +\par \hich\af72\dbch\af31505\loch\f72 failure to comply consented to unless expressly agreed to by the +\par \hich\af72\dbch\af31505\loch\f72 Licensor. +\par +\par \hich\af72\dbch\af31505\loch\f72 d. Nothing in this Public License constitutes or may be interpreted +\par \hich\af72\dbch\af31505\loch\f72 as a limitation upon, or waiver of, any privileges and immunities +\par \hich\af72\dbch\af31505\loch\f72 that apply to the Licensor or You, including from th\hich\af72\dbch\af31505\loch\f72 e legal +\par \hich\af72\dbch\af31505\loch\f72 processes of any jurisdiction or authority. +\par +\par +\par \hich\af72\dbch\af31505\loch\f72 ======================================================================= +\par +\par \hich\af72\dbch\af31505\loch\f72 Creative Commons is not a party to its public +\par \hich\af72\dbch\af31505\loch\f72 licenses. Notwithstanding, Creative Commons may elect to apply one of +\par \hich\af72\dbch\af31505\loch\f72 its public licenses to material it publishes and in those instances +\par \hich\af72\dbch\af31505\loch\f72 \hich\f72 will be considered the \'93\loch\f72 \hich\f72 Licensor.\'94\loch\f72 The text of the Creative Commons +\par \hich\af72\dbch\af31505\loch\f72 public licenses is dedicated to the public domain under the CC0 Public +\par \hich\af72\dbch\af31505\loch\f72 Domain Dedication. Except for the limited purpose of indi\hich\af72\dbch\af31505\loch\f72 cating that +\par \hich\af72\dbch\af31505\loch\f72 material is shared under a Creative Commons public license or as +\par \hich\af72\dbch\af31505\loch\f72 otherwise permitted by the Creative Commons policies published at +\par \hich\af72\dbch\af31505\loch\f72 creativecommons.org/policies, Creative Commons does not authorize the +\par \hich\af72\dbch\af31505\loch\f72 use of the trademark "Creative Commons" or any other trademark or logo +\par \hich\af72\dbch\af31505\loch\f72 of Creative Commons without its prior written consent including, +\par \hich\af72\dbch\af31505\loch\f72 without limitation, in connection with any unauthorized modifications +\par \hich\af72\dbch\af31505\loch\f72 to any of its public licenses or any other arrangements, +\par \hich\af72\dbch\af31505\loch\f72 understandings, or agreements concerning use of licensed material. For +\par \hich\af72\dbch\af31505\loch\f72 the avoidance of doubt, this paragraph does not form part of the +\par \hich\af72\dbch\af31505\loch\f72 public licenses. +\par +\par \hich\af72\dbch\af31505\loch\f72 Creative Commons may be contacted at creativecommons.org. +\par }\pard \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \f72\fs22\insrsid12657365 \page +\par }\pard\plain \ltrpar\s1\ql \li0\ri0\sb240\sl480\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid12657365 \rtlch\fcs1 \af31503\afs32\alang1025 \ltrch\fcs0 +\fs32\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af31503 \ltrch\fcs0 \insrsid12657365 \hich\af1\dbch\af31501\loch\f1 v\hich\af1\dbch\af31501\loch\f1 bcc }{\rtlch\fcs1 \af31503 \ltrch\fcs0 +\insrsid12657365 \hich\af1\dbch\af31501\loch\f1 License}{\rtlch\fcs1 \af31503 \ltrch\fcs0 \insrsid12657365 \hich\af1\dbch\af31501\loch\f1 (\hich\af1\dbch\af31501\loch\f1 C Compiler\hich\af1\dbch\af31501\loch\f1 ) +\par }\pard\plain \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12657365 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 +\fs24\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \fs22\insrsid12657365\charrsid12657365 \hich\af1\dbch\af31505\loch\f1 vbcc is free for non-commer\hich\af1\dbch\af31505\loch\f1 +cial use\hich\af1\dbch\af31505\loch\f1 , Copyright }{\rtlch\fcs1 \af1 \ltrch\fcs0 \fs22\insrsid12657365\charrsid12657365 \loch\af1\dbch\af31505\hich\f1 \'a9}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \fs22\insrsid12657365\charrsid12657365 +\hich\af1\dbch\af31505\loch\f1 }{\rtlch\fcs1 \af31507 \ltrch\fcs0 \fs22\insrsid12657365\charrsid12657365 \hich\af1\dbch\af31505\loch\f1 1996-20}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \fs22\insrsid12657365\charrsid12657365 \hich\af1\dbch\af31505\loch\f1 22 }{ +\rtlch\fcs1 \af31507 \ltrch\fcs0 \fs22\insrsid12657365\charrsid12657365 \hich\af1\dbch\af31505\loch\f1 Volker Barthelmann}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \fs22\insrsid12657365\charrsid12657365 \hich\af1\dbch\af31505\loch\f1 . Specif +\hich\af1\dbch\af31505\loch\f1 ically \hich\af1\dbch\af31505\loch\f1 the AssEmbly backend}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \fs22\insrsid12657365 \hich\af1\dbch\af31505\loch\f1 code}{\rtlch\fcs1 \af31507 \ltrch\fcs0 +\fs22\insrsid12657365\charrsid12657365 \hich\af1\dbch\af31505\loch\f1 is \hich\af1\dbch\af31505\loch\f1 C\hich\af1\dbch\af31505\loch\f1 opyright }{\rtlch\fcs1 \af1 \ltrch\fcs0 \fs22\insrsid12657365\charrsid12657365 \loch\af1\dbch\af31505\hich\f1 \'a9}{ +\rtlch\fcs1 \af31507 \ltrch\fcs0 \fs22\insrsid12657365\charrsid12657365 \hich\af1\dbch\af31505\loch\f1 2024 Ptolemy Hi\hich\af1\dbch\af31505\loch\f1 ll and releas\hich\af1\dbch\af31505\loch\f1 ed und\hich\af1\dbch\af31505\loch\f1 +er the GNU General Public \hich\af1\dbch\af31505\loch\f1 L\hich\af1\dbch\af31505\loch\f1 icense V\hich\af1\dbch\af31505\loch\f1 ersion \hich\af1\dbch\af31505\loch\f1 3 printed above}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \fs22\insrsid12657365 +\hich\af1\dbch\af31505\loch\f1 (\hich\af1\dbch\af31505\loch\f1 i.e. \hich\af1\dbch\af31505\loch\f1 this does not\hich\af1\dbch\af31505\loch\f1 include most of the compiler itself\hich\af1\dbch\af31505\loch\f1 )}{\rtlch\fcs1 \af31507 \ltrch\fcs0 +\fs22\insrsid12657365\charrsid12657365 .}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \fs22\insrsid12657365\charrsid12657365 +\par }\pard \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid873632 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \f72\fs22\insrsid12657365\charrsid12657365 +\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a +9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad +5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 +b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 +0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 +a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f +c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 +0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 +a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 +6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b +4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b +4757e8d3f729e245eb2b260a0238fd010000ffff0300504b0304140006000800000021006780fcb48e070000cd200000160000007468656d652f7468656d652f +7468656d65312e786d6cec594b8f1bb911be07c87f68f45d56b71e2d696079a1a767ed19dbb064077be448949a1e76b341523316160602ef299700017617b904 +c82d8720c80259208b5cf2630cd848363f224576ab454a94e70103318299b9a8d95f153f5615abaac9fb5fbc4ea87781b9202cedfae1bdc0f7703a6373922ebb +fe8be9b8d2f63d21513a4794a5b8ebafb1f0bf78f0cb5fdc474732c609f6403e1547a8ebc7526647d5aa98c13012f758865378b7603c41121ef9b23ae7e812f4 +26b45a0b82a89a2092fa5e8a1250fb74b12033ec4d954affc146f988c2632a851a98513e51aab125a1b1f3f35021c45a0c28f72e10edfa30cf9c5d4ef16be97b +1409092fba7ea0fffcea83fb55745408517940d6901bebbf42ae10989fd7f49c7c79564e1a8c6aed4658ead7002af771a3b6fa2ff569009acd60a539175367d8 +8c8276adc01aa0fca74377a715d66dbca1bfbec739ec44fd5ac3d2af41b9fec61e3e187746c3a685d7a01cdfdcc3f7825abf53b7f01a94e3a33d7c63d46bd546 +165e83624ad2f37d74d46ab7a3025d42168c1e3be19d280a5ac302be45413494d1a5a658b0541e8ab504bd627c0c0005a44892d493eb0c2fd00ca2b8974926bc +211119456bdfcb50ca040c07b53084d06b04b5f25f5b1c1d6164482b5ec044ec0d293e9e987192c9aeff08b4fa06e4fd4f3fbd7bfbe3bbb77f7ff7cd37efdefe +d53b21cb58e6aa2cb963942e4db99ffff4bbfffce1d7debffff6c79fbffdce8d1726fec35f7ef3e11ffffc987ad86a5b53bcfffe870f3ffef0fef7bffdd79fbf +7568ef717466c2a724c1c27b822fbde72c81056a53d8fcf119bf99c43446c494e8a54b8152a46671e81fc9d8423f59238a1cb83eb6edf89243aa71011fae5e59 +8427315f49e2d0f8384e2ce02963b4cfb8d30a8fd55c8699a7ab74e99e9caf4cdc73842e5c730f506a7979b4ca20c71297ca418c2d9acf284a255ae2144b4fbd +63e7183b56f71521965d4fc98c33c116d2fb8a787d449c269992332b9ab642c72401bfac5d04c1df966d4e5f7a7d465dab1ee20b1b097b035107f929a696191f +a29544894be51425d434f80992b18be464cd67266e2424787a8929f346732c844be62987f51a4e7f8c20bb39dd7e4ad7898de4929cbb749e20c64ce4909d0f62 +94642eec84a4b189fd529c438822ef19932ef829b377887a063fa0f4a0bb5f126cb9fbea6cf002b29c49691b20eacd8a3b7cf910332b7e276bba40d8956a7a3c +b1526c8f136774f4574b2bb44f30a6e812cd31f65e7ce960d0679965f32de94731649563ec0aac47c88e55f59c6201bd926a6ef6f3e4091156c84ef0921de073 +bade493c6b9426881fd2fc04bc6eda7c74c661333a283ca5b37313f884400f08f1e234ca53013a8ce03ea8f5598cac02a69e853b5ed7dcf2df75f618eccb5716 +8d6bec4b90c1379681c46eca7cd4365344ad09b6013345c43b71a55b10b1dcbf1551c5558bad9c720b7bd36edd00dd91d5f42424bda203fadf743e8e40fc343d +8f5bb195b06ed8ed1c4a28c73b3dce21dc6e6733607c4e3effc6668856e9330cb5643f6bddf535777d8dff7fdfd71cdacf77ddcca19ee3ae9bf1a1cbb8eb668a +03964fd3cd6c1b18e86dd421437ed8a38f7e9283273f0b42e944ae293e11faf047c037cd7c0c834a4e9f7ae2f224308be1a72a733081855b72a4653ccee4af88 +8c2731cae08428f49592a528542f8597310107477ad8a95be1e92a3965f3fcc0539f3005796515486ec783261c3de5e37058257374d42a06153f7daa0a7c35db +a53e6cdd1050b23721614c6693a83b48b4368357905067679f8645c7c1a2add46f5cb5670aa0567a053eba3df854effacd86220427e562060dfa5cf92977f5c6 +bbda999fd2d3878c6945001c2ee62b81a3f9d2d31dc5f5e0f2d4eaf250bb86a72d12da297958d924b46574832762f8142ea2538d5e87c64d7dddd9bad4a2a74c +a1e783f8ded268b53fc6e2b6be06b9dddc40533353d0d4bbecfa51bd0921334359d75fc0c131fc4c32881da1bebb105dc2edcb4cf27cc3df26b3645cc8211271 +6e709d7472f7244462ee5192747db5fcd20d34d53944730b6b90103e5b721d482b9f1b3970baed64bc58e09934dd6e8c284be78f90e1f35ce17cabc56f0f5692 +6c05ee9ec4f34bef8caef8730421d66c85ca807322e0fe20ccad392770215626b26dfced14a622f99b37523a86f27144b3181515c54ce6395cd793928e7e2a6d +603c156b06831a26290ae1d9521558d3a856352d4b57cee160d5bd5a4859ce489adb9a6965155535dd59cc9a615306766c79bb226fb0da9818729a59e1f3d4bd +9b723b9b5cb7d3279455020c5edaef76a5dfa0b69dcca2a618efa76195b38b51bb766c167805b5eb140923eb471bb53b762b6b84733a18bc55e507b9dda885a1 +c5a6afd496d637e7e6e5363b7b05c963085dee8a4aa15d09a7bb1c415736d13d499e36608bbc96c5d6805fde8a93aeff75d0ec3506b5e6a012b49ba34aa3de08 +2aed66af5ee9359bf570d40c8361bff6060a8b8c93b099dfda8fe11283ae8bbb7b3dbe777f9f6cee69eecd585265fa7ebeaa89ebfbfbb076f8fede239074be8e +6ae34ebdd38f2a9d7a6f5c690cfbed4a6710f52bc368d01a8e878366bb337ee37b171adce8d5078d68d4ae44e16050694481a2dfee545a8d5aadd768f5daa346 +ef4dd1c6c0caf3f451d802ccab793df82f000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f7468656d +652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f2451eced +0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198720e27 +4a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528a2c6cc +e0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c0200001300000000000000000000000000000000 +005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b000000000000000000000000003001 +00005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000190200007468656d65 +2f7468656d652f7468656d654d616e616765722e786d6c504b01022d00140006000800000021006780fcb48e070000cd20000016000000000000000000000000 +00d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b010000270000000000000000 +0000000000980a00007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000930b00000000} +{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d +617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 +6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 +656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} +{\*\latentstyles\lsdstimax376\lsdlockeddef0\lsdsemihiddendef0\lsdunhideuseddef0\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 1; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 5; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 9; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 1;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 2;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 3; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 4;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 5;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 6; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 7;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 8;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Indent; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 header;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footer; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index heading;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of figures; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope return;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation reference; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 line number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 page number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote text; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of authorities;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 macro;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 toa heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 5;\lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Closing; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Signature;\lsdsemihidden1 \lsdunhideused1 \lsdpriority1 \lsdlocked0 Default Paragraph Font;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 4; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Message Header;\lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Salutation; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Date;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Note Heading; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Block Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 FollowedHyperlink;\lsdqformat1 \lsdpriority22 \lsdlocked0 Strong; +\lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Document Map;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Plain Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 E-mail Signature; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Top of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Bottom of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal (Web);\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Acronym; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Cite;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Code;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Definition; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Keyboard;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Preformatted;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Sample;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Typewriter; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Table;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 1; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 6; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 6; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Contemporary;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Elegant;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Professional; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Subtle 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Subtle 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority39 \lsdlocked0 Table Grid;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Theme;\lsdsemihidden1 \lsdlocked0 Placeholder Text; +\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing;\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid;\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2; +\lsdpriority65 \lsdlocked0 Medium List 1;\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2;\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List; +\lsdpriority71 \lsdlocked0 Colorful Shading;\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1;\lsdpriority61 \lsdlocked0 Light List Accent 1; +\lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdsemihidden1 \lsdlocked0 Revision; +\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1; +\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1;\lsdpriority72 \lsdlocked0 Colorful List Accent 1; +\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; +\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2; +\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2;\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2; +\lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; +\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3; +\lsdpriority70 \lsdlocked0 Dark List Accent 3;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4; +\lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdpriority62 \lsdlocked0 Light Grid Accent 4;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; +\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4; +\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4;\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5; +\lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5; +\lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdpriority70 \lsdlocked0 Dark List Accent 6;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 6; +\lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 6;\lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; +\lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference;\lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority37 \lsdlocked0 Bibliography; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;\lsdpriority41 \lsdlocked0 Plain Table 1;\lsdpriority42 \lsdlocked0 Plain Table 2;\lsdpriority43 \lsdlocked0 Plain Table 3;\lsdpriority44 \lsdlocked0 Plain Table 4; +\lsdpriority45 \lsdlocked0 Plain Table 5;\lsdpriority40 \lsdlocked0 Grid Table Light;\lsdpriority46 \lsdlocked0 Grid Table 1 Light;\lsdpriority47 \lsdlocked0 Grid Table 2;\lsdpriority48 \lsdlocked0 Grid Table 3;\lsdpriority49 \lsdlocked0 Grid Table 4; +\lsdpriority50 \lsdlocked0 Grid Table 5 Dark;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 1; +\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 1;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 1;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 1; +\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 1;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 2;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 2; +\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 2;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 2; +\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 3;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 3;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 3;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 3; +\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 3;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 4; +\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 4;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 4;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 4;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 4; +\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 4;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 5; +\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 5;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 5;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 5; +\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 5;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 6;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 6; +\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 6;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 6; +\lsdpriority46 \lsdlocked0 List Table 1 Light;\lsdpriority47 \lsdlocked0 List Table 2;\lsdpriority48 \lsdlocked0 List Table 3;\lsdpriority49 \lsdlocked0 List Table 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark; +\lsdpriority51 \lsdlocked0 List Table 6 Colorful;\lsdpriority52 \lsdlocked0 List Table 7 Colorful;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 List Table 2 Accent 1;\lsdpriority48 \lsdlocked0 List Table 3 Accent 1; +\lsdpriority49 \lsdlocked0 List Table 4 Accent 1;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 1;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 1; +\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 List Table 2 Accent 2;\lsdpriority48 \lsdlocked0 List Table 3 Accent 2;\lsdpriority49 \lsdlocked0 List Table 4 Accent 2; +\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 2;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 3; +\lsdpriority47 \lsdlocked0 List Table 2 Accent 3;\lsdpriority48 \lsdlocked0 List Table 3 Accent 3;\lsdpriority49 \lsdlocked0 List Table 4 Accent 3;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 3; +\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 4;\lsdpriority47 \lsdlocked0 List Table 2 Accent 4; +\lsdpriority48 \lsdlocked0 List Table 3 Accent 4;\lsdpriority49 \lsdlocked0 List Table 4 Accent 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 4;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 4; +\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 List Table 2 Accent 5;\lsdpriority48 \lsdlocked0 List Table 3 Accent 5; +\lsdpriority49 \lsdlocked0 List Table 4 Accent 5;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 5;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 5; +\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 List Table 2 Accent 6;\lsdpriority48 \lsdlocked0 List Table 3 Accent 6;\lsdpriority49 \lsdlocked0 List Table 4 Accent 6; +\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Mention; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hashtag;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Unresolved Mention;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Link;}}{\*\datastore 01050000 +02000000180000004d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 +d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000d059 +32b064c6da01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file diff --git a/Installer/Post-install.rtf b/Installer/Post-install.rtf new file mode 100644 index 0000000..a2146c9 --- /dev/null +++ b/Installer/Post-install.rtf @@ -0,0 +1,248 @@ +{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi0\deflang2057\deflangfe1041\themelang2057\themelangfe1041\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1\fbidi \fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Arial;} +{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;}{\f35\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0400000000000000}Yu Gothic{\*\falt ?a?S?V?b?N};} +{\f42\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0300000000000000}Yu Gothic Light{\*\falt ?a?S?V?b?N Light};}{\f47\fbidi \fswiss\fcharset128\fprq2 @Yu Gothic Light;}{\f48\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0400000000000000}@Yu Gothic;} +{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0300000000000000}Yu Gothic Light{\*\falt ?a?S?V?b?N Light};} +{\fhimajor\f31502\fbidi \fswiss\fcharset0\fprq2 Aptos Display;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} +{\fdbminor\f31505\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0400000000000000}Yu Gothic{\*\falt ?a?S?V?b?N};}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2 Aptos;} +{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f49\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f50\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\f52\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f53\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f54\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f55\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\f56\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f57\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f59\fbidi \fswiss\fcharset238\fprq2 Arial CE;}{\f60\fbidi \fswiss\fcharset204\fprq2 Arial Cyr;} +{\f62\fbidi \fswiss\fcharset161\fprq2 Arial Greek;}{\f63\fbidi \fswiss\fcharset162\fprq2 Arial Tur;}{\f64\fbidi \fswiss\fcharset177\fprq2 Arial (Hebrew);}{\f65\fbidi \fswiss\fcharset178\fprq2 Arial (Arabic);} +{\f66\fbidi \fswiss\fcharset186\fprq2 Arial Baltic;}{\f67\fbidi \fswiss\fcharset163\fprq2 Arial (Vietnamese);}{\f389\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}{\f390\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;} +{\f392\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f393\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f396\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}{\f397\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);} +{\f401\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Western{\*\falt ?a?S?V?b?N};}{\f399\fbidi \fswiss\fcharset238\fprq2 Yu Gothic CE{\*\falt ?a?S?V?b?N};}{\f400\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Cyr{\*\falt ?a?S?V?b?N};} +{\f402\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Greek{\*\falt ?a?S?V?b?N};}{\f403\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Tur{\*\falt ?a?S?V?b?N};}{\f406\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Baltic{\*\falt ?a?S?V?b?N};} +{\f471\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Light Western{\*\falt ?a?S?V?b?N Light};}{\f469\fbidi \fswiss\fcharset238\fprq2 Yu Gothic Light CE{\*\falt ?a?S?V?b?N Light};} +{\f470\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Light Cyr{\*\falt ?a?S?V?b?N Light};}{\f472\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Light Greek{\*\falt ?a?S?V?b?N Light};} +{\f473\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Light Tur{\*\falt ?a?S?V?b?N Light};}{\f476\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Light Baltic{\*\falt ?a?S?V?b?N Light};}{\f521\fbidi \fswiss\fcharset0\fprq2 @Yu Gothic Light Western;} +{\f519\fbidi \fswiss\fcharset238\fprq2 @Yu Gothic Light CE;}{\f520\fbidi \fswiss\fcharset204\fprq2 @Yu Gothic Light Cyr;}{\f522\fbidi \fswiss\fcharset161\fprq2 @Yu Gothic Light Greek;}{\f523\fbidi \fswiss\fcharset162\fprq2 @Yu Gothic Light Tur;} +{\f526\fbidi \fswiss\fcharset186\fprq2 @Yu Gothic Light Baltic;}{\f531\fbidi \fswiss\fcharset0\fprq2 @Yu Gothic Western;}{\f529\fbidi \fswiss\fcharset238\fprq2 @Yu Gothic CE;}{\f530\fbidi \fswiss\fcharset204\fprq2 @Yu Gothic Cyr;} +{\f532\fbidi \fswiss\fcharset161\fprq2 @Yu Gothic Greek;}{\f533\fbidi \fswiss\fcharset162\fprq2 @Yu Gothic Tur;}{\f536\fbidi \fswiss\fcharset186\fprq2 @Yu Gothic Baltic;}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} +{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} +{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31520\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Light Western{\*\falt ?a?S?V?b?N Light};} +{\fdbmajor\f31518\fbidi \fswiss\fcharset238\fprq2 Yu Gothic Light CE{\*\falt ?a?S?V?b?N Light};}{\fdbmajor\f31519\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Light Cyr{\*\falt ?a?S?V?b?N Light};} +{\fdbmajor\f31521\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Light Greek{\*\falt ?a?S?V?b?N Light};}{\fdbmajor\f31522\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Light Tur{\*\falt ?a?S?V?b?N Light};} +{\fdbmajor\f31525\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Light Baltic{\*\falt ?a?S?V?b?N Light};}{\fhimajor\f31528\fbidi \fswiss\fcharset238\fprq2 Aptos Display CE;}{\fhimajor\f31529\fbidi \fswiss\fcharset204\fprq2 Aptos Display Cyr;} +{\fhimajor\f31531\fbidi \fswiss\fcharset161\fprq2 Aptos Display Greek;}{\fhimajor\f31532\fbidi \fswiss\fcharset162\fprq2 Aptos Display Tur;}{\fhimajor\f31535\fbidi \fswiss\fcharset186\fprq2 Aptos Display Baltic;} +{\fhimajor\f31536\fbidi \fswiss\fcharset163\fprq2 Aptos Display (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} +{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} +{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31560\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Western{\*\falt ?a?S?V?b?N};} +{\fdbminor\f31558\fbidi \fswiss\fcharset238\fprq2 Yu Gothic CE{\*\falt ?a?S?V?b?N};}{\fdbminor\f31559\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Cyr{\*\falt ?a?S?V?b?N};} +{\fdbminor\f31561\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Greek{\*\falt ?a?S?V?b?N};}{\fdbminor\f31562\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Tur{\*\falt ?a?S?V?b?N};} +{\fdbminor\f31565\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Baltic{\*\falt ?a?S?V?b?N};}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Aptos CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Aptos Cyr;} +{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Aptos Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Aptos Tur;}{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Aptos Baltic;} +{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Aptos (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}} +{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0; +\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red0\green0\blue0;\red0\green0\blue0;\caccentone\ctint255\cshade191\red15\green71\blue97; +\ctextone\ctint166\cshade255\red89\green89\blue89;\ctextone\ctint216\cshade255\red39\green39\blue39;\ctextone\ctint191\cshade255\red64\green64\blue64;}{\*\defchp \fs22\kerning2\loch\af31506\hich\af31506\dbch\af31505 }{\*\defpap +\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 +\af0\afs22\alang1025 \ltrch\fcs0 \fs24\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 \snext0 \sqformat \spriority0 \styrsid12867389 Normal;}{\s1\ql \li0\ri0\sb240\sl259\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs32\alang1025 \ltrch\fcs0 \fs36\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \sautoupd \slink15 \sqformat \spriority9 \styrsid12867389 heading 1;}{\s2\ql \li0\ri0\sb40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs26\alang1025 +\ltrch\fcs0 \fs28\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \sautoupd \slink16 \sunhideused \sqformat \spriority9 \styrsid12867389 heading 2;}{\s3\ql \li0\ri0\sb160\sa80\sl259\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs28\alang1025 \ltrch\fcs0 \fs28\cf19\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink17 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid7864524 heading 3;}{\s4\ql \li0\ri0\sb80\sa40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel3\adjustright\rin0\lin0\itap0 \rtlch\fcs1 +\ai\af0\afs22\alang1025 \ltrch\fcs0 \i\fs24\cf19\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink18 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid7864524 heading 4;}{ +\s5\ql \li0\ri0\sb80\sa40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel4\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 +\fs24\cf19\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink19 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid7864524 heading 5;}{\s6\ql \li0\ri0\sb40\sl259\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel5\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ai\af0\afs22\alang1025 \ltrch\fcs0 \i\fs24\cf20\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink20 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid7864524 heading 6;}{\s7\ql \li0\ri0\sb40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel6\adjustright\rin0\lin0\itap0 \rtlch\fcs1 +\af0\afs22\alang1025 \ltrch\fcs0 \fs24\cf20\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink21 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid7864524 heading 7;}{ +\s8\ql \li0\ri0\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel7\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ai\af0\afs22\alang1025 \ltrch\fcs0 +\i\fs24\cf21\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink22 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid7864524 heading 8;}{\s9\ql \li0\ri0\sl259\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel8\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs24\cf21\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink23 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid7864524 heading 9;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* +\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa160\sl259\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang2057\langfe1041\kerning2\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp2057\langfenp1041 +\snext11 \ssemihidden \sunhideused Normal Table;}{\*\cs15 \additive \rtlch\fcs1 \af0\afs32 \ltrch\fcs0 \fs32\loch\f1\hich\af1\dbch\af31501 \sbasedon10 \slink1 \spriority9 \styrsid12867389 Heading 1 Char;}{\*\cs16 \additive \rtlch\fcs1 \af0\afs26 +\ltrch\fcs0 \fs26\loch\f1\hich\af1\dbch\af31501 \sbasedon10 \slink2 \spriority9 \styrsid12867389 Heading 2 Char;}{\*\cs17 \additive \rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\cf19\kerning0\dbch\af31501 +\sbasedon10 \slink3 \ssemihidden \spriority9 \styrsid7864524 Heading 3 Char;}{\*\cs18 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\fs24\cf19\kerning0\dbch\af31501 \sbasedon10 \slink4 \ssemihidden \spriority9 \styrsid7864524 Heading 4 Char;}{\*\cs19 +\additive \rtlch\fcs1 \af0 \ltrch\fcs0 \fs24\cf19\kerning0\dbch\af31501 \sbasedon10 \slink5 \ssemihidden \spriority9 \styrsid7864524 Heading 5 Char;}{\*\cs20 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\fs24\cf20\kerning0\dbch\af31501 +\sbasedon10 \slink6 \ssemihidden \spriority9 \styrsid7864524 Heading 6 Char;}{\*\cs21 \additive \rtlch\fcs1 \af0 \ltrch\fcs0 \fs24\cf20\kerning0\dbch\af31501 \sbasedon10 \slink7 \ssemihidden \spriority9 \styrsid7864524 Heading 7 Char;}{\*\cs22 \additive +\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\fs24\cf21\kerning0\dbch\af31501 \sbasedon10 \slink8 \ssemihidden \spriority9 \styrsid7864524 Heading 8 Char;}{\*\cs23 \additive \rtlch\fcs1 \af0 \ltrch\fcs0 \fs24\cf21\kerning0\dbch\af31501 +\sbasedon10 \slink9 \ssemihidden \spriority9 \styrsid7864524 Heading 9 Char;}{\s24\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\contextualspace \rtlch\fcs1 \af0\afs56\alang1025 \ltrch\fcs0 +\fs56\expnd-2\expndtw-10\lang2057\langfe1041\kerning28\loch\f1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \sautoupd \slink25 \sqformat \spriority10 \styrsid12867389 Title;}{\*\cs25 \additive \rtlch\fcs1 \af0\afs56 \ltrch\fcs0 +\fs56\expnd-2\expndtw-10\kerning28\loch\f1\hich\af1\dbch\af31501 \sbasedon10 \slink24 \spriority10 \styrsid12867389 Title Char;}{\s26\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ilvl1\adjustright\rin0\lin0\itap0 +\rtlch\fcs1 \af0\afs28\alang1025 \ltrch\fcs0 \fs28\expnd3\expndtw15\cf20\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink27 \sqformat \spriority11 \styrsid7864524 Subtitle;}{\*\cs27 +\additive \rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\expnd3\expndtw15\cf20\kerning0\dbch\af31501 \sbasedon10 \slink26 \spriority11 \styrsid7864524 Subtitle Char;}{\s28\qc \li0\ri0\sb160\sa160\sl259\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ai\af0\afs22\alang1025 \ltrch\fcs0 \i\fs24\cf22\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink29 \sqformat \spriority29 \styrsid7864524 Quote;}{\*\cs29 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f1\fs24\cf22\kerning0 \sbasedon10 \slink28 \spriority29 \styrsid7864524 Quote Char;}{\s30\ql \li720\ri0\sa160\sl259\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\contextualspace \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs24\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext30 \sqformat \spriority34 \styrsid7864524 List Paragraph;}{\*\cs31 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\cf19 \sbasedon10 \sqformat \spriority21 \styrsid7864524 Intense Emphasis;}{\s32\qc \li864\ri864\sb360\sa360\sl259\slmult1 +\widctlpar\brdrt\brdrs\brdrw10\brsp200\brdrcf19 \brdrb\brdrs\brdrw10\brsp200\brdrcf19 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin864\lin864\itap0 \rtlch\fcs1 \ai\af0\afs22\alang1025 \ltrch\fcs0 +\i\fs24\cf19\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink33 \sqformat \spriority30 \styrsid7864524 Intense Quote;}{\*\cs33 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f1\fs24\cf19\kerning0 +\sbasedon10 \slink32 \spriority30 \styrsid7864524 Intense Quote Char;}{\*\cs34 \additive \rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\scaps\expnd1\expndtw5\cf19 \sbasedon10 \sqformat \spriority32 \styrsid7864524 Intense Reference;}}{\*\rsidtbl \rsid1067594 +\rsid4263980\rsid7864524\rsid8215624\rsid8921644\rsid12605068\rsid12867389}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\author Tolly Hill}{\operator Tolly Hill} +{\creatim\yr2024\mo6\dy24\hr19\min46}{\revtim\yr2024\mo6\dy24\hr21\min22}{\version4}{\edmins4}{\nofpages1}{\nofwords60}{\nofchars345}{\nofcharsws404}{\vern97}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}} +\paperw11906\paperh16838\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect +\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen +\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1440\dgvorigin1440\dghshow1\dgvshow1 +\jexpand\viewkind1\viewscale100\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct +\asianbrkrule\rsidroot7864524\newtblstyruls\nogrowautofit\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal \nouicompat \fet0 +{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\headery708\footery708\colsx708\endnhere\sectlinegrid360\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2 +\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6 +\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang +{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\s1\ql \li0\ri0\sb240\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid8921644 \rtlch\fcs1 \af0\afs32\alang1025 \ltrch\fcs0 +\fs36\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8921644 \hich\af1\dbch\af31501\loch\f1 Thank you for installing AssEmbly!}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8215624 +\par }\pard\plain \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8921644 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 +\fs24\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8921644 \hich\af1\dbch\af31505\loch\f1 You can run the installer again at any point to add }{\rtlch\fcs1 \af0 \ltrch\fcs0 +\insrsid12605068 \hich\af1\dbch\af31505\loch\f1 additional}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8921644 \hich\af1\dbch\af31505\loch\f1 components}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12605068 \hich\af1\dbch\af31505\loch\f1 that you may have skipped}{ +\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8921644 . +\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12605068 \hich\af1\dbch\af31505\loch\f1 \hich\f1 If an error message was displayed saying that \'93\loch\f1 \hich\f1 code.exe\'94\loch\f1 + could not be found, this means that the VSCode extension installation failed. To install the extension manually, use the VSIX file located in the same folder that the AssEmbly executable files were \hich\af1\dbch\af31505\loch\f1 installed to.}{ +\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12605068\charrsid8921644 +\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a +9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad +5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 +b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 +0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 +a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f +c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 +0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 +a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 +6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b +4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b +4757e8d3f729e245eb2b260a0238fd010000ffff0300504b0304140006000800000021006780fcb48e070000cd200000160000007468656d652f7468656d652f +7468656d65312e786d6cec594b8f1bb911be07c87f68f45d56b71e2d696079a1a767ed19dbb064077be448949a1e76b341523316160602ef299700017617b904 +c82d8720c80259208b5cf2630cd848363f224576ab454a94e70103318299b9a8d95f153f5615abaac9fb5fbc4ea87781b9202cedfae1bdc0f7703a6373922ebb +fe8be9b8d2f63d21513a4794a5b8ebafb1f0bf78f0cb5fdc474732c609f6403e1547a8ebc7526647d5aa98c13012f758865378b7603c41121ef9b23ae7e812f4 +26b45a0b82a89a2092fa5e8a1250fb74b12033ec4d954affc146f988c2632a851a98513e51aab125a1b1f3f35021c45a0c28f72e10edfa30cf9c5d4ef16be97b +1409092fba7ea0fffcea83fb55745408517940d6901bebbf42ae10989fd7f49c7c79564e1a8c6aed4658ead7002af771a3b6fa2ff569009acd60a539175367d8 +8c8276adc01aa0fca74377a715d66dbca1bfbec739ec44fd5ac3d2af41b9fec61e3e187746c3a685d7a01cdfdcc3f7825abf53b7f01a94e3a33d7c63d46bd546 +165e83624ad2f37d74d46ab7a3025d42168c1e3be19d280a5ac302be45413494d1a5a658b0541e8ab504bd627c0c0005a44892d493eb0c2fd00ca2b8974926bc +211119456bdfcb50ca040c07b53084d06b04b5f25f5b1c1d6164482b5ec044ec0d293e9e987192c9aeff08b4fa06e4fd4f3fbd7bfbe3bbb77f7ff7cd37efdefe +d53b21cb58e6aa2cb963942e4db99ffff4bbfffce1d7debffff6c79fbffdce8d1726fec35f7ef3e11ffffc987ad86a5b53bcfffe870f3ffef0fef7bffdd79fbf +7568ef717466c2a724c1c27b822fbde72c81056a53d8fcf119bf99c43446c494e8a54b8152a46671e81fc9d8423f59238a1cb83eb6edf89243aa71011fae5e59 +8427315f49e2d0f8384e2ce02963b4cfb8d30a8fd55c8699a7ab74e99e9caf4cdc73842e5c730f506a7979b4ca20c71297ca418c2d9acf284a255ae2144b4fbd +63e7183b56f71521965d4fc98c33c116d2fb8a787d449c269992332b9ab642c72401bfac5d04c1df966d4e5f7a7d465dab1ee20b1b097b035107f929a696191f +a29544894be51425d434f80992b18be464cd67266e2424787a8929f346732c844be62987f51a4e7f8c20bb39dd7e4ad7898de4929cbb749e20c64ce4909d0f62 +94642eec84a4b189fd529c438822ef19932ef829b377887a063fa0f4a0bb5f126cb9fbea6cf002b29c49691b20eacd8a3b7cf910332b7e276bba40d8956a7a3c +b1526c8f136774f4574b2bb44f30a6e812cd31f65e7ce960d0679965f32de94731649563ec0aac47c88e55f59c6201bd926a6ef6f3e4091156c84ef0921de073 +bade493c6b9426881fd2fc04bc6eda7c74c661333a283ca5b37313f884400f08f1e234ca53013a8ce03ea8f5598cac02a69e853b5ed7dcf2df75f618eccb5716 +8d6bec4b90c1379681c46eca7cd4365344ad09b6013345c43b71a55b10b1dcbf1551c5558bad9c720b7bd36edd00dd91d5f42424bda203fadf743e8e40fc343d +8f5bb195b06ed8ed1c4a28c73b3dce21dc6e6733607c4e3effc6668856e9330cb5643f6bddf535777d8dff7fdfd71cdacf77ddcca19ee3ae9bf1a1cbb8eb668a +03964fd3cd6c1b18e86dd421437ed8a38f7e9283273f0b42e944ae293e11faf047c037cd7c0c834a4e9f7ae2f224308be1a72a733081855b72a4653ccee4af88 +8c2731cae08428f49592a528542f8597310107477ad8a95be1e92a3965f3fcc0539f3005796515486ec783261c3de5e37058257374d42a06153f7daa0a7c35db +a53e6cdd1050b23721614c6693a83b48b4368357905067679f8645c7c1a2add46f5cb5670aa0567a053eba3df854effacd86220427e562060dfa5cf92977f5c6 +bbda999fd2d3878c6945001c2ee62b81a3f9d2d31dc5f5e0f2d4eaf250bb86a72d12da297958d924b46574832762f8142ea2538d5e87c64d7dddd9bad4a2a74c +a1e783f8ded268b53fc6e2b6be06b9dddc40533353d0d4bbecfa51bd0921334359d75fc0c131fc4c32881da1bebb105dc2edcb4cf27cc3df26b3645cc8211271 +6e709d7472f7244462ee5192747db5fcd20d34d53944730b6b90103e5b721d482b9f1b3970baed64bc58e09934dd6e8c284be78f90e1f35ce17cabc56f0f5692 +6c05ee9ec4f34bef8caef8730421d66c85ca807322e0fe20ccad392770215626b26dfced14a622f99b37523a86f27144b3181515c54ce6395cd793928e7e2a6d +603c156b06831a26290ae1d9521558d3a856352d4b57cee160d5bd5a4859ce489adb9a6965155535dd59cc9a615306766c79bb226fb0da9818729a59e1f3d4bd +9b723b9b5cb7d3279455020c5edaef76a5dfa0b69dcca2a618efa76195b38b51bb766c167805b5eb140923eb471bb53b762b6b84733a18bc55e507b9dda885a1 +c5a6afd496d637e7e6e5363b7b05c963085dee8a4aa15d09a7bb1c415736d13d499e36608bbc96c5d6805fde8a93aeff75d0ec3506b5e6a012b49ba34aa3de08 +2aed66af5ee9359bf570d40c8361bff6060a8b8c93b099dfda8fe11283ae8bbb7b3dbe777f9f6cee69eecd585265fa7ebeaa89ebfbfbb076f8fede239074be8e +6ae34ebdd38f2a9d7a6f5c690cfbed4a6710f52bc368d01a8e878366bb337ee37b171adce8d5078d68d4ae44e16050694481a2dfee545a8d5aadd768f5daa346 +ef4dd1c6c0caf3f451d802ccab793df82f000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f7468656d +652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f2451eced +0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198720e27 +4a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528a2c6cc +e0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c0200001300000000000000000000000000000000 +005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b000000000000000000000000003001 +00005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000190200007468656d65 +2f7468656d652f7468656d654d616e616765722e786d6c504b01022d00140006000800000021006780fcb48e070000cd20000016000000000000000000000000 +00d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b010000270000000000000000 +0000000000980a00007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000930b00000000} +{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d +617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 +6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 +656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} +{\*\latentstyles\lsdstimax376\lsdlockeddef0\lsdsemihiddendef0\lsdunhideuseddef0\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 1; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 5; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 9; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 1;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 2;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 3; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 4;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 5;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 6; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 7;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 8;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Indent; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 header;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footer; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index heading;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of figures; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope return;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation reference; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 line number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 page number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote text; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of authorities;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 macro;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 toa heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 5;\lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Closing; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Signature;\lsdsemihidden1 \lsdunhideused1 \lsdpriority1 \lsdlocked0 Default Paragraph Font;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 4; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Message Header;\lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Salutation; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Date;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Note Heading; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Block Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 FollowedHyperlink;\lsdqformat1 \lsdpriority22 \lsdlocked0 Strong; +\lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Document Map;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Plain Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 E-mail Signature; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Top of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Bottom of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal (Web);\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Acronym; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Cite;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Code;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Definition; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Keyboard;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Preformatted;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Sample;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Typewriter; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority39 \lsdlocked0 Table Grid; +\lsdsemihidden1 \lsdlocked0 Placeholder Text;\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing;\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid; +\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdpriority65 \lsdlocked0 Medium List 1;\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2; +\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List;\lsdpriority71 \lsdlocked0 Colorful Shading;\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1; +\lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1; +\lsdsemihidden1 \lsdlocked0 Revision;\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; +\lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2;\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2; +\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdpriority70 \lsdlocked0 Dark List Accent 3;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3; +\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdpriority62 \lsdlocked0 Light Grid Accent 4; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; +\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdpriority62 \lsdlocked0 Light Grid Accent 5; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5; +\lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdpriority70 \lsdlocked0 Dark List Accent 6;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 6; +\lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 6;\lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; +\lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference;\lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority37 \lsdlocked0 Bibliography; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;\lsdpriority41 \lsdlocked0 Plain Table 1;\lsdpriority42 \lsdlocked0 Plain Table 2;\lsdpriority43 \lsdlocked0 Plain Table 3;\lsdpriority44 \lsdlocked0 Plain Table 4; +\lsdpriority45 \lsdlocked0 Plain Table 5;\lsdpriority40 \lsdlocked0 Grid Table Light;\lsdpriority46 \lsdlocked0 Grid Table 1 Light;\lsdpriority47 \lsdlocked0 Grid Table 2;\lsdpriority48 \lsdlocked0 Grid Table 3;\lsdpriority49 \lsdlocked0 Grid Table 4; +\lsdpriority50 \lsdlocked0 Grid Table 5 Dark;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 1; +\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 1;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 1;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 1; +\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 1;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 2;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 2; +\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 2;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 2; +\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 3;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 3;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 3;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 3; +\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 3;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 4; +\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 4;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 4;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 4;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 4; +\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 4;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 5; +\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 5;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 5;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 5; +\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 5;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 6;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 6; +\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 6;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 6; +\lsdpriority46 \lsdlocked0 List Table 1 Light;\lsdpriority47 \lsdlocked0 List Table 2;\lsdpriority48 \lsdlocked0 List Table 3;\lsdpriority49 \lsdlocked0 List Table 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark; +\lsdpriority51 \lsdlocked0 List Table 6 Colorful;\lsdpriority52 \lsdlocked0 List Table 7 Colorful;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 List Table 2 Accent 1;\lsdpriority48 \lsdlocked0 List Table 3 Accent 1; +\lsdpriority49 \lsdlocked0 List Table 4 Accent 1;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 1;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 1; +\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 List Table 2 Accent 2;\lsdpriority48 \lsdlocked0 List Table 3 Accent 2;\lsdpriority49 \lsdlocked0 List Table 4 Accent 2; +\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 2;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 3; +\lsdpriority47 \lsdlocked0 List Table 2 Accent 3;\lsdpriority48 \lsdlocked0 List Table 3 Accent 3;\lsdpriority49 \lsdlocked0 List Table 4 Accent 3;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 3; +\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 4;\lsdpriority47 \lsdlocked0 List Table 2 Accent 4; +\lsdpriority48 \lsdlocked0 List Table 3 Accent 4;\lsdpriority49 \lsdlocked0 List Table 4 Accent 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 4;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 4; +\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 List Table 2 Accent 5;\lsdpriority48 \lsdlocked0 List Table 3 Accent 5; +\lsdpriority49 \lsdlocked0 List Table 4 Accent 5;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 5;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 5; +\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 List Table 2 Accent 6;\lsdpriority48 \lsdlocked0 List Table 3 Accent 6;\lsdpriority49 \lsdlocked0 List Table 4 Accent 6; +\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Mention; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hashtag;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Unresolved Mention;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Link;}}{\*\datastore 01050000 +02000000180000004d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 +d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e500000000000000000000000030ed +c74474c6da01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file diff --git a/Installer/Pre-install.rtf b/Installer/Pre-install.rtf new file mode 100644 index 0000000..57040ad --- /dev/null +++ b/Installer/Pre-install.rtf @@ -0,0 +1,277 @@ +{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi0\deflang2057\deflangfe1041\themelang2057\themelangfe1041\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1\fbidi \fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Arial;} +{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;}{\f35\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0400000000000000}Yu Gothic{\*\falt ?a?S?V?b?N};} +{\f42\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0300000000000000}Yu Gothic Light{\*\falt ?a?S?V?b?N Light};}{\f47\fbidi \fswiss\fcharset128\fprq2 @Yu Gothic Light;}{\f48\fbidi \fswiss\fcharset128\fprq2{\*\panose 00000000000000000000}@Yu Gothic;} +{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0300000000000000}Yu Gothic Light{\*\falt ?a?S?V?b?N Light};} +{\fhimajor\f31502\fbidi \fswiss\fcharset0\fprq2 Aptos Display;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} +{\fdbminor\f31505\fbidi \fswiss\fcharset128\fprq2{\*\panose 020b0400000000000000}Yu Gothic{\*\falt ?a?S?V?b?N};}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2 Aptos;} +{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f49\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f50\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\f52\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f53\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f54\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f55\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\f56\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f57\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f59\fbidi \fswiss\fcharset238\fprq2 Arial CE;}{\f60\fbidi \fswiss\fcharset204\fprq2 Arial Cyr;} +{\f62\fbidi \fswiss\fcharset161\fprq2 Arial Greek;}{\f63\fbidi \fswiss\fcharset162\fprq2 Arial Tur;}{\f64\fbidi \fswiss\fcharset177\fprq2 Arial (Hebrew);}{\f65\fbidi \fswiss\fcharset178\fprq2 Arial (Arabic);} +{\f66\fbidi \fswiss\fcharset186\fprq2 Arial Baltic;}{\f67\fbidi \fswiss\fcharset163\fprq2 Arial (Vietnamese);}{\f389\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}{\f390\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;} +{\f392\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f393\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f396\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}{\f397\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);} +{\f401\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Western{\*\falt ?a?S?V?b?N};}{\f399\fbidi \fswiss\fcharset238\fprq2 Yu Gothic CE{\*\falt ?a?S?V?b?N};}{\f400\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Cyr{\*\falt ?a?S?V?b?N};} +{\f402\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Greek{\*\falt ?a?S?V?b?N};}{\f403\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Tur{\*\falt ?a?S?V?b?N};}{\f406\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Baltic{\*\falt ?a?S?V?b?N};} +{\f471\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Light Western{\*\falt ?a?S?V?b?N Light};}{\f469\fbidi \fswiss\fcharset238\fprq2 Yu Gothic Light CE{\*\falt ?a?S?V?b?N Light};} +{\f470\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Light Cyr{\*\falt ?a?S?V?b?N Light};}{\f472\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Light Greek{\*\falt ?a?S?V?b?N Light};} +{\f473\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Light Tur{\*\falt ?a?S?V?b?N Light};}{\f476\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Light Baltic{\*\falt ?a?S?V?b?N Light};}{\f521\fbidi \fswiss\fcharset0\fprq2 @Yu Gothic Light Western;} +{\f519\fbidi \fswiss\fcharset238\fprq2 @Yu Gothic Light CE;}{\f520\fbidi \fswiss\fcharset204\fprq2 @Yu Gothic Light Cyr;}{\f522\fbidi \fswiss\fcharset161\fprq2 @Yu Gothic Light Greek;}{\f523\fbidi \fswiss\fcharset162\fprq2 @Yu Gothic Light Tur;} +{\f526\fbidi \fswiss\fcharset186\fprq2 @Yu Gothic Light Baltic;}{\f531\fbidi \fswiss\fcharset0\fprq2 @Yu Gothic Western;}{\f529\fbidi \fswiss\fcharset238\fprq2 @Yu Gothic CE;}{\f530\fbidi \fswiss\fcharset204\fprq2 @Yu Gothic Cyr;} +{\f532\fbidi \fswiss\fcharset161\fprq2 @Yu Gothic Greek;}{\f533\fbidi \fswiss\fcharset162\fprq2 @Yu Gothic Tur;}{\f536\fbidi \fswiss\fcharset186\fprq2 @Yu Gothic Baltic;}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} +{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} +{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31520\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Light Western{\*\falt ?a?S?V?b?N Light};} +{\fdbmajor\f31518\fbidi \fswiss\fcharset238\fprq2 Yu Gothic Light CE{\*\falt ?a?S?V?b?N Light};}{\fdbmajor\f31519\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Light Cyr{\*\falt ?a?S?V?b?N Light};} +{\fdbmajor\f31521\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Light Greek{\*\falt ?a?S?V?b?N Light};}{\fdbmajor\f31522\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Light Tur{\*\falt ?a?S?V?b?N Light};} +{\fdbmajor\f31525\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Light Baltic{\*\falt ?a?S?V?b?N Light};}{\fhimajor\f31528\fbidi \fswiss\fcharset238\fprq2 Aptos Display CE;}{\fhimajor\f31529\fbidi \fswiss\fcharset204\fprq2 Aptos Display Cyr;} +{\fhimajor\f31531\fbidi \fswiss\fcharset161\fprq2 Aptos Display Greek;}{\fhimajor\f31532\fbidi \fswiss\fcharset162\fprq2 Aptos Display Tur;}{\fhimajor\f31535\fbidi \fswiss\fcharset186\fprq2 Aptos Display Baltic;} +{\fhimajor\f31536\fbidi \fswiss\fcharset163\fprq2 Aptos Display (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} +{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} +{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31560\fbidi \fswiss\fcharset0\fprq2 Yu Gothic Western{\*\falt ?a?S?V?b?N};} +{\fdbminor\f31558\fbidi \fswiss\fcharset238\fprq2 Yu Gothic CE{\*\falt ?a?S?V?b?N};}{\fdbminor\f31559\fbidi \fswiss\fcharset204\fprq2 Yu Gothic Cyr{\*\falt ?a?S?V?b?N};} +{\fdbminor\f31561\fbidi \fswiss\fcharset161\fprq2 Yu Gothic Greek{\*\falt ?a?S?V?b?N};}{\fdbminor\f31562\fbidi \fswiss\fcharset162\fprq2 Yu Gothic Tur{\*\falt ?a?S?V?b?N};} +{\fdbminor\f31565\fbidi \fswiss\fcharset186\fprq2 Yu Gothic Baltic{\*\falt ?a?S?V?b?N};}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Aptos CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Aptos Cyr;} +{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Aptos Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Aptos Tur;}{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Aptos Baltic;} +{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Aptos (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}} +{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0; +\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red0\green0\blue0;\red0\green0\blue0;\caccentone\ctint255\cshade191\red15\green71\blue97; +\ctextone\ctint166\cshade255\red89\green89\blue89;\ctextone\ctint216\cshade255\red39\green39\blue39;\ctextone\ctint191\cshade255\red64\green64\blue64;}{\*\defchp \fs22\kerning2\loch\af31506\hich\af31506\dbch\af31505 }{\*\defpap +\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 +\af0\afs22\alang1025 \ltrch\fcs0 \fs24\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 \snext0 \sqformat \spriority0 \styrsid12867389 Normal;}{\s1\ql \li0\ri0\sb240\sl259\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs32\alang1025 \ltrch\fcs0 \fs36\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \sautoupd \slink15 \sqformat \spriority9 \styrsid12867389 heading 1;}{\s2\ql \li0\ri0\sb40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs26\alang1025 +\ltrch\fcs0 \fs28\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \sautoupd \slink16 \sunhideused \sqformat \spriority9 \styrsid12867389 heading 2;}{\s3\ql \li0\ri0\sb160\sa80\sl259\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs28\alang1025 \ltrch\fcs0 \fs28\cf19\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink17 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid2309826 heading 3;}{\s4\ql \li0\ri0\sb80\sa40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel3\adjustright\rin0\lin0\itap0 \rtlch\fcs1 +\ai\af0\afs22\alang1025 \ltrch\fcs0 \i\fs24\cf19\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink18 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid2309826 heading 4;}{ +\s5\ql \li0\ri0\sb80\sa40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel4\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 +\fs24\cf19\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink19 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid2309826 heading 5;}{\s6\ql \li0\ri0\sb40\sl259\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel5\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ai\af0\afs22\alang1025 \ltrch\fcs0 \i\fs24\cf20\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink20 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid2309826 heading 6;}{\s7\ql \li0\ri0\sb40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel6\adjustright\rin0\lin0\itap0 \rtlch\fcs1 +\af0\afs22\alang1025 \ltrch\fcs0 \fs24\cf20\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink21 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid2309826 heading 7;}{ +\s8\ql \li0\ri0\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel7\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ai\af0\afs22\alang1025 \ltrch\fcs0 +\i\fs24\cf21\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink22 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid2309826 heading 8;}{\s9\ql \li0\ri0\sl259\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel8\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs24\cf21\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink23 \ssemihidden \sunhideused \sqformat \spriority9 \styrsid2309826 heading 9;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* +\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa160\sl259\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang2057\langfe1041\kerning2\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp2057\langfenp1041 +\snext11 \ssemihidden \sunhideused Normal Table;}{\*\cs15 \additive \rtlch\fcs1 \af0\afs32 \ltrch\fcs0 \fs32\loch\f1\hich\af1\dbch\af31501 \sbasedon10 \slink1 \spriority9 \styrsid12867389 Heading 1 Char;}{\*\cs16 \additive \rtlch\fcs1 \af0\afs26 +\ltrch\fcs0 \fs26\loch\f1\hich\af1\dbch\af31501 \sbasedon10 \slink2 \spriority9 \styrsid12867389 Heading 2 Char;}{\*\cs17 \additive \rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\cf19\kerning0\dbch\af31501 +\sbasedon10 \slink3 \ssemihidden \spriority9 \styrsid2309826 Heading 3 Char;}{\*\cs18 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\fs24\cf19\kerning0\dbch\af31501 \sbasedon10 \slink4 \ssemihidden \spriority9 \styrsid2309826 Heading 4 Char;}{\*\cs19 +\additive \rtlch\fcs1 \af0 \ltrch\fcs0 \fs24\cf19\kerning0\dbch\af31501 \sbasedon10 \slink5 \ssemihidden \spriority9 \styrsid2309826 Heading 5 Char;}{\*\cs20 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\fs24\cf20\kerning0\dbch\af31501 +\sbasedon10 \slink6 \ssemihidden \spriority9 \styrsid2309826 Heading 6 Char;}{\*\cs21 \additive \rtlch\fcs1 \af0 \ltrch\fcs0 \fs24\cf20\kerning0\dbch\af31501 \sbasedon10 \slink7 \ssemihidden \spriority9 \styrsid2309826 Heading 7 Char;}{\*\cs22 \additive +\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\fs24\cf21\kerning0\dbch\af31501 \sbasedon10 \slink8 \ssemihidden \spriority9 \styrsid2309826 Heading 8 Char;}{\*\cs23 \additive \rtlch\fcs1 \af0 \ltrch\fcs0 \fs24\cf21\kerning0\dbch\af31501 +\sbasedon10 \slink9 \ssemihidden \spriority9 \styrsid2309826 Heading 9 Char;}{\s24\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\contextualspace \rtlch\fcs1 \af0\afs56\alang1025 \ltrch\fcs0 +\fs56\expnd-2\expndtw-10\lang2057\langfe1041\kerning28\loch\f1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \sautoupd \slink25 \sqformat \spriority10 \styrsid12867389 Title;}{\*\cs25 \additive \rtlch\fcs1 \af0\afs56 \ltrch\fcs0 +\fs56\expnd-2\expndtw-10\kerning28\loch\f1\hich\af1\dbch\af31501 \sbasedon10 \slink24 \spriority10 \styrsid12867389 Title Char;}{\s26\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ilvl1\adjustright\rin0\lin0\itap0 +\rtlch\fcs1 \af0\afs28\alang1025 \ltrch\fcs0 \fs28\expnd3\expndtw15\cf20\lang2057\langfe1041\loch\f31506\hich\af31506\dbch\af31501\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink27 \sqformat \spriority11 \styrsid2309826 Subtitle;}{\*\cs27 +\additive \rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\expnd3\expndtw15\cf20\kerning0\dbch\af31501 \sbasedon10 \slink26 \spriority11 \styrsid2309826 Subtitle Char;}{\s28\qc \li0\ri0\sb160\sa160\sl259\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ai\af0\afs22\alang1025 \ltrch\fcs0 \i\fs24\cf22\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext0 \slink29 \sqformat \spriority29 \styrsid2309826 Quote;}{\*\cs29 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f1\fs24\cf22\kerning0 \sbasedon10 \slink28 \spriority29 \styrsid2309826 Quote Char;}{\s30\ql \li720\ri0\sa160\sl259\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\contextualspace \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs24\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 +\sbasedon0 \snext30 \sqformat \spriority34 \styrsid2309826 List Paragraph;}{\*\cs31 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\cf19 \sbasedon10 \sqformat \spriority21 \styrsid2309826 Intense Emphasis;}{\s32\qc \li864\ri864\sb360\sa360\sl259\slmult1 +\widctlpar\brdrt\brdrs\brdrw10\brsp200\brdrcf19 \brdrb\brdrs\brdrw10\brsp200\brdrcf19 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin864\lin864\itap0 \rtlch\fcs1 \ai\af0\afs22\alang1025 \ltrch\fcs0 +\i\fs24\cf19\lang2057\langfe1041\loch\f1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 \sbasedon0 \snext0 \slink33 \sqformat \spriority30 \styrsid2309826 Intense Quote;}{\*\cs33 \additive \rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f1\fs24\cf19\kerning0 +\sbasedon10 \slink32 \spriority30 \styrsid2309826 Intense Quote Char;}{\*\cs34 \additive \rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\scaps\expnd1\expndtw5\cf19 \sbasedon10 \sqformat \spriority32 \styrsid2309826 Intense Reference;}}{\*\rsidtbl \rsid153253 +\rsid1267670\rsid2309826\rsid4410022\rsid8215624\rsid10231292\rsid11883570\rsid12867389\rsid13718059}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\author Tolly Hill} +{\operator Tolly Hill}{\creatim\yr2024\mo6\dy24\hr19\min32}{\revtim\yr2024\mo6\dy24\hr21\min15}{\version5}{\edmins15}{\nofpages1}{\nofwords275}{\nofchars1573}{\nofcharsws1845}{\vern97}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wo +rdml}}\paperw11906\paperh16838\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect +\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen +\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1440\dgvorigin1440\dghshow1\dgvshow1 +\jexpand\viewkind1\viewscale100\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct +\asianbrkrule\rsidroot2309826\newtblstyruls\nogrowautofit\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal \nouicompat \fet0 +{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\headery708\footery708\colsx708\endnhere\sectlinegrid360\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2 +\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6 +\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang +{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\s1\ql \li0\ri0\sb240\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid1267670 \rtlch\fcs1 \af0\afs32\alang1025 \ltrch\fcs0 +\fs36\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid1267670 \hich\af1\dbch\af31501\loch\f1 AssEmbly}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8215624 +\par }\pard\plain \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid153253 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 +\fs24\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\insrsid153253\charrsid153253 \hich\af1\dbch\af31505\loch\f1 +A custom processor architecture and assembly language implemented in .NET +\par }\pard \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid1267670 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid1267670 \hich\af1\dbch\af31505\loch\f1 The AssEmbly project is split into four +\hich\af1\dbch\af31505\loch\f1 main components. You can choose which ones you would like to install. +\par }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\insrsid4410022 \hich\af1\dbch\af31505\loch\f1 Please note that this installer will install the .NET 8 Desktop Runtime if it is not already installed.}{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\insrsid10231292 +\hich\af1\dbch\af31505\loch\f1 This will require an internet connection.}{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\insrsid4410022\charrsid4410022 +\par }\pard\plain \ltrpar\s2\ql \li0\ri0\sb40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid1267670 \rtlch\fcs1 \af0\afs26\alang1025 \ltrch\fcs0 +\fs28\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid1267670 \hich\af1\dbch\af31501\loch\f1 AssEmbly Command Line (CLI) +\par }\pard\plain \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid1267670 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 +\fs24\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid1267670 \hich\af1\dbch\af31505\loch\f1 +The AssEmbly Command Line (or CLI) is the main program used for both creation and execution of AssEmbly programs. It includes an assembler, processor, command-line debugger, REPL environment, and disassembler. It has no GUI, so must be interacted with thr +\hich\af1\dbch\af31505\loch\f1 ough a consol\hich\af1\dbch\af31505\loch\f1 +e window. Launching the executable from a file explorer will not do anything. While not strictly required, it is rare that you would disable the installation of this component, as it is required for assembling and executing AssEmbly programs. +\par }\pard\plain \ltrpar\s2\ql \li0\ri0\sb40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid1267670 \rtlch\fcs1 \af0\afs26\alang1025 \ltrch\fcs0 +\fs28\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid1267670 \hich\af1\dbch\af31501\loch\f1 Visual Studio Code Extension +\par }\pard\plain \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid1267670 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 +\fs24\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid1267670 \hich\af1\dbch\af31505\loch\f1 +VSCode is the recommended editor for writing AssEmbly programs. Installing this extension will provide the editor with syntax highlighting, autocompletion, code linting, and more when writing AssEmbly programs.}{\rtlch\fcs1 \af0 \ltrch\fcs0 +\insrsid11883570 \hich\af1\dbch\af31505\loch\f1 VSCode must be installed and on PATH for th\hich\af1\dbch\af31505\loch\f1 e installation to work. +\par }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\insrsid11883570 \hich\af1\dbch\af31505\loch\f1 No\hich\af1\dbch\af31505\loch\f1 te:}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11883570 \hich\af1\dbch\af31505\loch\f1 \hich\af1\dbch\af31505\loch\f1 U +\hich\af1\dbch\af31505\loch\f1 ninstalling AssEmbly will not automatically uninstall the VS\hich\af1\dbch\af31505\loch\f1 Co\hich\af1\dbch\af31505\loch\f1 de extension. You must \hich\af1\dbch\af31505\loch\f1 uninstall the extension manually.}{ +\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid1267670\charrsid11883570 +\par }\pard\plain \ltrpar\s2\ql \li0\ri0\sb40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid1267670 \rtlch\fcs1 \af0\afs26\alang1025 \ltrch\fcs0 +\fs28\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid1267670 \hich\af1\dbch\af31501\loch\f1 Debugger GUI +\par }\pard\plain \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid1267670 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 +\fs24\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid1267670 \hich\af1\dbch\af31505\loch\f1 +While there is a command-line debugger available in the CLI, this debugger GUI is easier and more intuitive to interact with, especially when debugging large or complex projects. It has additional features, and can save things like breakpoints and labels +\hich\af1\dbch\af31505\loch\f1 between }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid153253 \hich\af1\dbch\af31505\loch\f1 sessions.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid1267670 +\par }\pard\plain \ltrpar\s2\ql \li0\ri0\sb40\sl259\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid153253 \rtlch\fcs1 \af0\afs26\alang1025 \ltrch\fcs0 +\fs28\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31501\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid153253 \hich\af1\dbch\af31501\loch\f1 C Compiler +\par }\pard\plain \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid153253 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 +\fs24\lang2057\langfe1041\loch\af1\hich\af1\dbch\af31505\cgrid\langnp2057\langfenp1041 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid153253 \hich\af1\dbch\af31505\loch\f1 +The AssEmbly C compiler is based on the vbcc compiler system. It supports all C89 features and most C99 features. Not all of the standard library is implemented, however there is an AssEmbly-specific API for perform\hich\af1\dbch\af31505\loch\f1 +ing certain operations.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid153253\charrsid153253 +\par }\pard \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid1267670 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid1267670\charrsid1267670 +\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a +9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad +5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 +b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 +0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 +a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f +c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 +0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 +a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 +6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b +4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b +4757e8d3f729e245eb2b260a0238fd010000ffff0300504b0304140006000800000021006780fcb48e070000cd200000160000007468656d652f7468656d652f +7468656d65312e786d6cec594b8f1bb911be07c87f68f45d56b71e2d696079a1a767ed19dbb064077be448949a1e76b341523316160602ef299700017617b904 +c82d8720c80259208b5cf2630cd848363f224576ab454a94e70103318299b9a8d95f153f5615abaac9fb5fbc4ea87781b9202cedfae1bdc0f7703a6373922ebb +fe8be9b8d2f63d21513a4794a5b8ebafb1f0bf78f0cb5fdc474732c609f6403e1547a8ebc7526647d5aa98c13012f758865378b7603c41121ef9b23ae7e812f4 +26b45a0b82a89a2092fa5e8a1250fb74b12033ec4d954affc146f988c2632a851a98513e51aab125a1b1f3f35021c45a0c28f72e10edfa30cf9c5d4ef16be97b +1409092fba7ea0fffcea83fb55745408517940d6901bebbf42ae10989fd7f49c7c79564e1a8c6aed4658ead7002af771a3b6fa2ff569009acd60a539175367d8 +8c8276adc01aa0fca74377a715d66dbca1bfbec739ec44fd5ac3d2af41b9fec61e3e187746c3a685d7a01cdfdcc3f7825abf53b7f01a94e3a33d7c63d46bd546 +165e83624ad2f37d74d46ab7a3025d42168c1e3be19d280a5ac302be45413494d1a5a658b0541e8ab504bd627c0c0005a44892d493eb0c2fd00ca2b8974926bc +211119456bdfcb50ca040c07b53084d06b04b5f25f5b1c1d6164482b5ec044ec0d293e9e987192c9aeff08b4fa06e4fd4f3fbd7bfbe3bbb77f7ff7cd37efdefe +d53b21cb58e6aa2cb963942e4db99ffff4bbfffce1d7debffff6c79fbffdce8d1726fec35f7ef3e11ffffc987ad86a5b53bcfffe870f3ffef0fef7bffdd79fbf +7568ef717466c2a724c1c27b822fbde72c81056a53d8fcf119bf99c43446c494e8a54b8152a46671e81fc9d8423f59238a1cb83eb6edf89243aa71011fae5e59 +8427315f49e2d0f8384e2ce02963b4cfb8d30a8fd55c8699a7ab74e99e9caf4cdc73842e5c730f506a7979b4ca20c71297ca418c2d9acf284a255ae2144b4fbd +63e7183b56f71521965d4fc98c33c116d2fb8a787d449c269992332b9ab642c72401bfac5d04c1df966d4e5f7a7d465dab1ee20b1b097b035107f929a696191f +a29544894be51425d434f80992b18be464cd67266e2424787a8929f346732c844be62987f51a4e7f8c20bb39dd7e4ad7898de4929cbb749e20c64ce4909d0f62 +94642eec84a4b189fd529c438822ef19932ef829b377887a063fa0f4a0bb5f126cb9fbea6cf002b29c49691b20eacd8a3b7cf910332b7e276bba40d8956a7a3c +b1526c8f136774f4574b2bb44f30a6e812cd31f65e7ce960d0679965f32de94731649563ec0aac47c88e55f59c6201bd926a6ef6f3e4091156c84ef0921de073 +bade493c6b9426881fd2fc04bc6eda7c74c661333a283ca5b37313f884400f08f1e234ca53013a8ce03ea8f5598cac02a69e853b5ed7dcf2df75f618eccb5716 +8d6bec4b90c1379681c46eca7cd4365344ad09b6013345c43b71a55b10b1dcbf1551c5558bad9c720b7bd36edd00dd91d5f42424bda203fadf743e8e40fc343d +8f5bb195b06ed8ed1c4a28c73b3dce21dc6e6733607c4e3effc6668856e9330cb5643f6bddf535777d8dff7fdfd71cdacf77ddcca19ee3ae9bf1a1cbb8eb668a +03964fd3cd6c1b18e86dd421437ed8a38f7e9283273f0b42e944ae293e11faf047c037cd7c0c834a4e9f7ae2f224308be1a72a733081855b72a4653ccee4af88 +8c2731cae08428f49592a528542f8597310107477ad8a95be1e92a3965f3fcc0539f3005796515486ec783261c3de5e37058257374d42a06153f7daa0a7c35db +a53e6cdd1050b23721614c6693a83b48b4368357905067679f8645c7c1a2add46f5cb5670aa0567a053eba3df854effacd86220427e562060dfa5cf92977f5c6 +bbda999fd2d3878c6945001c2ee62b81a3f9d2d31dc5f5e0f2d4eaf250bb86a72d12da297958d924b46574832762f8142ea2538d5e87c64d7dddd9bad4a2a74c +a1e783f8ded268b53fc6e2b6be06b9dddc40533353d0d4bbecfa51bd0921334359d75fc0c131fc4c32881da1bebb105dc2edcb4cf27cc3df26b3645cc8211271 +6e709d7472f7244462ee5192747db5fcd20d34d53944730b6b90103e5b721d482b9f1b3970baed64bc58e09934dd6e8c284be78f90e1f35ce17cabc56f0f5692 +6c05ee9ec4f34bef8caef8730421d66c85ca807322e0fe20ccad392770215626b26dfced14a622f99b37523a86f27144b3181515c54ce6395cd793928e7e2a6d +603c156b06831a26290ae1d9521558d3a856352d4b57cee160d5bd5a4859ce489adb9a6965155535dd59cc9a615306766c79bb226fb0da9818729a59e1f3d4bd +9b723b9b5cb7d3279455020c5edaef76a5dfa0b69dcca2a618efa76195b38b51bb766c167805b5eb140923eb471bb53b762b6b84733a18bc55e507b9dda885a1 +c5a6afd496d637e7e6e5363b7b05c963085dee8a4aa15d09a7bb1c415736d13d499e36608bbc96c5d6805fde8a93aeff75d0ec3506b5e6a012b49ba34aa3de08 +2aed66af5ee9359bf570d40c8361bff6060a8b8c93b099dfda8fe11283ae8bbb7b3dbe777f9f6cee69eecd585265fa7ebeaa89ebfbfbb076f8fede239074be8e +6ae34ebdd38f2a9d7a6f5c690cfbed4a6710f52bc368d01a8e878366bb337ee37b171adce8d5078d68d4ae44e16050694481a2dfee545a8d5aadd768f5daa346 +ef4dd1c6c0caf3f451d802ccab793df82f000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f7468656d +652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f2451eced +0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198720e27 +4a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528a2c6cc +e0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c0200001300000000000000000000000000000000 +005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b000000000000000000000000003001 +00005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000190200007468656d65 +2f7468656d652f7468656d654d616e616765722e786d6c504b01022d00140006000800000021006780fcb48e070000cd20000016000000000000000000000000 +00d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b010000270000000000000000 +0000000000980a00007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000930b00000000} +{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d +617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 +6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 +656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} +{\*\latentstyles\lsdstimax376\lsdlockeddef0\lsdsemihiddendef0\lsdunhideuseddef0\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 1; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 5; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 9; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 1;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 2;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 3; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 4;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 5;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 6; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 7;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 8;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Indent; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 header;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footer; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index heading;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of figures; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope return;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation reference; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 line number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 page number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote text; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of authorities;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 macro;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 toa heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 5;\lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Closing; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Signature;\lsdsemihidden1 \lsdunhideused1 \lsdpriority1 \lsdlocked0 Default Paragraph Font;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 4; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Message Header;\lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Salutation; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Date;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Note Heading; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 3; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Block Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 FollowedHyperlink;\lsdqformat1 \lsdpriority22 \lsdlocked0 Strong; +\lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Document Map;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Plain Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 E-mail Signature; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Top of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Bottom of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal (Web);\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Acronym; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Cite;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Code;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Definition; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Keyboard;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Preformatted;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Sample;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Typewriter; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority39 \lsdlocked0 Table Grid; +\lsdsemihidden1 \lsdlocked0 Placeholder Text;\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing;\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid; +\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdpriority65 \lsdlocked0 Medium List 1;\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2; +\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List;\lsdpriority71 \lsdlocked0 Colorful Shading;\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1; +\lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1; +\lsdsemihidden1 \lsdlocked0 Revision;\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; +\lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2;\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2; +\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdpriority70 \lsdlocked0 Dark List Accent 3;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3; +\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdpriority62 \lsdlocked0 Light Grid Accent 4; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; +\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdpriority62 \lsdlocked0 Light Grid Accent 5; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5; +\lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdpriority70 \lsdlocked0 Dark List Accent 6;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 6; +\lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 6;\lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; +\lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference;\lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority37 \lsdlocked0 Bibliography; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;\lsdpriority41 \lsdlocked0 Plain Table 1;\lsdpriority42 \lsdlocked0 Plain Table 2;\lsdpriority43 \lsdlocked0 Plain Table 3;\lsdpriority44 \lsdlocked0 Plain Table 4; +\lsdpriority45 \lsdlocked0 Plain Table 5;\lsdpriority40 \lsdlocked0 Grid Table Light;\lsdpriority46 \lsdlocked0 Grid Table 1 Light;\lsdpriority47 \lsdlocked0 Grid Table 2;\lsdpriority48 \lsdlocked0 Grid Table 3;\lsdpriority49 \lsdlocked0 Grid Table 4; +\lsdpriority50 \lsdlocked0 Grid Table 5 Dark;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 1; +\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 1;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 1;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 1; +\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 1;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 2;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 2; +\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 2;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 2; +\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 3;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 3;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 3;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 3; +\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 3;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 4; +\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 4;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 4;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 4;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 4; +\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 4;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 5; +\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 5;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 5;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 5; +\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 5;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 6;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 6; +\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 6;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 6; +\lsdpriority46 \lsdlocked0 List Table 1 Light;\lsdpriority47 \lsdlocked0 List Table 2;\lsdpriority48 \lsdlocked0 List Table 3;\lsdpriority49 \lsdlocked0 List Table 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark; +\lsdpriority51 \lsdlocked0 List Table 6 Colorful;\lsdpriority52 \lsdlocked0 List Table 7 Colorful;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 List Table 2 Accent 1;\lsdpriority48 \lsdlocked0 List Table 3 Accent 1; +\lsdpriority49 \lsdlocked0 List Table 4 Accent 1;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 1;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 1; +\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 List Table 2 Accent 2;\lsdpriority48 \lsdlocked0 List Table 3 Accent 2;\lsdpriority49 \lsdlocked0 List Table 4 Accent 2; +\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 2;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 3; +\lsdpriority47 \lsdlocked0 List Table 2 Accent 3;\lsdpriority48 \lsdlocked0 List Table 3 Accent 3;\lsdpriority49 \lsdlocked0 List Table 4 Accent 3;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 3; +\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 4;\lsdpriority47 \lsdlocked0 List Table 2 Accent 4; +\lsdpriority48 \lsdlocked0 List Table 3 Accent 4;\lsdpriority49 \lsdlocked0 List Table 4 Accent 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 4;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 4; +\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 List Table 2 Accent 5;\lsdpriority48 \lsdlocked0 List Table 3 Accent 5; +\lsdpriority49 \lsdlocked0 List Table 4 Accent 5;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 5;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 5; +\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 List Table 2 Accent 6;\lsdpriority48 \lsdlocked0 List Table 3 Accent 6;\lsdpriority49 \lsdlocked0 List Table 4 Accent 6; +\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Mention; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hashtag;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Unresolved Mention;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Link;}}{\*\datastore 01050000 +02000000180000004d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 +d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000f072 +bc3d73c6da01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file